diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ce22976a3a7a99..19c6a14b26f0ca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,4 +12,7 @@ jobs: workflow-check: uses: ./.github/workflows/workflow-syntax-check.yml workflow-build: - uses: ./.github/workflows/workflow-build.yml \ No newline at end of file + uses: ./.github/workflows/workflow-build.yml + concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true \ No newline at end of file diff --git a/docs/API/CryptoKeyClass.md b/docs/API/CryptoKeyClass.md index 0eb1dee8a91e28..1f25c1ed738588 100644 --- a/docs/API/CryptoKeyClass.md +++ b/docs/API/CryptoKeyClass.md @@ -304,21 +304,22 @@ PEM definition of an encryption key to load. If the key is a private key, the RS |Release|Changes| |---|---| +|20 R8|Support of message as Blob| |18 R4|Added -.**sign** (*message* : Text ; *options* : Object) : Text +.**sign** (*message* : Text ; *options* : Object) : Text
.**sign** (*message* : Blob ; *options* : Object) : Text |Parameter|Type||Description| |---|----|---|---| -|message|Text|->|Message string to sign| +|message|Text OR Blob|->|Message to sign| |options|Object|->|Signing options| |Result|Text|<-|Signature in Base64 or Base64URL representation, depending on "encoding" option| -The `.sign()` function signs the utf8 representation of a *message* string using the `CryptoKey` object keys and provided *options*. It returns its signature in base64 or base64URL format, depending on the value of the `options.encoding` attribute you passed. +The `.sign()` function signs the utf8 representation of a *message* string or Blob using the `CryptoKey` object keys and provided *options*. It returns its signature in base64 or base64URL format, depending on the value of the `options.encoding` attribute you passed. The `CryptoKey` must contain a valid **private** key. @@ -329,11 +330,11 @@ The `CryptoKey` must contain a valid **private** key. |hash|text|Digest algorithm to use. For example: "SHA256", "SHA384", or "SHA512". When used to produce a JWT, the hash size must match the PS@, ES@, RS@, or PS@ algorithm size| |encodingEncrypted|text|Encoding used to convert the binary encrypted message into the result string. Can be "Base64", or "Base64URL". Default is "Base64".| |pss|boolean|Use Probabilistic Signature Scheme (PSS). Ignored if the key is not an RSA key. Pass `true` when producing a JWT for PS@ algorithm| -|encoding|text|ERepresentation to be used for result signature. Possible values: "Base64" or "Base64URL". Default is "Base64".| +|encoding|text|Representation to be used for result signature. Possible values: "Base64" or "Base64URL". Default is "Base64".| #### *Result* -The utf8 representation of the *message* string. +The utf8 representation of the *message*. @@ -382,16 +383,17 @@ Contains the name of the key type - "RSA", " |Release|Changes| |---|---| +|20 R8|Support of message as Blob| |18 R4|Added -**.verify**( *message* : Text ; *signature* : Text ; *options* : Object) : Object +**.verify**( *message* : Text ; *signature* : Text ; *options* : Object) : Object
*.verify**( *message* : Blob ; *signature* : Text ; *options* : Object) : Object |Parameter|Type||Description| |---|---|---|---| -|message|Text|->|Message string that was used to produce the signature| +|message|Text OR Blob|->|Message that was used to produce the signature| |signature|Text|->|Signature to verify, in Base64 or Base64URL representation, depending on `options.encoding` value| |options|Object|->|Signing options| |Result|Object|<-|Status of the verification| diff --git a/docs/API/DataClassClass.md b/docs/API/DataClassClass.md index 1d387856fa459b..31cfb655bc4d63 100644 --- a/docs/API/DataClassClass.md +++ b/docs/API/DataClassClass.md @@ -1022,6 +1022,22 @@ You will not get the expected result because the null value will be evaluated by $vSingles:=ds.Person.query("spouse = null") //correct syntax ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + + + #### Not equal to in collections When searching within dataclass object attributes containing collections, the "not equal to *value*" comparator (`#` or `!=`) will find elements where ALL properties are different from *value* (and not those where AT LEAST one property is different from *value*, which is how work other comparators). Basically, it is equivalent to search for "Not(find collection elements where property equals *value*"). For example, with the following entities: diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/OutGoingMessageClass.md b/docs/API/OutgoingMessageClass.md similarity index 73% rename from i18n/fr/docusaurus-plugin-content-docs/current/API/OutGoingMessageClass.md rename to docs/API/OutgoingMessageClass.md index 914580df7960cf..dd3efc63f624c3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/API/OutGoingMessageClass.md +++ b/docs/API/OutgoingMessageClass.md @@ -3,21 +3,25 @@ id: OutgoingMessageClass title: OutgoingMessage --- + The `4D.OutgoingMessage` class allows you to build messages to be returned by your application functions in response to [REST requests](../REST/REST_requests.md). If the response is of type `4D.OutgoingMessage`, the REST server does not return an object but the object instance of the `OutgoingMessage` class. -Typically, this class can be used in custom [HTTP request handler functions](../WebServer/http-request-handler.md#function-configuration) or in functions declared with the [`onHttpGet`](../ORDA/ordaClasses.md#onhttpget-keyword) keyword and designed to handle HTTP GET requests. Such requests are used, for example, to implement features such as download file, generate and download picture as well as receiving any content-type via a browser. +Typically, this class can be used in custom [HTTP request handler functions](../WebServer/http-request-handler.md#function-configuration) or in functions declared with the [`onHttpGet`](../ORDA/ordaClasses.md#onhttpget-keyword) keyword and designed to handle HTTP GET requests. Such requests are used, for example, to implement features such as download file, generate and download picture as well as receiving any content-type via a browser. An instance of this class is built on 4D Server and can be sent to the browser by the [4D REST Server](../REST/gettingStarted.md) only. This class allows to use other technologies than HTTP (e.g. mobile). -
Historique -| Release | Modifications | -| ------- | -------------- | -| 20 R7 | Classe ajoutée | + + +
History + +|Release|Changes| +|---|---| +|20 R7|Class added|
-### Exemple +### Example In this example, a `getFile()` function is implemented in the [Datastore class](../ORDA/ordaClasses.md#datastore-class) and [can be called](../ORDA/ordaClasses.md#onhttpget-keyword) by a REST request. The purpose is to return a **testFile.pdf** file as a response to the request: @@ -36,16 +40,17 @@ exposed onHTTPGet Function getFile() : 4D.OutgoingMessage ### OutgoingMessage Object + 4D.OutgoingMessage objects provide the following properties and functions: -| | -| -------------------------------------------------------------------------------------------------------------------------------------- | -| [](#body)
| -| [](#headers)
| -| [](#setbody)
| -| [](#setheader)
| -| [](#setstatus)
| -| [](#status)
| +|| +|---| +|[](#body)
| +|[](#headers)
| +|[](#setbody)
| +|[](#setheader)
| +|[](#setstatus)
| +|[](#status)
| :::note @@ -53,8 +58,11 @@ A 4D.OutgoingMessage object is a [non-sharable](../Concepts/shared.md) object. ::: - + + + + ## .body **body** : any @@ -70,43 +78,42 @@ The `.body` property contains the The `.body` property is read-write. -You can also set the `.body` property using the [`setBody()`](#setbody) function, in which case the `content-type` header is automatically set. +You can also set the `.body` property using the [`setBody()`](#setbody) function, in which case the `content-type` header is automatically set. - + ## .headers **headers** : Object #### Description -The `.headers` property contains the current headers of the outgoing message as key/value pairs. +The `.headers` property contains the current headers of the outgoing message as key/value pairs. -The `.headers` property is read-only. To set a header, use the [`setHeader()`](#setheader) function. +The `.headers` property is read-only. To set a header, use the [`setHeader()`](#setheader) function. - + ## .setBody() **.setBody**( *body* : any ) - - -| Paramètres | Type | | Description | -| ---------- | ---- | -- | ---------------------------- | -| body | any | -> | Body of the outgoing message | + +|Parameter|Type||Description| +|---|--- |---|------| +|body|any |->|Body of the outgoing message| #### Description The `.setBody()` function sets the outgoing message *body*. -The following data types are supported in the *body*: + The following data types are supported in the *body*: - Text - Blob @@ -124,47 +131,45 @@ If *body* is not of a supported value type, an error is returned. - + ## .setHeader() **.setHeader**( *key* : Text ; *value* : Text ) - - -| Paramètres | Type | | Description | -| ---------- | ---- | -- | ---------------------------- | -| key | Text | -> | Header property to set | -| value | Text | -> | Value of the header property | + +|Parameter|Type||Description| +|---|--- |---|------| +|key|Text|->|Header property to set| +|value|Text|->|Value of the header property| #### Description The `.setHeader()` function sets the outgoing message header *key* with the provided *value*. If both parameters are not Text values, an error is raised. -When returning a 4D.OutgoingMessage object instance, 4D automatically sets some headers (e.g. `Set-Cookie` with `WASID4D=...` and `4DSID__ProjectName_=....`). +When returning a 4D.OutgoingMessage object instance, 4D automatically sets some headers (e.g. `Set-Cookie` with `WASID4D=...` and `4DSID__ProjectName_=....`). :::note -If you set a *value* for the "Content-Type" header *key*, make sure you call this function after the call to [`setBody()`](#setbody), because `setBody()` automatically fills this header. For a list of "Content-Type" header values, please refer to the [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md) documentation. +If you set a *value* for the "Content-Type" header *key*, make sure you call this function after the call to [`setBody()`](#setbody), because `setBody()` automatically fills this header. For a list of "Content-Type" header values, please refer to the [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md) documentation. ::: + - ## .setStatus() **.setStatus**( *status* : Integer ) - - -| Paramètres | Type | | Description | -| ---------- | ------- | -- | ------------- | -| status | Integer | -> | Status to set | + +|Parameter|Type||Description| +|---|--- |---|------| +|status|Integer|->|Status to set| #### Description @@ -173,12 +178,14 @@ The `.setStatus()` function - + + ## .status **status** : Integer diff --git a/docs/Debugging/debugging-remote.md b/docs/Debugging/debugging-remote.md index 0de6498b3fc39a..3b05cc54ae65db 100644 --- a/docs/Debugging/debugging-remote.md +++ b/docs/Debugging/debugging-remote.md @@ -21,9 +21,8 @@ Only one debugger can debug a 4D Server application at a given time. It is calle * the local 4D Server debugger (default) - if the server is not running headless. * the debugger of a remote 4D client - if the remote session has access to Design mode. * the [Qodly debugger](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server) on 4D Server - if the server allows access to Qodly Studio. -* the VS Code debugger, provided you installed the [4D-Debugger](https://github.com/4d/4D-Debugger-VSCode) extension. +* the **VS Code** debugger, provided you installed the [4D-Debugger](https://github.com/4d/4D-Debugger-VSCode) extension. -::: The attached debugger is called whenever a 4D Server encounters: * a break point diff --git a/docs/Notes/updates.md b/docs/Notes/updates.md index 26931c25fae59e..e5f00c4e54b75d 100644 --- a/docs/Notes/updates.md +++ b/docs/Notes/updates.md @@ -16,8 +16,10 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R - Support of [standalone sessions](../API/SessionClass.md) to simplify local coding for client/server applications. - [4D debugger](../Debugging/debugger.md): new design and auto-save, display mode features. - [New built component architecture](../Desktop/building.md#build-component) for a better compliance with Apple notarization guidelines. +- Dependencies: Use the Dependency manager to [check for new versions](../Project/components.md#checking-for-new-versions) and [update](../Project/components.md#updating-dependencies) GitHub components. - 4D Language: - Modified commands: [`FORM EDIT`](../commands/form-edit.md) + - [`.sign()`](../API/CryptoKeyClass.md#sign) and [`.verify()`](../API/CryptoKeyClass.md#verify) functions of the [4D.CryptoKey class](../API/CryptoKeyClass.md) support Blob in the *message* parameter. - [**Fixed bug list**](https://bugs.4d.fr/fixedbugslist?version=20_R8): list of all bugs that have been fixed in 4D 20 R8. #### Behavior changes @@ -54,6 +56,7 @@ Read [**What’s new in 4D 20 R7**](https://blog.4d.com/en-whats-new-in-4d-v20-R - Documentations for [4D Language](../commands/command-index.md) and [4D Write Pro Language](../WritePro/commands/command-index.md) are now fully available on developer.4d.com. Find out about all the new features and changes concerning these documentations in this release note. - The [`File`](../commands/file.md) command (as well as [`4D.File.new()`](../API/FileClass.md#4dfilenew)) is stricter when it comes to checking the syntax of the *path* supplied as a parameter. +- The **describe** action [permission](../ORDA/privileges.md#permission-actions) has been removed from available actions. Access to [`/rest/$catalog`](../REST/$catalog.md) urls is no longer controlled. Session *describe* privileges are now ignored. ## 4D 20 R6 diff --git a/docs/ORDA/glossary.md b/docs/ORDA/glossary.md index f9ad836014b14c..e67a3d609c7092 100644 --- a/docs/ORDA/glossary.md +++ b/docs/ORDA/glossary.md @@ -11,7 +11,7 @@ title: Glossary ## Action -Every action that can be done on a [resource](#resource). Available actions are: create, read, update, drop, execute, promote, and describe. +Every action that can be done on a [resource](#resource). Available actions are: create, read, update, drop, execute, and promote. ## Attribute diff --git a/docs/ORDA/privileges.md b/docs/ORDA/privileges.md index 9c652c2207cd4f..bf515b6d291b3a 100644 --- a/docs/ORDA/privileges.md +++ b/docs/ORDA/privileges.md @@ -61,7 +61,6 @@ Available actions are related to target resource. |**update**|Update attributes in any dataclass. |Update attributes in this dataclass.|Update this attribute content (ignored for alias attributes).|n/a| |**drop**|Delete data in any dataclass. |Delete data in this dataclass. |Delete a not null value for this attribute (except for alias and computed attribute).|n/a| |**execute**|Execute any function on the project (datastore, dataclass, entity selection, entity)|Execute any function on the dataclass. Dataclass functions, entity functions, and entity selection functions are handled as dataclass functions|n/a|Execute this function| -|**describe**|All the dataclasses are available in the /rest/$catalog API|This dataclass is available in the /rest/$catalog API|This attribute is available in the /rest/$catalog API. |This dataclass function is available in the /rest/$catalog API (not available with singletons)| |**promote**|n/a|n/a|n/a|Associates a given privilege during the execution of the function. The privilege is temporary added to the session and removed at the end of the function execution. By security, only the process executing the function is added the privilege, not the whole session.| **Notes:** @@ -72,10 +71,7 @@ Available actions are related to target resource. - Default values: in the current implementation, only *Null* is available as default value. - In REST [force login mode](../REST/authUsers.md/#force-login-mode), the [`authentify()` function](../REST/authUsers.md#function-authentify) is always executable by guest users, whatever the permissions configuration. -Setting permissions requires to be consistent, in particular: - -- **update** and **drop** permissions also need **read** permission (but **create** does not need it) -- For data model functions, **promote** permission also needs **describe** permission. +Setting permissions requires to be consistent, in particular **update** and **drop** permissions also need **read** permission (but **create** does not need it). @@ -150,7 +146,6 @@ The default file has the following contents: "create": ["none"], "update": ["none"], "drop": ["none"], - "describe": ["none"], "execute": ["none"], "promote": ["none"] } @@ -203,7 +198,6 @@ The `roles.json` file syntax is the following: |||\[].create|Collection of strings||List of privileges| |||\[].update|Collection of strings||List of privileges| |||\[].drop|Collection of strings||List of privileges| -|||\[].describe|Collection of strings||List of privileges| |||\[].execute|Collection of strings||List of privileges| |||\[].promote|Collection of strings||List of privileges| |forceLogin|||Boolean||True to enable the ["forceLogin" mode](../REST/authUsers.md#force-login-mode) | @@ -267,9 +261,6 @@ The good practice is to keep all data access locked by default thanks to the "no "execute": [ "none" ], - "describe": [ - "none" - ], "promote": [ "none" ] diff --git a/docs/ORDA/remoteDatastores.md b/docs/ORDA/remoteDatastores.md index 7539f485d8c680..ca4ad373397b33 100644 --- a/docs/ORDA/remoteDatastores.md +++ b/docs/ORDA/remoteDatastores.md @@ -53,7 +53,7 @@ ORDA features related to entity locking and transaction are managed at process l * If a process locks an entity from a remote datastore, the entity is locked for all other processes, even when these processes share the same session (see [Entity locking](entities.md#entity-locking)). If several entities pointing to a same record have been locked in a process, they must be all unlocked in the process to remove the lock. If a lock has been put on an entity, the lock is removed when there is no more reference to this entity in memory. * Transactions can be started, validated or cancelled separately on each remote datastore using the `dataStore.startTransaction()`, `dataStore.cancelTransaction()`, and `dataStore.validateTransaction()` functions. They do not impact other datastores. -* Classic 4D language commands (`START TRANSACTION`, `VALIDATE TRANSACTION`, `CANCEL TRANSACTION`) only apply to the main datastore (returned by `ds`). +* Classic 4D language commands ([`START TRANSACTION`](../commands-legacy/start-transaction.md), [`VALIDATE TRANSACTION`](../commands-legacy/validate-transaction.md), [`CANCEL TRANSACTION`](../commands-legacy/cancel-transaction.md)) only apply to the main datastore (returned by `ds`). If an entity from a remote datastore is hold by a transaction in a process, other processes cannot update it, even if these processes share the same session. * Locks on entities are removed and transactions are rollbacked: * when the process is killed. diff --git a/docs/Project/components.md b/docs/Project/components.md index 0e11d76c23d19c..a3e1190558dffb 100644 --- a/docs/Project/components.md +++ b/docs/Project/components.md @@ -51,7 +51,7 @@ This page describes how to work with components in the **4D** and **4D Server** To load a component in your 4D project, you can either: - copy the component files in the [**Components** folder of your project](architecture.md#components), -- or, declare the component in the **dependencies.json** file of your project; this is done automatically for local files when you [**add a dependency using the Dependency manager interface**](#adding-a-dependency). +- or, declare the component in the **dependencies.json** file of your project; this is done automatically for local files when you [**add a dependency using the Dependency manager interface**](#adding-a-github-dependency). Components declared in the **dependencies.json** file can be stored at different locations: @@ -101,14 +101,16 @@ Since components can be installed in different ways, a priority order is applied ```mermaid flowchart TB - id1("1\nComponents from project's Components folder")~~~ - id2("2\nComponents listed in dependencies.json")~~~ - id2 -- environment4d.json gives path --> id4("Load component\nbased on path declared\nin environment4d.json") + id1("1
Components from project's Components folder") + ~~~ + id2("2
Components listed in dependencies.json") + ~~~ + id2 -- environment4d.json gives path --> id4("Load component based on path declared in environment4d.json") ~~~ - id3("3\nUser 4D components") - id2 -- environment4d.json doesn't give path --> id5("Load component\nnext to\npackage folder") + id3("3
User 4D components") + id2 -- environment4d.json doesn't give path --> id5("Load component next to package folder") ~~~ - id3("3\nUser 4D components") + id3("3
User 4D components") ``` When a component cannot be loaded because of another instance of the same component located at a higher priority level, both get a specific [status](#dependency-status): the non-loaded component is given the *Overloaded* status, while the loaded component has the *Overloading* status. @@ -186,7 +188,7 @@ Absolute paths should only be used for components that are specific to one machi ### Components stored on GitHub -4D components available as GitHub releases can be referenced and automatically loaded in your 4D projects. +4D components available as GitHub releases can be referenced and automatically loaded and updated in your 4D projects. :::note @@ -237,7 +239,7 @@ You declare a component stored on GitHub in the [**dependencies.json** file](#de #### Tags and versions -When you create a release in GitHub, you specify a **tag** and a **version**. +When a release is created in GitHub, it is associated to a **tag** and a **version**. The Dependency manager uses these information to handle automatic availability of components. - **Tags** are texts that uniquely reference a release. In the [**dependencies.json** file](#dependencyjson) and [**environment4d.json**](#environment4djson) files, you can indicate the release tag you want to use in your project. For example : @@ -252,7 +254,7 @@ When you create a release in GitHub, you specify a **tag** and a **version**. } ``` -- A release is also identified by a **version**. The versioning system used is based on the *Semantic Versioning* concept, which is the most commonly used. Each version number is identified as follows: `majorNumber.minorNumber.pathNumber`. In the same way as for tags, you can indicate the version of the component you wish to use in your project, as in this example: +- A release is also identified by a **version**. The versioning system used is based on the [*Semantic Versioning*](https://regex101.com/r/Ly7O1x/3/) concept, which is the most commonly used. Each version number is identified as follows: `majorNumber.minorNumber.pathNumber`. In the same way as for tags, you can indicate the version of the component you wish to use in your project, as in this example: ```json { @@ -265,7 +267,7 @@ When you create a release in GitHub, you specify a **tag** and a **version**. } ``` -The version is used to define which versions can be used. A [standard semantic version](https://regex101.com/r/Ly7O1x/3/) is used. A range is defined by two semantic versions, a min and a max, with operators '\< | > | >= | <= | ='. The `*` can be used as a placeholder for all versions. ~ and ^ prefixes define versions starting at a number, and up to respectively the next major and minor version. +A range is defined by two semantic versions, a min and a max, with operators '\< | > | >= | <= | ='. The `*` can be used as a placeholder for all versions. ~ and ^ prefixes define versions starting at a number, and up to respectively the next major and minor version. Here are a few examples: @@ -284,6 +286,11 @@ Here are a few examples: If you do not specify a tag or a version, 4D automatically retrieves the "latest" version. +The Dependency manager checks periodically if component updates are available on Github. If a new version is available for a component, an update indicator is then displayed for the component in the dependency list, [depending on your settings](#defining-a-github-dependency-version-range). + + + + #### Private repositories If you want to integrate a component located in a private repository, you need to tell 4D to use a connection token to access it. @@ -296,22 +303,7 @@ For more information, please refer to the [GitHub token interface](https://githu ::: -Then insert the "github" key in your [**environment4d.json**](#environment4djson) file: - -```json -{ - "github": { - "token": "ghpXXXXXXXXXXXXUvW8x9yZ" - }, - "dependencies": { - - "mySecondGitHubComponent": { - "github": "JohnSmith/mySecondGitHubComponent" - } - } -} -``` - +You then need to [provide your connection token](#providing-your-github-access-token) to the Dependency manager. #### Local cache for dependencies @@ -323,7 +315,7 @@ Referenced GitHub components are downloaded in a local cache folder then loaded ...where `` can be "4D", "4D Server", or "tool4D". -#### dependency-lock.json +### dependency-lock.json A `dependency-lock.json` file is created in the [`userPreferences` folder](architecture.md#userpreferencesusername) of your project. @@ -335,7 +327,7 @@ This file logs information such as the state of dependencies, paths, urls, loadi ## Monitoring Project Dependencies -In an opened project, you can add, remove, and get information about dependencies and their current loading status in the **Dependencies** panel. +In an opened project, you can add, remove, update, and get information about dependencies and their current loading status in the **Dependencies** panel. To display the Dependencies panel: @@ -350,7 +342,79 @@ The Dependencies panel is then displayed. Dependencies are sorted by name in alp ![dependency](../assets/en/Project/dependency.png) -The Dependencies panel interface allows you to manage dependencies (on 4D single-user and 4D Server). You can add or remove **local** and **GitHub** dependencies. +The Dependencies panel interface allows you to manage dependencies (on 4D single-user and 4D Server). + + + +### Filtering dependencies + +By default, all dependencies identified by the Dependency manager are listed, whatever their [status](#dependency-status). You can filter the displayed dependencies according to their status by selecting the appropriate tab at the top of the Dependencies panel: + +![dependency-tabs](../assets/en/Project/dependency-tabs.png) + +- **Active**: Dependencies that are loaded and can be used in the project. It includes *overloading* dependencies, which are actually loaded. *Overloaded* dependencies are listed in the **Conflicts** panel, along with all conflicting dependencies. +- **Inactive**: Dependencies that are not loaded in the project and are not available. There are many possible reasons for this status: missing files, version incompatibility... +- **Conflict**: Dependencies that are loaded but that overloads at least one other dependency at lower [priority level](#priority). Overloaded dependencies are also displayed so that you can check the origin of the conflict and take appropriate actions. + +### Dependency status + +Dependencies requiring the developer's attention are indicated by a **status label** at the right side of the line and a specific background color: + +![dependency-status](../assets/en/Project/dependency-conflict2.png) + +The following status labels are available: +- **Overloaded**: The dependency is not loaded because it is overloaded by another dependency with the same name at a higher [priority level](#priority). +- **Overloading**: The dependency is loaded and is overloading one or more other dependencies with the same name at a lower [priority level](#priority). +- **Not found**: The dependency is declared in the dependencies.json file but is not found. +- **Inactive**: The dependency is not loaded because it is not compatible with the project (e.g. the component is not compiled for the current platform). +- **Duplicated**: The dependency is not loaded because another dependency with the same name exists at the same location (and is loaded). +- **Available after restart**: The dependency reference has just been added or updated [using the interface](#monitoring-project-dependencies), it will be loaded once the application restarts. +- **Unloaded after restart**: The dependency reference has just been removed [using the interface](#removing-a-dependency), it will be unloaded once the application restarts. +- **Update available \**: A new version of the GitHub dependency matching your [component version configuration](#defining-a-github-dependency-version-range) has been detected. +- **Refreshed after restart**: The [component version configuration](#defining-a-github-dependency-version-range) of the GitHub dependency has been modified, it will be adjusted the next startup. +- **Recent update**: A new version of the GitHub dependency has been loaded at startup. + + + + +A tooltip is displayed when you hover over the dependency line, provding additional information about the status: + +![dependency-tips](../assets/en/Project/dependency-tip1.png) + +### Dependency origin + +The Dependencies panel lists all project dependencies, whatever their origin, i.e. wherever they come from. The dependency origin is provided by the tag under its name: + +![dependency-origin](../assets/en/Project/dependency-origin.png) + +The following origins are possible: + +|Origin tag|Description| +|---|---| +|4D Component|Built-in 4D component, stored in the `Components` folder of the 4D application| +|dependencies.json|Component declared in the [`dependencies.json`](#dependenciesjson) file| +|Environment|Component declared in the [`environnement4d.json`](#environment4djson) file| +|Project Component|Component located in the [`Components`](architecture.md#components) folder| + + +**Right-click** in a dependency line and select **Show on disk** to reveal the location of a dependency: + +![dependency-show](../assets/en/Project/dependency-show.png) + +:::note + +This item is not displayed if the dependency is inactive because its files are not found. + +::: + +Component icon and location logo provide additional information: + +- The component logo indicates if it is provided by 4D or a third-party developer. +- Local components can be differentiated from GitHub components by a small icon. + +![dependency-origin](../assets/en/Project/dependency-github.png) + + @@ -400,116 +464,145 @@ If the component is stored on a [private GitHub repository](#private-repositorie ::: +Define the [dependency version range](#tags-and-versions) to use for this project. By defaut, "Latest" is selected, which means that the lastest version will be automatically used. + +Click on the **Add** button to add the dependency to the project. + +The GitHub dependency declared in the [**dependencies.json**](#dependenciesjson) file and added to the [inactive dependency list](#dependency-status) with the **Available at restart** status. It will be loaded once the application restarts. -You can then define the [tag or version](#tags-and-versions) option for the dependency: +#### Defining a GitHub dependency version range + +You can define the [tag or version](#tags-and-versions) option for a dependency: ![dependency-git-tag](../assets/en/Project/dependency-git-tag.png) -- **Latest**: Selected by default and allows to download the release that is tagged as the latest (stable) version. +- **Latest**: Selected by default and allows to download the release that is tagged as the latest (stable) version. - **Up to Next Major Version**: Define a [semantic version range](#tags-and-versions) to restrict updates to the next major version. - **Up to Next Minor Version**: Similarly, restrict updates to the next minor version. - **Exact Version (Tag)**: Select or manually enter a [specific tag](#tags-and-versions) from the available list. +The current GitHub dependency version is displayed on the right side of the dependency item: -Click on the **Add** button to add the dependency to the project. +![dependency-origin](../assets/en/Project/dependency-version.png) -The GitHub dependency declared in the [**dependencies.json**](#dependenciesjson) file and added to the [inactive dependency list](#dependency-status) with the **Available at restart** status. It will be loaded once the application restarts. -#### Providing your GitHub access token -If the component is stored on a [private GitHub repository](#private-repositories), you need to provide your personal access token to the Dependency manager. To do this, you can either: +#### Modifying the GitHub dependency version range -- click on **Add a personal access token...** button that is displayed in the "Add a dependency" dialog box after you entered a private GitHub repository path. -- or, select **Add a GitHub personal access token...** in the Dependency manager menu at any moment. +You can modify the [version setting](#defining-a-github-dependency-version-range) for a listed GitHub dependency: select the dependency to modify and select **Modify the dependency...** from the contextual menu. In the "Modify the dependency" dialog box, edit the Dependency Rule menu and click **Apply**. -![dependency-add-token](../assets/en/Project/dependency-add-token.png) +Modifying the version range is useful for example if you use the automatic update feature and want to lock a dependency to a specific version number. -You can then enter your personal access token: -![dependency-add-token-2](../assets/en/Project/dependency-add-token-2.png) -You can only enter one personal access token. Once a token has been entered, you can edit it. +### Updating GitHub dependencies +The Dependency manager provides an integrated handling of updates on GitHub. The following features are supported: -### Removing a dependency +- Automatic and manual checking of available versions +- Automatic and manual updating of components -To remove a dependency from the Dependencies panel, select the dependency to remove and click on the **-** button of the panel or select **Remove the dependency...** from the contextual menu. You can select several dependencies, in which case the action is applied to all selected dependencies. +Manual operations can be done **per dependency** or **for all dependencies**. + +#### Checking for new versions + +Dependencies are regularly checked for updates on GitHub. This checking is done transparently in background. :::note -Only dependencies declared in the [**dependencies.json**](#dependenciesjson) file can be removed using the Dependencies panel. If a selected dependency cannot be removed, the **-** button is disabled and the **Remove the dependency...** menu item is hidden. +If you provide an [access token](#providing-your-github-access-token), checks are performed more frequently, as GitHub then allows a higher frequency of requests to repositories. ::: -A confirmation dialog box is displayed. If the dependency was declared in the **environment4d.json** file, an option allows you to remove it: +In addition, you can check for updates at any moment, for a single dependency or for all dependencies: -![dependency-remove](../assets/en/Project/remove-comp.png) +- To check for updates of a single dependency, right-click on the dependency and select **Check for updates** in the contextual menu. -If you confirm the dialog box, the removed dependency [status](#dependency-status) is automatically flagged "Unload after restart". It will be unloaded once the application restarts. +![check component](../assets/en/Project/check-component-one.png) +- To check for updates of all dependencies, click on the **options** menu at the bottom of the Dependency manager window and select **Check for updates**. -### Dependency Origin +![check components](../assets/en/Project/check-component-all.png) -The Dependencies panel lists all project dependencies, whatever their origin, i.e. wherever they come from. The dependency origin is provided by the tag under its name: -![dependency-origin](../assets/en/Project/dependency-origin.png) +If a new component version matching your [component versioning configuration](#defining-a-github-dependency-version-range) is detected on GitHub, a specific dependency status is displayed: -The following origins are possible: +![dependency-new-version](../assets/en/Project/dependency-available.png) -|Origin tag|Description| -|---|---| -|4D Component|Built-in 4D component, stored in the `Components` folder of the 4D application| -|dependencies.json|Component declared in the [`dependencies.json`](#dependenciesjson) file| -|Environment|Component declared in the [`environnement4d.json`](#environment4djson) file| -|Project Component|Component located in the [`Components`](architecture.md#components) folder| +You can decide to [update the component](#updating-dependencies) or not. +If you do not want to use a component update (for example you want to stay with a specific version), just let the current status (make sure the [**Automatic update**](#automatic-update) feature is not checked). -**Right-click** in a dependency line and select **Show on disk** to reveal the location of a dependency: +#### Updating dependencies -![dependency-show](../assets/en/Project/dependency-show.png) +**Updating a dependency** means downloading a new version of the dependency from GitHub and keeping it ready to be loaded the next time the project is started. -:::note +You can update dependencies at any moment, for a single dependency or for all dependencies: -This item is not displayed if the dependency is inactive because its files are not found. +- To update a single dependency, right-click on the dependency and select **Update \ on next startup** in the contextual menu or in the **options** menu at the bottom of the Dependency manager window: -::: +![check component](../assets/en/Project/update-component-one.png) -Component icon and location logo provide additional information: +- To update all dependencies at once, click on the **options** menu at the bottom of the Dependency manager window and select **Update all remote dependencies on next startup**: -- The component logo indicates if it is provided by 4D or a third-party developer. -- Local components can be differentiated from GitHub components by a small icon. +![check components](../assets/en/Project/update-component-all.png) -![dependency-origin](../assets/en/Project/dependency-github.png) +In any cases, whatever the current dependency status, an automatic checking is done on GitHub before updating the dependency, to make sure the most recent version is retrieved, [according to your component versioning configuration](#defining-a-github-dependency-version-range). +When you select an update command: +- a dialog box is displayed and proposes to **restart the project**, so that the updated dependencies are immediately available. It is usually recommended to restart the project to evaluate updated dependencies. +- if you click Later, the update command is no longer available in the menu, meaning the action has been planned for the next startup. -### Filtering Dependencies +#### Automatic update -By default, all dependencies identified by the Dependency manager are listed, whatever their [status](#dependency-status). You can filter the displayed dependencies according to their status by selecting the appropriate tab at the top of the Dependencies panel: +The **Automatic update** option is available in the **options** menu at the bottom of the Dependency manager window. -![dependency-tabs](../assets/en/Project/dependency-tabs.png) +When this option is checked (default), new GitHub component versions matching your [component versioning configuration](#defining-a-github-dependency-version-range) are automatically updated for the next project startup. This option facilitates the day-to-day management of dependency updates, by eliminating the need to manually select updates. -- **Active**: Dependencies that are loaded and can be used in the project. It includes *overloading* dependencies, which are actually loaded. *Overloaded* dependencies are listed in the **Conflicts** panel, along with all conflicting dependencies. -- **Inactive**: Dependencies that are not loaded in the project and are not available. There are many possible reasons for this status: missing files, version incompatibility... -- **Conflict**: Dependencies that are loaded but that overloads at least one other dependency at lower [priority level](#priority). Overloaded dependencies are also displayed so that you can check the origin of the conflict and take appropriate actions. +When this option is unchecked, a new component version matching your [component versioning configuration](#defining-a-github-dependency-version-range) is only indicated as available and will require a [manual updating](#updating-dependencies). Unselect the **Automatic update** option if you want to monitor dependency updates precisely. -### Dependency Status -Dependencies requiring the developer's attention are indicated by a **status label** at the right side of the line and a specific background color: -![dependency-status](../assets/en/Project/dependency-conflict2.png) -The following status labels are available: -- **Overloaded**: The dependency is not loaded because it is overloaded by another dependency with the same name at a higher [priority level](#priority). -- **Overloading**: The dependency is loaded and is overloading one or more other dependencies with the same name at a lower [priority level](#priority). -- **Not found**: The dependency is declared in the dependencies.json file but is not found. -- **Inactive**: The dependency is not loaded because it is not compatible with the project (e.g. the component is not compiled for the current platform). -- **Duplicated**: The dependency is not loaded because another dependency with the same name exists at the same location (and is loaded). -- **Available after restart**: The dependency reference has just been added [using the interface](#monitoring-project-dependencies), it will be loaded once the application restarts. -- **Unloaded after restart**: The dependency reference has just been removed [using the interface](#removing-a-dependency), it will be unloaded once the application restarts. +### Providing your GitHub access token +Registering your personal access token in the Dependency manager is: + +- mandatory if the component is stored on a [private GitHub repository](#private-repositories), +- recommended for a more frequent [checking of dependency updates](#updating-github-dependencies). + +To provide your GitHub access token, you can either: + +- click on **Add a personal access token...** button that is displayed in the "Add a dependency" dialog box after you entered a private GitHub repository path. +- or, select **Add a GitHub personal access token...** in the Dependency manager menu at any moment. + +![dependency-add-token](../assets/en/Project/dependency-add-token.png) + +You can then enter your personal access token: + +![dependency-add-token-2](../assets/en/Project/dependency-add-token-2.png) + +You can only enter one personal access token. Once a token has been entered, you can edit it. + +The provided token is stored in a **github.json** file in the [active 4D folder](../commands-legacy/get-4d-folder.md#active-4d-folder). + + +### Removing a dependency + +To remove a dependency from the Dependencies panel, select the dependency to remove and click on the **-** button of the panel or select **Remove the dependency...** from the contextual menu. You can select several dependencies, in which case the action is applied to all selected dependencies. + +:::note + +Only dependencies declared in the [**dependencies.json**](#dependenciesjson) file can be removed using the Dependencies panel. If a selected dependency cannot be removed, the **-** button is disabled and the **Remove the dependency...** menu item is hidden. + +::: + +A confirmation dialog box is displayed. If the dependency was declared in the **environment4d.json** file, an option allows you to remove it: + +![dependency-remove](../assets/en/Project/remove-comp.png) + +If you confirm the dialog box, the removed dependency [status](#dependency-status) is automatically flagged "Unload after restart". It will be unloaded once the application restarts. -A tooltip is displayed when you hover over the dependency line, provding additional information about the status: -![dependency-tips](../assets/en/Project/dependency-tip1.png) diff --git a/docs/assets/en/Project/check-component-all.png b/docs/assets/en/Project/check-component-all.png new file mode 100644 index 00000000000000..e69c0a944123d4 Binary files /dev/null and b/docs/assets/en/Project/check-component-all.png differ diff --git a/docs/assets/en/Project/check-component-one.png b/docs/assets/en/Project/check-component-one.png new file mode 100644 index 00000000000000..a28b341c2f5711 Binary files /dev/null and b/docs/assets/en/Project/check-component-one.png differ diff --git a/docs/assets/en/Project/dependency-available.png b/docs/assets/en/Project/dependency-available.png new file mode 100644 index 00000000000000..7d703a9fdb9d0a Binary files /dev/null and b/docs/assets/en/Project/dependency-available.png differ diff --git a/docs/assets/en/Project/dependency-conflict2.png b/docs/assets/en/Project/dependency-conflict2.png index aca6352b6228e0..894064ff9c279c 100644 Binary files a/docs/assets/en/Project/dependency-conflict2.png and b/docs/assets/en/Project/dependency-conflict2.png differ diff --git a/docs/assets/en/Project/dependency-github.png b/docs/assets/en/Project/dependency-github.png index 3a8dde7cb02f1d..560e17bb42a38e 100644 Binary files a/docs/assets/en/Project/dependency-github.png and b/docs/assets/en/Project/dependency-github.png differ diff --git a/docs/assets/en/Project/dependency-origin.png b/docs/assets/en/Project/dependency-origin.png index 9d43fe6bd4f506..3b750ab5dbaf05 100644 Binary files a/docs/assets/en/Project/dependency-origin.png and b/docs/assets/en/Project/dependency-origin.png differ diff --git a/docs/assets/en/Project/dependency-show.png b/docs/assets/en/Project/dependency-show.png index ed358b57e41768..d862bd91343a59 100644 Binary files a/docs/assets/en/Project/dependency-show.png and b/docs/assets/en/Project/dependency-show.png differ diff --git a/docs/assets/en/Project/dependency-tip1.png b/docs/assets/en/Project/dependency-tip1.png index 05788609ab8a91..50830ff5e6adcb 100644 Binary files a/docs/assets/en/Project/dependency-tip1.png and b/docs/assets/en/Project/dependency-tip1.png differ diff --git a/docs/assets/en/Project/dependency-version.png b/docs/assets/en/Project/dependency-version.png new file mode 100644 index 00000000000000..b37014fd85bc8b Binary files /dev/null and b/docs/assets/en/Project/dependency-version.png differ diff --git a/docs/assets/en/Project/dependency.png b/docs/assets/en/Project/dependency.png index 34127bf5a3d063..2515791f19c790 100644 Binary files a/docs/assets/en/Project/dependency.png and b/docs/assets/en/Project/dependency.png differ diff --git a/docs/assets/en/Project/project-dependencies-indicator.png b/docs/assets/en/Project/project-dependencies-indicator.png new file mode 100644 index 00000000000000..8c88840165538b Binary files /dev/null and b/docs/assets/en/Project/project-dependencies-indicator.png differ diff --git a/docs/assets/en/Project/update-component-all.png b/docs/assets/en/Project/update-component-all.png new file mode 100644 index 00000000000000..3494e7faee10c5 Binary files /dev/null and b/docs/assets/en/Project/update-component-all.png differ diff --git a/docs/assets/en/Project/update-component-one.png b/docs/assets/en/Project/update-component-one.png new file mode 100644 index 00000000000000..0c734b11774382 Binary files /dev/null and b/docs/assets/en/Project/update-component-one.png differ diff --git a/docs/commands-legacy/abort-process-by-id.md b/docs/commands-legacy/abort-process-by-id.md index 5959512977b47f..dc8324a3f1fea5 100644 --- a/docs/commands-legacy/abort-process-by-id.md +++ b/docs/commands-legacy/abort-process-by-id.md @@ -41,4 +41,13 @@ You want to stop the selected process of the processes collection displayed in a #### See also -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1634 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/abort.md b/docs/commands-legacy/abort.md index ea45000239c32e..ad423a36cf24a2 100644 --- a/docs/commands-legacy/abort.md +++ b/docs/commands-legacy/abort.md @@ -34,4 +34,13 @@ Although the **ABORT** command is intended to be used only from within a error-h #### See also -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 156 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/abs.md b/docs/commands-legacy/abs.md index 099819734bf855..e54123de00ee09 100644 --- a/docs/commands-legacy/abs.md +++ b/docs/commands-legacy/abs.md @@ -25,3 +25,13 @@ The following example returns the absolute value of –10.3, which is 10.3: ```4d  vlVector:=Abs(-10.3) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 99 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/accept.md b/docs/commands-legacy/accept.md index e15e5f00f22cbe..9e9aeeb460d9ef 100644 --- a/docs/commands-legacy/accept.md +++ b/docs/commands-legacy/accept.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ACCEPT** command is used in form or object methods (or in subroutines) to: @@ -37,4 +34,14 @@ The **ACCEPT** command is allowed in headless mode, in the context of offscreen #### See also -[CANCEL](cancel.md) \ No newline at end of file +[CANCEL](cancel.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 269 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/accumulate.md b/docs/commands-legacy/accumulate.md index e6d081631b890a..0ea9af4375a99d 100644 --- a/docs/commands-legacy/accumulate.md +++ b/docs/commands-legacy/accumulate.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **ACCUMULATE** specifies the fields or variables to be accumulated during a form report performed using [PRINT SELECTION](print-selection.md). @@ -37,4 +34,13 @@ See the example for the [BREAK LEVEL](break-level.md) command. [BREAK LEVEL](break-level.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 303 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/action-info.md b/docs/commands-legacy/action-info.md index c90f01dc28bb2c..37c9042b81e0dd 100644 --- a/docs/commands-legacy/action-info.md +++ b/docs/commands-legacy/action-info.md @@ -64,4 +64,13 @@ You want to know if the copy action is available (i.e. if some data is selected) #### See also [INVOKE ACTION](invoke-action.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1442 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/activated.md b/docs/commands-legacy/activated.md index 13aa0eb4b3502a..2a100ed6613a0b 100644 --- a/docs/commands-legacy/activated.md +++ b/docs/commands-legacy/activated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Activated** command (obsolete) returns **True** in a form method when the window containing the form becomes the frontmost window of the frontmost process. @@ -29,4 +26,13 @@ displayed_sidebar: docs #### See also [Deactivated](deactivated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 346 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/active-transaction.md b/docs/commands-legacy/active-transaction.md index 5e4bacb390d428..3d4f2cb4f976c8 100644 --- a/docs/commands-legacy/active-transaction.md +++ b/docs/commands-legacy/active-transaction.md @@ -42,4 +42,13 @@ You want to know the current transaction status: [In transaction](in-transaction.md) [RESUME TRANSACTION](resume-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspending transactions* \ No newline at end of file +*Suspending transactions* + +#### Properties + +| | | +| --- | --- | +| Command number | 1387 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/activity-snapshot.md b/docs/commands-legacy/activity-snapshot.md index 11bdb5ce76ea1e..87c171198ed393 100644 --- a/docs/commands-legacy/activity-snapshot.md +++ b/docs/commands-legacy/activity-snapshot.md @@ -104,3 +104,13 @@ This method, executed in a separate process on 4D or 4D Server, provides a snaps You get arrays such as: ![](../assets/en/commands/pict1213741.en.png) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1277 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/add-record.md b/docs/commands-legacy/add-record.md index 9bc808ab56adcb..bace7f1fa3c675 100644 --- a/docs/commands-legacy/add-record.md +++ b/docs/commands-legacy/add-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility *This command was implemented in 4D's early releases and is still useful for prototyping or basic developments. However, to build customized and modern interfaces, it is now recommended to use generic forms based upon the [DIALOG](../commands/dialog.md) command which provide advanced features and better control over the data flow.* @@ -91,4 +88,17 @@ Accepting the record sets the OK system variable to 1; canceling it sets the OK [CANCEL](cancel.md) [CREATE RECORD](create-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 56 | +| Thread safe | ✗ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || +| Forbidden on the server || + + diff --git a/docs/commands-legacy/add-to-date.md b/docs/commands-legacy/add-to-date.md index 380d393cd76434..fe891d82fb5d23 100644 --- a/docs/commands-legacy/add-to-date.md +++ b/docs/commands-legacy/add-to-date.md @@ -35,3 +35,13 @@ Although you can use the [Self](self.md) to add days to a date, **Add to date**   // This line does the same thing as $vdTomorrow:=Current date+1  $vdTomorrow:=Add to date(Current date;0;0;1) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 393 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/add-to-set.md b/docs/commands-legacy/add-to-set.md index ef20dab5b32741..f40504d32e4775 100644 --- a/docs/commands-legacy/add-to-set.md +++ b/docs/commands-legacy/add-to-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### See also -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 119 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/adjust-blobs-cache-priority.md b/docs/commands-legacy/adjust-blobs-cache-priority.md index 13daae65ce0d1c..cd37342f285cc0 100644 --- a/docs/commands-legacy/adjust-blobs-cache-priority.md +++ b/docs/commands-legacy/adjust-blobs-cache-priority.md @@ -51,4 +51,13 @@ You want to temporarily change the cache priority for the \[Docs\] table text fi #### See also [Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1431 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/adjust-index-cache-priority.md b/docs/commands-legacy/adjust-index-cache-priority.md index 31626dcbd0f128..caa30ca93c04d6 100644 --- a/docs/commands-legacy/adjust-index-cache-priority.md +++ b/docs/commands-legacy/adjust-index-cache-priority.md @@ -51,4 +51,13 @@ You want to temporarily change the cache priority for the \[Docs\]Comments field #### See also [Get adjusted index cache priority](get-adjusted-index-cache-priority.md) -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1430 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/adjust-table-cache-priority.md b/docs/commands-legacy/adjust-table-cache-priority.md index 1f06318e492f38..5fee414be2106b 100644 --- a/docs/commands-legacy/adjust-table-cache-priority.md +++ b/docs/commands-legacy/adjust-table-cache-priority.md @@ -49,4 +49,13 @@ You want to temporarily change the cache priority for the \[Docs\] scalar fields #### See also [Get adjusted table cache priority](get-adjusted-table-cache-priority.md) -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1429 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/after.md b/docs/commands-legacy/after.md index e21c2e6f13fc34..8610c10ab72bf4 100644 --- a/docs/commands-legacy/after.md +++ b/docs/commands-legacy/after.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **After** returns True for the After execution cycle. @@ -26,4 +23,13 @@ In order for the **After** execution cycle to be generated, make sure that the O #### See also -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 31 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/alert.md b/docs/commands-legacy/alert.md index c464793f0a2c9a..56815e5d366384 100644 --- a/docs/commands-legacy/alert.md +++ b/docs/commands-legacy/alert.md @@ -66,4 +66,13 @@ displays the alert dialog box (on Windows) shown: [CONFIRM](confirm.md) [DISPLAY NOTIFICATION](display-notification.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 41 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/all-records.md b/docs/commands-legacy/all-records.md index c34f7992767626..ac5ae3b6db8b7e 100644 --- a/docs/commands-legacy/all-records.md +++ b/docs/commands-legacy/all-records.md @@ -33,4 +33,15 @@ The following example displays all the records from the \[People\] table: [ORDER BY](order-by.md) [QUERY](query.md) [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 47 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/append-data-to-pasteboard.md b/docs/commands-legacy/append-data-to-pasteboard.md index cedf18e97a6d6e..e2671644fd7d54 100644 --- a/docs/commands-legacy/append-data-to-pasteboard.md +++ b/docs/commands-legacy/append-data-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The APPEND DATA TO PASTEBOARD command appends to the pasteboard the data contained in the BLOB *data* under the data type specified in *dataType*. @@ -217,4 +214,14 @@ If the BLOB data is correctly appended to the pasteboard, OK is set to 1; otherw [CLEAR PASTEBOARD](clear-pasteboard.md) [SET PICTURE TO PASTEBOARD](set-picture-to-pasteboard.md) -[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) \ No newline at end of file +[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 403 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/append-document.md b/docs/commands-legacy/append-document.md index 5168e5e7d0310c..86edacff844f79 100644 --- a/docs/commands-legacy/append-document.md +++ b/docs/commands-legacy/append-document.md @@ -37,4 +37,14 @@ The following example opens an existing document called Note, appends the string #### See also [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 265 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/docs/commands-legacy/append-menu-item.md b/docs/commands-legacy/append-menu-item.md index 020e03492e87dd..ade06aeda7daed 100644 --- a/docs/commands-legacy/append-menu-item.md +++ b/docs/commands-legacy/append-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **APPEND MENU ITEM** command appends new menu items to the menu whose number or reference is passed in *menu*. @@ -81,4 +78,14 @@ Then, in any form or project method, you can write: [DELETE MENU ITEM](delete-menu-item.md) [INSERT MENU ITEM](insert-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 411 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/append-to-array.md b/docs/commands-legacy/append-to-array.md index 7ca9b598c0833b..41a112373d89e6 100644 --- a/docs/commands-legacy/append-to-array.md +++ b/docs/commands-legacy/append-to-array.md @@ -43,4 +43,13 @@ The following code: #### See also [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 911 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/append-to-list.md b/docs/commands-legacy/append-to-list.md index e1dd3ee4df37f4..a54c36e3e6dc4e 100644 --- a/docs/commands-legacy/append-to-list.md +++ b/docs/commands-legacy/append-to-list.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **APPEND TO LIST** command appends a new item to the hierarchical list whose list reference number you pass in *list*. @@ -158,4 +155,13 @@ When the form is executed, the list will look like this: [INSERT IN LIST](insert-in-list.md) [SET LIST ITEM](set-list-item.md) [SET LIST ITEM PARAMETER](set-list-item-parameter.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 376 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/application-file.md b/docs/commands-legacy/application-file.md index ced4decb7e6dbe..0af21f91bf46ba 100644 --- a/docs/commands-legacy/application-file.md +++ b/docs/commands-legacy/application-file.md @@ -16,8 +16,6 @@ displayed_sidebar: docs #### Description The Application file command returns the long name of the 4D executable file or application you are running. - -*On Windows* If, for example, you are running 4D located at \\PROGRAMS\\4D on the volume E, the command returns E:\\PROGRAMS\\4D\\4D.EXE. *On Macintosh* @@ -40,4 +38,13 @@ At startup on Windows, you need to check if a DLL Library is correctly located a #### See also [Data file](data-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 491 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/application-info.md b/docs/commands-legacy/application-info.md index aa3d2b119608dc..6b9c3a139bb20f 100644 --- a/docs/commands-legacy/application-info.md +++ b/docs/commands-legacy/application-info.md @@ -130,4 +130,13 @@ If the code is executed on 4D Server, the object contains (for example): [Execute on server](execute-on-server.md) [Get database parameter](get-database-parameter.md) [System info](system-info.md) -[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) \ No newline at end of file +[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1599 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/application-type.md b/docs/commands-legacy/application-type.md index d53a92076f7f82..4c66df50bc3b82 100644 --- a/docs/commands-legacy/application-type.md +++ b/docs/commands-legacy/application-type.md @@ -41,4 +41,13 @@ Somewhere in your code, other than in the *On Server Startup Database Method*, y #### See also [Application version](application-version.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 494 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/application-version.md b/docs/commands-legacy/application-version.md index b78c9816d72ebb..383854edc90932 100644 --- a/docs/commands-legacy/application-version.md +++ b/docs/commands-legacy/application-version.md @@ -118,4 +118,13 @@ You want to use the application's short version value returned by the command to #### See also [Application type](application-type.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 493 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/apply-to-selection.md b/docs/commands-legacy/apply-to-selection.md index 3ce41856db89b0..47f6d8bcd2c845 100644 --- a/docs/commands-legacy/apply-to-selection.md +++ b/docs/commands-legacy/apply-to-selection.md @@ -61,4 +61,14 @@ If the user clicks the Stop button in the progress thermometer, the OK system va #### See also [EDIT FORMULA](edit-formula.md) -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 70 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/arctan.md b/docs/commands-legacy/arctan.md index 320d8473e448c6..3c820fbd8bef67 100644 --- a/docs/commands-legacy/arctan.md +++ b/docs/commands-legacy/arctan.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -Arctan returns the angle, expressed in radians, of the tangent *number*. - -**Note:** 4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). +Arctan returns the angle, expressed in radians, of the tangent *number*.4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). #### Example @@ -32,4 +30,13 @@ The following example shows the value of Pi: [Cos](cos.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 20 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-blob.md b/docs/commands-legacy/array-blob.md index d6965c892f2854..72f6449bfb480d 100644 --- a/docs/commands-legacy/array-blob.md +++ b/docs/commands-legacy/array-blob.md @@ -59,4 +59,13 @@ This example creates a local array of 100 rows each containing 50 BLOB-type elem #### See also -*Creating Arrays* \ No newline at end of file +*Creating Arrays* + +#### Properties + +| | | +| --- | --- | +| Command number | 1222 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-boolean.md b/docs/commands-legacy/array-boolean.md index c5e220cdaf5b56..5da3f989fcdcd1 100644 --- a/docs/commands-legacy/array-boolean.md +++ b/docs/commands-legacy/array-boolean.md @@ -61,4 +61,13 @@ This example creates an interprocess array of 50 Boolean elements and sets each #### See also -[ARRAY INTEGER](array-integer.md) \ No newline at end of file +[ARRAY INTEGER](array-integer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 223 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-date.md b/docs/commands-legacy/array-date.md index 4f36cc9d2eac90..ed75277ab2e49f 100644 --- a/docs/commands-legacy/array-date.md +++ b/docs/commands-legacy/array-date.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The ARRAY DATE command creates and/or resizes an array of [Date](# "In the range of 1/1/100 to 12/31/32,767") elements in memory. - -* The *arrayName* parameter is the name of the array. +The ARRAY DATE command creates and/or resizes an array of [Date](# "In the range of 1/1/100 to 12/31/32,767") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array. * The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the first dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. @@ -54,3 +52,13 @@ This example creates an interprocess array of 50 Date elements, and sets each el     ◊adValues{$vlElem}:=Current date+$vlElem  End for ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 224 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-integer.md b/docs/commands-legacy/array-integer.md index 798b981e842610..68d065fef40a96 100644 --- a/docs/commands-legacy/array-integer.md +++ b/docs/commands-legacy/array-integer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The ARRAY INTEGER command creates and/or resizes an array of 2-byte [Integer](# "Number between -32,768..32,767 (2^15..(2^15)-1) (2-byte integer)") elements in memory. - -* The *arrayName* parameter is the name of the array. +The ARRAY INTEGER command creates and/or resizes an array of 2-byte [Integer](# "Number between -32,768..32,767 (2^15..(2^15)-1) (2-byte integer)") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array. * The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the first dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. @@ -58,4 +56,13 @@ This example creates an interprocess array of 50 2-byte [Integer](# "Number betw #### See also [ARRAY LONGINT](array-longint.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 220 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-longint.md b/docs/commands-legacy/array-longint.md index 53060c59aac693..1b9ee72d72fc3a 100644 --- a/docs/commands-legacy/array-longint.md +++ b/docs/commands-legacy/array-longint.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The ARRAY LONGINT command creates and/or resizes an array of 4-byte [Longint](# "Number between -2^31..(2^31)-1 (4-byte Integer)") elements in memory. - -* The *arrayName* parameter is the name of the array. +The ARRAY LONGINT command creates and/or resizes an array of 4-byte [Longint](# "Number between -2^31..(2^31)-1 (4-byte Integer)") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array. * The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the first dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. @@ -58,4 +56,13 @@ This example creates an interprocess array of 50 4-byte Long Integer elements an #### See also [ARRAY INTEGER](array-integer.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 221 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-object.md b/docs/commands-legacy/array-object.md index 03926b5ae8c691..6a4a501bb50809 100644 --- a/docs/commands-legacy/array-object.md +++ b/docs/commands-legacy/array-object.md @@ -67,4 +67,13 @@ Creation and filling of a local object array: #### See also *Creating Arrays* -*Objects (Language)* \ No newline at end of file +*Objects (Language)* + +#### Properties + +| | | +| --- | --- | +| Command number | 1221 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-picture.md b/docs/commands-legacy/array-picture.md index d793cff85a0303..09e3b441a3e1a7 100644 --- a/docs/commands-legacy/array-picture.md +++ b/docs/commands-legacy/array-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The ARRAY PICTURE command creates and/or resizes an array of [Picture](# "Can be any Windows or Macintosh picture") elements in memory. - -* The *arrayName* parameter is the name of the array. +The ARRAY PICTURE command creates and/or resizes an array of [Picture](# "Can be any Windows or Macintosh picture") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array.The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the first dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. While applying to an existing array: @@ -60,3 +58,13 @@ This example creates an interprocess array of [Picture](# "Can be any Windows or  End for  ARRAY PICTURE(◊agValues;$vlPictElem) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 279 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-pointer.md b/docs/commands-legacy/array-pointer.md index 68f340f6e9684d..98b6358d202bb6 100644 --- a/docs/commands-legacy/array-pointer.md +++ b/docs/commands-legacy/array-pointer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **ARRAY POINTER** command creates or resizes an array of [Pointer](# "A reference to another variable (including arrays and array elements), table, or field") elements in memory. - -* The *arrayName* parameter is the name of the array. +The **ARRAY POINTER** command creates or resizes an array of [Pointer](# "A reference to another variable (including arrays and array elements), table, or field") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array. * The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the firt dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. @@ -56,3 +54,13 @@ This example creates an interprocess array of [Pointer](# "A reference to anothe     End if  End for ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 280 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-real.md b/docs/commands-legacy/array-real.md index 351e4d4c2dc938..dbcec076da4289 100644 --- a/docs/commands-legacy/array-real.md +++ b/docs/commands-legacy/array-real.md @@ -58,4 +58,13 @@ This example creates an interprocess array of 50 Real elements and sets each ele #### See also [ARRAY INTEGER](array-integer.md) -[ARRAY LONGINT](array-longint.md) \ No newline at end of file +[ARRAY LONGINT](array-longint.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 219 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-text.md b/docs/commands-legacy/array-text.md index b2742067ce2074..194a1a7d128443 100644 --- a/docs/commands-legacy/array-text.md +++ b/docs/commands-legacy/array-text.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The ARRAY TEXT command creates and/or resizes an array of [Text](# "A character string that may contain from 0 to 2 GB of text") elements in memory. - -* The *arrayName* parameter is the name of the array. +The ARRAY TEXT command creates and/or resizes an array of [Text](# "A character string that may contain from 0 to 2 GB of text") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array. * The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the first dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. @@ -54,3 +52,13 @@ This example creates an interprocess array of 50 [Text](# "A character string th     ◊atValues{$vlElem}:="Element #"+String($vlElem)  End for ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 222 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-time.md b/docs/commands-legacy/array-time.md index e6e75bd73333e5..263969fc68d006 100644 --- a/docs/commands-legacy/array-time.md +++ b/docs/commands-legacy/array-time.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **ARRAY TIME** command creates and/or resizes an array of Time type elements in memory. - -**Reminder:** In 4D, times can be processed as numeric values. In 4D versions prior to v14, you had to combine a longint array with a display format in order to manage an array of times. +The **ARRAY TIME** command creates and/or resizes an array of Time type elements in memory.In 4D, times can be processed as numeric values. In 4D versions prior to v14, you had to combine a longint array with a display format in order to manage an array of times. The *arrayName* parameter is the name of the array. @@ -64,4 +62,13 @@ Since time arrays accept numeric values, the following code is valid: #### See also *Creating Arrays* -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1223 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-to-collection.md b/docs/commands-legacy/array-to-collection.md index 6a5e9b211514cc..c6a01d15d4945e 100644 --- a/docs/commands-legacy/array-to-collection.md +++ b/docs/commands-legacy/array-to-collection.md @@ -81,4 +81,13 @@ You want to copy a text array in a shared collection: #### See also [COLLECTION TO ARRAY](collection-to-array.md) -*Type conversions between collections and 4D arrays* \ No newline at end of file +*Type conversions between collections and 4D arrays* + +#### Properties + +| | | +| --- | --- | +| Command number | 1563 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/array-to-list.md b/docs/commands-legacy/array-to-list.md index 01826fe8d3fdac..291874b7bd664d 100644 --- a/docs/commands-legacy/array-to-list.md +++ b/docs/commands-legacy/array-to-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ARRAY TO LIST command creates or replaces the hierarchical list or the choice list (created in the List editor) that is specified in *list* using the elements of the array *array.* @@ -62,4 +59,14 @@ An error *\-9957* is generated when ARRAY TO LIST is applied to a list that is c [LIST TO ARRAY](list-to-array.md) [Load list](load-list.md) [ON ERR CALL](on-err-call.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 287 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/array-to-selection.md b/docs/commands-legacy/array-to-selection.md index 52cdd86608b203..4673985f09ff34 100644 --- a/docs/commands-legacy/array-to-selection.md +++ b/docs/commands-legacy/array-to-selection.md @@ -79,4 +79,14 @@ You want to copy a selection of records to an archive table by selecting the fie #### See also [SELECTION TO ARRAY](selection-to-array.md) -*System Variables* \ No newline at end of file +*System Variables* + +#### Properties + +| | | +| --- | --- | +| Command number | 261 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/docs/commands-legacy/assert.md b/docs/commands-legacy/assert.md index 0d06b5ce490a0a..387a0a847cebc8 100644 --- a/docs/commands-legacy/assert.md +++ b/docs/commands-legacy/assert.md @@ -52,4 +52,14 @@ An assertion can allow parameters passed to a project method to be tested in ord [Asserted](asserted.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1129 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/asserted.md b/docs/commands-legacy/asserted.md index ac5180db0b0d8a..66ceec8f393acc 100644 --- a/docs/commands-legacy/asserted.md +++ b/docs/commands-legacy/asserted.md @@ -40,4 +40,14 @@ Insertion of an assertion in the evaluation of an expression: [ASSERT](assert.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1132 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/average.md b/docs/commands-legacy/average.md index 49bd8d16799fdb..68e2869e17faf7 100644 --- a/docs/commands-legacy/average.md +++ b/docs/commands-legacy/average.md @@ -88,4 +88,14 @@ You can perform the following computations: [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) [Subtotal](subtotal.md) -[Sum](sum.md) \ No newline at end of file +[Sum](sum.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 2 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/backup-info.md b/docs/commands-legacy/backup-info.md index 81693c6636872f..747759be8ea049 100644 --- a/docs/commands-legacy/backup-info.md +++ b/docs/commands-legacy/backup-info.md @@ -30,4 +30,13 @@ Pass the type of information to get in *selector*. The type and content of the * #### See also -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 888 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/backup.md b/docs/commands-legacy/backup.md index b129ba3848c5d5..646b8f934a3510 100644 --- a/docs/commands-legacy/backup.md +++ b/docs/commands-legacy/backup.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The BACKUP command starts the backup of the database using the current backup settings. No confirmation dialog is displayed; however, a progress bar appears on screen. @@ -39,4 +36,14 @@ If an incident occurs during backup, information about the incident is written i [BACKUP INFO](backup-info.md) *On Backup Startup Database Method* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 887 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/base64-decode.md b/docs/commands-legacy/base64-decode.md index df567fbc477cc5..bf6ff7fabda83c 100644 --- a/docs/commands-legacy/base64-decode.md +++ b/docs/commands-legacy/base64-decode.md @@ -54,4 +54,13 @@ This example lets you transfer a picture via a BLOB: [BASE64 ENCODE](base64-encode.md) [Generate digest](generate-digest.md) *Overview of XML DOM Commands* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 896 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/base64-encode.md b/docs/commands-legacy/base64-encode.md index 208ad9edab28ba..c96a08865eb592 100644 --- a/docs/commands-legacy/base64-encode.md +++ b/docs/commands-legacy/base64-encode.md @@ -37,4 +37,13 @@ By default if the *\** parameter is omitted, the command uses a Base64 encoding. [BASE64 DECODE](base64-decode.md) [Generate digest](generate-digest.md) *Overview of XML DOM Commands* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 895 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/beep.md b/docs/commands-legacy/beep.md index 86008158323cae..b633715e04f86e 100644 --- a/docs/commands-legacy/beep.md +++ b/docs/commands-legacy/beep.md @@ -32,4 +32,13 @@ In the following example, if no records are found by the query, a beep is emitte #### See also -[PLAY](play.md) \ No newline at end of file +[PLAY](play.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 151 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/before-selection.md b/docs/commands-legacy/before-selection.md index 08f0371dc1aa3f..f07c9e3d9c3423 100644 --- a/docs/commands-legacy/before-selection.md +++ b/docs/commands-legacy/before-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**Before selection** returns TRUE when the current record pointer is before the first record of the current selection of *table*.**Before selection** is commonly used to check whether or not [PREVIOUS RECORD](previous-record.md) has moved the current record pointer before the first record. If the current selection is empty, **Before selection** returns TRUE. +**Before selection** returns TRUE when the current record pointer is before the first record of the current selection of *table*.is commonly used to check whether or not [PREVIOUS RECORD](previous-record.md) has moved the current record pointer before the first record. If the current selection is empty, **Before selection** returns TRUE. To move the current record pointer back into the selection, use [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) or [GOTO SELECTED RECORD](goto-selected-record.md). [NEXT RECORD](next-record.md) does not move the pointer back into the selection. @@ -61,4 +61,13 @@ This form method is used during the printing of a report. It sets a variable, *v [FIRST RECORD](first-record.md) [Form event code](../commands/form-event-code.md) [PREVIOUS RECORD](previous-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 198 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/before.md b/docs/commands-legacy/before.md index 94a080a68f6b82..f79806c802c05b 100644 --- a/docs/commands-legacy/before.md +++ b/docs/commands-legacy/before.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Before** returns True for the Before execution cycle. @@ -26,4 +23,13 @@ In order for the **Before** execution cycle to be generated, make sure that the #### See also -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 29 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/begin-sql.md b/docs/commands-legacy/begin-sql.md index be37b5a6d60469..287a38e7a6473f 100644 --- a/docs/commands-legacy/begin-sql.md +++ b/docs/commands-legacy/begin-sql.md @@ -44,4 +44,13 @@ Note that the 4D *Debugger* will evaluate the SQL code line by line. In certain [End SQL](end-sql.md) [SQL Get current data source](sql-get-current-data-source.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 948 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/blob-properties.md b/docs/commands-legacy/blob-properties.md index a8be6e2a53542d..496976d9a8999e 100644 --- a/docs/commands-legacy/blob-properties.md +++ b/docs/commands-legacy/blob-properties.md @@ -77,4 +77,13 @@ After this method has been added to your application, you can use it this way: #### See also [COMPRESS BLOB](compress-blob.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 536 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/blob-size.md b/docs/commands-legacy/blob-size.md index 602287a851ac0a..5fb761f622e659 100644 --- a/docs/commands-legacy/blob-size.md +++ b/docs/commands-legacy/blob-size.md @@ -28,4 +28,13 @@ The line of code adds 100 bytes to the BLOB *myBlob*: #### See also -[SET BLOB SIZE](set-blob-size.md) \ No newline at end of file +[SET BLOB SIZE](set-blob-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 605 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/blob-to-document.md b/docs/commands-legacy/blob-to-document.md index 7ba1c4b8c01db6..90594d7167f3e8 100644 --- a/docs/commands-legacy/blob-to-document.md +++ b/docs/commands-legacy/blob-to-document.md @@ -49,4 +49,14 @@ In all cases, you can trap the error using an [ON ERR CALL](on-err-call.md) inte [Create document](create-document.md) [DOCUMENT TO BLOB](document-to-blob.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 526 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/blob-to-integer.md b/docs/commands-legacy/blob-to-integer.md index 89d6089bd5e639..b714c744b89935 100644 --- a/docs/commands-legacy/blob-to-integer.md +++ b/docs/commands-legacy/blob-to-integer.md @@ -57,4 +57,13 @@ The following example reads 20 Integer values from a BLOB, starting at the offse [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 549 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/blob-to-list.md b/docs/commands-legacy/blob-to-list.md index 6d009f751e5979..ca828ee1680b09 100644 --- a/docs/commands-legacy/blob-to-list.md +++ b/docs/commands-legacy/blob-to-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The BLOB to list command creates a new hierarchical list with the data stored within the BLOB *blob* at the byte offset (starting at zero) specified by *offset* and returns a List Reference number for that new list. @@ -61,4 +58,14 @@ The OK variable is set to 1 if the list has been successfully created, otherwise #### See also -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 557 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/blob-to-longint.md b/docs/commands-legacy/blob-to-longint.md index 245146134f60ef..a5c0090f3c9e86 100644 --- a/docs/commands-legacy/blob-to-longint.md +++ b/docs/commands-legacy/blob-to-longint.md @@ -57,4 +57,13 @@ The following example reads 20 Long Integer values from a BLOB, starting at the [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 551 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/blob-to-picture.md b/docs/commands-legacy/blob-to-picture.md index 88068b5b77a4f9..4683a84d510728 100644 --- a/docs/commands-legacy/blob-to-picture.md +++ b/docs/commands-legacy/blob-to-picture.md @@ -50,4 +50,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. [PICTURE CODEC LIST](picture-codec-list.md) [PICTURE TO BLOB](picture-to-blob.md) -[READ PICTURE FILE](read-picture-file.md) \ No newline at end of file +[READ PICTURE FILE](read-picture-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 682 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/blob-to-print-settings.md b/docs/commands-legacy/blob-to-print-settings.md index f640e6ac6aca27..5d9f1e9e617c5e 100644 --- a/docs/commands-legacy/blob-to-print-settings.md +++ b/docs/commands-legacy/blob-to-print-settings.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **BLOB to print settings** command replaces the current 4D print settings with the parameters stored in the *printSettings* BLOB. This BLOB must have been generated by the [Print settings to BLOB](print-settings-to-blob.md) command or the 4D Pack command (see below). @@ -76,4 +73,13 @@ You want to apply print settings previously saved to disk to the current 4D prin #### See also -[Print settings to BLOB](print-settings-to-blob.md) \ No newline at end of file +[Print settings to BLOB](print-settings-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1434 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/blob-to-real.md b/docs/commands-legacy/blob-to-real.md index b2251df3fefee9..cf611dd76c512c 100644 --- a/docs/commands-legacy/blob-to-real.md +++ b/docs/commands-legacy/blob-to-real.md @@ -58,4 +58,13 @@ The following example reads 20 Real values from a BLOB, starting at the offset 0 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 553 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/blob-to-text.md b/docs/commands-legacy/blob-to-text.md index f500a7cb1c1dcf..ed14726ec9fcf7 100644 --- a/docs/commands-legacy/blob-to-text.md +++ b/docs/commands-legacy/blob-to-text.md @@ -59,4 +59,13 @@ After the call, the variable is incremented by the number of bytes read. Therefo [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 555 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/blob-to-users.md b/docs/commands-legacy/blob-to-users.md index 7bf3414333d40e..2ea0b246814a62 100644 --- a/docs/commands-legacy/blob-to-users.md +++ b/docs/commands-legacy/blob-to-users.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The BLOB TO USERS command replaces the user accounts and groups found in the BLOB *users* in the current database. The BLOB *users* is encrypted and must have been created using the [USERS TO BLOB](users-to-blob.md) command. @@ -48,4 +45,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[USERS TO BLOB](users-to-blob.md) \ No newline at end of file +[USERS TO BLOB](users-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 850 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/blob-to-variable.md b/docs/commands-legacy/blob-to-variable.md index dffb2431db78ae..81c4bcd55ae5e0 100644 --- a/docs/commands-legacy/blob-to-variable.md +++ b/docs/commands-legacy/blob-to-variable.md @@ -40,4 +40,14 @@ The OK variable is set to 1 if the variable has been successfully rewritten, oth #### See also -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 533 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/bool.md b/docs/commands-legacy/bool.md index fa9d31851bd688..03fbfc48824a79 100644 --- a/docs/commands-legacy/bool.md +++ b/docs/commands-legacy/bool.md @@ -46,4 +46,13 @@ You select a value depending on the contents of an object field attribute, antic [Date](date.md) [Num](num.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1537 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/boolean-array-from-set.md b/docs/commands-legacy/boolean-array-from-set.md index 67aea24d4d0d9b..5395046cd4acdf 100644 --- a/docs/commands-legacy/boolean-array-from-set.md +++ b/docs/commands-legacy/boolean-array-from-set.md @@ -31,4 +31,13 @@ If you don’t pass the *set* parameter, the command will use UserSet in the cur #### See also -[CREATE SET FROM ARRAY](create-set-from-array.md) \ No newline at end of file +[CREATE SET FROM ARRAY](create-set-from-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 646 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/break-level.md b/docs/commands-legacy/break-level.md index 632e7684aefd61..b6eda4255395de 100644 --- a/docs/commands-legacy/break-level.md +++ b/docs/commands-legacy/break-level.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **BREAK LEVEL** specifies the number of break levels in a report performed using [PRINT SELECTION](print-selection.md). @@ -46,4 +43,13 @@ The following example prints a report with two break levels. The selection is so [ACCUMULATE](accumulate.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 302 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/bring-to-front.md b/docs/commands-legacy/bring-to-front.md index fa42372c5812e8..a53ae3b516c523 100644 --- a/docs/commands-legacy/bring-to-front.md +++ b/docs/commands-legacy/bring-to-front.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **BRING TO FRONT** brings all the windows belonging to *process* to the front. If the process is already the frontmost process, the command does nothing. If the process is hidden, you must use [SHOW PROCESS](show-process.md) to display the process, otherwise **BRING TO FRONT** has no effect. @@ -38,4 +35,13 @@ The following example is a method that can be executed from a menu. It checks to [HIDE PROCESS](hide-process.md) [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 326 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/build-application.md b/docs/commands-legacy/build-application.md index 12c93317308c78..f9286740028099 100644 --- a/docs/commands-legacy/build-application.md +++ b/docs/commands-legacy/build-application.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The BUILD APPLICATION command launches the application generation process. It takes into account parameters set in the current build application settings file or the settings file set in the *buildAppSettings* parameter. @@ -53,4 +50,15 @@ If the command fails, an error is generated that you can intercept using the [ON #### See also -[Compile project](../commands/compile-project.md) \ No newline at end of file +[Compile project](../commands/compile-project.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 871 | +| Thread safe | ✗ | +| Modifies variables | OK, Document, error | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/cache-info.md b/docs/commands-legacy/cache-info.md index 10f9a80eb4ff81..bd8e54807473e0 100644 --- a/docs/commands-legacy/cache-info.md +++ b/docs/commands-legacy/cache-info.md @@ -52,4 +52,13 @@ You want to get cache information for the database and all opened components: #### See also -[MEMORY STATISTICS](memory-statistics.md) \ No newline at end of file +[MEMORY STATISTICS](memory-statistics.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1402 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/call-chain.md b/docs/commands-legacy/call-chain.md index 85805d57ab6efc..c7fab1acd6dcc7 100644 --- a/docs/commands-legacy/call-chain.md +++ b/docs/commands-legacy/call-chain.md @@ -48,3 +48,13 @@ If a form object method is executed, the call chain could contain (for example): ```json [   {    "type":"formObjectMethod",    "name":"detailForm.Button",    "line":1,    "database":"myDatabase"   },   {    "type":"formMethod",    "name”:"detailForm",    "line":2,    "database":"myDatabase"   },   {    "type":"projectMethod",    "name”:"showDetailForm",    "line":2,    "database":"myDatabase”   }] ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1662 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/call-form.md b/docs/commands-legacy/call-form.md index 9d508c3eeda16a..a1ce7a22c120aa 100644 --- a/docs/commands-legacy/call-form.md +++ b/docs/commands-legacy/call-form.md @@ -100,4 +100,13 @@ You can then add other messages by executing the **CALL FORM** command again: [CALL WORKER](call-worker.md) -[DIALOG](../commands/dialog.md) \ No newline at end of file +[DIALOG](../commands/dialog.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1391 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/call-subform-container.md b/docs/commands-legacy/call-subform-container.md index 20cfa403a186a4..dba15443264881 100644 --- a/docs/commands-legacy/call-subform-container.md +++ b/docs/commands-legacy/call-subform-container.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The CALL SUBFORM CONTAINER command lets a subform instance send the *event* to the subform object that contains it. The subform object can then process the *event* in the context of the parent form. @@ -31,4 +28,13 @@ In *event*, you can pass any predefined form event of 4D (you can use the consta #### See also [Form event code](../commands/form-event-code.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1086 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/call-worker.md b/docs/commands-legacy/call-worker.md index 36cf79e4b801dd..1ba538387ff171 100644 --- a/docs/commands-legacy/call-worker.md +++ b/docs/commands-legacy/call-worker.md @@ -73,6 +73,15 @@ The code of *workerMethod* is: #### See also *About workers* -[CALL FORM](../commands/call-form.md) +[CALL FORM](call-form.md) [Current process name](current-process-name.md) -[KILL WORKER](kill-worker.md) \ No newline at end of file +[KILL WORKER](kill-worker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1389 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/cancel-transaction.md b/docs/commands-legacy/cancel-transaction.md index 0573919398b863..70649ef0719de3 100644 --- a/docs/commands-legacy/cancel-transaction.md +++ b/docs/commands-legacy/cancel-transaction.md @@ -14,7 +14,7 @@ displayed_sidebar: docs #### Description -**CANCEL TRANSACTION** cancels the transaction that was started with [START TRANSACTION](start-transaction.md) of the corresponding level in the current process. **CANCEL TRANSACTION** cancels the operations executed on the data and stored during the transaction. +**CANCEL TRANSACTION** cancels the transaction that was started with [START TRANSACTION](start-transaction.md) of the corresponding level in the current process.cancels the operations executed on the data and stored during the transaction. **Note:** **CANCEL TRANSACTION** does not have an effect on any changes made in the current records that were not saved - they remain displayed after the command is executed. @@ -24,4 +24,13 @@ displayed_sidebar: docs [START TRANSACTION](start-transaction.md) [Transaction level](transaction-level.md) *Using Transactions* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 241 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/cancel.md b/docs/commands-legacy/cancel.md index 4532020ebffc33..25fce43e09e33e 100644 --- a/docs/commands-legacy/cancel.md +++ b/docs/commands-legacy/cancel.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CANCEL** command is used in form or object methods (or in a subroutine) to: @@ -52,4 +49,14 @@ When the [CANCEL](cancel.md) command is executed (form or printing cancelled), t [ACCEPT](accept.md) [PAGE BREAK](page-break.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 270 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/caps-lock-down.md b/docs/commands-legacy/caps-lock-down.md index 9ea86146281301..1fc911bbdc833a 100644 --- a/docs/commands-legacy/caps-lock-down.md +++ b/docs/commands-legacy/caps-lock-down.md @@ -28,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 547 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/change-current-user.md b/docs/commands-legacy/change-current-user.md index cd75ea2d8d54ae..3c1d1b9d75004e 100644 --- a/docs/commands-legacy/change-current-user.md +++ b/docs/commands-legacy/change-current-user.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **CHANGE CURRENT USER** changes the identity of the current user in the database, without needing to quit. The user can change their identity themselves either using the database connection dialog box (when the command is called without parameters) or directly via the command. When a user changes their identity, they abandon any former access privileges in favor of those belonging to the chosen user. @@ -68,4 +65,13 @@ The following example simply displays the connection dialog box: #### See also [CHANGE PASSWORD](change-password.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 289 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/change-licenses.md b/docs/commands-legacy/change-licenses.md index acd54d02a05356..fe59175a07ca1b 100644 --- a/docs/commands-legacy/change-licenses.md +++ b/docs/commands-legacy/change-licenses.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The CHANGE LICENSES command displays the 4D License Manager dialog box. @@ -41,4 +38,14 @@ This way a user can activate licenses without having to modify the database. #### See also [License info](../commands/license-info.md) -[Is license available](is-license-available.md) \ No newline at end of file +[Is license available](is-license-available.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 637 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/change-password.md b/docs/commands-legacy/change-password.md index f45fad174003a8..fd7c1e17245da9 100644 --- a/docs/commands-legacy/change-password.md +++ b/docs/commands-legacy/change-password.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description CHANGE PASSWORD changes the password of the current user. This command replaces the current password with the new password you pass in *password*. @@ -44,4 +41,13 @@ The following example allows the user to change his or her password. #### See also [CHANGE CURRENT USER](change-current-user.md) -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 186 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/change-string.md b/docs/commands-legacy/change-string.md index 5d9ff093c89777..d4312ece15fc1e 100644 --- a/docs/commands-legacy/change-string.md +++ b/docs/commands-legacy/change-string.md @@ -37,4 +37,13 @@ The following example illustrates the use of **Change string**. The results are [Delete string](delete-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 234 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/char.md b/docs/commands-legacy/char.md index b25b83316e042d..0fbca433e651e5 100644 --- a/docs/commands-legacy/char.md +++ b/docs/commands-legacy/char.md @@ -34,4 +34,13 @@ The following example uses **Char** to insert a carriage return within the text [Character code](character-code.md) *Character Reference Symbols* -*Unicode Codes* \ No newline at end of file +*Unicode Codes* + +#### Properties + +| | | +| --- | --- | +| Command number | 90 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/character-code.md b/docs/commands-legacy/character-code.md index 60d788cebe47cf..9a25e76ddfb85f 100644 --- a/docs/commands-legacy/character-code.md +++ b/docs/commands-legacy/character-code.md @@ -82,4 +82,13 @@ The second piece of code runs faster for two reasons: it does only one character #### See also [Char](char.md) -*Character Reference Symbols* \ No newline at end of file +*Character Reference Symbols* + +#### Properties + +| | | +| --- | --- | +| Command number | 91 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/check-log-file.md b/docs/commands-legacy/check-log-file.md index 11bdfe9f4aaf40..4dee1881affba6 100644 --- a/docs/commands-legacy/check-log-file.md +++ b/docs/commands-legacy/check-log-file.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CHECK LOG FILE** command displays the dialog box for viewing the current log file of the database (which can also be accessed via the Maintenance Security Center window): @@ -36,4 +33,14 @@ You can intercept these errors using an error-handling method installed with the #### See also *Backup Manager Errors (1401 -> 1421)* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 799 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/choose.md b/docs/commands-legacy/choose.md index a99a265e6fe6a2..fbb03f95f2f213 100644 --- a/docs/commands-legacy/choose.md +++ b/docs/commands-legacy/choose.md @@ -78,3 +78,13 @@ This code is strictly equivalent to:        vStatus:="Divorced"  End case ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 955 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/clear-list.md b/docs/commands-legacy/clear-list.md index cba336166d9903..9536c7118b7600 100644 --- a/docs/commands-legacy/clear-list.md +++ b/docs/commands-legacy/clear-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CLEAR LIST** command deletes the hierarchical list whose list reference number you pass in *list*. @@ -54,4 +51,13 @@ See example for the [BLOB to list](blob-to-list.md) command. [BLOB to list](blob-to-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 377 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/clear-named-selection.md b/docs/commands-legacy/clear-named-selection.md index 88f5bc2a92bd8d..34456b0641d6b5 100644 --- a/docs/commands-legacy/clear-named-selection.md +++ b/docs/commands-legacy/clear-named-selection.md @@ -23,4 +23,13 @@ If *name* was created using the [CUT NAMED SELECTION](cut-named-selection.md) co [COPY NAMED SELECTION](copy-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 333 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/clear-pasteboard.md b/docs/commands-legacy/clear-pasteboard.md index 58ca44983883eb..4cb6df7883d23c 100644 --- a/docs/commands-legacy/clear-pasteboard.md +++ b/docs/commands-legacy/clear-pasteboard.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The CLEAR PASTEBOARD command clears the pasteboard of all its contents. If the pasteboard contains multiple instances of the same data, all instances are cleared. After a call to CLEAR PASTEBOARD, the pasteboard is empty. @@ -41,4 +38,13 @@ See example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) co #### See also -[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) \ No newline at end of file +[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 402 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/clear-semaphore.md b/docs/commands-legacy/clear-semaphore.md index 780703cb70bef9..db38012bdf9b8f 100644 --- a/docs/commands-legacy/clear-semaphore.md +++ b/docs/commands-legacy/clear-semaphore.md @@ -27,4 +27,13 @@ See the example for [Semaphore](semaphore.md). [Semaphore](semaphore.md) *Semaphores and signals* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 144 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/clear-set.md b/docs/commands-legacy/clear-set.md index 7351845658abeb..da6694067c9658 100644 --- a/docs/commands-legacy/clear-set.md +++ b/docs/commands-legacy/clear-set.md @@ -25,4 +25,13 @@ See the example for [USE SET](use-set.md). [CREATE EMPTY SET](create-empty-set.md) [CREATE SET](create-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 117 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/clear-variable.md b/docs/commands-legacy/clear-variable.md index 807986d7ef0df3..b56cf825131540 100644 --- a/docs/commands-legacy/clear-variable.md +++ b/docs/commands-legacy/clear-variable.md @@ -43,4 +43,13 @@ In a form, you are using the drop-down list *asMyDropDown* whose sole purpose is #### See also -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 89 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/clickcount.md b/docs/commands-legacy/clickcount.md index 6f1966d1c35771..f8c25b35cceb50 100644 --- a/docs/commands-legacy/clickcount.md +++ b/docs/commands-legacy/clickcount.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Clickcount** command returns, in the context of a mouse click event, the number of times the user has clicked in rapid succession with the same mouse button. Typically, this command returns 2 for a double-click. @@ -61,3 +58,13 @@ Labels are not enterable but they become so after a triple-click. If you want to     End case  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1332 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/close-document.md b/docs/commands-legacy/close-document.md index a0104b8ca24a39..7d5f2ab46591d9 100644 --- a/docs/commands-legacy/close-document.md +++ b/docs/commands-legacy/close-document.md @@ -36,4 +36,13 @@ The following example lets the user create a new document, writes the string “ [Append document](append-document.md) [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 267 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/close-printing-job.md b/docs/commands-legacy/close-printing-job.md index 09323735bd9799..632f462cf02c7a 100644 --- a/docs/commands-legacy/close-printing-job.md +++ b/docs/commands-legacy/close-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CLOSE PRINTING JOB** command closes the print job previously opened by the [OPEN PRINTING JOB](open-printing-job.md) command and sends any printing document that has been assembled to the current printer. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### See also -[OPEN PRINTING JOB](open-printing-job.md) \ No newline at end of file +[OPEN PRINTING JOB](open-printing-job.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 996 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/close-resource-file.md b/docs/commands-legacy/close-resource-file.md index d7fa02d4ad59ca..e9ad4713fedbad 100644 --- a/docs/commands-legacy/close-resource-file.md +++ b/docs/commands-legacy/close-resource-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CLOSE RESOURCE FILE** command closes the resource file whose reference number is passed in *resFile*. @@ -30,4 +27,13 @@ Remember to eventually call **CLOSE RESOURCE FILE** for a resource file that you #### See also -[Open resource file](open-resource-file.md) \ No newline at end of file +[Open resource file](open-resource-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 498 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/close-window.md b/docs/commands-legacy/close-window.md index c71bab942a1b0b..c059573206d0a2 100644 --- a/docs/commands-legacy/close-window.md +++ b/docs/commands-legacy/close-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **CLOSE WINDOW** closes the active window opened by the [Open window](open-window.md) or [Open form window](open-form-window.md) command in the current process. **CLOSE WINDOW** has no effect if a custom window is not open; it does not close system windows. **CLOSE WINDOW** also has no effect if called while a form is active in the window. You must call **CLOSE WINDOW** when you are done using a window opened by [Open window](open-window.md) or [Open form window](open-form-window.md). @@ -40,4 +37,13 @@ The following example opens a form window and adds new records with the [ADD REC #### See also [Open form window](open-form-window.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 154 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/collection-to-array.md b/docs/commands-legacy/collection-to-array.md index a4c061395743fe..570e6972da4b97 100644 --- a/docs/commands-legacy/collection-to-array.md +++ b/docs/commands-legacy/collection-to-array.md @@ -64,4 +64,13 @@ You want to copy different property values from a collection of objects in diffe #### See also [ARRAY TO COLLECTION](array-to-collection.md) -*Type conversions between collections and 4D arrays* \ No newline at end of file +*Type conversions between collections and 4D arrays* + +#### Properties + +| | | +| --- | --- | +| Command number | 1562 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/combine-pictures.md b/docs/commands-legacy/combine-pictures.md index 9ac72f3fff5bba..7520c2e1280186 100644 --- a/docs/commands-legacy/combine-pictures.md +++ b/docs/commands-legacy/combine-pictures.md @@ -49,4 +49,13 @@ Result: #### See also -[TRANSFORM PICTURE](transform-picture.md) \ No newline at end of file +[TRANSFORM PICTURE](transform-picture.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 987 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/command-name.md b/docs/commands-legacy/command-name.md index e6fa57174a256f..dfe5134295d61b 100644 --- a/docs/commands-legacy/command-name.md +++ b/docs/commands-legacy/command-name.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -The **Command name** command returns the name as well as (optionally) the properties of the command whose command number you pass in *command*. - -**Note:** The number of each command is indicated in the Explorer as well as in the Properties area of this documentation. +The **Command name** command returns the name as well as (optionally) the properties of the command whose command number you pass in *command*.The number of each command is indicated in the Explorer as well as in the Properties area of this documentation. **Compatibility note:** Since a command name may vary from one 4D version to the next (commands renamed), this command was used in previous versions of the program to designate a command directly by means of its number, especially in non-tokenized portions of code. This need has diminished over time as 4D continues to evolve because, for non-tokenized statements (formulas), 4D now provides a token syntax. This syntax allows you to avoid potential problems due to variations in command names as well as other elements such as tables, while still being able to type these names in a legible manner (for more information about this point, refer to the *Using tokens in formulas* section). Furthermore, by default, the English language version is used starting with 4D v15; however, the "Use regional system settings" option on the [Is a list](is-a-list.md) of the Preferences allows you to continue using the French language in a French version of 4D. @@ -102,4 +100,14 @@ Then, for the "SAVE RECORD" command (53) for example, you can write: #### See also [EXECUTE FORMULA](execute-formula.md) -*Preemptive 4D processes* \ No newline at end of file +*Preemptive 4D processes* + +#### Properties + +| | | +| --- | --- | +| Command number | 538 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/compact-data-file.md b/docs/commands-legacy/compact-data-file.md index 503951707c4b4a..f89b5f4685fb3a 100644 --- a/docs/commands-legacy/compact-data-file.md +++ b/docs/commands-legacy/compact-data-file.md @@ -67,4 +67,14 @@ If the compacting operation is carried out correctly, the OK system variable is #### See also [Table fragmentation](table-fragmentation.md) -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 937 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/docs/commands-legacy/compare-strings.md b/docs/commands-legacy/compare-strings.md index 38cb48c0d151b1..8eb6065af046e9 100644 --- a/docs/commands-legacy/compare-strings.md +++ b/docs/commands-legacy/compare-strings.md @@ -104,4 +104,13 @@ The following examples illustrate the specific impact of options in **Japanese d #### See also -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1756 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/component-list.md b/docs/commands-legacy/component-list.md index 8dd1d863968f15..9a51f2c88c39a1 100644 --- a/docs/commands-legacy/component-list.md +++ b/docs/commands-legacy/component-list.md @@ -32,4 +32,13 @@ For more information about 4D components, please refer to the Design Reference m #### See also -[PLUGIN LIST](plugin-list.md) \ No newline at end of file +[PLUGIN LIST](plugin-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1001 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/compress-blob.md b/docs/commands-legacy/compress-blob.md index cbb8cc2336e90e..2ed6e460135cb7 100644 --- a/docs/commands-legacy/compress-blob.md +++ b/docs/commands-legacy/compress-blob.md @@ -91,4 +91,14 @@ The OK variable is set to 1 if the BLOB has been successfully compressed; otherw #### See also [BLOB PROPERTIES](blob-properties.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 534 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/confirm.md b/docs/commands-legacy/confirm.md index 99bbc94c845199..3a2bb27ed87875 100644 --- a/docs/commands-legacy/confirm.md +++ b/docs/commands-legacy/confirm.md @@ -91,4 +91,14 @@ will display the confirm dialog box (on Windows) shown here: #### See also [ALERT](alert.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 162 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/contextual-click.md b/docs/commands-legacy/contextual-click.md index 41b4837788c22b..7570a3136c7e3d 100644 --- a/docs/commands-legacy/contextual-click.md +++ b/docs/commands-legacy/contextual-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Contextual click command returns True if a contextual click has been made: @@ -42,4 +39,13 @@ This method, combined with a scrollable area, enables you to change the value of #### See also [Form event code](../commands/form-event-code.md) -[Right click](right-click.md) \ No newline at end of file +[Right click](right-click.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 713 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/convert-coordinates.md b/docs/commands-legacy/convert-coordinates.md index 612d77cb57ebe7..52df40a29a1512 100644 --- a/docs/commands-legacy/convert-coordinates.md +++ b/docs/commands-legacy/convert-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CONVERT COORDINATES** command converts the (x;y) coordinates of a point from one coordinate system to another. The input and output coordinate systems supported are forms (and subforms), windows, and the screen. For example, you can use this command to get the coordinates in the main form of an object belonging to a subform. This makes it easy to create a context menu at any custom position. @@ -86,4 +83,13 @@ You want to open a pop-up window at the position of the mouse cursor. On Windows [GET WINDOW RECT](get-window-rect.md) [OBJECT GET COORDINATES](object-get-coordinates.md) [OBJECT SET COORDINATES](object-set-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1365 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/convert-from-text.md b/docs/commands-legacy/convert-from-text.md index 3380f366f88aab..afe4c599f36e60 100644 --- a/docs/commands-legacy/convert-from-text.md +++ b/docs/commands-legacy/convert-from-text.md @@ -186,4 +186,14 @@ If the command has been correctly executed, the OK variable is set to 1\. Otherw #### See also -[Convert to text](convert-to-text.md) \ No newline at end of file +[Convert to text](convert-to-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1011 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/convert-path-posix-to-system.md b/docs/commands-legacy/convert-path-posix-to-system.md index 475262c508a458..2387ccd1ca18a6 100644 --- a/docs/commands-legacy/convert-path-posix-to-system.md +++ b/docs/commands-legacy/convert-path-posix-to-system.md @@ -53,4 +53,13 @@ Examples under Windows: [Convert path system to POSIX](convert-path-system-to-posix.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1107 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/convert-path-system-to-posix.md b/docs/commands-legacy/convert-path-system-to-posix.md index 09dce9dc71e2a0..d1ebb4fce039be 100644 --- a/docs/commands-legacy/convert-path-system-to-posix.md +++ b/docs/commands-legacy/convert-path-system-to-posix.md @@ -60,4 +60,13 @@ Example under Windows [Convert path POSIX to system](convert-path-posix-to-system.md) [Object to path](object-to-path.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1106 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/convert-picture.md b/docs/commands-legacy/convert-picture.md index f7cb48e2877885..6757dfcc0f5051 100644 --- a/docs/commands-legacy/convert-picture.md +++ b/docs/commands-legacy/convert-picture.md @@ -48,4 +48,13 @@ Conversion of a picture with 60% quality: #### See also -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1002 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/convert-to-text.md b/docs/commands-legacy/convert-to-text.md index 84542c7dd80be8..24bb7fe2b364ad 100644 --- a/docs/commands-legacy/convert-to-text.md +++ b/docs/commands-legacy/convert-to-text.md @@ -29,4 +29,14 @@ If the command has been correctly executed, the OK variable is set to 1\. Otherw #### See also -[CONVERT FROM TEXT](convert-from-text.md) \ No newline at end of file +[CONVERT FROM TEXT](convert-from-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1012 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/copy-array.md b/docs/commands-legacy/copy-array.md index 155c2b26dd8769..e4bb62dd441423 100644 --- a/docs/commands-legacy/copy-array.md +++ b/docs/commands-legacy/copy-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The COPY ARRAY command creates or overwrites the destination array *destination* with the exact contents, size, and type of the source array *source*. - -**Note:** In case of numeric arrays of different types, the type of the *destination* array is kept. +The COPY ARRAY command creates or overwrites the destination array *destination* with the exact contents, size, and type of the source array *source*.In case of numeric arrays of different types, the type of the *destination* array is kept. The *source* and *destination* arrays can be local, process, or interprocess arrays. When copying arrays, the scope of the array does not matter. @@ -36,3 +34,13 @@ The following example fills the array named C. It then creates a new array, name  SELECTION TO ARRAY([People]Company;C) // Move company field data into array C  COPY ARRAY(C;D) // Copy the array C to the array D ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 226 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/copy-blob.md b/docs/commands-legacy/copy-blob.md index 5de74ff3da5325..de59ea691bee7a 100644 --- a/docs/commands-legacy/copy-blob.md +++ b/docs/commands-legacy/copy-blob.md @@ -28,4 +28,13 @@ The copy starts at the position (expressed relative to the beginning of the sour #### See also [DELETE FROM BLOB](delete-from-blob.md) -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 558 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/copy-document.md b/docs/commands-legacy/copy-document.md index ca731c5d144f63..8b0e02a659783a 100644 --- a/docs/commands-legacy/copy-document.md +++ b/docs/commands-legacy/copy-document.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -The **COPY DOCUMENT** command copies the file or folder specified by *sourceName* to the location specified by *destinationName* and, optionally, renames it. - -* **Copying files** +The **COPY DOCUMENT** command copies the file or folder specified by *sourceName* to the location specified by *destinationName* and, optionally, renames it. In this case, the *sourceName* parameter can contain: * either a complete file pathname expressed with respect to the root of the volume, * or a pathname relative to the database folder. @@ -121,4 +119,14 @@ The following examples create different files and folders in the database folder #### See also [MOVE DOCUMENT](move-document.md) -*System Documents* \ No newline at end of file +*System Documents* + +#### Properties + +| | | +| --- | --- | +| Command number | 541 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/copy-list.md b/docs/commands-legacy/copy-list.md index 21487fc4e4c827..7ff6471a8ea8a1 100644 --- a/docs/commands-legacy/copy-list.md +++ b/docs/commands-legacy/copy-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Copy list** command duplicates the list whose reference number you pass in *list,* and returns the list reference number of the new list. @@ -27,4 +24,13 @@ After you have finished with the new list, call [CLEAR LIST](clear-list.md) to d [CLEAR LIST](clear-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 626 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/copy-named-selection.md b/docs/commands-legacy/copy-named-selection.md index 72b9550455ecf3..4221689fd1cfc6 100644 --- a/docs/commands-legacy/copy-named-selection.md +++ b/docs/commands-legacy/copy-named-selection.md @@ -49,4 +49,13 @@ The following example allows you to check if there are other overdue invoices in [CLEAR NAMED SELECTION](clear-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 331 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/copy-parameters.md b/docs/commands-legacy/copy-parameters.md index 46e28f812040eb..ab84671fd096c5 100644 --- a/docs/commands-legacy/copy-parameters.md +++ b/docs/commands-legacy/copy-parameters.md @@ -79,4 +79,13 @@ Since the command returns a collection, it can be used with **.join()** to build #### See also -[Count parameters](count-parameters.md) \ No newline at end of file +[Count parameters](count-parameters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1790 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/copy-set.md b/docs/commands-legacy/copy-set.md index b39739b8ea3ecb..eb521176d61743 100644 --- a/docs/commands-legacy/copy-set.md +++ b/docs/commands-legacy/copy-set.md @@ -38,4 +38,13 @@ The following example, in Client/Server, copies the process set "*SetA*", mainta #### See also -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 600 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/cos.md b/docs/commands-legacy/cos.md index 50cce191d1dd53..c3f94a3167d457 100644 --- a/docs/commands-legacy/cos.md +++ b/docs/commands-legacy/cos.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Description -Cos returns the cosine of *number*, where *number* is expressed in radians. - -**Note:** 4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). +Cos returns the cosine of *number*, where *number* is expressed in radians.4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). #### See also [Arctan](arctan.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 18 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/count-in-array.md b/docs/commands-legacy/count-in-array.md index 407ec63aa935f1..a612e0459916cb 100644 --- a/docs/commands-legacy/count-in-array.md +++ b/docs/commands-legacy/count-in-array.md @@ -56,4 +56,13 @@ You want to count object references in an object array: #### See also [Find in array](find-in-array.md) -[Find in sorted array](find-in-sorted-array.md) \ No newline at end of file +[Find in sorted array](find-in-sorted-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 907 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/count-list-items.md b/docs/commands-legacy/count-list-items.md index bcc6c17fd2b6ed..173c549ffcc50a 100644 --- a/docs/commands-legacy/count-list-items.md +++ b/docs/commands-legacy/count-list-items.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Count list items command returns either the number of items currently “visible” or the total number of items in the list whose reference number or object name you pass in *list*. @@ -61,4 +58,13 @@ Here a list named *hList* shown in the Application environment: #### See also [List item position](list-item-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 380 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/count-menu-items.md b/docs/commands-legacy/count-menu-items.md index a76fb13aec2027..19a6e9225105fa 100644 --- a/docs/commands-legacy/count-menu-items.md +++ b/docs/commands-legacy/count-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Count menu items** command returns the number of menu items present in the menu whose number or reference is passed in *menu.* @@ -28,4 +25,14 @@ If you omit the *process* parameter, **Count menu items** applies to the menu ba #### See also -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 405 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/count-menus.md b/docs/commands-legacy/count-menus.md index 9191d17f4561ba..9abb6606ffdc24 100644 --- a/docs/commands-legacy/count-menus.md +++ b/docs/commands-legacy/count-menus.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Count menus** command returns the number of menus present in the menu bar. @@ -25,4 +22,14 @@ If you omit the *process* parameter, **Count menus** applies to the menu bar for #### See also -[Count menu items](count-menu-items.md) \ No newline at end of file +[Count menu items](count-menu-items.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 404 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/count-parameters.md b/docs/commands-legacy/count-parameters.md index 3a2d0ff3274456..9bd0a24e81d90b 100644 --- a/docs/commands-legacy/count-parameters.md +++ b/docs/commands-legacy/count-parameters.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -The Count parameters command returns the number of parameters passed to a project method. - -**WARNING:** Count parameters is meaningful only in a project method that has been called by another method (project method or other). If the project method calling this command is associated with a menu, it returns 0. +The Count parameters command returns the number of parameters passed to a project method.Count parameters is meaningful only in a project method that has been called by another method (project method or other). If the project method calling this command is associated with a menu, it returns 0. #### Example 1 @@ -94,4 +92,13 @@ or: #### See also *Compiler Commands* -[Copy parameters](copy-parameters.md) \ No newline at end of file +[Copy parameters](copy-parameters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 259 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/count-screens.md b/docs/commands-legacy/count-screens.md index 3ee0d977d68782..2e8fab460cca33 100644 --- a/docs/commands-legacy/count-screens.md +++ b/docs/commands-legacy/count-screens.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Count screens command returns the number of screen monitors connected to your machine. @@ -26,4 +23,13 @@ displayed_sidebar: docs [SCREEN COORDINATES](screen-coordinates.md) [SCREEN DEPTH](screen-depth.md) [Screen height](screen-height.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 437 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/count-tasks.md b/docs/commands-legacy/count-tasks.md index 674f6852bbaea6..fad5111dc6890e 100644 --- a/docs/commands-legacy/count-tasks.md +++ b/docs/commands-legacy/count-tasks.md @@ -28,4 +28,13 @@ See the example for [Process state](process-state.md) and for the [Semaphore](se [Count user processes](count-user-processes.md) [Count users](count-users.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 335 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/count-user-processes.md b/docs/commands-legacy/count-user-processes.md index d2345212303ec8..773124ced55e97 100644 --- a/docs/commands-legacy/count-user-processes.md +++ b/docs/commands-legacy/count-user-processes.md @@ -24,4 +24,13 @@ The Count user processes function returns the number of processes opened directl #### See also [Count tasks](count-tasks.md) -[Count users](count-users.md) \ No newline at end of file +[Count users](count-users.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 343 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/count-users.md b/docs/commands-legacy/count-users.md index 48205d097d1ad8..f3f053373b143e 100644 --- a/docs/commands-legacy/count-users.md +++ b/docs/commands-legacy/count-users.md @@ -22,4 +22,13 @@ When executed on a 4D single-user application, **Count users** returns 1. #### See also [Count tasks](count-tasks.md) -[Count user processes](count-user-processes.md) \ No newline at end of file +[Count user processes](count-user-processes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 342 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/create-alias.md b/docs/commands-legacy/create-alias.md index afd69780f29c98..a8a8ab6b4a59b1 100644 --- a/docs/commands-legacy/create-alias.md +++ b/docs/commands-legacy/create-alias.md @@ -66,4 +66,14 @@ The OK system variable is set to 1 if the command execution was successful; othe #### See also -[RESOLVE ALIAS](resolve-alias.md) \ No newline at end of file +[RESOLVE ALIAS](resolve-alias.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 694 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/create-data-file.md b/docs/commands-legacy/create-data-file.md index 943936669d481c..8a7f8293d8b689 100644 --- a/docs/commands-legacy/create-data-file.md +++ b/docs/commands-legacy/create-data-file.md @@ -25,4 +25,13 @@ Before launching the operation, the command verifies that the specified access p #### See also -[OPEN DATA FILE](open-data-file.md) \ No newline at end of file +[OPEN DATA FILE](open-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 313 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/create-deployment-license.md b/docs/commands-legacy/create-deployment-license.md index b3172bde51c8c9..8e4b77aadd87f6 100644 --- a/docs/commands-legacy/create-deployment-license.md +++ b/docs/commands-legacy/create-deployment-license.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Create deployment license** command creates an embedded license file in the Licenses folder of the *mergedApp* built application. If the Licenses folder does not exist the *mergedApp*, it is created by the command. @@ -58,4 +55,13 @@ The command returns a *status* object containing the following properties: #### See also -[Blog post - Finalize an application with 4D commands](https://blog.4d.com/finalize-an-application-with-4d-commands) \ No newline at end of file +[Blog post - Finalize an application with 4D commands](https://blog.4d.com/finalize-an-application-with-4d-commands) + +#### Properties + +| | | +| --- | --- | +| Command number | 1811 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/create-document.md b/docs/commands-legacy/create-document.md index ca7275facc555e..7c17f9d6afc2f1 100644 --- a/docs/commands-legacy/create-document.md +++ b/docs/commands-legacy/create-document.md @@ -71,4 +71,14 @@ If the document has been created correctly, the system variable OK is set to 1 a #### See also [Append document](append-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 266 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/docs/commands-legacy/create-empty-set.md b/docs/commands-legacy/create-empty-set.md index 3c5374c37880c9..cded9f366abbf2 100644 --- a/docs/commands-legacy/create-empty-set.md +++ b/docs/commands-legacy/create-empty-set.md @@ -27,4 +27,13 @@ Please refer to the examples of the *Sets* section. #### See also [CLEAR SET](clear-set.md) -[CREATE SET](create-set.md) \ No newline at end of file +[CREATE SET](create-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 140 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/create-folder.md b/docs/commands-legacy/create-folder.md index ff244b2be883a4..68d9245d26ef22 100644 --- a/docs/commands-legacy/create-folder.md +++ b/docs/commands-legacy/create-folder.md @@ -70,4 +70,14 @@ Creation of the "\\February\\" subfolder in the existing "C:\\Archives\\" folder #### See also [FOLDER LIST](folder-list.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 475 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/create-index.md b/docs/commands-legacy/create-index.md index 9b3eb1a9212deb..6908b72f8c6f46 100644 --- a/docs/commands-legacy/create-index.md +++ b/docs/commands-legacy/create-index.md @@ -86,4 +86,13 @@ Creation of a composite index on the “City” and “Zipcode” fields of the [DELETE INDEX](delete-index.md) [RESUME INDEXES](resume-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 966 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/create-menu.md b/docs/commands-legacy/create-menu.md index 29660ed1483be6..83876ef8b45fc7 100644 --- a/docs/commands-legacy/create-menu.md +++ b/docs/commands-legacy/create-menu.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Create menu** command creates a new menu in memory. This menu will only exist in memory and will not be added in the Menu editor in Design mode. Any changes made to this menu during the session will be immediately carried over to all the instances of this menu and in all the processes of the database. @@ -42,4 +39,13 @@ Refer to the example of the [SET MENU BAR](set-menu-bar.md) command. [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 408 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/create-record.md b/docs/commands-legacy/create-record.md index c1058fbaf070e4..02eccbe98044a1 100644 --- a/docs/commands-legacy/create-record.md +++ b/docs/commands-legacy/create-record.md @@ -45,4 +45,14 @@ The following example archives records that are over 30 days old. It does does t [ADD RECORD](add-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 68 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/docs/commands-legacy/create-related-one.md b/docs/commands-legacy/create-related-one.md index 4c87a9e0a553ce..377147c0988b64 100644 --- a/docs/commands-legacy/create-related-one.md +++ b/docs/commands-legacy/create-related-one.md @@ -23,4 +23,13 @@ If a related record exists, **CREATE RELATED ONE** acts just like [RELATE ONE](r #### See also -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 65 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/create-selection-from-array.md b/docs/commands-legacy/create-selection-from-array.md index 35cd079ac4d7b2..2942999eba671c 100644 --- a/docs/commands-legacy/create-selection-from-array.md +++ b/docs/commands-legacy/create-selection-from-array.md @@ -47,4 +47,15 @@ If a record number is invalid (record not created), the error -10503 is generate [CREATE SET FROM ARRAY](create-set-from-array.md) [LONGINT ARRAY FROM SELECTION](longint-array-from-selection.md) [SELECTION TO ARRAY](selection-to-array.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 640 | +| Thread safe | ✓ | +| Modifies variables | error | +| Changes current selection || + + diff --git a/docs/commands-legacy/create-set-from-array.md b/docs/commands-legacy/create-set-from-array.md index 9488aa0ba4171d..8a19be32d75bbc 100644 --- a/docs/commands-legacy/create-set-from-array.md +++ b/docs/commands-legacy/create-set-from-array.md @@ -37,4 +37,14 @@ In a Longint array, if a record number is invalid (record not created), the erro #### See also [BOOLEAN ARRAY FROM SET](boolean-array-from-set.md) -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 641 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/create-set.md b/docs/commands-legacy/create-set.md index dee8b57566c0cf..51c811d8c20341 100644 --- a/docs/commands-legacy/create-set.md +++ b/docs/commands-legacy/create-set.md @@ -31,4 +31,13 @@ The following example creates a set after doing a search, in order to save the s #### See also [CLEAR SET](clear-set.md) -[CREATE EMPTY SET](create-empty-set.md) \ No newline at end of file +[CREATE EMPTY SET](create-empty-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 116 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/create-thumbnail.md b/docs/commands-legacy/create-thumbnail.md index 900eaaee0a2512..f4e08245a4c5b3 100644 --- a/docs/commands-legacy/create-thumbnail.md +++ b/docs/commands-legacy/create-thumbnail.md @@ -53,3 +53,13 @@ Resulting thumbnails (48x48) **Note:** With the “Scaled to fit proportional” and the “Scaled to fit prop centered”, the free space will be displayed in white. When these modes are applied to picture field or variable in 4D forms, the free space is transparent. The *depth* parameter is ignored and must be omitted. The command always uses the current screen depth (number of colors). + + +#### Properties + +| | | +| --- | --- | +| Command number | 679 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/current-client-authentication.md b/docs/commands-legacy/current-client-authentication.md index 03e5b5979f9ed0..e1cfb41c7b92fb 100644 --- a/docs/commands-legacy/current-client-authentication.md +++ b/docs/commands-legacy/current-client-authentication.md @@ -72,3 +72,13 @@ With this setting, no password dialog will be displayed for a remote 4D that con * replicate the Active directory names in the 4D user and group names, for an automatic mapping, * map returned information to a custom \[users\] table, * use LDAP features to get user credentials. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1355 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/current-date.md b/docs/commands-legacy/current-date.md index bffcefedd4e4a5..14531c01199301 100644 --- a/docs/commands-legacy/current-date.md +++ b/docs/commands-legacy/current-date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The Current date command returns the current date as kept by the system clock. - -**4D Server:** If you use the asterisk (\*) parameter when executing this function on a 4D Client machine, it returns the current date from the server. +The Current date command returns the current date as kept by the system clock.If you use the asterisk (\*) parameter when executing this function on a 4D Client machine, it returns the current date from the server. #### Example 1 @@ -97,4 +95,13 @@ The following project method allows you to do so: [Day of](day-of.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 33 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/current-default-table.md b/docs/commands-legacy/current-default-table.md index f8ef00b875bb0e..7e5f6b57cae702 100644 --- a/docs/commands-legacy/current-default-table.md +++ b/docs/commands-legacy/current-default-table.md @@ -29,4 +29,13 @@ Provided a default table has been set, the following line of code sets the windo [DEFAULT TABLE](default-table.md) [Table](table.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 363 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/current-form-name.md b/docs/commands-legacy/current-form-name.md index 164383f961bc60..3bb37e04c02f15 100644 --- a/docs/commands-legacy/current-form-name.md +++ b/docs/commands-legacy/current-form-name.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Current form name** command returns the name of the current form defined for the process. The current form can be a project form or a table form. @@ -59,4 +56,13 @@ You want to get the current form if it is a project form: #### See also -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1298 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/current-form-table.md b/docs/commands-legacy/current-form-table.md index 919729abdff168..4e1340cdec6255 100644 --- a/docs/commands-legacy/current-form-table.md +++ b/docs/commands-legacy/current-form-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Current form table command returns the pointer to the table of the form being displayed or printed in the current process. @@ -65,4 +62,13 @@ To do so, use the object method to create the variable *vsCurrentRecord*, then c [DIALOG](../commands/dialog.md) [FORM SET INPUT](form-set-input.md) [FORM SET OUTPUT](form-set-output.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 627 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/current-form-window.md b/docs/commands-legacy/current-form-window.md index af29af4da18279..67199f6e83eb22 100644 --- a/docs/commands-legacy/current-form-window.md +++ b/docs/commands-legacy/current-form-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Current form window** command returns the reference of the current form window. If no window has been set for the current form, the command returns 0. @@ -26,4 +23,13 @@ The current form window can be generated automatically using a command such as [ [Open form window](open-form-window.md) [Open window](open-window.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 827 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/current-machine.md b/docs/commands-legacy/current-machine.md index 27f7f1a849f384..76d2238505f335 100644 --- a/docs/commands-legacy/current-machine.md +++ b/docs/commands-legacy/current-machine.md @@ -29,4 +29,13 @@ Even if you are not running with the Client/Server version of the 4D environment #### See also -[Current system user](current-system-user.md) \ No newline at end of file +[Current system user](current-system-user.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 483 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/current-method-name.md b/docs/commands-legacy/current-method-name.md index 23530389e2a298..010bd9951d58a5 100644 --- a/docs/commands-legacy/current-method-name.md +++ b/docs/commands-legacy/current-method-name.md @@ -37,3 +37,13 @@ According to the calling method type, the returned string can be as follows: This command cannot be called from within a 4D formula. **Note:** For this command to be able to operate in compiled mode, it must not be included in code for which range checking has been disabled. See *Range checking*. + + +#### Properties + +| | | +| --- | --- | +| Command number | 684 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/current-method-path.md b/docs/commands-legacy/current-method-path.md index 175d98adf15813..fc2d324be91926 100644 --- a/docs/commands-legacy/current-method-path.md +++ b/docs/commands-legacy/current-method-path.md @@ -15,11 +15,18 @@ displayed_sidebar: docs #### Description -The **Current method path** command returns the internal pathname of the database method, trigger, project method, form method or object method being executed. - -**Note:** In the context of 4D macro-commands, the ** tag is replaced in the code by the full pathname of the method being executed. +The **Current method path** command returns the internal pathname of the database method, trigger, project method, form method or object method being executed.In the context of 4D macro-commands, the ** tag is replaced in the code by the full pathname of the method being executed. #### See also [METHOD Get path](method-get-path.md) -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1201 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/current-process-name.md b/docs/commands-legacy/current-process-name.md index 46938b18a09b58..b6b024f5752659 100644 --- a/docs/commands-legacy/current-process-name.md +++ b/docs/commands-legacy/current-process-name.md @@ -31,4 +31,13 @@ You want to call a worker and pass the calling process name as parameter: *About workers* [CALL WORKER](call-worker.md) -[KILL WORKER](kill-worker.md) \ No newline at end of file +[KILL WORKER](kill-worker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1392 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/current-process.md b/docs/commands-legacy/current-process.md index 2570e34223fea4..46959d48303da7 100644 --- a/docs/commands-legacy/current-process.md +++ b/docs/commands-legacy/current-process.md @@ -25,4 +25,13 @@ See the examples for [DELAY PROCESS](delay-process.md) and [Process info](../com [Process number](../commands/process-number.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 322 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/current-system-user.md b/docs/commands-legacy/current-system-user.md index 397f4e4c171e71..a57d96dcca97ab 100644 --- a/docs/commands-legacy/current-system-user.md +++ b/docs/commands-legacy/current-system-user.md @@ -23,4 +23,13 @@ See example for the [Current machine](current-machine.md) command. #### See also -[Current machine](current-machine.md) \ No newline at end of file +[Current machine](current-machine.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 484 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/current-time.md b/docs/commands-legacy/current-time.md index 5a98dfebd02a57..7c093f503da71b 100644 --- a/docs/commands-legacy/current-time.md +++ b/docs/commands-legacy/current-time.md @@ -48,4 +48,13 @@ The following example extracts the hours, minutes, and seconds from the current [Milliseconds](milliseconds.md) [String](string.md) -[Tickcount](tickcount.md) \ No newline at end of file +[Tickcount](tickcount.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 178 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/current-user.md b/docs/commands-legacy/current-user.md index e6329a0defbe98..830062d9724b4c 100644 --- a/docs/commands-legacy/current-user.md +++ b/docs/commands-legacy/current-user.md @@ -37,4 +37,13 @@ See example for the [User in group](user-in-group.md) command. [CHANGE CURRENT USER](change-current-user.md) [CHANGE PASSWORD](change-password.md) [SET USER ALIAS](set-user-alias.md) -[User in group](user-in-group.md) \ No newline at end of file +[User in group](user-in-group.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 182 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/cut-named-selection.md b/docs/commands-legacy/cut-named-selection.md index 9dfa42169c2076..a837c75c758f22 100644 --- a/docs/commands-legacy/cut-named-selection.md +++ b/docs/commands-legacy/cut-named-selection.md @@ -35,4 +35,14 @@ The following method empties the current selection of a table *\[Customers\]*: [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 334 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/docs/commands-legacy/data-file-encryption-status.md b/docs/commands-legacy/data-file-encryption-status.md index a744716f0eb9c4..c780de6ac06eed 100644 --- a/docs/commands-legacy/data-file-encryption-status.md +++ b/docs/commands-legacy/data-file-encryption-status.md @@ -67,4 +67,13 @@ You want to know the encryption status of a data file that corresponds to the cu #### See also [4D Blog - New 4D commands to work with encrypted data](https://blog.4d.com/new-4d-commands-to-work-with-encrypted-data/) -[Encrypt data file](encrypt-data-file.md) \ No newline at end of file +[Encrypt data file](encrypt-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1609 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/data-file.md b/docs/commands-legacy/data-file.md index 16ded6da295ebc..c97a604a91143d 100644 --- a/docs/commands-legacy/data-file.md +++ b/docs/commands-legacy/data-file.md @@ -31,4 +31,13 @@ If, for example, you are working with the database located in the folder Documen #### See also [Application file](application-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 490 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/database-measures.md b/docs/commands-legacy/database-measures.md index d57abeb7bf0f3b..07183ed7654f9c 100644 --- a/docs/commands-legacy/database-measures.md +++ b/docs/commands-legacy/database-measures.md @@ -330,3 +330,13 @@ We want to request measures for cache bytes read within the last two minutes:  OB SET($oParams;"historyLength";2*60)  $measures:=Database measures($oParams) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1314 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/date.md b/docs/commands-legacy/date.md index cc7a31d10509b4..44007125bf7916 100644 --- a/docs/commands-legacy/date.md +++ b/docs/commands-legacy/date.md @@ -91,4 +91,13 @@ You want to get a date from an object attribute, whatever the current attribute #### See also [Bool](bool.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 102 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/day-number.md b/docs/commands-legacy/day-number.md index ad70211447c248..f3ae5bfe1ac254 100644 --- a/docs/commands-legacy/day-number.md +++ b/docs/commands-legacy/day-number.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Day number** command returns a number representing the weekday on which *aDate* falls. - -**Note:** **Day number** returns *2* for null dates. +The **Day number** command returns a number representing the weekday on which *aDate* falls.**Day number** returns *2* for null dates. 4D provides the following predefined constants, found in the "*Days and Months*" theme: @@ -60,4 +58,13 @@ The following example is a function that returns the current day as a string: #### See also -[Day of](day-of.md) \ No newline at end of file +[Day of](day-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 114 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/day-of.md b/docs/commands-legacy/day-of.md index a594ed4c600de3..44d7e3146cd164 100644 --- a/docs/commands-legacy/day-of.md +++ b/docs/commands-legacy/day-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Day of** command returns the day of the month of *aDate*. - -**Note:** **Day of** returns a value between 1 and 31\. To get the day of the week for a date, use the command [Day number](day-number.md). +The **Day of** command returns the day of the month of *aDate*.**Day of** returns a value between 1 and 31\. To get the day of the week for a date, use the command [Day number](day-number.md). #### Example 1 @@ -37,4 +35,13 @@ See the example for the [Current date](current-date.md) command. [Day number](day-number.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 23 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/deactivated.md b/docs/commands-legacy/deactivated.md index 1eee6e088af26b..ab2f700c1e0d9b 100644 --- a/docs/commands-legacy/deactivated.md +++ b/docs/commands-legacy/deactivated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Deactivated** command returns True in a form or object method when the frontmost window of the frontmost process, containing the form, moves to the back. @@ -27,4 +24,13 @@ In order for the **Deactivated** execution cycle to be generated, make sure that #### See also [Activated](activated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 347 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/dec.md b/docs/commands-legacy/dec.md index 34ed1e211304d0..26c2ffefdbd33b 100644 --- a/docs/commands-legacy/dec.md +++ b/docs/commands-legacy/dec.md @@ -29,4 +29,13 @@ The following example takes a monetary value expressed as a real number, and ext #### See also -[Int](int.md) \ No newline at end of file +[Int](int.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 9 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/decrypt-blob.md b/docs/commands-legacy/decrypt-blob.md index 9bba8d49b0c80b..604e5825016bfa 100644 --- a/docs/commands-legacy/decrypt-blob.md +++ b/docs/commands-legacy/decrypt-blob.md @@ -33,4 +33,13 @@ Refer to the examples given for the [ENCRYPT BLOB](encrypt-blob.md) command. #### See also [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 690 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/decrypt-data-blob.md b/docs/commands-legacy/decrypt-data-blob.md index 832d75ba4819f9..5205c07138a67d 100644 --- a/docs/commands-legacy/decrypt-data-blob.md +++ b/docs/commands-legacy/decrypt-data-blob.md @@ -57,4 +57,13 @@ The *passPhrase* and *salt* used for decryption are identical to the *passPhrase [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) [Encrypt your own data with the 4D algorithm](https://blog.4d.com/encrypt-your-own-data-with-the-4d-algorithm) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1774 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/default-table.md b/docs/commands-legacy/default-table.md index a50ac431740acc..e4ce82c49ec32f 100644 --- a/docs/commands-legacy/default-table.md +++ b/docs/commands-legacy/default-table.md @@ -74,4 +74,13 @@ Specifying the default table results in this code: #### See also [Current default table](current-default-table.md) -[NO DEFAULT TABLE](no-default-table.md) \ No newline at end of file +[NO DEFAULT TABLE](no-default-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 46 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/delay-process.md b/docs/commands-legacy/delay-process.md index 0c9473ed442977..377de9b4553bdc 100644 --- a/docs/commands-legacy/delay-process.md +++ b/docs/commands-legacy/delay-process.md @@ -37,4 +37,13 @@ See example for the command [Process number](../commands/process-number.md). #### See also [HIDE PROCESS](hide-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 323 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/delete-document.md b/docs/commands-legacy/delete-document.md index 091af4f64a13e9..0ea71427ecde5d 100644 --- a/docs/commands-legacy/delete-document.md +++ b/docs/commands-legacy/delete-document.md @@ -46,4 +46,14 @@ Deleting a document sets the OK system variable to 1\. If **DELETE DOCUMENT** ca #### See also -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 159 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/delete-folder.md b/docs/commands-legacy/delete-folder.md index becd0a907b6c7c..9980ae69922647 100644 --- a/docs/commands-legacy/delete-folder.md +++ b/docs/commands-legacy/delete-folder.md @@ -41,4 +41,14 @@ You can intercept these errors using a method installed by the [ON ERR CALL](on- #### See also -[DELETE DOCUMENT](delete-document.md) \ No newline at end of file +[DELETE DOCUMENT](delete-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 693 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/delete-from-array.md b/docs/commands-legacy/delete-from-array.md index 11c5089dbe7d43..c93df67c1523f3 100644 --- a/docs/commands-legacy/delete-from-array.md +++ b/docs/commands-legacy/delete-from-array.md @@ -43,4 +43,13 @@ The following example deletes the last element from an array, if it exists: #### See also [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 228 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/delete-from-blob.md b/docs/commands-legacy/delete-from-blob.md index 9be4c66e9658ae..e224062c5046e9 100644 --- a/docs/commands-legacy/delete-from-blob.md +++ b/docs/commands-legacy/delete-from-blob.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### See also -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 560 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/delete-from-list.md b/docs/commands-legacy/delete-from-list.md index 97011e06ac44f7..0c63c7fac35bfe 100644 --- a/docs/commands-legacy/delete-from-list.md +++ b/docs/commands-legacy/delete-from-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **DELETE FROM LIST** command deletes the item designated by the *itemRef* parameter of the list whose reference number or object name is passed in *list*. @@ -44,4 +41,13 @@ The following code deletes the currently selected item of the list *hList*. If t #### See also [CLEAR LIST](clear-list.md) -[GET LIST ITEM](get-list-item.md) \ No newline at end of file +[GET LIST ITEM](get-list-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 624 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/delete-index.md b/docs/commands-legacy/delete-index.md index 1d7c546249799b..b4b0800a8015ad 100644 --- a/docs/commands-legacy/delete-index.md +++ b/docs/commands-legacy/delete-index.md @@ -45,4 +45,13 @@ This example illustrates both syntaxes of the command: [CREATE INDEX](create-index.md) [PAUSE INDEXES](pause-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 967 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/delete-menu-item.md b/docs/commands-legacy/delete-menu-item.md index ba4512aafd350c..34a118b19dbe7d 100644 --- a/docs/commands-legacy/delete-menu-item.md +++ b/docs/commands-legacy/delete-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **DELETE MENU ITEM** command deletes the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -35,4 +32,14 @@ If you omit the *process* parameter, **DELETE MENU ITEM** applies to the menu ba #### See also [APPEND MENU ITEM](append-menu-item.md) -[INSERT MENU ITEM](insert-menu-item.md) \ No newline at end of file +[INSERT MENU ITEM](insert-menu-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 413 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/delete-record.md b/docs/commands-legacy/delete-record.md index 455c1dcbaa535b..b26de28d41e8c5 100644 --- a/docs/commands-legacy/delete-record.md +++ b/docs/commands-legacy/delete-record.md @@ -41,4 +41,14 @@ The following example deletes an employee record. The code asks the user what em #### See also [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 58 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/docs/commands-legacy/delete-selection.md b/docs/commands-legacy/delete-selection.md index 068ba4718a0a34..29f2d4d248ef1c 100644 --- a/docs/commands-legacy/delete-selection.md +++ b/docs/commands-legacy/delete-selection.md @@ -62,4 +62,14 @@ If a locked record is encountered during the execution of **DELETE SELECTION**, [MODIFY SELECTION](modify-selection.md) *Record Locking* *Sets* -[TRUNCATE TABLE](truncate-table.md) \ No newline at end of file +[TRUNCATE TABLE](truncate-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 66 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/docs/commands-legacy/delete-string.md b/docs/commands-legacy/delete-string.md index f48e7d084b93f5..2fa4b683ef9a09 100644 --- a/docs/commands-legacy/delete-string.md +++ b/docs/commands-legacy/delete-string.md @@ -44,4 +44,13 @@ The following example illustrates the use of Delete string. The results are assi [Change string](change-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 232 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/delete-user.md b/docs/commands-legacy/delete-user.md index 5338014747655d..253194a1576773 100644 --- a/docs/commands-legacy/delete-user.md +++ b/docs/commands-legacy/delete-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **DELETE USER** command deletes the user whose unique user ID number you pass in *userID*. You must pass a valid user ID number returned by the [GET USER LIST](get-user-list.md) command. @@ -35,4 +32,14 @@ If you do not have the proper access privileges for calling DELETE USER or if th [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 615 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/describe-query-execution.md b/docs/commands-legacy/describe-query-execution.md index 88da3b8fe094d7..c8d81e0c43c271 100644 --- a/docs/commands-legacy/describe-query-execution.md +++ b/docs/commands-legacy/describe-query-execution.md @@ -66,4 +66,13 @@ $vResultPath : #### See also [Last query path](last-query-path.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1044 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/difference.md b/docs/commands-legacy/difference.md index 45e41876a396b9..8054abb56c8b44 100644 --- a/docs/commands-legacy/difference.md +++ b/docs/commands-legacy/difference.md @@ -54,4 +54,13 @@ At the bottom of the list of records is a button with an object method. The obje #### See also [INTERSECTION](intersection.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 122 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/disable-menu-item.md b/docs/commands-legacy/disable-menu-item.md index 2606d532d4ed5b..63494f11e97069 100644 --- a/docs/commands-legacy/disable-menu-item.md +++ b/docs/commands-legacy/disable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The DISABLE MENU ITEM command disables the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem*.You can pass -1 in *menuItem* in order to designate the last item added to the *menu*. @@ -32,4 +29,14 @@ If the *menuItem* parameter designates a hierarchical submenu, all the items of #### See also -[ENABLE MENU ITEM](enable-menu-item.md) \ No newline at end of file +[ENABLE MENU ITEM](enable-menu-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 150 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/discover-data-key.md b/docs/commands-legacy/discover-data-key.md index d05e1604b57453..43e02c4703851d 100644 --- a/docs/commands-legacy/discover-data-key.md +++ b/docs/commands-legacy/discover-data-key.md @@ -48,4 +48,13 @@ Key files (".4DKeyChain" extension files) must be stored at the top level of con #### See also [4D Blog - New 4D commands to work with encrypted data](https://blog.4d.com/new-4d-commands-to-work-with-encrypted-data/) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1639 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/display-notification.md b/docs/commands-legacy/display-notification.md index 9553753b8eb623..7e1dc49c04ab38 100644 --- a/docs/commands-legacy/display-notification.md +++ b/docs/commands-legacy/display-notification.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The DISPLAY NOTIFICATION command displays a notification message to the user. @@ -42,4 +39,13 @@ Under Windows, the message window remains displayed as long as no activity has b #### See also -[ALERT](alert.md) \ No newline at end of file +[ALERT](alert.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 910 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/display-record.md b/docs/commands-legacy/display-record.md index 5b3898ba8b8214..cb88539278ff31 100644 --- a/docs/commands-legacy/display-record.md +++ b/docs/commands-legacy/display-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **DISPLAY RECORD** command displays the current record of *aTable*, using the current input form. The record is displayed only until an event redraws the window. Such an event might be the execution of an [ADD RECORD](add-record.md) command, returning to an input form, or returning to the menu bar. **DISPLAY RECORD** does nothing if there is no current record. @@ -42,4 +39,13 @@ The following example displays a series of records as a slide show: #### See also -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 105 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/display-selection.md b/docs/commands-legacy/display-selection.md index a4b00a25266c15..de3226de734c1e 100644 --- a/docs/commands-legacy/display-selection.md +++ b/docs/commands-legacy/display-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **DISPLAY SELECTION** displays the selection of *aTable*, using the output form. The records are displayed in a scrollable list similar to that of the Design environment. If the user double-clicks a record, by default the record is displayed in the current input form. The list is displayed in the frontmost window. @@ -95,4 +92,14 @@ You can also use other commands, such as [PRINT SELECTION](print-selection.md), [Form event code](../commands/form-event-code.md) [MODIFY SELECTION](modify-selection.md) -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 59 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/displayed-line-number.md b/docs/commands-legacy/displayed-line-number.md index 5da170cd6017b0..82bc609c66d54a 100644 --- a/docs/commands-legacy/displayed-line-number.md +++ b/docs/commands-legacy/displayed-line-number.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Displayed line number** command only works with the On Display Detail form event. It returns the number of the row being processed while a list of records or list box rows is displayed on screen. If **Displayed line number** is called other than when displaying a list or a list box, it returns 0. @@ -46,4 +43,13 @@ This example lets you apply an alternating color to a list form displayed on scr #### See also [Form event code](../commands/form-event-code.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 897 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/distinct-attribute-paths.md b/docs/commands-legacy/distinct-attribute-paths.md index 582a383c3ffe20..6e7bdbc080354e 100644 --- a/docs/commands-legacy/distinct-attribute-paths.md +++ b/docs/commands-legacy/distinct-attribute-paths.md @@ -66,4 +66,13 @@ The *aTPaths* array receives the following elements: #### See also -[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) \ No newline at end of file +[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1395 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/distinct-attribute-values.md b/docs/commands-legacy/distinct-attribute-values.md index fba4cec8559135..efbb05025c06ae 100644 --- a/docs/commands-legacy/distinct-attribute-values.md +++ b/docs/commands-legacy/distinct-attribute-values.md @@ -92,4 +92,13 @@ The *aLChildNum* array receives the following elements: #### See also -[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) \ No newline at end of file +[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1397 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/distinct-values.md b/docs/commands-legacy/distinct-values.md index 03d36d9521d4e8..5e80000ea2cea1 100644 --- a/docs/commands-legacy/distinct-values.md +++ b/docs/commands-legacy/distinct-values.md @@ -81,4 +81,13 @@ To compute statistics, you want to sort the number of distinct values in a field [GET TEXT KEYWORDS](get-text-keywords.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 339 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/document-list.md b/docs/commands-legacy/document-list.md index 8379a42ae69151..cc0ae5410b822e 100644 --- a/docs/commands-legacy/document-list.md +++ b/docs/commands-legacy/document-list.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **DOCUMENT LIST** command populates the Text array *documents* with the names of the documents located at the location you pass in *pathname*. - -**Note:** You must pass an absolute pathname in the *pathname* parameter. +The **DOCUMENT LIST** command populates the Text array *documents* with the names of the documents located at the location you pass in *pathname*.You must pass an absolute pathname in the *pathname* parameter. By default, if you omit the *options* parameter, only the names of documents are returned in the *documents* array. You can modify this by passing, in the *options* parameter, one or more of the following constants, found in the *System Documents* theme: @@ -114,4 +112,14 @@ List of all documents in recursive Posix (relative) mode: #### See also [FOLDER LIST](folder-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 474 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/document-to-blob.md b/docs/commands-legacy/document-to-blob.md index e9a05032306a12..69defde138fec7 100644 --- a/docs/commands-legacy/document-to-blob.md +++ b/docs/commands-legacy/document-to-blob.md @@ -49,4 +49,14 @@ In each case, you can trap the error using an [ON ERR CALL](on-err-call.md) inte #### See also [BLOB TO DOCUMENT](blob-to-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 525 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/document-to-text.md b/docs/commands-legacy/document-to-text.md index 30b9b0739672a4..4c219a3d8214bb 100644 --- a/docs/commands-legacy/document-to-text.md +++ b/docs/commands-legacy/document-to-text.md @@ -76,4 +76,13 @@ When you execute this code: #### See also *System Documents* -[TEXT TO DOCUMENT](text-to-document.md) \ No newline at end of file +[TEXT TO DOCUMENT](text-to-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1236 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/dom-append-xml-child-node.md b/docs/commands-legacy/dom-append-xml-child-node.md index 91a16a113f2586..5e736ae9a1d2b1 100644 --- a/docs/commands-legacy/dom-append-xml-child-node.md +++ b/docs/commands-legacy/dom-append-xml-child-node.md @@ -144,4 +144,13 @@ If the contents of *childValue* are not valid, an error is returned. #### See also [DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1080 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/dom-append-xml-element.md b/docs/commands-legacy/dom-append-xml-element.md index 7f6aa5cd3a9ea8..1ed9065fe4802b 100644 --- a/docs/commands-legacy/dom-append-xml-element.md +++ b/docs/commands-legacy/dom-append-xml-element.md @@ -27,4 +27,13 @@ See the example of the [DOM Insert XML element](dom-insert-xml-element.md "DOM I #### See also -[DOM Insert XML element](dom-insert-xml-element.md) \ No newline at end of file +[DOM Insert XML element](dom-insert-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1082 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/dom-close-xml.md b/docs/commands-legacy/dom-close-xml.md index 1482c6332f9583..7335f1011d22b9 100644 --- a/docs/commands-legacy/dom-close-xml.md +++ b/docs/commands-legacy/dom-close-xml.md @@ -26,4 +26,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM Parse XML source](dom-parse-xml-source.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 722 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-count-xml-attributes.md b/docs/commands-legacy/dom-count-xml-attributes.md index 630367fbe31926..5c6031ec9143b7 100644 --- a/docs/commands-legacy/dom-count-xml-attributes.md +++ b/docs/commands-legacy/dom-count-xml-attributes.md @@ -51,4 +51,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also -[DOM Count XML elements](dom-count-xml-elements.md) \ No newline at end of file +[DOM Count XML elements](dom-count-xml-elements.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 727 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-count-xml-elements.md b/docs/commands-legacy/dom-count-xml-elements.md index 3744777d3cf194..fa6e2ea5355380 100644 --- a/docs/commands-legacy/dom-count-xml-elements.md +++ b/docs/commands-legacy/dom-count-xml-elements.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The DOM Count XML elements command returns the number of “child” elements dependent on the *elementRef* parent element and named *elementName*. - -**Note:** By default, **DOM Count XML elements** is case sensitive regarding the *elementName* parameter (xml compliance). You can control the case sensitivity of the command using the XML DOM case sensitivity selector of the [XML SET OPTIONS](xml-set-options.md) command. +The DOM Count XML elements command returns the number of “child” elements dependent on the *elementRef* parent element and named *elementName*.By default, **DOM Count XML elements** is case sensitive regarding the *elementName* parameter (xml compliance). You can control the case sensitivity of the command using the XML DOM case sensitivity selector of the [XML SET OPTIONS](xml-set-options.md) command. #### System variables and sets @@ -28,4 +26,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM Get XML element](dom-get-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 726 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-create-xml-element-arrays.md b/docs/commands-legacy/dom-create-xml-element-arrays.md index 0d6dea8d21bf04..c3700213d5e702 100644 --- a/docs/commands-legacy/dom-create-xml-element-arrays.md +++ b/docs/commands-legacy/dom-create-xml-element-arrays.md @@ -60,4 +60,13 @@ For this, you can simply write: #### See also -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1097 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/dom-create-xml-element.md b/docs/commands-legacy/dom-create-xml-element.md index 55364e7632b376..791d50ab8d192b 100644 --- a/docs/commands-legacy/dom-create-xml-element.md +++ b/docs/commands-legacy/dom-create-xml-element.md @@ -176,4 +176,14 @@ An error is generated when: [DOM Create XML element arrays](dom-create-xml-element-arrays.md) [DOM Get XML element](dom-get-xml-element.md) -[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) \ No newline at end of file +[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 865 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-create-xml-ref.md b/docs/commands-legacy/dom-create-xml-ref.md index e511a0a3eec9f5..56a2e59d68b456 100644 --- a/docs/commands-legacy/dom-create-xml-ref.md +++ b/docs/commands-legacy/dom-create-xml-ref.md @@ -97,4 +97,14 @@ If the command was executed correctly, the system variable OK is set to 1\. Othe #### See also [DOM CLOSE XML](dom-close-xml.md) -[DOM SET XML DECLARATION](dom-set-xml-declaration.md) \ No newline at end of file +[DOM SET XML DECLARATION](dom-set-xml-declaration.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 861 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-export-to-file.md b/docs/commands-legacy/dom-export-to-file.md index 6a506997bd1680..52c5389241f01d 100644 --- a/docs/commands-legacy/dom-export-to-file.md +++ b/docs/commands-legacy/dom-export-to-file.md @@ -61,4 +61,14 @@ An error is generated when: #### See also [DOM EXPORT TO VAR](dom-export-to-var.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 862 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-export-to-var.md b/docs/commands-legacy/dom-export-to-var.md index eb6c4b703cab02..f9f3982b384128 100644 --- a/docs/commands-legacy/dom-export-to-var.md +++ b/docs/commands-legacy/dom-export-to-var.md @@ -54,4 +54,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [DOM EXPORT TO FILE](dom-export-to-file.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 863 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-find-xml-element-by-id.md b/docs/commands-legacy/dom-find-xml-element-by-id.md index 54e92dd328e23b..c465e91effb3d9 100644 --- a/docs/commands-legacy/dom-find-xml-element-by-id.md +++ b/docs/commands-legacy/dom-find-xml-element-by-id.md @@ -27,4 +27,14 @@ The command returns the XML reference of the element found as a result. #### See also -[DOM Find XML element](dom-find-xml-element.md) \ No newline at end of file +[DOM Find XML element](dom-find-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1010 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-find-xml-element.md b/docs/commands-legacy/dom-find-xml-element.md index 27b115673ee54f..22e6aaea5944d7 100644 --- a/docs/commands-legacy/dom-find-xml-element.md +++ b/docs/commands-legacy/dom-find-xml-element.md @@ -116,4 +116,14 @@ An error is generated when: #### See also [DOM Count XML elements](dom-count-xml-elements.md) -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 864 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-get-first-child-xml-element.md b/docs/commands-legacy/dom-get-first-child-xml-element.md index 07ec6b55124079..3b53c2371c4634 100644 --- a/docs/commands-legacy/dom-get-first-child-xml-element.md +++ b/docs/commands-legacy/dom-get-first-child-xml-element.md @@ -57,4 +57,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 723 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-get-last-child-xml-element.md b/docs/commands-legacy/dom-get-last-child-xml-element.md index 99700e5882e1da..a6eee17d4c668c 100644 --- a/docs/commands-legacy/dom-get-last-child-xml-element.md +++ b/docs/commands-legacy/dom-get-last-child-xml-element.md @@ -42,4 +42,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 925 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-get-next-sibling-xml-element.md b/docs/commands-legacy/dom-get-next-sibling-xml-element.md index 5db322978cfe95..11b25e03af3a30 100644 --- a/docs/commands-legacy/dom-get-next-sibling-xml-element.md +++ b/docs/commands-legacy/dom-get-next-sibling-xml-element.md @@ -59,4 +59,14 @@ If the command has been correctly executed and if the parsed element is not the #### See also -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 724 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-get-parent-xml-element.md b/docs/commands-legacy/dom-get-parent-xml-element.md index 1326fd3fa5b5ea..bb1c45550cadd4 100644 --- a/docs/commands-legacy/dom-get-parent-xml-element.md +++ b/docs/commands-legacy/dom-get-parent-xml-element.md @@ -33,4 +33,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. [DOM Get first child XML element](dom-get-first-child-xml-element.md) [DOM Get last child XML element](dom-get-last-child-xml-element.md) -[DOM Get Root XML element](dom-get-root-xml-element.md) \ No newline at end of file +[DOM Get Root XML element](dom-get-root-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 923 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-get-previous-sibling-xml-element.md b/docs/commands-legacy/dom-get-previous-sibling-xml-element.md index a23d2676ee4ccb..f20283818222df 100644 --- a/docs/commands-legacy/dom-get-previous-sibling-xml-element.md +++ b/docs/commands-legacy/dom-get-previous-sibling-xml-element.md @@ -32,4 +32,14 @@ If the command has been executed correctly and if the referenced element is not #### See also -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 924 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-get-root-xml-element.md b/docs/commands-legacy/dom-get-root-xml-element.md index 926ceb31dc0019..a76e5d4877d887 100644 --- a/docs/commands-legacy/dom-get-root-xml-element.md +++ b/docs/commands-legacy/dom-get-root-xml-element.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### See also -[DOM Get parent XML element](dom-get-parent-xml-element.md) \ No newline at end of file +[DOM Get parent XML element](dom-get-parent-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1053 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-get-xml-attribute-by-index.md b/docs/commands-legacy/dom-get-xml-attribute-by-index.md index 12357617eadbe8..0cd7c4243fd39c 100644 --- a/docs/commands-legacy/dom-get-xml-attribute-by-index.md +++ b/docs/commands-legacy/dom-get-xml-attribute-by-index.md @@ -37,4 +37,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 729 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-get-xml-attribute-by-name.md b/docs/commands-legacy/dom-get-xml-attribute-by-name.md index f48d9a707bc9dc..08dc40da7414dd 100644 --- a/docs/commands-legacy/dom-get-xml-attribute-by-name.md +++ b/docs/commands-legacy/dom-get-xml-attribute-by-name.md @@ -48,4 +48,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 728 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-get-xml-child-nodes.md b/docs/commands-legacy/dom-get-xml-child-nodes.md index e1926b19ab8806..2792790f3ec4d3 100644 --- a/docs/commands-legacy/dom-get-xml-child-nodes.md +++ b/docs/commands-legacy/dom-get-xml-child-nodes.md @@ -61,4 +61,13 @@ After executing these instructions: #### See also [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1081 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/dom-get-xml-document-ref.md b/docs/commands-legacy/dom-get-xml-document-ref.md index 51a091118c2940..a32d837ce1ea99 100644 --- a/docs/commands-legacy/dom-get-xml-document-ref.md +++ b/docs/commands-legacy/dom-get-xml-document-ref.md @@ -53,4 +53,13 @@ In this example, we want to find the DTD declaration of the XML document: #### See also [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) \ No newline at end of file +[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1088 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/dom-get-xml-element-name.md b/docs/commands-legacy/dom-get-xml-element-name.md index ebc71bde84e8b0..84698361a68ec8 100644 --- a/docs/commands-legacy/dom-get-xml-element-name.md +++ b/docs/commands-legacy/dom-get-xml-element-name.md @@ -39,4 +39,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) \ No newline at end of file +[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 730 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-get-xml-element-value.md b/docs/commands-legacy/dom-get-xml-element-value.md index 12fb8d0f00cba8..6abc1ea22a1a0c 100644 --- a/docs/commands-legacy/dom-get-xml-element-value.md +++ b/docs/commands-legacy/dom-get-xml-element-value.md @@ -42,4 +42,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) -[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) \ No newline at end of file +[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 731 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-get-xml-element.md b/docs/commands-legacy/dom-get-xml-element.md index d231e68e0a9176..5e5e6a737c54ad 100644 --- a/docs/commands-legacy/dom-get-xml-element.md +++ b/docs/commands-legacy/dom-get-xml-element.md @@ -32,4 +32,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 725 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-get-xml-information.md b/docs/commands-legacy/dom-get-xml-information.md index 7497c232be5d62..a0821ee57779db 100644 --- a/docs/commands-legacy/dom-get-xml-information.md +++ b/docs/commands-legacy/dom-get-xml-information.md @@ -32,4 +32,13 @@ In *xmlInfo*, pass a code indicating the type of information to be retrieved. Yo #### See also -[XML GET ERROR](xml-get-error.md) \ No newline at end of file +[XML GET ERROR](xml-get-error.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 721 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/dom-insert-xml-element.md b/docs/commands-legacy/dom-insert-xml-element.md index 5e31b65ad66268..ed2694b02dd2dd 100644 --- a/docs/commands-legacy/dom-insert-xml-element.md +++ b/docs/commands-legacy/dom-insert-xml-element.md @@ -73,4 +73,13 @@ To do this, simply execute the following code: #### See also -[DOM Append XML element](dom-append-xml-element.md) \ No newline at end of file +[DOM Append XML element](dom-append-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1083 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/dom-parse-xml-source.md b/docs/commands-legacy/dom-parse-xml-source.md index 8eeee22dfd16d5..83c30fd148c48d 100644 --- a/docs/commands-legacy/dom-parse-xml-source.md +++ b/docs/commands-legacy/dom-parse-xml-source.md @@ -92,4 +92,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 719 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-parse-xml-variable.md b/docs/commands-legacy/dom-parse-xml-variable.md index 19713377e2f51a..850225cdd7771b 100644 --- a/docs/commands-legacy/dom-parse-xml-variable.md +++ b/docs/commands-legacy/dom-parse-xml-variable.md @@ -82,4 +82,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML source](dom-parse-xml-source.md) \ No newline at end of file +[DOM Parse XML source](dom-parse-xml-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 720 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-remove-xml-attribute.md b/docs/commands-legacy/dom-remove-xml-attribute.md index a193421036ab88..3919d81b5ff4c0 100644 --- a/docs/commands-legacy/dom-remove-xml-attribute.md +++ b/docs/commands-legacy/dom-remove-xml-attribute.md @@ -43,4 +43,14 @@ The following code can be used to remove the first attribute "N=1": [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) -[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) \ No newline at end of file +[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1084 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-remove-xml-element.md b/docs/commands-legacy/dom-remove-xml-element.md index 943139530987b9..724b7d656b4f2c 100644 --- a/docs/commands-legacy/dom-remove-xml-element.md +++ b/docs/commands-legacy/dom-remove-xml-element.md @@ -25,4 +25,14 @@ An error is generated when the element reference is invalid. #### See also [DOM Create XML element](dom-create-xml-element.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 869 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-set-xml-attribute.md b/docs/commands-legacy/dom-set-xml-attribute.md index 30331e79bf7da2..d5f2dfe19002fa 100644 --- a/docs/commands-legacy/dom-set-xml-attribute.md +++ b/docs/commands-legacy/dom-set-xml-attribute.md @@ -65,4 +65,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 866 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/dom-set-xml-declaration.md b/docs/commands-legacy/dom-set-xml-declaration.md index 1d9279cb2fbf4b..7588627a475fe7 100644 --- a/docs/commands-legacy/dom-set-xml-declaration.md +++ b/docs/commands-legacy/dom-set-xml-declaration.md @@ -36,4 +36,13 @@ The following example sets the encoding to use and the standalone option in the #### See also [DOM Create XML Ref](dom-create-xml-ref.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 859 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/dom-set-xml-element-name.md b/docs/commands-legacy/dom-set-xml-element-name.md index 2f5a265f89b742..49b813ceb76cd6 100644 --- a/docs/commands-legacy/dom-set-xml-element-name.md +++ b/docs/commands-legacy/dom-set-xml-element-name.md @@ -57,4 +57,14 @@ An error is generated when: #### See also -[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) \ No newline at end of file +[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 867 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/dom-set-xml-element-value.md b/docs/commands-legacy/dom-set-xml-element-value.md index 357968767db63e..2fa94d081bb342 100644 --- a/docs/commands-legacy/dom-set-xml-element-value.md +++ b/docs/commands-legacy/dom-set-xml-element-value.md @@ -115,4 +115,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 868 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/drag-window.md b/docs/commands-legacy/drag-window.md index dc675f2cd8a652..75e6e55bf5345b 100644 --- a/docs/commands-legacy/drag-window.md +++ b/docs/commands-legacy/drag-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The DRAG WINDOW command lets users drag the window on which they clicked following the movements of the mouse. Usually you call this command from within an object method of an object that can respond instantaneously to mouse clicks (i.e., invisible buttons). @@ -48,4 +45,13 @@ Then you can drag the window by clicking anywhere on the borders. #### See also [GET WINDOW RECT](get-window-rect.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 452 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/drop-position.md b/docs/commands-legacy/drop-position.md index 3cd081f6726b17..aea2859f4beb77 100644 --- a/docs/commands-legacy/drop-position.md +++ b/docs/commands-legacy/drop-position.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Drop position command can be used to find out the location, in a “complex” destination object, where an object has been (dragged and) dropped. @@ -94,4 +91,13 @@ The left (destination) list box object method contains the following code: #### See also -*Drag and Drop* \ No newline at end of file +*Drag and Drop* + +#### Properties + +| | | +| --- | --- | +| Command number | 608 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/drop-remote-user.md b/docs/commands-legacy/drop-remote-user.md index a3fa86bbf092bf..5e76664912ca64 100644 --- a/docs/commands-legacy/drop-remote-user.md +++ b/docs/commands-legacy/drop-remote-user.md @@ -40,4 +40,13 @@ You want to drop a specific remote user: #### See also [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) \ No newline at end of file +[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1633 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/duplicate-record.md b/docs/commands-legacy/duplicate-record.md index 9e62acddf0d4e1..b20ff43ccd0850 100644 --- a/docs/commands-legacy/duplicate-record.md +++ b/docs/commands-legacy/duplicate-record.md @@ -23,4 +23,14 @@ displayed_sidebar: docs #### See also -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 225 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/docs/commands-legacy/dynamic-pop-up-menu.md b/docs/commands-legacy/dynamic-pop-up-menu.md index 28ab951ff99cb6..288bc50b319bc7 100644 --- a/docs/commands-legacy/dynamic-pop-up-menu.md +++ b/docs/commands-legacy/dynamic-pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Dynamic pop up menu** causes a hierarchical pop-up menu to appear at the current location of the mouse or at the location set by the optional *xCoord* and *yCoord* parameters. @@ -93,4 +90,13 @@ This code allows creating a hierarchical dynamic pop up menu built upon standard [Get selected menu item parameter](get-selected-menu-item-parameter.md) [Pop up menu](pop-up-menu.md) [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1006 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/edit-access.md b/docs/commands-legacy/edit-access.md index 144409be251813..a2193b2692e24f 100644 --- a/docs/commands-legacy/edit-access.md +++ b/docs/commands-legacy/edit-access.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description EDIT ACCESS lets the user edit the password system. When this command is executed, the Toolbox window with only the Users and User groups pages appears. @@ -36,4 +33,14 @@ The following example displays the Users and User groups management window to th #### See also [CHANGE CURRENT USER](change-current-user.md) -[CHANGE PASSWORD](change-password.md) \ No newline at end of file +[CHANGE PASSWORD](change-password.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 281 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/edit-formula.md b/docs/commands-legacy/edit-formula.md index e092c6825f783f..ac32dfeb1b15fa 100644 --- a/docs/commands-legacy/edit-formula.md +++ b/docs/commands-legacy/edit-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **EDIT FORMULA** command displays the Formula editor in order to let the user write or modify a formula. The editor contains the following on opening: @@ -56,4 +53,14 @@ If the user validates the dialog box, the system variable OK is set to 1\. If th [APPLY TO SELECTION](apply-to-selection.md) [EXECUTE FORMULA](execute-formula.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 806 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/edit-item.md b/docs/commands-legacy/edit-item.md index 8a35bec7409e17..db84623f635fc9 100644 --- a/docs/commands-legacy/edit-item.md +++ b/docs/commands-legacy/edit-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **EDIT ITEM** command allows you to edit the current item or the item number *item* in the array or the list set in the *object* parameter. @@ -73,4 +70,13 @@ Given two columns in a list box whose variable names are “Array1” and “Arr [GOTO OBJECT](goto-object.md) [INSERT IN LIST](insert-in-list.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 870 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/enable-menu-item.md b/docs/commands-legacy/enable-menu-item.md index b6a217d37d8658..3e575aa81b820e 100644 --- a/docs/commands-legacy/enable-menu-item.md +++ b/docs/commands-legacy/enable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ENABLE MENU ITEM** command enables the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem*. You can pass -1 in *menuItem* in order to designate the last item added to the *menu*. @@ -32,4 +29,14 @@ If you omit the *process* parameter, **ENABLE MENU ITEM** applies to the menu ba #### See also -[DISABLE MENU ITEM](disable-menu-item.md) \ No newline at end of file +[DISABLE MENU ITEM](disable-menu-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 149 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/encrypt-blob.md b/docs/commands-legacy/encrypt-blob.md index 33af97bdcbf205..17cf610c17aadb 100644 --- a/docs/commands-legacy/encrypt-blob.md +++ b/docs/commands-legacy/encrypt-blob.md @@ -180,4 +180,13 @@ A company wants to use the Internet to exchange information. Each subsidiary rec *CryptoKey class* [DECRYPT BLOB](decrypt-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 689 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/encrypt-data-blob.md b/docs/commands-legacy/encrypt-data-blob.md index 28a50145dac9e3..f7b0eefc21ab9a 100644 --- a/docs/commands-legacy/encrypt-data-blob.md +++ b/docs/commands-legacy/encrypt-data-blob.md @@ -58,4 +58,13 @@ Encrypt a text file located in the RESOURCES folder of the database: [ENCRYPT BLOB](encrypt-blob.md) [Encrypt data file](encrypt-data-file.md) [Encrypt your own data with the 4D algorithm (blog post)](https://blog.4d.com/encrypt-your-own-data-with-the-4d-algorithm) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1773 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/encrypt-data-file.md b/docs/commands-legacy/encrypt-data-file.md index 7a9f14944ff48c..bd96b27e63f733 100644 --- a/docs/commands-legacy/encrypt-data-file.md +++ b/docs/commands-legacy/encrypt-data-file.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Encrypt data file** command is used to encrypt or re-encrypt the data file designated by the *dataPath* parameter associated to the *structurePath* parameter. It can also be used to remove encryption from the database. The command does not modify the original files, it returns the full path name of the folder created to backup the original data file. @@ -134,4 +131,13 @@ Re-encrypt an encrypted data file with the current key (for example, when the en [Data file encryption status](data-file-encryption-status.md) [Decrypt data BLOB](decrypt-data-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1610 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/end-selection.md b/docs/commands-legacy/end-selection.md index f9f901f1686db4..e2e345152ee5ad 100644 --- a/docs/commands-legacy/end-selection.md +++ b/docs/commands-legacy/end-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**End selection** returns TRUE when the current record pointer is beyond the last record of the current selection of *aTable*. **End selection** is commonly used to check whether or not [NEXT RECORD](next-record.md) has moved the current record pointer past the last record. If the current selection is empty, **End selection** returns TRUE. +**End selection** returns TRUE when the current record pointer is beyond the last record of the current selection of *aTable*.is commonly used to check whether or not [NEXT RECORD](next-record.md) has moved the current record pointer past the last record. If the current selection is empty, **End selection** returns TRUE. To move the current record pointer back into the selection, use [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) or [GOTO SELECTED RECORD](goto-selected-record.md). [PREVIOUS RECORD](previous-record.md) does not move the pointer back into the selection. @@ -60,4 +60,13 @@ This form method is used during the printing of a report. It sets the variable * [Form event code](../commands/form-event-code.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 36 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/end-sql.md b/docs/commands-legacy/end-sql.md index 716cf55ccca25c..005c872156fb94 100644 --- a/docs/commands-legacy/end-sql.md +++ b/docs/commands-legacy/end-sql.md @@ -20,4 +20,13 @@ A sequence of SQL statements must be enclosed with the [Begin SQL](begin-sql.md) #### See also -[Begin SQL](begin-sql.md) \ No newline at end of file +[Begin SQL](begin-sql.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 949 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/equal-pictures.md b/docs/commands-legacy/equal-pictures.md index 11ffa56e82ce3b..f1aef5c015e786 100644 --- a/docs/commands-legacy/equal-pictures.md +++ b/docs/commands-legacy/equal-pictures.md @@ -41,3 +41,14 @@ Here is the code for the **Compare** button: ```4d  $equal :=Equal pictures($pict1;$pict2;$mask) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1196 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/erase-window.md b/docs/commands-legacy/erase-window.md index bcc844fb615eb9..4fc7fe4cca6f84 100644 --- a/docs/commands-legacy/erase-window.md +++ b/docs/commands-legacy/erase-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ERASE WINDOW** command clears the contents of the window whose reference number is passed in *window*. @@ -29,4 +26,13 @@ Do not confuse **ERASE WINDOW**, which clears the contents of a window, with [CL #### See also [GOTO XY](goto-xy.md) -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 160 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/euro-converter.md b/docs/commands-legacy/euro-converter.md index 25545730cdcba5..8c397650648c1f 100644 --- a/docs/commands-legacy/euro-converter.md +++ b/docs/commands-legacy/euro-converter.md @@ -78,3 +78,13 @@ Here are some examples of conversions that can be done with this command:   //Convert the value into Italian Lire  $InLires:=Euro converter($value;French Franc;Italian Lire) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 676 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/execute-formula.md b/docs/commands-legacy/execute-formula.md index e33a2bb0b4cd12..86de4f8a807b64 100644 --- a/docs/commands-legacy/execute-formula.md +++ b/docs/commands-legacy/execute-formula.md @@ -61,4 +61,13 @@ You want to execute a formula including calls to 4D commands and tables. Since t [Command name](command-name.md) [EDIT FORMULA](edit-formula.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 63 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/execute-method-in-subform.md b/docs/commands-legacy/execute-method-in-subform.md index c05dc1507359da..ab187711cf769e 100644 --- a/docs/commands-legacy/execute-method-in-subform.md +++ b/docs/commands-legacy/execute-method-in-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The EXECUTE METHOD IN SUBFORM command can be used to execute the code designated by *formula* in the context of the *subformObject* subform object. @@ -75,3 +72,14 @@ If this method was used directly in the Calendar form method, you could call it #### System variables and sets If this command is executed correctly, the system variable OK is set to 1; otherwise, it is set to 0. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1085 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/execute-method.md b/docs/commands-legacy/execute-method.md index abe8753f990fef..0e4bf574e1cd11 100644 --- a/docs/commands-legacy/execute-method.md +++ b/docs/commands-legacy/execute-method.md @@ -31,4 +31,14 @@ If this command is executed correctly, the system variable OK is set to 1; other #### See also -[EXECUTE FORMULA](execute-formula.md) \ No newline at end of file +[EXECUTE FORMULA](execute-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1007 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/execute-on-client.md b/docs/commands-legacy/execute-on-client.md index fc80ea8f6fa17d..18e9a4c4c72fbf 100644 --- a/docs/commands-legacy/execute-on-client.md +++ b/docs/commands-legacy/execute-on-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **EXECUTE ON CLIENT** command forces the execution of the *methodName* method, with the parameters *param1... paramN*, if necessary, on the registered 4D Client whose name is *clientName*. 4D Client’s registered name is defined by the [REGISTER CLIENT](register-client.md) command. @@ -62,4 +59,14 @@ The **OK** system variable is equal to 1 if 4D Server has correctly received the [Execute on server](execute-on-server.md) [GET REGISTERED CLIENTS](get-registered-clients.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 651 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/execute-on-server.md b/docs/commands-legacy/execute-on-server.md index bb07555057e7ad..d0e94b46fe1b42 100644 --- a/docs/commands-legacy/execute-on-server.md +++ b/docs/commands-legacy/execute-on-server.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Execute on server** command starts a new process on the Server machine (if it is called in Client/Server) or on the same machine (if it is called in single-user) and returns the process number for that process. @@ -191,4 +188,13 @@ Refer to the *SP-Based Services (Example)* section in the *4D Server Reference* #### See also [EXECUTE ON CLIENT](execute-on-client.md) -[New process](new-process.md) \ No newline at end of file +[New process](new-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 373 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/exp.md b/docs/commands-legacy/exp.md index 533cc1077ab609..34170727505688 100644 --- a/docs/commands-legacy/exp.md +++ b/docs/commands-legacy/exp.md @@ -30,4 +30,13 @@ The following example assigns the exponential of 1 to *vrE* (the log of *vrE* is #### See also -[Log](log.md) \ No newline at end of file +[Log](log.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 21 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/expand-blob.md b/docs/commands-legacy/expand-blob.md index 0da67a2b2843ea..e880e800c5bbeb 100644 --- a/docs/commands-legacy/expand-blob.md +++ b/docs/commands-legacy/expand-blob.md @@ -63,4 +63,14 @@ The OK variable is set to 1 if the BLOB has been successfully expanded, otherwis #### See also [BLOB PROPERTIES](blob-properties.md) -[COMPRESS BLOB](compress-blob.md) \ No newline at end of file +[COMPRESS BLOB](compress-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 535 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/export-data.md b/docs/commands-legacy/export-data.md index 4ca86ee60a3354..404fdfce15d056 100644 --- a/docs/commands-legacy/export-data.md +++ b/docs/commands-legacy/export-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **EXPORT DATA** command exports data in the *fileName* file.4D can export data in the following formats: Text, Fixed length text, XML, SYLK, DIF, DBF (dBase), and 4D. @@ -99,4 +96,14 @@ If the user clicks **Cancel** in the standard open file dialog box or in the exp [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) -[IMPORT DATA](import-data.md) \ No newline at end of file +[IMPORT DATA](import-data.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 666 | +| Thread safe | ✗ | +| Modifies variables | OK, Document | + + diff --git a/docs/commands-legacy/export-dif.md b/docs/commands-legacy/export-dif.md index 65416c5297bf49..86f15b45e49862 100644 --- a/docs/commands-legacy/export-dif.md +++ b/docs/commands-legacy/export-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The EXPORT DIF command writes data from the records of the current selection of *aTable* in the current process. The data is written to *document*, a Windows or Macintosh DIF document on the disk. @@ -51,4 +48,14 @@ OK is set to 1 if the export is successfully completed; otherwise, it is set to [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 84 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/export-structure-file.md b/docs/commands-legacy/export-structure-file.md index 0b64856b5b2302..d7a28a146c46ae 100644 --- a/docs/commands-legacy/export-structure-file.md +++ b/docs/commands-legacy/export-structure-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Export structure file** command breaks down the current 4D database structure into a set of text-based files or native picture files and stores them in the specified *folderPath*. By default, the entirety of the database structure (methods, forms, catalog, etc.) is exported. You can filter the contents to export using the *options* parameter (see below). @@ -116,4 +113,13 @@ You want to export only project and database methods, and a log file: #### See also -[FORM Convert to dynamic](form-convert-to-dynamic.md) \ No newline at end of file +[FORM Convert to dynamic](form-convert-to-dynamic.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1565 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/export-structure.md b/docs/commands-legacy/export-structure.md index e595759632debb..da128209e8949e 100644 --- a/docs/commands-legacy/export-structure.md +++ b/docs/commands-legacy/export-structure.md @@ -55,4 +55,13 @@ You want to export the current database structure in html format: #### See also -[IMPORT STRUCTURE](import-structure.md) \ No newline at end of file +[IMPORT STRUCTURE](import-structure.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1311 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/export-sylk.md b/docs/commands-legacy/export-sylk.md index 87aa7077f50107..25dd30aee63a42 100644 --- a/docs/commands-legacy/export-sylk.md +++ b/docs/commands-legacy/export-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The EXPORT SYLK command writes data from the records of the current selection of *aTable* in the current process. The data is written to *document*, a Windows or Macintosh Sylk document on the disk. @@ -51,4 +48,14 @@ OK is set to 1 if the export is successfully completed; otherwise, it is set to [EXPORT DIF](export-dif.md) [EXPORT TEXT](export-text.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 85 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/export-text.md b/docs/commands-legacy/export-text.md index d35e9ac97a5b16..952a23861f07eb 100644 --- a/docs/commands-legacy/export-text.md +++ b/docs/commands-legacy/export-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The EXPORT TEXT command writes data from the records of the current selection of *aTable* in the current process. The data is written to *document*, a Windows or Macintosh text document on the disk. @@ -53,4 +50,14 @@ OK is set to 1 if the export is successfully completed; otherwise, it is set to [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 167 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/false.md b/docs/commands-legacy/false.md index 292e18451d691e..fd3558ad8d3ab9 100644 --- a/docs/commands-legacy/false.md +++ b/docs/commands-legacy/false.md @@ -28,4 +28,13 @@ The following example sets the variable *vbOptions* to False: #### See also [Not](not.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 215 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/field-name.md b/docs/commands-legacy/field-name.md index 0c16c929982776..6c525ac2606d3a 100644 --- a/docs/commands-legacy/field-name.md +++ b/docs/commands-legacy/field-name.md @@ -47,4 +47,13 @@ This example displays an alert. This method passes a pointer to a field: [Field](field.md) [Last field number](last-field-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 257 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/field.md b/docs/commands-legacy/field.md index 0ad09b241d36d9..c44d24c5883da1 100644 --- a/docs/commands-legacy/field.md +++ b/docs/commands-legacy/field.md @@ -24,8 +24,7 @@ displayed_sidebar: docs The **Field** command has two forms: -* If you pass a table number in *tableNum* and a field number in fieldNum, **Field** returns a pointer to the field. -* If you pass a field pointer in *fieldPtr*, **Field** returns the field number of the field. +* If you pass a table number in *tableNum* and a field number in fieldNum, **Field** returns a pointer to the field.returns the field number of the field. #### Example 1 @@ -56,4 +55,13 @@ The following example sets the *FieldNum* variable to the field number of \[Tabl [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last field number](last-field-number.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 253 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/filter-event.md b/docs/commands-legacy/filter-event.md index b62ad6d25f944e..bb68ea8167193c 100644 --- a/docs/commands-legacy/filter-event.md +++ b/docs/commands-legacy/filter-event.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description You call the **FILTER EVENT** command from within an event-handling project method installed using the [ON EVENT CALL](on-event-call.md) command. @@ -42,4 +39,14 @@ See example for the [ON EVENT CALL](on-event-call.md) command. #### See also -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 321 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/filter-keystroke.md b/docs/commands-legacy/filter-keystroke.md index bfd511b577d112..2fbc4c42998b31 100644 --- a/docs/commands-legacy/filter-keystroke.md +++ b/docs/commands-legacy/filter-keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **FILTER KEYSTROKE** enables you to replace the character entered by the user into a field or an enterable area with the first character of the string *filteredChar* you pass. @@ -242,4 +239,13 @@ The Get highlighted text method is listed here: [Form event code](../commands/form-event-code.md) [Get edited text](get-edited-text.md) [Is editing text](is-editing-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 389 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/find-in-array.md b/docs/commands-legacy/find-in-array.md index 7052cfb0ac74e1..74ffb941c98d8d 100644 --- a/docs/commands-legacy/find-in-array.md +++ b/docs/commands-legacy/find-in-array.md @@ -108,4 +108,13 @@ You want to find an object reference: [DELETE FROM ARRAY](delete-from-array.md) [Find in sorted array](find-in-sorted-array.md) [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 230 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/find-in-field.md b/docs/commands-legacy/find-in-field.md index a0802e764081de..9b5343b6ecbfc4 100644 --- a/docs/commands-legacy/find-in-field.md +++ b/docs/commands-legacy/find-in-field.md @@ -61,3 +61,13 @@ Here is an example that lets you verify the existence of a value: ``` Note the >= that lets you cover all cases. In fact, the function returns a record number and the first record is numbered 0. + + +#### Properties + +| | | +| --- | --- | +| Command number | 653 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/find-in-list.md b/docs/commands-legacy/find-in-list.md index 8ebc4c124b12fd..7a2086aa30613e 100644 --- a/docs/commands-legacy/find-in-list.md +++ b/docs/commands-legacy/find-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Find in list** command returns the position or reference of the first item of the *list* that is equivalent to the string passed in *value*. If several items are found, the function can also fill an *itemsArray* array with the position or reference of each item. @@ -64,3 +61,13 @@ Given the following hierarchical list:  $vlItemPos:=(hList;"Date";0;*)   //$vlItemPos equals 0 ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 952 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/find-in-sorted-array.md b/docs/commands-legacy/find-in-sorted-array.md index 2a5934b6b6e2c8..1f47742d1e7ca0 100644 --- a/docs/commands-legacy/find-in-sorted-array.md +++ b/docs/commands-legacy/find-in-sorted-array.md @@ -70,4 +70,13 @@ You want to find the number of occurrences of strings starting with "test" and c [Count in array](count-in-array.md) [Find in array](find-in-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1333 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/find-window.md b/docs/commands-legacy/find-window.md index d2d774141bbe34..c878ba399ca43c 100644 --- a/docs/commands-legacy/find-window.md +++ b/docs/commands-legacy/find-window.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Find window** command returns (if any) the reference number of the first window “touched” by the point whose coordinates passed in *left* and *top*. @@ -30,4 +27,13 @@ The *windowPart* parameter returns 3 if the window is touched, and 0 otherwise. #### See also [Frontmost window](frontmost-window.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 449 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/first-record.md b/docs/commands-legacy/first-record.md index 1d07be20dae7cf..6bdf078ee10b28 100644 --- a/docs/commands-legacy/first-record.md +++ b/docs/commands-legacy/first-record.md @@ -33,4 +33,14 @@ The following example makes the first record of the \[Customers\] table the firs [End selection](end-selection.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 50 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/docs/commands-legacy/flush-cache.md b/docs/commands-legacy/flush-cache.md index 52479ec65d27af..84bed8a9253a0d 100644 --- a/docs/commands-legacy/flush-cache.md +++ b/docs/commands-legacy/flush-cache.md @@ -29,4 +29,13 @@ In normal cases, you should not call this command, as 4D saves data modification #### See also [Get database parameter](get-database-parameter.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 297 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/focus-object.md b/docs/commands-legacy/focus-object.md index cf0aa60d4c4b9e..5d73258d67ba97 100644 --- a/docs/commands-legacy/focus-object.md +++ b/docs/commands-legacy/focus-object.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility Note This command is kept only for compatibility reasons. Starting with version 12 of 4D, it is recommended to use the [OBJECT Get pointer](object-get-pointer.md) command. @@ -46,4 +43,13 @@ The following example is an object method for a button. The object method change #### See also -[OBJECT Get pointer](object-get-pointer.md) \ No newline at end of file +[OBJECT Get pointer](object-get-pointer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 278 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/folder-list.md b/docs/commands-legacy/folder-list.md index d3fb942d38a118..c8e7b754c9e445 100644 --- a/docs/commands-legacy/folder-list.md +++ b/docs/commands-legacy/folder-list.md @@ -16,13 +16,21 @@ displayed_sidebar: docs #### Description -The **FOLDER LIST** command populates the Text or String array *directories* with the names of the folders located at the pathname you pass in *pathname*. - -**Note:** The *pathname* parameter only accepts absolute pathnames. +The **FOLDER LIST** command populates the Text or String array *directories* with the names of the folders located at the pathname you pass in *pathname*.The *pathname* parameter only accepts absolute pathnames. If there are no folders at the specified location, the command returns an empty array. If the pathname you pass in *pathname* is invalid, **FOLDER LIST** generate a file manager error that you can intercept using an [ON ERR CALL](on-err-call.md) method. #### See also [DOCUMENT LIST](document-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 473 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/font-file.md b/docs/commands-legacy/font-file.md index b2e524a28121e8..a9217e2348e4fa 100644 --- a/docs/commands-legacy/font-file.md +++ b/docs/commands-legacy/font-file.md @@ -47,4 +47,13 @@ You want to make sure the font used in a text area is available on the user syst #### See also -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1700 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/font-list.md b/docs/commands-legacy/font-list.md index 0b351e173968ca..b649b88bd678cb 100644 --- a/docs/commands-legacy/font-list.md +++ b/docs/commands-legacy/font-list.md @@ -72,4 +72,13 @@ You want to get a list of recent fonts: *Font Type List* [OBJECT SET FONT](object-set-font.md) [SET RECENT FONTS](set-recent-fonts.md) -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 460 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/font-style-list.md b/docs/commands-legacy/font-style-list.md index e5c2a13407fe73..c33c8ccb394adf 100644 --- a/docs/commands-legacy/font-style-list.md +++ b/docs/commands-legacy/font-style-list.md @@ -57,4 +57,13 @@ You want to select styles of the "Verdana" font family (if available): #### See also -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1362 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/form-convert-to-dynamic.md b/docs/commands-legacy/form-convert-to-dynamic.md index 0d8e9b0db2b09e..2584797cbbf399 100644 --- a/docs/commands-legacy/form-convert-to-dynamic.md +++ b/docs/commands-legacy/form-convert-to-dynamic.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM Convert to dynamic** command converts the *formName* (classic form) to a dynamic form and returns it in an object. @@ -63,4 +60,13 @@ If you execute the code: #### See also [DIALOG](../commands/dialog.md) -[Export structure file](export-structure-file.md) \ No newline at end of file +[Export structure file](export-structure-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1570 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-first-page.md b/docs/commands-legacy/form-first-page.md index 549a2e829722a3..82e6f8f758ccea 100644 --- a/docs/commands-legacy/form-first-page.md +++ b/docs/commands-legacy/form-first-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description FORM FIRST PAGE changes the currently displayed form page to the first form page. If no form is being displayed or loaded by the [FORM LOAD](../commands/form-load.md) command, or if the first form page is already displayed, FORM FIRST PAGE does nothing. @@ -33,4 +30,13 @@ The following example is a one-line method called from a menu command. It displa [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 250 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-get-color-scheme.md b/docs/commands-legacy/form-get-color-scheme.md index 62d56afc457eb5..dccc1025f0f9ba 100644 --- a/docs/commands-legacy/form-get-color-scheme.md +++ b/docs/commands-legacy/form-get-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM Get color scheme** command returns the name of the actual color scheme of the currently displayed form. If there is no current form, the command returns an empty string. @@ -45,4 +42,13 @@ You want to load a picture depending on the form current scheme: #### See also [Get application color scheme](get-application-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1761 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-get-current-page.md b/docs/commands-legacy/form-get-current-page.md index c2be04a24cfd5a..8cfa544db0d886 100644 --- a/docs/commands-legacy/form-get-current-page.md +++ b/docs/commands-legacy/form-get-current-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM Get current page** command returns the number of the currently displayed form page or of the current form loaded by the [FORM LOAD](../commands/form-load.md) command. @@ -69,4 +66,13 @@ In a form, when you select a menu item from the menu bar or when the form receiv [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 276 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-get-entry-order.md b/docs/commands-legacy/form-get-entry-order.md index 7ce48a37cad9a3..bed091fed4052d 100644 --- a/docs/commands-legacy/form-get-entry-order.md +++ b/docs/commands-legacy/form-get-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM GET ENTRY ORDER** command returns in *objectNames* the sorted names of objects that define the form entry order. @@ -53,4 +50,13 @@ You want to exclude some objects from the current entry order: #### See also -[FORM SET ENTRY ORDER](form-set-entry-order.md) \ No newline at end of file +[FORM SET ENTRY ORDER](form-set-entry-order.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1469 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-get-horizontal-resizing.md b/docs/commands-legacy/form-get-horizontal-resizing.md index 42c40e2eecd972..fae595dd8ea3f7 100644 --- a/docs/commands-legacy/form-get-horizontal-resizing.md +++ b/docs/commands-legacy/form-get-horizontal-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM GET HORIZONTAL RESIZING command returns the horizontal resizing properties of the current form in the *resize*, *minWidth* and *maxWidth* variables. These properties may have been set for the form in the Form editor in Design mode or for the current process via the [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) command. #### See also -[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) \ No newline at end of file +[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1077 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-get-names.md b/docs/commands-legacy/form-get-names.md index 97615769b016b8..ac561124728a05 100644 --- a/docs/commands-legacy/form-get-names.md +++ b/docs/commands-legacy/form-get-names.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM GET NAMES** command fills the *arrNames* array with the names of forms in the application. @@ -65,4 +62,13 @@ Examples of typical use: #### See also *Forms* -[METHOD GET PATHS FORM](../commands/method-get-paths-form.md) \ No newline at end of file +[METHOD GET PATHS FORM](method-get-paths-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1167 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-get-objects.md b/docs/commands-legacy/form-get-objects.md index 5b15797622f228..520e6ba590ee46 100644 --- a/docs/commands-legacy/form-get-objects.md +++ b/docs/commands-legacy/form-get-objects.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM GET OBJECTS command returns the list of all objects present in the current form in the form of (an) array(s). This list can be restricted to the current form page and can exclude objects of inherited forms. The command can be used with both input and output forms. @@ -125,4 +122,13 @@ You want to load a form and get a list of all the objects of list boxes that it [FORM GET PROPERTIES](form-get-properties.md) *Form Objects (Access)* -*Objects (Forms)* \ No newline at end of file +*Objects (Forms)* + +#### Properties + +| | | +| --- | --- | +| Command number | 898 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-get-properties.md b/docs/commands-legacy/form-get-properties.md index 7432fadc1fc3b2..26b43c439ff973 100644 --- a/docs/commands-legacy/form-get-properties.md +++ b/docs/commands-legacy/form-get-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM GET PROPERTIES command returns the properties of the form *formName*. @@ -43,4 +40,13 @@ The *title* parameter returns the title of the form's window as it was defined i [FORM GET OBJECTS](form-get-objects.md) [FORM SET SIZE](form-set-size.md) -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 674 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-get-vertical-resizing.md b/docs/commands-legacy/form-get-vertical-resizing.md index 8cda5b6e490db9..f7edb0e921c133 100644 --- a/docs/commands-legacy/form-get-vertical-resizing.md +++ b/docs/commands-legacy/form-get-vertical-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM GET VERTICAL RESIZING command returns the vertical resizing properties of the current form in the *resize*, *minHeight* and *maxHeight* variables. These properties may have been set for the form in the Form editor in Design mode or for the current process via the [FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) command. #### See also -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1078 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-goto-page.md b/docs/commands-legacy/form-goto-page.md index c1cd5cd7830cde..6f1b51650ea7a9 100644 --- a/docs/commands-legacy/form-goto-page.md +++ b/docs/commands-legacy/form-goto-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **FORM GOTO PAGE** changes the currently displayed form page to the form page specified by *pageNumber*. @@ -50,4 +47,13 @@ The following example is an object method for a button. It displays a specific p [FORM Get current page](form-get-current-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 247 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-last-page.md b/docs/commands-legacy/form-last-page.md index 5a8f60ca90fa9b..78a1350fd25d4e 100644 --- a/docs/commands-legacy/form-last-page.md +++ b/docs/commands-legacy/form-last-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description FORM LAST PAGE changes the currently displayed form page to the last form page. If a form is not being displayed or loaded by the [FORM LOAD](../commands/form-load.md) command, or if the last form page is already displayed, FORM LAST PAGE does nothing. @@ -33,4 +30,13 @@ The following example is a one-line method called from a menu command. It displa [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 251 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-next-page.md b/docs/commands-legacy/form-next-page.md index e482ed93033934..cc8f92ffc8faac 100644 --- a/docs/commands-legacy/form-next-page.md +++ b/docs/commands-legacy/form-next-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description FORM NEXT PAGE changes the currently displayed form page to the next form page. If no form is being displayed or loaded by the [FORM LOAD](../commands/form-load.md) command, or if the last form page is already displayed, FORM NEXT PAGE does nothing. @@ -33,4 +30,13 @@ The following example is a one-line method called from a menu command. It displa [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 248 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-previous-page.md b/docs/commands-legacy/form-previous-page.md index 0a4650a77ed4d9..bac7ca85af0e58 100644 --- a/docs/commands-legacy/form-previous-page.md +++ b/docs/commands-legacy/form-previous-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description FORM PREVIOUS PAGE changes the currently displayed form page to the previous form page. If no form is being displayed or loaded by the [FORM LOAD](../commands/form-load.md) command, or if the first form page is already displayed, FORM PREVIOUS PAGE does nothing. @@ -33,4 +30,13 @@ The following example is a one-line method called from a menu command. It displa [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM NEXT PAGE](form-next-page.md) \ No newline at end of file +[FORM NEXT PAGE](form-next-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 249 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-screenshot.md b/docs/commands-legacy/form-screenshot.md index ce802c3dd42066..407bf848455bbc 100644 --- a/docs/commands-legacy/form-screenshot.md +++ b/docs/commands-legacy/form-screenshot.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM SCREENSHOT command returns a form as a picture. This command accepts two different syntaxes: depending on the syntax used, you get either a picture of an executed form, or a picture of the form in the Form editor. @@ -38,4 +35,13 @@ By default, the command returns a screenshot of page 1 of the form. If you only #### See also -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 940 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-set-entry-order.md b/docs/commands-legacy/form-set-entry-order.md index 89e83edd079ce9..95d8d6d24dbe17 100644 --- a/docs/commands-legacy/form-set-entry-order.md +++ b/docs/commands-legacy/form-set-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM SET ENTRY ORDER** command allows to set dynamically the entry order of the current form for the current process based upon the *objectNames* array. @@ -54,4 +51,13 @@ You want to set the entry order of objects in the form based upon their names: #### See also -[FORM GET ENTRY ORDER](form-get-entry-order.md) \ No newline at end of file +[FORM GET ENTRY ORDER](form-get-entry-order.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1468 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-set-horizontal-resizing.md b/docs/commands-legacy/form-set-horizontal-resizing.md index 1ce7498daf261b..06eabb1a298843 100644 --- a/docs/commands-legacy/form-set-horizontal-resizing.md +++ b/docs/commands-legacy/form-set-horizontal-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM SET HORIZONTAL RESIZING command allows you to change the horizontal resizing properties of the current form through programming. By default, these properties are set in the Design environment Form editor. New properties are set for the current process; they are not stored with the form. @@ -38,4 +35,13 @@ Refer to the example of the [FORM SET SIZE](form-set-size.md) command. [FORM GET HORIZONTAL RESIZING](form-get-horizontal-resizing.md) [FORM SET SIZE](form-set-size.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 892 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-set-input.md b/docs/commands-legacy/form-set-input.md index 0c21d23750df18..799ec848c5e6bf 100644 --- a/docs/commands-legacy/form-set-input.md +++ b/docs/commands-legacy/form-set-input.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM SET INPUT** command sets the current input form for *aTable* to *form*, or *userForm*. The form must belong to *aTable*. @@ -108,4 +105,13 @@ which displays: [MODIFY RECORD](modify-record.md) [MODIFY SELECTION](modify-selection.md) [Open window](open-window.md) -[QUERY BY EXAMPLE](query-by-example.md) \ No newline at end of file +[QUERY BY EXAMPLE](query-by-example.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 55 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-set-output.md b/docs/commands-legacy/form-set-output.md index 4234cbf3821d48..a8872df9fa7847 100644 --- a/docs/commands-legacy/form-set-output.md +++ b/docs/commands-legacy/form-set-output.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM SET OUTPUT** command sets the current output form for *table* to *form*, or *userForm*. The form must belong to *aTable*. @@ -71,4 +68,13 @@ The following example uses the path to a .json form to print the records in an e [FORM SET INPUT](form-set-input.md) [MODIFY SELECTION](modify-selection.md) [PRINT LABEL](print-label.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 54 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-set-size.md b/docs/commands-legacy/form-set-size.md index 562a360f73c51b..775b71ebb4a2ea 100644 --- a/docs/commands-legacy/form-set-size.md +++ b/docs/commands-legacy/form-set-size.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM SET SIZE** command allows you to change the size of the current form by programming. The new size is defined for the current process; it is not saved with the form. @@ -124,4 +121,13 @@ The object method associated with this button is as follows: #### See also [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 891 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-set-vertical-resizing.md b/docs/commands-legacy/form-set-vertical-resizing.md index e33e7ec7bff11c..ad5570fae80922 100644 --- a/docs/commands-legacy/form-set-vertical-resizing.md +++ b/docs/commands-legacy/form-set-vertical-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM SET VERTICAL RESIZING** command allows you to change the vertical resizing properties of the current form through programming. By default, these properties are set in the Design environment Form editor. New properties are set for the current process; they are not stored with the form. @@ -38,4 +35,13 @@ Refer to the example of the [FORM SET SIZE](form-set-size.md) command. [FORM GET VERTICAL RESIZING](form-get-vertical-resizing.md) [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET SIZE](form-set-size.md) \ No newline at end of file +[FORM SET SIZE](form-set-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 893 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/form-unload.md b/docs/commands-legacy/form-unload.md index 81090383e198a5..f0b642a2c995fc 100644 --- a/docs/commands-legacy/form-unload.md +++ b/docs/commands-legacy/form-unload.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM UNLOAD** command releases from memory the current form designated using the [FORM LOAD](../commands/form-load.md) command. @@ -23,4 +20,13 @@ Calling this command is necessary when you use the [FORM LOAD](../commands/form- #### See also -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1299 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/frontmost-process.md b/docs/commands-legacy/frontmost-process.md index 2f519438d9e4aa..037bbe5d9046c9 100644 --- a/docs/commands-legacy/frontmost-process.md +++ b/docs/commands-legacy/frontmost-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Frontmost process** returns the number of the process whose window (or windows) are in the front. @@ -35,4 +32,13 @@ See the example for [BRING TO FRONT](bring-to-front.md). #### See also [BRING TO FRONT](bring-to-front.md) -[WINDOW LIST](window-list.md) \ No newline at end of file +[WINDOW LIST](window-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 327 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/frontmost-window.md b/docs/commands-legacy/frontmost-window.md index 4c82755d9533cb..eddd8653ba0998 100644 --- a/docs/commands-legacy/frontmost-window.md +++ b/docs/commands-legacy/frontmost-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Frontmost window command returns the window reference number of the frontmost window. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### See also [Frontmost process](frontmost-process.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 447 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/generate-certificate-request.md b/docs/commands-legacy/generate-certificate-request.md index 8e0f74fa18f4f5..61b67fd13cf7ed 100644 --- a/docs/commands-legacy/generate-certificate-request.md +++ b/docs/commands-legacy/generate-certificate-request.md @@ -85,4 +85,13 @@ Here is the **Generate** button method: #### See also [GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 691 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/generate-digest.md b/docs/commands-legacy/generate-digest.md index 8d5ec56d9b61b4..9617e668f6e44d 100644 --- a/docs/commands-legacy/generate-digest.md +++ b/docs/commands-legacy/generate-digest.md @@ -83,4 +83,13 @@ These examples illustrate how to retrieve the digest key of a text: [BASE64 ENCODE](base64-encode.md) [Generate password hash](generate-password-hash.md) *Secured Protocol* -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1147 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/generate-encryption-keypair.md b/docs/commands-legacy/generate-encryption-keypair.md index 45ebf7f16ed5d6..9093f25c7274bd 100644 --- a/docs/commands-legacy/generate-encryption-keypair.md +++ b/docs/commands-legacy/generate-encryption-keypair.md @@ -51,4 +51,13 @@ See example for the [ENCRYPT BLOB](encrypt-blob.md) command. [DECRYPT BLOB](decrypt-blob.md) [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 688 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/generate-password-hash.md b/docs/commands-legacy/generate-password-hash.md index dcddefa71e325a..19c4d0d17291fe 100644 --- a/docs/commands-legacy/generate-password-hash.md +++ b/docs/commands-legacy/generate-password-hash.md @@ -66,4 +66,13 @@ This example generates a password hash using bcrypt with a cost factor 4. [Generate digest](generate-digest.md) -[Verify password hash](verify-password-hash.md) \ No newline at end of file +[Verify password hash](verify-password-hash.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1533 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/generate-uuid.md b/docs/commands-legacy/generate-uuid.md index f2fd89dfd8aea5..cbe8878bafd9f2 100644 --- a/docs/commands-legacy/generate-uuid.md +++ b/docs/commands-legacy/generate-uuid.md @@ -29,3 +29,13 @@ Generation of a UUID in a variable:  var MyUUID : Text  MyUUID:=Generate UUID ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1066 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-4d-file.md b/docs/commands-legacy/get-4d-file.md index cf51e7c1033f39..02219221f0710c 100644 --- a/docs/commands-legacy/get-4d-file.md +++ b/docs/commands-legacy/get-4d-file.md @@ -68,4 +68,13 @@ You want to get the path of the last backup file: #### See also -[File](../commands/file.md) \ No newline at end of file +[File](../commands/file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1418 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-4d-folder.md b/docs/commands-legacy/get-4d-folder.md index 511f161d7c3d05..30fabd1e4d2e74 100644 --- a/docs/commands-legacy/get-4d-folder.md +++ b/docs/commands-legacy/get-4d-folder.md @@ -51,8 +51,8 @@ The 4D environment uses a specific folder to store the following information: The active 4D folder is created by default at the following location: -* On Windows: *{Disk}:\\Users\\* *\\AppData\\Roaming\\* -* On macOS: *{Disk}:Users:* *:Library:Application Support:* +* On Windows: *{Disk}:\\Users\\{userName}\\AppData\\Roaming\\{applicationName}* +* On macOS: *{Disk}:Users:{userName}:Library:Application Support:{applicationName}* ##### Licenses Folder @@ -206,4 +206,14 @@ If the *folder* parameter is invalid or if the pathname returned is empty, the O [System folder](system-folder.md) [Temporary folder](temporary-folder.md) [Test path name](test-path-name.md) -[WEB SET ROOT FOLDER](web-set-root-folder.md) \ No newline at end of file +[WEB SET ROOT FOLDER](web-set-root-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 485 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-adjusted-blobs-cache-priority.md b/docs/commands-legacy/get-adjusted-blobs-cache-priority.md index ad0b2a9e193f79..2a6d04026f7aaa 100644 --- a/docs/commands-legacy/get-adjusted-blobs-cache-priority.md +++ b/docs/commands-legacy/get-adjusted-blobs-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) *Managing priorities in database cache* -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1428 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-adjusted-index-cache-priority.md b/docs/commands-legacy/get-adjusted-index-cache-priority.md index 33bb8c294f3dda..65075db3a4127c 100644 --- a/docs/commands-legacy/get-adjusted-index-cache-priority.md +++ b/docs/commands-legacy/get-adjusted-index-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) *Managing priorities in database cache* -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1427 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-adjusted-table-cache-priority.md b/docs/commands-legacy/get-adjusted-table-cache-priority.md index aaf9be537ca385..9bca9cbe52c5f6 100644 --- a/docs/commands-legacy/get-adjusted-table-cache-priority.md +++ b/docs/commands-legacy/get-adjusted-table-cache-priority.md @@ -26,4 +26,13 @@ Scalar data field types include fields of date/hour, numeric, or string type. [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) *Managing priorities in database cache* -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1426 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-allowed-methods.md b/docs/commands-legacy/get-allowed-methods.md index cf1c1272ff3ab6..1ad8e74a27db1d 100644 --- a/docs/commands-legacy/get-allowed-methods.md +++ b/docs/commands-legacy/get-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET ALLOWED METHODS** command returns, in *methodsArray*, the names of methods that can be used to write formulas. These methods are listed at the end of the list of commands in the editor. @@ -45,4 +42,13 @@ This example authorizes a set of specific methods to create a report: #### See also -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 908 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-application-color-scheme.md b/docs/commands-legacy/get-application-color-scheme.md index 94805ef1444396..3dcfb0da463a3c 100644 --- a/docs/commands-legacy/get-application-color-scheme.md +++ b/docs/commands-legacy/get-application-color-scheme.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get application color scheme** command returns the name of the actual color scheme in use at the application level. @@ -45,4 +42,13 @@ Please refer to the [SET APPLICATION COLOR SCHEME](set-application-color-scheme. #### See also [FORM Get color scheme](form-get-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1763 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-assert-enabled.md b/docs/commands-legacy/get-assert-enabled.md index 9593705255f682..15879cbbd85d7a 100644 --- a/docs/commands-legacy/get-assert-enabled.md +++ b/docs/commands-legacy/get-assert-enabled.md @@ -23,4 +23,13 @@ By default, assertions are enabled but they may have been disabled using the [SE [ASSERT](assert.md) [Asserted](asserted.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1130 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-automatic-relations.md b/docs/commands-legacy/get-automatic-relations.md index 322232505b1f4d..76f0acbdac69da 100644 --- a/docs/commands-legacy/get-automatic-relations.md +++ b/docs/commands-legacy/get-automatic-relations.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **GET AUTOMATIC RELATIONS** command lets you know if the automatic/manual status of all manual many-to-one and one-to-many relations of the database have been modified in the current process. - -* *one*: This parameter returns **True** if a previous calll from the [SET AUTOMATIC RELATIONS](set-automatic-relations.md) command made all manual many-to-one relations automatic — for example, **[SET AUTOMATIC RELATIONS](set-automatic-relations.md "SET AUTOMATIC RELATIONS")**(True;False). +The **GET AUTOMATIC RELATIONS** command lets you know if the automatic/manual status of all manual many-to-one and one-to-many relations of the database have been modified in the current process.if a previous calll from the [SET AUTOMATIC RELATIONS](set-automatic-relations.md) command made all manual many-to-one relations automatic — for example, **[SET AUTOMATIC RELATIONS](set-automatic-relations.md "SET AUTOMATIC RELATIONS")**(True;False). This parameter returns **False** if the [SET AUTOMATIC RELATIONS](set-automatic-relations.md) command has not been called or if its previous execution did not modify manual many-to-one relations — for example, **[SET AUTOMATIC RELATIONS](set-automatic-relations.md "SET AUTOMATIC RELATIONS")**(False;False). * *many*: This parameter returns **True** if a previous call from the [SET AUTOMATIC RELATIONS](set-automatic-relations.md) command made all manual one-to-many relations automatic — for example, **[SET AUTOMATIC RELATIONS](set-automatic-relations.md "SET AUTOMATIC RELATIONS")**(True;True). This parameter returns **False** if the [SET AUTOMATIC RELATIONS](set-automatic-relations.md) command has not been called or if its previous execution did not modify manual one-to-many relations — for example, **[SET AUTOMATIC RELATIONS](set-automatic-relations.md "SET AUTOMATIC RELATIONS")**(True;False). @@ -31,4 +29,13 @@ Refer to the example of the [GET FIELD RELATION](get-field-relation.md) command. [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 899 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-cache-size.md b/docs/commands-legacy/get-cache-size.md index c828e2fce3ab9e..6bb146a44e2b6a 100644 --- a/docs/commands-legacy/get-cache-size.md +++ b/docs/commands-legacy/get-cache-size.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -The **Get cache size** command returns the current database cache size in bytes. - -**Note:** This command only works in local mode (4D Server and 4D); it must not be used from 4D in remote mode. +The **Get cache size** command returns the current database cache size in bytes.This command only works in local mode (4D Server and 4D); it must not be used from 4D in remote mode. #### Example @@ -25,4 +23,13 @@ See example for [SET CACHE SIZE](set-cache-size.md) command. #### See also -[SET CACHE SIZE](set-cache-size.md) \ No newline at end of file +[SET CACHE SIZE](set-cache-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1432 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-current-printer.md b/docs/commands-legacy/get-current-printer.md index e19923468d76ec..0c7ee1cb583f1b 100644 --- a/docs/commands-legacy/get-current-printer.md +++ b/docs/commands-legacy/get-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get current printer** command returns the name of the current printer defined in the 4D application. By default, on start-up of 4D, the current printer is the printer defined in the system. @@ -33,4 +30,13 @@ If no printer is installed, an error is generated. #### See also [PRINTERS LIST](printers-list.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 788 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-database-localization.md b/docs/commands-legacy/get-database-localization.md index 773df210819c62..0488de2d1bb4b5 100644 --- a/docs/commands-legacy/get-database-localization.md +++ b/docs/commands-legacy/get-database-localization.md @@ -49,4 +49,13 @@ The current language of the database determines the .lproj folder where the prog #### See also [Localized document path](localized-document-path.md) -[SET DATABASE LOCALIZATION](set-database-localization.md) \ No newline at end of file +[SET DATABASE LOCALIZATION](set-database-localization.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1009 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-database-parameter.md b/docs/commands-legacy/get-database-parameter.md index e4fc23c90c4e5f..94e228c05fe077 100644 --- a/docs/commands-legacy/get-database-parameter.md +++ b/docs/commands-legacy/get-database-parameter.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get database parameter** command allows you to get the current value of a 4D database parameter. When the parameter value is a character string, it is returned in the *stringValue* parameter. @@ -134,4 +131,13 @@ In the [On Startup database method](on-startup-database-method.md), you write: [DISTINCT VALUES](distinct-values.md) [Application info](application-info.md) [QUERY SELECTION](query-selection.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 643 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-default-user.md b/docs/commands-legacy/get-default-user.md index de366f9726e805..0b1fcb057b7d97 100644 --- a/docs/commands-legacy/get-default-user.md +++ b/docs/commands-legacy/get-default-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Get default user command returns the unique user ID of the user set as “Default user” in the database Settings dialog box: @@ -23,3 +20,13 @@ displayed_sidebar: docs ![](../assets/en/commands/pict36789.en.png) If no default user has been set, the command returns 0. + + +#### Properties + +| | | +| --- | --- | +| Command number | 826 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-document-icon.md b/docs/commands-legacy/get-document-icon.md index 8485dd28ae5b96..f1e38d792a90a9 100644 --- a/docs/commands-legacy/get-document-icon.md +++ b/docs/commands-legacy/get-document-icon.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -The GET DOCUMENT ICON command returns, in the 4D picture variable or field *icon*, the icon of the document whose name or complete pathname is passed in *docPath*. *docPath* can specify a file of any type (executable, document, shortcut or alias, etc.) or a folder. +The GET DOCUMENT ICON command returns, in the 4D picture variable or field *icon*, the icon of the document whose name or complete pathname is passed in *docPath*.can specify a file of any type (executable, document, shortcut or alias, etc.) or a folder. *docPath* contains the full pathname of the document. You can also pass the document name only or a relative pathname, in this case the document must be placed in the database current working directory (usually, the folder containing the database structure file). If you pass an empty string in *docPath*, the standard Open File dialog box appears. The user can then select the file to read. Once the dialog box is validated, the Document system variable contains the full pathname to the selected file. @@ -25,3 +25,14 @@ If you pass an empty string in *docPath*, the standard Open File dialog box appe Pass a 4D picture field or variable in *icon*. After the command is executed, this parameter contains the icon of the file (PICT format). The optional *size* parameter sets the dimensions in pixels of the returned icon. This value actually represents the side length of the square including the icon. Icons are usually defined in 32x32 pixels (“large icons”) or 16x16 pixels (“small icons”). If you pass 0 or omit this parameter, the largest available icon is returned. + + +#### Properties + +| | | +| --- | --- | +| Command number | 700 | +| Thread safe | ✓ | +| Modifies variables | Document, error | + + diff --git a/docs/commands-legacy/get-document-position.md b/docs/commands-legacy/get-document-position.md index b6ff0272f072b0..03f4139d930f52 100644 --- a/docs/commands-legacy/get-document-position.md +++ b/docs/commands-legacy/get-document-position.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Description -This command operates only on a document that is currently open whose document reference number you pass in *docRef*. - -**Get document position** returns the position, starting from the beginning of the document, where the next read ([RECEIVE PACKET](receive-packet.md)) or write ([SEND PACKET](send-packet.md)) will occur. +This command operates only on a document that is currently open whose document reference number you pass in *docRef*.returns the position, starting from the beginning of the document, where the next read ([RECEIVE PACKET](receive-packet.md)) or write ([SEND PACKET](send-packet.md)) will occur. #### See also [RECEIVE PACKET](receive-packet.md) [SEND PACKET](send-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 481 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-document-properties.md b/docs/commands-legacy/get-document-properties.md index 00bd3f8a63dfc3..3fb5ffcc5a389b 100644 --- a/docs/commands-legacy/get-document-properties.md +++ b/docs/commands-legacy/get-document-properties.md @@ -207,4 +207,14 @@ Once this is implemented in the database, we have all we need to write the proje #### See also -[SET DOCUMENT PROPERTIES](set-document-properties.md) \ No newline at end of file +[SET DOCUMENT PROPERTIES](set-document-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 477 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/get-document-size.md b/docs/commands-legacy/get-document-size.md index 0f4b9d1f8f22c3..c5f492861534bf 100644 --- a/docs/commands-legacy/get-document-size.md +++ b/docs/commands-legacy/get-document-size.md @@ -29,4 +29,14 @@ On Macintosh, if you do not pass the optional *\** parameter, the size of the da [Get document position](get-document-position.md) [SET DOCUMENT POSITION](set-document-position.md) -[SET DOCUMENT SIZE](set-document-size.md) \ No newline at end of file +[SET DOCUMENT SIZE](set-document-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 479 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/get-edited-text.md b/docs/commands-legacy/get-edited-text.md index 0ecaa05679d703..08cff48ce3bdc5 100644 --- a/docs/commands-legacy/get-edited-text.md +++ b/docs/commands-legacy/get-edited-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get edited text** command is mainly to be used with the On After Edit form event to retrieve the text as it is being entered. It can also be used with the On Before Keystroke and On After Keystroke form events. For more information about those form events, please refer to the description of the command [Form event code](../commands/form-event-code.md). @@ -67,4 +64,13 @@ Here is an example of how to process on the fly characters entered in a text fie #### See also [Form event code](../commands/form-event-code.md) -[Is editing text](is-editing-text.md) \ No newline at end of file +[Is editing text](is-editing-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 655 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-external-data-path.md b/docs/commands-legacy/get-external-data-path.md index 612859e463bfec..7c2f3a1355bc09 100644 --- a/docs/commands-legacy/get-external-data-path.md +++ b/docs/commands-legacy/get-external-data-path.md @@ -30,4 +30,13 @@ More particularly, this command lets you recopy the external file. #### See also -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1133 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-field-entry-properties.md b/docs/commands-legacy/get-field-entry-properties.md index c397c1151795cf..997a61de916d02 100644 --- a/docs/commands-legacy/get-field-entry-properties.md +++ b/docs/commands-legacy/get-field-entry-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The GET FIELD ENTRY PROPERTIES command returns the data entry properties for the field specified by *tableNum* and *fieldNum* or by *fieldPtr*. @@ -43,4 +40,13 @@ If there is no choice list associated to the field or if the field type is not s [GET FIELD PROPERTIES](get-field-properties.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[GET TABLE PROPERTIES](get-table-properties.md) \ No newline at end of file +[GET TABLE PROPERTIES](get-table-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 685 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-field-properties.md b/docs/commands-legacy/get-field-properties.md index 20b96d2125f10e..84f0847609f2b7 100644 --- a/docs/commands-legacy/get-field-properties.md +++ b/docs/commands-legacy/get-field-properties.md @@ -73,4 +73,13 @@ This example sets the variables *vType*, *vLength*, *vIndex*, *vUnique* and *vIn [Field](field.md) [Field name](field-name.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 258 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-field-relation.md b/docs/commands-legacy/get-field-relation.md index f437d84a7a8895..82a49e43e2b356 100644 --- a/docs/commands-legacy/get-field-relation.md +++ b/docs/commands-legacy/get-field-relation.md @@ -82,4 +82,13 @@ The following code illustrates the various possibilities offered by the **GET FI [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET RELATION PROPERTIES](get-relation-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 920 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-field-titles.md b/docs/commands-legacy/get-field-titles.md index 66de3fd294f4a7..8b4af2153273fb 100644 --- a/docs/commands-legacy/get-field-titles.md +++ b/docs/commands-legacy/get-field-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET FIELD TITLES** command fills the *fieldTitles* and *fieldNums* arrays with the names and numbers of database fields for the desired *aTable*. The contents of these two arrays are synchronized. @@ -31,4 +28,13 @@ In both cases, the command does not return invisible fields. #### See also [GET TABLE TITLES](get-table-titles.md) -[SET FIELD TITLES](set-field-titles.md) \ No newline at end of file +[SET FIELD TITLES](set-field-titles.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 804 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-file-from-pasteboard.md b/docs/commands-legacy/get-file-from-pasteboard.md index 58d88eb4e0eca5..e4365bd95740ed 100644 --- a/docs/commands-legacy/get-file-from-pasteboard.md +++ b/docs/commands-legacy/get-file-from-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Get file from pasteboard command returns the absolute pathname of a file included in a drag and drop operation. Several files can be selected and moved simultaneously. The *xIndex* parameter is used to designate a file from among the set of files selected. @@ -43,4 +40,13 @@ The following example can be used to retrieve in an array all the pathnames of t #### See also -[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) \ No newline at end of file +[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 976 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-group-access.md b/docs/commands-legacy/get-group-access.md index c9b4d9b83485af..638a1b4fd811a4 100644 --- a/docs/commands-legacy/get-group-access.md +++ b/docs/commands-legacy/get-group-access.md @@ -34,4 +34,13 @@ You want to check if the current user belongs to the "plugins" group: #### See also -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1738 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-group-list.md b/docs/commands-legacy/get-group-list.md index 0f6d98b4a6b8f0..6aef370aedf450 100644 --- a/docs/commands-legacy/get-group-list.md +++ b/docs/commands-legacy/get-group-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description GET GROUP LIST populates the arrays *groupNames* and *groupNumbers* with the names and unique ID numbers of the groups as they appear in the Password editor window. @@ -34,4 +31,14 @@ If you do not have the proper access privileges for calling GET GROUP LIST or if [GET GROUP PROPERTIES](get-group-properties.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 610 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/get-group-properties.md b/docs/commands-legacy/get-group-properties.md index 59a8468446af6e..0e369f6def40a0 100644 --- a/docs/commands-legacy/get-group-properties.md +++ b/docs/commands-legacy/get-group-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description GET GROUP PROPERTIES returns the properties of the group whose unique group ID number you pass in *groupID*. You must pass a valid group ID number returned by the command [GET GROUP LIST](get-group-list.md). @@ -41,4 +38,14 @@ If you do not have the proper access privileges for calling GET GROUP PROPERTIES [GET GROUP LIST](get-group-list.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 613 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/get-highlight.md b/docs/commands-legacy/get-highlight.md index 7b1c52a24c2162..c967b2687be2a2 100644 --- a/docs/commands-legacy/get-highlight.md +++ b/docs/commands-legacy/get-highlight.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The GET HIGHLIGHT command is used to determine what text is currently highlighted in *object*. @@ -65,4 +62,13 @@ Modification of highlighted text style: [FILTER KEYSTROKE](filter-keystroke.md) [HIGHLIGHT TEXT](highlight-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 209 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-highlighted-records.md b/docs/commands-legacy/get-highlighted-records.md index 3a38b5889bc859..c153d83103ab3b 100644 --- a/docs/commands-legacy/get-highlighted-records.md +++ b/docs/commands-legacy/get-highlighted-records.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET HIGHLIGHTED RECORDS** command stores in the set designated by the *setName* parameter the highlighted records (i.e., the records highlighted by the user in the list form) in the *aTable* passed as parameter. If the *aTable* parameter is omitted, the table of the current form or subform is used. @@ -44,4 +41,14 @@ If the command was executed properly, the system variable OK is set to 1\. Other #### See also -[HIGHLIGHT RECORDS](highlight-records.md) \ No newline at end of file +[HIGHLIGHT RECORDS](highlight-records.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 902 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-indexed-string.md b/docs/commands-legacy/get-indexed-string.md index 9589d551ca850b..ff3c093db05277 100644 --- a/docs/commands-legacy/get-indexed-string.md +++ b/docs/commands-legacy/get-indexed-string.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get indexed string** command returns: @@ -46,4 +43,14 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero). [Get string resource](get-string-resource.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 510 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-last-update-log-path.md b/docs/commands-legacy/get-last-update-log-path.md index 4e71963143368c..1868c021488e59 100644 --- a/docs/commands-legacy/get-last-update-log-path.md +++ b/docs/commands-legacy/get-last-update-log-path.md @@ -24,4 +24,13 @@ This command is intended to be used in an automatic update process for a merged #### See also [RESTART 4D](restart-4d.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1301 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-list-item-font.md b/docs/commands-legacy/get-list-item-font.md index 2fab280c185fb1..a4974b96184d4b 100644 --- a/docs/commands-legacy/get-list-item-font.md +++ b/docs/commands-legacy/get-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get list item font** command returns the current character font name of the item specified by the *itemRef* parameter of the list whose reference number or object name is passed in *list*. @@ -33,4 +30,13 @@ Lastly, you can pass \* in *itemRef*: in this case, the command will get the fon #### See also -[SET LIST ITEM FONT](set-list-item-font.md) \ No newline at end of file +[SET LIST ITEM FONT](set-list-item-font.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 954 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-list-item-icon.md b/docs/commands-legacy/get-list-item-icon.md index 2460969ecb8006..a5ca688ea961cf 100644 --- a/docs/commands-legacy/get-list-item-icon.md +++ b/docs/commands-legacy/get-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST ITEM ICON** command returns, in *icon*, the icon associated with the item whose reference number is passed in *itemRef* in the list whose reference number or object name is passed in *list*. @@ -39,4 +36,13 @@ If no icon is associated with the item, the icon variable is returned empty. #### See also [GET LIST ITEM PROPERTIES](get-list-item-properties.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 951 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-list-item-parameter-arrays.md b/docs/commands-legacy/get-list-item-parameter-arrays.md index b1171a52582018..31f1f367f13768 100644 --- a/docs/commands-legacy/get-list-item-parameter-arrays.md +++ b/docs/commands-legacy/get-list-item-parameter-arrays.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST ITEM PARAMETER ARRAYS** command lets you retrieve all the parameters in a single call (as well as, optionally, their values) that are associated with the *itemRef* item in the hierarchical list whose reference or object name is passed in the *list* parameter. @@ -76,4 +73,13 @@ If you want to get the parameter values as well, you write: #### See also -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1195 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-list-item-parameter.md b/docs/commands-legacy/get-list-item-parameter.md index 72860f425c0400..a7c73df51b6a6a 100644 --- a/docs/commands-legacy/get-list-item-parameter.md +++ b/docs/commands-legacy/get-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST ITEM PARAMETER** command is used to find out the current *value* of the *selector* parameter for the *itemRef* item of the hierarchical list whose reference or object name is passed in the *list* parameter. @@ -37,4 +34,13 @@ In *selector*, you can pass the Additional text or Associated standard action co #### See also *Hierarchical Lists* -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 985 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-list-item-properties.md b/docs/commands-legacy/get-list-item-properties.md index b9982da3ddc228..d8d69056a5fade 100644 --- a/docs/commands-legacy/get-list-item-properties.md +++ b/docs/commands-legacy/get-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST ITEM PROPERTIES** command returns the properties of the item designated by the *itemRef* parameterwithin the list whose list reference number or object name is passed in *list*. @@ -54,4 +51,13 @@ For details about these properties, see the description of the command [SET LIST [GET LIST ITEM](get-list-item.md) [GET LIST ITEM ICON](get-list-item-icon.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 631 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-list-item.md b/docs/commands-legacy/get-list-item.md index 98b5b72986303c..b11a2e49f7d3d5 100644 --- a/docs/commands-legacy/get-list-item.md +++ b/docs/commands-legacy/get-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST ITEM** command returns information about the item specified by *itemPos* of the list whose reference number or object name is passed in *list*. @@ -67,4 +64,13 @@ Refer to the example of the [APPEND TO LIST](append-to-list.md) command. [List item position](list-item-position.md) [Selected list items](selected-list-items.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 378 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-list-properties.md b/docs/commands-legacy/get-list-properties.md index a5b4184b4b42b9..5ae934f8d22b07 100644 --- a/docs/commands-legacy/get-list-properties.md +++ b/docs/commands-legacy/get-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST PROPERTIES** command returns information about the list whose reference number you pass in *list*. @@ -44,4 +41,13 @@ For a complete description of the appearance, node icons, minimal line height an #### See also -[SET LIST PROPERTIES](set-list-properties.md) \ No newline at end of file +[SET LIST PROPERTIES](set-list-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 632 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-macro-parameter.md b/docs/commands-legacy/get-macro-parameter.md index da02bfb3771959..407ed0214a5a69 100644 --- a/docs/commands-legacy/get-macro-parameter.md +++ b/docs/commands-legacy/get-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET MACRO PARAMETER** command returns, in the *paramText* parameter, all or part of the text of the method from which it was called. @@ -36,4 +33,13 @@ Refer to the example of the [SET MACRO PARAMETER](set-macro-parameter.md) comman #### See also -[SET MACRO PARAMETER](set-macro-parameter.md) \ No newline at end of file +[SET MACRO PARAMETER](set-macro-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 997 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-menu-bar-reference.md b/docs/commands-legacy/get-menu-bar-reference.md index e0dfbd8283bb4f..8eb2cb9f1ec011 100644 --- a/docs/commands-legacy/get-menu-bar-reference.md +++ b/docs/commands-legacy/get-menu-bar-reference.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu bar reference** command returns the ID of the current menu bar or the menu bar of a specific process. @@ -41,4 +38,13 @@ Refer to the example of the [GET MENU ITEMS](get-menu-items.md) command. #### See also -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 979 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-menu-item-icon.md b/docs/commands-legacy/get-menu-item-icon.md index 048fe7a87ba98b..1119c863dece50 100644 --- a/docs/commands-legacy/get-menu-item-icon.md +++ b/docs/commands-legacy/get-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The GET MENU ITEM ICON command returns, in the *iconRef* variable, the reference of any icon that is associated with the menu item designated by the *menu* and *menuItem* parameters. This reference is the pathname or number of the picture. @@ -35,4 +32,13 @@ If no icon is associated with the menu item, the command returns a blank value. #### See also -[SET MENU ITEM ICON](set-menu-item-icon.md) \ No newline at end of file +[SET MENU ITEM ICON](set-menu-item-icon.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 983 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-menu-item-key.md b/docs/commands-legacy/get-menu-item-key.md index ca6367bac1dc18..873bddc8b4388e 100644 --- a/docs/commands-legacy/get-menu-item-key.md +++ b/docs/commands-legacy/get-menu-item-key.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item key** command returns the code of the **Ctrl** (Windows) or **Command** (Macintosh) shortcut for the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -50,4 +47,14 @@ To obtain the shortcut associated with a menu item, it is useful to implement a #### See also [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 424 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/get-menu-item-mark.md b/docs/commands-legacy/get-menu-item-mark.md index b3c817cd5bc125..161191c9ea431d 100644 --- a/docs/commands-legacy/get-menu-item-mark.md +++ b/docs/commands-legacy/get-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item mark** command returns the check mark of the menu item whose number or reference is passed in *menu* and whose item number is passed in *menuItem*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -41,4 +38,14 @@ The following example toggles the check mark of a menu item: #### See also -[SET MENU ITEM MARK](set-menu-item-mark.md) \ No newline at end of file +[SET MENU ITEM MARK](set-menu-item-mark.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 428 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/get-menu-item-method.md b/docs/commands-legacy/get-menu-item-method.md index 7916b8d4826ea3..6363d54225a8d2 100644 --- a/docs/commands-legacy/get-menu-item-method.md +++ b/docs/commands-legacy/get-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Get menu item method command returns the name of the 4D project method associated with the menu item designated by the *menu* and *menuItem* parameters. @@ -31,4 +28,13 @@ The command returns the name of the 4D method as a character string (expression) #### See also -[SET MENU ITEM METHOD](set-menu-item-method.md) \ No newline at end of file +[SET MENU ITEM METHOD](set-menu-item-method.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 981 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-menu-item-modifiers.md b/docs/commands-legacy/get-menu-item-modifiers.md index 0b74bf109be2c9..c2cd3127be266e 100644 --- a/docs/commands-legacy/get-menu-item-modifiers.md +++ b/docs/commands-legacy/get-menu-item-modifiers.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item modifiers** command returns any additional modifier(s) associated with the standard shortcut of the menu item designated by the *menu* and *menuItem* parameters. @@ -52,4 +49,13 @@ Refer to the example of the [Get menu item key](get-menu-item-key.md) command. #### See also [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 980 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-menu-item-parameter.md b/docs/commands-legacy/get-menu-item-parameter.md index b97a1579eeac12..efbf214ec06a6d 100644 --- a/docs/commands-legacy/get-menu-item-parameter.md +++ b/docs/commands-legacy/get-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item parameter** command returns the custom character string associated with the menu item designated by the *menu* and *menuItem* parameters. This string must have been set beforehand using the [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) command. @@ -26,4 +23,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get selected menu item parameter](get-selected-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1003 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-menu-item-property.md b/docs/commands-legacy/get-menu-item-property.md index 712e18e553da77..dbe9d757b4e53d 100644 --- a/docs/commands-legacy/get-menu-item-property.md +++ b/docs/commands-legacy/get-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET MENU ITEM PROPERTY** command returns, in the *value* parameter, the current value of the property of the menu item designated by the *menu* and *menuItem* parameters. @@ -34,4 +31,13 @@ In the *property* parameter, pass the property for which you want to get the val #### See also -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 972 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-menu-item-style.md b/docs/commands-legacy/get-menu-item-style.md index 54cba14bb4cddd..7d1605d1365aa9 100644 --- a/docs/commands-legacy/get-menu-item-style.md +++ b/docs/commands-legacy/get-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item style** command returns the font style of the menu item whose number or reference is passed in *menu* and whose item number is passed in *menuItem*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -49,4 +46,14 @@ To test if a menu item is displayed in bold, you write: #### See also -[SET MENU ITEM STYLE](set-menu-item-style.md) \ No newline at end of file +[SET MENU ITEM STYLE](set-menu-item-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 426 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/get-menu-item.md b/docs/commands-legacy/get-menu-item.md index 194796ac347a68..15f66d7e9fb576 100644 --- a/docs/commands-legacy/get-menu-item.md +++ b/docs/commands-legacy/get-menu-item.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item** command returns the text of the menu item whose menu and item numbers are passed in *menu* and *menuItem*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -30,4 +27,14 @@ If you omit the *process* parameter, **Get menu item** applies to the menu bar f #### See also [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM](set-menu-item.md) \ No newline at end of file +[SET MENU ITEM](set-menu-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 422 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/get-menu-items.md b/docs/commands-legacy/get-menu-items.md index 9f352e02f0e37d..59f2234c8fc953 100644 --- a/docs/commands-legacy/get-menu-items.md +++ b/docs/commands-legacy/get-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET MENU ITEMS** command returns, in the *menuTitlesArray* and *menuRefsArray* arrays, the titles and IDs of all the items of the menu or menu bar designated by the *menu* parameter. @@ -36,3 +33,13 @@ You want to find out the contents of the menu bar of the current process:  MenuBarRef:=Get menu bar reference(Frontmost process)  GET MENU ITEMS(MenuBarRef;menuTitlesArray;menuRefsArray) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 977 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-menu-title.md b/docs/commands-legacy/get-menu-title.md index 5e1a93245ded58..bb625e2dc43285 100644 --- a/docs/commands-legacy/get-menu-title.md +++ b/docs/commands-legacy/get-menu-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu title** command returns the title of the menu whose number or reference is passed in *menu.* @@ -28,4 +25,14 @@ If you omit the *process* parameter, **Get menu title** applies to the menu bar #### See also -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 430 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/get-missing-table-names.md b/docs/commands-legacy/get-missing-table-names.md index b81d67786087de..4fb9ae207744af 100644 --- a/docs/commands-legacy/get-missing-table-names.md +++ b/docs/commands-legacy/get-missing-table-names.md @@ -32,4 +32,13 @@ Once you have identified the missing tables of the database, you can reactivate #### See also -[REGENERATE MISSING TABLE](regenerate-missing-table.md) \ No newline at end of file +[REGENERATE MISSING TABLE](regenerate-missing-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1125 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-pasteboard-data-type.md b/docs/commands-legacy/get-pasteboard-data-type.md index 4efa3fa8e1f253..2d28b66c0da9dd 100644 --- a/docs/commands-legacy/get-pasteboard-data-type.md +++ b/docs/commands-legacy/get-pasteboard-data-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PASTEBOARD DATA TYPE** command gets the list of data types present in the pasteboard. This command should generally be used in the context of a drag and drop operation, within the On Drop or On Drag Over form events of the destination object. More particularly, it allows the pasteboard to be checked for the presence of a specific type of data. @@ -35,4 +32,13 @@ For more information about the data types supported, please refer to the *Managi #### See also -*Managing Pasteboards* \ No newline at end of file +*Managing Pasteboards* + +#### Properties + +| | | +| --- | --- | +| Command number | 958 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-pasteboard-data.md b/docs/commands-legacy/get-pasteboard-data.md index a77849aafdbf62..4f4e8df3aef7f1 100644 --- a/docs/commands-legacy/get-pasteboard-data.md +++ b/docs/commands-legacy/get-pasteboard-data.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PASTEBOARD DATA** command returns, in the BLOB field or in the *data* variable, the data present in the pasteboard and whose type you pass in *dataType*. (If the pasteboard contains text copied within 4D, then the BLOB’s character set is likely to be UTF-16.) @@ -55,4 +52,14 @@ If the data is correctly extracted, OK is set to 1; otherwise OK is set to 0 and [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 401 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-picture-file-name.md b/docs/commands-legacy/get-picture-file-name.md index d6d8c72414ab0a..9298caaf569810 100644 --- a/docs/commands-legacy/get-picture-file-name.md +++ b/docs/commands-legacy/get-picture-file-name.md @@ -24,4 +24,13 @@ If the picture does not have a default name, the command returns an empty string #### See also -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1171 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-picture-formats.md b/docs/commands-legacy/get-picture-formats.md index 968e8f40e4c0b7..910172159f2973 100644 --- a/docs/commands-legacy/get-picture-formats.md +++ b/docs/commands-legacy/get-picture-formats.md @@ -45,4 +45,13 @@ You want to know the picture formats stored in a field for the current record: #### See also - \ No newline at end of file + + +#### Properties + +| | | +| --- | --- | +| Command number | 1406 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-picture-from-library.md b/docs/commands-legacy/get-picture-from-library.md index f281e04dc9bcba..777e1e76e6e5ab 100644 --- a/docs/commands-legacy/get-picture-from-library.md +++ b/docs/commands-legacy/get-picture-from-library.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PICTURE FROM LIBRARY** command returns in the *picture* parameter the Picture Library graphic whose reference number is passed in *picRef* or whose name is passed in *picName*. @@ -55,4 +52,14 @@ If there is not enough memory to return the picture, an error -108 is generated. [PICTURE LIBRARY LIST](picture-library-list.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 565 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/get-picture-from-pasteboard.md b/docs/commands-legacy/get-picture-from-pasteboard.md index dd209f9cc1b944..129bde8b5ee749 100644 --- a/docs/commands-legacy/get-picture-from-pasteboard.md +++ b/docs/commands-legacy/get-picture-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description GET PICTURE FROM PASTEBOARD returns the picture present in the pasteboard in the *picture* field or variable. @@ -42,4 +39,14 @@ If the picture is correctly extracted, OK is set to 1; otherwise OK is set to 0. [GET PASTEBOARD DATA](get-pasteboard-data.md) [Get text from pasteboard](get-text-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 522 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-picture-keywords.md b/docs/commands-legacy/get-picture-keywords.md index 7217e3ced9aa97..8ed159cb56177d 100644 --- a/docs/commands-legacy/get-picture-keywords.md +++ b/docs/commands-legacy/get-picture-keywords.md @@ -32,4 +32,13 @@ If the picture does not contain keywords or IPTC/Keywords metadata, the command #### See also [GET PICTURE METADATA](get-picture-metadata.md) -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1142 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-picture-metadata.md b/docs/commands-legacy/get-picture-metadata.md index f71e9eccc932b9..57200a2ed5628a 100644 --- a/docs/commands-legacy/get-picture-metadata.md +++ b/docs/commands-legacy/get-picture-metadata.md @@ -99,4 +99,14 @@ The *OK* system variable returns 1 if the retrieval of the metadata has proceede [GET PICTURE KEYWORDS](get-picture-keywords.md) *Picture Metadata Names* *Picture Metadata Values* -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1122 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-picture-resource.md b/docs/commands-legacy/get-picture-resource.md index 338189e309afad..1809a219886a71 100644 --- a/docs/commands-legacy/get-picture-resource.md +++ b/docs/commands-legacy/get-picture-resource.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PICTURE RESOURCE** command returns in the picture field or variable *resData* the picture stored in the picture (“PICT”) resource whose ID is passed in *resID*. @@ -43,4 +40,14 @@ If there is not enough memory to load the picture, an error is generated. You ca #### See also -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 502 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/get-plugin-access.md b/docs/commands-legacy/get-plugin-access.md index a7e2e1f1eea8c2..efc68e5b32e3ad 100644 --- a/docs/commands-legacy/get-plugin-access.md +++ b/docs/commands-legacy/get-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Get plugin access command returns the name of the user group authorized to use the plug-in whose number was passed in the *plugIn* parameter. If there is no group associated with the plug-in, the command returns an empty string (""). @@ -35,4 +32,13 @@ Pass the number of the plug-in for which you want to find out the associated gro #### See also [SET GROUP ACCESS](set-group-access.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 846 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-pointer.md b/docs/commands-legacy/get-pointer.md index 19fa61db343a4e..00daf0849fb04d 100644 --- a/docs/commands-legacy/get-pointer.md +++ b/docs/commands-legacy/get-pointer.md @@ -49,4 +49,13 @@ Using pointers to elements of two-dimensional arrays: #### See also [Field](field.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 304 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-print-marker.md b/docs/commands-legacy/get-print-marker.md index b08faaf9b316df..5bb93fba7844b4 100644 --- a/docs/commands-legacy/get-print-marker.md +++ b/docs/commands-legacy/get-print-marker.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get print marker** command enables you to get the current position of a marker during printing. @@ -63,4 +60,13 @@ Refer to the example of the [SET PRINT MARKER](set-print-marker.md) command. #### See also [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 708 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-print-option.md b/docs/commands-legacy/get-print-option.md index 3f9050eeafead1..dbb3cf71d50aee 100644 --- a/docs/commands-legacy/get-print-option.md +++ b/docs/commands-legacy/get-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PRINT OPTION** command returns the current value(s) of a print option. @@ -51,4 +48,14 @@ The system variable OK is set to 1 if the command has been executed correctly; o #### See also [PRINT OPTION VALUES](print-option-values.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 734 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-print-preview.md b/docs/commands-legacy/get-print-preview.md index e6e91892421a6f..9656f39ca481f2 100644 --- a/docs/commands-legacy/get-print-preview.md +++ b/docs/commands-legacy/get-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get print preview** command returns True if the [SET PRINT PREVIEW](set-print-preview.md) command was called with the **True** value in the current process. @@ -25,4 +22,13 @@ Note that the user can modify this option before validating the dialog box. To g #### See also [Is in print preview](is-in-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1197 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-printable-area.md b/docs/commands-legacy/get-printable-area.md index 829182e0773231..dbd7cdafe47860 100644 --- a/docs/commands-legacy/get-printable-area.md +++ b/docs/commands-legacy/get-printable-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PRINTABLE AREA** command returns the size, in pixels, of the *height* and *width* parameters of the printable area. This size depends on the current printing parameters, the paper orientation, etc. @@ -40,4 +37,13 @@ To know the total size of the page, you can: #### See also [GET PRINTABLE MARGIN](get-printable-margin.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 703 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-printable-margin.md b/docs/commands-legacy/get-printable-margin.md index 7b001b8c96c863..7a052c9e7ee940 100644 --- a/docs/commands-legacy/get-printable-margin.md +++ b/docs/commands-legacy/get-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The GET PRINTABLE MARGIN command returns the current values of the different margins defined using the [Print form](../commands/print-form.md), [PRINT SELECTION](print-selection.md) and [PRINT RECORD](print-record.md) commands. @@ -47,4 +44,13 @@ It is possible to base the form printing carried out using the [Print form](../c [GET PRINTABLE AREA](get-printable-area.md) [Print form](../commands/print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 711 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-printed-height.md b/docs/commands-legacy/get-printed-height.md index d11f2fb8d8e19f..a6ece559e4f310 100644 --- a/docs/commands-legacy/get-printed-height.md +++ b/docs/commands-legacy/get-printed-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get printed height** command returns the overall height (in pixels) of the section printed using the [Print form](../commands/print-form.md) command. @@ -32,4 +29,13 @@ The right and left printable margins, unlike the top and bottom margins (which m [GET PRINTABLE AREA](get-printable-area.md) [Print form](../commands/print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 702 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-process-variable.md b/docs/commands-legacy/get-process-variable.md index edca890cdc9907..863302241c69ed 100644 --- a/docs/commands-legacy/get-process-variable.md +++ b/docs/commands-legacy/get-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PROCESS VARIABLE** command reads the *srcVar* process variables (*srvVar2*, etc.) from the source process whose number is passed in *process*, and returns their current values in the *dstVar* variables ( *dstVar2*, etc.) of the current process. @@ -118,4 +115,13 @@ See the example for the *\_o\_DRAG AND DROP PROPERTIES* command. [POST OUTSIDE CALL](post-outside-call.md) *Processes* [SET PROCESS VARIABLE](set-process-variable.md) -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 371 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-query-destination.md b/docs/commands-legacy/get-query-destination.md index 89fb6c2ed36d44..086578f7ea67af 100644 --- a/docs/commands-legacy/get-query-destination.md +++ b/docs/commands-legacy/get-query-destination.md @@ -55,4 +55,13 @@ We want to modify the query destination temporarily and then restore the previou #### See also -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1155 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-query-limit.md b/docs/commands-legacy/get-query-limit.md index 3352d61b4b3cac..d949787041d050 100644 --- a/docs/commands-legacy/get-query-limit.md +++ b/docs/commands-legacy/get-query-limit.md @@ -23,4 +23,13 @@ By default, if no limit is set, the command returns 0. #### See also -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1156 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-registered-clients.md b/docs/commands-legacy/get-registered-clients.md index 8ed86387083225..e26ae6a10eb7b9 100644 --- a/docs/commands-legacy/get-registered-clients.md +++ b/docs/commands-legacy/get-registered-clients.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET REGISTERED CLIENTS** command fills two arrays: @@ -46,4 +43,14 @@ If the operation was successful, the OK system variable is equal to 1. [EXECUTE ON CLIENT](execute-on-client.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 650 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-relation-properties.md b/docs/commands-legacy/get-relation-properties.md index db73e0d3cdfdf7..3a8f7e21a205c9 100644 --- a/docs/commands-legacy/get-relation-properties.md +++ b/docs/commands-legacy/get-relation-properties.md @@ -42,4 +42,13 @@ Once the command has been executed: [GET FIELD PROPERTIES](get-field-properties.md) [GET TABLE PROPERTIES](get-table-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 686 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-resource-name.md b/docs/commands-legacy/get-resource-name.md index 9af5ef8e6d1839..1208d26e79b0e0 100644 --- a/docs/commands-legacy/get-resource-name.md +++ b/docs/commands-legacy/get-resource-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get resource name** command returns the name of the resource whose type is passed in *resType* and whose ID number is passed in *resID*. @@ -26,3 +23,13 @@ displayed_sidebar: docs If you pass a valid resource file reference number in the parameter *resFile*, the resource is searched for within that file only. If you do not pass the parameter *resFile*, the resource is searched for within the current open resource files. If the resource does not exist, **Get resource name** returns an empty string. + + +#### Properties + +| | | +| --- | --- | +| Command number | 513 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-resource-properties.md b/docs/commands-legacy/get-resource-properties.md index f21b319778ada5..90e66381e88dad 100644 --- a/docs/commands-legacy/get-resource-properties.md +++ b/docs/commands-legacy/get-resource-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get resource properties** command returns the attributes of the resource whose type is passed in *resType* and whose ID number is passed in *resID*. @@ -36,3 +33,14 @@ See example for the [Get resource name](get-resource-name.md) command. #### System variables and sets The OK variable is set to 0 if the resource does not exist; otherwise, it is set to 1. + + +#### Properties + +| | | +| --- | --- | +| Command number | 515 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-resource.md b/docs/commands-legacy/get-resource.md index c686cbb1b25a7f..a161c21a39ec9e 100644 --- a/docs/commands-legacy/get-resource.md +++ b/docs/commands-legacy/get-resource.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET RESOURCE** command returns in the BLOB field or variable *resData* the contents of the resource whose type and ID is passed in *resType* and *resID*. @@ -50,4 +47,14 @@ If there is not enough memory to load the resource, an error is generated. You c #### See also -*Resources* \ No newline at end of file +*Resources* + +#### Properties + +| | | +| --- | --- | +| Command number | 508 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/get-selected-menu-item-parameter.md b/docs/commands-legacy/get-selected-menu-item-parameter.md index 2a024d7e0b5dcf..3cec5f1218fbf7 100644 --- a/docs/commands-legacy/get-selected-menu-item-parameter.md +++ b/docs/commands-legacy/get-selected-menu-item-parameter.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get selected menu item parameter** command returns the custom character string associated with the selected menu item. This parameter must have been set beforehand using the [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) command. @@ -26,4 +23,13 @@ If no menu item has been selected, the command returns an empty string "". [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1005 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-serial-port-mapping.md b/docs/commands-legacy/get-serial-port-mapping.md index 29732549899de8..02682d20909dc5 100644 --- a/docs/commands-legacy/get-serial-port-mapping.md +++ b/docs/commands-legacy/get-serial-port-mapping.md @@ -48,4 +48,13 @@ This project method can be used to address the same serial port (without protoco #### See also -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 909 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-string-resource.md b/docs/commands-legacy/get-string-resource.md index fc9ec1e1d23608..51a9f5557789db 100644 --- a/docs/commands-legacy/get-string-resource.md +++ b/docs/commands-legacy/get-string-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get string resource** command returns the string stored in the string (“STR ”) resource whose ID is passed in *resID*. @@ -44,4 +41,14 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero). [Get indexed string](get-indexed-string.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 506 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-style-sheet-info.md b/docs/commands-legacy/get-style-sheet-info.md index 9820121d22528f..ac6b3dba5f2eac 100644 --- a/docs/commands-legacy/get-style-sheet-info.md +++ b/docs/commands-legacy/get-style-sheet-info.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET STYLE SHEET INFO** command returns the current configuration of the style sheet designated in the *styleSheetName* parameter. @@ -66,4 +63,14 @@ You want to find out the current configuration of the "Automatic" style sheet: #### See also [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1256 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-subrecord-key.md b/docs/commands-legacy/get-subrecord-key.md index bc2a5c7b26b37d..9b12947f8c4372 100644 --- a/docs/commands-legacy/get-subrecord-key.md +++ b/docs/commands-legacy/get-subrecord-key.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The Get subrecord key command facilitates the migration of 4D code using converted subtables to standard code for working with tables. - -**Reminder:** Beginning with version 11 of 4D, subtables are not supported. When a older database is converted, any existing subtables are transformed into standard tables that are linked with the original tables by an automatic relation. The former subtable becomes the Many table and the original table is the One table. In the One table, the former subtable field is transformed into a special field of the "Subtable Relation" type and in the Many field, a special "Subtable Relation" type field is added named “id\_added\_by\_converter”. +The Get subrecord key command facilitates the migration of 4D code using converted subtables to standard code for working with tables.Beginning with version 11 of 4D, subtables are not supported. When a older database is converted, any existing subtables are transformed into standard tables that are linked with the original tables by an automatic relation. The former subtable becomes the Many table and the original table is the One table. In the One table, the former subtable field is transformed into a special field of the "Subtable Relation" type and in the Many field, a special "Subtable Relation" type field is added named “id\_added\_by\_converter”. This allows converted databases to function but we strongly recommend that you replace any subtable mechanisms in your converted databases by those used for standard tables. @@ -80,3 +78,13 @@ For example, with the structure above you can write: ``` This code will work with either a special relation or a standard one. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1137 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-system-format.md b/docs/commands-legacy/get-system-format.md index 7323d69dc668bd..2cd473d7f70ed3 100644 --- a/docs/commands-legacy/get-system-format.md +++ b/docs/commands-legacy/get-system-format.md @@ -41,4 +41,13 @@ In the *format* parameter, pass the type of parameter whose value you want to kn #### See also -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 994 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-table-properties.md b/docs/commands-legacy/get-table-properties.md index 2b7cdcc84244bb..b6bd5d74897e04 100644 --- a/docs/commands-legacy/get-table-properties.md +++ b/docs/commands-legacy/get-table-properties.md @@ -33,4 +33,13 @@ Once the command has been executed: [GET FIELD ENTRY PROPERTIES](get-field-entry-properties.md) [GET FIELD PROPERTIES](get-field-properties.md) -[GET RELATION PROPERTIES](get-relation-properties.md) \ No newline at end of file +[GET RELATION PROPERTIES](get-relation-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 687 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-table-titles.md b/docs/commands-legacy/get-table-titles.md index ac1b09b5f719f0..882af654fb5d40 100644 --- a/docs/commands-legacy/get-table-titles.md +++ b/docs/commands-legacy/get-table-titles.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET TABLE TITLES** command fills the *tableTitles* and *tableNums* arrays with the names and numbers of database tables defined in the Structure window or using the [SET TABLE TITLES](set-table-titles.md) command. The contents of these two arrays are synchronized. @@ -30,4 +27,13 @@ In both cases, the command does not return invisible tables. #### See also [GET FIELD TITLES](get-field-titles.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 803 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-text-from-pasteboard.md b/docs/commands-legacy/get-text-from-pasteboard.md index 002c699ab1e847..2aaba57b104c04 100644 --- a/docs/commands-legacy/get-text-from-pasteboard.md +++ b/docs/commands-legacy/get-text-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Get text from pasteboard** returns the text present in the pasteboard. @@ -34,4 +31,14 @@ If the text is correctly extracted, OK is set to 1; otherwise OK is set to 0. [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 524 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-text-keywords.md b/docs/commands-legacy/get-text-keywords.md index 5cdf3a05e1ba87..cbcdfd0d54e6ff 100644 --- a/docs/commands-legacy/get-text-keywords.md +++ b/docs/commands-legacy/get-text-keywords.md @@ -82,4 +82,13 @@ To count words in a text: #### See also -[DISTINCT VALUES](distinct-values.md) \ No newline at end of file +[DISTINCT VALUES](distinct-values.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1141 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/get-text-resource.md b/docs/commands-legacy/get-text-resource.md index c08f080d94201a..ee85058d99b776 100644 --- a/docs/commands-legacy/get-text-resource.md +++ b/docs/commands-legacy/get-text-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get text resource** command returns the text stored in the text (“TEXT”) resource whose ID is passed in *resID*. @@ -44,4 +41,14 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero). [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 504 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/get-user-list.md b/docs/commands-legacy/get-user-list.md index 90c5a9b951b08b..7da1369f8fd57f 100644 --- a/docs/commands-legacy/get-user-list.md +++ b/docs/commands-legacy/get-user-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description GET USER LIST populates the arrays *userNames* and *userNumbers* with the names and unique ID numbers of the users as they appear in the Passwords window. @@ -37,4 +34,14 @@ If you do not have the proper access privileges for calling GET USER LIST or if [GET GROUP LIST](get-group-list.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 609 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/get-user-properties.md b/docs/commands-legacy/get-user-properties.md index 3bdecdab082949..b2e68edae23230 100644 --- a/docs/commands-legacy/get-user-properties.md +++ b/docs/commands-legacy/get-user-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **GET USER PROPERTIES** returns the information about the user whose unique user ID number you pass in *userID*. You must pass a valid user ID number returned by the [GET USER LIST](get-user-list.md) command. @@ -54,4 +51,14 @@ If you do not have the proper access privileges for calling GET USER PROPERTIES [GET USER LIST](get-user-list.md) [Is user deleted](is-user-deleted.md) [Set user properties](set-user-properties.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 611 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/get-window-rect.md b/docs/commands-legacy/get-window-rect.md index e419f99fcb4226..22141dd59f24f0 100644 --- a/docs/commands-legacy/get-window-rect.md +++ b/docs/commands-legacy/get-window-rect.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET WINDOW RECT** command returns the coordinates of the window whose reference number is passed in *window*. If the window does not exist, the variable parameters are left unchanged. @@ -37,4 +34,13 @@ See example for the [WINDOW LIST](window-list.md) command. #### See also [CONVERT COORDINATES](convert-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 443 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/get-window-title.md b/docs/commands-legacy/get-window-title.md index b08b4ca3a6c5c9..6b5e3f97b60f66 100644 --- a/docs/commands-legacy/get-window-title.md +++ b/docs/commands-legacy/get-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get window title** command returns the title of the window whose reference number is passed in *window*. If the window does not exist, an empty string is returned. @@ -29,4 +26,13 @@ See example for the [SET WINDOW TITLE](set-window-title.md) command. #### See also -[SET WINDOW TITLE](set-window-title.md) \ No newline at end of file +[SET WINDOW TITLE](set-window-title.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 450 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/goto-object.md b/docs/commands-legacy/goto-object.md index f9f10401c3d3c7..93f344e805d918 100644 --- a/docs/commands-legacy/goto-object.md +++ b/docs/commands-legacy/goto-object.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GOTO OBJECT** command is used to select the data entry object *object* as the active area of the form. It is equivalent to the user’s clicking on or tabbing into the field or variable. @@ -51,4 +48,13 @@ See the example for the [REJECT](reject.md) command. #### See also [CALL SUBFORM CONTAINER](call-subform-container.md) -[REJECT](reject.md) \ No newline at end of file +[REJECT](reject.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 206 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/goto-record.md b/docs/commands-legacy/goto-record.md index 40b069da9aa195..c2d38187b1cd99 100644 --- a/docs/commands-legacy/goto-record.md +++ b/docs/commands-legacy/goto-record.md @@ -27,4 +27,15 @@ See the example for [Record number](record-number.md). #### See also *About Record Numbers* -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 242 | +| Thread safe | ✓ | +| Modifies variables | error | +| Changes current selection || + + diff --git a/docs/commands-legacy/goto-selected-record.md b/docs/commands-legacy/goto-selected-record.md index a029fb341f5812..b8fc11dcbe2ba1 100644 --- a/docs/commands-legacy/goto-selected-record.md +++ b/docs/commands-legacy/goto-selected-record.md @@ -60,4 +60,14 @@ The following object method for *atNames* selects the correct record in the \[Pe #### See also -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 245 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/docs/commands-legacy/goto-xy.md b/docs/commands-legacy/goto-xy.md index b59b9c690f6d31..cd35ee026f42f4 100644 --- a/docs/commands-legacy/goto-xy.md +++ b/docs/commands-legacy/goto-xy.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GOTO XY** command is used in conjunction with the [MESSAGE](message.md) command when you display messages in a window opened using [Open window](open-window.md). @@ -60,4 +57,13 @@ displays the following window (on Macintosh) for 30 seconds: #### See also -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 161 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/graph-settings.md b/docs/commands-legacy/graph-settings.md index 599d8a024563b9..4802c2c101baef 100644 --- a/docs/commands-legacy/graph-settings.md +++ b/docs/commands-legacy/graph-settings.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description GRAPH SETTINGS changes the graph settings for graph displayed in a form. The graph must have already been defined using the [GRAPH](graph.md) command. GRAPH SETTINGS has no effect on a pie chart. This command must be called in the same process as the form. @@ -44,4 +41,13 @@ See example for the [GRAPH](graph.md) command. #### See also -[GRAPH](graph.md) \ No newline at end of file +[GRAPH](graph.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 298 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/graph.md b/docs/commands-legacy/graph.md index 6694b475e22551..607378da7c8b8d 100644 --- a/docs/commands-legacy/graph.md +++ b/docs/commands-legacy/graph.md @@ -276,4 +276,13 @@ In this example, we customize a few settings: *Graph Parameters* [GRAPH SETTINGS](graph-settings.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 169 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/hide-menu-bar.md b/docs/commands-legacy/hide-menu-bar.md index 5106ea7809a0fe..6dfdbfdf5fb789 100644 --- a/docs/commands-legacy/hide-menu-bar.md +++ b/docs/commands-legacy/hide-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The HIDE MENU BAR command makes the menu bar invisible. @@ -45,4 +42,14 @@ The following method displays a record in full-screen display (Macintosh) until [HIDE TOOL BAR](hide-tool-bar.md) [SHOW MENU BAR](show-menu-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 432 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/hide-process.md b/docs/commands-legacy/hide-process.md index ec95bca9aa1ed9..aa37fe7890d382 100644 --- a/docs/commands-legacy/hide-process.md +++ b/docs/commands-legacy/hide-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **HIDE PROCESS** hides all windows that belong to *process*. All interface elements of *process* are hidden until the next [SHOW PROCESS](show-process.md). The menu bar of the process is also hidden. This means that opening a window while the process is hidden does not make the screen redraw or display. If the process is already hidden, the command has no effect. @@ -37,4 +34,13 @@ The following example hides all the windows belonging to the current process: #### See also [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 324 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/hide-tool-bar.md b/docs/commands-legacy/hide-tool-bar.md index 619f66128554e0..d555ae30162ef2 100644 --- a/docs/commands-legacy/hide-tool-bar.md +++ b/docs/commands-legacy/hide-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **HIDE TOOL BAR** command handles the display of custom toolbars created by the [Open form window](open-form-window.md) command for the current process. @@ -41,4 +38,13 @@ To prevent this, in the On Resize form event of the standard window, you need to #### See also -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 434 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/hide-window.md b/docs/commands-legacy/hide-window.md index 037d0ec6676a0a..2ba16928bc58a1 100644 --- a/docs/commands-legacy/hide-window.md +++ b/docs/commands-legacy/hide-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **HIDE WINDOW** command hides the window whose number was passed in *window* or, if this parameter is omitted, the current process frontmost window. For example, this command lets you display only the active window in a process that consists of several processes. @@ -47,4 +44,13 @@ This example corresponds to a method of a button located in an input form. This #### See also -[SHOW WINDOW](show-window.md) \ No newline at end of file +[SHOW WINDOW](show-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 436 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/highlight-records.md b/docs/commands-legacy/highlight-records.md index d62115f840d6cf..74113a6504cdee 100644 --- a/docs/commands-legacy/highlight-records.md +++ b/docs/commands-legacy/highlight-records.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **HIGHLIGHT RECORDS** command highlights records in a list form. This operation is identical to manually selecting records in list mode by using the mouse or the **Shift+Click** or **Ctrl+Click** (Windows) or **Command+Click** (Mac OS) key combinations. The current selection is not modified. @@ -49,4 +46,13 @@ When the user clicks the button, the standard query dialog box appears. Once the #### See also [GET HIGHLIGHTED RECORDS](get-highlighted-records.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 656 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/highlight-text.md b/docs/commands-legacy/highlight-text.md index efc7c0c42138fb..da6383069df1c1 100644 --- a/docs/commands-legacy/highlight-text.md +++ b/docs/commands-legacy/highlight-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The HIGHLIGHT TEXT command highlights a section of the text in *object*. @@ -64,4 +61,13 @@ See example for the [FILTER KEYSTROKE](filter-keystroke.md) command. #### See also -[GET HIGHLIGHT](get-highlight.md) \ No newline at end of file +[GET HIGHLIGHT](get-highlight.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 210 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/http-authenticate.md b/docs/commands-legacy/http-authenticate.md index 325c5056d33262..2313023bc74cea 100644 --- a/docs/commands-legacy/http-authenticate.md +++ b/docs/commands-legacy/http-authenticate.md @@ -56,4 +56,13 @@ Examples of requests with authentication: #### See also -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1161 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/http-get-certificates-folder.md b/docs/commands-legacy/http-get-certificates-folder.md index ddcd6d1b1c738f..824cae5ea00921 100644 --- a/docs/commands-legacy/http-get-certificates-folder.md +++ b/docs/commands-legacy/http-get-certificates-folder.md @@ -39,4 +39,13 @@ You want to change certificates folder temporarily: #### See also -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1307 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/http-get-option.md b/docs/commands-legacy/http-get-option.md index 0ab9cbce7bcff7..89344b17407db8 100644 --- a/docs/commands-legacy/http-get-option.md +++ b/docs/commands-legacy/http-get-option.md @@ -42,4 +42,13 @@ In the *value* parameter, pass a variable to receive the current value of the *o #### See also -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1159 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/http-get.md b/docs/commands-legacy/http-get.md index 1db17f74cceef1..ff00da6845941f 100644 --- a/docs/commands-legacy/http-get.md +++ b/docs/commands-legacy/http-get.md @@ -103,4 +103,14 @@ Retrieval of a video: #### See also -[HTTP Request](http-request.md) \ No newline at end of file +[HTTP Request](http-request.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1157 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/http-parse-message.md b/docs/commands-legacy/http-parse-message.md index 5ae6fe9730fe73..9d183c4fc8eb2a 100644 --- a/docs/commands-legacy/http-parse-message.md +++ b/docs/commands-legacy/http-parse-message.md @@ -14,9 +14,16 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The documentation for this command is available on [developer.4d.com.](https://developer.4d.com/docs/API/HTTPRequestClass#http-parse-messege) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1824 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/http-request.md b/docs/commands-legacy/http-request.md index 5f9fe5b6f7790f..cdea806ce571cc 100644 --- a/docs/commands-legacy/http-request.md +++ b/docs/commands-legacy/http-request.md @@ -125,4 +125,13 @@ Request to add a record in JSON to a remote database:: #### See also -[HTTP Get](http-get.md) \ No newline at end of file +[HTTP Get](http-get.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1158 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/http-set-certificates-folder.md b/docs/commands-legacy/http-set-certificates-folder.md index 0374ada8a7e1ea..95d8fd5ac2786d 100644 --- a/docs/commands-legacy/http-set-certificates-folder.md +++ b/docs/commands-legacy/http-set-certificates-folder.md @@ -55,4 +55,13 @@ You want to change certificates folder temporarily: #### See also [GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) -[HTTP Get certificates folder](http-get-certificates-folder.md) \ No newline at end of file +[HTTP Get certificates folder](http-get-certificates-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1306 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/http-set-option.md b/docs/commands-legacy/http-set-option.md index 5f5ee3c5006a7d..4d06b38a4d1057 100644 --- a/docs/commands-legacy/http-set-option.md +++ b/docs/commands-legacy/http-set-option.md @@ -43,4 +43,13 @@ You can call options in any order. If the same option is set more than once, onl #### See also [HTTP AUTHENTICATE](http-authenticate.md) -[HTTP GET OPTION](http-get-option.md) \ No newline at end of file +[HTTP GET OPTION](http-get-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1160 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/idle.md b/docs/commands-legacy/idle.md index 0137d49c1d55b1..0026df6c268e5f 100644 --- a/docs/commands-legacy/idle.md +++ b/docs/commands-legacy/idle.md @@ -50,4 +50,13 @@ with: #### See also *Compiler Commands* -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 311 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/import-data.md b/docs/commands-legacy/import-data.md index e7bc0025f489ec..99302e4f514e27 100644 --- a/docs/commands-legacy/import-data.md +++ b/docs/commands-legacy/import-data.md @@ -46,4 +46,14 @@ If the user clicks **Cancel** in the standard save file dialog box or in the imp [EXPORT DATA](export-data.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[IMPORT TEXT](import-text.md) \ No newline at end of file +[IMPORT TEXT](import-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 665 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/import-dif.md b/docs/commands-legacy/import-dif.md index 3114b9a26d8ec3..dbad6234cd63e8 100644 --- a/docs/commands-legacy/import-dif.md +++ b/docs/commands-legacy/import-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **IMPORT DIF** command reads data from *document*, a Windows or Macintosh DIF document, into the table *aTable* by creating new records for that table. @@ -53,4 +50,14 @@ OK is set to 1 if the import is successfully completed; otherwise, it is set to [EXPORT DIF](export-dif.md) [IMPORT SYLK](import-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 86 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/import-structure.md b/docs/commands-legacy/import-structure.md index 8bfb41d6fc3741..efb99ac7ea2096 100644 --- a/docs/commands-legacy/import-structure.md +++ b/docs/commands-legacy/import-structure.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **IMPORT STRUCTURE** command imports, into the current database, the XML definition of the 4D database structure passed in the *xmlStructure* parameter. @@ -49,4 +46,13 @@ You want to import a saved structure definition into the current database: #### See also -[EXPORT STRUCTURE](export-structure.md) \ No newline at end of file +[EXPORT STRUCTURE](export-structure.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1310 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/import-sylk.md b/docs/commands-legacy/import-sylk.md index 29b8e4d97dfb5c..2e180765ba7806 100644 --- a/docs/commands-legacy/import-sylk.md +++ b/docs/commands-legacy/import-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **IMPORT SYLK** command reads data from *document*, a Windows or Macintosh SYLK document, into the table *aTable* by creating new records for that table. @@ -53,4 +50,14 @@ OK is set to 1 if the import is successfully complete; otherwise, it is set to 0 [EXPORT SYLK](export-sylk.md) [IMPORT DIF](import-dif.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 87 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/import-text.md b/docs/commands-legacy/import-text.md index 6f23ea6d2e36d4..a5e459bf11f5c7 100644 --- a/docs/commands-legacy/import-text.md +++ b/docs/commands-legacy/import-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **IMPORT TEXT** command reads data from *document*, a Windows or Macintosh text document, into the table *aTable* by creating new records for that table. @@ -55,4 +52,14 @@ OK is set to 1 if the import is successfully completed; otherwise, it is set to [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 168 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/in-break.md b/docs/commands-legacy/in-break.md index 78c239ba3af84e..c756b395524ea3 100644 --- a/docs/commands-legacy/in-break.md +++ b/docs/commands-legacy/in-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **In break** returns True for the In break execution cycle. @@ -27,4 +24,13 @@ In order for the **In break** execution cycle to be generated, make sure that th #### See also [In footer](in-footer.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 113 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/in-footer.md b/docs/commands-legacy/in-footer.md index 84a401c0b0f138..1b3e03a0ba193b 100644 --- a/docs/commands-legacy/in-footer.md +++ b/docs/commands-legacy/in-footer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **In footer** returns True for the In footer execution cycle. @@ -27,4 +24,13 @@ In order for the **In footer** execution cycle to be generated, make sure that #### See also [In break](in-break.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 191 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/in-header.md b/docs/commands-legacy/in-header.md index 3e97756d4cd22e..2974a9c1516e8f 100644 --- a/docs/commands-legacy/in-header.md +++ b/docs/commands-legacy/in-header.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **In header** returns True for the In header execution cycle. @@ -27,4 +24,13 @@ In order for the **In header** execution cycle to be generated, make sure that t #### See also [In break](in-break.md) -[In footer](in-footer.md) \ No newline at end of file +[In footer](in-footer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 112 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/in-transaction.md b/docs/commands-legacy/in-transaction.md index 39f8ccbfcfe10e..bc79f67f538fae 100644 --- a/docs/commands-legacy/in-transaction.md +++ b/docs/commands-legacy/in-transaction.md @@ -29,4 +29,13 @@ If you perform the operation from within a trigger or from a subroutine (that ca [CANCEL TRANSACTION](cancel-transaction.md) [START TRANSACTION](start-transaction.md) *Triggers* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 397 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/insert-in-array.md b/docs/commands-legacy/insert-in-array.md index ef69bfc0edfeb6..acfdd273bc2b22 100644 --- a/docs/commands-legacy/insert-in-array.md +++ b/docs/commands-legacy/insert-in-array.md @@ -44,4 +44,13 @@ The following example appends an element to an array: #### See also [DELETE FROM ARRAY](delete-from-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 227 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/insert-in-blob.md b/docs/commands-legacy/insert-in-blob.md index dd3fcbae031970..af41e9b1c6df49 100644 --- a/docs/commands-legacy/insert-in-blob.md +++ b/docs/commands-legacy/insert-in-blob.md @@ -30,4 +30,13 @@ Before the call, you pass in the *offset* parameter the position of the insertio #### See also -[DELETE FROM BLOB](delete-from-blob.md) \ No newline at end of file +[DELETE FROM BLOB](delete-from-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 559 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/insert-in-list.md b/docs/commands-legacy/insert-in-list.md index f780cf2e5af349..9f6dc7061a240b 100644 --- a/docs/commands-legacy/insert-in-list.md +++ b/docs/commands-legacy/insert-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The INSERT IN LIST command inserts the item designated by the *itemRef* parameter in the list whose reference number or object name you pass in *list*. @@ -52,4 +49,13 @@ The following code inserts an item (with no attached sublist) just before the cu #### See also [APPEND TO LIST](append-to-list.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 625 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/insert-menu-item.md b/docs/commands-legacy/insert-menu-item.md index 9715dc8fe91715..b6a51072d686ac 100644 --- a/docs/commands-legacy/insert-menu-item.md +++ b/docs/commands-legacy/insert-menu-item.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **INSERT MENU ITEM** command inserts new menu items into the menu whose number or reference is passed in *menu* after the existing menu item whose number is passed in *afterItem*. @@ -56,4 +53,14 @@ The following example creates a menu consisting of two commands to which it assi #### See also [APPEND MENU ITEM](append-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 412 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/insert-string.md b/docs/commands-legacy/insert-string.md index f842f8c66aba94..e3f4780d0497a2 100644 --- a/docs/commands-legacy/insert-string.md +++ b/docs/commands-legacy/insert-string.md @@ -18,7 +18,7 @@ displayed_sidebar: docs #### Description -**Insert string** inserts a string into *source* and returns the resulting string. **Insert string** inserts the string *what* before the character at position *where*. +**Insert string** inserts a string into *source* and returns the resulting string.inserts the string *what* before the character at position *where*. If *what* is an empty string (""), **Insert string** returns *source* unchanged. @@ -40,4 +40,13 @@ The following example illustrates the use of **Insert string**. The results are [Change string](change-string.md) [Delete string](delete-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 231 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/int.md b/docs/commands-legacy/int.md index afe8456fda174d..b820f7a25a1235 100644 --- a/docs/commands-legacy/int.md +++ b/docs/commands-legacy/int.md @@ -29,4 +29,13 @@ The following example illustrates how Int works for both positive and negative n #### See also -[Dec](dec.md) \ No newline at end of file +[Dec](dec.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 8 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/integer-to-blob.md b/docs/commands-legacy/integer-to-blob.md index c5213660385a75..a049aa8c650b9a 100644 --- a/docs/commands-legacy/integer-to-blob.md +++ b/docs/commands-legacy/integer-to-blob.md @@ -113,4 +113,13 @@ After executing this code: [BLOB to text](blob-to-text.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 548 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/integrate-mirror-log-file.md b/docs/commands-legacy/integrate-mirror-log-file.md index da3e69b237294a..d97efa493a0e48 100644 --- a/docs/commands-legacy/integrate-mirror-log-file.md +++ b/docs/commands-legacy/integrate-mirror-log-file.md @@ -98,4 +98,14 @@ If the integration is carried out correctly, the system variable OK is set to 1; #### See also -[LOG FILE TO JSON](log-file-to-json.md) \ No newline at end of file +[LOG FILE TO JSON](log-file-to-json.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1312 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/intersection.md b/docs/commands-legacy/intersection.md index 6b61773a1ff135..9f5e078fd4b53d 100644 --- a/docs/commands-legacy/intersection.md +++ b/docs/commands-legacy/intersection.md @@ -48,4 +48,13 @@ The following example finds the customers who are served by two sales representa #### See also [DIFFERENCE](difference.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 121 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/invoke-action.md b/docs/commands-legacy/invoke-action.md index d333fdf9860d5a..015f7c8c57628a 100644 --- a/docs/commands-legacy/invoke-action.md +++ b/docs/commands-legacy/invoke-action.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **INVOKE ACTION** command triggers the standard action defined by the *action* parameter, optionally in the *target* context. @@ -65,4 +62,13 @@ You want to execute a **Goto page** standard action (page 3) in the main form: #### See also -[Action info](action-info.md) \ No newline at end of file +[Action info](action-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1439 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/is-a-list.md b/docs/commands-legacy/is-a-list.md index 4d7472592ef19d..ea712b400b5e82 100644 --- a/docs/commands-legacy/is-a-list.md +++ b/docs/commands-legacy/is-a-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Is a list command returns TRUE if the value you pass in *list* is a valid reference to a hierarchical list. Otherwise, it returns FALSE. @@ -25,3 +22,13 @@ displayed_sidebar: docs See example for the [CLEAR LIST](clear-list.md) command. + + +#### Properties + +| | | +| --- | --- | +| Command number | 621 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/is-a-variable.md b/docs/commands-legacy/is-a-variable.md index fe31445d5e74a4..aea0ad8fd91c54 100644 --- a/docs/commands-legacy/is-a-variable.md +++ b/docs/commands-legacy/is-a-variable.md @@ -23,4 +23,13 @@ When you want to know the name of the variable being pointed to or the field num #### See also [Is nil pointer](is-nil-pointer.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 294 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-compiled-mode.md b/docs/commands-legacy/is-compiled-mode.md index cd519fa39a23e9..b5abbba5f994b2 100644 --- a/docs/commands-legacy/is-compiled-mode.md +++ b/docs/commands-legacy/is-compiled-mode.md @@ -40,4 +40,13 @@ In one of your routines, you include debugging code useful only when you are run #### See also [IDLE](idle.md) -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 492 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-data-file-locked.md b/docs/commands-legacy/is-data-file-locked.md index a53b2ebb6b7702..c891f50c8481c0 100644 --- a/docs/commands-legacy/is-data-file-locked.md +++ b/docs/commands-legacy/is-data-file-locked.md @@ -29,3 +29,13 @@ This method will prevent the opening of the database if the data file is locked:     QUIT 4D  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 716 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-editing-text.md b/docs/commands-legacy/is-editing-text.md index 31435ea841d3a5..25ca0ebc404d46 100644 --- a/docs/commands-legacy/is-editing-text.md +++ b/docs/commands-legacy/is-editing-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Is editing text** command returns **True** if the user is entering values in an input form object, and **False** in all other cases. @@ -60,4 +57,13 @@ You want to allow the user to select a row beginning with the typed letter or nu [FILTER KEYSTROKE](filter-keystroke.md) [Get edited text](get-edited-text.md) -[Type ahead made easy (blog post)](https://blog.4d.com/type-ahead-made-easy/) \ No newline at end of file +[Type ahead made easy (blog post)](https://blog.4d.com/type-ahead-made-easy/) + +#### Properties + +| | | +| --- | --- | +| Command number | 1744 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/is-field-number-valid.md b/docs/commands-legacy/is-field-number-valid.md index df7c3500ee872b..6827ed9a563178 100644 --- a/docs/commands-legacy/is-field-number-valid.md +++ b/docs/commands-legacy/is-field-number-valid.md @@ -24,4 +24,13 @@ This command can be used to detect any field deletions, which create gaps in the #### See also [Last table number](last-table-number.md) -[Is table number valid](is-table-number-valid.md) \ No newline at end of file +[Is table number valid](is-table-number-valid.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1000 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-field-value-null.md b/docs/commands-legacy/is-field-value-null.md index b17598dbcf5d5f..c2a92474885a71 100644 --- a/docs/commands-legacy/is-field-value-null.md +++ b/docs/commands-legacy/is-field-value-null.md @@ -27,4 +27,13 @@ The value returned by this command is only meaningful if the "*Map NULL values t #### See also [Null](null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 964 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-in-print-preview.md b/docs/commands-legacy/is-in-print-preview.md index 4974dc2d4d673f..e630ac7ca4f907 100644 --- a/docs/commands-legacy/is-in-print-preview.md +++ b/docs/commands-legacy/is-in-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Is in print preview** command returns True if the **Preview on Screen** option is checked in the printing dialog box and False otherwise. This setting is local to the process. @@ -46,4 +43,13 @@ This example takes all types of printing into account: #### See also [Get print preview](get-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1198 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/is-in-set.md b/docs/commands-legacy/is-in-set.md index 9865c4380a0b69..92f8ce2bc0c0f9 100644 --- a/docs/commands-legacy/is-in-set.md +++ b/docs/commands-legacy/is-in-set.md @@ -33,4 +33,13 @@ The following example is a button object method. It tests to see whether or not #### See also [ADD TO SET](add-to-set.md) -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 273 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-license-available.md b/docs/commands-legacy/is-license-available.md index bacb042c5a78ff..8ede903127bf8e 100644 --- a/docs/commands-legacy/is-license-available.md +++ b/docs/commands-legacy/is-license-available.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Is license available command lets you find out the availability of a plug-in. It is useful, for instance, for displaying or hiding functions requiring the presence of a plug-in. @@ -48,4 +45,13 @@ Is license available returns [False](false.md "False") if the plug-in is operati [License info](../commands/license-info.md) [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 714 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/is-macos.md b/docs/commands-legacy/is-macos.md index 108f29e9cc276b..392f3b9a42c73f 100644 --- a/docs/commands-legacy/is-macos.md +++ b/docs/commands-legacy/is-macos.md @@ -32,4 +32,13 @@ You want to determine if the current operating system is macOS: #### See also [System info](system-info.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1572 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-new-record.md b/docs/commands-legacy/is-new-record.md index dbd2d2eceff48a..f7f4cdd6cfa339 100644 --- a/docs/commands-legacy/is-new-record.md +++ b/docs/commands-legacy/is-new-record.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Is new record** command returns True when *aTable*’s current record is being created and has not yet been saved in the current process. - -**Compatibility Note:** You can obtain the same information by using the existing [Record number](record-number.md) command, and by testing if it returns -3\. +The **Is new record** command returns True when *aTable*’s current record is being created and has not yet been saved in the current process.You can obtain the same information by using the existing [Record number](record-number.md) command, and by testing if it returns -3\. However, we strongly advise you to use **Is new record** instead of [Record number](record-number.md) in this case. In fact, the **Is new record** command ensures compatibility with future versions of 4D. **4D Server:** This command returns a different result for the On Validate form event depending on whether it is executed on 4D in local mode or 4D in remote mode. In local mode, the command returns False (the record is considered as already created). In remote mode, the command returns True because, in this case, the record is already created on the server but the information has not yet been sent to the client. @@ -40,4 +38,13 @@ The following two statements are identical. The second one is strongly advised s #### See also [Modified record](modified-record.md) -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 668 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-nil-pointer.md b/docs/commands-legacy/is-nil-pointer.md index d2bef4dfc2e5c1..a13ad5877adb51 100644 --- a/docs/commands-legacy/is-nil-pointer.md +++ b/docs/commands-legacy/is-nil-pointer.md @@ -35,4 +35,13 @@ If you want to find out the name of the variable or the number of the field that #### See also [Is a variable](is-a-variable.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 315 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-picture-file.md b/docs/commands-legacy/is-picture-file.md index 0479ce91fefc1f..7e6a38ac51f48b 100644 --- a/docs/commands-legacy/is-picture-file.md +++ b/docs/commands-legacy/is-picture-file.md @@ -27,4 +27,13 @@ If you do not pass the *\** parameter, the command tests the file by looking for #### See also -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1113 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-record-loaded.md b/docs/commands-legacy/is-record-loaded.md index 0e6cc8c9b1cbba..ab7d1a8fd1b758 100644 --- a/docs/commands-legacy/is-record-loaded.md +++ b/docs/commands-legacy/is-record-loaded.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The Is record loaded command returns True if *aTable*’s current record is loaded in the current process. - -**4D Server**: In principle, when tables are linked by automatic relations, the current records of related tables are loaded automatically (see *About Relations*). However, for optimization reasons, 4D Server only loads these records when necessary, for example when reading or assigning a field of the related record. As a result, in this context the **Is record loaded** command will return False in remote mode (it returns True in local mode). +The Is record loaded command returns True if *aTable*’s current record is loaded in the current process.command will return False in remote mode (it returns True in local mode). #### Example @@ -43,3 +41,13 @@ Instead of using the “Next record” or “Previous record” automatic action     End if  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 669 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-table-number-valid.md b/docs/commands-legacy/is-table-number-valid.md index 66ee54349f7f73..ceb9dd219a3ff7 100644 --- a/docs/commands-legacy/is-table-number-valid.md +++ b/docs/commands-legacy/is-table-number-valid.md @@ -23,4 +23,13 @@ This command can be used to detect any table deletions, which create gaps in the #### See also [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 999 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/is-user-deleted.md b/docs/commands-legacy/is-user-deleted.md index 2095563e40b0f5..78793fb642a0a5 100644 --- a/docs/commands-legacy/is-user-deleted.md +++ b/docs/commands-legacy/is-user-deleted.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Is user deleted command tests the user account whose unique user ID number you pass in *userID*. @@ -31,4 +28,14 @@ If you do not have the proper access privileges for calling Is user deleted or i [DELETE USER](delete-user.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 616 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/is-waiting-mouse-up.md b/docs/commands-legacy/is-waiting-mouse-up.md index 609385d4ffde16..e193c692f8796c 100644 --- a/docs/commands-legacy/is-waiting-mouse-up.md +++ b/docs/commands-legacy/is-waiting-mouse-up.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Is waiting mouse up** command returns **True** if the current object has been clicked and the mouse button has not been released, while the parent window has the focus. Otherwise, it returns **False**, in particular if the parent window has lost the focus before the mouse button was released. @@ -52,4 +49,13 @@ The following code can be used to manage a mouse tracking feature in a picture o #### See also -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1422 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/is-window-maximized.md b/docs/commands-legacy/is-window-maximized.md index 6ea59d675dac07..a85fa27c47c476 100644 --- a/docs/commands-legacy/is-window-maximized.md +++ b/docs/commands-legacy/is-window-maximized.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Is window maximized** command returns **True** if the window whose reference number is passed in *window* is currently maximized, and **False** otherwise. @@ -36,4 +33,13 @@ You want to switch between the maximized and previous states: #### See also [Is window reduced](is-window-reduced.md) -[MAXIMIZE WINDOW](maximize-window.md) \ No newline at end of file +[MAXIMIZE WINDOW](maximize-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1830 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/is-window-reduced.md b/docs/commands-legacy/is-window-reduced.md index b293e550e1cf8a..5f4a73b1c2cc66 100644 --- a/docs/commands-legacy/is-window-reduced.md +++ b/docs/commands-legacy/is-window-reduced.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Is window reduced** command returns **True** if the window whose reference number is passed in *window* is currently reduced in the taskbar (Windows) or in the dock (macOS), and **False** otherwise. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### See also [Is window maximized](is-window-maximized.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1831 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/is-windows.md b/docs/commands-legacy/is-windows.md index 747ad5b1e228e4..0a59b4fcb3d4a8 100644 --- a/docs/commands-legacy/is-windows.md +++ b/docs/commands-legacy/is-windows.md @@ -32,4 +32,13 @@ You want to determine if the current operating system is Windows: #### See also [System info](system-info.md) -[Is macOS](is-macos.md) \ No newline at end of file +[Is macOS](is-macos.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1573 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/json-parse-array.md b/docs/commands-legacy/json-parse-array.md index eba5f0ca32a713..275b0931524686 100644 --- a/docs/commands-legacy/json-parse-array.md +++ b/docs/commands-legacy/json-parse-array.md @@ -57,4 +57,13 @@ In this example, data from fields of the records in a table are extracted and th #### See also [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1219 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/json-parse.md b/docs/commands-legacy/json-parse.md index 693e5c8c851df4..ec1baa0ea6bd8a 100644 --- a/docs/commands-legacy/json-parse.md +++ b/docs/commands-legacy/json-parse.md @@ -188,4 +188,13 @@ beta[1].golf:{line:10,offset:12}}} *Field and Variable Types* [JSON PARSE ARRAY](json-parse-array.md) [JSON Stringify](json-stringify.md) -[JSON Validate](json-validate.md) \ No newline at end of file +[JSON Validate](json-validate.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1218 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/json-resolve-pointers.md b/docs/commands-legacy/json-resolve-pointers.md index facbe25f3a64ab..ba40d969b062bb 100644 --- a/docs/commands-legacy/json-resolve-pointers.md +++ b/docs/commands-legacy/json-resolve-pointers.md @@ -230,4 +230,13 @@ If you execute: #### See also - \ No newline at end of file + + +#### Properties + +| | | +| --- | --- | +| Command number | 1478 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/json-stringify-array.md b/docs/commands-legacy/json-stringify-array.md index 26ca4e56bb57f6..d59e80af7f2227 100644 --- a/docs/commands-legacy/json-stringify-array.md +++ b/docs/commands-legacy/json-stringify-array.md @@ -107,4 +107,13 @@ Conversion of a 4D selection in an object array: #### See also [JSON PARSE ARRAY](json-parse-array.md) -[JSON Stringify](json-stringify.md) \ No newline at end of file +[JSON Stringify](json-stringify.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1228 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/json-stringify.md b/docs/commands-legacy/json-stringify.md index 29696dfc6bce22..922e779e91c050 100644 --- a/docs/commands-legacy/json-stringify.md +++ b/docs/commands-legacy/json-stringify.md @@ -172,4 +172,13 @@ $myTxtCol="[33,"mike","2017-08-28",false]" #### See also [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1217 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/json-to-selection.md b/docs/commands-legacy/json-to-selection.md index ebaa442deecdc4..62aaf7a2dd12e2 100644 --- a/docs/commands-legacy/json-to-selection.md +++ b/docs/commands-legacy/json-to-selection.md @@ -67,4 +67,13 @@ Using the **JSON TO SELECTION** command to add records to the \[Company\] table: #### See also -[Selection to JSON](selection-to-json.md) \ No newline at end of file +[Selection to JSON](selection-to-json.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1235 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/json-validate.md b/docs/commands-legacy/json-validate.md index a87e64f0a2825c..5b4ee6b6d73db1 100644 --- a/docs/commands-legacy/json-validate.md +++ b/docs/commands-legacy/json-validate.md @@ -103,4 +103,13 @@ You want to validate a JSON object with a schema and get the list of validation -[JSON Parse](json-parse.md) \ No newline at end of file +[JSON Parse](json-parse.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1456 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/keystroke.md b/docs/commands-legacy/keystroke.md index 7df9fe0ba18d9c..445122d4443163 100644 --- a/docs/commands-legacy/keystroke.md +++ b/docs/commands-legacy/keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Keystroke** returns the character entered by the user into a field or an enterable area. @@ -170,4 +167,13 @@ Using the interprocess communication capabilities of 4D, you can similarily buil [FILTER KEYSTROKE](filter-keystroke.md) [Form event code](../commands/form-event-code.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 390 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/kill-worker.md b/docs/commands-legacy/kill-worker.md index 304a7b9ebaa044..b8b341167c5129 100644 --- a/docs/commands-legacy/kill-worker.md +++ b/docs/commands-legacy/kill-worker.md @@ -52,4 +52,13 @@ In the worker method (*theWorker*), you add some code to handle this situation: *About workers* [CALL WORKER](call-worker.md) -[Current process name](current-process-name.md) \ No newline at end of file +[Current process name](current-process-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1390 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/last-errors.md b/docs/commands-legacy/last-errors.md index 240f147e635c8b..62525961d51e32 100644 --- a/docs/commands-legacy/last-errors.md +++ b/docs/commands-legacy/last-errors.md @@ -31,4 +31,13 @@ This command must be called from an on error call method installed by the [ON ER #### See also [ON ERR CALL](on-err-call.md) -[throw](throw.md) \ No newline at end of file +[throw](throw.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1799 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/last-field-number.md b/docs/commands-legacy/last-field-number.md index 47a9d9bfae13e6..3ce47abcaf284c 100644 --- a/docs/commands-legacy/last-field-number.md +++ b/docs/commands-legacy/last-field-number.md @@ -41,4 +41,13 @@ The following project method builds the array *asFields*, consisting of the fiel [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 255 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/last-query-path.md b/docs/commands-legacy/last-query-path.md index d7e87f8e0bae33..4f2a2127c3ddbc 100644 --- a/docs/commands-legacy/last-query-path.md +++ b/docs/commands-legacy/last-query-path.md @@ -32,4 +32,13 @@ The description of the last query path can be compared to the description of the #### See also [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1045 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/last-query-plan.md b/docs/commands-legacy/last-query-plan.md index b0bb9d8c19e7f8..707178a9f3aa07 100644 --- a/docs/commands-legacy/last-query-plan.md +++ b/docs/commands-legacy/last-query-plan.md @@ -33,4 +33,13 @@ The description of the last query plan can be compared to the description of the #### See also [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query path](last-query-path.md) \ No newline at end of file +[Last query path](last-query-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1046 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/last-record.md b/docs/commands-legacy/last-record.md index ae20e467634a2f..c76b1f5b6e205e 100644 --- a/docs/commands-legacy/last-record.md +++ b/docs/commands-legacy/last-record.md @@ -31,4 +31,14 @@ The following example makes the last record of the \[People\] table the current [End selection](end-selection.md) [FIRST RECORD](first-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 200 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/docs/commands-legacy/last-table-number.md b/docs/commands-legacy/last-table-number.md index 1e25de3242f448..b8d3c72dae5f21 100644 --- a/docs/commands-legacy/last-table-number.md +++ b/docs/commands-legacy/last-table-number.md @@ -38,4 +38,13 @@ The following example builds an array, named asTables*,* with the names of table [Last field number](last-field-number.md) [Is table number valid](is-table-number-valid.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 254 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/launch-external-process.md b/docs/commands-legacy/launch-external-process.md index 7f0ca008ec0c24..5f8937cd8da69f 100644 --- a/docs/commands-legacy/launch-external-process.md +++ b/docs/commands-legacy/launch-external-process.md @@ -145,4 +145,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [OPEN URL](open-url.md) -[SET ENVIRONMENT VARIABLE](set-environment-variable.md) \ No newline at end of file +[SET ENVIRONMENT VARIABLE](set-environment-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 811 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/ldap-login.md b/docs/commands-legacy/ldap-login.md index 2c65772f203ad6..ba26b8eb06bdf7 100644 --- a/docs/commands-legacy/ldap-login.md +++ b/docs/commands-legacy/ldap-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LDAP LOGIN** command opens a read-only connection to the LDAP server specified in the *url* parameter with the *login* and *password* identifiers provided. If accepted by the server, this connection will be used for any LDAP searches executed subsequently in the current process until the [LDAP LOGOUT](ldap-logout.md) command is executed (or until the process is closed). @@ -97,4 +94,13 @@ This example tries to connect to an application: #### See also *LDAP* -[LDAP LOGOUT](ldap-logout.md) \ No newline at end of file +[LDAP LOGOUT](ldap-logout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1326 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/ldap-logout.md b/docs/commands-legacy/ldap-logout.md index 81f7e921f9052d..b674fd691d1858 100644 --- a/docs/commands-legacy/ldap-logout.md +++ b/docs/commands-legacy/ldap-logout.md @@ -12,13 +12,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LDAP LOGOUT** command closes the connection with an LDAP server in the current process (if applicable). If there is no connection, an error 1003 stating that you are not logged in is returned. #### See also -[LDAP LOGIN](ldap-login.md) \ No newline at end of file +[LDAP LOGIN](ldap-login.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1327 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/ldap-search-all.md b/docs/commands-legacy/ldap-search-all.md index 86c81f917988a3..8f561df85072be 100644 --- a/docs/commands-legacy/ldap-search-all.md +++ b/docs/commands-legacy/ldap-search-all.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LDAP SEARCH ALL** command searches in the target LDAP server for all occurrences matching the criteria defined. This command must be executed within a connection to an LDAP server opened with [LDAP LOGIN](ldap-login.md); otherwise a 1003 error is returned. @@ -117,4 +114,13 @@ These examples illustrate the use of the *attributesAsArray* parameter: #### See also *LDAP* -[LDAP Search](ldap-search.md) \ No newline at end of file +[LDAP Search](ldap-search.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1329 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/ldap-search.md b/docs/commands-legacy/ldap-search.md index 3c4c373512425f..6fe78a3988d173 100644 --- a/docs/commands-legacy/ldap-search.md +++ b/docs/commands-legacy/ldap-search.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LDAP Search** command searches in the target LDAP server for the first occurrence matching the criteria defined. This command must be executed within a connection to an LDAP server opened with [LDAP LOGIN](ldap-login.md); otherwise a 1003 error is returned. @@ -85,4 +82,13 @@ We want to get an array of all entries found for the "memberOf" attribute: #### See also *LDAP* -[LDAP SEARCH ALL](ldap-search-all.md) \ No newline at end of file +[LDAP SEARCH ALL](ldap-search-all.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1328 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/length.md b/docs/commands-legacy/length.md index 58774d052334fd..e33e00df74f5e9 100644 --- a/docs/commands-legacy/length.md +++ b/docs/commands-legacy/length.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**Length** is used to find the length of *aString*. **Length** returns the number of characters that are in *aString*. +**Length** is used to find the length of *aString*.returns the number of characters that are in *aString*. **Note:** In Unicode mode, when you want to check whether a string contains any characters, including ignorable characters, you must use the test If(Length(vtAnyText)=0) rather than If(vtAnyText=""). If the string contains for example Char(1), which is an ignorable character, Length(vtAnyText) does return 1 but vtAnyText="" returns True. @@ -28,3 +28,13 @@ This example illustrates the use of **Length**. The results, described in the co  vlResult:=Length("Topaz") // vlResult gets 5  vlResult:=Length("Citizen") // vlResult gets 7 ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 16 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/level.md b/docs/commands-legacy/level.md index d53ae5f4a1af13..a7d5d0c2cbfb04 100644 --- a/docs/commands-legacy/level.md +++ b/docs/commands-legacy/level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Level is used to determine the current header or break level. It returns the level number during the On Header and On Printing Break events. @@ -68,4 +65,13 @@ This example is a template for a form method. It shows each of the possible even [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Form event code](../commands/form-event-code.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 101 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/license-usage.md b/docs/commands-legacy/license-usage.md index f6c318d4dcdb37..38013c327e42c8 100644 --- a/docs/commands-legacy/license-usage.md +++ b/docs/commands-legacy/license-usage.md @@ -71,3 +71,13 @@ This table details the contents of the session object for REST sessions: | sessionID | Text | REST session ID | | IPAddress | Text | ID of the client that initiated the REST session | | isDatastore | Boolean | True if the REST request comes from a datastore | + + +#### Properties + +| | | +| --- | --- | +| Command number | 1782 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/list-item-parent.md b/docs/commands-legacy/list-item-parent.md index 1ffd8272a64ab0..d032df5c5058b8 100644 --- a/docs/commands-legacy/list-item-parent.md +++ b/docs/commands-legacy/list-item-parent.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **List item parent** command returns the item reference number of a parent item. @@ -72,4 +69,13 @@ The item reference numbers are set as follows: [GET LIST ITEM](get-list-item.md) [List item position](list-item-position.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 633 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/list-item-position.md b/docs/commands-legacy/list-item-position.md index f2828344bdb2b8..ec66ede94c0415 100644 --- a/docs/commands-legacy/list-item-position.md +++ b/docs/commands-legacy/list-item-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **List item position** command returns the position of the item whose item reference number is passed in *itemRef*, within the list whose list reference number or object name is passed in *list*. @@ -40,4 +37,13 @@ If the item does not exist, **List item position** returns 0. #### See also [Count list items](count-list-items.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 629 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/list-of-choice-lists.md b/docs/commands-legacy/list-of-choice-lists.md index 2a2c458146cfd7..94da824cfc8aa0 100644 --- a/docs/commands-legacy/list-of-choice-lists.md +++ b/docs/commands-legacy/list-of-choice-lists.md @@ -14,11 +14,18 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LIST OF CHOICE LISTS command returns, in the synchronized *numsArr* and *namesArr* arrays, the numbers and names of the choice lists defined by the list editor in Design mode. The numbers of choice lists correspond to their order of creation. In the list editor, choice lists are displayed in alphabetical order. + + +#### Properties + +| | | +| --- | --- | +| Command number | 957 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/list-of-style-sheets.md b/docs/commands-legacy/list-of-style-sheets.md index f81e1f1f2d141a..253db3565a7066 100644 --- a/docs/commands-legacy/list-of-style-sheets.md +++ b/docs/commands-legacy/list-of-style-sheets.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LIST OF STYLE SHEETS** command returns the list of application style sheets in the *arrStyleSheets* array. @@ -51,4 +48,13 @@ If you execute the following code: #### See also [GET STYLE SHEET INFO](get-style-sheet-info.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1255 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/list-to-array.md b/docs/commands-legacy/list-to-array.md index dd97863a708b83..c8e7e47635a1aa 100644 --- a/docs/commands-legacy/list-to-array.md +++ b/docs/commands-legacy/list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LIST TO ARRAY command creates or overrides the array *array* with the first level items of the list or choice list designated by *list*. @@ -86,4 +83,13 @@ If you execute the following statement: [ARRAY TO LIST](array-to-list.md) [Load list](load-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 288 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/list-to-blob.md b/docs/commands-legacy/list-to-blob.md index 0a058f565fb1e0..d978f4b264c1bf 100644 --- a/docs/commands-legacy/list-to-blob.md +++ b/docs/commands-legacy/list-to-blob.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LIST TO BLOB command stores the hierarchical list *list* in the BLOB *blob*. @@ -47,4 +44,14 @@ See example for the command [BLOB to list](blob-to-list.md). [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) [SAVE LIST](save-list.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 556 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/listbox-collapse.md b/docs/commands-legacy/listbox-collapse.md index c1dbbcc7e423b4..04684f1809234d 100644 --- a/docs/commands-legacy/listbox-collapse.md +++ b/docs/commands-legacy/listbox-collapse.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX COLLAPSE command is used to collapse the break rows of the list box object designated by the *object* and *\** parameters. @@ -52,4 +49,13 @@ This example collapses the first level of the break rows of the selection in the #### See also -[LISTBOX EXPAND](listbox-expand.md) \ No newline at end of file +[LISTBOX EXPAND](listbox-expand.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1101 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-delete-column.md b/docs/commands-legacy/listbox-delete-column.md index 22322befbfa222..1a8511ec65d529 100644 --- a/docs/commands-legacy/listbox-delete-column.md +++ b/docs/commands-legacy/listbox-delete-column.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX DELETE COLUMN** command removes one or more columns (visible or invisible) in the list box set in the *object* and *\** parameters. @@ -36,4 +33,13 @@ If the *colPosition* parameter is greater than the number of columns in the list #### See also [LISTBOX Get number of columns](listbox-get-number-of-columns.md) -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 830 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-delete-rows.md b/docs/commands-legacy/listbox-delete-rows.md index 5007a17f079026..2422dfc391b05a 100644 --- a/docs/commands-legacy/listbox-delete-rows.md +++ b/docs/commands-legacy/listbox-delete-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX DELETE ROWS** command deletes one or several row(s) starting at *rowPosition* row (visible or not) from the list box set in the *object* and *\** parameters. @@ -38,4 +35,14 @@ If the *rowPosition* value is higher than the total number of rows in the list b #### See also [LISTBOX Get number of rows](listbox-get-number-of-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 914 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/listbox-duplicate-column.md b/docs/commands-legacy/listbox-duplicate-column.md index d3df5d9ef7a7c5..97550d4e63eacf 100644 --- a/docs/commands-legacy/listbox-duplicate-column.md +++ b/docs/commands-legacy/listbox-duplicate-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX DUPLICATE COLUMN** command duplicates the column designated by the *object* and *\** parameters by programming in the context of the form being executed (Application mode). The original form, generated in the Design mode, is not modified. @@ -95,4 +92,13 @@ You want to duplicate a Boolean column and change its title: #### See also -[LISTBOX MOVE COLUMN](listbox-move-column.md) \ No newline at end of file +[LISTBOX MOVE COLUMN](listbox-move-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1273 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-expand.md b/docs/commands-legacy/listbox-expand.md index 5e89bff2aab78a..c871b72f14094c 100644 --- a/docs/commands-legacy/listbox-expand.md +++ b/docs/commands-legacy/listbox-expand.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX EXPAND command is used to expand the break rows of the list box object designated by the *object* and *\** parameters. @@ -81,4 +78,13 @@ This example illustrates different ways of using the command. Given the followin #### See also -[LISTBOX COLLAPSE](listbox-collapse.md) \ No newline at end of file +[LISTBOX COLLAPSE](listbox-collapse.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1100 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-array.md b/docs/commands-legacy/listbox-get-array.md index 9b38b6cc1bc670..d53ddc141a96fb 100644 --- a/docs/commands-legacy/listbox-get-array.md +++ b/docs/commands-legacy/listbox-get-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -62,4 +59,13 @@ Typical examples of use: #### See also [LISTBOX GET ARRAYS](listbox-get-arrays.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1278 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-arrays.md b/docs/commands-legacy/listbox-get-arrays.md index 1ed9a1ea54f632..424f157457dc3a 100644 --- a/docs/commands-legacy/listbox-get-arrays.md +++ b/docs/commands-legacy/listbox-get-arrays.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET ARRAYS** command returns a set of synchronized arrays providing information on each column (visible or invisible) in the list box set in the *object* and *\** parameters. @@ -51,4 +48,13 @@ For record selection, collection or entity selection type list boxes, *arrStyles [LISTBOX Get array](listbox-get-array.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 832 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-auto-row-height.md b/docs/commands-legacy/listbox-get-auto-row-height.md index 8e374277d7a786..0eae74c61f95a1 100644 --- a/docs/commands-legacy/listbox-get-auto-row-height.md +++ b/docs/commands-legacy/listbox-get-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get auto row height** command returns the current minimum or maximum row height value set for the list box object designated using the *object* and *\** parameters. @@ -57,4 +54,13 @@ You want to get the maximum number of lines for a list box row: [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) \ No newline at end of file +[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1502 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-cell-coordinates.md b/docs/commands-legacy/listbox-get-cell-coordinates.md index 4f6d1a1ba137da..ac75d34aaac171 100644 --- a/docs/commands-legacy/listbox-get-cell-coordinates.md +++ b/docs/commands-legacy/listbox-get-cell-coordinates.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET CELL COORDINATES** command returns in variables or fields the *left*, *top*, *right* and *bottom* coordinates (in points) of the cell designated by the *column* and *row* parameters, in the list box defined by *\** and *object*. @@ -55,4 +52,13 @@ You want to draw a red rectangle around the selected cell of a list box: #### See also [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[OBJECT GET COORDINATES](object-get-coordinates.md) \ No newline at end of file +[OBJECT GET COORDINATES](object-get-coordinates.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1330 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-cell-position.md b/docs/commands-legacy/listbox-get-cell-position.md index 1699b8bad832fc..961147dac028e5 100644 --- a/docs/commands-legacy/listbox-get-cell-position.md +++ b/docs/commands-legacy/listbox-get-cell-position.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET CELL POSITION** command returns the numbers of the *column* and the *row* that correspond to the location in the listbox (designated by *\** and *object*) of the last mouse click, last selection made via the keyboard, or the horizontal and vertical coordinates of the mouse. @@ -55,4 +52,13 @@ This command takes into account any selection or deselection actions whether by #### See also [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) -[LISTBOX SELECT BREAK](listbox-select-break.md) \ No newline at end of file +[LISTBOX SELECT BREAK](listbox-select-break.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 971 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-column-formula.md b/docs/commands-legacy/listbox-get-column-formula.md index f13aafe7d0ce8e..4ede462b229e71 100644 --- a/docs/commands-legacy/listbox-get-column-formula.md +++ b/docs/commands-legacy/listbox-get-column-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get column formula** command returns the formula associated with the list box column designated by the *object* and *\** parameters. Formulas can only be used when the “Data Source” property of the list box is either **Current Selection**, **Named Selection**, or **Collection or Entity Selection**. If no formula is associated with the column, the command returns an empty string. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, this indicates that the *object* parame #### See also -[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) \ No newline at end of file +[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1202 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-column-width.md b/docs/commands-legacy/listbox-get-column-width.md index 164dff6eb33350..c65488c24d7c50 100644 --- a/docs/commands-legacy/listbox-get-column-width.md +++ b/docs/commands-legacy/listbox-get-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get column width** command returns the width (in pixels) of the column set in the *object* and *\** parameters. You can pass either a list box column or a column header in the *object* parameter. @@ -31,4 +28,13 @@ If no minimum and/or maximum value has been set for the column, the correspondin #### See also -[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) \ No newline at end of file +[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 834 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-footer-calculation.md b/docs/commands-legacy/listbox-get-footer-calculation.md index 1c71541a99f4ad..8393c93e43f891 100644 --- a/docs/commands-legacy/listbox-get-footer-calculation.md +++ b/docs/commands-legacy/listbox-get-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get footer calculation** command returns the type of calculation associated with the footer area of the list box designated by the *object* and *\** parameters. @@ -33,4 +30,13 @@ You can compare the value returned with the constants of the *Listbox Footer Cal #### See also -[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) \ No newline at end of file +[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1150 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-footers-height.md b/docs/commands-legacy/listbox-get-footers-height.md index 9cca6d187c5d4f..8661e01310ced6 100644 --- a/docs/commands-legacy/listbox-get-footers-height.md +++ b/docs/commands-legacy/listbox-get-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get footers height** command returns the height of the footer row in the list box designated by the *object* and *\** parameters. @@ -36,4 +33,13 @@ By default, if you omit the *unit* parameter, the height of the row returned is #### See also -[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) \ No newline at end of file +[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1146 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-grid-colors.md b/docs/commands-legacy/listbox-get-grid-colors.md index 5c739636963b50..2aa57b1232c669 100644 --- a/docs/commands-legacy/listbox-get-grid-colors.md +++ b/docs/commands-legacy/listbox-get-grid-colors.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET GRID COLORS** command returns the color of the horizontal and vertical lines making up the grid of the list box object designated by the *object* and *\** parameters. @@ -32,4 +29,13 @@ In *hColor* and *vColor*, the command returns the values of the RGB colors. The #### See also -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1200 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-grid.md b/docs/commands-legacy/listbox-get-grid.md index 217178dc3830d9..5ff1112b1b0bee 100644 --- a/docs/commands-legacy/listbox-get-grid.md +++ b/docs/commands-legacy/listbox-get-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET GRID** command returns the shown/hidden status of the horizontal and/or vertical lines making up the grid of the list box object designated by the *object* and *\** parameters. @@ -29,4 +26,13 @@ In *horizontal* and *vertical*, the command returns the value **True** or **Fals #### See also -[LISTBOX SET GRID](listbox-set-grid.md) \ No newline at end of file +[LISTBOX SET GRID](listbox-set-grid.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1199 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-headers-height.md b/docs/commands-legacy/listbox-get-headers-height.md index f56a3d398368b6..d2b2eb22bcedc2 100644 --- a/docs/commands-legacy/listbox-get-headers-height.md +++ b/docs/commands-legacy/listbox-get-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get headers height** command returns the height of the header row in the list box designated by the *object* and *\** parameters. @@ -36,4 +33,13 @@ By default, if you omit the *unit* parameter, the height of the row returned is #### See also -[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) \ No newline at end of file +[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1144 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-hierarchy.md b/docs/commands-legacy/listbox-get-hierarchy.md index 76eb2745221508..d8842d6e7b9cba 100644 --- a/docs/commands-legacy/listbox-get-hierarchy.md +++ b/docs/commands-legacy/listbox-get-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX GET HIERARCHY command lets you find out the hierarchical properties of the list box object designated by the *object* and *\** parameters. @@ -36,4 +33,13 @@ If the list box is in hierarchical mode, the command fills the *hierarchy* array #### See also -[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) \ No newline at end of file +[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1099 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-locked-columns.md b/docs/commands-legacy/listbox-get-locked-columns.md index f9b84dfe31f0fe..191e8349dd88b5 100644 --- a/docs/commands-legacy/listbox-get-locked-columns.md +++ b/docs/commands-legacy/listbox-get-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get locked columns** command returns the number of locked columns in the list box designated by the *object* and *\** parameters. @@ -32,4 +29,13 @@ However, the command does not take into account the visible/invisible status of #### See also -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1152 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-number-of-columns.md b/docs/commands-legacy/listbox-get-number-of-columns.md index 2e2e5d1732613c..a87844da3332ea 100644 --- a/docs/commands-legacy/listbox-get-number-of-columns.md +++ b/docs/commands-legacy/listbox-get-number-of-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get number of columns** command returns the total number of columns (visible or invisible) present in the list box set in the *object* and *\** parameters. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[LISTBOX DELETE COLUMN](listbox-delete-column.md) \ No newline at end of file +[LISTBOX DELETE COLUMN](listbox-delete-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 831 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-number-of-rows.md b/docs/commands-legacy/listbox-get-number-of-rows.md index 762719e0862e4b..7b1de435fbf2e7 100644 --- a/docs/commands-legacy/listbox-get-number-of-rows.md +++ b/docs/commands-legacy/listbox-get-number-of-rows.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get number of rows** command returns the number of rows in the list box set in the *object* and *\** parameters. @@ -31,4 +28,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also [LISTBOX DELETE ROWS](listbox-delete-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 915 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-objects.md b/docs/commands-legacy/listbox-get-objects.md index 7b593b8f690447..96cb27524f5eb9 100644 --- a/docs/commands-legacy/listbox-get-objects.md +++ b/docs/commands-legacy/listbox-get-objects.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET OBJECTS** command returns an array containing the names of each object making up the list box designated by the *object* and *\** parameters. @@ -61,4 +58,13 @@ You want to load a form and get a list of all the objects of list boxes that it #### See also [FORM LOAD](../commands/form-load.md) -[OBJECT Get type](object-get-type.md) \ No newline at end of file +[OBJECT Get type](object-get-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1302 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-print-information.md b/docs/commands-legacy/listbox-get-print-information.md index 1068377d699f29..63c0647a4a5509 100644 --- a/docs/commands-legacy/listbox-get-print-information.md +++ b/docs/commands-legacy/listbox-get-print-information.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET PRINT INFORMATION** command returns the current information relative to the printing of the list box object designated by the *object* and *\** parameters. This command can be used to control the printing of the list box contents. @@ -69,3 +66,13 @@ Printing at least 500 rows of the list box, knowing that certain rows are hidden     PAGE BREAK  Until($GlobalPrinted>=500) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1110 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-property.md b/docs/commands-legacy/listbox-get-property.md index ab846c202cb920..27d07565fcda89 100644 --- a/docs/commands-legacy/listbox-get-property.md +++ b/docs/commands-legacy/listbox-get-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get property** command returns the value of the *property* of the list box or column specified using the *object* and *\** parameters. @@ -101,4 +98,13 @@ Given a list box "MyListbox", if you execute the following statement: [LISTBOX SET GRID](listbox-set-grid.md) [LISTBOX SET PROPERTY](listbox-set-property.md) -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 917 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-row-color-as-number.md b/docs/commands-legacy/listbox-get-row-color-as-number.md index 4af661dad17337..dfe6bf7466000c 100644 --- a/docs/commands-legacy/listbox-get-row-color-as-number.md +++ b/docs/commands-legacy/listbox-get-row-color-as-number.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -61,4 +58,13 @@ Given the following list box: *List Box* [LISTBOX Get row color](listbox-get-row-color.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1271 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-row-color.md b/docs/commands-legacy/listbox-get-row-color.md index a618abacf9be89..e87b7e44a660a4 100644 --- a/docs/commands-legacy/listbox-get-row-color.md +++ b/docs/commands-legacy/listbox-get-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -59,4 +56,13 @@ Given the following list box: #### See also -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1658 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-row-font-style.md b/docs/commands-legacy/listbox-get-row-font-style.md index a669a20182e85f..5764e6ec466d00 100644 --- a/docs/commands-legacy/listbox-get-row-font-style.md +++ b/docs/commands-legacy/listbox-get-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -52,4 +49,13 @@ Given the following list box: #### See also -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1269 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-row-height.md b/docs/commands-legacy/listbox-get-row-height.md index 65ae5f2d386b54..17626ab4f0abcd 100644 --- a/docs/commands-legacy/listbox-get-row-height.md +++ b/docs/commands-legacy/listbox-get-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get row height** command returns the current height of the specified *row* in the list box object designated using the *object* and *\** parameters. Row height can be set globally using the Property List or the [LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) command, or individually by means of the [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) command. @@ -36,4 +33,13 @@ The returned height value is expressed: [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1408 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-rows-height.md b/docs/commands-legacy/listbox-get-rows-height.md index 9e90ce1376812d..63e0f4ae0a2fa4 100644 --- a/docs/commands-legacy/listbox-get-rows-height.md +++ b/docs/commands-legacy/listbox-get-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get rows height** command returns the current row height for the list box object set using the *object* and *\** parameters. @@ -38,4 +35,13 @@ By default, if you omit the *unit* parameter, the row height returned is express [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get row height](listbox-get-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 836 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-static-columns.md b/docs/commands-legacy/listbox-get-static-columns.md index b0af9257a612ae..2ba80a0371f8e2 100644 --- a/docs/commands-legacy/listbox-get-static-columns.md +++ b/docs/commands-legacy/listbox-get-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get static columns** command returns the number of static columns in the list box designated by the *object* and *\** parameters. @@ -33,4 +30,13 @@ However, the command does not take into account the visible/invisible status of #### See also -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1154 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-get-table-source.md b/docs/commands-legacy/listbox-get-table-source.md index d38543b20826a3..3749c666a8d26a 100644 --- a/docs/commands-legacy/listbox-get-table-source.md +++ b/docs/commands-legacy/listbox-get-table-source.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX GET TABLE SOURCE command can be used to find out the current source of the data displayed in the list box that is designated by the *\** and *object* parameters. @@ -34,4 +31,13 @@ If the list box is associated with arrays, *tableNum* returns -1 and *name*, if #### See also -[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) \ No newline at end of file +[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1014 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-insert-column-formula.md b/docs/commands-legacy/listbox-insert-column-formula.md index d4537b478931e0..afed99411e3ace 100644 --- a/docs/commands-legacy/listbox-insert-column-formula.md +++ b/docs/commands-legacy/listbox-insert-column-formula.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX INSERT COLUMN FORMULA** command inserts a column into the list box designated by the *object* and *\** parameters. @@ -120,4 +117,13 @@ The column is added to the list box: #### See also -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 970 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-insert-column.md b/docs/commands-legacy/listbox-insert-column.md index 87dfa56cc86dec..91b88cdf931ac4 100644 --- a/docs/commands-legacy/listbox-insert-column.md +++ b/docs/commands-legacy/listbox-insert-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX INSERT COLUMN** command inserts a column in the list box set by the *object* and *\** parameters. @@ -98,4 +95,13 @@ You want to insert a column dynamically into an array type list box and define i #### See also [LISTBOX DELETE COLUMN](listbox-delete-column.md) -[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) \ No newline at end of file +[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 829 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-insert-rows.md b/docs/commands-legacy/listbox-insert-rows.md index 72f48b7ca5b48a..7f03432bf4cfce 100644 --- a/docs/commands-legacy/listbox-insert-rows.md +++ b/docs/commands-legacy/listbox-insert-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX INSERT ROWS** command inserts one or several new row(s) in the list box set in the *object* and *\** parameters. @@ -35,4 +32,14 @@ If the *rowPosition* value is higher than the total number of rows in the list b #### See also -[LISTBOX DELETE ROWS](listbox-delete-rows.md) \ No newline at end of file +[LISTBOX DELETE ROWS](listbox-delete-rows.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 913 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/listbox-move-column.md b/docs/commands-legacy/listbox-move-column.md index f95555be7b1f2b..d8ba569a96e341 100644 --- a/docs/commands-legacy/listbox-move-column.md +++ b/docs/commands-legacy/listbox-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX MOVE COLUMN** command moves the column designated by the *object* and *\** parameters by programming in the context of the form being executed (Application mode). The original form, generated in the Design mode, is not modified. @@ -42,4 +39,13 @@ You want to swap the 2nd and 3rd columns of the list box: #### See also -[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) \ No newline at end of file +[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1274 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-moved-column-number.md b/docs/commands-legacy/listbox-moved-column-number.md index f02edb291196ef..dcb49a4747d4d4 100644 --- a/docs/commands-legacy/listbox-moved-column-number.md +++ b/docs/commands-legacy/listbox-moved-column-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX MOVED COLUMN NUMBER** command returns two numbers in *oldPosition* and *newPosition* indicating respectively the previous position and the new position of the column moved in the list box, specified by the *object* and *\** parameters. @@ -32,4 +29,13 @@ This command must be used with the form event On Column Moved (see the [Form eve #### See also [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) \ No newline at end of file +[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 844 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-moved-row-number.md b/docs/commands-legacy/listbox-moved-row-number.md index 31aec02ce91630..a1833ad3005f43 100644 --- a/docs/commands-legacy/listbox-moved-row-number.md +++ b/docs/commands-legacy/listbox-moved-row-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX MOVED ROW NUMBER** command returns two numbers in *oldPosition* and *newPosition* indicating respectively the previous position and the new position of the row moved in the list box, specified by the *object* and *\** parameters. @@ -34,4 +31,13 @@ This command must be used with the form event On Row Moved (see the [Form event #### See also [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) \ No newline at end of file +[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 837 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-select-break.md b/docs/commands-legacy/listbox-select-break.md index c61c8e9db2f5c2..ab4decc087db82 100644 --- a/docs/commands-legacy/listbox-select-break.md +++ b/docs/commands-legacy/listbox-select-break.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SELECT BREAK** command can be used to select break rows in the list box object designated by the *object* and *\** parameters. The list box must be displayed in hierarchical mode. @@ -63,4 +60,13 @@ Here is the result: #### See also [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1117 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-select-row.md b/docs/commands-legacy/listbox-select-row.md index 44f062da40ee53..0feac4cd020f7a 100644 --- a/docs/commands-legacy/listbox-select-row.md +++ b/docs/commands-legacy/listbox-select-row.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX SELECT ROW command selects the row whose number is passed in *position* in the list box set in the *object* and *\** parameters. @@ -54,4 +51,13 @@ After execution of the method, the arrays are synchronized: if the source array [LISTBOX INSERT ROWS](listbox-insert-rows.md) [LISTBOX SELECT BREAK](listbox-select-break.md) [LISTBOX SELECT ROWS](listbox-select-rows.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 912 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-select-rows.md b/docs/commands-legacy/listbox-select-rows.md index 520339988f19d2..753fb3552900ab 100644 --- a/docs/commands-legacy/listbox-select-rows.md +++ b/docs/commands-legacy/listbox-select-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SELECT ROWS** command selects the rows of an entity selection or collection list box that correspond to the entities or objects in the *selection* parameter. @@ -85,4 +82,13 @@ Example with a collection of objects: #### See also -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1715 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-array.md b/docs/commands-legacy/listbox-set-array.md index bc80a6e815b645..6ee80e3ab9522f 100644 --- a/docs/commands-legacy/listbox-set-array.md +++ b/docs/commands-legacy/listbox-set-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -66,4 +63,13 @@ You want to set a row height array for a list box: #### See also [LISTBOX Get array](listbox-get-array.md) -[LISTBOX GET ARRAYS](listbox-get-arrays.md) \ No newline at end of file +[LISTBOX GET ARRAYS](listbox-get-arrays.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1279 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-auto-row-height.md b/docs/commands-legacy/listbox-set-auto-row-height.md index 4272c2f7c85ba0..e0b977fe9fb80b 100644 --- a/docs/commands-legacy/listbox-set-auto-row-height.md +++ b/docs/commands-legacy/listbox-set-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET AUTO ROW HEIGHT** command allows you to set the minimum or maximum row height *value* in the list box object designated using the *object* and *\** parameters. @@ -59,4 +56,13 @@ You want to set the minimum and maximum heights for a list box with an automatic [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1501 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-column-formula.md b/docs/commands-legacy/listbox-set-column-formula.md index c05f3cded0d4b6..25cc00a77f5717 100644 --- a/docs/commands-legacy/listbox-set-column-formula.md +++ b/docs/commands-legacy/listbox-set-column-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET COLUMN FORMULA** command modifies the *formula* associated with the column of the list box designated by the *object* and *\** parameters. Formulas can only be used when the “Data Source” property of the list box is either **Current Selection**, **Named Selection**, or **Collection or Entity Selection**. @@ -43,4 +40,13 @@ The *dataType* parameter designates the type of data resulting from the executio #### See also [LISTBOX Get column formula](listbox-get-column-formula.md) -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1203 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-column-width.md b/docs/commands-legacy/listbox-set-column-width.md index f18a4668cca1a9..746316c30c5cc9 100644 --- a/docs/commands-legacy/listbox-set-column-width.md +++ b/docs/commands-legacy/listbox-set-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET COLUMN WIDTH** command allows you to modify through programming the width of one or all column(s) of the object (list box, column or header) set using the *object* and *\** parameters. @@ -36,4 +33,13 @@ The optional *minWidth* and *maxWidth* parameters can be used to set limits for #### See also -[LISTBOX Get column width](listbox-get-column-width.md) \ No newline at end of file +[LISTBOX Get column width](listbox-get-column-width.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 833 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-footer-calculation.md b/docs/commands-legacy/listbox-set-footer-calculation.md index fe422b5e792812..fbded9c0a812c5 100644 --- a/docs/commands-legacy/listbox-set-footer-calculation.md +++ b/docs/commands-legacy/listbox-set-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET FOOTER CALCULATION** command sets the automatic calculation associated with the footer of the list box designated by the *object* and *\** parameters @@ -51,4 +48,13 @@ If the data type of a column or of even one column of the list box (when object #### See also -[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) \ No newline at end of file +[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1140 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-footers-height.md b/docs/commands-legacy/listbox-set-footers-height.md index 76f84dbef5e8c0..17f698fb04bcc2 100644 --- a/docs/commands-legacy/listbox-set-footers-height.md +++ b/docs/commands-legacy/listbox-set-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET FOOTERS HEIGHT** command modifies by programming the height of the footer row in the list box designated by the *object* and *\** parameters. @@ -36,4 +33,13 @@ Pass the height to set in the *height* parameter. By default, if you omit the *u #### See also -[LISTBOX Get footers height](listbox-get-footers-height.md) \ No newline at end of file +[LISTBOX Get footers height](listbox-get-footers-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1145 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-grid-color.md b/docs/commands-legacy/listbox-set-grid-color.md index dbbd937973a0f1..cc05736b89729b 100644 --- a/docs/commands-legacy/listbox-set-grid-color.md +++ b/docs/commands-legacy/listbox-set-grid-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET GRID COLOR** command allows you to modify the color of the grid in the list box object set using the *object* and *\** parameters. @@ -37,4 +34,13 @@ The *horizontal* and *vertical* parameters allow you to set the grid lines to wh [LISTBOX GET GRID COLORS](listbox-get-grid-colors.md) [LISTBOX SET GRID](listbox-set-grid.md) -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 842 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-grid.md b/docs/commands-legacy/listbox-set-grid.md index b7d6777b65eccd..8431d6447f377c 100644 --- a/docs/commands-legacy/listbox-set-grid.md +++ b/docs/commands-legacy/listbox-set-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET GRID** command allows you to display or hide the horizontal and/or vertical grid lines that make up the grid in the list box object set using the *object* and *\** parameters. @@ -31,4 +28,13 @@ Pass the Boolean values in *horizontal* and *vertical* that indicate if the corr [LISTBOX GET GRID](listbox-get-grid.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 841 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-headers-height.md b/docs/commands-legacy/listbox-set-headers-height.md index c3a9acbdc05ad7..5e3bb3e75346b6 100644 --- a/docs/commands-legacy/listbox-set-headers-height.md +++ b/docs/commands-legacy/listbox-set-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET HEADERS HEIGHT** command modifies by programming the height of the header row in the list box designated by the *object* and *\** parameters. @@ -40,4 +37,13 @@ Headers must respect the minimum height set by the system. This height is 24 pix #### See also -[LISTBOX Get headers height](listbox-get-headers-height.md) \ No newline at end of file +[LISTBOX Get headers height](listbox-get-headers-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1143 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-hierarchy.md b/docs/commands-legacy/listbox-set-hierarchy.md index 715d3a4280d9cb..7228825434711c 100644 --- a/docs/commands-legacy/listbox-set-hierarchy.md +++ b/docs/commands-legacy/listbox-set-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET HIERARCHY** command lets you configure the list box object designated by the *object* and *\** parameters in hierarchical or non-hierarchical mode. @@ -54,4 +51,13 @@ Definition of the aCountry, aRegion and aCity arrays as the hierarchy of a list #### See also -[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) \ No newline at end of file +[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1098 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-locked-columns.md b/docs/commands-legacy/listbox-set-locked-columns.md index 6577948ed4a064..7f4984eb533453 100644 --- a/docs/commands-legacy/listbox-set-locked-columns.md +++ b/docs/commands-legacy/listbox-set-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET LOCKED COLUMNS** command locks *numColumns* columns (starting from the first on the left) in the list box designated by the *object* and *\** parameters. @@ -33,4 +30,13 @@ To remove the column locking, pass 0 or a negative value in *numColumns*. #### See also [LISTBOX Get locked columns](listbox-get-locked-columns.md) -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1151 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-property.md b/docs/commands-legacy/listbox-set-property.md index ef82bc80157d98..f0a9327ab2cb6a 100644 --- a/docs/commands-legacy/listbox-set-property.md +++ b/docs/commands-legacy/listbox-set-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET PROPERTY** command sets the *value* for the *property* of the list box or list box column specified using the *object* and *\** parameters. @@ -86,4 +83,13 @@ You want to set a maximum width for the column whose name is "ProductNumber": *List Box* -[LISTBOX Get property](listbox-get-property.md) \ No newline at end of file +[LISTBOX Get property](listbox-get-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1440 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-row-color.md b/docs/commands-legacy/listbox-set-row-color.md index fb1de26122d0d3..74e0e4144174ad 100644 --- a/docs/commands-legacy/listbox-set-row-color.md +++ b/docs/commands-legacy/listbox-set-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -65,4 +62,13 @@ In an array type list box, we want to set colors for a row and for one cell in t *List Box* [LISTBOX Get row color](listbox-get-row-color.md) [LISTBOX Get row color as number](listbox-get-row-color-as-number.md) -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1270 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-row-font-style.md b/docs/commands-legacy/listbox-set-row-font-style.md index 2b2830ab6b49a2..2212e8ae775967 100644 --- a/docs/commands-legacy/listbox-set-row-font-style.md +++ b/docs/commands-legacy/listbox-set-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -79,4 +76,13 @@ After the second statement, all the cells of the third row change to underlined #### See also [LISTBOX Get row font style](listbox-get-row-font-style.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1268 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-row-height.md b/docs/commands-legacy/listbox-set-row-height.md index 2f5c0c434ed0a9..831804eff3fbc3 100644 --- a/docs/commands-legacy/listbox-set-row-height.md +++ b/docs/commands-legacy/listbox-set-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET ROW HEIGHT** command allows you to modify the height of the specified *row* in the list box object designated using the *object* and *\** parameters. @@ -84,4 +81,13 @@ On the other hand, if the code below is executed subsequently… [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1409 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-rows-height.md b/docs/commands-legacy/listbox-set-rows-height.md index 5ad96c1a0a7497..300b6b522f19ce 100644 --- a/docs/commands-legacy/listbox-set-rows-height.md +++ b/docs/commands-legacy/listbox-set-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET ROWS HEIGHT** command allows you to modify by programming the row height in the list box object set using the *object* and *\** parameters. @@ -38,4 +35,13 @@ By default, if you omit the *unit* parameter, the height is expressed in pixels. [LISTBOX Get rows height](listbox-get-rows-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 835 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-static-columns.md b/docs/commands-legacy/listbox-set-static-columns.md index 244a90b9394876..0dda6b7995092c 100644 --- a/docs/commands-legacy/listbox-set-static-columns.md +++ b/docs/commands-legacy/listbox-set-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET STATIC COLUMNS** command sets *numColumns* columns as static (starting from the first on the left) in the list box designated by the *object* and *\** parameters. @@ -29,4 +26,13 @@ Static columns cannot be moved within the list box. #### See also [LISTBOX Get static columns](listbox-get-static-columns.md) -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1153 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-set-table-source.md b/docs/commands-legacy/listbox-set-table-source.md index 385c6be72a9ab9..c4bd2915aaf032 100644 --- a/docs/commands-legacy/listbox-set-table-source.md +++ b/docs/commands-legacy/listbox-set-table-source.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET TABLE SOURCE** command can be used to modify the source of the data displayed in the listbox that is designated by the *\** and *object* parameters. @@ -39,4 +36,13 @@ If the listbox already contains columns, their contents will be updated after th #### See also -[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) \ No newline at end of file +[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1013 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/listbox-sort-columns.md b/docs/commands-legacy/listbox-sort-columns.md index 8955508b1eee67..69b48dc2ffba62 100644 --- a/docs/commands-legacy/listbox-sort-columns.md +++ b/docs/commands-legacy/listbox-sort-columns.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX SORT COLUMNS command applies a standard sort to the rows of the list box defined by the *object* and *\** parameters on the basis of one or more column value(s). @@ -36,3 +33,13 @@ You can define multi-level sorts: to do so, pass as many pairs (*colNum;order*) In conformity with the principle of list box operation, the columns are synchronized which means that the sorting of a column is automatically passed on to all the other columns of the object. **Note:** The **LISTBOX SORT COLUMNS** command does not take the *Sortable* listbox property into account. + + +#### Properties + +| | | +| --- | --- | +| Command number | 916 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/load-4d-view-document.md b/docs/commands-legacy/load-4d-view-document.md index 81ca0ee7ca5317..d42110780cc3f2 100644 --- a/docs/commands-legacy/load-4d-view-document.md +++ b/docs/commands-legacy/load-4d-view-document.md @@ -194,3 +194,13 @@ You will get the following result (stringified object): ``` **Note:** For more information about the format of the returned [object](# "Data structured as a native 4D object"), please contact the 4D technical services. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1528 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/load-list.md b/docs/commands-legacy/load-list.md index 9b28fdbce1a0ba..4ccb4a1512da39 100644 --- a/docs/commands-legacy/load-list.md +++ b/docs/commands-legacy/load-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Load list** creates a new hierarchical list whose contents are copied from the list and whose name you pass in *listName*. It then returns the list reference number to the newly created list. @@ -52,4 +49,13 @@ You create a database for the international market and you need to switch to dif [CLEAR LIST](clear-list.md) [Is a list](is-a-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 383 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/load-record.md b/docs/commands-legacy/load-record.md index db65083d1fb3e5..12008268863072 100644 --- a/docs/commands-legacy/load-record.md +++ b/docs/commands-legacy/load-record.md @@ -34,4 +34,13 @@ In multi-user and multi-process environments, when you need to modify an existin [Locked](locked.md) *Record Locking* -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 52 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/load-set.md b/docs/commands-legacy/load-set.md index 029ced12928f37..700c7e495dcca6 100644 --- a/docs/commands-legacy/load-set.md +++ b/docs/commands-legacy/load-set.md @@ -41,4 +41,14 @@ If the user clicks Cancel in the Open File dialog box, or there is an error duri #### See also -[SAVE SET](save-set.md) \ No newline at end of file +[SAVE SET](save-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 185 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/load-variables.md b/docs/commands-legacy/load-variables.md index 0c995d6b9f2b27..8405167d400091 100644 --- a/docs/commands-legacy/load-variables.md +++ b/docs/commands-legacy/load-variables.md @@ -44,4 +44,14 @@ If the variables are loaded properly, the OK system variable is set to 1; otherw [BLOB TO VARIABLE](blob-to-variable.md) [DOCUMENT TO BLOB](document-to-blob.md) [RECEIVE VARIABLE](receive-variable.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 74 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/docs/commands-legacy/localized-document-path.md b/docs/commands-legacy/localized-document-path.md index 37372a6c7b5390..74c943470b9baa 100644 --- a/docs/commands-legacy/localized-document-path.md +++ b/docs/commands-legacy/localized-document-path.md @@ -65,4 +65,13 @@ If the current language is, for example, French Canadian (fr-ca), the command re #### See also -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1105 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/localized-string.md b/docs/commands-legacy/localized-string.md index ab3900e84228c5..39b7dc2f867297 100644 --- a/docs/commands-legacy/localized-string.md +++ b/docs/commands-legacy/localized-string.md @@ -53,4 +53,14 @@ If the command is executed correctly, the OK variable is set to 1\. If *resName* #### See also -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 991 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/locked-by.md b/docs/commands-legacy/locked-by.md index 7a082a473eb153..2915d4dc53c160 100644 --- a/docs/commands-legacy/locked-by.md +++ b/docs/commands-legacy/locked-by.md @@ -39,4 +39,13 @@ If the record has been locked by a *$lock REST request*: #### See also [Locked](locked.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 353 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/locked-records-info.md b/docs/commands-legacy/locked-records-info.md index f623c86b8dd53a..7f59bc8191e55f 100644 --- a/docs/commands-legacy/locked-records-info.md +++ b/docs/commands-legacy/locked-records-info.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Locked records info** command returns an [object](# "Data structured as a native 4D object") containing different information about the currently locked record(s) in *aTable*. - -**Note:** The command works only with 4D and 4D Server. It returns an invalid object when called from 4D Remote. However, it can be called in this context if the "Execute on server" option is activated for the calling method. In this case, the object returned will contain information about the server. When called from a component, it always applies to the host database. +The **Locked records info** command returns an [object](# "Data structured as a native 4D object") containing different information about the currently locked record(s) in *aTable*.The command works only with 4D and 4D Server. It returns an invalid object when called from 4D Remote. However, it can be called in this context if the "Execute on server" option is activated for the calling method. In this case, the object returned will contain information about the server. When called from a component, it always applies to the host database. The returned object contains a "records" property which is a collection of objects: @@ -89,4 +87,13 @@ If the code is executed on a 4D Server and the locking is caused by a remote cli #### See also -[Locked](locked.md) \ No newline at end of file +[Locked](locked.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1316 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/locked.md b/docs/commands-legacy/locked.md index 278985ac87a37e..c1cbd9b025e62c 100644 --- a/docs/commands-legacy/locked.md +++ b/docs/commands-legacy/locked.md @@ -33,4 +33,13 @@ During transaction processing, [LOAD RECORD](load-record.md) and **Locked** are [Locked records info](locked-records-info.md) [LOAD RECORD](load-record.md) [LOCKED BY](locked-by.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 147 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/log-event.md b/docs/commands-legacy/log-event.md index edbb81f146d632..c79b45ead77ce3 100644 --- a/docs/commands-legacy/log-event.md +++ b/docs/commands-legacy/log-event.md @@ -63,4 +63,13 @@ Each time the database is opened, this information will be written in Windows’ #### See also -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 667 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/log-file-to-json.md b/docs/commands-legacy/log-file-to-json.md index b71270b4d4d57b..6138fd0cfe541a 100644 --- a/docs/commands-legacy/log-file-to-json.md +++ b/docs/commands-legacy/log-file-to-json.md @@ -95,4 +95,14 @@ The **LOG FILE TO JSON** command modifies the value of the OK and Document varia #### See also [Download HDI database](http://download.4d.com/Demos/4D%5Fv15%5FR4/ExportLogToJSON%5FHDI.zip) -[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) \ No newline at end of file +[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1352 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/docs/commands-legacy/log-file.md b/docs/commands-legacy/log-file.md index b092e1cf181032..5f50e57b7f8254 100644 --- a/docs/commands-legacy/log-file.md +++ b/docs/commands-legacy/log-file.md @@ -30,4 +30,14 @@ If the database operates with a log file, the system variable OK is set to 1\. T #### See also -[SELECT LOG FILE](select-log-file.md) \ No newline at end of file +[SELECT LOG FILE](select-log-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 928 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/log.md b/docs/commands-legacy/log.md index b816e41af8223b..20a60e4a6ba216 100644 --- a/docs/commands-legacy/log.md +++ b/docs/commands-legacy/log.md @@ -30,4 +30,13 @@ The following line displays 1: #### See also -[Exp](exp.md) \ No newline at end of file +[Exp](exp.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 22 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/longint-array-from-selection.md b/docs/commands-legacy/longint-array-from-selection.md index d40d851dc1c891..0155bb978b8df6 100644 --- a/docs/commands-legacy/longint-array-from-selection.md +++ b/docs/commands-legacy/longint-array-from-selection.md @@ -34,4 +34,13 @@ You want to retrieve the numbers of the records in the current selection: #### See also -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 647 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/longint-to-blob.md b/docs/commands-legacy/longint-to-blob.md index 9784431047fa17..50e8ce0103c0fa 100644 --- a/docs/commands-legacy/longint-to-blob.md +++ b/docs/commands-legacy/longint-to-blob.md @@ -113,4 +113,13 @@ After executing this code: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 550 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/lowercase.md b/docs/commands-legacy/lowercase.md index c093e27783bd2f..039e32e7cf9749 100644 --- a/docs/commands-legacy/lowercase.md +++ b/docs/commands-legacy/lowercase.md @@ -47,4 +47,13 @@ This example compares the results obtained according to whether or not the *\** #### See also -[Uppercase](uppercase.md) \ No newline at end of file +[Uppercase](uppercase.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 14 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/macintosh-command-down.md b/docs/commands-legacy/macintosh-command-down.md index 2c20f8c93f9730..ff6858bf132512 100644 --- a/docs/commands-legacy/macintosh-command-down.md +++ b/docs/commands-legacy/macintosh-command-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh command down** returns TRUE if the Macintosh command key is pressed. - -**Note:** When called on a Windows platform, **Macintosh command down** returns TRUE if the Windows Ctrl key is pressed. +**Macintosh command down** returns TRUE if the Macintosh command key is pressed.When called on a Windows platform, **Macintosh command down** returns TRUE if the Windows Ctrl key is pressed. #### Example @@ -30,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 546 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/macintosh-control-down.md b/docs/commands-legacy/macintosh-control-down.md index 961e11d16ee0c9..ade0bdaafed8aa 100644 --- a/docs/commands-legacy/macintosh-control-down.md +++ b/docs/commands-legacy/macintosh-control-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh control down** returns TRUE if the Macintosh Control key is pressed. - -**Note:** When called on a Windows platform, **Macintosh control down** always return FALSE. This Macintosh key has no equivalent on Windows. +**Macintosh control down** returns TRUE if the Macintosh Control key is pressed.When called on a Windows platform, **Macintosh control down** always return FALSE. This Macintosh key has no equivalent on Windows. #### Example @@ -30,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 544 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/macintosh-option-down.md b/docs/commands-legacy/macintosh-option-down.md index f8e6371d8ce27a..7b8a77b648b1ac 100644 --- a/docs/commands-legacy/macintosh-option-down.md +++ b/docs/commands-legacy/macintosh-option-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh option down** returns TRUE if the Macintosh Option key is pressed. - -**Note:** When called on a Windows platform, **Macintosh option down** returns TRUE if the Windows Alt key is pressed. +**Macintosh option down** returns TRUE if the Macintosh Option key is pressed.When called on a Windows platform, **Macintosh option down** returns TRUE if the Windows Alt key is pressed. #### Example @@ -30,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh control down](macintosh-control-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 545 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/match-regex.md b/docs/commands-legacy/match-regex.md index e64b3e5b14eca1..2dde8cab4a3a78 100644 --- a/docs/commands-legacy/match-regex.md +++ b/docs/commands-legacy/match-regex.md @@ -107,3 +107,14 @@ Add a star to the end of one of the two previous syntaxes. #### Error management In the event of an error, the command generates an error that you can intercept via a method installed by the [ON ERR CALL](on-err-call.md) command. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1019 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/max.md b/docs/commands-legacy/max.md index c42072c504ece2..cfb025347c6652 100644 --- a/docs/commands-legacy/max.md +++ b/docs/commands-legacy/max.md @@ -68,4 +68,14 @@ For an example of computing an object field attribute, please refer to the examp #### See also -[Min](min.md) \ No newline at end of file +[Min](min.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 3 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/maximize-window.md b/docs/commands-legacy/maximize-window.md index 20cb60e243b557..8b2c428f15aa18 100644 --- a/docs/commands-legacy/maximize-window.md +++ b/docs/commands-legacy/maximize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The MAXIMIZE WINDOW command triggers the expansion of the window whose reference number was passed in *window*. If this parameter is omitted, the effect is the same but is applied to all the frontmost windows of the current process (Windows) or to the frontmost window of the current process (Mac OS). @@ -84,4 +81,13 @@ In this context, when the user clicks on the button: [Is window maximized](is-window-maximized.md) [MINIMIZE WINDOW](minimize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 453 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/memory-statistics.md b/docs/commands-legacy/memory-statistics.md index 25796e13944e4e..8e8a0035063f6c 100644 --- a/docs/commands-legacy/memory-statistics.md +++ b/docs/commands-legacy/memory-statistics.md @@ -26,4 +26,13 @@ After the command has been executed, the statistics are provided in the *arrName #### See also -[Cache info](cache-info.md) \ No newline at end of file +[Cache info](cache-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1118 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/menu-bar-height.md b/docs/commands-legacy/menu-bar-height.md index a11228e371621a..89e2ddc0000413 100644 --- a/docs/commands-legacy/menu-bar-height.md +++ b/docs/commands-legacy/menu-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Menu bar height returns the height of the menu bar, expressed in pixels. @@ -31,4 +28,13 @@ The command returns 0: [HIDE MENU BAR](hide-menu-bar.md) [Menu bar screen](menu-bar-screen.md) -[SHOW MENU BAR](show-menu-bar.md) \ No newline at end of file +[SHOW MENU BAR](show-menu-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 440 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/menu-bar-screen.md b/docs/commands-legacy/menu-bar-screen.md index 412531077494da..8d5ee6ad79b359 100644 --- a/docs/commands-legacy/menu-bar-screen.md +++ b/docs/commands-legacy/menu-bar-screen.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Menu bar screen returns the number of the screen where the menu bar is located. @@ -25,4 +22,13 @@ displayed_sidebar: docs #### See also [Count screens](count-screens.md) -[Menu bar height](menu-bar-height.md) \ No newline at end of file +[Menu bar height](menu-bar-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 441 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/menu-selected.md b/docs/commands-legacy/menu-selected.md index b86adb6d3a755f..3e3bc4f2ed5c2e 100644 --- a/docs/commands-legacy/menu-selected.md +++ b/docs/commands-legacy/menu-selected.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Menu selected** is used only when forms are displayed. It detects which menu command has been chosen from a menu and, in the case of a hierarchical submenu, returns the reference of the submenu. @@ -61,4 +58,14 @@ The following form method uses **Menu selected** to supply the menu and menu ite #### See also -*Managing Menus* \ No newline at end of file +*Managing Menus* + +#### Properties + +| | | +| --- | --- | +| Command number | 152 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/message.md b/docs/commands-legacy/message.md index 02847b14089212..6dae0e7c3d8548 100644 --- a/docs/commands-legacy/message.md +++ b/docs/commands-legacy/message.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **MESSAGE** command is usually used to inform the user of some activity. It displays *message* on the screen in a special message window that opens and closes each time you call **MESSAGE**, unless you work with a window you previously opened using [Open window](open-window.md) (see the following details). The message is temporary and is erased as soon as a form is displayed or the method stops executing. If another **MESSAGE** is executed, the old message is erased. @@ -114,4 +111,13 @@ This provides the following result (shown here on Windows): [CLOSE WINDOW](close-window.md) [ERASE WINDOW](erase-window.md) [GOTO XY](goto-xy.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 88 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/messages-off.md b/docs/commands-legacy/messages-off.md index ac608559d56ad3..1cd9718811d71d 100644 --- a/docs/commands-legacy/messages-off.md +++ b/docs/commands-legacy/messages-off.md @@ -66,4 +66,13 @@ The following example turns off the progress meter before doing a sort, and then #### See also -[MESSAGES ON](messages-on.md) \ No newline at end of file +[MESSAGES ON](messages-on.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 175 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/messages-on.md b/docs/commands-legacy/messages-on.md index 771fdff22ce457..51a7bafaea0bd2 100644 --- a/docs/commands-legacy/messages-on.md +++ b/docs/commands-legacy/messages-on.md @@ -18,4 +18,13 @@ displayed_sidebar: docs #### See also -[MESSAGES OFF](messages-off.md) \ No newline at end of file +[MESSAGES OFF](messages-off.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 181 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/method-called-on-error.md b/docs/commands-legacy/method-called-on-error.md index 429348b833016d..5f6b9e93977f9b 100644 --- a/docs/commands-legacy/method-called-on-error.md +++ b/docs/commands-legacy/method-called-on-error.md @@ -44,4 +44,13 @@ This command is particularly useful in the context of components because it enab #### See also *Error Handler* -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 704 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/method-called-on-event.md b/docs/commands-legacy/method-called-on-event.md index 326b7f1d443878..d1ae698bcb943a 100644 --- a/docs/commands-legacy/method-called-on-event.md +++ b/docs/commands-legacy/method-called-on-event.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Method called on event** command returns the name of the method installed by the [ON EVENT CALL](on-event-call.md) command. @@ -24,4 +21,13 @@ If no such method has been installed, an empty string ("") is returned. #### See also -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 705 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-get-attribute.md b/docs/commands-legacy/method-get-attribute.md index 84aeb419b67b61..ba1fc855d6293c 100644 --- a/docs/commands-legacy/method-get-attribute.md +++ b/docs/commands-legacy/method-get-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD Get attribute** command returns the value of the *attribType* attribute for the project method designated by the *path* parameter. This command only works with project methods. If you pass an invalid *path*, an error is generated. @@ -41,4 +38,13 @@ The command returns **True** when an attribute is selected and **False** if it i #### See also -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1169 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-get-attributes.md b/docs/commands-legacy/method-get-attributes.md index e0603127958d28..8f95a314bd244d 100644 --- a/docs/commands-legacy/method-get-attributes.md +++ b/docs/commands-legacy/method-get-attributes.md @@ -59,4 +59,13 @@ After execution, $att contains, for example: #### See also -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1334 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/method-get-code.md b/docs/commands-legacy/method-get-code.md index 15981ac3416793..4a08272462f17b 100644 --- a/docs/commands-legacy/method-get-code.md +++ b/docs/commands-legacy/method-get-code.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET CODE** command returns, in the *code* parameter, the contents of the method(s) designated by the *path* parameter. This command can return the code of all types of methods: database methods, class definitions, triggers, project methods, form methods and object methods. @@ -120,4 +117,13 @@ The resulting document will contain: #### See also [METHOD SET CODE](method-set-code.md) -*Using tokens in formulas* \ No newline at end of file +*Using tokens in formulas* + +#### Properties + +| | | +| --- | --- | +| Command number | 1190 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-get-comments.md b/docs/commands-legacy/method-get-comments.md index 27a49e774336d2..7d5c7740ba3991 100644 --- a/docs/commands-legacy/method-get-comments.md +++ b/docs/commands-legacy/method-get-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET COMMENTS** command returns, in the *comments* parameter, the documentation of the method(s) designated by the *path* parameter. @@ -55,4 +52,13 @@ If the command is executed from a component, it applies by default to the compon #### See also -[METHOD SET COMMENTS](method-set-comments.md) \ No newline at end of file +[METHOD SET COMMENTS](method-set-comments.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1189 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-get-folders.md b/docs/commands-legacy/method-get-folders.md index 25e8ceae5a45cb..85ae61da544a44 100644 --- a/docs/commands-legacy/method-get-folders.md +++ b/docs/commands-legacy/method-get-folders.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET FOLDERS** command returns, in the *arrNames* array, the names of folders created on the Home page of the 4D Explorer: @@ -32,4 +29,13 @@ If the command is executed from a component, it returns by default the paths of #### See also -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1206 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-get-modification-date.md b/docs/commands-legacy/method-get-modification-date.md index 4c07faf69d9ae9..bba7530a3dd078 100644 --- a/docs/commands-legacy/method-get-modification-date.md +++ b/docs/commands-legacy/method-get-modification-date.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET MODIFICATION DATE** command returns, in the *modDate* and *modTime* parameters, the dates and times of the last modification of the method(s) designated by the *path* parameter. @@ -70,3 +67,13 @@ You want to get modification dates for methods in a module that are prefixed wit ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1170 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-get-names.md b/docs/commands-legacy/method-get-names.md index 992161c7010856..e36e0ed0d24225 100644 --- a/docs/commands-legacy/method-get-names.md +++ b/docs/commands-legacy/method-get-names.md @@ -39,3 +39,13 @@ Here are a few typical examples of use:   // List of project methods in the host database beginning with a specific string  METHOD GET NAMES(t_Names;"web_@";*) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1166 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/method-get-path.md b/docs/commands-legacy/method-get-path.md index ed06ee0b2a1fc6..667707ea1c3142 100644 --- a/docs/commands-legacy/method-get-path.md +++ b/docs/commands-legacy/method-get-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD Get path** command returns the full internal pathname of a method. @@ -66,4 +63,13 @@ If the command is executed from a component, it returns by default the paths of [Current method path](current-method-path.md) [METHOD OPEN PATH](method-open-path.md) -[METHOD RESOLVE PATH](method-resolve-path.md) \ No newline at end of file +[METHOD RESOLVE PATH](method-resolve-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1164 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-get-paths-form.md b/docs/commands-legacy/method-get-paths-form.md index 629c2fbaff5e8a..a34df8859964f2 100644 --- a/docs/commands-legacy/method-get-paths-form.md +++ b/docs/commands-legacy/method-get-paths-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET PATHS FORM** command fills the *arrPaths* array with the internal pathnames and names of the methods for all form objects as well as form methods. Form methods are labeled {formMethod}. @@ -71,4 +68,13 @@ List of all objects of the "input" form for the \[Employees\] table from a compo #### See also -[FORM GET NAMES](form-get-names.md) \ No newline at end of file +[FORM GET NAMES](form-get-names.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1168 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-get-paths.md b/docs/commands-legacy/method-get-paths.md index 83f9ffaee4e258..0fe948ac21920e 100644 --- a/docs/commands-legacy/method-get-paths.md +++ b/docs/commands-legacy/method-get-paths.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET PATHS** command fills the *arrPaths* array with the internal pathnames and names of methods in the application that are of the type specified by the *methodType* parameter. @@ -86,4 +83,13 @@ Refer to the example of the [METHOD SET CODE](method-set-code.md) command. #### See also [Current method path](current-method-path.md) -[METHOD GET FOLDERS](method-get-folders.md) \ No newline at end of file +[METHOD GET FOLDERS](method-get-folders.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1163 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-open-path.md b/docs/commands-legacy/method-open-path.md index 4798a0d1baedf8..f343feddb990fb 100644 --- a/docs/commands-legacy/method-open-path.md +++ b/docs/commands-legacy/method-open-path.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD OPEN PATH** command opens, in the 4D Method editor, the method whose internal pathname is passed in the *path* parameter. @@ -33,4 +30,13 @@ You can execute this command from a component, but in this case, you must pass t #### See also *Design Object Access Commands* -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1213 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-resolve-path.md b/docs/commands-legacy/method-resolve-path.md index e463c51b59edd0..9f2da17a123a62 100644 --- a/docs/commands-legacy/method-resolve-path.md +++ b/docs/commands-legacy/method-resolve-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD RESOLVE PATH** command parses the internal path name passed in the *path* parameter and returns its different components in the *methodType*, *ptrTable*, *objectName*, and *formObjectName* parameters. @@ -84,4 +81,13 @@ Resolution of a path for an object of a table form method: #### See also -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1165 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-set-access-mode.md b/docs/commands-legacy/method-set-access-mode.md index 9de6696f66be89..239d7170fabf48 100644 --- a/docs/commands-legacy/method-set-access-mode.md +++ b/docs/commands-legacy/method-set-access-mode.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD SET ACCESS MODE** command sets the behavior for 4D when you attempt to write access an object already loaded for modification by another user or process. The scope of this command is the current session. @@ -27,3 +24,13 @@ In *mode*, you pass one of the following constants of the *Design Object Access* | On object locked abort | Integer | 0 | Loading of object is aborted (default functioning) | | On object locked confirm | Integer | 2 | 4D displays a dialog box so that you can choose to try again or to abort. In remote mode, this option is not supported (loading is aborted) | | On object locked retry | Integer | 1 | 4D keeps attempting to load the object until it has been released | + + +#### Properties + +| | | +| --- | --- | +| Command number | 1191 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-set-attribute.md b/docs/commands-legacy/method-set-attribute.md index 391d816929e0a6..59b6ea63ec1399 100644 --- a/docs/commands-legacy/method-set-attribute.md +++ b/docs/commands-legacy/method-set-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD SET ATTRIBUTE** command sets the value(s) of the *attribType* attribute(s) for the project method designated by the *path* parameter. This command only works with project methods. If you pass an invalid *path*, an error is generated. @@ -69,4 +66,13 @@ Setting several attribute/value pairs: *Design Object Access* [METHOD Get attribute](method-get-attribute.md) -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1192 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-set-attributes.md b/docs/commands-legacy/method-set-attributes.md index 4a80e299907cf3..2d2b25e6a617c3 100644 --- a/docs/commands-legacy/method-set-attributes.md +++ b/docs/commands-legacy/method-set-attributes.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD SET ATTRIBUTES** command allows you to set the *attributes* values for the method(s) specified in the *path* parameter. @@ -53,4 +50,13 @@ You want to set a single attribute: #### See also [METHOD GET ATTRIBUTES](method-get-attributes.md) -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1335 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-set-code.md b/docs/commands-legacy/method-set-code.md index a5dec7254a9036..7a478064861e11 100644 --- a/docs/commands-legacy/method-set-code.md +++ b/docs/commands-legacy/method-set-code.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD SET CODE** command modifies the code of the method(s) designated by the *path* parameter with the contents passed in the *code* parameter. @@ -99,4 +96,13 @@ This example exports and imports all the project methods of an application: #### See also -[METHOD GET CODE](method-get-code.md) \ No newline at end of file +[METHOD GET CODE](method-get-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1194 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/method-set-comments.md b/docs/commands-legacy/method-set-comments.md index 392a2a54153309..2b6f3592c07887 100644 --- a/docs/commands-legacy/method-set-comments.md +++ b/docs/commands-legacy/method-set-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD SET COMMENTS** command replaces the documentation of the method(s) designated by the *path* parameter by those specified in the *comments* parameter. @@ -63,4 +60,13 @@ Add a modification date to an existing trigger documentation: #### See also -[METHOD GET COMMENTS](method-get-comments.md) \ No newline at end of file +[METHOD GET COMMENTS](method-get-comments.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1193 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/milliseconds.md b/docs/commands-legacy/milliseconds.md index 13d7e5298470ca..47147b53dd4460 100644 --- a/docs/commands-legacy/milliseconds.md +++ b/docs/commands-legacy/milliseconds.md @@ -46,4 +46,13 @@ The following code waits up to 5 seconds for a locked record to become unlocked [Current time](current-time.md) [Tickcount](tickcount.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 459 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/min.md b/docs/commands-legacy/min.md index a0033ca7cf183d..360e26b52bdf83 100644 --- a/docs/commands-legacy/min.md +++ b/docs/commands-legacy/min.md @@ -76,4 +76,14 @@ For an example of computing an object field attribute, please refer to the examp #### See also -[Max](max.md) \ No newline at end of file +[Max](max.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 4 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/minimize-window.md b/docs/commands-legacy/minimize-window.md index 5ac41a9037ff2b..a03599af9f2333 100644 --- a/docs/commands-legacy/minimize-window.md +++ b/docs/commands-legacy/minimize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The MINIMIZE WINDOW command sets the size of the window whose number is passed as *window* to the size it was before being maximized. If *window* is omitted, the command applies to each window of the application (Windows) or to the frontmost window of the process (on Mac OS). @@ -49,4 +46,13 @@ Mac OS #### See also [MAXIMIZE WINDOW](maximize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 454 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/mobile-app-refresh-sessions.md b/docs/commands-legacy/mobile-app-refresh-sessions.md index 53331a617b1321..ebf7d5b379c5b0 100644 --- a/docs/commands-legacy/mobile-app-refresh-sessions.md +++ b/docs/commands-legacy/mobile-app-refresh-sessions.md @@ -44,4 +44,13 @@ You want to reset all current sessions for all mobile applications: #### See also -[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) \ No newline at end of file +[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1596 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/mod.md b/docs/commands-legacy/mod.md index b24a8369e2288e..c65799002f5ebc 100644 --- a/docs/commands-legacy/mod.md +++ b/docs/commands-legacy/mod.md @@ -19,8 +19,6 @@ displayed_sidebar: docs The **Mod** command returns the remainder of the Integer division of *number1* by *number2*. -**Notes:** - * **Mod** accepts Integer, Long Integer, and Real expressions. However, if *number1* or *number2* are real numbers, the numbers are first rounded and then **Mod** is calculated. * Be careful when using **Mod** with real numbers of a large size (above 2^31) since, in this case, its operation may reach the limits of the calculation capacities of standard processors. @@ -37,3 +35,13 @@ The following example illustrates how the Mod function works with different argu  vlResult:=Mod(4;2) // vlResult gets 0  vlResult:=Mod(3.5;2) // vlResult gets 0 ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 98 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/modified-record.md b/docs/commands-legacy/modified-record.md index b3ae50d766e489..f26baa3ee532df 100644 --- a/docs/commands-legacy/modified-record.md +++ b/docs/commands-legacy/modified-record.md @@ -41,4 +41,13 @@ The following example shows a typical use for **Modified record**: [Modified](modified.md) [Old](old.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 314 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/modified.md b/docs/commands-legacy/modified.md index 8624604692c00c..9357adf0ebf93b 100644 --- a/docs/commands-legacy/modified.md +++ b/docs/commands-legacy/modified.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Modified** returns [True](true.md "True") if *field* has been programmatically assigned a value or has been edited during data entry. The **Modified** command must only be used in a form method (or a subroutine called by a form method). @@ -69,4 +66,13 @@ You select a record for the table *\[anyTable\]*, then you call multiple subrout #### See also [Form event code](../commands/form-event-code.md) -[Old](old.md) \ No newline at end of file +[Old](old.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 32 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/modify-record.md b/docs/commands-legacy/modify-record.md index e2beac87c4312c..dc82fadeb04f91 100644 --- a/docs/commands-legacy/modify-record.md +++ b/docs/commands-legacy/modify-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **MODIFY RECORD** command modifies the current record for the table *aTable* or for the default table if you omit the *aTable* parameter. **MODIFY RECORD** loads the record, if it is not already loaded for the current process, and displays the current input form. If there is no current record, then **MODIFY RECORD** does nothing. **MODIFY RECORD** does not affect the current selection. @@ -50,4 +47,15 @@ Accepting the record sets the OK system variable to 1; canceling it sets the OK [Locked](locked.md) [Modified record](modified-record.md) [READ WRITE](read-write.md) -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 57 | +| Thread safe | ✗ | +| Modifies variables | OK | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/modify-selection.md b/docs/commands-legacy/modify-selection.md index cdd1a32f101374..fdb7cc48c9171d 100644 --- a/docs/commands-legacy/modify-selection.md +++ b/docs/commands-legacy/modify-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **MODIFY SELECTION** does almost the same thing as [DISPLAY SELECTION](display-selection.md). Refer to the description of [DISPLAY SELECTION](display-selection.md) for details. The differences between the two commands are: @@ -32,4 +29,14 @@ displayed_sidebar: docs [DISPLAY SELECTION](display-selection.md) [Form event code](../commands/form-event-code.md) -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 204 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/monitored-activity.md b/docs/commands-legacy/monitored-activity.md index 4ef250516abbd0..eecfbd598a75bc 100644 --- a/docs/commands-legacy/monitored-activity.md +++ b/docs/commands-legacy/monitored-activity.md @@ -138,4 +138,13 @@ See example for **[START MONITORING ACTIVITY](start-monitoring-activity.md)** #### See also [START MONITORING ACTIVITY](start-monitoring-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1713 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/month-of.md b/docs/commands-legacy/month-of.md index cba837436cec3e..e0cd5da28d4afd 100644 --- a/docs/commands-legacy/month-of.md +++ b/docs/commands-legacy/month-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Month of** command returns the month of *aDate*. - -**Note:** **Month of** returns the number of the month, not the name (see Example 1). +The **Month of** command returns the month of *aDate*.**Month of** returns the number of the month, not the name (see Example 1). To compare the value returned by this function, 4D provides the following predefined constants, found in the "*Days and Months*" theme: @@ -54,4 +52,13 @@ See example for the [Current date](current-date.md) command. #### See also [Day of](day-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 24 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/mouse-position.md b/docs/commands-legacy/mouse-position.md index 25a95f55201e33..9233e423381c8a 100644 --- a/docs/commands-legacy/mouse-position.md +++ b/docs/commands-legacy/mouse-position.md @@ -39,4 +39,13 @@ See the example for the [Pop up menu](pop-up-menu.md) command. [ON EVENT CALL](on-event-call.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 468 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/move-document.md b/docs/commands-legacy/move-document.md index 0687e4abab10e2..90122d477040b3 100644 --- a/docs/commands-legacy/move-document.md +++ b/docs/commands-legacy/move-document.md @@ -50,4 +50,14 @@ The following example moves the document DocName: #### See also -[COPY DOCUMENT](copy-document.md) \ No newline at end of file +[COPY DOCUMENT](copy-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 540 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/multi-sort-array.md b/docs/commands-legacy/multi-sort-array.md index 1ce7b60311d456..5fbe2304231d4d 100644 --- a/docs/commands-legacy/multi-sort-array.md +++ b/docs/commands-legacy/multi-sort-array.md @@ -108,4 +108,13 @@ If you want the array of names be used as a third sort criterion, you need to as [ORDER BY](order-by.md) [SELECTION TO ARRAY](selection-to-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 718 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/new-data-key.md b/docs/commands-legacy/new-data-key.md index ca18a87cc56bff..5d07cbbb4e8ba4 100644 --- a/docs/commands-legacy/new-data-key.md +++ b/docs/commands-legacy/new-data-key.md @@ -54,4 +54,13 @@ You want to save an encryption key in a .4DKeyChain file: [Discover data key](discover-data-key.md) [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[Register data key](register-data-key.md) \ No newline at end of file +[Register data key](register-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1611 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/new-list.md b/docs/commands-legacy/new-list.md index 01e9e1be4561fe..902a53006a94fc 100644 --- a/docs/commands-legacy/new-list.md +++ b/docs/commands-legacy/new-list.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **New list** creates a new, empty hierarchical list in memory and returns its unique list reference number. @@ -46,4 +43,13 @@ See example for the [APPEND TO LIST](append-to-list.md) command. [DELETE FROM LIST](delete-from-list.md) [INSERT IN LIST](insert-in-list.md) [LIST TO BLOB](list-to-blob.md) -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 375 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/new-log-file.md b/docs/commands-legacy/new-log-file.md index cd923d8489fea2..5fc7463d4ed255 100644 --- a/docs/commands-legacy/new-log-file.md +++ b/docs/commands-legacy/new-log-file.md @@ -30,3 +30,14 @@ The file is renamed with the current backup numbers of the database and of the l In the event of an error, the command generates a code that can be intercepted using the [ON ERR CALL](on-err-call.md "ON ERR CALL") command. + + +#### Properties + +| | | +| --- | --- | +| Command number | 926 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/new-object.md b/docs/commands-legacy/new-object.md index 6ffda7d67f38eb..377d743d3d0e69 100644 --- a/docs/commands-legacy/new-object.md +++ b/docs/commands-legacy/new-object.md @@ -105,4 +105,13 @@ With this command, you can easily handle objects in loops: #### See also -[New shared object](new-shared-object.md) \ No newline at end of file +[New shared object](new-shared-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1471 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/new-process.md b/docs/commands-legacy/new-process.md index 863a735099466d..236ff32ef39f26 100644 --- a/docs/commands-legacy/new-process.md +++ b/docs/commands-legacy/new-process.md @@ -105,4 +105,13 @@ In the Menu Bar editor, you replace the method ADD CUSTOMERS with the method STA [Execute on server](execute-on-server.md) *Preemptive 4D processes* -*Processes* \ No newline at end of file +*Processes* + +#### Properties + +| | | +| --- | --- | +| Command number | 317 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/new-shared-object.md b/docs/commands-legacy/new-shared-object.md index f64a266fdb502b..9c98a27729c3e1 100644 --- a/docs/commands-legacy/new-shared-object.md +++ b/docs/commands-legacy/new-shared-object.md @@ -66,4 +66,13 @@ You want to create and modify a shared object. The structure must be called for [New object](new-object.md) [New shared collection](../commands/new-shared-collection.md) -*Shared objects and shared collections* \ No newline at end of file +*Shared objects and shared collections* + +#### Properties + +| | | +| --- | --- | +| Command number | 1526 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/next-record.md b/docs/commands-legacy/next-record.md index 91068e453112b1..13fada8ca2019e 100644 --- a/docs/commands-legacy/next-record.md +++ b/docs/commands-legacy/next-record.md @@ -29,4 +29,14 @@ See the example for [DISPLAY RECORD](display-record.md). [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 51 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/docs/commands-legacy/next-window.md b/docs/commands-legacy/next-window.md index 62ba00bfaeb07b..1908d00df9ce6b 100644 --- a/docs/commands-legacy/next-window.md +++ b/docs/commands-legacy/next-window.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Next window command returns the window reference number of the window “behind” the window you pass in *window* (based on the front-to-back order of the windows). #### See also -[Frontmost window](frontmost-window.md) \ No newline at end of file +[Frontmost window](frontmost-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 448 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/no-default-table.md b/docs/commands-legacy/no-default-table.md index 0b04f066259bfa..8e24429a2ecae5 100644 --- a/docs/commands-legacy/no-default-table.md +++ b/docs/commands-legacy/no-default-table.md @@ -41,4 +41,13 @@ In a database containing a project form named “TheForm” and a table form wit #### See also -[DEFAULT TABLE](default-table.md) \ No newline at end of file +[DEFAULT TABLE](default-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 993 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/not.md b/docs/commands-legacy/not.md index 15a5317921e8d2..66108d287244d4 100644 --- a/docs/commands-legacy/not.md +++ b/docs/commands-legacy/not.md @@ -31,4 +31,13 @@ This example first assigns True to a variable, then changes the variable value t #### See also [False](false.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 34 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/notify-resources-folder-modification.md b/docs/commands-legacy/notify-resources-folder-modification.md index 2c3d2757573a2a..e595c00a1b92dc 100644 --- a/docs/commands-legacy/notify-resources-folder-modification.md +++ b/docs/commands-legacy/notify-resources-folder-modification.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The NOTIFY RESOURCES FOLDER MODIFICATION command "forces" 4D Server to send a notification to all the connected 4D machines indicating that the Resources folder of the database has been modified so that they can synchronize their local Resources folder. @@ -36,4 +33,13 @@ Current settings are set either: #### See also -[Get 4D folder](get-4d-folder.md) \ No newline at end of file +[Get 4D folder](get-4d-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1052 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/null.md b/docs/commands-legacy/null.md index c718fd2e77f4d8..40743d1e97f7d9 100644 --- a/docs/commands-legacy/null.md +++ b/docs/commands-legacy/null.md @@ -129,4 +129,13 @@ Here are the different results of the [Undefined](undefined.md) command as well [Is field value Null](is-field-value-null.md) [OB SET NULL](ob-set-null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1517 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/num.md b/docs/commands-legacy/num.md index 953cd9a622e723..795d8d3a3bf954 100644 --- a/docs/commands-legacy/num.md +++ b/docs/commands-legacy/num.md @@ -82,4 +82,13 @@ This example compares the results obtained depending on the “current” separa [Bool](bool.md) [GET SYSTEM FORMAT](get-system-format.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 11 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-class.md b/docs/commands-legacy/ob-class.md index b6dabea96fbb05..b6e835f4e90bf8 100644 --- a/docs/commands-legacy/ob-class.md +++ b/docs/commands-legacy/ob-class.md @@ -42,4 +42,13 @@ Then, in a method, you can write: #### See also -[OB Instance of](ob-instance-of.md) \ No newline at end of file +[OB Instance of](ob-instance-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1730 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-copy.md b/docs/commands-legacy/ob-copy.md index 3fe2c1d89b27b0..2dd11e42724c16 100644 --- a/docs/commands-legacy/ob-copy.md +++ b/docs/commands-legacy/ob-copy.md @@ -20,9 +20,6 @@ displayed_sidebar: docs #### Description The **OB Copy** command returns an object containing a complete (deep) copy of the properties, sub-objects and values for the *object*. - -* First syntax: **OB Copy(object{; resolvePtrs})** - If *object* contains pointer type values, by default the copy also contains the pointers. However, you can resolve pointers when copying by passing **True** in the *resolvePtrs* parameter. In this case, each pointer present as a value in *object* is evaluated when copying and its dereferenced value is used. **Note:** If properties of *object* are shared objects or shared collections, they become regular (not shared) objects or collections in the returned copy. Use the second syntax if you want to return shared elements (see below). @@ -166,4 +163,13 @@ We want to copy *$sharedObj* in *$sharedColl* but since they belong to different #### See also [OB Get](ob-get.md) -*Shared objects and shared collections* \ No newline at end of file +*Shared objects and shared collections* + +#### Properties + +| | | +| --- | --- | +| Command number | 1225 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-entries.md b/docs/commands-legacy/ob-entries.md index 700597d76b421a..923751c1cf3b30 100644 --- a/docs/commands-legacy/ob-entries.md +++ b/docs/commands-legacy/ob-entries.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OB Entries** command returns a collection of objects containing the contents of the *object* as key / value property pairs. @@ -56,4 +53,13 @@ Using an object as an hash map (key / value system) provides a quick and direct #### See also [OB Keys](ob-keys.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1720 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/ob-get-array.md b/docs/commands-legacy/ob-get-array.md index a1ea8a4db1f1a3..7c0035057eb6c2 100644 --- a/docs/commands-legacy/ob-get-array.md +++ b/docs/commands-legacy/ob-get-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB GET ARRAY** command retrieves, in *array*, the array of values stored in the *property* of the language object designated by the *object* parameter. - -*object* can be an object variable or a 4D object field. +The **OB GET ARRAY** command retrieves, in *array*, the array of values stored in the *property* of the language object designated by the *object* parameter.can be an object variable or a 4D object field. In the *property* parameter, pass the label of the property to be read. Note that the *property* parameter is case sensitive. @@ -52,4 +50,13 @@ We want to change a value in the first element of the array: #### See also [OB SET ARRAY](ob-set-array.md) -*Type conversions between collections and 4D arrays* \ No newline at end of file +*Type conversions between collections and 4D arrays* + +#### Properties + +| | | +| --- | --- | +| Command number | 1229 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-get-property-names.md b/docs/commands-legacy/ob-get-property-names.md index 2a173f4cccd5fb..d8686473316eae 100644 --- a/docs/commands-legacy/ob-get-property-names.md +++ b/docs/commands-legacy/ob-get-property-names.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB GET PROPERTY NAMES** command returns, in *arrProperties*, the names of the properties contained in the language object designated by the *object* parameter. - -*object* can be an object varialble or a 4D object field. +The **OB GET PROPERTY NAMES** command returns, in *arrProperties*, the names of the properties contained in the language object designated by the *object* parameter.can be an object varialble or a 4D object field. Pass a text array in the *arrProperties* parameter. If the array does not exist, the command creates and sizes it automatically. @@ -97,4 +95,13 @@ Using an object array element: #### See also [OB Get type](ob-get-type.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1232 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-get-type.md b/docs/commands-legacy/ob-get-type.md index ba28c592e88aa8..b68900243b148f 100644 --- a/docs/commands-legacy/ob-get-type.md +++ b/docs/commands-legacy/ob-get-type.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB Get type** command returns the type of value associated with the *property* of the language *object*. - -*object* can be an object varialble or a 4D object field.. +The **OB Get type** command returns the type of value associated with the *property* of the language *object*.can be an object varialble or a 4D object field.. In the *property* parameter, pass the label of the property whose type you want to find out. Note that the *property* parameter is case sensitive. @@ -53,4 +51,13 @@ We want to get the type of standard values: #### See also [OB GET PROPERTY NAMES](ob-get-property-names.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1230 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-get.md b/docs/commands-legacy/ob-get.md index f315a6c9bb6476..77cacf8de7acc9 100644 --- a/docs/commands-legacy/ob-get.md +++ b/docs/commands-legacy/ob-get.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -The **OB Get** command returns the current value of the *property* of the *object*, optionally converted into the *type* specified. - -*object* can be an object varialble or a 4D object field. +The **OB Get** command returns the current value of the *property* of the *object*, optionally converted into the *type* specified.can be an object varialble or a 4D object field. **Note:** This command supports attribute definitions in 4D Write Pro *objects*, like the *WP GET ATTRIBUTES* command (see example 9). @@ -221,4 +219,13 @@ You want to know the size of a picture stored in an object attribute: *Field and Variable Types* [OB Copy](ob-copy.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1224 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-instance-of.md b/docs/commands-legacy/ob-instance-of.md index 35b429e524d9fa..abafb6d83f7318 100644 --- a/docs/commands-legacy/ob-instance-of.md +++ b/docs/commands-legacy/ob-instance-of.md @@ -52,4 +52,13 @@ Then, in a method, you can write: #### See also -[OB Class](ob-class.md) \ No newline at end of file +[OB Class](ob-class.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1731 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-is-defined.md b/docs/commands-legacy/ob-is-defined.md index f2cb9cc4dce1b0..d4fb9cf76bed1b 100644 --- a/docs/commands-legacy/ob-is-defined.md +++ b/docs/commands-legacy/ob-is-defined.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB Is defined** command returns True if *object* or *property* is defined, and False otherwise. - -*object* can be an object varialble or a 4D object field. +The **OB Is defined** command returns True if *object* or *property* is defined, and False otherwise.can be an object varialble or a 4D object field. By default, if you omit the *property* parameter, the command checks whether the *object* is defined. An object is defined if its contents has been initialized. @@ -61,4 +59,13 @@ This test is equivalent to: #### See also -[OB Is empty](ob-is-empty.md) \ No newline at end of file +[OB Is empty](ob-is-empty.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1231 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-is-empty.md b/docs/commands-legacy/ob-is-empty.md index 29eb2f59d3fa17..9bf65e07d69e3b 100644 --- a/docs/commands-legacy/ob-is-empty.md +++ b/docs/commands-legacy/ob-is-empty.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **OB Is empty** command returns True if *object* is undefined or empty, and False if *object* is defined (initialized) and contains at least one property. - -*object* can be an object varialble or a 4D object field. +The **OB Is empty** command returns True if *object* is undefined or empty, and False if *object* is defined (initialized) and contains at least one property.can be an object varialble or a 4D object field. #### Example @@ -42,4 +40,13 @@ Here are the different results of this command as well as the [OB Is defined](ob #### See also -[OB Is defined](ob-is-defined.md) \ No newline at end of file +[OB Is defined](ob-is-defined.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1297 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-is-shared.md b/docs/commands-legacy/ob-is-shared.md index 9cefa3dbd0d85f..fc61c2d0be68fc 100644 --- a/docs/commands-legacy/ob-is-shared.md +++ b/docs/commands-legacy/ob-is-shared.md @@ -19,3 +19,13 @@ displayed_sidebar: docs The **OB Is shared** command returns **True** if the *toCheck* object or collection is shared, and **False** otherwise (see *Shared objects and shared collections*). This command returns **True** if you pass a shareable entity selection in *toCheck* (see ). + + +#### Properties + +| | | +| --- | --- | +| Command number | 1759 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-keys.md b/docs/commands-legacy/ob-keys.md index e9998abaaa1cda..63e607272767e1 100644 --- a/docs/commands-legacy/ob-keys.md +++ b/docs/commands-legacy/ob-keys.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OB Keys** command returns a collection of strings containing all of the enumerable property names of the *object*. @@ -46,4 +43,13 @@ You want a collection with all first-level property names of an object: #### See also [OB Entries](ob-entries.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1719 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/ob-remove.md b/docs/commands-legacy/ob-remove.md index a03eefdecea0b6..0a2a6485f09116 100644 --- a/docs/commands-legacy/ob-remove.md +++ b/docs/commands-legacy/ob-remove.md @@ -36,4 +36,13 @@ You want to remove the "age" property of an object: #### See also -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1226 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-set-array.md b/docs/commands-legacy/ob-set-array.md index b9aa0d5bb4c4dc..d2822e64107ece 100644 --- a/docs/commands-legacy/ob-set-array.md +++ b/docs/commands-legacy/ob-set-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB SET ARRAY** command defines the *array* to be associated with the *property* in the language object designated by the *object* parameter. - -*object* can be an object varialble or a 4D object field. +The **OB SET ARRAY** command defines the *array* to be associated with the *property* in the language object designated by the *object* parameter.can be an object varialble or a 4D object field. In the *property* parameter, pass the label of the property to be created or modified. If the property already exists in *object*, its value is updated. If it does not exist, it is created. Note that the *property* parameter is case sensitive. @@ -133,4 +131,13 @@ Using a picture array: [OB GET ARRAY](ob-get-array.md) [OB SET](ob-set.md) -*Type conversions between collections and 4D arrays* \ No newline at end of file +*Type conversions between collections and 4D arrays* + +#### Properties + +| | | +| --- | --- | +| Command number | 1227 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-set-null.md b/docs/commands-legacy/ob-set-null.md index cd5a86ed8132cf..8121bda4709685 100644 --- a/docs/commands-legacy/ob-set-null.md +++ b/docs/commands-legacy/ob-set-null.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **OB SET NULL** command stores the **null** value in the language object designated by the *object* parameter. - -*object* can be an object varialble or a 4D object field. +The **OB SET NULL** command stores the **null** value in the language object designated by the *object* parameter.can be an object varialble or a 4D object field. In the *property* parameter, pass the label of the property where you want to store the **null** value. If the property already exists in *object*, its value is updated. If it does not exist, it is created. Note that the *property* parameter is case sensitive. @@ -40,4 +38,13 @@ We want to put the null value in the "age" property for Lea: [Null](null.md) [OB GET PROPERTY NAMES](ob-get-property-names.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1233 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-set.md b/docs/commands-legacy/ob-set.md index dbb15051b1420b..0dfa84264dd291 100644 --- a/docs/commands-legacy/ob-set.md +++ b/docs/commands-legacy/ob-set.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB SET** command creates or modifies one or more *property*/*value* pairs in the language object designated by the *object* parameter. - -*object* must be an object variable or designate a 4D object field. +The **OB SET** command creates or modifies one or more *property*/*value* pairs in the language object designated by the *object* parameter.must be an object variable or designate a 4D object field. In the *property* parameter, pass the label of the property to be created or modified. If the property already exists in *object*, its value is updated. If it does not exist, it is created. @@ -197,4 +195,13 @@ You want to store a picture in an object field. You can write: [OB Get](ob-get.md) [OB REMOVE](ob-remove.md) [OB SET ARRAY](ob-set-array.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1220 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/ob-values.md b/docs/commands-legacy/ob-values.md index 77554ee74e6d4b..eef3df334fa34d 100644 --- a/docs/commands-legacy/ob-values.md +++ b/docs/commands-legacy/ob-values.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OB Values** command returns a collection of variants containing all of the enumerable property values of the *object*. @@ -46,4 +43,13 @@ You want a collection with all property values of an object: #### See also [OB Entries](ob-entries.md) -[OB Keys](ob-keys.md) \ No newline at end of file +[OB Keys](ob-keys.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1718 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-duplicate.md b/docs/commands-legacy/object-duplicate.md index 56afbde830e21a..04c5278249765e 100644 --- a/docs/commands-legacy/object-duplicate.md +++ b/docs/commands-legacy/object-duplicate.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT DUPLICATE** command is used to create a copy of the object designated by the *object* parameter in the context of the form being executed (Application mode). The source form, generated in Design mode, is not modified. @@ -105,4 +102,14 @@ Creation of a new radio button "bRadio6" based on the existing radio button "bRa *Form Objects (Access)* [OBJECT Get pointer](object-get-pointer.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1111 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/object-get-action.md b/docs/commands-legacy/object-get-action.md index 29811dbe1571c3..c7e57c38c83e72 100644 --- a/docs/commands-legacy/object-get-action.md +++ b/docs/commands-legacy/object-get-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get action** command returns the name and (if any) parameter of the standard action associated with the object(s) designated by the *object* and *\** parameters. @@ -45,4 +42,13 @@ You want to associate the "Cancel" action with all the objects in the form that #### See also -[OBJECT SET ACTION](object-set-action.md) \ No newline at end of file +[OBJECT SET ACTION](object-set-action.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1457 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-auto-spellcheck.md b/docs/commands-legacy/object-get-auto-spellcheck.md index fa22625a6d1fb0..18fb96554bd9a4 100644 --- a/docs/commands-legacy/object-get-auto-spellcheck.md +++ b/docs/commands-legacy/object-get-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get auto spellcheck** command returns the status of the Auto spellcheck option for the object(s) designated by the *object* and *\** parameters for the current process. @@ -28,4 +25,13 @@ The command returns **True** when automatic spell-checking is enabled for the *o #### See also -[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) \ No newline at end of file +[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1174 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-best-size.md b/docs/commands-legacy/object-get-best-size.md index eaff8f1128348d..55fa50be297427 100644 --- a/docs/commands-legacy/object-get-best-size.md +++ b/docs/commands-legacy/object-get-best-size.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET BEST SIZE** command returns the *bestWidth* and *bestHeight* parameters, the “optimal” width and height of the form object designated by the *\** and *object* parameters. These values are expressed in pixels. This command is particularly useful for displaying or printing complex reports, associated with the [OBJECT MOVE](object-move.md) command. @@ -49,4 +46,13 @@ Refer to the example in the [SET PRINT MARKER](set-print-marker.md) command. #### See also [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 717 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-border-style.md b/docs/commands-legacy/object-get-border-style.md index 5b33875f189a36..620ab6f75f2bd0 100644 --- a/docs/commands-legacy/object-get-border-style.md +++ b/docs/commands-legacy/object-get-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get border style** command returns the border line style of the object(s) designated by the *object* and *\** parameters. @@ -40,4 +37,13 @@ The command returns a value corresponding to the border line style. You can comp #### See also -[OBJECT SET BORDER STYLE](object-set-border-style.md) \ No newline at end of file +[OBJECT SET BORDER STYLE](object-set-border-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1263 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-context-menu.md b/docs/commands-legacy/object-get-context-menu.md index 496fcba4548618..2602b342645e17 100644 --- a/docs/commands-legacy/object-get-context-menu.md +++ b/docs/commands-legacy/object-get-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get context menu** command returns the current state of the "Context Menu" option for the object(s) designated by the *object* and *\** parameters. @@ -30,4 +27,13 @@ The command returns **True** if the context menu is enabled for the object and * #### See also -[OBJECT SET CONTEXT MENU](object-set-context-menu.md) \ No newline at end of file +[OBJECT SET CONTEXT MENU](object-set-context-menu.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1252 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-coordinates.md b/docs/commands-legacy/object-get-coordinates.md index efca4c3e488d25..4239b4309b7730 100644 --- a/docs/commands-legacy/object-get-coordinates.md +++ b/docs/commands-legacy/object-get-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT GET COORDINATES command returns the coordinates *left*, *top*, *right* and *bottom* (in points) in variables or fields of the object(s) of the current form defined by the parameters *\** and *object*. @@ -86,4 +83,13 @@ The method returns theoretical coordinates. In cases where the list box has been [CONVERT COORDINATES](convert-coordinates.md) [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) [OBJECT MOVE](object-move.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 663 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-corner-radius.md b/docs/commands-legacy/object-get-corner-radius.md index a16e0a2521c737..295a6a05c4b2fc 100644 --- a/docs/commands-legacy/object-get-corner-radius.md +++ b/docs/commands-legacy/object-get-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get corner radius** command returns the current value of the corner radius for the object designated by the *object* parameter. This value may have been set at the form level using the *Corner radius property* or for the current process using the [OBJECT SET CORNER RADIUS](object-set-corner-radius.md) command. @@ -48,4 +45,13 @@ The following code could be added to a button method: #### See also -[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) \ No newline at end of file +[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1324 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-data-source.md b/docs/commands-legacy/object-get-data-source.md index b5404b7737881a..dbd7bc2cdab77f 100644 --- a/docs/commands-legacy/object-get-data-source.md +++ b/docs/commands-legacy/object-get-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get data source** command returns the current data source of the object(s) designated by the *object* and *\** parameters. @@ -41,4 +38,13 @@ You execute the following code: #### See also -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1265 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-drag-and-drop-options.md b/docs/commands-legacy/object-get-drag-and-drop-options.md index 05008891d9187e..f2b836f61d646c 100644 --- a/docs/commands-legacy/object-get-drag-and-drop-options.md +++ b/docs/commands-legacy/object-get-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET DRAG AND DROP OPTIONS** command returns the drag and drop options for the object(s) designated by the *object* and *\** parameters for the current process. @@ -38,4 +35,13 @@ Each parameter returns True or False according to whether the corresponding opti #### See also -[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) \ No newline at end of file +[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1184 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-enabled.md b/docs/commands-legacy/object-get-enabled.md index 661d17606086fe..df367938e157cf 100644 --- a/docs/commands-legacy/object-get-enabled.md +++ b/docs/commands-legacy/object-get-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get enabled command returns True if the object or group of objects designated by *object* is enabled in the form and False if it is not enabled. @@ -36,4 +33,13 @@ This command can be applied to the following types of objects: #### See also -[OBJECT SET ENABLED](object-set-enabled.md) \ No newline at end of file +[OBJECT SET ENABLED](object-set-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1079 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-enterable.md b/docs/commands-legacy/object-get-enterable.md index 01aa00adeb40b7..7b8fa57e9fefad 100644 --- a/docs/commands-legacy/object-get-enterable.md +++ b/docs/commands-legacy/object-get-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get enterable command returns True if the object or group of objects designated by *object* has the **enterable** attribute; otherwise, it returns False. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1067 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-events.md b/docs/commands-legacy/object-get-events.md index f30f3aeda6ddd6..ee9d1a1ae7b79f 100644 --- a/docs/commands-legacy/object-get-events.md +++ b/docs/commands-legacy/object-get-events.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET EVENTS** command gets the current configuration of the form events for the object(s) designated by the *object* and *\** parameters. @@ -48,4 +45,13 @@ You want to enable two events and get the list of events for an object: #### See also -[OBJECT SET EVENTS](object-set-events.md) \ No newline at end of file +[OBJECT SET EVENTS](object-set-events.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1238 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-filter.md b/docs/commands-legacy/object-get-filter.md index 254e2695551d46..c249743f270879 100644 --- a/docs/commands-legacy/object-get-filter.md +++ b/docs/commands-legacy/object-get-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get filter command returns the name of any filter associated with the object or group of objects designated by *object*. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1073 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-focus-rectangle-invisible.md b/docs/commands-legacy/object-get-focus-rectangle-invisible.md index cec6d82baffb4e..2c878e4d991919 100644 --- a/docs/commands-legacy/object-get-focus-rectangle-invisible.md +++ b/docs/commands-legacy/object-get-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get focus rectangle invisible** command returns the status of the visibility option for the focus rectangle of the object(s) designated by the *object* and *\** parameters for the current process . This setting corresponds to the **Hide focus rectangle** option that is available for enterable objects in the Property List in the Design mode. This command returns the current status of the option, as it is defined in Design mode or using the [OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) command. @@ -30,4 +27,13 @@ The command returns **True** when the focus rectangle is hidden and **False** wh #### See also -[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1178 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-font-size.md b/docs/commands-legacy/object-get-font-size.md index 585dd6f7005085..87105f53970244 100644 --- a/docs/commands-legacy/object-get-font-size.md +++ b/docs/commands-legacy/object-get-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get font size command returns the size (in points) of the character font used by the form object(s) designated by *object*. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[OBJECT SET FONT SIZE](object-set-font-size.md) \ No newline at end of file +[OBJECT SET FONT SIZE](object-set-font-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1070 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-font-style.md b/docs/commands-legacy/object-get-font-style.md index aa3da4a6ca2050..2b78f83f488f5c 100644 --- a/docs/commands-legacy/object-get-font-style.md +++ b/docs/commands-legacy/object-get-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get font style command returns the current style of the character font used by the form object(s) designated by *object*. @@ -35,4 +32,13 @@ You can compare the value returned with the value of one or more of the followin #### See also -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1071 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-font.md b/docs/commands-legacy/object-get-font.md index 6495ff6c37eb8d..6d0c237fa98cd8 100644 --- a/docs/commands-legacy/object-get-font.md +++ b/docs/commands-legacy/object-get-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get font command returns the name of the character font used by the form object(s) designated by *object*. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1069 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-format.md b/docs/commands-legacy/object-get-format.md index 5072319e4717ae..0cc43ad5df8edb 100644 --- a/docs/commands-legacy/object-get-format.md +++ b/docs/commands-legacy/object-get-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get format** command returns the current display format applied to the object specified in the *object* parameter. @@ -65,4 +62,13 @@ Customized formats are returned untouched: #### See also -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 894 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-help-tip.md b/docs/commands-legacy/object-get-help-tip.md index a0ab0f9b9ac605..cae6a987b0a91f 100644 --- a/docs/commands-legacy/object-get-help-tip.md +++ b/docs/commands-legacy/object-get-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get help tip** command returns the help message associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -38,4 +35,13 @@ The title of a picture button is stored as a help message. This title is stored #### See also -[OBJECT SET HELP TIP](object-set-help-tip.md) \ No newline at end of file +[OBJECT SET HELP TIP](object-set-help-tip.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1182 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-horizontal-alignment.md b/docs/commands-legacy/object-get-horizontal-alignment.md index f53b6c7c4787ce..161efd227d912a 100644 --- a/docs/commands-legacy/object-get-horizontal-alignment.md +++ b/docs/commands-legacy/object-get-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get horizontal alignment** command returns a code indicating the type of horizontal alignment applied to the object designated by the *object* and *\** parameters. @@ -59,4 +56,13 @@ The form objects to which alignment can be applied are as follows: [OBJECT Get vertical alignment](object-get-vertical-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 707 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-indicator-type.md b/docs/commands-legacy/object-get-indicator-type.md index df4f74c63256af..990bc9b68d5405 100644 --- a/docs/commands-legacy/object-get-indicator-type.md +++ b/docs/commands-legacy/object-get-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get indicator type** command returns the current indicator type assigned to the thermometer(s) designated by the *object* and *\** parameters. @@ -36,4 +33,13 @@ You can compare the value returned by the command with the following constants, #### See also -[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) \ No newline at end of file +[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1247 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-keyboard-layout.md b/docs/commands-legacy/object-get-keyboard-layout.md index c163cb19ffc82c..2a5287eb6674cd 100644 --- a/docs/commands-legacy/object-get-keyboard-layout.md +++ b/docs/commands-legacy/object-get-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get keyboard layout** command returns the current keyboard layout associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -28,4 +25,13 @@ The command returns a string indicating the language code used, based on RFC3066 #### See also -[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) \ No newline at end of file +[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1180 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-list-name.md b/docs/commands-legacy/object-get-list-name.md index 2bfe6e2a8b5d05..3bbc9479f6c332 100644 --- a/docs/commands-legacy/object-get-list-name.md +++ b/docs/commands-legacy/object-get-list-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get list name command returns the name of the choice list associated with the object or group of objects designated by *object*. 4D lets you associate a choice list (created with the choice list editor in Design mode) with form objects using the form editor or the [OBJECT SET LIST BY NAME](object-set-list-by-name.md) command. @@ -38,4 +35,13 @@ If there is no list of the type defined associated with the *object*, the comman #### See also [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1072 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-list-reference.md b/docs/commands-legacy/object-get-list-reference.md index 99f1f5ff249934..18ad01e9c6687c 100644 --- a/docs/commands-legacy/object-get-list-reference.md +++ b/docs/commands-legacy/object-get-list-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get list reference** command returns the reference number (ListRef) of the hierarchical list associated with the object or group of objects designated by *object* and *\**. @@ -38,4 +35,13 @@ If there is no hierarchical list associated with the object for the *listType* d #### See also [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1267 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-maximum-value.md b/docs/commands-legacy/object-get-maximum-value.md index a72397362ad8fc..b255650ed5b465 100644 --- a/docs/commands-legacy/object-get-maximum-value.md +++ b/docs/commands-legacy/object-get-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET MAXIMUM VALUE** command returns, in the *maxValue* variable, the current maximum value of the object(s) designated by the *object* and *\** parameters. @@ -29,4 +26,13 @@ Passing the optional *\** parameter indicates that the *object* parameter is an #### See also [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1245 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-minimum-value.md b/docs/commands-legacy/object-get-minimum-value.md index 2161d161ae99a1..ac5f4a9a460f8b 100644 --- a/docs/commands-legacy/object-get-minimum-value.md +++ b/docs/commands-legacy/object-get-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET MINIMUM VALUE** command returns, in the *minValue* variable, the current minimum value of the object(s) designated by the *object* and *\** parameters. @@ -29,4 +26,13 @@ Passing the optional *\** parameter indicates that the *object* parameter is an #### See also [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1243 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-multiline.md b/docs/commands-legacy/object-get-multiline.md index 5b7ad886d0047a..33a1aea12bddaa 100644 --- a/docs/commands-legacy/object-get-multiline.md +++ b/docs/commands-legacy/object-get-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get multiline** command returns the current state of the "Multiline" option for the object(s) designated by the *object* and *\** parameters. @@ -38,4 +35,13 @@ The value returned corresponds to one of the following constants, found in the " #### See also -[OBJECT SET MULTILINE](object-set-multiline.md) \ No newline at end of file +[OBJECT SET MULTILINE](object-set-multiline.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1254 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-name.md b/docs/commands-legacy/object-get-name.md index 9a54f1c7231d20..568b008ce87847 100644 --- a/docs/commands-legacy/object-get-name.md +++ b/docs/commands-legacy/object-get-name.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get name** command returns the name of a form object. @@ -40,4 +37,13 @@ After the execution of this object method, the *$btnName* variable contains the *Form Objects (Access)* [OBJECT Get pointer](object-get-pointer.md) -*Objects (Forms)* \ No newline at end of file +*Objects (Forms)* + +#### Properties + +| | | +| --- | --- | +| Command number | 1087 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-placeholder.md b/docs/commands-legacy/object-get-placeholder.md index 77935a14f5be2c..5f35ae0e813915 100644 --- a/docs/commands-legacy/object-get-placeholder.md +++ b/docs/commands-legacy/object-get-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get placeholder** command returns the placeholder text associated with the object(s) designated by the *object* and *\** parameters. If there is no placeholder text associated with the object, the command returns an empty string. @@ -38,4 +35,13 @@ You want to get the field placeholder text: #### See also -[OBJECT SET PLACEHOLDER](object-set-placeholder.md) \ No newline at end of file +[OBJECT SET PLACEHOLDER](object-set-placeholder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1296 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-pointer.md b/docs/commands-legacy/object-get-pointer.md index 1f236c0990c22d..1809fc9cdc7d0b 100644 --- a/docs/commands-legacy/object-get-pointer.md +++ b/docs/commands-legacy/object-get-pointer.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get pointer** command returns a pointer to the variable of a form object. @@ -57,4 +54,13 @@ Given a form "SF" used twice as a subform in the same parent form. The subform o [OBJECT Get name](object-get-name.md) [OBJECT Get subform container value](object-get-subform-container-value.md) *Objects (Forms)* -[Self](self.md) \ No newline at end of file +[Self](self.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1124 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-print-variable-frame.md b/docs/commands-legacy/object-get-print-variable-frame.md index 71b780976cea4c..6f0edb79fb430b 100644 --- a/docs/commands-legacy/object-get-print-variable-frame.md +++ b/docs/commands-legacy/object-get-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET PRINT VARIABLE FRAME** command gets the current configuration of the variable frame print options for the object(s) designated by the *object* and *\** parameters. @@ -38,4 +35,13 @@ If the *object* is a subform and if variable frame printing is disabled (**False #### See also -[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) \ No newline at end of file +[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1241 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-resizing-options.md b/docs/commands-legacy/object-get-resizing-options.md index a223aa9ff1e9b4..86dc20cb4e5c80 100644 --- a/docs/commands-legacy/object-get-resizing-options.md +++ b/docs/commands-legacy/object-get-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET RESIZING OPTIONS** command returns the current resizing options for the object(s) designated by the *object* and *\** parameters for the current process. @@ -45,4 +42,13 @@ The *vertical* parameter returns a value indicating the vertical resizing option #### See also -[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) \ No newline at end of file +[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1176 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-rgb-colors.md b/docs/commands-legacy/object-get-rgb-colors.md index 35bd5ec92c78f1..0ded2d67951e48 100644 --- a/docs/commands-legacy/object-get-rgb-colors.md +++ b/docs/commands-legacy/object-get-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT GET RGB COLORS command returns the foreground and background colors of the object or group of objects designated by *object*. @@ -37,4 +34,13 @@ For more information about the format of the *foregroundColor*, *backgroundColor #### See also -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1074 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-scroll-position.md b/docs/commands-legacy/object-get-scroll-position.md index 372134d77eac82..03bdf82ef84243 100644 --- a/docs/commands-legacy/object-get-scroll-position.md +++ b/docs/commands-legacy/object-get-scroll-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT GET SCROLL POSITION returns, in the *vPosition* and *hPosition* parameters, information related to the position of the scroll bars of the form object designated by the *\** and *object* parameters. @@ -33,4 +30,13 @@ If *object* designates a picture (variable or field), *vPosition* returns the ve #### See also -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1114 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-scrollbar.md b/docs/commands-legacy/object-get-scrollbar.md index 4fce380c1b4b77..15a83105381a58 100644 --- a/docs/commands-legacy/object-get-scrollbar.md +++ b/docs/commands-legacy/object-get-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT GET SCROLLBAR command is used to find out the displayed/hidden status of the horizontal and vertical scrollbars of the object or group of objects designated by *object*. @@ -47,4 +44,13 @@ For more information, refer to the description of the [OBJECT SET SCROLLBAR](obj #### See also -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1076 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-shortcut.md b/docs/commands-legacy/object-get-shortcut.md index 1ba977229136e7..e68cdc6ccc066f 100644 --- a/docs/commands-legacy/object-get-shortcut.md +++ b/docs/commands-legacy/object-get-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET SHORTCUT** command returns the keyboard shortcut associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -42,4 +39,13 @@ If there are no modifier keys for the shortcut, *modifiers* returns 0\. #### See also -[OBJECT SET SHORTCUT](object-set-shortcut.md) \ No newline at end of file +[OBJECT SET SHORTCUT](object-set-shortcut.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1186 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-style-sheet.md b/docs/commands-legacy/object-get-style-sheet.md index da8570f84c0440..7cd845ba5197ec 100644 --- a/docs/commands-legacy/object-get-style-sheet.md +++ b/docs/commands-legacy/object-get-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get style sheet** command returns the name of the style sheet associated with the object(s) designated by the *object* and *\** parameters. @@ -47,4 +44,13 @@ In **project architecture**, only the three automatic style sheets are supported #### See also *Font Styles* -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1258 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-subform-container-size.md b/docs/commands-legacy/object-get-subform-container-size.md index b5ef5d24a3258d..5772e61a34d282 100644 --- a/docs/commands-legacy/object-get-subform-container-size.md +++ b/docs/commands-legacy/object-get-subform-container-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET SUBFORM CONTAINER SIZE** command returns the *width* and *height* (in pixels) of a "current" subform object, displayed in the parent form. @@ -32,5 +29,14 @@ The On Resize event is generated in the subform form method if the subform objec #### See also -[OBJECT GET SUBFORM](../commands/object-get-subform.md) -[OBJECT SET SUBFORM](../commands/object-set-subform.md) \ No newline at end of file +[OBJECT GET SUBFORM](object-get-subform.md) +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1148 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-subform-container-value.md b/docs/commands-legacy/object-get-subform-container-value.md index abc2288046830c..cef5103d1003df 100644 --- a/docs/commands-legacy/object-get-subform-container-value.md +++ b/docs/commands-legacy/object-get-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get subform container value** command returns the current value of the data source bound with the subform container displayed in the parent form. @@ -57,4 +54,13 @@ As a result, at runtime, updating the value of the main form's Input object also [Form](../commands/form.md) [OBJECT Get pointer](object-get-pointer.md) -[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) \ No newline at end of file +[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1785 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-subform.md b/docs/commands-legacy/object-get-subform.md index 464081c177cc80..d17a5b717b3fc4 100644 --- a/docs/commands-legacy/object-get-subform.md +++ b/docs/commands-legacy/object-get-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET SUBFORM** command gets the name(s) of the form(s) associated with the subform object designated by the *object* and *\** parameters. @@ -41,4 +38,13 @@ If there is no list form, an empty string is returned in the *listSubform* param #### See also [OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) -[OBJECT SET SUBFORM](../commands/object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1139 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-text-orientation.md b/docs/commands-legacy/object-get-text-orientation.md index b3afd653680eba..337f0a13487a87 100644 --- a/docs/commands-legacy/object-get-text-orientation.md +++ b/docs/commands-legacy/object-get-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get text orientation** command returns the current orientation value applied to the text of the object(s) designated by the *object* and *\** parameters. @@ -57,4 +54,13 @@ When the form is executed, if you call the following statement: #### See also -[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) \ No newline at end of file +[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1283 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-three-states-checkbox.md b/docs/commands-legacy/object-get-three-states-checkbox.md index 04339ba2b29ee7..54e26d61b79236 100644 --- a/docs/commands-legacy/object-get-three-states-checkbox.md +++ b/docs/commands-legacy/object-get-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get three states checkbox** command returns the current state of the "Three-States" property for the checkbox(es) designated by the *object* and *\** parameters. @@ -26,4 +23,13 @@ You can set the "Three-States" property either using the Property List, or using #### See also -[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) \ No newline at end of file +[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1250 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-title.md b/docs/commands-legacy/object-get-title.md index 272942c58f74d5..9da7bcc31d450f 100644 --- a/docs/commands-legacy/object-get-title.md +++ b/docs/commands-legacy/object-get-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get title command returns the title (label) of the form object(s) designated by *object*. You can use this command with all types of simple objects that contain a label: @@ -32,4 +29,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[OBJECT SET TITLE](object-set-title.md) \ No newline at end of file +[OBJECT SET TITLE](object-set-title.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1068 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-type.md b/docs/commands-legacy/object-get-type.md index 289c4c3d15e41d..1823bc3cf537d1 100644 --- a/docs/commands-legacy/object-get-type.md +++ b/docs/commands-legacy/object-get-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get type** command returns the type of the object designated by the *object* and *\** parameters in the current form. @@ -97,4 +94,13 @@ You want to load a form and get a list of all the objects of list boxes that it #### See also [FORM LOAD](../commands/form-load.md) -[LISTBOX GET OBJECTS](listbox-get-objects.md) \ No newline at end of file +[LISTBOX GET OBJECTS](listbox-get-objects.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1300 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-value.md b/docs/commands-legacy/object-get-value.md index 6cd52996c1a153..fd4a59731b2a91 100644 --- a/docs/commands-legacy/object-get-value.md +++ b/docs/commands-legacy/object-get-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get value** command returns the current value of the data source for the form object(s) designated by the *objectName* parameter. @@ -40,4 +37,13 @@ See the example for the [OBJECT SET VALUE](object-set-value.md) command. #### See also -[OBJECT SET VALUE](object-set-value.md) \ No newline at end of file +[OBJECT SET VALUE](object-set-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1743 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-vertical-alignment.md b/docs/commands-legacy/object-get-vertical-alignment.md index fffc620a35e4c6..363a25b1ef431d 100644 --- a/docs/commands-legacy/object-get-vertical-alignment.md +++ b/docs/commands-legacy/object-get-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get vertical alignment** command returns a value indicating the type of vertical alignment applied to the object designated by the *object* and *\** parameters. @@ -44,4 +41,13 @@ Vertical alignment can be applied to the following types of form objects: [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1188 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-get-visible.md b/docs/commands-legacy/object-get-visible.md index 2c5af6658cad13..c11d5cbc5161c8 100644 --- a/docs/commands-legacy/object-get-visible.md +++ b/docs/commands-legacy/object-get-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get visible command returns True if the object or group of objects designated by *object* has the visible attribute and False otherwise. @@ -26,4 +23,13 @@ displayed_sidebar: docs #### See also -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1075 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-is-styled-text.md b/docs/commands-legacy/object-is-styled-text.md index 58e011aef86bcf..242b2e5b8923b5 100644 --- a/docs/commands-legacy/object-is-styled-text.md +++ b/docs/commands-legacy/object-is-styled-text.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Is styled text** command returns **True** when the "Multi-style" option is checked for the object(s) designated by the *object* and *\** parameters. @@ -44,4 +41,13 @@ A form contains a field represented by two different objects; one of the objects #### See also -*Styled Text* \ No newline at end of file +*Styled Text* + +#### Properties + +| | | +| --- | --- | +| Command number | 1261 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-move.md b/docs/commands-legacy/object-move.md index 4100710370919f..5caf80b9be889e 100644 --- a/docs/commands-legacy/object-move.md +++ b/docs/commands-legacy/object-move.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT MOVE command allows you to move the object(s) in the current form, defined by the *\** and *object* parameters *moveH* pixels horizontally and *moveV* pixels vertically. @@ -69,4 +66,13 @@ The following statement moves “button\_1” to the following coordinates (10;2 [OBJECT DUPLICATE](object-duplicate.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 664 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-action.md b/docs/commands-legacy/object-set-action.md index 24970b4920809c..e70c45b3d1124e 100644 --- a/docs/commands-legacy/object-set-action.md +++ b/docs/commands-legacy/object-set-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET ACTION** command modifies the standard action associated with the object(s) designated by the *object* and *\** parameters. @@ -40,4 +37,13 @@ You want to associate the **Validate** standard action with a button: #### See also -[OBJECT Get action](object-get-action.md) \ No newline at end of file +[OBJECT Get action](object-get-action.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1259 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-auto-spellcheck.md b/docs/commands-legacy/object-set-auto-spellcheck.md index 3af873963fb5b0..92b79849c857ee 100644 --- a/docs/commands-legacy/object-set-auto-spellcheck.md +++ b/docs/commands-legacy/object-set-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET AUTO SPELLCHECK** command sets or dynamically modifies the status of the **Auto spellcheck** option for the object(s) designated by the *object* and *\** parameters for the current process. This option enables or disables the automatic spellcheck when data is entered for the object (Text type objects only). @@ -28,4 +25,13 @@ Pass **True** in *autoSpellcheck* to enable this function for the object, and ** #### See also -[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) \ No newline at end of file +[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1173 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-border-style.md b/docs/commands-legacy/object-set-border-style.md index f26829096b9691..16bd5f966e6ed9 100644 --- a/docs/commands-legacy/object-set-border-style.md +++ b/docs/commands-legacy/object-set-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET BORDER STYLE** command modifies the border line style of the object(s) designated by the *object* and *\** parameters. @@ -40,4 +37,13 @@ In the *borderStyle* parameter, pass the value of the border line style that you #### See also -[OBJECT Get border style](object-get-border-style.md) \ No newline at end of file +[OBJECT Get border style](object-get-border-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1262 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-context-menu.md b/docs/commands-legacy/object-set-context-menu.md index 370e9c84b7c206..74adaf2aedac0f 100644 --- a/docs/commands-legacy/object-set-context-menu.md +++ b/docs/commands-legacy/object-set-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET CONTEXT MENU** command enables or disables, for the current process, the association of a context menu by default with the object(s) designated by the *object* and *\** parameters. @@ -30,4 +27,13 @@ Pass **True** in the *contextMenu* parameter to enable the context menu, and **F #### See also -[OBJECT Get context menu](object-get-context-menu.md) \ No newline at end of file +[OBJECT Get context menu](object-get-context-menu.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1251 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-coordinates.md b/docs/commands-legacy/object-set-coordinates.md index cd7a365d54a0c1..79068668da284e 100644 --- a/docs/commands-legacy/object-set-coordinates.md +++ b/docs/commands-legacy/object-set-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET COORDINATES** command modifies the location and, optionally, the size of the object(s) designated by the *object* and *\** parameters for the current process. @@ -56,4 +53,13 @@ The following statement places the "button\_1" object at the (10,20) (30,40) coo [CONVERT COORDINATES](convert-coordinates.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1248 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-corner-radius.md b/docs/commands-legacy/object-set-corner-radius.md index f5f892bfa3a062..7f69c67494e985 100644 --- a/docs/commands-legacy/object-set-corner-radius.md +++ b/docs/commands-legacy/object-set-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET CORNER RADIUS** command modifies the *radius* of corners for the object(s) you passed in the *object* parameter. The new radius is only set for the process and is not saved in the form itself. @@ -68,4 +65,13 @@ Note that for text areas (as well as inputs), unlike for rectangles, the corner #### See also -[OBJECT Get corner radius](object-get-corner-radius.md) \ No newline at end of file +[OBJECT Get corner radius](object-get-corner-radius.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1323 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-data-source.md b/docs/commands-legacy/object-set-data-source.md index deebd4679bd2a1..29be29c3a4521f 100644 --- a/docs/commands-legacy/object-set-data-source.md +++ b/docs/commands-legacy/object-set-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET DATA SOURCE** command modifies the data source of the object(s) designated by the *object* and *\** parameters. @@ -51,4 +48,13 @@ Modification of the data source for an entry area: #### See also [LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) -[OBJECT Get data source](object-get-data-source.md) \ No newline at end of file +[OBJECT Get data source](object-get-data-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1264 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-drag-and-drop-options.md b/docs/commands-legacy/object-set-drag-and-drop-options.md index f98ddeeb1432d7..14d81369c66281 100644 --- a/docs/commands-legacy/object-set-drag-and-drop-options.md +++ b/docs/commands-legacy/object-set-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET DRAG AND DROP OPTIONS** command sets or dynamically modifies the drag and drop options for the object(s) designated by the *object* and *\** parameters for the current process. @@ -44,4 +41,13 @@ Setting a text area to automatic drag and drop: #### See also -[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) \ No newline at end of file +[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1183 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-enabled.md b/docs/commands-legacy/object-set-enabled.md index 1113e9b0131752..293385d496dc29 100644 --- a/docs/commands-legacy/object-set-enabled.md +++ b/docs/commands-legacy/object-set-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET ENABLED** command can be used to enable or disable the object or group of objects specified by *object* in the current form. An enabled object reacts to mouse clicks and to keyboard shortcuts. @@ -38,4 +35,13 @@ This command can be applied to the following types of objects: #### See also -[OBJECT Get enabled](object-get-enabled.md) \ No newline at end of file +[OBJECT Get enabled](object-get-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1123 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-enterable.md b/docs/commands-legacy/object-set-enterable.md index 9185bd36ca5191..f12958059c1ebb 100644 --- a/docs/commands-legacy/object-set-enterable.md +++ b/docs/commands-legacy/object-set-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET ENTERABLE** command makes the form objects specified by *object* either enterable or non-enterable and can set the *focusable* attribute. @@ -74,4 +71,13 @@ Here is the object method of a checkbox located in the header of a list in order #### See also [OBJECT Get enterable](object-get-enterable.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 238 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-events.md b/docs/commands-legacy/object-set-events.md index e143fce58ceb13..31eaf5594cfbbb 100644 --- a/docs/commands-legacy/object-set-events.md +++ b/docs/commands-legacy/object-set-events.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET EVENTS** command modifies, for the current process, the configuration of the form events of the form or object(s) designated by the *object* and *\** parameters. @@ -167,4 +164,13 @@ Disables a single event of the form without modifying the others: #### See also *Form Events* -[OBJECT GET EVENTS](object-get-events.md) \ No newline at end of file +[OBJECT GET EVENTS](object-get-events.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1239 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-filter.md b/docs/commands-legacy/object-set-filter.md index bd7cd9eba5ee8d..09c4c9d532a001 100644 --- a/docs/commands-legacy/object-set-filter.md +++ b/docs/commands-legacy/object-set-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **OBJECT SET FILTER** sets the entry filter for the objects specified by *object* to the filter you pass in *entryFilter*. @@ -57,4 +54,13 @@ The following example allows only the letters “a,” “b,” “c,” or “g #### See also [OBJECT Get filter](object-get-filter.md) -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 235 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-focus-rectangle-invisible.md b/docs/commands-legacy/object-set-focus-rectangle-invisible.md index 46bf806e4be531..7de7347e90c5e3 100644 --- a/docs/commands-legacy/object-set-focus-rectangle-invisible.md +++ b/docs/commands-legacy/object-set-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET FOCUS RECTANGLE INVISIBLE** command sets or dynamically modifies the visibility option for the focus rectangle of the object(s) designated by the *object* and *\** parameters for the current process. This setting corresponds to the **Hide focus rectangle** option that is available for enterable objects in the Property List in the Design mode. @@ -30,4 +27,13 @@ Pass **True** in the *invisible* parameter to hide the focus rectangle and **Fal #### See also -[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1177 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-font-size.md b/docs/commands-legacy/object-set-font-size.md index 7a7d6f82871a5c..1eca92f808b934 100644 --- a/docs/commands-legacy/object-set-font-size.md +++ b/docs/commands-legacy/object-set-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **OBJECT SET FONT SIZE** sets the form objects specified by *object* to be displayed using the font size you pass in *size*. @@ -51,4 +48,13 @@ The following example sets the font size for all the form objects whose name sta [OBJECT Get font size](object-get-font-size.md) [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT STYLE](object-set-font-style.md) -*Programming Notes* \ No newline at end of file +*Programming Notes* + +#### Properties + +| | | +| --- | --- | +| Command number | 165 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-font-style.md b/docs/commands-legacy/object-set-font-style.md index 9608f91441c283..b040fcaf4e4011 100644 --- a/docs/commands-legacy/object-set-font-style.md +++ b/docs/commands-legacy/object-set-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **OBJECT SET FONT STYLE** sets the form objects specified by *object* to be displayed using the font style you pass in *styles*. @@ -56,4 +53,13 @@ This example sets the font style to Plain for all form objects with names starti [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) *Programming Notes* -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 166 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-font.md b/docs/commands-legacy/object-set-font.md index 0eae06cd8357a6..f14353f5a2dae6 100644 --- a/docs/commands-legacy/object-set-font.md +++ b/docs/commands-legacy/object-set-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description OBJECT SET FONT displays the *object* using the font specified in the *font* parameter. The *font* parameter must contain a valid font name. @@ -62,4 +59,13 @@ The following example uses the special *%password* option, designed for entry an [OBJECT Get font](object-get-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) [OBJECT SET FONT STYLE](object-set-font-style.md) -*Programming Notes* \ No newline at end of file +*Programming Notes* + +#### Properties + +| | | +| --- | --- | +| Command number | 164 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-format.md b/docs/commands-legacy/object-set-format.md index 2195e23ace223b..cf215ff826aa14 100644 --- a/docs/commands-legacy/object-set-format.md +++ b/docs/commands-legacy/object-set-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **OBJECT SET FORMAT** sets the display format for the objects specified by *object* to the format you pass in *displayFormat*. The new format is only used for the current display; it is not stored with the form. @@ -362,4 +359,13 @@ Switching a thermometer to "Barber shop" mode: [Example database (v15 R5)](https://download.4d.com/Demos/4D%5Fv15%5FR5/HDI%5FListBox%5FOBJECT%5FSET%5FFORMAT.zip) [GET SYSTEM FORMAT](get-system-format.md) [OBJECT Get format](object-get-format.md) -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 236 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-help-tip.md b/docs/commands-legacy/object-set-help-tip.md index a2e07c46936437..4d13f47fb54583 100644 --- a/docs/commands-legacy/object-set-help-tip.md +++ b/docs/commands-legacy/object-set-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET HELP TIP** command sets or dynamically modifies the help tip associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -130,4 +127,13 @@ The result is... #### See also [OBJECT Get help tip](object-get-help-tip.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1181 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-horizontal-alignment.md b/docs/commands-legacy/object-set-horizontal-alignment.md index 6cb23972db7982..1b1d6624b5229f 100644 --- a/docs/commands-legacy/object-set-horizontal-alignment.md +++ b/docs/commands-legacy/object-set-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET HORIZONTAL ALIGNMENT** command allows you to set the type of horizontal alignment applied to the object(s) designated by the *object* and *\** parameters. @@ -57,4 +54,13 @@ The form objects to which alignment can be applied are as follows: [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 706 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-indicator-type.md b/docs/commands-legacy/object-set-indicator-type.md index 0d491dbe1e2429..29d98273bad10f 100644 --- a/docs/commands-legacy/object-set-indicator-type.md +++ b/docs/commands-legacy/object-set-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET INDICATOR TYPE** command modifies the type of progress indicator for the thermometer(s) designated by the *object* and *\** parameters in the current process. @@ -36,4 +33,13 @@ In the *indicator* parameter, pass the type of indicator you want to display. Yo #### See also -[OBJECT Get indicator type](object-get-indicator-type.md) \ No newline at end of file +[OBJECT Get indicator type](object-get-indicator-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1246 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-keyboard-layout.md b/docs/commands-legacy/object-set-keyboard-layout.md index 864c27ab29cec9..9b5330fff358db 100644 --- a/docs/commands-legacy/object-set-keyboard-layout.md +++ b/docs/commands-legacy/object-set-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET KEYBOARD LAYOUT** command sets or dynamically modifies the keyboard layout associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -28,4 +25,13 @@ In *languageCode*, you pass a string indicating the code of the language to use, #### See also -[OBJECT Get keyboard layout](object-get-keyboard-layout.md) \ No newline at end of file +[OBJECT Get keyboard layout](object-get-keyboard-layout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1179 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-list-by-name.md b/docs/commands-legacy/object-set-list-by-name.md index 0bf426037c140a..8e506c40449b22 100644 --- a/docs/commands-legacy/object-set-list-by-name.md +++ b/docs/commands-legacy/object-set-list-by-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT SET LIST BY NAME command sets, replaces or disassociates the *list* associated with the object or group of objects specified by *object*. The list whose name is passed in the *list* parameter must have been created using the List Editor in the Design environment. @@ -91,4 +88,13 @@ You want to remove the list associations: #### See also [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 237 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-list-by-reference.md b/docs/commands-legacy/object-set-list-by-reference.md index 5c2c1ec1aed0a3..7509788f6b1970 100644 --- a/docs/commands-legacy/object-set-list-by-reference.md +++ b/docs/commands-legacy/object-set-list-by-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET LIST BY REFERENCE** command defines or replaces the list associated with the object(s) designated by the *object* and *\** parameters, with the hierarchical list referenced in the *list* parameter. @@ -129,4 +126,13 @@ In order to update the list associated with the pop-up managed by array, you nee #### See also [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1266 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-maximum-value.md b/docs/commands-legacy/object-set-maximum-value.md index a40273bdc57cc6..4feb986308859d 100644 --- a/docs/commands-legacy/object-set-maximum-value.md +++ b/docs/commands-legacy/object-set-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET MAXIMUM VALUE** command modifies the maximum value of the object(s) designated by the *object* and *\** parameters for the current process. @@ -31,4 +28,13 @@ In *maxValue*, pass the new maximum value you want to assign to the object for t #### See also [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1244 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-minimum-value.md b/docs/commands-legacy/object-set-minimum-value.md index 9b16988749376e..2ba62ff37e838a 100644 --- a/docs/commands-legacy/object-set-minimum-value.md +++ b/docs/commands-legacy/object-set-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET MINIMUM VALUE** command modifies the minimum value of the object(s) designated by the *object* and *\** parameters for the current process. @@ -31,4 +28,13 @@ In *minValue*, pass the new minimum value you want to assign to the object for t #### See also [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1242 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-multiline.md b/docs/commands-legacy/object-set-multiline.md index 0fb525d14455f4..bd4108241c8ca5 100644 --- a/docs/commands-legacy/object-set-multiline.md +++ b/docs/commands-legacy/object-set-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET MULTILINE** command modifies the "Multiline" property of the object(s) designated by the *object* and *\** parameters. @@ -45,4 +42,13 @@ You want to prohibit multiple lines in an entry area: #### See also -[OBJECT Get multiline](object-get-multiline.md) \ No newline at end of file +[OBJECT Get multiline](object-get-multiline.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1253 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-placeholder.md b/docs/commands-legacy/object-set-placeholder.md index 61dd4b2f86aa12..027ed82284bed9 100644 --- a/docs/commands-legacy/object-set-placeholder.md +++ b/docs/commands-legacy/object-set-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET PLACEHOLDER** command associates placeholder text with the object(s) designated by the *object* and *\** parameters. @@ -46,4 +43,13 @@ You want to display "Search" as placeholder text in a combo box: #### See also -[OBJECT Get placeholder](object-get-placeholder.md) \ No newline at end of file +[OBJECT Get placeholder](object-get-placeholder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1295 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-print-variable-frame.md b/docs/commands-legacy/object-set-print-variable-frame.md index 2e08ad01b0ed85..5429329b300117 100644 --- a/docs/commands-legacy/object-set-print-variable-frame.md +++ b/docs/commands-legacy/object-set-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET PRINT VARIABLE FRAME** command modifies the Print Variable Frame property of the object(s) designated by the *object* and *\** parameters. @@ -44,4 +41,13 @@ The optional *fixedSubform* parameter lets you set an additional option when you #### See also -[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) \ No newline at end of file +[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1240 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-resizing-options.md b/docs/commands-legacy/object-set-resizing-options.md index f0867952c9ce79..e67d070eb36131 100644 --- a/docs/commands-legacy/object-set-resizing-options.md +++ b/docs/commands-legacy/object-set-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET RESIZING OPTIONS** command sets or dynamically modifies the resizing options for the object(s) designated by the *object* and *\** parameters for the current process. These options specify how the object is displayed when the form window is resized. @@ -43,4 +40,13 @@ In the *vertical* parameter, you pass a value indicating the vertical resizing o #### See also -[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) \ No newline at end of file +[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1175 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-rgb-colors.md b/docs/commands-legacy/object-set-rgb-colors.md index 20e126dec90c69..8fc89d693b7a59 100644 --- a/docs/commands-legacy/object-set-rgb-colors.md +++ b/docs/commands-legacy/object-set-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET RGB COLORS** command changes the foreground and background colors of the objects specified by the *object* parameter and the optional *\** parameter. When the command is applied to a list box object, an additional parameter lets you modify the alternating color of the rows. @@ -105,4 +102,13 @@ Changing to transparent background with a light font color: #### See also [OBJECT GET RGB COLORS](object-get-rgb-colors.md) -[Select RGB Color](select-rgb-color.md) \ No newline at end of file +[Select RGB Color](select-rgb-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 628 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-scroll-position.md b/docs/commands-legacy/object-set-scroll-position.md index a0291f124ae0cc..5fc40e3bc8092c 100644 --- a/docs/commands-legacy/object-set-scroll-position.md +++ b/docs/commands-legacy/object-set-scroll-position.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET SCROLL POSITION** command allows scrolling the contents of several types of objects: the lines of a subform, of a list form (displayed using the [MODIFY SELECTION](modify-selection.md) or [DISPLAY SELECTION](display-selection.md) commands), or of a hierarchical list, the rows and columns of a list box or even the pixels of a picture. @@ -92,4 +89,13 @@ Make sure that you do not omit the second *\** parameter in this case, otherwise [HIGHLIGHT RECORDS](highlight-records.md) [LISTBOX SELECT ROW](listbox-select-row.md) -[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) \ No newline at end of file +[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 906 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-scrollbar.md b/docs/commands-legacy/object-set-scrollbar.md index 71257a424e3dcb..a5d394ee219612 100644 --- a/docs/commands-legacy/object-set-scrollbar.md +++ b/docs/commands-legacy/object-set-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT SET SCROLLBAR command allows you to display or hide the horizontal and/or vertical scrollbars in the object set using the *object* and *\** parameters. @@ -46,4 +43,13 @@ The following table indicates the values you can pass in the *horizontal* and *v [LISTBOX Get property](listbox-get-property.md) [LISTBOX SET GRID](listbox-set-grid.md) [OBJECT GET SCROLLBAR](object-get-scrollbar.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 843 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-shortcut.md b/docs/commands-legacy/object-set-shortcut.md index be5ca4c01a48cb..bb6a3a3aa0544e 100644 --- a/docs/commands-legacy/object-set-shortcut.md +++ b/docs/commands-legacy/object-set-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET SHORTCUT** command sets or dynamically modifies the keyboard shortcut associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -89,4 +86,13 @@ You want to associate a different shortcut depending on the current language of #### See also -[OBJECT GET SHORTCUT](object-get-shortcut.md) \ No newline at end of file +[OBJECT GET SHORTCUT](object-get-shortcut.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1185 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-style-sheet.md b/docs/commands-legacy/object-set-style-sheet.md index ba52435815a469..ff274e10aa8502 100644 --- a/docs/commands-legacy/object-set-style-sheet.md +++ b/docs/commands-legacy/object-set-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET STYLE SHEET** command modifies, for the current process, the style sheet associated with the object(s) designated by the *object* and *\** parameters. A style sheet modifies the font, font size and (except for automatic style sheets) font style. @@ -49,4 +46,13 @@ In **project architecture**, only the three automatic style sheets are supported *Font Styles* [GET STYLE SHEET INFO](get-style-sheet-info.md) [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT Get style sheet](object-get-style-sheet.md) \ No newline at end of file +[OBJECT Get style sheet](object-get-style-sheet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1257 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-subform-container-value.md b/docs/commands-legacy/object-set-subform-container-value.md index 19d7e837670491..4102802268dda5 100644 --- a/docs/commands-legacy/object-set-subform-container-value.md +++ b/docs/commands-legacy/object-set-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET SUBFORM CONTAINER VALUE** command sets the current value of the data source bound with the subform container displayed in the parent form. @@ -33,4 +30,13 @@ A detailed example is available in the [OBJECT Get subform container value](obje #### See also [Form](../commands/form.md) -[OBJECT Get subform container value](object-get-subform-container-value.md) \ No newline at end of file +[OBJECT Get subform container value](object-get-subform-container-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1784 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-subform.md b/docs/commands-legacy/object-set-subform.md index c99f60e263de3d..585584007b0ae3 100644 --- a/docs/commands-legacy/object-set-subform.md +++ b/docs/commands-legacy/object-set-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET SUBFORM** command dynamically modifies the detail form as well as, optionally, the screen list form associated with the subform object designated by the *\**, *object* parameters. @@ -44,5 +41,14 @@ When you modify a page subform, the command can be executed at any time; current #### See also -[OBJECT GET SUBFORM](../commands/object-get-subform.md) -[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) \ No newline at end of file +[OBJECT GET SUBFORM](object-get-subform.md) +[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1138 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-text-orientation.md b/docs/commands-legacy/object-set-text-orientation.md index 7eae1294a5eb3b..fae19706e1ef08 100644 --- a/docs/commands-legacy/object-set-text-orientation.md +++ b/docs/commands-legacy/object-set-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET TEXT ORIENTATION** command modifies the orientation of the object(s) designated by the *object* and *\** parameters for the current process. @@ -50,4 +47,13 @@ You want to apply an orientation of 270° to a variable in your form: #### See also -[OBJECT Get text orientation](object-get-text-orientation.md) \ No newline at end of file +[OBJECT Get text orientation](object-get-text-orientation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1284 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-three-states-checkbox.md b/docs/commands-legacy/object-set-three-states-checkbox.md index 4fa077f491ea8c..ee66e6fd40a749 100644 --- a/docs/commands-legacy/object-set-three-states-checkbox.md +++ b/docs/commands-legacy/object-set-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET THREE STATES CHECKBOX** command modifies, for the current process, the "Three-States" property of the checkbox(es) designated by the *object* and *\** parameters. @@ -32,4 +29,13 @@ In the *threeStates* parameter, pass **True** to enable the "three states" mode, #### See also -[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) \ No newline at end of file +[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1249 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-title.md b/docs/commands-legacy/object-set-title.md index ca7438963b69e6..787e73f4ff1133 100644 --- a/docs/commands-legacy/object-set-title.md +++ b/docs/commands-legacy/object-set-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT SET TITLE command changes the title of the object(s) specified by *object* to the value you pass in *title*. @@ -73,4 +70,13 @@ You want to insert titles on two lines: #### See also -[OBJECT Get title](object-get-title.md) \ No newline at end of file +[OBJECT Get title](object-get-title.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 194 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-value.md b/docs/commands-legacy/object-set-value.md index 95a598bb5fa2cc..01db7e08dd2eb0 100644 --- a/docs/commands-legacy/object-set-value.md +++ b/docs/commands-legacy/object-set-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Example 1 **OBJECT SET VALUE** sets the *value* of the current data source for the form object(s) designated by the *objectName* parameter. @@ -41,4 +38,13 @@ You want to get the data source value for a form object, get its name, and set a #### See also -[OBJECT Get value](object-get-value.md) \ No newline at end of file +[OBJECT Get value](object-get-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1742 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-vertical-alignment.md b/docs/commands-legacy/object-set-vertical-alignment.md index fdaafe2595f0ac..ea4c6ad12f24cf 100644 --- a/docs/commands-legacy/object-set-vertical-alignment.md +++ b/docs/commands-legacy/object-set-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET VERTICAL ALIGNMENT** command modifies the type of vertical alignment applied to the object(s) designated by the *object* and *\** parameters. @@ -43,4 +40,13 @@ Vertical alignment can be applied to the following form objects: [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) \ No newline at end of file +[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1187 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-set-visible.md b/docs/commands-legacy/object-set-visible.md index 716b3acb0301da..dfc83c60fc6409 100644 --- a/docs/commands-legacy/object-set-visible.md +++ b/docs/commands-legacy/object-set-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET VISIBLE** command shows or hides the objects specified by *object*. @@ -60,4 +57,13 @@ or: #### See also [OBJECT Get visible](object-get-visible.md) -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 603 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/object-to-path.md b/docs/commands-legacy/object-to-path.md index de6b8a9360fd7c..59b5d0a559c2e9 100644 --- a/docs/commands-legacy/object-to-path.md +++ b/docs/commands-legacy/object-to-path.md @@ -54,4 +54,13 @@ We want to duplicate and rename a file in its own folder: [File](../commands/file.md) [Folder](../commands/folder.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1548 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/old-related-many.md b/docs/commands-legacy/old-related-many.md index c58b90d08a7832..c1345645f50ef8 100644 --- a/docs/commands-legacy/old-related-many.md +++ b/docs/commands-legacy/old-related-many.md @@ -15,13 +15,22 @@ displayed_sidebar: docs #### Description -**OLD RELATED MANY** operates the same way [RELATE MANY](relate-many.md) does, except that **OLD RELATED MANY** uses the old value in the one field to establish the relation. - -**Note:** **OLD RELATED MANY** uses the old value of the many field as returned by the [Old](old.md) function. For more information, see the description of the [Old](old.md) command. +**OLD RELATED MANY** operates the same way [RELATE MANY](relate-many.md) does, except that **OLD RELATED MANY** uses the old value in the one field to establish the relation.**OLD RELATED MANY** uses the old value of the many field as returned by the [Old](old.md) function. For more information, see the description of the [Old](old.md) command. **OLD RELATED MANY** changes the selection of the related table, and selects the first record of the selection as the current record. #### See also [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 263 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/old-related-one.md b/docs/commands-legacy/old-related-one.md index c3694d08018f9a..c20d24b6e53a7f 100644 --- a/docs/commands-legacy/old-related-one.md +++ b/docs/commands-legacy/old-related-one.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **OLD RELATED ONE** operates the same way as [RELATE ONE](relate-one.md) does, except that **OLD RELATED ONE** uses the old value of *aField* to establish the relation. @@ -33,4 +30,14 @@ If the command has been executed correctly and if the related records have been [Old](old.md) [OLD RELATED MANY](old-related-many.md) [RELATE ONE](relate-one.md) -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 44 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/old.md b/docs/commands-legacy/old.md index b137a45fe87bf6..3fb8cb570a8a7b 100644 --- a/docs/commands-legacy/old.md +++ b/docs/commands-legacy/old.md @@ -39,4 +39,13 @@ To restore the original value of a field, assign it the value returned by **Old* #### See also -[Modified](modified.md) \ No newline at end of file +[Modified](modified.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 35 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/on-backup-shutdown-database-method.md b/docs/commands-legacy/on-backup-shutdown-database-method.md index beaf58f21a4af1..d435ce73355a8f 100644 --- a/docs/commands-legacy/on-backup-shutdown-database-method.md +++ b/docs/commands-legacy/on-backup-shutdown-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The On Backup Shutdown database method is called every time a database backup ends. The reasons for the stoppage of a backup can be the end of the copy, user interruption or an error. diff --git a/docs/commands-legacy/on-backup-startup-database-method.md b/docs/commands-legacy/on-backup-startup-database-method.md index 5ad33d4d7ec4e3..927b0b58c0cf6a 100644 --- a/docs/commands-legacy/on-backup-startup-database-method.md +++ b/docs/commands-legacy/on-backup-startup-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On Backup Startup database method** is called every time a database backup is about to start (manual backup, scheduled automatic backup, or using the [BACKUP](backup.md) command). diff --git a/docs/commands-legacy/on-drop-database-method.md b/docs/commands-legacy/on-drop-database-method.md index e949c1cebfdc69..6eb4adafe807d0 100644 --- a/docs/commands-legacy/on-drop-database-method.md +++ b/docs/commands-legacy/on-drop-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On Drop database method** is available in local or remote 4D applications. diff --git a/docs/commands-legacy/on-err-call.md b/docs/commands-legacy/on-err-call.md index d781b2797fd747..d1a5acd1bdc713 100644 --- a/docs/commands-legacy/on-err-call.md +++ b/docs/commands-legacy/on-err-call.md @@ -179,4 +179,13 @@ The following error-handling method ignores the user interruptions and displays [Last errors](last-errors.md) [Last errors](last-errors.md) [Method called on error](method-called-on-error.md) -*System Variables* \ No newline at end of file +*System Variables* + +#### Properties + +| | | +| --- | --- | +| Command number | 155 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/on-event-call.md b/docs/commands-legacy/on-event-call.md index c2240de4fa59d3..f21c82ebd88720 100644 --- a/docs/commands-legacy/on-event-call.md +++ b/docs/commands-legacy/on-event-call.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ON EVENT CALL** command installs the method, whose name you pass in *eventMethod*, as the method for catching (trapping) events. This method is called the **event-handling method** or **event-catching method**. @@ -117,4 +114,14 @@ If you print a report using [PRINT SELECTION](print-selection.md), you do NOT ne [FILTER EVENT](filter-event.md) [MOUSE POSITION](mouse-position.md) [Method called on event](method-called-on-event.md) -[Shift down](shift-down.md) \ No newline at end of file +[Shift down](shift-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 190 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/on-exit-database-method.md b/docs/commands-legacy/on-exit-database-method.md index 4bba5661129ffb..a3b8fb59d9b02e 100644 --- a/docs/commands-legacy/on-exit-database-method.md +++ b/docs/commands-legacy/on-exit-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On Exit database method** is called once when you quit a database. @@ -107,4 +104,13 @@ The following example shows a typical case where you launch one or more backgrou #### See also [On Startup database method](on-startup-database-method.md) -[QUIT 4D](quit-4d.md) \ No newline at end of file +[QUIT 4D](quit-4d.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 905252 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/on-host-database-event-database-method.md b/docs/commands-legacy/on-host-database-event-database-method.md index 330f3e63bbfa57..e00e25febe717a 100644 --- a/docs/commands-legacy/on-host-database-event-database-method.md +++ b/docs/commands-legacy/on-host-database-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **On Host Database Event database method** allows 4D components to execute code when the host database is opened and closed. diff --git a/docs/commands-legacy/on-mobile-app-action-database-method.md b/docs/commands-legacy/on-mobile-app-action-database-method.md index d36cb3d3fe9372..0e71f0a2c8c457 100644 --- a/docs/commands-legacy/on-mobile-app-action-database-method.md +++ b/docs/commands-legacy/on-mobile-app-action-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Documentation moved** diff --git a/docs/commands-legacy/on-mobile-app-authentication-database-method.md b/docs/commands-legacy/on-mobile-app-authentication-database-method.md index 4af1e034c63621..bb23f03c291e30 100644 --- a/docs/commands-legacy/on-mobile-app-authentication-database-method.md +++ b/docs/commands-legacy/on-mobile-app-authentication-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Documentation moved** diff --git a/docs/commands-legacy/on-rest-authentication-database-method.md b/docs/commands-legacy/on-rest-authentication-database-method.md index 4b3bc1374b7a7d..3e2d48abc86e60 100644 --- a/docs/commands-legacy/on-rest-authentication-database-method.md +++ b/docs/commands-legacy/on-rest-authentication-database-method.md @@ -17,11 +17,18 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **On REST Authentication database method** is deprecated in projects as of 4D 20 R6. The [Force login authentication](https://developer.4d.com/docs/REST/authUsers) is now highly recommended. In converted projects, you can upgrade your configuration by clicking on the [**Activate REST authentication through ds.authentify() function**](https://developer.4d.com/docs/settings/web#access) settings button. See also [this blog post](https://blog.4d.com/force-login-now-is-the-default-mode-for-all-rest-authentications) to know how to migrate your code if necessary. + + +#### Properties + +| | | +| --- | --- | +| Command number | 3367 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/on-server-close-connection-database-method.md b/docs/commands-legacy/on-server-close-connection-database-method.md index cd01282ee6c705..b935e0b1469f32 100644 --- a/docs/commands-legacy/on-server-close-connection-database-method.md +++ b/docs/commands-legacy/on-server-close-connection-database-method.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **On Server Close Connection database method** is called once on the Server machine each time a 4D Client process ends. diff --git a/docs/commands-legacy/on-server-open-connection-database-method.md b/docs/commands-legacy/on-server-open-connection-database-method.md index 2ace76aee7eb86..fa6b9d3ce46d68 100644 --- a/docs/commands-legacy/on-server-open-connection-database-method.md +++ b/docs/commands-legacy/on-server-open-connection-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### When is the On Server Open Connection Database Method Called? The **On Server Open Connection database method** is called once on the Server machine each time a connection process is started by a 4D remote workstation. The **On Server Open Connection database method** is NOT invoked by any 4D environment other than 4D Server. @@ -130,3 +127,13 @@ The following example prevents any new connection from 2 to 4 A.M.    If((?02:00:00?<=Current time)&(Current time ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 16001 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/on-server-shutdown-database-method.md b/docs/commands-legacy/on-server-shutdown-database-method.md index 2130083dfe0d3e..1ce877e1c8f12d 100644 --- a/docs/commands-legacy/on-server-shutdown-database-method.md +++ b/docs/commands-legacy/on-server-shutdown-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The On Server Shutdown database method is called once on the server machine when the current database is closed on 4D Server. The On Server Shutdown database method is NOT invoked by any 4D environment other than 4D Server. diff --git a/docs/commands-legacy/on-server-startup-database-method.md b/docs/commands-legacy/on-server-startup-database-method.md index be2a1e249051e0..65df418cbb0dcb 100644 --- a/docs/commands-legacy/on-server-startup-database-method.md +++ b/docs/commands-legacy/on-server-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On Server Startup database method** is called once on the server machine when you open a database with 4D Server. The **On Server Startup database method** is NOT invoked by any 4D environment other than 4D Server. diff --git a/docs/commands-legacy/on-sql-authentication-database-method.md b/docs/commands-legacy/on-sql-authentication-database-method.md index f1a647098e63e8..c0404e2ad1285d 100644 --- a/docs/commands-legacy/on-sql-authentication-database-method.md +++ b/docs/commands-legacy/on-sql-authentication-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On SQL Authentication database method** can be used to filter requests sent to the integrated SQL server of 4D. This filtering can be based on the name and password as well as the (optional) IP address of the user. The developer can use their own table of users or that of the 4D users to evaluate the connection identifiers. Once the connection is authenticated, the [CHANGE CURRENT USER](change-current-user.md) command must be called in order to control access of requests within the 4D database. diff --git a/docs/commands-legacy/on-startup-database-method.md b/docs/commands-legacy/on-startup-database-method.md index 1ca4c0be89aee0..d55eb7dee973a5 100644 --- a/docs/commands-legacy/on-startup-database-method.md +++ b/docs/commands-legacy/on-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The On Startup database method is called once when you open a database. @@ -47,4 +44,13 @@ See the example in the [Semaphore](semaphore.md) section. *Database Methods* [On Exit database method](on-exit-database-method.md) -[QUIT 4D](quit-4d.md) \ No newline at end of file +[QUIT 4D](quit-4d.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 905263 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/on-system-event-database-method.md b/docs/commands-legacy/on-system-event-database-method.md index 4fd47f2df7c940..6e5cf2bdfc555a 100644 --- a/docs/commands-legacy/on-system-event-database-method.md +++ b/docs/commands-legacy/on-system-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **On System Event database method** is called each time a system event occurs. This concerns all 4D environments: 4D (all modes) and 4D Server, as well as 4D applications that are compiled and merged with 4D Volume Desktop. diff --git a/docs/commands-legacy/on-web-connection-database-method.md b/docs/commands-legacy/on-web-connection-database-method.md index 97d6008588f859..fcb17269af2635 100644 --- a/docs/commands-legacy/on-web-connection-database-method.md +++ b/docs/commands-legacy/on-web-connection-database-method.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On Web Connection database method** can be called in the following cases: diff --git a/docs/commands-legacy/on-web-legacy-close-session-database-method.md b/docs/commands-legacy/on-web-legacy-close-session-database-method.md index 3fe324d2aca056..3ea0c3229972eb 100644 --- a/docs/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/docs/commands-legacy/on-web-legacy-close-session-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility Note This database method can only be used with **legacy web sessions**, available in databases converted from versions prior to 4D v18 R6\. It is never called when **scalable web sessions** mode is enabled (recommended in 4D v18 R6 and higher). For more information, please refer to the *Web Sessions Management (Legacy)* section. diff --git a/docs/commands-legacy/one-record-select.md b/docs/commands-legacy/one-record-select.md index 263f9bbeb830c2..5590a27f49d3c1 100644 --- a/docs/commands-legacy/one-record-select.md +++ b/docs/commands-legacy/one-record-select.md @@ -28,4 +28,15 @@ This command was useful to “return” a record that had been pushed and popped [CREATE SELECTION FROM ARRAY](create-selection-from-array.md) *Named Selections* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 189 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/open-administration-window.md b/docs/commands-legacy/open-administration-window.md index de3e2ceca9437b..92d1b9de07e55a 100644 --- a/docs/commands-legacy/open-administration-window.md +++ b/docs/commands-legacy/open-administration-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OPEN ADMINISTRATION WINDOW** command displays the server administration window on the machine that executes it. The 4D Server administration window can be used to view the current parameters and to carry out various maintenance operations (see the 4D Server Reference Guide). Beginning with version 11 of 4D Server, this window can be displayed from a client machine: @@ -51,4 +48,14 @@ If the command has been executed correctly, the OK system variable is set to 1\. #### See also -[OPEN SECURITY CENTER](open-security-center.md) \ No newline at end of file +[OPEN SECURITY CENTER](open-security-center.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1047 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/open-color-picker.md b/docs/commands-legacy/open-color-picker.md index f5b1c9ee86d7a9..2f84e5e6d1dd78 100644 --- a/docs/commands-legacy/open-color-picker.md +++ b/docs/commands-legacy/open-color-picker.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OPEN COLOR PICKER** command displays the system color picker dialog box. @@ -30,4 +27,13 @@ If the color was changed, the On After Edit form event is generated for the obje #### See also -[OPEN FONT PICKER](open-font-picker.md) \ No newline at end of file +[OPEN FONT PICKER](open-font-picker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1304 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/open-data-file.md b/docs/commands-legacy/open-data-file.md index 7bb9c693617740..535cb6dc587131 100644 --- a/docs/commands-legacy/open-data-file.md +++ b/docs/commands-legacy/open-data-file.md @@ -53,4 +53,13 @@ In the context of deploying a merged application, you want to open or create the #### See also -[CREATE DATA FILE](create-data-file.md) \ No newline at end of file +[CREATE DATA FILE](create-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 312 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/open-database.md b/docs/commands-legacy/open-database.md index bfcb96b0aa6187..0b7a056f6ec2ed 100644 --- a/docs/commands-legacy/open-database.md +++ b/docs/commands-legacy/open-database.md @@ -69,3 +69,13 @@ You want to select a server at startup from a single-user application. You could     QUIT 4D  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1321 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/open-document.md b/docs/commands-legacy/open-document.md index 84daacb06091cb..c9cd23945e1222 100644 --- a/docs/commands-legacy/open-document.md +++ b/docs/commands-legacy/open-document.md @@ -86,4 +86,14 @@ If you call **Open document** with a mode of 3, the function returns ?00:00:00? #### See also [Append document](append-document.md) -[Create document](create-document.md) \ No newline at end of file +[Create document](create-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 264 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/docs/commands-legacy/open-font-picker.md b/docs/commands-legacy/open-font-picker.md index afa88daa9dc0e5..6cf695cb6fa410 100644 --- a/docs/commands-legacy/open-font-picker.md +++ b/docs/commands-legacy/open-font-picker.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OPEN FONT PICKER** command displays the system font picker dialog box. @@ -44,4 +41,13 @@ Here is the button code: #### See also -[OPEN COLOR PICKER](open-color-picker.md) \ No newline at end of file +[OPEN COLOR PICKER](open-color-picker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1303 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/open-form-window.md b/docs/commands-legacy/open-form-window.md index 843903bb070c8e..1c15dde7866625 100644 --- a/docs/commands-legacy/open-form-window.md +++ b/docs/commands-legacy/open-form-window.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Open form window command opens a new window using the size and resizing properties of the form *formName*. @@ -134,4 +131,13 @@ which displays: [FORM GET PROPERTIES](form-get-properties.md) [Open window](open-window.md) *Window Types* -*Window Types (compatibility)* \ No newline at end of file +*Window Types (compatibility)* + +#### Properties + +| | | +| --- | --- | +| Command number | 675 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/open-printing-job.md b/docs/commands-legacy/open-printing-job.md index 3cfc9c252c7740..2cbdb13d5a07c9 100644 --- a/docs/commands-legacy/open-printing-job.md +++ b/docs/commands-legacy/open-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OPEN PRINTING JOB** command opens a print job and stacks all the subsequent printing orders there until the [CLOSE PRINTING JOB](close-printing-job.md) command is called. This command lets you control the print jobs and, more particularly, ensure that no other unexpected print job can be inserted into a printing sequence. @@ -38,4 +35,14 @@ The OK system variable is set to 1 if the print job has been successfully open. #### See also -[CLOSE PRINTING JOB](close-printing-job.md) \ No newline at end of file +[CLOSE PRINTING JOB](close-printing-job.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 995 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/open-resource-file.md b/docs/commands-legacy/open-resource-file.md index b16cd8e849b8c8..285b3b40b97581 100644 --- a/docs/commands-legacy/open-resource-file.md +++ b/docs/commands-legacy/open-resource-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Open resource file** command opens the resource file whose name or pathname you pass in *resFileName*. @@ -99,4 +96,14 @@ If the resource file could not be opened due to a resource or I/O problem, an er #### See also [CLOSE RESOURCE FILE](close-resource-file.md) -*Resources* \ No newline at end of file +*Resources* + +#### Properties + +| | | +| --- | --- | +| Command number | 497 | +| Thread safe | ✗ | +| Modifies variables | OK, Document, error | + + diff --git a/docs/commands-legacy/open-runtime-explorer.md b/docs/commands-legacy/open-runtime-explorer.md index 5baec8c2bc5b65..1dddef729a66f6 100644 --- a/docs/commands-legacy/open-runtime-explorer.md +++ b/docs/commands-legacy/open-runtime-explorer.md @@ -15,3 +15,13 @@ displayed_sidebar: docs #### Description The OPEN RUNTIME EXPLORER command displays the Runtime Explorer in a floating window. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1781 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/open-security-center.md b/docs/commands-legacy/open-security-center.md index 43212505a7083b..9cf7a1e341de6b 100644 --- a/docs/commands-legacy/open-security-center.md +++ b/docs/commands-legacy/open-security-center.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OPEN SECURITY CENTER command displays the Maintenance and Security Center (MSC) window. For more information, please refer to the *Maintenance and security center* page. @@ -26,4 +23,13 @@ displayed_sidebar: docs #### See also -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1018 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/open-settings-window.md b/docs/commands-legacy/open-settings-window.md index b02b0174a4416a..f25bed73c171f0 100644 --- a/docs/commands-legacy/open-settings-window.md +++ b/docs/commands-legacy/open-settings-window.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OPEN SETTINGS WINDOW** command opens the Preferences dialog box of 4D or the Database Settings of the current 4D application and displays the parameters or the page corresponding to the key passed in *selector*. @@ -141,3 +138,14 @@ Access to the Interface page of the Database settings in "User settings" mode: #### System variables and sets If the Preferences/Settings dialog box is validated, the system variable OK returns 1\. Otherwise, it returns 0. + + +#### Properties + +| | | +| --- | --- | +| Command number | 903 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/open-url.md b/docs/commands-legacy/open-url.md index df7af352244723..9d6b8cd06eaea7 100644 --- a/docs/commands-legacy/open-url.md +++ b/docs/commands-legacy/open-url.md @@ -79,4 +79,13 @@ The *appName* parameter lets you open the same text file using different applica #### See also -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 673 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/open-window.md b/docs/commands-legacy/open-window.md index 5ee6fbdce08501..b341b1a4bf17aa 100644 --- a/docs/commands-legacy/open-window.md +++ b/docs/commands-legacy/open-window.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Open window** opens a new window with the dimensions given by the first four parameters: @@ -138,4 +135,13 @@ This example illustrates the “delay” mechanism for displaying sheet windows [CLOSE WINDOW](close-window.md) [Open form window](open-form-window.md) -*Open Window* \ No newline at end of file +*Open Window* + +#### Properties + +| | | +| --- | --- | +| Command number | 153 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/order-by-attribute.md b/docs/commands-legacy/order-by-attribute.md index ca0974baad4d46..4d7b0c8e72d7a3 100644 --- a/docs/commands-legacy/order-by-attribute.md +++ b/docs/commands-legacy/order-by-attribute.md @@ -111,4 +111,13 @@ Records are in the following order: #### See also - \ No newline at end of file + + +#### Properties + +| | | +| --- | --- | +| Command number | 1407 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/order-by-formula.md b/docs/commands-legacy/order-by-formula.md index 20169c0e44c11c..a3edebc6036568 100644 --- a/docs/commands-legacy/order-by-formula.md +++ b/docs/commands-legacy/order-by-formula.md @@ -43,4 +43,15 @@ This example orders the records of the \[People\] table in descending order, bas #### See also -[ORDER BY](order-by.md) \ No newline at end of file +[ORDER BY](order-by.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 300 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || + + diff --git a/docs/commands-legacy/order-by.md b/docs/commands-legacy/order-by.md index 04c87b82a58e0e..98e37295a7b3bf 100644 --- a/docs/commands-legacy/order-by.md +++ b/docs/commands-legacy/order-by.md @@ -197,4 +197,15 @@ Each button calls the MULTILEVEL project method with a pointer to the correspond #### See also -[ORDER BY FORMULA](order-by-formula.md) \ No newline at end of file +[ORDER BY FORMULA](order-by-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 49 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || + + diff --git a/docs/commands-legacy/outside-call.md b/docs/commands-legacy/outside-call.md index 5c2661bc04e37e..933b27ea524461 100644 --- a/docs/commands-legacy/outside-call.md +++ b/docs/commands-legacy/outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Outside call** returns True for the After execution cycle. @@ -27,4 +24,13 @@ In order for the **Outside call** execution cycle to be generated, make sure tha #### See also [Form event code](../commands/form-event-code.md) -[POST OUTSIDE CALL](post-outside-call.md) \ No newline at end of file +[POST OUTSIDE CALL](post-outside-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 328 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/page-break.md b/docs/commands-legacy/page-break.md index 4e3817c6e4fe47..c8ef4c9527ecc7 100644 --- a/docs/commands-legacy/page-break.md +++ b/docs/commands-legacy/page-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **PAGE BREAK** triggers the printing of the data that has been sent to the printer and ejects the page. **PAGE BREAK** is used with [Print form](../commands/print-form.md) (in the context of the On Printing Detail form event) to force page breaks and to print the last page created in memory. Do not use **PAGE BREAK** with the [PRINT SELECTION](print-selection.md) command. Instead, use [Subtotal](subtotal.md) or [BREAK LEVEL](break-level.md) with the optional parameter to generate page breaks. @@ -45,4 +42,14 @@ Refer to the example of the [SET PRINT MARKER](set-print-marker.md) command. #### See also [CANCEL](cancel.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 6 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/parse-formula.md b/docs/commands-legacy/parse-formula.md index 42cdf8a64a68e5..1c9463895074d6 100644 --- a/docs/commands-legacy/parse-formula.md +++ b/docs/commands-legacy/parse-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Parse formula** function analyzes the 4D *formula*, checks its syntax, and returns its normalized form. This allows the formula to remain valid in the event that a 4D language or structure element (command, constant, table, field, or 4D Plugin) is renamed. @@ -108,4 +105,13 @@ The optional *errorMessage* parameter will receive an error message if there is [Formula from string](../commands/formula-from-string.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -*Using tokens in formulas* \ No newline at end of file +*Using tokens in formulas* + +#### Properties + +| | | +| --- | --- | +| Command number | 1576 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/pasteboard-data-size.md b/docs/commands-legacy/pasteboard-data-size.md index 197047ee051e45..c96a9ddd1a1d0d 100644 --- a/docs/commands-legacy/pasteboard-data-size.md +++ b/docs/commands-legacy/pasteboard-data-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Pasteboard data size** command checks whether there is any data of the type you passed in *dataType* present in the pasteboard. @@ -93,4 +90,14 @@ See the example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) [Get text from pasteboard](get-text-from-pasteboard.md) -*Pasteboard* \ No newline at end of file +*Pasteboard* + +#### Properties + +| | | +| --- | --- | +| Command number | 400 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/path-to-object.md b/docs/commands-legacy/path-to-object.md index 8e10bc5466ea88..dc1cfa224a6c44 100644 --- a/docs/commands-legacy/path-to-object.md +++ b/docs/commands-legacy/path-to-object.md @@ -173,4 +173,13 @@ You want to know the number of subfolders contained in a path: [File](../commands/file.md) [Folder](../commands/folder.md) [Object to path](object-to-path.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1547 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/pause-indexes.md b/docs/commands-legacy/pause-indexes.md index 77aeee508b60a5..c4fd73ab69402b 100644 --- a/docs/commands-legacy/pause-indexes.md +++ b/docs/commands-legacy/pause-indexes.md @@ -45,4 +45,13 @@ Example of method for importing large amounts of data: #### See also [DELETE INDEX](delete-index.md) -[RESUME INDEXES](resume-indexes.md) \ No newline at end of file +[RESUME INDEXES](resume-indexes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1293 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/pause-process.md b/docs/commands-legacy/pause-process.md index 7ed3972d52f44d..b0d434438df20e 100644 --- a/docs/commands-legacy/pause-process.md +++ b/docs/commands-legacy/pause-process.md @@ -30,4 +30,13 @@ While process execution is suspended, the windows belonging to this process are [ABORT PROCESS BY ID](abort-process-by-id.md) [DELAY PROCESS](delay-process.md) [HIDE PROCESS](hide-process.md) -[RESUME PROCESS](resume-process.md) \ No newline at end of file +[RESUME PROCESS](resume-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 319 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/php-execute.md b/docs/commands-legacy/php-execute.md index f5fa414e7333b6..67d6c28fe6edaa 100644 --- a/docs/commands-legacy/php-execute.md +++ b/docs/commands-legacy/php-execute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - :::info Compatibility **PHP is deprecated in 4D**. It is now recommended to use the [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -280,4 +277,13 @@ For more information concerning the trim function, please refer to the PHP docum *Executing PHP scripts in 4D* [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1058 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/php-get-full-response.md b/docs/commands-legacy/php-get-full-response.md index ee5bf8e02f26b5..b4945a79989dfe 100644 --- a/docs/commands-legacy/php-get-full-response.md +++ b/docs/commands-legacy/php-get-full-response.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - :::info Compatibility **PHP is deprecated in 4D**. It is now recommended to use the [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -40,4 +37,13 @@ Since exchanges between 4D and the PHP interpreter are carried out via FastCGI, #### See also [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1061 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/php-get-option.md b/docs/commands-legacy/php-get-option.md index c41df8b65362f8..dc9787849bdba8 100644 --- a/docs/commands-legacy/php-get-option.md +++ b/docs/commands-legacy/php-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - :::info Compatibility **PHP is deprecated in 4D**. It is now recommended to use the [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -37,4 +34,13 @@ Pass a constant from the "*PHP*" theme in the *option* parameter to designate th #### See also [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1060 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/php-set-option.md b/docs/commands-legacy/php-set-option.md index 06874befdaa998..980323bfe3cb67 100644 --- a/docs/commands-legacy/php-set-option.md +++ b/docs/commands-legacy/php-set-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - :::info Compatibility **PHP is deprecated in 4D**. It is now recommended to use the [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ By default, **PHP SET OPTION** sets the option for all subsequent calls to [PHP #### See also [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1059 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/picture-codec-list.md b/docs/commands-legacy/picture-codec-list.md index 79e56404f0d2f8..eda9e45006a60f 100644 --- a/docs/commands-legacy/picture-codec-list.md +++ b/docs/commands-legacy/picture-codec-list.md @@ -34,4 +34,13 @@ By default, if you do not pass the *\** parameter, the command returns only the #### See also [Is picture file](is-picture-file.md) -*Pictures* \ No newline at end of file +*Pictures* + +#### Properties + +| | | +| --- | --- | +| Command number | 992 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/picture-library-list.md b/docs/commands-legacy/picture-library-list.md index 96b8add192c3d5..2bdb6975792dbc 100644 --- a/docs/commands-legacy/picture-library-list.md +++ b/docs/commands-legacy/picture-library-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **PICTURE LIBRARY LIST** command returns the reference numbers and names of the pictures currently stored in the Picture Library of the database. @@ -94,4 +91,13 @@ The following example exports the Picture Library to a document on disk: [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 564 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/picture-properties.md b/docs/commands-legacy/picture-properties.md index e2efab619b9c06..2ae8bf108224fc 100644 --- a/docs/commands-legacy/picture-properties.md +++ b/docs/commands-legacy/picture-properties.md @@ -28,4 +28,13 @@ The *hOffset*, *vOffset*, and *mode* parameters return the horizontal and vertic #### See also -[Picture size](picture-size.md) \ No newline at end of file +[Picture size](picture-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 457 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/picture-size.md b/docs/commands-legacy/picture-size.md index fcc86f944e43c9..c14ca25b9089b0 100644 --- a/docs/commands-legacy/picture-size.md +++ b/docs/commands-legacy/picture-size.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### See also -[PICTURE PROPERTIES](picture-properties.md) \ No newline at end of file +[PICTURE PROPERTIES](picture-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 356 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/picture-to-blob.md b/docs/commands-legacy/picture-to-blob.md index 569b4d35aefd06..e976dfb8c4230a 100644 --- a/docs/commands-legacy/picture-to-blob.md +++ b/docs/commands-legacy/picture-to-blob.md @@ -49,4 +49,14 @@ You want to convert an image from a proprietary format to GIF format and display [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 692 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/play.md b/docs/commands-legacy/play.md index 4e01d58335ac96..5e55a071ce9106 100644 --- a/docs/commands-legacy/play.md +++ b/docs/commands-legacy/play.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **PLAY** command plays sound or multimedia files. You pass the full pathname of the file you want to play in *objectName*. On OS X, the command can also be used to play a system sound. @@ -58,4 +55,13 @@ The following example code plays a system sound on OS X: #### See also -[BEEP](beep.md) \ No newline at end of file +[BEEP](beep.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 290 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/plugin-list.md b/docs/commands-legacy/plugin-list.md index 82f9cad4d4d42a..8b1e32609a76db 100644 --- a/docs/commands-legacy/plugin-list.md +++ b/docs/commands-legacy/plugin-list.md @@ -27,4 +27,13 @@ PLUGIN LIST takes all plug-ins into account, including those that are integrated [COMPONENT LIST](component-list.md) [Get plugin access](get-plugin-access.md) [Is license available](is-license-available.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 847 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/pop-record.md b/docs/commands-legacy/pop-record.md index 3fef3066d26fe6..d05afeba3c4c3b 100644 --- a/docs/commands-legacy/pop-record.md +++ b/docs/commands-legacy/pop-record.md @@ -30,4 +30,14 @@ The following example pops the record for the customer off the record stack: #### See also [PUSH RECORD](push-record.md) -*Using the Record Stack* \ No newline at end of file +*Using the Record Stack* + +#### Properties + +| | | +| --- | --- | +| Command number | 177 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/docs/commands-legacy/pop-up-menu.md b/docs/commands-legacy/pop-up-menu.md index 5cc1c099948b31..ff0fa6336a8094 100644 --- a/docs/commands-legacy/pop-up-menu.md +++ b/docs/commands-legacy/pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Pop up menu** command displays a pop-up menu at the current location of the mouse. @@ -91,4 +88,13 @@ The following is the pop-up menu as it appears on Windows (left) and Macintosh ( #### See also [Dynamic pop up menu](dynamic-pop-up-menu.md) -[MOUSE POSITION](mouse-position.md) \ No newline at end of file +[MOUSE POSITION](mouse-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 542 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/position.md b/docs/commands-legacy/position.md index acaf1f643a31aa..02ad788873e127 100644 --- a/docs/commands-legacy/position.md +++ b/docs/commands-legacy/position.md @@ -118,4 +118,13 @@ In the following example, you want to find all instances of a string and replace #### See also [Compare strings](compare-strings.md) -[Substring](substring.md) \ No newline at end of file +[Substring](substring.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 15 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/post-click.md b/docs/commands-legacy/post-click.md index 154f871c73d8d7..0763b632f3cbce 100644 --- a/docs/commands-legacy/post-click.md +++ b/docs/commands-legacy/post-click.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The POST CLICK command simulates a mouse click. Its effect as if the user actually clicked the mouse button. @@ -30,4 +27,13 @@ If you specify the *process* parameter, the click is sent to the process whose p #### See also [POST EVENT](post-event.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 466 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/post-event.md b/docs/commands-legacy/post-event.md index d49e6bb5eb952b..ede97e3e4c9e5f 100644 --- a/docs/commands-legacy/post-event.md +++ b/docs/commands-legacy/post-event.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **POST EVENT** command simulates a keyboard or mouse event. Its effect is as if the user actually acted on the keyboard or the mouse. @@ -75,4 +72,13 @@ If you specify the *process* parameter, the event is sent to the process whose p #### See also [POST CLICK](post-click.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 467 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/post-key.md b/docs/commands-legacy/post-key.md index 5807018d750026..afc39b6a89cc3f 100644 --- a/docs/commands-legacy/post-key.md +++ b/docs/commands-legacy/post-key.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **POST KEY** command simulates a keystroke. Its effect is as if the user actually entered a character on the keyboard. @@ -62,4 +59,13 @@ See example for the [Process number](../commands/process-number.md) command. *ASCII Codes* *Function Key Codes* [POST CLICK](post-click.md) -[POST EVENT](post-event.md) \ No newline at end of file +[POST EVENT](post-event.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 465 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/post-outside-call.md b/docs/commands-legacy/post-outside-call.md index 23db8a7147c413..4fe52aec26e234 100644 --- a/docs/commands-legacy/post-outside-call.md +++ b/docs/commands-legacy/post-outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility Note This command was named **CALL PROCESS** in previous 4D releases. @@ -46,4 +43,14 @@ See example for [Semaphore](semaphore.md). [Form event code](../commands/form-event-code.md) [GET PROCESS VARIABLE](get-process-variable.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 329 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/previous-record.md b/docs/commands-legacy/previous-record.md index 9c13d10bc6d040..07170d0a2116e4 100644 --- a/docs/commands-legacy/previous-record.md +++ b/docs/commands-legacy/previous-record.md @@ -25,4 +25,14 @@ If **PREVIOUS RECORD** moves the current record pointer before the current selec [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[NEXT RECORD](next-record.md) \ No newline at end of file +[NEXT RECORD](next-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 110 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/docs/commands-legacy/print-label.md b/docs/commands-legacy/print-label.md index 4307fef05cf9ec..3cb4add687df9b 100644 --- a/docs/commands-legacy/print-label.md +++ b/docs/commands-legacy/print-label.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **PRINT LABEL** enables you to print labels with the data from the selection of *aTable*. @@ -108,4 +105,14 @@ The following example lets the user query the \[People\] table, and then display #### See also [PRINT SELECTION](print-selection.md) -[QR REPORT](qr-report.md) \ No newline at end of file +[QR REPORT](qr-report.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 39 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/print-object.md b/docs/commands-legacy/print-object.md index 8fb3e2e96e758a..d44764431fca41 100644 --- a/docs/commands-legacy/print-object.md +++ b/docs/commands-legacy/print-object.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Print object** command lets you print the form object(s) designated by the *object* and *\** parameters, at the location set by the *posX* and *posY* parameters. @@ -98,4 +95,13 @@ Example of printing a complete list box: #### See also -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1095 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/print-option-values.md b/docs/commands-legacy/print-option-values.md index 4f002dc2de2a0f..18232e88dcaae9 100644 --- a/docs/commands-legacy/print-option-values.md +++ b/docs/commands-legacy/print-option-values.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **PRINT OPTION VALUES** command returns in *namesArray* a list of names available for the print *option* defined. Optionally, you can retrieve additional information for each name in *info1Array* and *info2Array*. @@ -55,4 +52,13 @@ All the information returned by these commands is supplied by the operating syst #### See also [GET PRINT OPTION](get-print-option.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 785 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/print-record.md b/docs/commands-legacy/print-record.md index 001b87856a2049..9b36098e8641b4 100644 --- a/docs/commands-legacy/print-record.md +++ b/docs/commands-legacy/print-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **PRINT RECORD** prints the current record of *aTable*, without modifying the current selection. The current output form is used for printing. If there is no current record for *aTable*, **PRINT RECORD** does nothing. @@ -64,4 +61,13 @@ The following example prints the same current record in two different forms. The #### See also -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 71 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/print-selection.md b/docs/commands-legacy/print-selection.md index 182fce67549561..4b532ede863ce1 100644 --- a/docs/commands-legacy/print-selection.md +++ b/docs/commands-legacy/print-selection.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **PRINT SELECTION** prints the current selection of *aTable*. The records are printed with the current output form of the table in the current process. **PRINT SELECTION** performs the same action as the **Print** menu command in the Design environment. If the selection is empty, **PRINT SELECTION** does nothing. @@ -62,4 +59,14 @@ The following example selects all the records in the \[People\] table. It then u [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 60 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/print-settings-to-blob.md b/docs/commands-legacy/print-settings-to-blob.md index 79d366082e57a8..fa61dbc1c1a2be 100644 --- a/docs/commands-legacy/print-settings-to-blob.md +++ b/docs/commands-legacy/print-settings-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Print settings to BLOB** command saves the current 4D print settings in the *printSettings* BLOB. The *printSettings* parameter stores all the settings used for printing: @@ -55,4 +52,13 @@ You want to store the current print settings to disk: #### See also -[BLOB to print settings](blob-to-print-settings.md) \ No newline at end of file +[BLOB to print settings](blob-to-print-settings.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1433 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/print-settings.md b/docs/commands-legacy/print-settings.md index 568bbe17f9b284..93a552640cce2a 100644 --- a/docs/commands-legacy/print-settings.md +++ b/docs/commands-legacy/print-settings.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **PRINT SETTINGS** displays a printing dialog box. This command must be called before a series of [Print form](../commands/print-form.md) commands or the [OPEN PRINTING JOB](open-printing-job.md) command. @@ -42,4 +39,14 @@ If the user clicks OK in both dialog boxes, the OK system variable is set to 1\. [OPEN PRINTING JOB](open-printing-job.md) [PAGE BREAK](page-break.md) [Print form](../commands/print-form.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 106 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/printers-list.md b/docs/commands-legacy/printers-list.md index 8351423f02982d..ea14a198a70b22 100644 --- a/docs/commands-legacy/printers-list.md +++ b/docs/commands-legacy/printers-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **PRINTERS LIST** command fills in the array(s) passed as parameter(s) with the names as well as, optionally, the locations or custom names and models of the available printers for the machine. @@ -46,4 +43,14 @@ The system variable OK is set to 1 if the command has been executed correctly; o #### See also [Get current printer](get-current-printer.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 789 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/printing-page.md b/docs/commands-legacy/printing-page.md index 43abaf61f2c590..4099bccbd1e3e2 100644 --- a/docs/commands-legacy/printing-page.md +++ b/docs/commands-legacy/printing-page.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Printing page** returns the printing page number. It can be used only when you are printing with [PRINT SELECTION](print-selection.md) or the Print menu in the Design environment. @@ -39,4 +36,13 @@ The following example changes the position of the page numbers on a report so th #### See also -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 275 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/process-4d-tags.md b/docs/commands-legacy/process-4d-tags.md index de0214a7bcdc32..2609d087f0eb77 100644 --- a/docs/commands-legacy/process-4d-tags.md +++ b/docs/commands-legacy/process-4d-tags.md @@ -71,4 +71,13 @@ This example generates a text using data of the arrays: #### See also -*4D Transformation Tags* \ No newline at end of file +*4D Transformation Tags* + +#### Properties + +| | | +| --- | --- | +| Command number | 816 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/process-aborted.md b/docs/commands-legacy/process-aborted.md index b0bec853569954..517c0f78b1cf61 100644 --- a/docs/commands-legacy/process-aborted.md +++ b/docs/commands-legacy/process-aborted.md @@ -21,4 +21,13 @@ This status will happen very rarely. Processes are usually stopped before the co #### See also -[On Exit database method](on-exit-database-method.md) \ No newline at end of file +[On Exit database method](on-exit-database-method.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 672 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/process-state.md b/docs/commands-legacy/process-state.md index 17125bbed6fb49..7a97a5f50dece8 100644 --- a/docs/commands-legacy/process-state.md +++ b/docs/commands-legacy/process-state.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Process state** command returns the state of the process whose number you pass in *process*. @@ -61,4 +58,13 @@ The following example puts the name and process reference number for each proces #### See also [Count tasks](count-tasks.md) -[Process info](../commands/process-info.md) \ No newline at end of file +[Process info](../commands/process-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 330 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/push-record.md b/docs/commands-legacy/push-record.md index 5b22fcf1686b4c..7a5c6aa83e1290 100644 --- a/docs/commands-legacy/push-record.md +++ b/docs/commands-legacy/push-record.md @@ -15,7 +15,7 @@ displayed_sidebar: docs #### Description -**PUSH RECORD** pushes the current record of *aTable* (and its subrecords, if any) onto the table’s record stack. **PUSH RECORD** may be executed before a record is saved. +**PUSH RECORD** pushes the current record of *aTable* (and its subrecords, if any) onto the table’s record stack.may be executed before a record is saved. If you push a record that was unlocked, this record stays locked for all the other processes and users until you pop and unload it. @@ -32,4 +32,13 @@ The following example pushes the record for the customer onto the record stack: #### See also [POP RECORD](pop-record.md) -*Using the Record Stack* \ No newline at end of file +*Using the Record Stack* + +#### Properties + +| | | +| --- | --- | +| Command number | 176 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/qr-blob-to-report.md b/docs/commands-legacy/qr-blob-to-report.md index 6af5d1a6d75be9..bab91f105d24af 100644 --- a/docs/commands-legacy/qr-blob-to-report.md +++ b/docs/commands-legacy/qr-blob-to-report.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR BLOB TO REPORT command places the report contained in *blob* in the Quick Report area passed in *area*. @@ -45,4 +42,14 @@ The following statement retrieves the Quick Report stored in Field4 and displays #### See also -[QR REPORT TO BLOB](qr-report-to-blob.md) \ No newline at end of file +[QR REPORT TO BLOB](qr-report-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 771 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-count-columns.md b/docs/commands-legacy/qr-count-columns.md index bfcec6741c9885..4a9f93c455e6ba 100644 --- a/docs/commands-legacy/qr-count-columns.md +++ b/docs/commands-legacy/qr-count-columns.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR Count columns command returns the number of columns present in the Quick Report *area*. @@ -35,4 +32,14 @@ The following code retrieves the column count and inserts a column to the right #### See also [QR DELETE COLUMN](qr-delete-column.md) -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 764 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-delete-column.md b/docs/commands-legacy/qr-delete-column.md index acd2c54e20596e..462ffb4e6d85b2 100644 --- a/docs/commands-legacy/qr-delete-column.md +++ b/docs/commands-legacy/qr-delete-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR DELETE COLUMN command deletes the column in *area* whose number was passed in *colNumber*. This command does not apply to cross-table reports. @@ -36,4 +33,14 @@ The following example makes sure the report is a list report and deletes the thi #### See also -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 749 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-delete-offscreen-area.md b/docs/commands-legacy/qr-delete-offscreen-area.md index 24662182f43c24..30e8bee7e8197d 100644 --- a/docs/commands-legacy/qr-delete-offscreen-area.md +++ b/docs/commands-legacy/qr-delete-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR DELETE OFFSCREEN AREA command deletes in memory the Quick Report offscreen *area* whose reference was passed as parameter. @@ -24,4 +21,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 754 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-execute-command.md b/docs/commands-legacy/qr-execute-command.md index 9decf211fb8a09..34bd83e88db527 100644 --- a/docs/commands-legacy/qr-execute-command.md +++ b/docs/commands-legacy/qr-execute-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR EXECUTE COMMAND** command executes the toolbar button command whose reference was passed in *command*. The most common use for this command is to execute a command selected by the user and intercepted in your code via the [QR ON COMMAND](qr-on-command.md) command. @@ -39,4 +36,14 @@ If you pass an invalid *command* number, the error -9852 will be generated. #### See also [QR Get command status](qr-get-command-status.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 791 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-find-column.md b/docs/commands-legacy/qr-find-column.md index 9e5b6fabbd673e..916a00069b4cb3 100644 --- a/docs/commands-legacy/qr-find-column.md +++ b/docs/commands-legacy/qr-find-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR Find column command returns the number of the first column whose contents match the *expression* passed in parameter. @@ -49,3 +46,14 @@ followed by:     QR DELETE COLUMN(MyArea;$NumColumn)  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 776 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-area-property.md b/docs/commands-legacy/qr-get-area-property.md index c3ca97e68b0225..73ee0211fe5d99 100644 --- a/docs/commands-legacy/qr-get-area-property.md +++ b/docs/commands-legacy/qr-get-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get area property** command returns 0 if the interface element passed in *property* is not displayed; otherwise, it returns 1. @@ -36,4 +33,14 @@ If you pass an invalid *property* parameter, the error -9852 will be generated. #### See also -[QR SET AREA PROPERTY](qr-set-area-property.md) \ No newline at end of file +[QR SET AREA PROPERTY](qr-set-area-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 795 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-borders.md b/docs/commands-legacy/qr-get-borders.md index 7d597bbfc0abb0..5544bf6898e212 100644 --- a/docs/commands-legacy/qr-get-borders.md +++ b/docs/commands-legacy/qr-get-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR GET BORDERS** command allows you to retrieve the border style for a border of a given cell. @@ -70,4 +67,14 @@ If you pass an invalid *border* parameter, the error -9854 will be generated. #### See also -[QR SET BORDERS](qr-set-borders.md) \ No newline at end of file +[QR SET BORDERS](qr-set-borders.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 798 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-command-status.md b/docs/commands-legacy/qr-get-command-status.md index 141751919a72fa..5de59ad76e5bbd 100644 --- a/docs/commands-legacy/qr-get-command-status.md +++ b/docs/commands-legacy/qr-get-command-status.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get command status** command returns 0 if the *command* is disabled or 1 if it is enabled. @@ -38,4 +35,14 @@ If you pass an invalid *command* number, the error -9852 will be generated. #### See also [QR EXECUTE COMMAND](qr-execute-command.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 792 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-destination.md b/docs/commands-legacy/qr-get-destination.md index 28f6079689f241..2502f2405e7386 100644 --- a/docs/commands-legacy/qr-get-destination.md +++ b/docs/commands-legacy/qr-get-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR GET DESTINATION** command retrieves the output *type* of the report for the area whose reference was passed in *area*. @@ -36,4 +33,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR SET DESTINATION](qr-set-destination.md) \ No newline at end of file +[QR SET DESTINATION](qr-set-destination.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 756 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-document-property.md b/docs/commands-legacy/qr-get-document-property.md index 92d1e1b53ca81a..f97e58deb4b5a7 100644 --- a/docs/commands-legacy/qr-get-document-property.md +++ b/docs/commands-legacy/qr-get-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get document property** command retrieves the display status for the print dialog box or the unit used for the document that are present in *area*. @@ -36,4 +33,13 @@ If you pass an invalid *property* value, the error -9852 will be generated. #### See also -[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) \ No newline at end of file +[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 773 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/qr-get-drop-column.md b/docs/commands-legacy/qr-get-drop-column.md index 6d1328e1148f65..5aabf6aa74927e 100644 --- a/docs/commands-legacy/qr-get-drop-column.md +++ b/docs/commands-legacy/qr-get-drop-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR Get drop column command returns a value depending on where the drop was performed: @@ -28,4 +25,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 747 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-header-and-footer.md b/docs/commands-legacy/qr-get-header-and-footer.md index ab35eff8f0f7f1..3a3192bced1c83 100644 --- a/docs/commands-legacy/qr-get-header-and-footer.md +++ b/docs/commands-legacy/qr-get-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR GET HEADER AND FOOTER command retrieves the contents and size of the header or footer. @@ -68,4 +65,14 @@ The following code retrieves the values of the header titles as well as the head #### See also -[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) \ No newline at end of file +[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 775 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-html-template.md b/docs/commands-legacy/qr-get-html-template.md index 8c38a081cdb06e..bf29a52cd60312 100644 --- a/docs/commands-legacy/qr-get-html-template.md +++ b/docs/commands-legacy/qr-get-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR Get HTML template command returns the HTML template currently used for the Quick Report *area*. The returned value is a text value and includes all the contents of the HTML template. @@ -27,4 +24,14 @@ If you pass an invalid area number, the error -9850 will be generated. #### See also -[QR SET HTML TEMPLATE](qr-set-html-template.md) \ No newline at end of file +[QR SET HTML TEMPLATE](qr-set-html-template.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 751 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-info-column.md b/docs/commands-legacy/qr-get-info-column.md index 280526b9faba76..65489070cb9a17 100644 --- a/docs/commands-legacy/qr-get-info-column.md +++ b/docs/commands-legacy/qr-get-info-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description ##### List mode @@ -109,4 +106,14 @@ You can write: [QR Get info row](qr-get-info-row.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 766 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-info-row.md b/docs/commands-legacy/qr-get-info-row.md index b94fd1333a6cf9..4dcffd72d4f6ef 100644 --- a/docs/commands-legacy/qr-get-info-row.md +++ b/docs/commands-legacy/qr-get-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get info row** command retrieves the display status of the row whose reference was passed in *row*. @@ -41,4 +38,14 @@ If you pass an invalid *row* value, the error -9852 will be generated. [QR GET INFO COLUMN](qr-get-info-column.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 769 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-report-kind.md b/docs/commands-legacy/qr-get-report-kind.md index 50110d8061352e..0e0899f4053b92 100644 --- a/docs/commands-legacy/qr-get-report-kind.md +++ b/docs/commands-legacy/qr-get-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get report kind** command retrieves the report type for the area whose reference was passed in *area*. @@ -35,4 +32,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR SET REPORT KIND](qr-set-report-kind.md) \ No newline at end of file +[QR SET REPORT KIND](qr-set-report-kind.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 755 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-report-table.md b/docs/commands-legacy/qr-get-report-table.md index 53f5b5c30593b4..9adc33a8a90495 100644 --- a/docs/commands-legacy/qr-get-report-table.md +++ b/docs/commands-legacy/qr-get-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR Get report table command returns the current table number for the report area whose reference was passed in *area*. @@ -25,4 +22,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR SET REPORT TABLE](qr-set-report-table.md) \ No newline at end of file +[QR SET REPORT TABLE](qr-set-report-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 758 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-selection.md b/docs/commands-legacy/qr-get-selection.md index cc0ce83a5e9663..2301f7502d2868 100644 --- a/docs/commands-legacy/qr-get-selection.md +++ b/docs/commands-legacy/qr-get-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR GET SELECTION command returns the coordinates of the cell that is selected. @@ -40,4 +37,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR SET SELECTION](qr-set-selection.md) \ No newline at end of file +[QR SET SELECTION](qr-set-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 793 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-sorts.md b/docs/commands-legacy/qr-get-sorts.md index 054b29d9d760d2..60cdf33a48f717 100644 --- a/docs/commands-legacy/qr-get-sorts.md +++ b/docs/commands-legacy/qr-get-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR GET SORTS command populates two arrays: @@ -37,4 +34,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR SET SORTS](qr-set-sorts.md) \ No newline at end of file +[QR SET SORTS](qr-set-sorts.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 753 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-text-property.md b/docs/commands-legacy/qr-get-text-property.md index 9f308b3e96dc94..b0e5ee41648d71 100644 --- a/docs/commands-legacy/qr-get-text-property.md +++ b/docs/commands-legacy/qr-get-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get text property** command returns the property value of the text attributes for the cell determined by *colNum* and *RowNum*. @@ -70,4 +67,14 @@ If you pass an invalid *property* number, the error -9854 will be generated. #### See also -[QR SET TEXT PROPERTY](qr-set-text-property.md) \ No newline at end of file +[QR SET TEXT PROPERTY](qr-set-text-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 760 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-totals-data.md b/docs/commands-legacy/qr-get-totals-data.md index 27ef084dfc4ce8..5d02d5b502b24e 100644 --- a/docs/commands-legacy/qr-get-totals-data.md +++ b/docs/commands-legacy/qr-get-totals-data.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description ##### List Mode @@ -74,4 +71,14 @@ If you pass an invalid *breakNum* number, the error -9853 will be generated. #### See also -[QR SET TOTALS DATA](qr-set-totals-data.md) \ No newline at end of file +[QR SET TOTALS DATA](qr-set-totals-data.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 768 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-get-totals-spacing.md b/docs/commands-legacy/qr-get-totals-spacing.md index 12f6b0194cf5cf..1b7000aef543a6 100644 --- a/docs/commands-legacy/qr-get-totals-spacing.md +++ b/docs/commands-legacy/qr-get-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR GET TOTALS SPACING command retrieves a space below a subtotal row. It applies only to the list mode. @@ -38,4 +35,14 @@ If you pass an invalid *subtotal*, the error -9852 will be generated. #### See also -[QR SET TOTALS SPACING](qr-set-totals-spacing.md) \ No newline at end of file +[QR SET TOTALS SPACING](qr-set-totals-spacing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 762 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-insert-column.md b/docs/commands-legacy/qr-insert-column.md index 32faa617ce29bb..1d53bf1b6156dc 100644 --- a/docs/commands-legacy/qr-insert-column.md +++ b/docs/commands-legacy/qr-insert-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR INSERT COLUMN command inserts or creates a column at the specified position. Columns located to the right of that position will be shifted accordingly. @@ -40,4 +37,14 @@ The following statement inserts (or creates) a first column in a Quick Report ar #### See also -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 748 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-move-column.md b/docs/commands-legacy/qr-move-column.md index a78fd13025c37a..e89474d4969d77 100644 --- a/docs/commands-legacy/qr-move-column.md +++ b/docs/commands-legacy/qr-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR MOVE COLUMN** command moves the column currently found at the *column* position to the *newPos* position. @@ -41,3 +38,13 @@ If you execute: The result is: ![](../assets/en/commands/pict2569472.en.png) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1325 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/qr-new-area.md b/docs/commands-legacy/qr-new-area.md index 371cdb3b93db3c..d3559075f5fd02 100644 --- a/docs/commands-legacy/qr-new-area.md +++ b/docs/commands-legacy/qr-new-area.md @@ -13,13 +13,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR NEW AREA** command creates a new Quick Report area and stores its reference number in the longint variable referenced by the *ptr* pointer. #### See also -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1320 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/qr-new-offscreen-area.md b/docs/commands-legacy/qr-new-offscreen-area.md index 091e3c2b370f84..ed393b5f699534 100644 --- a/docs/commands-legacy/qr-new-offscreen-area.md +++ b/docs/commands-legacy/qr-new-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR New offscreen area command creates a new Quick Report offscreen area and returns its reference. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### See also [QR DELETE OFFSCREEN AREA](qr-delete-offscreen-area.md) -[QR NEW AREA](qr-new-area.md) \ No newline at end of file +[QR NEW AREA](qr-new-area.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 735 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/qr-on-command.md b/docs/commands-legacy/qr-on-command.md index df058764e8594b..5b247bfa58beb2 100644 --- a/docs/commands-legacy/qr-on-command.md +++ b/docs/commands-legacy/qr-on-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR ON COMMAND** command executes the 4D method passed in *methodName* when a Quick Report command is invoked by the user, by the selection of a menu command or by a click on a button. @@ -44,4 +41,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. *QR Commands* [QR EXECUTE COMMAND](qr-execute-command.md) -[QR Get command status](qr-get-command-status.md) \ No newline at end of file +[QR Get command status](qr-get-command-status.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 790 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-report-to-blob.md b/docs/commands-legacy/qr-report-to-blob.md index c6e33f71fe3390..45ec41b9cafb72 100644 --- a/docs/commands-legacy/qr-report-to-blob.md +++ b/docs/commands-legacy/qr-report-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR REPORT TO BLOB command places the report whose reference was passed in *area* in a BLOB (variable or field). @@ -33,4 +30,14 @@ The following statement assigns the Quick Report stored in MyArea into a BLOB Fi #### See also -[QR BLOB TO REPORT](qr-blob-to-report.md) \ No newline at end of file +[QR BLOB TO REPORT](qr-blob-to-report.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 770 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-report.md b/docs/commands-legacy/qr-report.md index af73cb54f93d64..d3f030709d7fcb 100644 --- a/docs/commands-legacy/qr-report.md +++ b/docs/commands-legacy/qr-report.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **QR REPORT** prints a report for *aTable*, created with the Quick Report editor. This editor allows users to create their own reports. For more information about creating reports with the Quick Report editor, refer to the *Quick reports* section of the 4D *Design Reference* manual. @@ -133,4 +130,14 @@ The myCallbackMeth method converts the report when it is generated: [PRINT LABEL](print-label.md) [PRINT SELECTION](print-selection.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 197 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/qr-run.md b/docs/commands-legacy/qr-run.md index 6c9bdc551dd3d5..9fbc36b256435c 100644 --- a/docs/commands-legacy/qr-run.md +++ b/docs/commands-legacy/qr-run.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR RUN** command executes the report *area* whose reference was passed as parameter with the Quick Report current settings, including the output type. You can use the [QR SET DESTINATION](qr-set-destination.md) command to modify the output type. @@ -25,3 +22,14 @@ The report is executed on the table to which the area belongs. When *area* desig If you pass an invalid *area* number, the error -9850 will be generated. **4D Server:** This command can be executed on 4D Server as part of a stored procedure. In this context, make sure that no dialog box appears on the server machine (except for specific requirements). To do this, you need to call the [QR SET DESTINATION](qr-set-destination.md) command with the "\*" parameter. In case of a printer problem (out of paper, printer disconnected, etc.), no error message is generated. + + +#### Properties + +| | | +| --- | --- | +| Command number | 746 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-area-property.md b/docs/commands-legacy/qr-set-area-property.md index 670a74bc1c47d2..40bf00a73cd300 100644 --- a/docs/commands-legacy/qr-set-area-property.md +++ b/docs/commands-legacy/qr-set-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET AREA PROPERTY** command shows or hides the interface element whose reference is passed in *property*. @@ -35,4 +32,14 @@ If you pass an invalid *property* parameter, the error -9852 will be generated. #### See also -[QR Get area property](qr-get-area-property.md) \ No newline at end of file +[QR Get area property](qr-get-area-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 796 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-borders.md b/docs/commands-legacy/qr-set-borders.md index dd1b5086d8390a..7ad1361cd468c8 100644 --- a/docs/commands-legacy/qr-set-borders.md +++ b/docs/commands-legacy/qr-set-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET BORDERS** command sets the border style for a given cell. @@ -76,4 +73,14 @@ If you pass an invalid line parameter, the error -9855 will be generated. #### See also -[QR GET BORDERS](qr-get-borders.md) \ No newline at end of file +[QR GET BORDERS](qr-get-borders.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 797 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-destination.md b/docs/commands-legacy/qr-set-destination.md index bc1e57da39dd10..e63c65dfff0148 100644 --- a/docs/commands-legacy/qr-set-destination.md +++ b/docs/commands-legacy/qr-set-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET DESTINATION** command sets the output *type* of the report for the area whose reference was passed in *area*. @@ -51,4 +48,14 @@ The following code sets the destination as being the text file "Mydoc.txt" and e #### See also -[QR GET DESTINATION](qr-get-destination.md) \ No newline at end of file +[QR GET DESTINATION](qr-get-destination.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 745 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-document-property.md b/docs/commands-legacy/qr-set-document-property.md index 63b9031f94705a..bc39a441332f28 100644 --- a/docs/commands-legacy/qr-set-document-property.md +++ b/docs/commands-legacy/qr-set-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET DOCUMENT PROPERTY command displays the printing dialog or sets the unit used for the document. @@ -36,4 +33,14 @@ If you pass an invalid value in the *property* or *value* parameter, the corresp #### See also -[QR Get document property](qr-get-document-property.md) \ No newline at end of file +[QR Get document property](qr-get-document-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 772 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-header-and-footer.md b/docs/commands-legacy/qr-set-header-and-footer.md index 7736c06bac9298..7594f56dab321c 100644 --- a/docs/commands-legacy/qr-set-header-and-footer.md +++ b/docs/commands-legacy/qr-set-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET HEADER AND FOOTER command sets the contents and size of the header or footer. @@ -57,4 +54,14 @@ The following statement places the title “Center title” in the header for th #### See also -[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) \ No newline at end of file +[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 774 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-html-template.md b/docs/commands-legacy/qr-set-html-template.md index 6781979261a7ac..92bd74db87055f 100644 --- a/docs/commands-legacy/qr-set-html-template.md +++ b/docs/commands-legacy/qr-set-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET HTML TEMPLATE** command sets the HTML template currently used for the Quick Report *area*. The template will be used when building the report in HTML format. @@ -70,4 +67,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR Get HTML template](qr-get-html-template.md) \ No newline at end of file +[QR Get HTML template](qr-get-html-template.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 750 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-info-column.md b/docs/commands-legacy/qr-set-info-column.md index c1025c8bf45eca..bfaf57a67f7c7b 100644 --- a/docs/commands-legacy/qr-set-info-column.md +++ b/docs/commands-legacy/qr-set-info-column.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description ##### List mode @@ -108,4 +105,14 @@ If you pass an invalid *colNum* value, the error -9852 will be generated. [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 765 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-info-row.md b/docs/commands-legacy/qr-set-info-row.md index b9fd615989b456..5e67e74db654ee 100644 --- a/docs/commands-legacy/qr-set-info-row.md +++ b/docs/commands-legacy/qr-set-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET INFO ROW** command shows/hides the row whose reference was passed in *row*. @@ -53,4 +50,14 @@ The following statement hides the detail row: [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO COLUMN](qr-set-info-column.md) \ No newline at end of file +[QR SET INFO COLUMN](qr-set-info-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 763 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-report-kind.md b/docs/commands-legacy/qr-set-report-kind.md index eca0df50168790..b0de02b452fadf 100644 --- a/docs/commands-legacy/qr-set-report-kind.md +++ b/docs/commands-legacy/qr-set-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET REPORT KIND** command sets the report *type* for the area whose reference was passed in *area*. @@ -39,4 +36,14 @@ If you pass an invalid *type* value, the error -9852 will be generated. #### See also -[QR Get report kind](qr-get-report-kind.md) \ No newline at end of file +[QR Get report kind](qr-get-report-kind.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 738 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-report-table.md b/docs/commands-legacy/qr-set-report-table.md index bfacce13cac280..03de9670670041 100644 --- a/docs/commands-legacy/qr-set-report-table.md +++ b/docs/commands-legacy/qr-set-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET REPORT TABLE command sets the current table for the report area whose reference was passed in *area* to the table whose number was passed in *aTable*. @@ -28,4 +25,14 @@ If you pass an invalid *table* value, the error -9852 will be generated. #### See also -[QR Get report table](qr-get-report-table.md) \ No newline at end of file +[QR Get report table](qr-get-report-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 757 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-selection.md b/docs/commands-legacy/qr-set-selection.md index 1bb4cd1c8696a0..b9415bb680d6ff 100644 --- a/docs/commands-legacy/qr-set-selection.md +++ b/docs/commands-legacy/qr-set-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET SELECTION command highlights a cell, a row, a column or the entire *area* as you would with a mouse click. It also lets you deselect the current selection. @@ -41,4 +38,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR GET SELECTION](qr-get-selection.md) \ No newline at end of file +[QR GET SELECTION](qr-get-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 794 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-sorts.md b/docs/commands-legacy/qr-set-sorts.md index dddb72018da2e8..fa8aa3bf6003eb 100644 --- a/docs/commands-legacy/qr-set-sorts.md +++ b/docs/commands-legacy/qr-set-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET SORTS command sets the sort orders for the columns in the report whose reference is passed in *area*. @@ -47,4 +44,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR GET SORTS](qr-get-sorts.md) \ No newline at end of file +[QR GET SORTS](qr-get-sorts.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 752 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-text-property.md b/docs/commands-legacy/qr-set-text-property.md index cb1d33082bc055..b07d7d6f90418e 100644 --- a/docs/commands-legacy/qr-set-text-property.md +++ b/docs/commands-legacy/qr-set-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET TEXT PROPERTY** command sets the text attributes for the cell determined by *colNum* and *rowNum*. @@ -86,4 +83,14 @@ This method defines several attributes of the first column’s title: #### See also -[QR Get text property](qr-get-text-property.md) \ No newline at end of file +[QR Get text property](qr-get-text-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 759 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-totals-data.md b/docs/commands-legacy/qr-set-totals-data.md index 1f07220bd8d1b0..982c2de5d54dcb 100644 --- a/docs/commands-legacy/qr-set-totals-data.md +++ b/docs/commands-legacy/qr-set-totals-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command cannot create a subtotal. @@ -97,4 +94,14 @@ If you pass an invalid *breakNum* number, the error -9853 will be generated. #### See also -[QR GET TOTALS DATA](qr-get-totals-data.md) \ No newline at end of file +[QR GET TOTALS DATA](qr-get-totals-data.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 767 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/qr-set-totals-spacing.md b/docs/commands-legacy/qr-set-totals-spacing.md index be9820bb9cce2d..c0797aa4f24bf7 100644 --- a/docs/commands-legacy/qr-set-totals-spacing.md +++ b/docs/commands-legacy/qr-set-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET TOTALS SPACING command sets a space below a subtotal row. It applies only to the list mode. @@ -39,4 +36,14 @@ If you pass an invalid *subtotal*, the error -9852 will be generated. #### See also -[QR GET TOTALS SPACING](qr-get-totals-spacing.md) \ No newline at end of file +[QR GET TOTALS SPACING](qr-get-totals-spacing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 761 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/query-by-attribute.md b/docs/commands-legacy/query-by-attribute.md index dbe1060e0a47c4..ff75e88aa7353f 100644 --- a/docs/commands-legacy/query-by-attribute.md +++ b/docs/commands-legacy/query-by-attribute.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -**QUERY BY ATTRIBUTE** looks for records matching the query string defined using the *objectField*, *attributePath*, *queryOp* and *value* parameters, and returns a selection of records for *aTable*. - -**QUERY BY ATTRIBUTE** changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. If the *aTable* parameter is omitted, the command applies to the default table. If no default table has been set, an error occurs. +**QUERY BY ATTRIBUTE** looks for records matching the query string defined using the *objectField*, *attributePath*, *queryOp* and *value* parameters, and returns a selection of records for *aTable*.changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. If the *aTable* parameter is omitted, the command applies to the default table. If no default table has been set, an error occurs. The optional *conjOp* parameter is used to join **QUERY BY ATTRIBUTE** calls when defining multiple queries. The conjunction operators available are the same as the ones for the [QUERY](query.md) command: @@ -407,4 +405,16 @@ The OK variable is set to 0 if: [QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) -*Structure of 4D language objects* \ No newline at end of file +*Structure of 4D language objects* + +#### Properties + +| | | +| --- | --- | +| Command number | 1331 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/query-by-example.md b/docs/commands-legacy/query-by-example.md index 75bacb4e89ede3..597a7738442d01 100644 --- a/docs/commands-legacy/query-by-example.md +++ b/docs/commands-legacy/query-by-example.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **QUERY BY EXAMPLE** performs the same action as the Query by Example menu command in the Design environment. It displays the current input form as a query window. **QUERY BY EXAMPLE** queries *aTable* for the data that the user enters into the query window. The form must contain the fields that you want the user to be able to query. The query is optimized; indexed fields are automatically used to optimize the query. @@ -42,4 +39,17 @@ If the user clicks the Accept button or presses the Enter key, the OK system var #### See also [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 292 | +| Thread safe | ✗ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || +| Forbidden on the server || + + diff --git a/docs/commands-legacy/query-by-formula.md b/docs/commands-legacy/query-by-formula.md index 33fca53eef499a..48f63655b07e22 100644 --- a/docs/commands-legacy/query-by-formula.md +++ b/docs/commands-legacy/query-by-formula.md @@ -77,4 +77,15 @@ This example uses a join to query all the lines of "ACME" client invoices even t [QUERY](query.md) [QUERY BY SQL](query-by-sql.md) [QUERY SELECTION](query-selection.md) -[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) \ No newline at end of file +[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 48 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/query-by-sql.md b/docs/commands-legacy/query-by-sql.md index cd62a2ee2792c2..e9f2d6d9805bbc 100644 --- a/docs/commands-legacy/query-by-sql.md +++ b/docs/commands-legacy/query-by-sql.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QUERY BY SQL command can be used to take advantage of the SQL kernel integrated into 4D. It can execute a simple SELECT query that can be written as follows: @@ -158,4 +155,16 @@ If the format of the search condition is correct, the system variable OK is set #### See also -[QUERY BY FORMULA](query-by-formula.md) \ No newline at end of file +[QUERY BY FORMULA](query-by-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 942 | +| Thread safe | ✗ | +| Modifies variables | OK, error | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/query-selection-by-attribute.md b/docs/commands-legacy/query-selection-by-attribute.md index 467eb6fbcb38e7..01e641ad882bc7 100644 --- a/docs/commands-legacy/query-selection-by-attribute.md +++ b/docs/commands-legacy/query-selection-by-attribute.md @@ -44,4 +44,16 @@ You want to find people with an age between 20 and 30, among the records that we #### See also -[QUERY BY ATTRIBUTE](query-by-attribute.md) \ No newline at end of file +[QUERY BY ATTRIBUTE](query-by-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1424 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/query-selection-by-formula.md b/docs/commands-legacy/query-selection-by-formula.md index ab9a855522ba33..d44a6a31b04463 100644 --- a/docs/commands-legacy/query-selection-by-formula.md +++ b/docs/commands-legacy/query-selection-by-formula.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**QUERY SELECTION BY FORMULA** looks for records in *aTable*. **QUERY SELECTION BY FORMULA** changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. +**QUERY SELECTION BY FORMULA** looks for records in *aTable*.changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. **QUERY SELECTION BY FORMULA** performs the same actions as [QUERY BY FORMULA](query-by-formula.md). The difference between the two commands is the scope of the query: @@ -29,4 +29,15 @@ For more information, see the description of the [QUERY BY FORMULA](query-by-for [QUERY](query.md) [QUERY BY FORMULA](query-by-formula.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 207 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/query-selection-with-array.md b/docs/commands-legacy/query-selection-with-array.md index e2723106c76f10..4ab64af1a0865f 100644 --- a/docs/commands-legacy/query-selection-with-array.md +++ b/docs/commands-legacy/query-selection-with-array.md @@ -27,4 +27,14 @@ For more information, please refer to the description of the [QUERY WITH ARRAY]( #### See also -[QUERY WITH ARRAY](query-with-array.md) \ No newline at end of file +[QUERY WITH ARRAY](query-with-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1050 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/docs/commands-legacy/query-selection.md b/docs/commands-legacy/query-selection.md index 89cbae5de20e7c..a4f389b7e660fb 100644 --- a/docs/commands-legacy/query-selection.md +++ b/docs/commands-legacy/query-selection.md @@ -42,4 +42,16 @@ You will find all companies located in New York City, with a Stock Exchange acti #### See also -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 341 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/query-with-array.md b/docs/commands-legacy/query-with-array.md index 9d4fa079f77d4d..66efd11ee58929 100644 --- a/docs/commands-legacy/query-with-array.md +++ b/docs/commands-legacy/query-with-array.md @@ -38,4 +38,14 @@ The following example allows you to retrieve the records of both French and Amer #### See also -[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) \ No newline at end of file +[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 644 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/docs/commands-legacy/query.md b/docs/commands-legacy/query.md index 6cda9560989664..0d1ba323372a99 100644 --- a/docs/commands-legacy/query.md +++ b/docs/commands-legacy/query.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -**QUERY** looks for records matching the criteria specified in *queryArgument* and returns a selection of records for *aTable*. **QUERY** changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. +**QUERY** looks for records matching the criteria specified in *queryArgument* and returns a selection of records for *aTable*.changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. If the *aTable* parameter is omitted, the command applies to the default table. If no default table has been set, an error occurs. @@ -308,4 +308,16 @@ The OK variable is set to 0 if: #### See also -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 277 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/quit-4d.md b/docs/commands-legacy/quit-4d.md index 8a85d4c8c0566d..858f2712d60fd9 100644 --- a/docs/commands-legacy/quit-4d.md +++ b/docs/commands-legacy/quit-4d.md @@ -66,4 +66,13 @@ The project method listed here is associated with the Quit or Exit menu item in #### See also -[On Exit database method](on-exit-database-method.md) \ No newline at end of file +[On Exit database method](on-exit-database-method.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 291 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/random.md b/docs/commands-legacy/random.md index 587a524b9323ad..05559de13a6325 100644 --- a/docs/commands-legacy/random.md +++ b/docs/commands-legacy/random.md @@ -32,3 +32,13 @@ The following example assigns a random integer between 10 and 30 to the *vlResul ```4d  vlResult:=(Random%21)+10 ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 100 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/read-only-state.md b/docs/commands-legacy/read-only-state.md index 9fcf605a2da612..44fade3313ad77 100644 --- a/docs/commands-legacy/read-only-state.md +++ b/docs/commands-legacy/read-only-state.md @@ -35,4 +35,13 @@ The following example tests the state of an \[Invoice\] table. If the state of t [READ ONLY](read-only.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 362 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/read-only.md b/docs/commands-legacy/read-only.md index 4450fbe4c6fafe..4bd47290942f28 100644 --- a/docs/commands-legacy/read-only.md +++ b/docs/commands-legacy/read-only.md @@ -25,4 +25,13 @@ Use READ ONLY when you do not need to modify the record or records. [Read only state](read-only-state.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 145 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/read-picture-file.md b/docs/commands-legacy/read-picture-file.md index 943191aff50ccf..44b05f835ef841 100644 --- a/docs/commands-legacy/read-picture-file.md +++ b/docs/commands-legacy/read-picture-file.md @@ -39,4 +39,14 @@ If the command is executed successfully, the system variable Document contains t [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) *Pictures* -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 678 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/docs/commands-legacy/read-write.md b/docs/commands-legacy/read-write.md index 7c127a796e867b..a95941101ff6db 100644 --- a/docs/commands-legacy/read-write.md +++ b/docs/commands-legacy/read-write.md @@ -29,4 +29,13 @@ Use READ WRITE when you must modify a record and save the changes. Also use READ [READ ONLY](read-only.md) [Read only state](read-only-state.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 146 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/real-to-blob.md b/docs/commands-legacy/real-to-blob.md index f4ff70eee14efd..42701328454f17 100644 --- a/docs/commands-legacy/real-to-blob.md +++ b/docs/commands-legacy/real-to-blob.md @@ -131,4 +131,13 @@ After executing this code: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 552 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/receive-buffer.md b/docs/commands-legacy/receive-buffer.md index 251a7d26fb80cd..0fd2de034ef99f 100644 --- a/docs/commands-legacy/receive-buffer.md +++ b/docs/commands-legacy/receive-buffer.md @@ -62,4 +62,14 @@ Note that access to the interprocess *◊vtBuffer* variable should be protected [RECEIVE PACKET](receive-packet.md) [Semaphore](semaphore.md) [SET CHANNEL](set-channel.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 172 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/receive-packet.md b/docs/commands-legacy/receive-packet.md index c8b1d56ca2a3f9..976d00de7009f2 100644 --- a/docs/commands-legacy/receive-packet.md +++ b/docs/commands-legacy/receive-packet.md @@ -112,4 +112,14 @@ After a call to **RECEIVE PACKET**, the OK system variable is set to 1 if the pa [SEND PACKET](send-packet.md) [SET DOCUMENT POSITION](set-document-position.md) [SET TIMEOUT](set-timeout.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 104 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/receive-record.md b/docs/commands-legacy/receive-record.md index a975cec6330779..7ff05bb3b2a802 100644 --- a/docs/commands-legacy/receive-record.md +++ b/docs/commands-legacy/receive-record.md @@ -150,4 +150,14 @@ The OK system variable is set to 1 if the record is received. Otherwise, the OK [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 79 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/receive-variable.md b/docs/commands-legacy/receive-variable.md index 72bf70bcbab18f..a52fc4d633281e 100644 --- a/docs/commands-legacy/receive-variable.md +++ b/docs/commands-legacy/receive-variable.md @@ -38,4 +38,14 @@ The OK system variable is set to 1 if the variable is received. Otherwise, the O [ON ERR CALL](on-err-call.md) [RECEIVE RECORD](receive-record.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 81 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/record-number.md b/docs/commands-legacy/record-number.md index 31d17ef4cfaa7a..156362aa4463c2 100644 --- a/docs/commands-legacy/record-number.md +++ b/docs/commands-legacy/record-number.md @@ -42,4 +42,13 @@ The following example saves the current record number and then searches for any [GOTO RECORD](goto-record.md) [Is new record](is-new-record.md) [Selected record number](selected-record-number.md) -[Sequence number](sequence-number.md) \ No newline at end of file +[Sequence number](sequence-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 243 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/records-in-selection.md b/docs/commands-legacy/records-in-selection.md index 5d47ef140c5910..2da83a05aa5ff8 100644 --- a/docs/commands-legacy/records-in-selection.md +++ b/docs/commands-legacy/records-in-selection.md @@ -32,4 +32,13 @@ The following example shows a loop technique commonly used to move through all t #### See also -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 76 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/records-in-set.md b/docs/commands-legacy/records-in-set.md index 81d1ab9f004f93..e4d82e680d5d84 100644 --- a/docs/commands-legacy/records-in-set.md +++ b/docs/commands-legacy/records-in-set.md @@ -32,4 +32,13 @@ The following example displays an alert telling what percentage of the customers #### See also [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 195 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/records-in-table.md b/docs/commands-legacy/records-in-table.md index bdd934c9e3b9f8..1348b65067249b 100644 --- a/docs/commands-legacy/records-in-table.md +++ b/docs/commands-legacy/records-in-table.md @@ -28,4 +28,13 @@ The following example displays an alert that shows the number of records in a ta #### See also -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 83 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/redraw-window.md b/docs/commands-legacy/redraw-window.md index 330fffc02a9e31..82b8a21a991ce9 100644 --- a/docs/commands-legacy/redraw-window.md +++ b/docs/commands-legacy/redraw-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The REDRAW WINDOW command provokes a graphical update of the window whose reference number you pass in *window*. @@ -26,4 +23,13 @@ If you omit the *window* parameter, REDRAW WINDOW applies to the frontmost windo #### See also -[ERASE WINDOW](erase-window.md) \ No newline at end of file +[ERASE WINDOW](erase-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 456 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/redraw.md b/docs/commands-legacy/redraw.md index 6e0684c77cfe8d..ff5067c0cf475e 100644 --- a/docs/commands-legacy/redraw.md +++ b/docs/commands-legacy/redraw.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description When you use a method to change the value of a field displayed in a subform, you must execute REDRAW to ensure that the form is updated. @@ -24,4 +21,13 @@ In the context of list boxes in selection mode, when the REDRAW statement is app #### See also -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 174 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/reduce-restore-window.md b/docs/commands-legacy/reduce-restore-window.md index aa1f2bc767b011..b7e15016898c91 100644 --- a/docs/commands-legacy/reduce-restore-window.md +++ b/docs/commands-legacy/reduce-restore-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **REDUCE RESTORE WINDOW** command reduces/expands the window whose reference number was passed in *window* to/from the taskbar on Windows or the dock on macOS. @@ -31,4 +28,13 @@ The command toggles the window state: [Is window reduced](is-window-reduced.md) [MAXIMIZE WINDOW](maximize-window.md) -[MINIMIZE WINDOW](minimize-window.md) \ No newline at end of file +[MINIMIZE WINDOW](minimize-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1829 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/reduce-selection.md b/docs/commands-legacy/reduce-selection.md index da7e14680f30c0..ffc3b51d726640 100644 --- a/docs/commands-legacy/reduce-selection.md +++ b/docs/commands-legacy/reduce-selection.md @@ -56,4 +56,15 @@ The following example first finds the correct statistics for a worldwide contest [ORDER BY](order-by.md) [QUERY](query.md) [SCAN INDEX](scan-index.md) -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 351 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/refresh-license.md b/docs/commands-legacy/refresh-license.md index d245892bb28a0a..fc583319d214b5 100644 --- a/docs/commands-legacy/refresh-license.md +++ b/docs/commands-legacy/refresh-license.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Refresh license** command updates the current 4D Server license. It connects you to the 4D customer database and automatically activates any new or updated licenses (*e.g.*, additional purchased clients) related to the current license. @@ -47,3 +44,13 @@ You want to update your license and receive a message when it's completed:     ALERT($res.statusText)  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1336 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/regenerate-missing-table.md b/docs/commands-legacy/regenerate-missing-table.md index ead57631d68dbb..7409d439adc3cc 100644 --- a/docs/commands-legacy/regenerate-missing-table.md +++ b/docs/commands-legacy/regenerate-missing-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **REGENERATE MISSING TABLE** command rebuilds the missing table whose name is passed in the *tableName* parameter. When a missing table is rebuilt, it becomes visible in the Structure editor and its data can once again be accessed. @@ -61,4 +58,13 @@ This method regenerates all the missing tables that may be present in the databa #### See also -[GET MISSING TABLE NAMES](get-missing-table-names.md) \ No newline at end of file +[GET MISSING TABLE NAMES](get-missing-table-names.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1126 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/register-client.md b/docs/commands-legacy/register-client.md index 19a95a45959a15..ed822467183cfe 100644 --- a/docs/commands-legacy/register-client.md +++ b/docs/commands-legacy/register-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **REGISTER CLIENT** command “registers” a 4D client station with the name specified in *clientName* on 4D Server, so as to allow other clients or eventually 4D Server (by using stored methods) to execute methods on it by using the [EXECUTE ON CLIENT](execute-on-client.md) command. Once it is registered, a 4D client can then execute one or more methods for other clients. @@ -115,4 +112,14 @@ If the 4D client is correctly registered, the OK system variable is equal to 1\. [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 648 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/register-data-key.md b/docs/commands-legacy/register-data-key.md index 6b5c3812f2aed4..94a4ef38a333cc 100644 --- a/docs/commands-legacy/register-data-key.md +++ b/docs/commands-legacy/register-data-key.md @@ -47,4 +47,13 @@ In the first parameter, pass the *curPassPhrase* or *curDataKey* that defines th #### See also [4D Blog - New 4D commands to work with encrypted data](https://blog.4d.com/new-4d-commands-to-work-with-encrypted-data/) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1638 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/reject-new-remote-connections.md b/docs/commands-legacy/reject-new-remote-connections.md index 53c80e736de6f3..4037171279b295 100644 --- a/docs/commands-legacy/reject-new-remote-connections.md +++ b/docs/commands-legacy/reject-new-remote-connections.md @@ -38,4 +38,13 @@ You want to reject or accept new client connections: [DROP REMOTE USER](drop-remote-user.md) [Application info](application-info.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1635 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/reject.md b/docs/commands-legacy/reject.md index 8f9a19cfc47557..d006f1372753e0 100644 --- a/docs/commands-legacy/reject.md +++ b/docs/commands-legacy/reject.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **REJECT** has two forms. The first form has no parameters. It rejects the entire data entry and forces the user to stay in the form. The second form rejects only *aField* and forces the user to stay in the field. @@ -64,4 +61,13 @@ The following example is part of an object method for an *\[Employees\]Salary* f [ACCEPT](accept.md) [CANCEL](cancel.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 38 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/relate-many-selection.md b/docs/commands-legacy/relate-many-selection.md index 16bf32e250e7ec..9289074a3f19ac 100644 --- a/docs/commands-legacy/relate-many-selection.md +++ b/docs/commands-legacy/relate-many-selection.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -The RELATE MANY SELECTION command generates a selection of records in the Many table, based on a selection of records in the One table, and loads the first record of the Many table as the current record. - -**Note:** RELATE MANY SELECTION changes the current record for the One table. +The RELATE MANY SELECTION command generates a selection of records in the Many table, based on a selection of records in the One table, and loads the first record of the Many table as the current record.RELATE MANY SELECTION changes the current record for the One table. #### Example @@ -34,4 +32,15 @@ This example selects all invoices made to the customers whose credit is greater [QUERY](query.md) [RELATE ONE](relate-one.md) -[RELATE ONE SELECTION](relate-one-selection.md) \ No newline at end of file +[RELATE ONE SELECTION](relate-one-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 340 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/relate-many.md b/docs/commands-legacy/relate-many.md index 5088ffd252ea30..22fe27df91c691 100644 --- a/docs/commands-legacy/relate-many.md +++ b/docs/commands-legacy/relate-many.md @@ -63,4 +63,14 @@ Note that the RELATE MANY command is needed, even though the relations are autom #### See also [OLD RELATED MANY](old-related-many.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 262 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/docs/commands-legacy/relate-one-selection.md b/docs/commands-legacy/relate-one-selection.md index 1544206f971f5c..036ab09dcd4b75 100644 --- a/docs/commands-legacy/relate-one-selection.md +++ b/docs/commands-legacy/relate-one-selection.md @@ -56,4 +56,15 @@ The following technique uses **RELATE ONE SELECTION** to accomplish the same res [QUERY](query.md) [RELATE MANY SELECTION](relate-many-selection.md) [RELATE ONE](relate-one.md) -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 349 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/relate-one.md b/docs/commands-legacy/relate-one.md index cf58e04f68e910..b8a94813580598 100644 --- a/docs/commands-legacy/relate-one.md +++ b/docs/commands-legacy/relate-one.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **RELATE ONE** has two forms. @@ -90,4 +87,16 @@ If the command has been executed correctly and if the related records have been #### See also [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 42 | +| Thread safe | ✗ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/release-menu.md b/docs/commands-legacy/release-menu.md index 950c03717d553c..a29c2eb19898c1 100644 --- a/docs/commands-legacy/release-menu.md +++ b/docs/commands-legacy/release-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **RELEASE MENU** command removes the menu whose ID is passed in *menu* from memory. This menu must have been created by the menu [Create menu](create-menu.md) command. The following rule applies: for each [Create menu](create-menu.md) there must be a corresponding [RELEASE MENU](release-menu.md). @@ -56,4 +53,13 @@ This example shows different ways to use this command: #### See also -[Create menu](create-menu.md) \ No newline at end of file +[Create menu](create-menu.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 978 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/reload-external-data.md b/docs/commands-legacy/reload-external-data.md index a0e4f8ee8c6792..a4081164e405d9 100644 --- a/docs/commands-legacy/reload-external-data.md +++ b/docs/commands-legacy/reload-external-data.md @@ -25,4 +25,13 @@ You then need to reload the data using the **RELOAD EXTERNAL DATA** command to u #### See also -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1135 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/reload-project.md b/docs/commands-legacy/reload-project.md index 84635904ac88bc..fa140f941c8d5d 100644 --- a/docs/commands-legacy/reload-project.md +++ b/docs/commands-legacy/reload-project.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **RELOAD PROJECT** command reloads the source file definitions (methods, forms, etc.) from the disk for the running project in the current 4D environment. It can only be used with 4D projects executed in **interpreted mode**. The command execution is asynchronous. @@ -36,4 +33,13 @@ When the command is called from: #### See also -*Developing a project* \ No newline at end of file +*Developing a project* + +#### Properties + +| | | +| --- | --- | +| Command number | 1739 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/remove-from-set.md b/docs/commands-legacy/remove-from-set.md index 95284ddf03017c..87a6b281ec58ff 100644 --- a/docs/commands-legacy/remove-from-set.md +++ b/docs/commands-legacy/remove-from-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### See also -[ADD TO SET](add-to-set.md) \ No newline at end of file +[ADD TO SET](add-to-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 561 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/remove-picture-from-library.md b/docs/commands-legacy/remove-picture-from-library.md index 65fb3d5453aa3f..434fa4888a59d4 100644 --- a/docs/commands-legacy/remove-picture-from-library.md +++ b/docs/commands-legacy/remove-picture-from-library.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The REMOVE PICTURE FROM LIBRARY command removes from the Picture Library the picture whose reference number is passed in *picRef* or whose name is passed in *picName*. @@ -51,4 +48,14 @@ The following example deletes from the Picture Library any pictures whose names [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 567 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/replace-string.md b/docs/commands-legacy/replace-string.md index 772b1c947a6b4b..1519e7b4ab3d6f 100644 --- a/docs/commands-legacy/replace-string.md +++ b/docs/commands-legacy/replace-string.md @@ -69,4 +69,13 @@ The following example illustrates the use of the \* parameter in the case of a d [Change string](change-string.md) [Delete string](delete-string.md) -[Insert string](insert-string.md) \ No newline at end of file +[Insert string](insert-string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 233 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/request.md b/docs/commands-legacy/request.md index bea7c1df06e583..a05dd32c0379f8 100644 --- a/docs/commands-legacy/request.md +++ b/docs/commands-legacy/request.md @@ -77,4 +77,14 @@ will display the request dialog box (on Windows) shown here: #### See also [ALERT](alert.md) -[CONFIRM](confirm.md) \ No newline at end of file +[CONFIRM](confirm.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 163 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/resize-form-window.md b/docs/commands-legacy/resize-form-window.md index cda3c748a19856..8798e6fe57d76a 100644 --- a/docs/commands-legacy/resize-form-window.md +++ b/docs/commands-legacy/resize-form-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **RESIZE FORM WINDOW** command lets you change the size of the current form window. @@ -47,4 +44,13 @@ After execution of this line: [FORM GET PROPERTIES](form-get-properties.md) [FORM SET SIZE](form-set-size.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 890 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/resolve-alias.md b/docs/commands-legacy/resolve-alias.md index 6c08bf860af374..e0c9aad5c9dc1b 100644 --- a/docs/commands-legacy/resolve-alias.md +++ b/docs/commands-legacy/resolve-alias.md @@ -30,4 +30,14 @@ If *aliasPath* does specify an alias/shortcut, the OK system variable is set to #### See also -[CREATE ALIAS](create-alias.md) \ No newline at end of file +[CREATE ALIAS](create-alias.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 695 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/resolve-pointer.md b/docs/commands-legacy/resolve-pointer.md index 58d350c7180f93..59a7673f8c3b53 100644 --- a/docs/commands-legacy/resolve-pointer.md +++ b/docs/commands-legacy/resolve-pointer.md @@ -107,4 +107,13 @@ Here is an example of a 2D array pointer: [Get pointer](get-pointer.md) [Is a variable](is-a-variable.md) [Is nil pointer](is-nil-pointer.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 394 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/resource-list.md b/docs/commands-legacy/resource-list.md index e3e69220cca609..022992526340f0 100644 --- a/docs/commands-legacy/resource-list.md +++ b/docs/commands-legacy/resource-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **RESOURCE LIST** command populates the arrays *resIDs* and *resNames* with the resource IDs and names of the resources whose type is passed in *resType*. @@ -71,4 +68,13 @@ The following example copies the picture resources present in all currently open #### See also -[RESOURCE TYPE LIST](resource-type-list.md) \ No newline at end of file +[RESOURCE TYPE LIST](resource-type-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 500 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/resource-type-list.md b/docs/commands-legacy/resource-type-list.md index 370e987e48bf6c..88c53b0d5ed3c0 100644 --- a/docs/commands-legacy/resource-type-list.md +++ b/docs/commands-legacy/resource-type-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The RESOURCE TYPE LIST command populates the array *resTypes* with the resource types of the resources present in the resource files currently open. @@ -82,4 +79,13 @@ Once this project method is implemented in a database, you can write: #### See also -[RESOURCE LIST](resource-list.md) \ No newline at end of file +[RESOURCE LIST](resource-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 499 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/restart-4d.md b/docs/commands-legacy/restart-4d.md index 7dd8026c9e3593..28fe6746ea0c30 100644 --- a/docs/commands-legacy/restart-4d.md +++ b/docs/commands-legacy/restart-4d.md @@ -33,4 +33,14 @@ If the command is executed correctly, the OK system variable is set to 1; otherw #### See also [Get last update log path](get-last-update-log-path.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1292 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/restore-info.md b/docs/commands-legacy/restore-info.md index c4d611bebbf978..56891c90e80fc9 100644 --- a/docs/commands-legacy/restore-info.md +++ b/docs/commands-legacy/restore-info.md @@ -35,4 +35,13 @@ The type and content of the *info1* and *info2* parameters depend on the value o #### See also -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 889 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/restore.md b/docs/commands-legacy/restore.md index e4cd2ad2f09663..7b546e303dfbfb 100644 --- a/docs/commands-legacy/restore.md +++ b/docs/commands-legacy/restore.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The RESTORE command can be used to restore the file(s) included in a 4D archive. This command is useful as part of custom interfaces for managing backups. @@ -35,4 +32,14 @@ The RESTORE command modifies the value of the *OK* and *Document* variables: if #### See also [BACKUP](backup.md) -[RESTORE INFO](restore-info.md) \ No newline at end of file +[RESTORE INFO](restore-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 918 | +| Thread safe | ✗ | +| Modifies variables | OK, Document, error | + + diff --git a/docs/commands-legacy/resume-indexes.md b/docs/commands-legacy/resume-indexes.md index 0ee2ac39ecfc1b..b68f9cab70aa6c 100644 --- a/docs/commands-legacy/resume-indexes.md +++ b/docs/commands-legacy/resume-indexes.md @@ -26,4 +26,13 @@ The **RESUME INDEXES** command can only be called from 4D Server or a local 4D. #### See also [CREATE INDEX](create-index.md) -[PAUSE INDEXES](pause-indexes.md) \ No newline at end of file +[PAUSE INDEXES](pause-indexes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1294 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/resume-process.md b/docs/commands-legacy/resume-process.md index 8f25282a180f5b..f743448d546e6c 100644 --- a/docs/commands-legacy/resume-process.md +++ b/docs/commands-legacy/resume-process.md @@ -24,4 +24,14 @@ If *process* has been delayed before, see the [PAUSE PROCESS](pause-process.md) #### See also [DELAY PROCESS](delay-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 320 | +| Thread safe | ✓ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/resume-transaction.md b/docs/commands-legacy/resume-transaction.md index 5e19581042a3d6..97b1fcb6e50fd8 100644 --- a/docs/commands-legacy/resume-transaction.md +++ b/docs/commands-legacy/resume-transaction.md @@ -22,4 +22,13 @@ For more information, please refer to *Suspending transactions*. [Active transaction](active-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspending transactions* \ No newline at end of file +*Suspending transactions* + +#### Properties + +| | | +| --- | --- | +| Command number | 1386 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/right-click.md b/docs/commands-legacy/right-click.md index 0eb2e19c0b4e99..4ab825c4f017b4 100644 --- a/docs/commands-legacy/right-click.md +++ b/docs/commands-legacy/right-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Right click command returns True if the right button of the mouse has been clicked. @@ -25,4 +22,13 @@ This command should be used only in the context of the On Clicked form event. It #### See also [Contextual click](contextual-click.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 712 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/round.md b/docs/commands-legacy/round.md index 21ee64bb3103bb..d3374259c0d5bd 100644 --- a/docs/commands-legacy/round.md +++ b/docs/commands-legacy/round.md @@ -36,4 +36,13 @@ The following example illustrates how Round works with different arguments. Each #### See also -[Trunc](trunc.md) \ No newline at end of file +[Trunc](trunc.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 94 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/save-list.md b/docs/commands-legacy/save-list.md index 64ac28c0086ed9..e1c2440dddd5e7 100644 --- a/docs/commands-legacy/save-list.md +++ b/docs/commands-legacy/save-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SAVE LIST command saves the list whose reference number you pass in *list*, within the Design environment List Editor, under the name you pass in *listName*. @@ -27,4 +24,13 @@ If there is already a list with this name, its contents are replaced. #### See also -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 384 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/save-record.md b/docs/commands-legacy/save-record.md index a874dcac10b430..5836cf2df48989 100644 --- a/docs/commands-legacy/save-record.md +++ b/docs/commands-legacy/save-record.md @@ -49,4 +49,13 @@ The following example is part of a method that reads records from a document. Th [CREATE RECORD](create-record.md) [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 53 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/save-related-one.md b/docs/commands-legacy/save-related-one.md index f8dda6f995be35..e6066c44070f4c 100644 --- a/docs/commands-legacy/save-related-one.md +++ b/docs/commands-legacy/save-related-one.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [CREATE RELATED ONE](create-related-one.md) [Locked](locked.md) [RELATE ONE](relate-one.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 43 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/save-set.md b/docs/commands-legacy/save-set.md index d8ae3e3b0d976c..07662136e3b8a3 100644 --- a/docs/commands-legacy/save-set.md +++ b/docs/commands-legacy/save-set.md @@ -40,4 +40,14 @@ If the user clicks Cancel in the Save File dialog box, or if there is an error d #### See also -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 184 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/save-variables.md b/docs/commands-legacy/save-variables.md index 9e442a19b18845..564442b0e84419 100644 --- a/docs/commands-legacy/save-variables.md +++ b/docs/commands-legacy/save-variables.md @@ -47,4 +47,14 @@ If the variables are saved properly, the **OK** system variable is set to 1; oth [DOCUMENT TO BLOB](document-to-blob.md) [LOAD VARIABLES](load-variables.md) *System Variables* -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 75 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/docs/commands-legacy/sax-add-processing-instruction.md b/docs/commands-legacy/sax-add-processing-instruction.md index 12a1b87b81ba71..872617ef7bf816 100644 --- a/docs/commands-legacy/sax-add-processing-instruction.md +++ b/docs/commands-legacy/sax-add-processing-instruction.md @@ -44,4 +44,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) \ No newline at end of file +[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 857 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sax-add-xml-cdata.md b/docs/commands-legacy/sax-add-xml-cdata.md index dcb51a6df0236d..0d5affc08e9bac 100644 --- a/docs/commands-legacy/sax-add-xml-cdata.md +++ b/docs/commands-legacy/sax-add-xml-cdata.md @@ -74,4 +74,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[SAX GET XML CDATA](sax-get-xml-cdata.md) \ No newline at end of file +[SAX GET XML CDATA](sax-get-xml-cdata.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 856 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sax-add-xml-comment.md b/docs/commands-legacy/sax-add-xml-comment.md index 3edf4cf3182b60..6fd90047e8fb01 100644 --- a/docs/commands-legacy/sax-add-xml-comment.md +++ b/docs/commands-legacy/sax-add-xml-comment.md @@ -45,4 +45,14 @@ In the event of an error, the command returns an error which can be intercepted #### See also -[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) \ No newline at end of file +[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 852 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/sax-add-xml-doctype.md b/docs/commands-legacy/sax-add-xml-doctype.md index ef2c7b478c84bd..64ea73f9aea70f 100644 --- a/docs/commands-legacy/sax-add-xml-doctype.md +++ b/docs/commands-legacy/sax-add-xml-doctype.md @@ -45,4 +45,14 @@ In the event of an error, the the command returns an error which can be intercep #### See also -[SAX ADD XML COMMENT](sax-add-xml-comment.md) \ No newline at end of file +[SAX ADD XML COMMENT](sax-add-xml-comment.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 851 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/sax-add-xml-element-value.md b/docs/commands-legacy/sax-add-xml-element-value.md index 986bd6180fceaf..eb693a91eb8750 100644 --- a/docs/commands-legacy/sax-add-xml-element-value.md +++ b/docs/commands-legacy/sax-add-xml-element-value.md @@ -49,4 +49,14 @@ If the command has been executed correctly, the system variable OK is set to 1; #### See also [SAX GET XML ELEMENT VALUE](sax-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 855 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sax-close-xml-element.md b/docs/commands-legacy/sax-close-xml-element.md index 3b2948efa60c8e..33f5f03e81b56a 100644 --- a/docs/commands-legacy/sax-close-xml-element.md +++ b/docs/commands-legacy/sax-close-xml-element.md @@ -36,4 +36,13 @@ If the last element opened is **, the following statement: #### See also [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 854 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/sax-get-xml-cdata.md b/docs/commands-legacy/sax-get-xml-cdata.md index ea39ea15b1a434..091f2784bb18f4 100644 --- a/docs/commands-legacy/sax-get-xml-cdata.md +++ b/docs/commands-legacy/sax-get-xml-cdata.md @@ -48,4 +48,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [SAX ADD XML CDATA](sax-add-xml-cdata.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 878 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sax-get-xml-comment.md b/docs/commands-legacy/sax-get-xml-comment.md index 04dff7949196fd..f4fe53c1ecc8f0 100644 --- a/docs/commands-legacy/sax-get-xml-comment.md +++ b/docs/commands-legacy/sax-get-xml-comment.md @@ -25,4 +25,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [SAX ADD XML COMMENT](sax-add-xml-comment.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 874 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sax-get-xml-document-values.md b/docs/commands-legacy/sax-get-xml-document-values.md index 574f2a6678cac0..062770db628139 100644 --- a/docs/commands-legacy/sax-get-xml-document-values.md +++ b/docs/commands-legacy/sax-get-xml-document-values.md @@ -29,4 +29,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [SAX Get XML node](sax-get-xml-node.md) -[SAX SET XML DECLARATION](sax-set-xml-declaration.md) \ No newline at end of file +[SAX SET XML DECLARATION](sax-set-xml-declaration.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 873 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/sax-get-xml-element-value.md b/docs/commands-legacy/sax-get-xml-element-value.md index f2bd98270b3b04..2098fc1b859596 100644 --- a/docs/commands-legacy/sax-get-xml-element-value.md +++ b/docs/commands-legacy/sax-get-xml-element-value.md @@ -43,4 +43,14 @@ If the command was executed correctly, the system variable OK is set to 1\. Othe #### See also [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 877 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/sax-get-xml-element.md b/docs/commands-legacy/sax-get-xml-element.md index 543ee15b328543..c6a07b15aad656 100644 --- a/docs/commands-legacy/sax-get-xml-element.md +++ b/docs/commands-legacy/sax-get-xml-element.md @@ -56,4 +56,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 876 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sax-get-xml-entity.md b/docs/commands-legacy/sax-get-xml-entity.md index ee780e3e87991d..84e8c7da8ad904 100644 --- a/docs/commands-legacy/sax-get-xml-entity.md +++ b/docs/commands-legacy/sax-get-xml-entity.md @@ -47,4 +47,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 879 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/sax-get-xml-node.md b/docs/commands-legacy/sax-get-xml-node.md index 974dcbb2ebb4e7..05f63bfbf1cd47 100644 --- a/docs/commands-legacy/sax-get-xml-node.md +++ b/docs/commands-legacy/sax-get-xml-node.md @@ -55,3 +55,14 @@ The following example processes an event: #### System variables and sets If the command has been executed correctly, the system variable OK is set to 1\. Otherwise, it is set to 0 and an error is generated. + + +#### Properties + +| | | +| --- | --- | +| Command number | 860 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/sax-get-xml-processing-instruction.md b/docs/commands-legacy/sax-get-xml-processing-instruction.md index 96055dd1d9632f..97852f3d0856f5 100644 --- a/docs/commands-legacy/sax-get-xml-processing-instruction.md +++ b/docs/commands-legacy/sax-get-xml-processing-instruction.md @@ -39,4 +39,13 @@ The following instruction will return “PI” in *vName* and “TextProcess” #### See also [SAX ADD PROCESSING INSTRUCTION](sax-add-processing-instruction.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 875 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/sax-open-xml-element-arrays.md b/docs/commands-legacy/sax-open-xml-element-arrays.md index c4f53d3e0eec25..2d4b9b910abf11 100644 --- a/docs/commands-legacy/sax-open-xml-element-arrays.md +++ b/docs/commands-legacy/sax-open-xml-element-arrays.md @@ -53,4 +53,13 @@ The following method: [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 921 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/sax-open-xml-element.md b/docs/commands-legacy/sax-open-xml-element.md index eafec47bd1d79c..85715b3d44b6d3 100644 --- a/docs/commands-legacy/sax-open-xml-element.md +++ b/docs/commands-legacy/sax-open-xml-element.md @@ -51,4 +51,14 @@ If an invalid character is passed in *tag*, an error is generated. #### See also [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 853 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/sax-set-xml-declaration.md b/docs/commands-legacy/sax-set-xml-declaration.md index 21c8034bc172da..43f2dc3d7ed69a 100644 --- a/docs/commands-legacy/sax-set-xml-declaration.md +++ b/docs/commands-legacy/sax-set-xml-declaration.md @@ -43,4 +43,13 @@ The following code: #### See also -[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) \ No newline at end of file +[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 858 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/scan-index.md b/docs/commands-legacy/scan-index.md index 5841237148d1b5..f78fec9a4016c9 100644 --- a/docs/commands-legacy/scan-index.md +++ b/docs/commands-legacy/scan-index.md @@ -48,4 +48,15 @@ The following example mails letters to 50 of the worst customers and then to 50 [ORDER BY](order-by.md) [QUERY](query.md) -[REDUCE SELECTION](reduce-selection.md) \ No newline at end of file +[REDUCE SELECTION](reduce-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 350 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/screen-coordinates.md b/docs/commands-legacy/screen-coordinates.md index 07ed8f0ad27a37..35535fb65241ca 100644 --- a/docs/commands-legacy/screen-coordinates.md +++ b/docs/commands-legacy/screen-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SCREEN COORDINATES command returns in *left*, *top*, *right,* and *bottom* the global coordinates of the screen specified by *screenID*. @@ -47,4 +44,13 @@ The following images demonstrate the differences between the screen size and the [Count screens](count-screens.md) [Menu bar screen](menu-bar-screen.md) -[SCREEN DEPTH](screen-depth.md) \ No newline at end of file +[SCREEN DEPTH](screen-depth.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 438 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/screen-depth.md b/docs/commands-legacy/screen-depth.md index 0b1a9daa5876c5..188892f3abe068 100644 --- a/docs/commands-legacy/screen-depth.md +++ b/docs/commands-legacy/screen-depth.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SCREEN DEPTH command returns in *depth* and *color* information about the monitor. @@ -61,3 +58,13 @@ Your application displays many color graphics. Somewhere in your database, you c #### See also [Count screens](count-screens.md) + + +#### Properties + +| | | +| --- | --- | +| Command number | 439 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/screen-height.md b/docs/commands-legacy/screen-height.md index ccf12c84808b60..3fbba037cc8bec 100644 --- a/docs/commands-legacy/screen-height.md +++ b/docs/commands-legacy/screen-height.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description On Windows, Screen height returns the height of 4D application window (MDI window). If you specify the optional *\** parameter, the function returns the height of the screen. @@ -26,4 +23,13 @@ On Macintosh, Screen height returns the height of the main screen, the screen wh #### See also [SCREEN COORDINATES](screen-coordinates.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 188 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/screen-width.md b/docs/commands-legacy/screen-width.md index c84edffc86bdd5..ed779d2307f587 100644 --- a/docs/commands-legacy/screen-width.md +++ b/docs/commands-legacy/screen-width.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description On Windows, Screen width returns the width of 4D application window (MDI window). If you specify the optional *\** parameter, the function returns the width of the screen. @@ -26,4 +23,13 @@ On Macintosh, Screen width returns the width of the main screen, the screen wher #### See also [SCREEN COORDINATES](screen-coordinates.md) -[Screen height](screen-height.md) \ No newline at end of file +[Screen height](screen-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 187 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/select-document.md b/docs/commands-legacy/select-document.md index ebbb3a2e6a9295..d6e1f7937f6786 100644 --- a/docs/commands-legacy/select-document.md +++ b/docs/commands-legacy/select-document.md @@ -95,4 +95,14 @@ If no file was selected (for example, if the user clicked on the **Cancel** butt #### See also [Open document](open-document.md) -[Select folder](select-folder.md) \ No newline at end of file +[Select folder](select-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 905 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/docs/commands-legacy/select-folder.md b/docs/commands-legacy/select-folder.md index c528ea242bdd4b..437cb04c549b6a 100644 --- a/docs/commands-legacy/select-folder.md +++ b/docs/commands-legacy/select-folder.md @@ -83,4 +83,14 @@ The following example allows you to select the folder in which the pictures in t [CREATE FOLDER](create-folder.md) [FOLDER LIST](folder-list.md) -[Select document](select-document.md) \ No newline at end of file +[Select document](select-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 670 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/select-list-items-by-position.md b/docs/commands-legacy/select-list-items-by-position.md index 9758d97a0a47a0..666ce860d1d031 100644 --- a/docs/commands-legacy/select-list-items-by-position.md +++ b/docs/commands-legacy/select-list-items-by-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SELECT LIST ITEMS BY POSITION** command selects the item(s) whose position is passed in *itemPos* and, optionally, in *positionsArray* within the list whose reference number or object name is passed in *list*. @@ -74,4 +71,13 @@ After execution of the following lines of code: [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 381 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/select-list-items-by-reference.md b/docs/commands-legacy/select-list-items-by-reference.md index a0f66179a01e4f..318a14046b4192 100644 --- a/docs/commands-legacy/select-list-items-by-reference.md +++ b/docs/commands-legacy/select-list-items-by-reference.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SELECT LIST ITEMS BY REFERENCE** command selects the item(s) whose item reference number is passed in *itemRef* and, optionally, in *refArray*, within the list whose reference number is passed in *list*. @@ -55,4 +52,13 @@ If you work with item reference numbers, be sure to build a list in which the it [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 630 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/select-log-file.md b/docs/commands-legacy/select-log-file.md index e2a87ce64e2aad..8108cb8fa42cbb 100644 --- a/docs/commands-legacy/select-log-file.md +++ b/docs/commands-legacy/select-log-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SELECT LOG FILE** command creates, or closes the log file according to the value you pass in *logFile*. @@ -40,4 +37,14 @@ An error -4447 is generated if the operation cannot be performed because the dat #### See also -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 345 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/select-rgb-color.md b/docs/commands-legacy/select-rgb-color.md index ebf1712f64f30d..df51d1e5a6a496 100644 --- a/docs/commands-legacy/select-rgb-color.md +++ b/docs/commands-legacy/select-rgb-color.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Select RGB Color command displays the system color selection window and returns the RGB value of the color selected by the user. @@ -41,4 +38,15 @@ The effect of validating this dialog box differs depending on the platform: #### See also -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 956 | +| Thread safe | ✗ | +| Modifies variables | OK | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/selected-list-items.md b/docs/commands-legacy/selected-list-items.md index ae33526bc7dca4..a3e0f004303345 100644 --- a/docs/commands-legacy/selected-list-items.md +++ b/docs/commands-legacy/selected-list-items.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Selected list items** command returns the position or reference of the selected item in the list whose reference number or object name you pass in *list*. @@ -85,4 +82,13 @@ Here a list named *hList,* shown in the Application environment: #### See also [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 379 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/selected-record-number.md b/docs/commands-legacy/selected-record-number.md index 8370c5c019652d..df8ce583b13664 100644 --- a/docs/commands-legacy/selected-record-number.md +++ b/docs/commands-legacy/selected-record-number.md @@ -34,4 +34,13 @@ The following example saves the current selected record number in a variable: *About Record Numbers* [GOTO SELECTED RECORD](goto-selected-record.md) -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 246 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/selection-range-to-array.md b/docs/commands-legacy/selection-range-to-array.md index ca86a99da30b78..b20cccd18dc8c4 100644 --- a/docs/commands-legacy/selection-range-to-array.md +++ b/docs/commands-legacy/selection-range-to-array.md @@ -107,4 +107,13 @@ Use the first 50 current records of the \[Invoices\] table to load various array [ON ERR CALL](on-err-call.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 368 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/selection-to-array.md b/docs/commands-legacy/selection-to-array.md index 285b5d74cac56f..e8d48675acc3c2 100644 --- a/docs/commands-legacy/selection-to-array.md +++ b/docs/commands-legacy/selection-to-array.md @@ -78,4 +78,13 @@ The same example can be written: [MULTI SORT ARRAY](multi-sort-array.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 260 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/selection-to-json.md b/docs/commands-legacy/selection-to-json.md index 30789674e5ca8b..cc0acd26f9a275 100644 --- a/docs/commands-legacy/selection-to-json.md +++ b/docs/commands-legacy/selection-to-json.md @@ -90,4 +90,13 @@ You can use the *template* syntax in order to export fields from different table #### See also -[JSON TO SELECTION](json-to-selection.md) \ No newline at end of file +[JSON TO SELECTION](json-to-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1234 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/self.md b/docs/commands-legacy/self.md index bda62b590db4d0..669ef077925872 100644 --- a/docs/commands-legacy/self.md +++ b/docs/commands-legacy/self.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility Note This command is kept only for compatibility reasons. Starting with version 12 of 4D, it is recommended to use the [OBJECT Get pointer](object-get-pointer.md) command. @@ -40,4 +37,13 @@ See the example for the [RESOLVE POINTER](resolve-pointer.md) command. [OBJECT Get pointer](object-get-pointer.md) [RESOLVE POINTER](resolve-pointer.md) -[This](../commands/this.md) \ No newline at end of file +[This](../commands/this.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 308 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/semaphore.md b/docs/commands-legacy/semaphore.md index 04e4ad8664bf2b..130aa3cebef00b 100644 --- a/docs/commands-legacy/semaphore.md +++ b/docs/commands-legacy/semaphore.md @@ -149,4 +149,13 @@ Syntax: [CLEAR SEMAPHORE](clear-semaphore.md) *Semaphores and signals* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 143 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/send-message-to-remote-user.md b/docs/commands-legacy/send-message-to-remote-user.md index 12c52c293d4470..b525397e6d556d 100644 --- a/docs/commands-legacy/send-message-to-remote-user.md +++ b/docs/commands-legacy/send-message-to-remote-user.md @@ -51,4 +51,13 @@ You want to send a message to all users, then send a message to a specific user: #### See also -[DROP REMOTE USER](drop-remote-user.md) \ No newline at end of file +[DROP REMOTE USER](drop-remote-user.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1632 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/send-packet.md b/docs/commands-legacy/send-packet.md index f0d9834b87d9ee..450a105ba4aafb 100644 --- a/docs/commands-legacy/send-packet.md +++ b/docs/commands-legacy/send-packet.md @@ -80,4 +80,13 @@ This example illustrates the sending and retrieval of extended characters via a [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 103 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/send-record.md b/docs/commands-legacy/send-record.md index 8bc8a8846206f2..0e5601b39f3077 100644 --- a/docs/commands-legacy/send-record.md +++ b/docs/commands-legacy/send-record.md @@ -33,4 +33,13 @@ See example for the [RECEIVE RECORD](receive-record.md) command. [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 78 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/send-variable.md b/docs/commands-legacy/send-variable.md index 1c0a3da4aa1e5e..05fd4ad3483496 100644 --- a/docs/commands-legacy/send-variable.md +++ b/docs/commands-legacy/send-variable.md @@ -31,4 +31,13 @@ See example for the [RECEIVE RECORD](receive-record.md) command. [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 80 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/sequence-number.md b/docs/commands-legacy/sequence-number.md index 80ea57fd0aa232..a20a23c1f5a302 100644 --- a/docs/commands-legacy/sequence-number.md +++ b/docs/commands-legacy/sequence-number.md @@ -57,4 +57,13 @@ The following example is part of a form method. It tests to see if this is a new *About Record Numbers* [Record number](record-number.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 244 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-about.md b/docs/commands-legacy/set-about.md index 4af7be82f048b9..6cfec653be3d8b 100644 --- a/docs/commands-legacy/set-about.md +++ b/docs/commands-legacy/set-about.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET ABOUT** command changes the **About 4D** menu command in the **Help** menu (Windows) or in the **Application** menu (macOS) menu to *itemText*. @@ -45,4 +42,13 @@ The following example resets the About 4D menu command: #### See also -[SET HELP MENU](set-help-menu.md) \ No newline at end of file +[SET HELP MENU](set-help-menu.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 316 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-application-color-scheme.md b/docs/commands-legacy/set-application-color-scheme.md index fb3c81f9535e6f..88f31a489ae5ba 100644 --- a/docs/commands-legacy/set-application-color-scheme.md +++ b/docs/commands-legacy/set-application-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET APPLICATION COLOR SCHEME** command defines the color scheme to use at the application level for the current session. This scheme will be applied to forms that do not already declare a specific scheme (a color scheme defined at the form level takes priority over the application level). @@ -38,4 +35,13 @@ In the *colorScheme* parameter, pass a color scheme to apply: #### See also [FORM Get color scheme](form-get-color-scheme.md) -[Get application color scheme](get-application-color-scheme.md) \ No newline at end of file +[Get application color scheme](get-application-color-scheme.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1762 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-assert-enabled.md b/docs/commands-legacy/set-assert-enabled.md index 4e714616ba3de5..8cde768a6b7a91 100644 --- a/docs/commands-legacy/set-assert-enabled.md +++ b/docs/commands-legacy/set-assert-enabled.md @@ -37,4 +37,13 @@ Disabling assertions: [ASSERT](assert.md) [Asserted](asserted.md) -[Get assert enabled](get-assert-enabled.md) \ No newline at end of file +[Get assert enabled](get-assert-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1131 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-automatic-relations.md b/docs/commands-legacy/set-automatic-relations.md index c760040f300164..90791ae99bc0bd 100644 --- a/docs/commands-legacy/set-automatic-relations.md +++ b/docs/commands-legacy/set-automatic-relations.md @@ -43,4 +43,13 @@ The following example makes all manual Many-to-One relations automatic and rever [GET RELATION PROPERTIES](get-relation-properties.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 310 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-blob-size.md b/docs/commands-legacy/set-blob-size.md index d10c59542896f5..edc575af3d728e 100644 --- a/docs/commands-legacy/set-blob-size.md +++ b/docs/commands-legacy/set-blob-size.md @@ -49,4 +49,13 @@ The following example creates a BLOB of 16K filled of 0xFF: #### See also -[BLOB size](blob-size.md) \ No newline at end of file +[BLOB size](blob-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 606 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-blobs-cache-priority.md b/docs/commands-legacy/set-blobs-cache-priority.md index ca6ea1a539fc09..8845192021e95e 100644 --- a/docs/commands-legacy/set-blobs-cache-priority.md +++ b/docs/commands-legacy/set-blobs-cache-priority.md @@ -47,4 +47,13 @@ In the , you want to set a high priority for the \[Customer\] table "blobs" data #### See also [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) -[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) \ No newline at end of file +[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1425 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-cache-size.md b/docs/commands-legacy/set-cache-size.md index aa96f142c1292d..f9d04113fb79b3 100644 --- a/docs/commands-legacy/set-cache-size.md +++ b/docs/commands-legacy/set-cache-size.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **SET CACHE SIZE** command sets the database cache size dynamically and, optionally, sets the mininum byte size at which to start to free memory. - -**Note:** This command only works in local mode (4D Server and 4D); it cannot be used in 4D remote mode. +The **SET CACHE SIZE** command sets the database cache size dynamically and, optionally, sets the mininum byte size at which to start to free memory.This command only works in local mode (4D Server and 4D); it cannot be used in 4D remote mode. In *size*, pass the new size for the database cache in bytes. This new size is applied dynamically when the command is executed. @@ -39,4 +37,13 @@ You want to add 100 MB to the current database cache size. You can write: #### See also -[Get cache size](get-cache-size.md) \ No newline at end of file +[Get cache size](get-cache-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1399 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-channel.md b/docs/commands-legacy/set-channel.md index f40e342d89a2e7..632245dca43acf 100644 --- a/docs/commands-legacy/set-channel.md +++ b/docs/commands-legacy/set-channel.md @@ -165,4 +165,14 @@ See examples for the [RECEIVE BUFFER](receive-buffer.md), [SET TIMEOUT](set-time [SEND PACKET](send-packet.md) [SEND RECORD](send-record.md) [SEND VARIABLE](send-variable.md) -[SET TIMEOUT](set-timeout.md) \ No newline at end of file +[SET TIMEOUT](set-timeout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 77 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/docs/commands-legacy/set-current-printer.md b/docs/commands-legacy/set-current-printer.md index 2c81d3a4755f39..3b8ec9735bcda0 100644 --- a/docs/commands-legacy/set-current-printer.md +++ b/docs/commands-legacy/set-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET CURRENT PRINTER** command designates the printer to be used for printing with the current 4D application. @@ -54,4 +51,14 @@ Creation of a PDF document under Windows: #### See also [Get current printer](get-current-printer.md) -[PRINTERS LIST](printers-list.md) \ No newline at end of file +[PRINTERS LIST](printers-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 787 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/set-cursor.md b/docs/commands-legacy/set-cursor.md index fcc136e2af889b..9234da22a49c8e 100644 --- a/docs/commands-legacy/set-cursor.md +++ b/docs/commands-legacy/set-cursor.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET CURSOR command changes the mouse cursor to the system cursor whose ID number you pass in *cursor*. @@ -62,3 +59,13 @@ You want the cursor to be displayed as a ![](../assets/en/commands/pict2478692.e     SET CURSOR(9019)  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 469 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-database-localization.md b/docs/commands-legacy/set-database-localization.md index 560fc59722cb9e..614dee8939d420 100644 --- a/docs/commands-legacy/set-database-localization.md +++ b/docs/commands-legacy/set-database-localization.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET DATABASE LOCALIZATION command is used to modify the current language of the database for the current session. @@ -71,4 +68,14 @@ The interface of your application uses the static string ":xliff:shopping". The #### See also -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1104 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/set-database-parameter.md b/docs/commands-legacy/set-database-parameter.md index 29ecfe3ebed3c5..2523da21ec045a 100644 --- a/docs/commands-legacy/set-database-parameter.md +++ b/docs/commands-legacy/set-database-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET DATABASE PARAMETER** command allows you to modify various internal parameters of the 4D database. @@ -149,4 +146,13 @@ You want to export data in JSON that contains a converted 4D date. Note that con [Get database parameter](get-database-parameter.md) [LOG EVENT](log-event.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 642 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-default-century.md b/docs/commands-legacy/set-default-century.md index 3da217f9dabbc6..9e60d9dc478af4 100644 --- a/docs/commands-legacy/set-default-century.md +++ b/docs/commands-legacy/set-default-century.md @@ -61,3 +61,13 @@ In all cases: * 01/25/2007 means January 25, 2007 This command only affects data entry. It has no effect on date storage, computation, and so on. + + +#### Properties + +| | | +| --- | --- | +| Command number | 392 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-document-position.md b/docs/commands-legacy/set-document-position.md index d6e072b10cbcb5..b6308916fcbb7d 100644 --- a/docs/commands-legacy/set-document-position.md +++ b/docs/commands-legacy/set-document-position.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -This command operates only on a document currently open whose document reference number you pass in *docRef*. - -**SET DOCUMENT POSITION** sets the position you pass in *offset* where the next read ([RECEIVE PACKET](receive-packet.md)) or write ([SEND PACKET](send-packet.md)) will occur. +This command operates only on a document currently open whose document reference number you pass in *docRef*.sets the position you pass in *offset* where the next read ([RECEIVE PACKET](receive-packet.md)) or write ([SEND PACKET](send-packet.md)) will occur. If you omit the optional *anchor* parameter, the position is relative to the beginning of the document. If you do specify the *anchor* parameter, you pass one of the values listed above. @@ -29,4 +27,13 @@ Depending on the anchor you can pass positive or negative values in *offset*. [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 482 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-document-properties.md b/docs/commands-legacy/set-document-properties.md index 42d7ff8c471df5..f14da560f2ed66 100644 --- a/docs/commands-legacy/set-document-properties.md +++ b/docs/commands-legacy/set-document-properties.md @@ -34,4 +34,14 @@ The dates and times of creation and last modification are managed by the file ma #### See also -[GET DOCUMENT PROPERTIES](get-document-properties.md) \ No newline at end of file +[GET DOCUMENT PROPERTIES](get-document-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 478 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/set-document-size.md b/docs/commands-legacy/set-document-size.md index 7f19a8be14d3c8..dd677ff0b3e548 100644 --- a/docs/commands-legacy/set-document-size.md +++ b/docs/commands-legacy/set-document-size.md @@ -26,4 +26,13 @@ On Macintosh, the size of the document's data fork is changed. [Get document position](get-document-position.md) [Get document size](get-document-size.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 480 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-drag-icon.md b/docs/commands-legacy/set-drag-icon.md index a36f98d11cb3bb..89e96835bdda89 100644 --- a/docs/commands-legacy/set-drag-icon.md +++ b/docs/commands-legacy/set-drag-icon.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET DRAG ICON** command associates the icon picture with the cursor during drag and drop operations that are managed by programming. @@ -59,4 +56,13 @@ Note that you can modify the position of the cursor with respect to the picture: #### See also -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1272 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-environment-variable.md b/docs/commands-legacy/set-environment-variable.md index 557d197171a013..3de2c08338bf2b 100644 --- a/docs/commands-legacy/set-environment-variable.md +++ b/docs/commands-legacy/set-environment-variable.md @@ -41,4 +41,13 @@ Refer to examples of the [LAUNCH EXTERNAL PROCESS](launch-external-process.md) c #### See also -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 812 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-external-data-path.md b/docs/commands-legacy/set-external-data-path.md index 7cbe235a7dba7b..7e8573cdec9d43 100644 --- a/docs/commands-legacy/set-external-data-path.md +++ b/docs/commands-legacy/set-external-data-path.md @@ -61,4 +61,13 @@ You want to save an existing file in the picture field, stored outside of the da #### See also [Get external data path](get-external-data-path.md) -[RELOAD EXTERNAL DATA](reload-external-data.md) \ No newline at end of file +[RELOAD EXTERNAL DATA](reload-external-data.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1134 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-field-relation.md b/docs/commands-legacy/set-field-relation.md index aa15dea384359c..b8656feaeb8ca2 100644 --- a/docs/commands-legacy/set-field-relation.md +++ b/docs/commands-legacy/set-field-relation.md @@ -53,4 +53,14 @@ The following code allows setting only useful relations as automatic in the Quic [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 919 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/set-field-titles.md b/docs/commands-legacy/set-field-titles.md index c16f8d9df5c904..85a1e8df152a71 100644 --- a/docs/commands-legacy/set-field-titles.md +++ b/docs/commands-legacy/set-field-titles.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SET FIELD TITLES** lets you mask, rename, and reorder the fields of the table passed in *aTable* when they appear in standard 4D dialog boxes, such as the Query editor, within the Application environment (i.e. when the startup mode is **Application**, or after you select **Test application** in the **Run** menu). @@ -60,4 +57,13 @@ See example for the [SET TABLE TITLES](set-table-titles.md) command. [GET FIELD TITLES](get-field-titles.md) [Last field number](last-field-number.md) [Parse formula](parse-formula.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 602 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-field-value-null.md b/docs/commands-legacy/set-field-value-null.md index 4f79689331b079..3540de11c62723 100644 --- a/docs/commands-legacy/set-field-value-null.md +++ b/docs/commands-legacy/set-field-value-null.md @@ -27,4 +27,13 @@ The NULL value is used by the SQL kernel of 4D. For more information, please ref #### See also [Is field value Null](is-field-value-null.md) -[Null](null.md) \ No newline at end of file +[Null](null.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 965 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-file-to-pasteboard.md b/docs/commands-legacy/set-file-to-pasteboard.md index 93f7ef599919b5..1db5f47f45e288 100644 --- a/docs/commands-legacy/set-file-to-pasteboard.md +++ b/docs/commands-legacy/set-file-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET FILE TO PASTEBOARD command adds the complete pathname of the file passed in the *file* parameter. This command can be used to set up interfaces allowing the drag and drop of 4D objects to files on the desktop for example. @@ -29,4 +26,13 @@ The command accepts the star *\** as an optional parameter. By default, when thi #### See also -[Get file from pasteboard](get-file-from-pasteboard.md) \ No newline at end of file +[Get file from pasteboard](get-file-from-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 975 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-group-access.md b/docs/commands-legacy/set-group-access.md index 8bc358f0e8ce4f..68b9d19ae314d3 100644 --- a/docs/commands-legacy/set-group-access.md +++ b/docs/commands-legacy/set-group-access.md @@ -42,4 +42,14 @@ You want to promote the current user to the "admin" and "plugins" groups for the [Get group access](get-group-access.md) [Get plugin access](get-plugin-access.md) [SET PLUGIN ACCESS](set-plugin-access.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1737 | +| Thread safe | ✓ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/set-group-properties.md b/docs/commands-legacy/set-group-properties.md index 727bbd7077f479..392dcfefd12254 100644 --- a/docs/commands-legacy/set-group-properties.md +++ b/docs/commands-legacy/set-group-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Set group properties enables you to change and update the properties of an existing group whose unique group ID number you pass in *groupID*, or to add a new group. @@ -58,4 +55,14 @@ If you do not have the proper access privileges for calling Set group properties [GET GROUP LIST](get-group-list.md) [GET GROUP PROPERTIES](get-group-properties.md) -[GET USER LIST](get-user-list.md) \ No newline at end of file +[GET USER LIST](get-user-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 614 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/set-help-menu.md b/docs/commands-legacy/set-help-menu.md index 50b805e4a3cfd6..33d051163d1b9c 100644 --- a/docs/commands-legacy/set-help-menu.md +++ b/docs/commands-legacy/set-help-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET HELP MENU** command allows you to replace the default 4D **Help** menu with the *menuCol* collection of menu items in the application mode. @@ -33,7 +30,7 @@ In *menuCol*, pass a collection of menu objects defining all items of the custom | ------------- | ----------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | title | Text | Menu item name | | method | Text \| [4D.Function](https://developer.4d.com/docs/API/FunctionClass#about-4dfunction-objects) | Project method name or 4D formula object to execute when the menu item is selected. When this property is used, the "action" property should not be passed (otherwise "method" is ignored). | -| worker | Text \| Number | Name of the worker or Number of the process to handle the "method" code execution. Several configurations are supported, depending on the the "worker" property value:
if it is a worker name (Text), 4D uses or creates this worker to execute the "method" (equivalent to [CALL WORKER](call-worker.md)) if it is a process number, 4D uses this process if it exists, otherwise it does nothing (equivalent to [CALL WORKER](call-worker.md)) if it is undefined and the application displays a current dialog (frontmost dialog), 4D uses the process of this dialog (equivalent to [CALL FORM](../commands/call-form.md)) if it is undefined and the application does not display a current dialog, 4D calls and uses the worker 1 (4D remote/single-user) or the worker *4D\_server\_interface* (4D Server) | +| worker | Text \| Number | Name of the worker or Number of the process to handle the "method" code execution. Several configurations are supported, depending on the the "worker" property value:
if it is a worker name (Text), 4D uses or creates this worker to execute the "method" (equivalent to [CALL WORKER](call-worker.md)) if it is a process number, 4D uses this process if it exists, otherwise it does nothing (equivalent to [CALL WORKER](call-worker.md)) if it is undefined and the application displays a current dialog (frontmost dialog), 4D uses the process of this dialog (equivalent to [CALL FORM](call-form.md)) if it is undefined and the application does not display a current dialog, 4D calls and uses the worker 1 (4D remote/single-user) or the worker *4D\_server\_interface* (4D Server) | | action | Text | *Standard Action* to execute when the menu item is selected. When this property is used, the "method" property is ignored if passed. | | shortcutKey | Text | Shortcut key of the item (to call with Ctrl/Command key) | | shortcutShift | Boolean | True to add the **Shift** key to the item shortcut | @@ -61,4 +58,13 @@ You want to customize the **Help** menu for your application: #### See also -[SET ABOUT](set-about.md) \ No newline at end of file +[SET ABOUT](set-about.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1801 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-index-cache-priority.md b/docs/commands-legacy/set-index-cache-priority.md index 318721556feacf..2a21ee81186059 100644 --- a/docs/commands-legacy/set-index-cache-priority.md +++ b/docs/commands-legacy/set-index-cache-priority.md @@ -47,4 +47,13 @@ In the , you want to set a high priority for the \[Customer\]LastName field inde #### See also [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) -[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) \ No newline at end of file +[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1401 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-index.md b/docs/commands-legacy/set-index.md index a36fe1b6fe8a2d..98ea1732a0bcfa 100644 --- a/docs/commands-legacy/set-index.md +++ b/docs/commands-legacy/set-index.md @@ -87,4 +87,13 @@ Creation of a keywords index: [DELETE INDEX](delete-index.md) [GET FIELD PROPERTIES](get-field-properties.md) [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 344 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-list-item-font.md b/docs/commands-legacy/set-list-item-font.md index 1678655379c0bf..70df9a5e52d2d1 100644 --- a/docs/commands-legacy/set-list-item-font.md +++ b/docs/commands-legacy/set-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST ITEM FONT** command modifies the character font of the item specified by the *itemRef* parameter of the list whose reference number or object name is passed in *list*. @@ -44,4 +41,13 @@ Apply the Times font to the current item of the list: [Get list item font](get-list-item-font.md) [OBJECT SET FONT](object-set-font.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 953 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-list-item-icon.md b/docs/commands-legacy/set-list-item-icon.md index 1adf91d2a73127..bc8caa77d231bc 100644 --- a/docs/commands-legacy/set-list-item-icon.md +++ b/docs/commands-legacy/set-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST ITEM ICON** command modifies the icon associated with the item specified by the *itemRef* parameter of the list whose reference number or object name is passed in *list*. @@ -48,4 +45,13 @@ We want to assign the same picture to two different items. The following code is [SET LIST ITEM](set-list-item.md) [SET LIST ITEM FONT](set-list-item-font.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 950 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-list-item-parameter.md b/docs/commands-legacy/set-list-item-parameter.md index f6a71b62a8741c..663335d6539005 100644 --- a/docs/commands-legacy/set-list-item-parameter.md +++ b/docs/commands-legacy/set-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST ITEM PARAMETER** command modifies the *selector* parameter for the *itemRef* item of the hierarchical list whose reference or object name is passed in the *list* parameter. @@ -63,4 +60,13 @@ You want to set as choice list of a hierarchical pop up menu a custom list of fo [Action info](action-info.md) [GET LIST ITEM PARAMETER](get-list-item-parameter.md) [GET LIST ITEM PARAMETER ARRAYS](get-list-item-parameter-arrays.md) -[INSERT IN LIST](insert-in-list.md) \ No newline at end of file +[INSERT IN LIST](insert-in-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 986 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-list-item-properties.md b/docs/commands-legacy/set-list-item-properties.md index acca12257e9072..6f918732c624bf 100644 --- a/docs/commands-legacy/set-list-item-properties.md +++ b/docs/commands-legacy/set-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST ITEM PROPERTIES** command modifies the item designated by the *itemRef* parameter within the list whose reference number or object name is passed in *list*. @@ -79,4 +76,13 @@ The following example changes the text of the current item of *list* to bold and [GET LIST ITEM PROPERTIES](get-list-item-properties.md) *Hierarchical Lists* [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 386 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-list-item.md b/docs/commands-legacy/set-list-item.md index 6e9063ea9fefca..96d5caf5719d86 100644 --- a/docs/commands-legacy/set-list-item.md +++ b/docs/commands-legacy/set-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST ITEM** command modifies the item designated by the *itemRef* parameter within the list whose reference number or object name is passed in *list*. @@ -79,4 +76,13 @@ See example for the [APPEND TO LIST](append-to-list.md) command. [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [SET LIST ITEM FONT](set-list-item-font.md) [SET LIST ITEM ICON](set-list-item-icon.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 385 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-list-properties.md b/docs/commands-legacy/set-list-properties.md index 07a406effda39b..b39a41c95417c7 100644 --- a/docs/commands-legacy/set-list-properties.md +++ b/docs/commands-legacy/set-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST PROPERTIES** command sets the line height and selection properties of the hierarchical list whose list reference you pass in *list*. @@ -62,4 +59,13 @@ You want to disallow the expand/collapse sublist on double-click. You can write [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [GET LIST PROPERTIES](get-list-properties.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 387 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-macro-parameter.md b/docs/commands-legacy/set-macro-parameter.md index 229fc348ee62c7..f67c2a480e140f 100644 --- a/docs/commands-legacy/set-macro-parameter.md +++ b/docs/commands-legacy/set-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MACRO PARAMETER** command inserts the *paramText* text into the method from which it has been called. @@ -58,4 +55,13 @@ This macro builds a new text that will be returned to the calling method: #### See also -[GET MACRO PARAMETER](get-macro-parameter.md) \ No newline at end of file +[GET MACRO PARAMETER](get-macro-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 998 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-menu-bar.md b/docs/commands-legacy/set-menu-bar.md index 327c36675d2fad..180b52ac37bbf1 100644 --- a/docs/commands-legacy/set-menu-bar.md +++ b/docs/commands-legacy/set-menu-bar.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SET MENU BAR** replaces the current menu bar with the one specified by *menuBar* for the current process only. In the *menuBar* parameter, you can pass either the number or name of the new menu bar. You can also pass a menu ID ([MenuRef](# "Unique ID (16-character alphanumeric) of a menu") type, 16-character string). When you work with references, the menus can be used as menu bars and vice versa (see the *Managing Menus* section). @@ -120,4 +117,13 @@ In this comprehensive example, we will create, by programming, a menu bar includ #### See also -*Managing Menus* \ No newline at end of file +*Managing Menus* + +#### Properties + +| | | +| --- | --- | +| Command number | 67 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-menu-item-icon.md b/docs/commands-legacy/set-menu-item-icon.md index 6b71b81bbfabe0..798615b1bb6901 100644 --- a/docs/commands-legacy/set-menu-item-icon.md +++ b/docs/commands-legacy/set-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM ICON** command modifies the icon associated with the menu item designated by the *menu* and *menuItem* parameters. @@ -45,4 +42,13 @@ Use of a picture located in the Resources folder of the database: #### See also -[GET MENU ITEM ICON](get-menu-item-icon.md) \ No newline at end of file +[GET MENU ITEM ICON](get-menu-item-icon.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 984 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-menu-item-mark.md b/docs/commands-legacy/set-menu-item-mark.md index c8866e4943bf76..db975fefdaaaf0 100644 --- a/docs/commands-legacy/set-menu-item-mark.md +++ b/docs/commands-legacy/set-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM MARK** command changes the check mark of the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem* to the first character of the string passed in *mark*. You can pass -1 in *menuItem* in order to designate the last item added to the *menu*. @@ -38,4 +35,14 @@ See example for the [Get menu item mark](get-menu-item-mark.md) command. #### See also -[Get menu item mark](get-menu-item-mark.md) \ No newline at end of file +[Get menu item mark](get-menu-item-mark.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 208 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/set-menu-item-method.md b/docs/commands-legacy/set-menu-item-method.md index a0569ffc4245c4..e95b6f23c046df 100644 --- a/docs/commands-legacy/set-menu-item-method.md +++ b/docs/commands-legacy/set-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM METHOD** command modifies the 4D project method associated with the menu item designated by the *menu* and *menuItem* parameters. @@ -37,4 +34,13 @@ Refer to the example of the [SET MENU BAR](set-menu-bar.md) command. #### See also -[Get menu item method](get-menu-item-method.md) \ No newline at end of file +[Get menu item method](get-menu-item-method.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 982 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-menu-item-parameter.md b/docs/commands-legacy/set-menu-item-parameter.md index abccccdb71eee0..f6501515ae4560 100644 --- a/docs/commands-legacy/set-menu-item-parameter.md +++ b/docs/commands-legacy/set-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM PARAMETER** command associates a custom character string with a menu item designated by the *menu* and *menuItem* parameters. @@ -43,4 +40,13 @@ This code provides a menu including the names of the open windows and lets you g [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[Get selected menu item parameter](get-selected-menu-item-parameter.md) \ No newline at end of file +[Get selected menu item parameter](get-selected-menu-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1004 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-menu-item-property.md b/docs/commands-legacy/set-menu-item-property.md index 2f05bfbe044793..4a17302d2dc862 100644 --- a/docs/commands-legacy/set-menu-item-property.md +++ b/docs/commands-legacy/set-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM PROPERTY** command sets the *value* of the *property* for the menu item designated by the *menu* and *menuItem* parameters. @@ -48,4 +45,13 @@ In the case of the Associated standard action property, you can pass in the *val #### See also [Dynamic pop up menu](dynamic-pop-up-menu.md) -[GET MENU ITEM PROPERTY](get-menu-item-property.md) \ No newline at end of file +[GET MENU ITEM PROPERTY](get-menu-item-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 973 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-menu-item-shortcut.md b/docs/commands-legacy/set-menu-item-shortcut.md index 0d3096a180bd7d..d359f157a79a09 100644 --- a/docs/commands-legacy/set-menu-item-shortcut.md +++ b/docs/commands-legacy/set-menu-item-shortcut.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM SHORTCUT** command assigns a new shortcut to a menu item. @@ -78,4 +75,14 @@ Definition of the F4 shortcut for the "Close" menu item: #### See also [Get menu item key](get-menu-item-key.md) -[Get menu item modifiers](get-menu-item-modifiers.md) \ No newline at end of file +[Get menu item modifiers](get-menu-item-modifiers.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 423 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/set-menu-item-style.md b/docs/commands-legacy/set-menu-item-style.md index 818ac6714f8a8a..320e8600287426 100644 --- a/docs/commands-legacy/set-menu-item-style.md +++ b/docs/commands-legacy/set-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM STYLE** command changes the font style of the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem* according to the font style passed in *itemStyle*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -40,4 +37,14 @@ You specify the font style of the item in the *itemStyle* parameter. You pass a #### See also -[Get menu item style](get-menu-item-style.md) \ No newline at end of file +[Get menu item style](get-menu-item-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 425 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/set-menu-item.md b/docs/commands-legacy/set-menu-item.md index aac79783b7f25f..245e45896a17b7 100644 --- a/docs/commands-legacy/set-menu-item.md +++ b/docs/commands-legacy/set-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET MENU ITEM command changes the text of the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem*, to the text passed in *itemText*. You can pass -1 in *menuItem* in order to designate the last item added to the *menu*. @@ -34,4 +31,14 @@ If you omit the *process* parameter, SET MENU ITEM applies to the menu bar for t [APPEND MENU ITEM](append-menu-item.md) [Get menu item](get-menu-item.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 348 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/set-picture-file-name.md b/docs/commands-legacy/set-picture-file-name.md index a4fe57f103eda4..a52aa18b6eff90 100644 --- a/docs/commands-legacy/set-picture-file-name.md +++ b/docs/commands-legacy/set-picture-file-name.md @@ -25,4 +25,13 @@ The default name is used as the file name when the picture is exported in a disk #### See also [Get picture file name](get-picture-file-name.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1172 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-picture-metadata.md b/docs/commands-legacy/set-picture-metadata.md index c2f255592a0812..28ccd8e4c2f501 100644 --- a/docs/commands-legacy/set-picture-metadata.md +++ b/docs/commands-legacy/set-picture-metadata.md @@ -80,4 +80,14 @@ When all the metadata are handled via a DOM element reference, the tags are stor [GET PICTURE KEYWORDS](get-picture-keywords.md) [GET PICTURE METADATA](get-picture-metadata.md) *Picture Metadata Names* -*Picture Metadata Values* \ No newline at end of file +*Picture Metadata Values* + +#### Properties + +| | | +| --- | --- | +| Command number | 1121 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/set-picture-to-library.md b/docs/commands-legacy/set-picture-to-library.md index 2dbd0097d09fe7..2a56aa487477c5 100644 --- a/docs/commands-legacy/set-picture-to-library.md +++ b/docs/commands-legacy/set-picture-to-library.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET PICTURE TO LIBRARY** command creates a new picture or replaces a picture in the Picture Library. @@ -94,4 +91,15 @@ If there is not enough memory to add the picture to the Picture Library, an erro [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) \ No newline at end of file +[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 566 | +| Thread safe | ✗ | +| Modifies variables | error | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/set-picture-to-pasteboard.md b/docs/commands-legacy/set-picture-to-pasteboard.md index 4f1472cc7255f6..b8e57259a84ff7 100644 --- a/docs/commands-legacy/set-picture-to-pasteboard.md +++ b/docs/commands-legacy/set-picture-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description SET PICTURE TO PASTEBOARD clears the pasteboard and puts a copy of the picture passed in *picture* into it. @@ -49,4 +46,14 @@ If there is not enough memory to paste the picture into the pasteboard, the OK v #### See also [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) \ No newline at end of file +[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 521 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/set-plugin-access.md b/docs/commands-legacy/set-plugin-access.md index fa3d38478270ff..6d34adc8f830f2 100644 --- a/docs/commands-legacy/set-plugin-access.md +++ b/docs/commands-legacy/set-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET PLUGIN ACCESS command sets, by programming, the user group allowed to use each “serialized” plug-in that is installed in the database. This way you can manage how plug-in licenses are used. @@ -45,4 +42,13 @@ Pass the name of the group whose users are authorized to use the plug-in in *gro [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 845 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-print-marker.md b/docs/commands-legacy/set-print-marker.md index 8513cfad12a0ca..2a778db0d69b9c 100644 --- a/docs/commands-legacy/set-print-marker.md +++ b/docs/commands-legacy/set-print-marker.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET PRINT MARKER** command enables the definition of the marker position during printing. Combined with the [Get print marker](get-print-marker.md), [OBJECT MOVE](object-move.md) or [Print form](../commands/print-form.md) commands, this command allows you to adjust the size of the print areas. @@ -181,4 +178,13 @@ The Print\_List3 form method is as follows: [PAGE BREAK](page-break.md) [Print form](../commands/print-form.md) [PRINT RECORD](print-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 709 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-print-option.md b/docs/commands-legacy/set-print-option.md index cbe066d83d4a09..a5ed399f5d4139 100644 --- a/docs/commands-legacy/set-print-option.md +++ b/docs/commands-legacy/set-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET PRINT OPTION** command is used to modify, by programming, the value of a print option. Each option defined using this command is applied to the[ current 4D printing settings](https://developer.4d.com/docs/settings/compatibility/) as long as no other command that modifies print parameters ([PRINT SETTINGS](print-settings.md), [PRINT SELECTION](print-selection.md) without the *\>* parameter, etc.) is called. If a print job has been opened (e.g. with [OPEN PRINTING JOB](open-printing-job.md)), the option is set for the job and cannot be modified as long as the job has not terminated (except for the Orientation option, see below). @@ -80,4 +77,14 @@ If the value passed for an *option* is invalid or if it is not available on the [Print form](../commands/print-form.md) [PRINT OPTION VALUES](print-option-values.md) *Print Options* -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 733 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/set-print-preview.md b/docs/commands-legacy/set-print-preview.md index 13a8805070229b..d9a8472f72af78 100644 --- a/docs/commands-legacy/set-print-preview.md +++ b/docs/commands-legacy/set-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SET PRINT PREVIEW** allows you to programmatically check or uncheck the Preview on Screen option of the Print dialog box. If you pass TRUE in *preview*, Preview on Screen will be checked, if you pass FALSE in *preview*, Preview on Screen will be unchecked. This setting is local to a process and does not affect the printing of other processes or users. @@ -38,4 +35,13 @@ The following example turns on the Preview on Screen option to display the resul #### See also [Get print preview](get-print-preview.md) -[Is in print preview](is-in-print-preview.md) \ No newline at end of file +[Is in print preview](is-in-print-preview.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 364 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-printable-margin.md b/docs/commands-legacy/set-printable-margin.md index 5de07814b6f96a..2f2b609851b88e 100644 --- a/docs/commands-legacy/set-printable-margin.md +++ b/docs/commands-legacy/set-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET PRINTABLE MARGIN** command sets the values of various printing margins by using the [Print form](../commands/print-form.md), [PRINT SELECTION](print-selection.md) and [PRINT RECORD](print-record.md) commands. @@ -59,4 +56,13 @@ The following example gets the paper size: [GET PRINTABLE MARGIN](get-printable-margin.md) [Get printed height](get-printed-height.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 710 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-process-variable.md b/docs/commands-legacy/set-process-variable.md index e46806d9cd5b45..999ab4337e318c 100644 --- a/docs/commands-legacy/set-process-variable.md +++ b/docs/commands-legacy/set-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET PROCESS VARIABLE** command writes the *dstVar* process variables (*dstVar2*, etc.) of the destination process whose number is passed in *process* using the values passed in *expr1* (*expr2*, etc.). @@ -98,4 +95,13 @@ This example writes the destination process instance of the variables *v1*, *v2* [GET PROCESS VARIABLE](get-process-variable.md) [POST OUTSIDE CALL](post-outside-call.md) *Processes* -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 370 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-query-and-lock.md b/docs/commands-legacy/set-query-and-lock.md index d85bae51a2d407..b05bb01942d3a4 100644 --- a/docs/commands-legacy/set-query-and-lock.md +++ b/docs/commands-legacy/set-query-and-lock.md @@ -68,4 +68,14 @@ If the command is not called in the context of a transaction, an error is genera #### See also -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 661 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/set-query-destination.md b/docs/commands-legacy/set-query-destination.md index dd76ff0ee43b54..f020a3508bb2a9 100644 --- a/docs/commands-legacy/set-query-destination.md +++ b/docs/commands-legacy/set-query-destination.md @@ -251,4 +251,13 @@ After this project method is implemented in your application, you can write: [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 396 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-query-limit.md b/docs/commands-legacy/set-query-limit.md index effdff74f6e45a..8c3c24ac8710fb 100644 --- a/docs/commands-legacy/set-query-limit.md +++ b/docs/commands-legacy/set-query-limit.md @@ -62,4 +62,13 @@ See the second example for the [SET QUERY DESTINATION](set-query-destination.md) [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 395 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-real-comparison-level.md b/docs/commands-legacy/set-real-comparison-level.md index 5696a3e11a125a..74b4d8cd8c1b66 100644 --- a/docs/commands-legacy/set-real-comparison-level.md +++ b/docs/commands-legacy/set-real-comparison-level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET REAL COMPARISON LEVEL** command sets the epsilon value used by 4D to compare real values and expressions for equality. @@ -37,3 +34,13 @@ Using **SET REAL COMPARISON LEVEL**, you can increase or decrease the epsilon va **IMPORTANT:** Changing the epsilon only affects real comparison for equality. It has no effect on other real computations nor on the display of real values. **Note:** The **SET REAL COMPARISON LEVEL** command has no effect on queries and sorts performed with fields of the Real type. It only applies the 4D language. + + +#### Properties + +| | | +| --- | --- | +| Command number | 623 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-recent-fonts.md b/docs/commands-legacy/set-recent-fonts.md index 785894fe5f6e8d..b617f1ac07f4bc 100644 --- a/docs/commands-legacy/set-recent-fonts.md +++ b/docs/commands-legacy/set-recent-fonts.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET RECENT FONTS** command modifies the list of fonts displayed in the context menu of the "recent fonts". @@ -43,4 +40,13 @@ Then the menu contains: #### See also -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1305 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-table-cache-priority.md b/docs/commands-legacy/set-table-cache-priority.md index 0cb06df10a3203..2dc1e314b952c9 100644 --- a/docs/commands-legacy/set-table-cache-priority.md +++ b/docs/commands-legacy/set-table-cache-priority.md @@ -48,4 +48,13 @@ In the , you want to set a high priority for the \[Customer\] scalar data: [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) -[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) \ No newline at end of file +[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1400 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/set-table-titles.md b/docs/commands-legacy/set-table-titles.md index 21be81b42c4b42..4bbfa93cb11788 100644 --- a/docs/commands-legacy/set-table-titles.md +++ b/docs/commands-legacy/set-table-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SET TABLE TITLES** lets you mask, rename, and reorder the tables of your database that appear in standard 4D dialog boxes within the Application environment (i.e. when the startup mode is **Application**, or after you select **Test application** in the **Run** menu). For example, this command can modify the display of tables in the Query editor in Application mode. @@ -188,4 +185,13 @@ You want to remove all defined custom field and table names: [GET TABLE TITLES](get-table-titles.md) [Parse formula](parse-formula.md) [SET FIELD TITLES](set-field-titles.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 601 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-text-to-pasteboard.md b/docs/commands-legacy/set-text-to-pasteboard.md index 1db8aa6bd0afcb..7f826bf69119f8 100644 --- a/docs/commands-legacy/set-text-to-pasteboard.md +++ b/docs/commands-legacy/set-text-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SET TEXT TO PASTEBOARD** clears the pasteboard and then puts a copy of the text you passed in *text* into the pasteboard. @@ -39,4 +36,14 @@ If a copy of the text is correctly placed in the pasteboard, the OK variable is #### See also [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 523 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/set-timeout.md b/docs/commands-legacy/set-timeout.md index 10ac3f3e2721ee..a89d2b47fc05d6 100644 --- a/docs/commands-legacy/set-timeout.md +++ b/docs/commands-legacy/set-timeout.md @@ -48,4 +48,14 @@ The following example sets the serial port to receive data. It then sets a time- [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) [RECEIVE RECORD](receive-record.md) -[RECEIVE VARIABLE](receive-variable.md) \ No newline at end of file +[RECEIVE VARIABLE](receive-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 268 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/set-timer.md b/docs/commands-legacy/set-timer.md index ea3029f05de26c..407d9c239ea560 100644 --- a/docs/commands-legacy/set-timer.md +++ b/docs/commands-legacy/set-timer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET TIMER** command activates the On Timer form event and sets, for the current form and process, the number of ticks elapsed between each On Timer form event. @@ -47,4 +44,13 @@ Let’s imagine that you want, when a form is displayed on screen, the computer #### See also [Form event code](../commands/form-event-code.md) -[REDRAW](redraw.md) \ No newline at end of file +[REDRAW](redraw.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 645 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-update-folder.md b/docs/commands-legacy/set-update-folder.md index 0b018a2176b6f9..ac7f7ce19508fd 100644 --- a/docs/commands-legacy/set-update-folder.md +++ b/docs/commands-legacy/set-update-folder.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET UPDATE FOLDER** command specifies the folder containing the update of the current merged 4D application. This information is stored in the 4D session until the [RESTART 4D](restart-4d.md) method is called. If the application is exited manually, this information is not kept. @@ -59,4 +56,14 @@ You created a "MyUpdates" folder on your disk, where you placed a new version of #### See also [Get last update log path](get-last-update-log-path.md) -[RESTART 4D](restart-4d.md) \ No newline at end of file +[RESTART 4D](restart-4d.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1291 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/set-user-alias.md b/docs/commands-legacy/set-user-alias.md index 67d447a6d90040..ecb20fc6ee515e 100644 --- a/docs/commands-legacy/set-user-alias.md +++ b/docs/commands-legacy/set-user-alias.md @@ -39,4 +39,14 @@ Your users are managed through a custom table and use the same 4D user account. [CHANGE CURRENT USER](change-current-user.md) [Current user](current-user.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1666 | +| Thread safe | ✓ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/set-user-properties.md b/docs/commands-legacy/set-user-properties.md index f180bfacdd1475..69c53b43e4f3d6 100644 --- a/docs/commands-legacy/set-user-properties.md +++ b/docs/commands-legacy/set-user-properties.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Set user properties lets you change and update the properties of an existing user account whose unique user ID number you pass in *userID*, or add a new user. @@ -64,4 +61,13 @@ If you do not have the proper access privileges for calling Set user properties [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 612 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-window-rect.md b/docs/commands-legacy/set-window-rect.md index d2648ad02affe5..75e4ce5358bf74 100644 --- a/docs/commands-legacy/set-window-rect.md +++ b/docs/commands-legacy/set-window-rect.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET WINDOW RECT command changes the global coordinates of the window whose reference number is passed in *window*. If the window does not exist, the command does nothing. @@ -62,4 +59,13 @@ The window appears as follows: [CONVERT COORDINATES](convert-coordinates.md) [DRAG WINDOW](drag-window.md) [GET WINDOW RECT](get-window-rect.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 444 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/set-window-title.md b/docs/commands-legacy/set-window-title.md index fb48690dc866c6..b7dfe7f157de37 100644 --- a/docs/commands-legacy/set-window-title.md +++ b/docs/commands-legacy/set-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET WINDOW TITLE** command changes the title of the window whose reference number is passed in *window* to the text passed in *title* (max. length 80 characters). @@ -51,4 +48,13 @@ While performing data entry in a form, you click on a button that executes a len #### See also -[Get window title](get-window-title.md) \ No newline at end of file +[Get window title](get-window-title.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 213 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/shift-down.md b/docs/commands-legacy/shift-down.md index cd4057cac6fe77..82bba0efdec375 100644 --- a/docs/commands-legacy/shift-down.md +++ b/docs/commands-legacy/shift-down.md @@ -50,4 +50,13 @@ The following object method for the button *bAnyButton* performs different actio [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 543 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/show-menu-bar.md b/docs/commands-legacy/show-menu-bar.md index b1a7b1d61ab579..ae13baa8e0fdb8 100644 --- a/docs/commands-legacy/show-menu-bar.md +++ b/docs/commands-legacy/show-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SHOW MENU BAR command makes the menu bar visible. @@ -29,4 +26,14 @@ See example for the [HIDE MENU BAR](hide-menu-bar.md) command. [HIDE MENU BAR](hide-menu-bar.md) [HIDE TOOL BAR](hide-tool-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 431 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/docs/commands-legacy/show-on-disk.md b/docs/commands-legacy/show-on-disk.md index 33fc3b34aaef11..0cd2f00f6326ea 100644 --- a/docs/commands-legacy/show-on-disk.md +++ b/docs/commands-legacy/show-on-disk.md @@ -46,3 +46,14 @@ The following examples illustrate the operation of this command: #### System variables and sets The system variable OK is set to 1 if the command is executed correctly. + + +#### Properties + +| | | +| --- | --- | +| Command number | 922 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/show-process.md b/docs/commands-legacy/show-process.md index 3d04ca74b7e11e..8e280c16d573d2 100644 --- a/docs/commands-legacy/show-process.md +++ b/docs/commands-legacy/show-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SHOW PROCESS** displays all the windows belonging to *process*. This command does not bring the windows of *process* to the frontmost level. To do this, use the [BRING TO FRONT](bring-to-front.md) command. @@ -34,4 +31,13 @@ The following example displays a process called Customers, if it has been previo [BRING TO FRONT](bring-to-front.md) [HIDE PROCESS](hide-process.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 325 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/show-tool-bar.md b/docs/commands-legacy/show-tool-bar.md index 14e1e76b7c48fa..5b1ebcdcc28181 100644 --- a/docs/commands-legacy/show-tool-bar.md +++ b/docs/commands-legacy/show-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SHOW TOOL BAR** command handles the display of custom toolbars created by the [Open form window](open-form-window.md) command for the current process. @@ -27,4 +24,13 @@ Refer to the example of the [HIDE TOOL BAR](hide-tool-bar.md) command. #### See also -[HIDE TOOL BAR](hide-tool-bar.md) \ No newline at end of file +[HIDE TOOL BAR](hide-tool-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 433 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/show-window.md b/docs/commands-legacy/show-window.md index 0c17b8e0104afa..15e1e78bbf365e 100644 --- a/docs/commands-legacy/show-window.md +++ b/docs/commands-legacy/show-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SHOW WINDOW** command displays the window whose number was passed in *window*. If this parameter is omitted, the frontmost window of the current process will be displayed. @@ -28,4 +25,13 @@ Refer to the example of the [HIDE WINDOW](hide-window.md) command. #### See also -[HIDE WINDOW](hide-window.md) \ No newline at end of file +[HIDE WINDOW](hide-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 435 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/sin.md b/docs/commands-legacy/sin.md index 9d98cf0a06cd31..6b07d4c07262d0 100644 --- a/docs/commands-legacy/sin.md +++ b/docs/commands-legacy/sin.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Description -**Sin** returns the sine of *number*, where *number* is expressed in radians. - -**Note:** 4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). +**Sin** returns the sine of *number*, where *number* is expressed in radians.4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). #### See also [Arctan](arctan.md) [Cos](cos.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 17 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/size-of-array.md b/docs/commands-legacy/size-of-array.md index 135166f66b6ab6..4c5367b5753b4f 100644 --- a/docs/commands-legacy/size-of-array.md +++ b/docs/commands-legacy/size-of-array.md @@ -45,4 +45,13 @@ The following example returns the number of columns for a row in a two-dimension #### See also [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 274 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/soap-declaration.md b/docs/commands-legacy/soap-declaration.md index c4701e5b754a7f..2a736131b03afb 100644 --- a/docs/commands-legacy/soap-declaration.md +++ b/docs/commands-legacy/soap-declaration.md @@ -193,4 +193,13 @@ This example illustrates the results of different types of declarations: [Is data file locked](is-data-file-locked.md) [SOAP Get info](soap-get-info.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 782 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/soap-get-info.md b/docs/commands-legacy/soap-get-info.md index 9246928efa81ee..65a6c284aa40bf 100644 --- a/docs/commands-legacy/soap-get-info.md +++ b/docs/commands-legacy/soap-get-info.md @@ -32,4 +32,13 @@ Pass the number of the type of SOAP information you want to get in the *infoNum* #### See also [SET DATABASE PARAMETER](set-database-parameter.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 784 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/soap-reject-new-requests.md b/docs/commands-legacy/soap-reject-new-requests.md index dd7418e387d7f0..37e10f219a7505 100644 --- a/docs/commands-legacy/soap-reject-new-requests.md +++ b/docs/commands-legacy/soap-reject-new-requests.md @@ -35,4 +35,13 @@ You want to deny any new requests to your Web Services server: #### See also [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[WEB Get server info](web-get-server-info.md) \ No newline at end of file +[WEB Get server info](web-get-server-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1636 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/soap-request.md b/docs/commands-legacy/soap-request.md index 14029f5a9607ba..0ecf0b62e19c0e 100644 --- a/docs/commands-legacy/soap-request.md +++ b/docs/commands-legacy/soap-request.md @@ -21,4 +21,13 @@ This command can be used for security reasons in the *On Web Authentication Data #### See also -[SOAP DECLARATION](soap-declaration.md) \ No newline at end of file +[SOAP DECLARATION](soap-declaration.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 783 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/soap-send-fault.md b/docs/commands-legacy/soap-send-fault.md index 16f11a6219d63e..c8adcca4d9103d 100644 --- a/docs/commands-legacy/soap-send-fault.md +++ b/docs/commands-legacy/soap-send-fault.md @@ -42,4 +42,13 @@ To go back to the example of the “Square\_root” Web Service provided in the #### See also [SOAP DECLARATION](soap-declaration.md) -[SOAP Get info](soap-get-info.md) \ No newline at end of file +[SOAP Get info](soap-get-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 781 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/sort-array.md b/docs/commands-legacy/sort-array.md index db2eccff68c878..247fa412239523 100644 --- a/docs/commands-legacy/sort-array.md +++ b/docs/commands-legacy/sort-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The SORT ARRAY command sorts one or more arrays into ascending or descending order. - -**Notes:** +The SORT ARRAY command sorts one or more arrays into ascending or descending order. * You cannot sort [Pointer](# "A reference to another variable (including arrays and array elements), table, or field") or [Picture](# "Can be any Windows or Macintosh picture") arrays. You can sort the elements of a two-dimensional array (i.e., *a2DArray{$vlThisElem}*) but you cannot sort the two-dimensional array itself (i.e., *a2DArray*). * You can sort [Object](# "Data structured as a native 4D object") arrays. Null elements are grouped and array elements are sorted with an internal order. @@ -81,4 +79,13 @@ You display the names from a *\[People\]* table in a floating window. When you c [Find in sorted array](find-in-sorted-array.md) [MULTI SORT ARRAY](multi-sort-array.md) [ORDER BY](order-by.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 229 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/sort-list.md b/docs/commands-legacy/sort-list.md index 47547a2c597967..6dd9a4ed3155d0 100644 --- a/docs/commands-legacy/sort-list.md +++ b/docs/commands-legacy/sort-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SORT LIST** command sorts the list whose reference number is passed in *list*. @@ -57,4 +54,13 @@ The list looks like: #### See also -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 391 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/spell-add-to-user-dictionary.md b/docs/commands-legacy/spell-add-to-user-dictionary.md index 1cc9df8fff205b..ed690fcdea811c 100644 --- a/docs/commands-legacy/spell-add-to-user-dictionary.md +++ b/docs/commands-legacy/spell-add-to-user-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL ADD TO USER DICTIONARY** command adds one or more words to the current user dictionary. @@ -38,4 +35,13 @@ Adding proper nouns to the user dictionary: #### See also -[SPELL CHECK TEXT](spell-check-text.md) \ No newline at end of file +[SPELL CHECK TEXT](spell-check-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1214 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/spell-check-text.md b/docs/commands-legacy/spell-check-text.md index 1055a8c1d14a2b..7068580bc384b5 100644 --- a/docs/commands-legacy/spell-check-text.md +++ b/docs/commands-legacy/spell-check-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL CHECK TEXT** command checks the contents of the *text* parameter beginning from the *checkPos* character and returns the position of the first unknown word it finds (if any). @@ -54,4 +51,14 @@ We want to count the number of possible errors in a text: #### See also [SPELL ADD TO USER DICTIONARY](spell-add-to-user-dictionary.md) -[SPELL CHECKING](spell-checking.md) \ No newline at end of file +[SPELL CHECKING](spell-checking.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1215 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/spell-checking.md b/docs/commands-legacy/spell-checking.md index b09e2615d5a24f..52e9f0e76d96ae 100644 --- a/docs/commands-legacy/spell-checking.md +++ b/docs/commands-legacy/spell-checking.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL CHECKING** command triggers the spell check of the field or variable having the focus in the currently displayed form. The object checked must be of the string or text type. @@ -35,4 +32,13 @@ Spell checking starts with the first word of the field or variable. If an unknow #### See also [SPELL CHECK TEXT](spell-check-text.md) -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 900 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/spell-get-current-dictionary.md b/docs/commands-legacy/spell-get-current-dictionary.md index 25949a0b79bef7..f14c8a13f2044d 100644 --- a/docs/commands-legacy/spell-get-current-dictionary.md +++ b/docs/commands-legacy/spell-get-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL Get current dictionary** command returns the ID number of the dictionary being used. @@ -35,4 +32,13 @@ We want to display the language of the current dictionary: #### See also -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1205 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/spell-get-dictionary-list.md b/docs/commands-legacy/spell-get-dictionary-list.md index 30bfe84e1e11ba..ca3cb2ba232037 100644 --- a/docs/commands-legacy/spell-get-dictionary-list.md +++ b/docs/commands-legacy/spell-get-dictionary-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL GET DICTIONARY LIST** command returns, in the *langID*, *langFiles* and *langNames* arrays, the IDs, file names and language names corresponding to the Hunspell dictionary files installed on the machine. @@ -53,4 +50,13 @@ You put "fr-classic+reform1990.aff" and "fr-classic+reform1990.dic" as well as " #### See also -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1204 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/spell-set-current-dictionary.md b/docs/commands-legacy/spell-set-current-dictionary.md index 145ce7fba59a5c..9fceb0acd52a52 100644 --- a/docs/commands-legacy/spell-set-current-dictionary.md +++ b/docs/commands-legacy/spell-set-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL SET CURRENT DICTIONARY** command causes the replacement of the current dictionary with the one specified by the *dictionary* parameter. The current dictionary is used for the built-in spell-check feature in 4D (for more information, refer to the 4D *Design Reference* manual) as well as the one in the 4D Write Pro. The modification of the current dictionary is reflected immediately in all the processes of the database for the session, as well as in the 4D Write Pro areas. @@ -52,4 +49,14 @@ Loading of the "fr-classic" dictionary found in the Hunspell folder: [SPELL CHECKING](spell-checking.md) [SPELL Get current dictionary](spell-get-current-dictionary.md) -[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) \ No newline at end of file +[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 904 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/split-string.md b/docs/commands-legacy/split-string.md index f6af2323bb2266..733d2bd7c26885 100644 --- a/docs/commands-legacy/split-string.md +++ b/docs/commands-legacy/split-string.md @@ -56,4 +56,13 @@ The *separator* parameter can be a multiple-character string: #### See also -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1554 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/sql-cancel-load.md b/docs/commands-legacy/sql-cancel-load.md index 9984a5bfb352be..6b592eaca959a8 100644 --- a/docs/commands-legacy/sql-cancel-load.md +++ b/docs/commands-legacy/sql-cancel-load.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL CANCEL LOAD** command ends the current SELECT request and initializes the parameters. @@ -53,4 +50,14 @@ If the command has been correctly executed, the system variable OK returns 1\. O #### See also [SQL LOAD RECORD](sql-load-record.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 824 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sql-end-selection.md b/docs/commands-legacy/sql-end-selection.md index d564b69ea73ab9..e1991fc4f808cc 100644 --- a/docs/commands-legacy/sql-end-selection.md +++ b/docs/commands-legacy/sql-end-selection.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL End selection command is used to determine if the boundaries of the result set have been reached. @@ -40,3 +37,13 @@ The code below connects to an external data source (Oracle) using the following ``` This code will return in the 4D *vName* variable the emp names (ename) stored in the table named emp. + + +#### Properties + +| | | +| --- | --- | +| Command number | 821 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/sql-execute-script.md b/docs/commands-legacy/sql-execute-script.md index 9ecb96ab7fc736..c89fe1f58207bf 100644 --- a/docs/commands-legacy/sql-execute-script.md +++ b/docs/commands-legacy/sql-execute-script.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL EXECUTE SCRIPT** command is used to execute a series of SQL statements placed in the script file designated by *scriptPath*. This command can only be executed on a local machine (local 4D or stored procedure on 4D Server). It works with the current database (internal or external database). @@ -59,3 +56,14 @@ If the script is executed correctly (no error occurs), the *OK* system variable * If *errorAction* is SQL On error continue (value 3), the *OK* variable is always 1\. **Note:** If you use this command to execute memory-consuming actions such as massive data imports, you can consider calling the *ALTER DATABASE* SQL command in order to temporarily disable the SQL options. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1089 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sql-execute.md b/docs/commands-legacy/sql-execute.md index 94964c445ba84f..0338b11d6a1ea0 100644 --- a/docs/commands-legacy/sql-execute.md +++ b/docs/commands-legacy/sql-execute.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL EXECUTE command executes an SQL command and binds the result to 4D objects (arrays, variables or fields). @@ -160,4 +157,14 @@ If the command has been executed correctly, the system variable OK returns 1\. O #### See also -[SQL LOAD RECORD](sql-load-record.md) \ No newline at end of file +[SQL LOAD RECORD](sql-load-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 820 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sql-export-database.md b/docs/commands-legacy/sql-export-database.md index b3ba635bc6ad5a..6ba474e80c9199 100644 --- a/docs/commands-legacy/sql-export-database.md +++ b/docs/commands-legacy/sql-export-database.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL EXPORT DATABASE command exports in SQL format all the records of all the tables in the database. In SQL, this global export operation is called "Dump". @@ -57,4 +54,14 @@ If the export has been carried out correctly, the OK variable is set to 1\. Othe #### See also -[SQL EXPORT SELECTION](sql-export-selection.md) \ No newline at end of file +[SQL EXPORT SELECTION](sql-export-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1065 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sql-export-selection.md b/docs/commands-legacy/sql-export-selection.md index addfd5158f1b76..1da9415a148add 100644 --- a/docs/commands-legacy/sql-export-selection.md +++ b/docs/commands-legacy/sql-export-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL EXPORT SELECTION** command exports in SQL format the records of the current selection of the 4D table designated by the *aTable* parameter. @@ -38,4 +35,14 @@ If the export is carried out correctly, the *OK* variable is set to 1\. Otherwis #### See also -[SQL EXPORT DATABASE](sql-export-database.md) \ No newline at end of file +[SQL EXPORT DATABASE](sql-export-database.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1064 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sql-get-current-data-source.md b/docs/commands-legacy/sql-get-current-data-source.md index 4387d12ec9e27d..92e3d475943779 100644 --- a/docs/commands-legacy/sql-get-current-data-source.md +++ b/docs/commands-legacy/sql-get-current-data-source.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL Get current data source command returns the name of the current data source of the application. The current data source receives the SQL queries executed within **Begin SQL/End SQL** structures. @@ -30,4 +27,13 @@ This command lets you check the current data source, generally before executing [End SQL](end-sql.md) [SQL GET DATA SOURCE LIST](sql-get-data-source-list.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 990 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/sql-get-data-source-list.md b/docs/commands-legacy/sql-get-data-source-list.md index 28e2ffe6c41acb..d08a28463bf28b 100644 --- a/docs/commands-legacy/sql-get-data-source-list.md +++ b/docs/commands-legacy/sql-get-data-source-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL GET DATA SOURCE LIST** command returns, in the *sourceNamesArr* and *driversArr* arrays, the names and drivers of the *sourceType* type data sources defined in the ODBC manager of the operating system. @@ -55,4 +52,14 @@ If the command is executed correctly, the OK system variable is set to 1\. Other [SQL Get current data source](sql-get-current-data-source.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 989 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sql-get-last-error.md b/docs/commands-legacy/sql-get-last-error.md index c76f0edb250e48..434ef2ba69f431 100644 --- a/docs/commands-legacy/sql-get-last-error.md +++ b/docs/commands-legacy/sql-get-last-error.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL GET LAST ERROR command returns information related to the last error encountered during the execution of an ODBC command. The error may come from the 4D application, the network, the ODBC source, etc. @@ -36,4 +33,13 @@ The last two parameters are only filled when the error comes from the ODBC sourc #### See also [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 825 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/sql-get-option.md b/docs/commands-legacy/sql-get-option.md index d5cbde015019b1..e5999f723003d8 100644 --- a/docs/commands-legacy/sql-get-option.md +++ b/docs/commands-legacy/sql-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL GET OPTION** command returns the current *value* of the option passed in *option*. @@ -29,4 +26,14 @@ If the command was properly executed, the system variable OK is set to 1\. Other #### See also -[SQL SET OPTION](sql-set-option.md) \ No newline at end of file +[SQL SET OPTION](sql-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 819 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sql-load-record.md b/docs/commands-legacy/sql-load-record.md index 428172332e01f0..233c81640c8d40 100644 --- a/docs/commands-legacy/sql-load-record.md +++ b/docs/commands-legacy/sql-load-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL LOAD RECORD command retrieves one or more record(s) in 4D coming from the data source open in the current connection. @@ -35,4 +32,14 @@ If the command has been executed correctly, the system variable OK returns 1\. O #### See also [SQL CANCEL LOAD](sql-cancel-load.md) -[SQL EXECUTE](sql-execute.md) \ No newline at end of file +[SQL EXECUTE](sql-execute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 822 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sql-login.md b/docs/commands-legacy/sql-login.md index 41253b443013c9..c604db021bf906 100644 --- a/docs/commands-legacy/sql-login.md +++ b/docs/commands-legacy/sql-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL LOGIN** command allows you to connect to an SQL data source specified in the *dataEntry* parameter. It designates the target of the SQL queries executed subsequently in the current process: @@ -207,4 +204,14 @@ If the connection is successful, the system variable OK is set to 1; otherwise, [Begin SQL](begin-sql.md) [End SQL](end-sql.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 817 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sql-logout.md b/docs/commands-legacy/sql-logout.md index 69c7d1b2a47e9f..f00a8047be05bf 100644 --- a/docs/commands-legacy/sql-logout.md +++ b/docs/commands-legacy/sql-logout.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL LOGOUT command closes the connection with an ODBC source that is open in the current process (if applicable). If there is no ODBC connection open, the command does nothing. @@ -25,4 +22,14 @@ If the logout is performed properly, the system variable OK is set to 1; otherwi #### See also -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 872 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/sql-set-option.md b/docs/commands-legacy/sql-set-option.md index db6c4167092cf3..898bae295dcd4f 100644 --- a/docs/commands-legacy/sql-set-option.md +++ b/docs/commands-legacy/sql-set-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL SET OPTION** command modifies the *value* of the option passed in *option*. @@ -47,4 +44,14 @@ If the command was properly executed, the system variable OK returns 1\. Otherwi #### See also -[SQL GET OPTION](sql-get-option.md) \ No newline at end of file +[SQL GET OPTION](sql-get-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 818 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/sql-set-parameter.md b/docs/commands-legacy/sql-set-parameter.md index 111b216c0077de..f8db3cce58f284 100644 --- a/docs/commands-legacy/sql-set-parameter.md +++ b/docs/commands-legacy/sql-set-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL SET PARAMETER command allows the use of a 4D variable, array or field value in SQL requests. @@ -79,3 +76,14 @@ Same example as the previous one, but using the SQL SET PARAMETER command: #### System variables and sets If the command has been executed correctly, the system variable OK returns 1\. Otherwise, it returns 0. + + +#### Properties + +| | | +| --- | --- | +| Command number | 823 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/square-root.md b/docs/commands-legacy/square-root.md index 2933c00549be5a..948d94235ffb2c 100644 --- a/docs/commands-legacy/square-root.md +++ b/docs/commands-legacy/square-root.md @@ -41,3 +41,13 @@ The following method returns the hypotenuse of the right triangle whose two legs ``` For instance, Hypotenuse (4;3) returns 5. + + +#### Properties + +| | | +| --- | --- | +| Command number | 539 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/st-compute-expressions.md b/docs/commands-legacy/st-compute-expressions.md index 76dd33f056f22c..0d106f8b923c52 100644 --- a/docs/commands-legacy/st-compute-expressions.md +++ b/docs/commands-legacy/st-compute-expressions.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST COMPUTE EXPRESSIONS** command updates the dynamic 4D expressions found in the multi-style or 4D Write Pro field or variable designated by the *object* parameter. @@ -69,4 +66,14 @@ You want to update the references included in the selection of text: #### See also [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1285 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/st-freeze-expressions.md b/docs/commands-legacy/st-freeze-expressions.md index dad807942b43ac..de655aa41fe9cf 100644 --- a/docs/commands-legacy/st-freeze-expressions.md +++ b/docs/commands-legacy/st-freeze-expressions.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST FREEZE EXPRESSIONS** command "freezes" the contents of expressions found in the multi-style text or 4D Write Pro field or variable designated by the *object* parameter. This action converts dynamic expressions into static text or (4D Write Pro areas only) images and removes the associated references from the *object*. @@ -68,4 +65,13 @@ You want to insert the current time at the start of the text and then freeze it #### See also [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1282 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/st-get-attributes.md b/docs/commands-legacy/st-get-attributes.md index a8094b2b0d4181..f15f0195e3db9a 100644 --- a/docs/commands-legacy/st-get-attributes.md +++ b/docs/commands-legacy/st-get-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST GET ATTRIBUTES command is used to recover the current value of a style attribute in a selection of text of the form object(s) designated by *object*. @@ -102,4 +99,14 @@ In the case of an error, the variable is not changed. When an error occurs on a #### See also -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1094 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/st-get-content-type.md b/docs/commands-legacy/st-get-content-type.md index a608691aedff5d..c61019a17e6e3b 100644 --- a/docs/commands-legacy/st-get-content-type.md +++ b/docs/commands-legacy/st-get-content-type.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST Get content type** command returns the type of content found in the styled text field or variable designated by the *object* parameter. @@ -103,3 +100,14 @@ You want to display context-menu commands based on the type of contents selected        ...     End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1286 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/st-get-expression.md b/docs/commands-legacy/st-get-expression.md index e6eea2e7607739..02691f014bc2de 100644 --- a/docs/commands-legacy/st-get-expression.md +++ b/docs/commands-legacy/st-get-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST Get expression** command returns the first expression found in the current selection of the styled text field or variable designated by the *object* parameter. @@ -93,4 +90,14 @@ You want to execute a 4D method when a user link is clicked: #### See also -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1287 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/st-get-options.md b/docs/commands-legacy/st-get-options.md index 5475c3d058ec9a..a0cd57322c88d5 100644 --- a/docs/commands-legacy/st-get-options.md +++ b/docs/commands-legacy/st-get-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST GET OPTIONS** command gets the current value of one or more operating options for the styled text field or variable designated by the *object* parameter. @@ -36,4 +33,13 @@ Pass the code of the option to get in the *option* parameter. The command return #### See also -[ST SET OPTIONS](st-set-options.md) \ No newline at end of file +[ST SET OPTIONS](st-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1290 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/st-get-plain-text.md b/docs/commands-legacy/st-get-plain-text.md index a04eadbd292c32..64990dfd3a12d8 100644 --- a/docs/commands-legacy/st-get-plain-text.md +++ b/docs/commands-legacy/st-get-plain-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST Get plain text command removes any style tags from the text variable or field designated by the *\** and *object* parameters and returns the plain text. @@ -109,4 +106,14 @@ In the case of an error, the variable is not changed. When an error occurs on a [ST Get text](st-get-text.md) [ST SET PLAIN TEXT](st-set-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1092 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/st-get-text.md b/docs/commands-legacy/st-get-text.md index 122b76b6db7218..5a93562153ef71 100644 --- a/docs/commands-legacy/st-get-text.md +++ b/docs/commands-legacy/st-get-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST Get text command returns the styled text found in the text field or variable designated by the *object* parameter. @@ -61,4 +58,14 @@ In the case of an error, the variable is not changed. When an error occurs on a [ST Get plain text](st-get-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1116 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/st-get-url.md b/docs/commands-legacy/st-get-url.md index 07570c6328658d..d55788e5ce89d8 100644 --- a/docs/commands-legacy/st-get-url.md +++ b/docs/commands-legacy/st-get-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST GET URL** command returns the text label and address of the first URL detected in the styled text field or variable designated by the *object* parameter. @@ -72,4 +69,13 @@ When there is a double-click event, you check that there is in fact an URL, and #### See also -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1288 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/st-insert-expression.md b/docs/commands-legacy/st-insert-expression.md index 9c1a73c6e5b799..62a23103e6d62e 100644 --- a/docs/commands-legacy/st-insert-expression.md +++ b/docs/commands-legacy/st-insert-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST INSERT EXPRESSION** command inserts a reference to the *expression* in the styled text field or variable designated by the *object* parameter. @@ -89,4 +86,14 @@ You want to replace the highlighted text with a field value: [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) [ST Get expression](st-get-expression.md) -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1281 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/st-insert-url.md b/docs/commands-legacy/st-insert-url.md index b60677fc276577..d2ed057dbf3013 100644 --- a/docs/commands-legacy/st-insert-url.md +++ b/docs/commands-legacy/st-insert-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST INSERT URL** command inserts a URL link in the styled text field or variable designated by the *object* parameter. @@ -65,4 +62,14 @@ You want to insert a link to the 4D Web site to replace the text selected in the #### See also [ST GET URL](st-get-url.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1280 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/st-set-attributes.md b/docs/commands-legacy/st-set-attributes.md index 191189c3a074e6..319eb6b7076661 100644 --- a/docs/commands-legacy/st-set-attributes.md +++ b/docs/commands-legacy/st-set-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST SET ATTRIBUTES command can be used to modify one or more style attributes in the form object(s) designated by *object*. @@ -103,4 +100,14 @@ In the case of an error, the variable is not changed. When an error occurs on a #### See also [FONT LIST](font-list.md) -[ST GET ATTRIBUTES](st-get-attributes.md) \ No newline at end of file +[ST GET ATTRIBUTES](st-get-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1093 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/st-set-options.md b/docs/commands-legacy/st-set-options.md index d19a93a68bb9bc..0a2411fa14b12f 100644 --- a/docs/commands-legacy/st-set-options.md +++ b/docs/commands-legacy/st-set-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST SET OPTIONS** command modifies one or more operating options for the styled text field or variable designated by the *object* parameter. @@ -63,4 +60,13 @@ The following code lets you switch the display mode of the area: #### See also -[ST GET OPTIONS](st-get-options.md) \ No newline at end of file +[ST GET OPTIONS](st-get-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1289 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/st-set-plain-text.md b/docs/commands-legacy/st-set-plain-text.md index 8e2a315ae93e86..d6de960389d935 100644 --- a/docs/commands-legacy/st-set-plain-text.md +++ b/docs/commands-legacy/st-set-plain-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST SET PLAIN TEXT command inserts the text passed in the *newText* parameter into the styled text field or variable designated by the *object* parameter. This command only applies to the plain text of the*object* parameter, without modifying any style tags that it contains. @@ -94,4 +91,14 @@ In the case of an error, the variable is not changed. When an error occurs on a #### See also [ST Get plain text](st-get-plain-text.md) -[ST SET TEXT](st-set-text.md) \ No newline at end of file +[ST SET TEXT](st-set-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1136 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/st-set-text.md b/docs/commands-legacy/st-set-text.md index 670ab2da61f065..6c2957c07dc9ad 100644 --- a/docs/commands-legacy/st-set-text.md +++ b/docs/commands-legacy/st-set-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST SET TEXT command inserts the text passed in the *newText* parameter into the styled text field or variable designated by the *object* parameter. This command only applies to the plain text of the object parameter, without modifying any style tags that it contains. It can be used to modify, by programming, styled text displayed on screen. @@ -91,4 +88,14 @@ Refer to the example of the [ST SET PLAIN TEXT](st-set-plain-text.md) command. [ST Get plain text](st-get-plain-text.md) [ST Get text](st-get-text.md) -[ST SET PLAIN TEXT](st-set-plain-text.md) \ No newline at end of file +[ST SET PLAIN TEXT](st-set-plain-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1115 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/start-monitoring-activity.md b/docs/commands-legacy/start-monitoring-activity.md index 5c35e4f1b6b867..e6f331ff047a3b 100644 --- a/docs/commands-legacy/start-monitoring-activity.md +++ b/docs/commands-legacy/start-monitoring-activity.md @@ -91,4 +91,13 @@ You want to start/stop monitoring and review 4D data and debug activities lastin #### See also [Monitored activity](monitored-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1712 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/start-sql-server.md b/docs/commands-legacy/start-sql-server.md index 5cc90d875854bd..aae429b5d2e320 100644 --- a/docs/commands-legacy/start-sql-server.md +++ b/docs/commands-legacy/start-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The START SQL SERVER command launches the integrated SQL server in the 4D application where it has been executed. Once launched, the SQL server can respond to external SQL queries. @@ -27,4 +24,14 @@ If the SQL server has been launched correctly, the OK system variable is set to #### See also -[STOP SQL SERVER](stop-sql-server.md) \ No newline at end of file +[STOP SQL SERVER](stop-sql-server.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 962 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/start-transaction.md b/docs/commands-legacy/start-transaction.md index e52bec42234f9d..2e1aa68c1f7462 100644 --- a/docs/commands-legacy/start-transaction.md +++ b/docs/commands-legacy/start-transaction.md @@ -24,4 +24,13 @@ Beginning with version 11 of 4D, you can nest several transactions (sub-transact [In transaction](in-transaction.md) [Transaction level](transaction-level.md) *Using Transactions* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 239 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/std-deviation.md b/docs/commands-legacy/std-deviation.md index 16357d9a1e47de..a14672795455fb 100644 --- a/docs/commands-legacy/std-deviation.md +++ b/docs/commands-legacy/std-deviation.md @@ -57,4 +57,13 @@ This example gets the standard deviation of a series of values placed in an arra [Average](average.md) [Sum](sum.md) [Sum squares](sum-squares.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 26 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/stop-monitoring-activity.md b/docs/commands-legacy/stop-monitoring-activity.md index 5050a5157734e3..e5e8adcc7bd32f 100644 --- a/docs/commands-legacy/stop-monitoring-activity.md +++ b/docs/commands-legacy/stop-monitoring-activity.md @@ -25,4 +25,13 @@ See example for **[START MONITORING ACTIVITY](start-monitoring-activity.md)**. #### See also [Monitored activity](monitored-activity.md) -[START MONITORING ACTIVITY](start-monitoring-activity.md) \ No newline at end of file +[START MONITORING ACTIVITY](start-monitoring-activity.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1721 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/stop-sql-server.md b/docs/commands-legacy/stop-sql-server.md index 789db1f6044973..5bf83cbd892f27 100644 --- a/docs/commands-legacy/stop-sql-server.md +++ b/docs/commands-legacy/stop-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The STOP SQL SERVER command stops the integrated SQL server in the 4D application where it has been executed. @@ -25,4 +22,13 @@ If the SQL server was launched, all the SQL connections are interrupted and the #### See also -[START SQL SERVER](start-sql-server.md) \ No newline at end of file +[START SQL SERVER](start-sql-server.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 963 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/storage.md b/docs/commands-legacy/storage.md index 4677ced9811c9b..552320ede537c6 100644 --- a/docs/commands-legacy/storage.md +++ b/docs/commands-legacy/storage.md @@ -81,4 +81,13 @@ This example shows a standard way to set **Storage** values: #### See also -*Shared objects and shared collections* \ No newline at end of file +*Shared objects and shared collections* + +#### Properties + +| | | +| --- | --- | +| Command number | 1525 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/string-list-to-array.md b/docs/commands-legacy/string-list-to-array.md index 4053e57a2228ed..82dabfe99b92b0 100644 --- a/docs/commands-legacy/string-list-to-array.md +++ b/docs/commands-legacy/string-list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **STRING LIST TO ARRAY** command populates the array *strings* with: @@ -48,4 +45,14 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero). [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[Get text resource](get-text-resource.md) \ No newline at end of file +[Get text resource](get-text-resource.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 511 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/string.md b/docs/commands-legacy/string.md index 55c4c110184d4b..6f7f5f61917309 100644 --- a/docs/commands-legacy/string.md +++ b/docs/commands-legacy/string.md @@ -186,4 +186,13 @@ If *expression* is evaluated to Null, the command returns the "null" string. Thi [Date](date.md) [Num](num.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 10 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/structure-file.md b/docs/commands-legacy/structure-file.md index f57733e76e13f1..36232b27791490 100644 --- a/docs/commands-legacy/structure-file.md +++ b/docs/commands-legacy/structure-file.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Structure file** command returns the pathname of the structure file for the database with which you are currently working. - -* With binary databases, the command returns the pathname of the **.4db** file. +The **Structure file** command returns the pathname of the structure file for the database with which you are currently working.file. * With project databases, the command returns the pathname of the **.4dproject** file. **Note:** In the particular case of a database that has been compiled and merged with 4D Volume Desktop, this command returns the pathname of the application file (executable application) under Windows and macOS. Under macOS, this file is located inside the software package, in the \[Contents:Mac OS\] folder. This stems from a former mechanism and is kept for compatibility reasons. If you want to get the full name of the software package itself, it is preferable to use the [Application file](application-file.md) command. The technique consists of testing the application using the [Application type](application-type.md) command, then executing **Structure file** or [Application file](application-file.md) depending on the context. @@ -66,4 +64,13 @@ The following example can be used to find out whether the method is called from [Application file](application-file.md) [COMPONENT LIST](component-list.md) -[Data file](data-file.md) \ No newline at end of file +[Data file](data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 489 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/substring.md b/docs/commands-legacy/substring.md index 03bdb784c0b503..b2d940f0e634f8 100644 --- a/docs/commands-legacy/substring.md +++ b/docs/commands-legacy/substring.md @@ -64,4 +64,13 @@ The following project method appends the paragraphs found in the text (passed as #### See also -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 12 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/subtotal.md b/docs/commands-legacy/subtotal.md index c74d1eace14360..c08c6842f4e1c9 100644 --- a/docs/commands-legacy/subtotal.md +++ b/docs/commands-legacy/subtotal.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Subtotal** returns the subtotal for *data* for the current or last break level. **Subtotal** works only when a sorted selection is being printed with [PRINT SELECTION](print-selection.md) or when printing using Print in the Design environment. The *data* parameter must be of type real, integer, or long integer. Assign the result of the **Subtotal** function to a variable placed in the Break area of the form. @@ -61,4 +58,13 @@ The **Subtotal** function is necessary in order to display values on a form. [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 97 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/sum-squares.md b/docs/commands-legacy/sum-squares.md index 0d7570d761dd7b..6d35360556daa0 100644 --- a/docs/commands-legacy/sum-squares.md +++ b/docs/commands-legacy/sum-squares.md @@ -57,4 +57,13 @@ This example gets the sum of the squares of the values placed in an array: [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 28 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/sum.md b/docs/commands-legacy/sum.md index 970db649bc7587..cc889ccdc44988 100644 --- a/docs/commands-legacy/sum.md +++ b/docs/commands-legacy/sum.md @@ -71,4 +71,14 @@ For an example of computing an object field attribute, please refer to the examp [Min](min.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/super.md b/docs/commands-legacy/super.md index 7c490fe374ca47..13fdf54abe9f68 100644 --- a/docs/commands-legacy/super.md +++ b/docs/commands-legacy/super.md @@ -12,4 +12,13 @@ displayed_sidebar: docs |Result|Object|<-|Object's parent| -The **Super** keyword is described in the [**Classes page**](../Concepts/classes.md#super). \ No newline at end of file +The **Super** keyword is described in the [**Classes page**](../Concepts/classes.md#super). + +#### Properties + +| | | +| --- | --- | +| Command number | 1706 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/suspend-transaction.md b/docs/commands-legacy/suspend-transaction.md index b5dc430bace67d..35a9f7d1c8df7e 100644 --- a/docs/commands-legacy/suspend-transaction.md +++ b/docs/commands-legacy/suspend-transaction.md @@ -22,4 +22,13 @@ For more information, please refer to the *Suspending transactions* section. [Active transaction](active-transaction.md) [RESUME TRANSACTION](resume-transaction.md) -*Suspending transactions* \ No newline at end of file +*Suspending transactions* + +#### Properties + +| | | +| --- | --- | +| Command number | 1385 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/svg-export-to-picture.md b/docs/commands-legacy/svg-export-to-picture.md index 88ad79d07c712d..f1172e6a812be0 100644 --- a/docs/commands-legacy/svg-export-to-picture.md +++ b/docs/commands-legacy/svg-export-to-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **SVG EXPORT TO PICTURE** command saves an SVG format picture contained in an XML tree in the picture field or variable indicated by the *pictVar* parameter. - -**Note:** For more information about the SVG format, refer to the *Overview of XML Utilities Commands* section. +The **SVG EXPORT TO PICTURE** command saves an SVG format picture contained in an XML tree in the picture field or variable indicated by the *pictVar* parameter.For more information about the SVG format, refer to the *Overview of XML Utilities Commands* section. Pass the root XML element reference that contains the SVG picture in *elementRef*. @@ -52,4 +50,13 @@ The following example can be used to display “Hello World” in a 4D picture: #### See also [DOM EXPORT TO FILE](dom-export-to-file.md) -[DOM EXPORT TO VAR](dom-export-to-var.md) \ No newline at end of file +[DOM EXPORT TO VAR](dom-export-to-var.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1017 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/svg-find-element-id-by-coordinates.md b/docs/commands-legacy/svg-find-element-id-by-coordinates.md index aa530f72afc80b..5b5d541915dd6f 100644 --- a/docs/commands-legacy/svg-find-element-id-by-coordinates.md +++ b/docs/commands-legacy/svg-find-element-id-by-coordinates.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SVG Find element ID by coordinates** command returns the ID ("id" or "xml:id" attribute) of the XML element found at the location set by the coordinates (x,y) in the SVG picture designated by the *pictureObject* parameter. This command can be used more particularly to create interactive graphic interfaces using SVG objects. @@ -54,4 +51,14 @@ If *pictureObject* does not contain a valid SVG picture, the command returns an #### See also -[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) \ No newline at end of file +[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1054 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/svg-find-element-ids-by-rect.md b/docs/commands-legacy/svg-find-element-ids-by-rect.md index 0a4ceec5b81002..efab454cdf4ab3 100644 --- a/docs/commands-legacy/svg-find-element-ids-by-rect.md +++ b/docs/commands-legacy/svg-find-element-ids-by-rect.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SVG Find element IDs by rect** command fills the Text or Alpha *arrIDs* array with the IDs ("id" or "xml:id" attribute) of the XML elements whose bounding rectangle intersects with the selection rectangle at the location specified by the *x* and *y* parameters. @@ -43,4 +40,13 @@ All elements whose bounding rectangle intersects with the selection rectangle ar #### See also -[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) \ No newline at end of file +[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1109 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/svg-get-attribute.md b/docs/commands-legacy/svg-get-attribute.md index cf2cf0dc12ac7d..ccb880b28dc75f 100644 --- a/docs/commands-legacy/svg-get-attribute.md +++ b/docs/commands-legacy/svg-get-attribute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SVG GET ATTRIBUTE command is used to get the current value of the *attribName* attribute in an object or an SVG picture. @@ -42,4 +39,13 @@ For more information about SVG attributes, please refer to the description of th #### See also -[SVG SET ATTRIBUTE](svg-set-attribute.md) \ No newline at end of file +[SVG SET ATTRIBUTE](svg-set-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1056 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/svg-set-attribute.md b/docs/commands-legacy/svg-set-attribute.md index b3183ae871d60a..e73342aa88e119 100644 --- a/docs/commands-legacy/svg-set-attribute.md +++ b/docs/commands-legacy/svg-set-attribute.md @@ -93,4 +93,14 @@ Modification of the contents of a Text type element: #### See also -[SVG GET ATTRIBUTE](svg-get-attribute.md) \ No newline at end of file +[SVG GET ATTRIBUTE](svg-get-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1055 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/svg-show-element.md b/docs/commands-legacy/svg-show-element.md index 9459403cab4ffc..5b1c42ee97d46d 100644 --- a/docs/commands-legacy/svg-show-element.md +++ b/docs/commands-legacy/svg-show-element.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SVG SHOW ELEMENT command moves the *pictureObject* SVG document in order to show the element whose "id" attribute is specified by the *id* parameter. @@ -30,3 +27,14 @@ The command moves the SVG document so that all of the object, whose limits are d This command only takes effect in "top left" display mode (with scrollbars). If this command is not executed in the context of a form or if an invalid *pictureObject* is passed, the *OK* variable is set to 0\. If the command is executed correctly, it is set to 1\. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1108 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/system-folder.md b/docs/commands-legacy/system-folder.md index c9906508f4f296..3417f4a1040b0c 100644 --- a/docs/commands-legacy/system-folder.md +++ b/docs/commands-legacy/system-folder.md @@ -48,4 +48,13 @@ If you omit the *type* parameter, the function will return the pathname to activ #### See also [Get 4D folder](get-4d-folder.md) -[Temporary folder](temporary-folder.md) \ No newline at end of file +[Temporary folder](temporary-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 487 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/system-info.md b/docs/commands-legacy/system-info.md index 07f9c2d7a77d4e..41f8c480b74805 100644 --- a/docs/commands-legacy/system-info.md +++ b/docs/commands-legacy/system-info.md @@ -144,4 +144,13 @@ returns an object that contains, for example, the following information: [Application info](application-info.md) [Is macOS](is-macos.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1571 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/table-fragmentation.md b/docs/commands-legacy/table-fragmentation.md index 6e74ddfe5ea4fe..9ffbc995daae71 100644 --- a/docs/commands-legacy/table-fragmentation.md +++ b/docs/commands-legacy/table-fragmentation.md @@ -40,4 +40,13 @@ This maintenance method lets you request the compacting of the data file in the #### See also -[Compact data file](compact-data-file.md) \ No newline at end of file +[Compact data file](compact-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1127 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/table-name.md b/docs/commands-legacy/table-name.md index b056819e9b6697..98128a9b550aa5 100644 --- a/docs/commands-legacy/table-name.md +++ b/docs/commands-legacy/table-name.md @@ -37,4 +37,13 @@ The following is an example of a generic method that displays the records of a t [Last table number](last-table-number.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 256 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/table.md b/docs/commands-legacy/table.md index 49b332b7d49373..a864451d5bc4c3 100644 --- a/docs/commands-legacy/table.md +++ b/docs/commands-legacy/table.md @@ -58,4 +58,13 @@ This example sets the *tableNum* variable to the table number of the table to wh [Field](field.md) [Last table number](last-table-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 252 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/tan.md b/docs/commands-legacy/tan.md index 853096241e5163..141c2962ccf2f0 100644 --- a/docs/commands-legacy/tan.md +++ b/docs/commands-legacy/tan.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Description -**Tan** returns the tangent of *number*, where *number* is expressed in radians. - -**Note:** 4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). +**Tan** returns the tangent of *number*, where *number* is expressed in radians.4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). #### See also [Arctan](arctan.md) [Cos](cos.md) -[Sin](sin.md) \ No newline at end of file +[Sin](sin.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 19 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/temporary-folder.md b/docs/commands-legacy/temporary-folder.md index c64cb2ee545c5e..0146a65f3c0ccf 100644 --- a/docs/commands-legacy/temporary-folder.md +++ b/docs/commands-legacy/temporary-folder.md @@ -23,4 +23,13 @@ See example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) co #### See also -[System folder](system-folder.md) \ No newline at end of file +[System folder](system-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 486 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/test-path-name.md b/docs/commands-legacy/test-path-name.md index fe204e838d2712..83829b1573ac77 100644 --- a/docs/commands-legacy/test-path-name.md +++ b/docs/commands-legacy/test-path-name.md @@ -48,4 +48,13 @@ The following tests if the document “Journal” is present in the folder of th [Create document](create-document.md) [CREATE FOLDER](create-folder.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 476 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/test-semaphore.md b/docs/commands-legacy/test-semaphore.md index faef2284d21807..2955296d75d580 100644 --- a/docs/commands-legacy/test-semaphore.md +++ b/docs/commands-legacy/test-semaphore.md @@ -41,4 +41,13 @@ The following example allows you to know the state of a process (in our case, wh #### See also [CLEAR SEMAPHORE](clear-semaphore.md) -[Semaphore](semaphore.md) \ No newline at end of file +[Semaphore](semaphore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 652 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/text-to-array.md b/docs/commands-legacy/text-to-array.md index f75f35876999fe..b9d6642afea25d 100644 --- a/docs/commands-legacy/text-to-array.md +++ b/docs/commands-legacy/text-to-array.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **TEXT TO ARRAY** command transforms a text variable into a text array. The original varText text (styled or not) is divided and each part becomes an element of the *arrText* array that is returned by the command. This command can be used for example to fill pages or columns with text of a set size. @@ -109,4 +106,13 @@ You need to print in a 400-pixel wide area, a text with a maximum of 80 lines an [Split string](split-string.md) [ST Get plain text](st-get-plain-text.md) -[ST Get text](st-get-text.md) \ No newline at end of file +[ST Get text](st-get-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1149 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/text-to-blob.md b/docs/commands-legacy/text-to-blob.md index a03b824fd7622e..da561030bab1f1 100644 --- a/docs/commands-legacy/text-to-blob.md +++ b/docs/commands-legacy/text-to-blob.md @@ -104,4 +104,13 @@ After executing this code: [CONVERT FROM TEXT](convert-from-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[REAL TO BLOB](real-to-blob.md) \ No newline at end of file +[REAL TO BLOB](real-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 554 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/text-to-document.md b/docs/commands-legacy/text-to-document.md index 14601dd15517ad..9c03813cf50b0b 100644 --- a/docs/commands-legacy/text-to-document.md +++ b/docs/commands-legacy/text-to-document.md @@ -81,4 +81,13 @@ Example allowing the user to indicate the location of the file to create: #### See also [Document to text](document-to-text.md) -*System Documents* \ No newline at end of file +*System Documents* + +#### Properties + +| | | +| --- | --- | +| Command number | 1237 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/throw.md b/docs/commands-legacy/throw.md index f2779c99979937..0b25d02bda8324 100644 --- a/docs/commands-legacy/throw.md +++ b/docs/commands-legacy/throw.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **throw** command creates an error that will be thrown either immediately or when the calling method returns to its caller (deferred mode). @@ -105,4 +102,13 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi [ASSERT](assert.md) [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1805 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/tickcount.md b/docs/commands-legacy/tickcount.md index 5f82e0a62141b7..6f5bcf7de4c0ba 100644 --- a/docs/commands-legacy/tickcount.md +++ b/docs/commands-legacy/tickcount.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -Tickcount returns the number of ticks (60th of a second) elapsed since the machine was started. - -**Note:** Tickcount returns a value of type Long Integer. +Tickcount returns the number of ticks (60th of a second) elapsed since the machine was started.Tickcount returns a value of type Long Integer. #### Example @@ -26,4 +24,13 @@ See example for the command [Milliseconds](milliseconds.md). #### See also [Current time](current-time.md) -[Milliseconds](milliseconds.md) \ No newline at end of file +[Milliseconds](milliseconds.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 458 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/time-string.md b/docs/commands-legacy/time-string.md index 9379f4f8c42299..492ecb16ee6976 100644 --- a/docs/commands-legacy/time-string.md +++ b/docs/commands-legacy/time-string.md @@ -35,4 +35,13 @@ The following example displays an alert box with the message, “46800 seconds i #### See also [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 180 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/time.md b/docs/commands-legacy/time.md index 8ba63c49103a0e..2d0d6dccf29d1c 100644 --- a/docs/commands-legacy/time.md +++ b/docs/commands-legacy/time.md @@ -50,4 +50,13 @@ You can express any numerical value as a time: [Bool](bool.md) [String](string.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 179 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/timestamp.md b/docs/commands-legacy/timestamp.md index 8e437c809becef..8bf3135a576b73 100644 --- a/docs/commands-legacy/timestamp.md +++ b/docs/commands-legacy/timestamp.md @@ -41,4 +41,13 @@ Result: [Milliseconds](milliseconds.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1445 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/tool-bar-height.md b/docs/commands-legacy/tool-bar-height.md index 4b78bc580706bc..0ace018f99fa9e 100644 --- a/docs/commands-legacy/tool-bar-height.md +++ b/docs/commands-legacy/tool-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Tool bar height command returns the height of the current visible tool bar, expressed in pixels. Depending on the context, it can be either the 4D Design mode toolbar, or a custom toolbar created with [Open form window](open-form-window.md) (the Design mode toolbar is automatically hidden when a custom toolbar is displayed). @@ -26,4 +23,13 @@ If no tool bar is displayed, the command returns 0. [HIDE TOOL BAR](hide-tool-bar.md) [Menu bar height](menu-bar-height.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1016 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/trace.md b/docs/commands-legacy/trace.md index 12ad47e49d037c..3dc103e454c80b 100644 --- a/docs/commands-legacy/trace.md +++ b/docs/commands-legacy/trace.md @@ -59,3 +59,13 @@ The DEBUG project method is listed here:     End if  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 157 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/transaction-level.md b/docs/commands-legacy/transaction-level.md index 655cbb5b58761c..ae08f9242fdc0c 100644 --- a/docs/commands-legacy/transaction-level.md +++ b/docs/commands-legacy/transaction-level.md @@ -21,4 +21,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Using Transactions* \ No newline at end of file +*Using Transactions* + +#### Properties + +| | | +| --- | --- | +| Command number | 961 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/transform-picture.md b/docs/commands-legacy/transform-picture.md index 1dea70805c3d5d..fe0d8fddee45e8 100644 --- a/docs/commands-legacy/transform-picture.md +++ b/docs/commands-legacy/transform-picture.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -The TRANSFORM PICTURE command applies a transformation of the *operator* type to the picture passed in the *picture* parameter. - -**Note:** This command extends the functionalities offered by conventional picture transformation operators. These operators remain entirely usable in 4D. +The TRANSFORM PICTURE command applies a transformation of the *operator* type to the picture passed in the *picture* parameter.This command extends the functionalities offered by conventional picture transformation operators. These operators remain entirely usable in 4D. The source *picture* is modified directly after execution of the command. Note that certain operations are not destructive and can be reversed by performing the opposite operation or by means of the “Reset” operation. For example, a picture reduced to 1% will regain its original size with no alteration if it is enlarged by a factor of 100 subsequently. Transformations do not modify the original picture type: for example, a vectorial picture will remain vectorial after its transformation. @@ -72,4 +70,13 @@ Here is an example of cropping a picture (the picture is displayed in the form w #### See also -[COMBINE PICTURES](combine-pictures.md) \ No newline at end of file +[COMBINE PICTURES](combine-pictures.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 988 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/trigger-event.md b/docs/commands-legacy/trigger-event.md index 25b3a2dddc1a72..3a992b78e8f318 100644 --- a/docs/commands-legacy/trigger-event.md +++ b/docs/commands-legacy/trigger-event.md @@ -52,4 +52,13 @@ You use the **Trigger event** command to structure your triggers as follows: [In transaction](in-transaction.md) [Trigger level](trigger-level.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 369 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/trigger-level.md b/docs/commands-legacy/trigger-level.md index 62716b059ff79e..e6d602990f3e44 100644 --- a/docs/commands-legacy/trigger-level.md +++ b/docs/commands-legacy/trigger-level.md @@ -23,4 +23,13 @@ For more information on execution levels, see the topic *Cascading Triggers*. [Trigger event](trigger-event.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 398 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/trigger-properties.md b/docs/commands-legacy/trigger-properties.md index cecc2b86255964..0944b7464d8234 100644 --- a/docs/commands-legacy/trigger-properties.md +++ b/docs/commands-legacy/trigger-properties.md @@ -37,4 +37,13 @@ The table number and record number for the record involved by the database event *About Record Numbers* [Trigger event](trigger-event.md) [Trigger level](trigger-level.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 399 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/true.md b/docs/commands-legacy/true.md index d3d26533e636b0..691407f6948fc4 100644 --- a/docs/commands-legacy/true.md +++ b/docs/commands-legacy/true.md @@ -28,4 +28,13 @@ The following example sets the variable *vbOptions* to True: #### See also [False](false.md) -[Not](not.md) \ No newline at end of file +[Not](not.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 214 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/trunc.md b/docs/commands-legacy/trunc.md index 1c997eed97ffb7..7d0d08e1476b26 100644 --- a/docs/commands-legacy/trunc.md +++ b/docs/commands-legacy/trunc.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -**Trunc** returns *number* with its decimal part truncated to the number of decimal places specified by *places*. **Trunc** always truncates toward negative infinity. +**Trunc** returns *number* with its decimal part truncated to the number of decimal places specified by *places*.always truncates toward negative infinity. If *places* is positive, *number* is truncated to *places* decimal places. If *places* is negative, number is truncated on the left of the decimal point. @@ -34,4 +34,13 @@ The following example illustrates how Trunc works with different arguments. Each #### See also -[Round](round.md) \ No newline at end of file +[Round](round.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 95 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/truncate-table.md b/docs/commands-legacy/truncate-table.md index 84a93f4702dc16..2ad3a067cd6cd4 100644 --- a/docs/commands-legacy/truncate-table.md +++ b/docs/commands-legacy/truncate-table.md @@ -37,4 +37,16 @@ If the command has been executed correctly, the OK system variable is set to 1\. #### See also -[DELETE SELECTION](delete-selection.md) \ No newline at end of file +[DELETE SELECTION](delete-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1051 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/type.md b/docs/commands-legacy/type.md index 383e340cc3e9de..abbd936f9f9f70 100644 --- a/docs/commands-legacy/type.md +++ b/docs/commands-legacy/type.md @@ -145,4 +145,13 @@ See example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) co [Is a variable](is-a-variable.md) [Undefined](undefined.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 295 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/undefined.md b/docs/commands-legacy/undefined.md index 571b6af850350b..0464f76d661153 100644 --- a/docs/commands-legacy/undefined.md +++ b/docs/commands-legacy/undefined.md @@ -59,4 +59,13 @@ Here are the different results of the [Undefined](undefined.md) command as well #### See also -[CLEAR VARIABLE](clear-variable.md) \ No newline at end of file +[CLEAR VARIABLE](clear-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 82 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/union.md b/docs/commands-legacy/union.md index f64b8dc97f9610..d28f06cea195ee 100644 --- a/docs/commands-legacy/union.md +++ b/docs/commands-legacy/union.md @@ -49,4 +49,13 @@ This example adds records to a set of best customers. The records are displayed #### See also [DIFFERENCE](difference.md) -[INTERSECTION](intersection.md) \ No newline at end of file +[INTERSECTION](intersection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 120 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/unload-record.md b/docs/commands-legacy/unload-record.md index 5a0fd43e8264d6..4dac9f923e6131 100644 --- a/docs/commands-legacy/unload-record.md +++ b/docs/commands-legacy/unload-record.md @@ -28,4 +28,13 @@ If a record has a large amount of data, picture fields, or external documents (s #### See also [LOAD RECORD](load-record.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 212 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/unregister-client.md b/docs/commands-legacy/unregister-client.md index 957debe65b8c8c..679f8c4dbd8e3f 100644 --- a/docs/commands-legacy/unregister-client.md +++ b/docs/commands-legacy/unregister-client.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **UNREGISTER CLIENT** command “unregisters” a 4D client station. The client must have already been registered by the [REGISTER CLIENT](register-client.md) command. @@ -35,4 +32,14 @@ If the client is correctly unregistered, the OK system variable is set to 1\. If [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[REGISTER CLIENT](register-client.md) \ No newline at end of file +[REGISTER CLIENT](register-client.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 649 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/uppercase.md b/docs/commands-legacy/uppercase.md index 269207ef0884ab..7c4129566f06fd 100644 --- a/docs/commands-legacy/uppercase.md +++ b/docs/commands-legacy/uppercase.md @@ -36,4 +36,13 @@ See the example for [Lowercase](lowercase.md). #### See also -[Lowercase](lowercase.md) \ No newline at end of file +[Lowercase](lowercase.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 13 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/use-character-set.md b/docs/commands-legacy/use-character-set.md index 1f039581391fd1..917eb3ea9845bc 100644 --- a/docs/commands-legacy/use-character-set.md +++ b/docs/commands-legacy/use-character-set.md @@ -49,4 +49,14 @@ The OK system variable is set to 1 if the map is loaded correctly. Otherwise, it [IMPORT TEXT](import-text.md) [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 205 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/use-named-selection.md b/docs/commands-legacy/use-named-selection.md index f70acfeccaaa6b..c5e95005409057 100644 --- a/docs/commands-legacy/use-named-selection.md +++ b/docs/commands-legacy/use-named-selection.md @@ -28,4 +28,15 @@ Remember that a named selection is a representation of a selection of records at [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[CUT NAMED SELECTION](cut-named-selection.md) \ No newline at end of file +[CUT NAMED SELECTION](cut-named-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 332 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/use-set.md b/docs/commands-legacy/use-set.md index cb9399b4897077..b66d05fe36dd88 100644 --- a/docs/commands-legacy/use-set.md +++ b/docs/commands-legacy/use-set.md @@ -34,4 +34,15 @@ The following example uses [LOAD SET](load-set.md) to load a set of the Acme loc #### See also [CLEAR SET](clear-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 118 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands-legacy/user-in-group.md b/docs/commands-legacy/user-in-group.md index ded5c13522a841..c11a3e70bf878d 100644 --- a/docs/commands-legacy/user-in-group.md +++ b/docs/commands-legacy/user-in-group.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description User in group returns TRUE if *user* is in *group*. @@ -44,4 +41,13 @@ The following example searches for specific invoices. If the current user is in #### See also -[Current user](current-user.md) \ No newline at end of file +[Current user](current-user.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 338 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/users-to-blob.md b/docs/commands-legacy/users-to-blob.md index fca0591d2e46d4..3b0aa50a7259b7 100644 --- a/docs/commands-legacy/users-to-blob.md +++ b/docs/commands-legacy/users-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Compatibility Note:* This command only works in binary databases. It always returns an empty BLOB in projects.* @@ -33,4 +30,14 @@ This lets you keep a backup of users in the database data and, as such, implemen #### See also -[BLOB TO USERS](blob-to-users.md) \ No newline at end of file +[BLOB TO USERS](blob-to-users.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 849 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/validate-password.md b/docs/commands-legacy/validate-password.md index 1e6602853dff49..7edd64c509deb9 100644 --- a/docs/commands-legacy/validate-password.md +++ b/docs/commands-legacy/validate-password.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Validate password returns True if the string passed in *password* is the password for the user account whose ID number or name is passed in *userID*. @@ -62,4 +59,13 @@ In the [On REST Authentication database method](on-rest-authentication-database- [GET USER PROPERTIES](get-user-properties.md) [Set user properties](set-user-properties.md) -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 638 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/validate-transaction.md b/docs/commands-legacy/validate-transaction.md index 54f583fbb3ac47..d5718108a21aa4 100644 --- a/docs/commands-legacy/validate-transaction.md +++ b/docs/commands-legacy/validate-transaction.md @@ -29,4 +29,14 @@ Note that when OK is set to 0, the transaction is automatically cancelled intern [CANCEL TRANSACTION](cancel-transaction.md) [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Using Transactions* \ No newline at end of file +*Using Transactions* + +#### Properties + +| | | +| --- | --- | +| Command number | 240 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/value-type.md b/docs/commands-legacy/value-type.md index 2b28ac9495cba5..653d6ee7ed98e3 100644 --- a/docs/commands-legacy/value-type.md +++ b/docs/commands-legacy/value-type.md @@ -112,4 +112,13 @@ You want to sum up all numeric values in a collection: #### See also [OB Get type](ob-get-type.md) -[Type](type.md) \ No newline at end of file +[Type](type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1509 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/variable-to-blob.md b/docs/commands-legacy/variable-to-blob.md index 0ddd809ebdc077..a051093971507b 100644 --- a/docs/commands-legacy/variable-to-blob.md +++ b/docs/commands-legacy/variable-to-blob.md @@ -131,4 +131,14 @@ After these methods have been added to your application, you can write: [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 532 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/variable-to-variable.md b/docs/commands-legacy/variable-to-variable.md index 74a3b1e977de1c..f8f85a56ca6ec6 100644 --- a/docs/commands-legacy/variable-to-variable.md +++ b/docs/commands-legacy/variable-to-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **VARIABLE TO VARIABLE** command writes the *dstVar* process variables (*dstVar2*, etc.) of the destination process whose number is passed in *process* using the values of the variables *srcVar1* *srcVar2*, etc. @@ -61,4 +58,13 @@ The following example reads a process array from the process indicated by *$vlPr [GET PROCESS VARIABLE](get-process-variable.md) *Processes* -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 635 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/variance.md b/docs/commands-legacy/variance.md index e4f461f6f28c70..2030b2b868cf41 100644 --- a/docs/commands-legacy/variance.md +++ b/docs/commands-legacy/variance.md @@ -65,4 +65,13 @@ This example gets the variance of the values placed in an array: [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Sum squares](sum-squares.md) \ No newline at end of file +[Sum squares](sum-squares.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 27 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/verify-current-data-file.md b/docs/commands-legacy/verify-current-data-file.md index 316141f9c788fd..c09427cc4b5761 100644 --- a/docs/commands-legacy/verify-current-data-file.md +++ b/docs/commands-legacy/verify-current-data-file.md @@ -42,4 +42,14 @@ If the callback method does not exist, the verification is not carried out, an e #### See also -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1008 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/docs/commands-legacy/verify-data-file.md b/docs/commands-legacy/verify-data-file.md index cccda1670c4309..775a01467bcfc3 100644 --- a/docs/commands-legacy/verify-data-file.md +++ b/docs/commands-legacy/verify-data-file.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -The VERIFY DATA FILE command carries out a structural check of the objects contained in the 4D data file designated by *structurePath* and *dataPath*. - -**Note:** For more information about checking data, please refer to the Design Reference manual. *structurePath* designates the structure file (compiled or not) associated with the data file to be checked. This can be the open structure file or any other structure file. You must pass a complete pathname, expressed with the syntax of the operating system. You can also pass an empty string, in this case a standard Open file dialog box appears so that the user can specify the structure file to be used. +The VERIFY DATA FILE command carries out a structural check of the objects contained in the 4D data file designated by *structurePath* and *dataPath*.For more information about checking data, please refer to the Design Reference manual. *structurePath* designates the structure file (compiled or not) associated with the data file to be checked. This can be the open structure file or any other structure file. You must pass a complete pathname, expressed with the syntax of the operating system. You can also pass an empty string, in this case a standard Open file dialog box appears so that the user can specify the structure file to be used. *dataPath* designates a 4D data file (.4DD). It must correspond to the structure file defined by the *structurePath* parameter. Be careful, you can designate the current structure file but the data file must not be the current (open) file. To verify the currently open data file, use the [VERIFY CURRENT DATA FILE](verify-current-data-file.md) command. If you attempt to verify the current data file with the VERIFY DATA FILE command, an error is generated. @@ -170,4 +168,14 @@ If the callback method does not exist, the verification is not carried out, an e #### See also -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 939 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/docs/commands-legacy/verify-password-hash.md b/docs/commands-legacy/verify-password-hash.md index 2ca18de8dbf225..1a82a735f3d4ad 100644 --- a/docs/commands-legacy/verify-password-hash.md +++ b/docs/commands-legacy/verify-password-hash.md @@ -52,4 +52,13 @@ This example verifies a password hash previously created by [Generate password h #### See also -[Generate password hash](generate-password-hash.md) \ No newline at end of file +[Generate password hash](generate-password-hash.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1534 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/version-type.md b/docs/commands-legacy/version-type.md index 3bc67a1287c5fc..b43a7a71234fec 100644 --- a/docs/commands-legacy/version-type.md +++ b/docs/commands-legacy/version-type.md @@ -42,4 +42,13 @@ This test lets you run different code depending on whether the version is a merg #### See also [Application type](application-type.md) -[Application version](application-version.md) \ No newline at end of file +[Application version](application-version.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 495 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/volume-attributes.md b/docs/commands-legacy/volume-attributes.md index d1f914667a34a7..1bf7e7e33db00a 100644 --- a/docs/commands-legacy/volume-attributes.md +++ b/docs/commands-legacy/volume-attributes.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -The VOLUME ATTRIBUTES command returns, expressed in bytes, the size, the used space and the free space for the volume whose name you pass in *volume*. - -**Note:** If *volume* indicates a non-mounted remote volume, the OK variable is set to 0 and the three parameters return -1\. +The VOLUME ATTRIBUTES command returns, expressed in bytes, the size, the used space and the free space for the volume whose name you pass in *volume*.If *volume* indicates a non-mounted remote volume, the OK variable is set to 0 and the three parameters return -1\. #### Example @@ -96,4 +94,14 @@ Once this project method is added to your application, you can for instance writ #### See also -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 472 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/docs/commands-legacy/volume-list.md b/docs/commands-legacy/volume-list.md index 47436f2a592306..2ac3cb3cb3c56e 100644 --- a/docs/commands-legacy/volume-list.md +++ b/docs/commands-legacy/volume-list.md @@ -38,4 +38,13 @@ Using a scrollable area named *atVolumes* you want to display the list of the vo [DOCUMENT LIST](document-list.md) [FOLDER LIST](folder-list.md) -[VOLUME ATTRIBUTES](volume-attributes.md) \ No newline at end of file +[VOLUME ATTRIBUTES](volume-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 471 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/wa-back-url-available.md b/docs/commands-legacy/wa-back-url-available.md index 910f0304053d71..edcb895bba9c2c 100644 --- a/docs/commands-legacy/wa-back-url-available.md +++ b/docs/commands-legacy/wa-back-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Back URL available command finds out whether there is a previous URL available in the sequence of URLs opened in the Web area designated by the *\** and *object* parameters. @@ -27,4 +24,13 @@ The command returns **True** if a URL exists and **False** otherwise. More parti #### See also [WA Forward URL available](wa-forward-url-available.md) -[WA OPEN BACK URL](wa-open-back-url.md) \ No newline at end of file +[WA OPEN BACK URL](wa-open-back-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1026 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-create-url-history-menu.md b/docs/commands-legacy/wa-create-url-history-menu.md index c351ccb0f6a075..1cce7054f84832 100644 --- a/docs/commands-legacy/wa-create-url-history-menu.md +++ b/docs/commands-legacy/wa-create-url-history-menu.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA Create URL history menu** command creates and fills a menu that can be used directly for navigation among the URLs visited during the session in the Web area designated by the *\** and *object* parameters. It can be used to build a custom navigation interface. @@ -69,4 +66,13 @@ The following code can be associated with a 3D button having a pop-up menu entit [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[WA GET URL HISTORY](wa-get-url-history.md) \ No newline at end of file +[WA GET URL HISTORY](wa-get-url-history.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1049 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-evaluate-javascript.md b/docs/commands-legacy/wa-evaluate-javascript.md index 9d3437161f50bf..6793b2d97cec10 100644 --- a/docs/commands-legacy/wa-evaluate-javascript.md +++ b/docs/commands-legacy/wa-evaluate-javascript.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Evaluate JavaScript command executes, in the Web area designated by the *\** and *object* parameters, the JavaScript code passed in *jsCode* and returns the result. This command must be called after the page is loaded (the On End URL Loading form event must have been generated). @@ -103,4 +100,13 @@ You can then evaluate the JavaScript code from 4D: #### See also -[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) \ No newline at end of file +[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1029 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-execute-javascript-function.md b/docs/commands-legacy/wa-execute-javascript-function.md index dccbc0f0433f27..c861423b5e7231 100644 --- a/docs/commands-legacy/wa-execute-javascript-function.md +++ b/docs/commands-legacy/wa-execute-javascript-function.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA EXECUTE JAVASCRIPT FUNCTION command executes, in the Web area designated by the *\** and *object* parameters, the JavaScript function *jsFunction* and optionally returns its result in the *result* parameter. @@ -59,4 +56,13 @@ The "getCustomerInfo" JavaScript function receive a number ID as parameter and r #### See also -[WA Evaluate JavaScript](wa-evaluate-javascript.md) \ No newline at end of file +[WA Evaluate JavaScript](wa-evaluate-javascript.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1043 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-forward-url-available.md b/docs/commands-legacy/wa-forward-url-available.md index 41e5c873ce7c36..dece3caa0233a0 100644 --- a/docs/commands-legacy/wa-forward-url-available.md +++ b/docs/commands-legacy/wa-forward-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Forward URL available command finds out whether there is a following URL available in the sequence of URLs opened in the Web area designated by the *\** and *object* parameters. @@ -27,4 +24,13 @@ The command returns **True** if a URL exists and **False** otherwise. More parti #### See also [WA Back URL available](wa-back-url-available.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1027 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-get-current-url.md b/docs/commands-legacy/wa-get-current-url.md index b822e1248cc7d9..48417bda85cb9c 100644 --- a/docs/commands-legacy/wa-get-current-url.md +++ b/docs/commands-legacy/wa-get-current-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Get current URL command returns the URL address of the page displayed in the Web area designated by the *\** and *object* parameters. @@ -37,4 +34,13 @@ The page displayed is the URL "www.apple.com" and the "www.4d.com" page is in th #### See also -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1025 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-get-external-links-filters.md b/docs/commands-legacy/wa-get-external-links-filters.md index a548a924cfca0c..06007d4c1fa88b 100644 --- a/docs/commands-legacy/wa-get-external-links-filters.md +++ b/docs/commands-legacy/wa-get-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA GET EXTERNAL LINKS FILTERS** command returns, in the *filtersArr* and *allowDenyArr* arrays, the external link filters of the Web area designated by the *\** and *object* parameters. If no filter is active, the arrays are returned empty. @@ -28,4 +25,13 @@ The filters are installed by the [WA SET EXTERNAL LINKS FILTERS](wa-set-external #### See also [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1033 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-get-last-filtered-url.md b/docs/commands-legacy/wa-get-last-filtered-url.md index 40f6c48354558f..18fe8b8a1fd809 100644 --- a/docs/commands-legacy/wa-get-last-filtered-url.md +++ b/docs/commands-legacy/wa-get-last-filtered-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA Get last filtered URL** command returns the last URL that was filtered in the Web area designated by the *\** and *object* parameters. @@ -35,4 +32,13 @@ It is advisable to call this command in the context of the On URL Filtering, On [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) [WA GET URL FILTERS](wa-get-url-filters.md) [WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1035 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-get-last-url-error.md b/docs/commands-legacy/wa-get-last-url-error.md index d33509c8acf6ff..0104ee11cf5d7a 100644 --- a/docs/commands-legacy/wa-get-last-url-error.md +++ b/docs/commands-legacy/wa-get-last-url-error.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA GET LAST URL ERROR command recovers several items of information about the last error that occurred in the Web area designated by the *\** and *object* parameters. @@ -37,4 +34,13 @@ It is recommended to call this command within the framework of the On URL Loadin #### See also -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1034 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-get-page-content.md b/docs/commands-legacy/wa-get-page-content.md index 5a61bc819b8c59..41530f1f65f175 100644 --- a/docs/commands-legacy/wa-get-page-content.md +++ b/docs/commands-legacy/wa-get-page-content.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Get page content command returns the HTML code of the current page or the page being displayed in the Web area designated by the *\** and *object* parameters. @@ -26,4 +23,13 @@ This command returns an empty string if the contents of the current page is not #### See also -[WA SET PAGE CONTENT](wa-set-page-content.md) \ No newline at end of file +[WA SET PAGE CONTENT](wa-set-page-content.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1038 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-get-page-title.md b/docs/commands-legacy/wa-get-page-title.md index cfbfb1ad888657..a360eeaec95444 100644 --- a/docs/commands-legacy/wa-get-page-title.md +++ b/docs/commands-legacy/wa-get-page-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Get page title command returns the title of the current page or the page being displayed in the Web area designated by the *\** and *object* parameters. The title corresponds to the HTML "Title" tag. @@ -26,4 +23,13 @@ This command returns an empty string if there is no title available for the curr #### See also -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1036 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-get-preference.md b/docs/commands-legacy/wa-get-preference.md index 49bfab103cbf08..95a436747f48ab 100644 --- a/docs/commands-legacy/wa-get-preference.md +++ b/docs/commands-legacy/wa-get-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA GET PREFERENCE command gets the current value of the preference in the Web area designated by the *\** and *object* parameters. @@ -35,4 +32,13 @@ In the *value* parameter, pass a variable that will receive the current value of #### See also -[WA SET PREFERENCE](wa-set-preference.md) \ No newline at end of file +[WA SET PREFERENCE](wa-set-preference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1042 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-get-url-filters.md b/docs/commands-legacy/wa-get-url-filters.md index bba1f3edd6f361..4837f7f4ccc1df 100644 --- a/docs/commands-legacy/wa-get-url-filters.md +++ b/docs/commands-legacy/wa-get-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA GET URL FILTERS** command returns, in the *filtersArr* and *allowDenyArr* arrays, the filters that are active in the Web area designated by the *\** and *object* parameters. If no filter is active, the arrays are returned empty. @@ -28,4 +25,13 @@ The filters are installed by the [WA SET URL FILTERS](wa-set-url-filters.md) com #### See also [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1031 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-get-url-history.md b/docs/commands-legacy/wa-get-url-history.md index 54cb76d8ca4ae1..bc22b275f43d48 100644 --- a/docs/commands-legacy/wa-get-url-history.md +++ b/docs/commands-legacy/wa-get-url-history.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA GET URL HISTORY command returns one or two arrays containing the URLs visited during the session in the Web area designated by the *\** and *object* parameters. It can be used to build a custom navigation interface. @@ -45,4 +42,13 @@ If it is passed, the *titlesArr* parameter contains the list of window names ass #### See also -[WA Create URL history menu](wa-create-url-history-menu.md) \ No newline at end of file +[WA Create URL history menu](wa-create-url-history-menu.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1048 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-open-back-url.md b/docs/commands-legacy/wa-open-back-url.md index d8151eec269781..d3c56749247790 100644 --- a/docs/commands-legacy/wa-open-back-url.md +++ b/docs/commands-legacy/wa-open-back-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA OPEN BACK URL** command loads the previous URL in the sequence of URLs opened into the Web area designated by the *\** and *object* parameters. @@ -26,4 +23,13 @@ If there is no previous URL, the command does nothing. You can test whether a pr #### See also [WA OPEN FORWARD URL](wa-open-forward-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1021 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-open-forward-url.md b/docs/commands-legacy/wa-open-forward-url.md index 22f558d6e949aa..3363044fdfa5a2 100644 --- a/docs/commands-legacy/wa-open-forward-url.md +++ b/docs/commands-legacy/wa-open-forward-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA OPEN FORWARD URL** command loads the next URL in the sequence of URLs opened into the Web area designated by the *\** and *object* parameters. @@ -26,4 +23,13 @@ If there is no next URL (in other words, if the user has never returned to a pre #### See also [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1022 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-open-url.md b/docs/commands-legacy/wa-open-url.md index ae29aaedf14542..ef290438d694fb 100644 --- a/docs/commands-legacy/wa-open-url.md +++ b/docs/commands-legacy/wa-open-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA OPEN URL** command loads the URL passed in the *url* parameter into the Web area designated by the *\** and *object* parameters. @@ -49,4 +46,13 @@ is the same as: [OPEN URL](open-url.md) [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1020 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-open-web-inspector.md b/docs/commands-legacy/wa-open-web-inspector.md index 5312d60a468be7..995f366f12db4b 100644 --- a/docs/commands-legacy/wa-open-web-inspector.md +++ b/docs/commands-legacy/wa-open-web-inspector.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA OPEN WEB INSPECTOR** command opens a web inspector for the web area designated by the *\** and *object* parameters. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### See also *Programmed management of Web Areas* -[WA Run offscreen area](wa-run-offscreen-area.md) \ No newline at end of file +[WA Run offscreen area](wa-run-offscreen-area.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1736 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-refresh-current-url.md b/docs/commands-legacy/wa-refresh-current-url.md index 233dcc6c3538c3..72e070a78cbc20 100644 --- a/docs/commands-legacy/wa-refresh-current-url.md +++ b/docs/commands-legacy/wa-refresh-current-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA REFRESH CURRENT URL command reloads the current URL displayed in the Web area designated by the *\** and *object* parameters. #### See also -[WA STOP LOADING URL](wa-stop-loading-url.md) \ No newline at end of file +[WA STOP LOADING URL](wa-stop-loading-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1023 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-run-offscreen-area.md b/docs/commands-legacy/wa-run-offscreen-area.md index e6a0c5bdaf7ad8..7ad761e920216d 100644 --- a/docs/commands-legacy/wa-run-offscreen-area.md +++ b/docs/commands-legacy/wa-run-offscreen-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA Run offscreen area** command creates a web area in memory which can be used to automatically load and parse web pages. @@ -98,4 +95,14 @@ The OK system variable is set to 0 if the timeout has been reached or the [CANCE [FORM Event](../commands/form-event.md) *Programmed management of Web Areas* -[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) \ No newline at end of file +[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1727 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/wa-set-external-links-filters.md b/docs/commands-legacy/wa-set-external-links-filters.md index e8908e70944afb..b4521bfead633c 100644 --- a/docs/commands-legacy/wa-set-external-links-filters.md +++ b/docs/commands-legacy/wa-set-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA SET EXTERNAL LINKS FILTERS** command sets up one or more external link filters for the Web area designated by the *\** and *object* parameters. External link filters determine whether a URL associated with the current page via a link must be opened in the Web area or in the default Web browser of the machine. @@ -76,4 +73,13 @@ This example combines the filtering of both sites and external links: #### See also [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1032 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-set-page-content.md b/docs/commands-legacy/wa-set-page-content.md index ed426bb1f06aa8..150a36820dc4e5 100644 --- a/docs/commands-legacy/wa-set-page-content.md +++ b/docs/commands-legacy/wa-set-page-content.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility Note This historical command is no longer really useful. As security is tightened in modern browsers, there are more and more restrictions on modifying page content "on the fly". A more reliable approach is to create a local file (e.g. in the temporary folder) and use [WA OPEN URL](wa-open-url.md) to load it. To clear the content, just call **WA OPEN URL**(myArea;”about:blank”). @@ -47,4 +44,13 @@ Displays "Hello world!" and sets a "file:///" base URL (Mac OS only): #### See also -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1037 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-set-preference.md b/docs/commands-legacy/wa-set-preference.md index 0c9a6118402f45..220009f81c6f27 100644 --- a/docs/commands-legacy/wa-set-preference.md +++ b/docs/commands-legacy/wa-set-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA SET PREFERENCE command sets different preferences for the Web area designated by the *\** and *object* parameters. @@ -51,4 +48,13 @@ To enable URL drops in the 'myarea' Web area: #### See also -[WA GET PREFERENCE](wa-get-preference.md) \ No newline at end of file +[WA GET PREFERENCE](wa-get-preference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1041 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-set-url-filters.md b/docs/commands-legacy/wa-set-url-filters.md index 6f629c5a8270a7..bdc149a9104e04 100644 --- a/docs/commands-legacy/wa-set-url-filters.md +++ b/docs/commands-legacy/wa-set-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA SET URL FILTERS command sets up one or more filters for the Web area designated by the *\** and *object* parameters. @@ -139,4 +136,13 @@ You want to deny access to specific IP addresses: #### See also [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1030 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-stop-loading-url.md b/docs/commands-legacy/wa-stop-loading-url.md index db512a585db4b9..271a89c85b57d0 100644 --- a/docs/commands-legacy/wa-stop-loading-url.md +++ b/docs/commands-legacy/wa-stop-loading-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA STOP LOADING URL command stops loading the resources of the current URL of the Web area designated by the *\** and *object* parameters. #### See also -[WA REFRESH CURRENT URL](wa-refresh-current-url.md) \ No newline at end of file +[WA REFRESH CURRENT URL](wa-refresh-current-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1024 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-zoom-in.md b/docs/commands-legacy/wa-zoom-in.md index 9da77c254d2854..ed92e6444beda0 100644 --- a/docs/commands-legacy/wa-zoom-in.md +++ b/docs/commands-legacy/wa-zoom-in.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA ZOOM IN command increases the size of the contents displayed in the Web area designated by the *\** and *object* parameters. @@ -27,4 +24,13 @@ Under Windows, the scope of this command is global: the configuration is retaine #### See also -[WA ZOOM OUT](wa-zoom-out.md) \ No newline at end of file +[WA ZOOM OUT](wa-zoom-out.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1039 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/wa-zoom-out.md b/docs/commands-legacy/wa-zoom-out.md index c3839348de03dc..eff463faf69280 100644 --- a/docs/commands-legacy/wa-zoom-out.md +++ b/docs/commands-legacy/wa-zoom-out.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA ZOOM OUT command reduces the size of the contents displayed in the Web area designated by the *\** and *object* parameters. @@ -27,4 +24,13 @@ Under Windows, the scope of this command is global: the configuration is retaine #### See also -[WA ZOOM IN](wa-zoom-in.md) \ No newline at end of file +[WA ZOOM IN](wa-zoom-in.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1040 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/web-get-body-part-count.md b/docs/commands-legacy/web-get-body-part-count.md index f04b15d3fd6a59..d21fef972464fa 100644 --- a/docs/commands-legacy/web-get-body-part-count.md +++ b/docs/commands-legacy/web-get-body-part-count.md @@ -23,4 +23,13 @@ Refer to the example for the [WEB GET BODY PART](web-get-body-part.md) command. #### See also -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1211 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-get-body-part.md b/docs/commands-legacy/web-get-body-part.md index d6575913492675..94dbbce877b3ef 100644 --- a/docs/commands-legacy/web-get-body-part.md +++ b/docs/commands-legacy/web-get-body-part.md @@ -91,4 +91,13 @@ Here is the code for GetFile: [WEB Get body part count](web-get-body-part-count.md) [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET VARIABLES](web-get-variables.md) \ No newline at end of file +[WEB GET VARIABLES](web-get-variables.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1212 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-get-current-session-id.md b/docs/commands-legacy/web-get-current-session-id.md index dfede6418dcf43..d6a45ec11d831e 100644 --- a/docs/commands-legacy/web-get-current-session-id.md +++ b/docs/commands-legacy/web-get-current-session-id.md @@ -22,4 +22,13 @@ If this command is called outside of the context of a Web session, it returns an #### See also [WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) -*Web Sessions Management (Legacy)* \ No newline at end of file +*Web Sessions Management (Legacy)* + +#### Properties + +| | | +| --- | --- | +| Command number | 1162 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-get-http-body.md b/docs/commands-legacy/web-get-http-body.md index 6916f61663d958..98b83f916d4941 100644 --- a/docs/commands-legacy/web-get-http-body.md +++ b/docs/commands-legacy/web-get-http-body.md @@ -47,4 +47,13 @@ When the form is submitted to the Web server, the $requestText variable receives #### See also [WEB GET BODY PART](web-get-body-part.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 814 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-get-http-header.md b/docs/commands-legacy/web-get-http-header.md index 08175ac761b753..c1e0f8295a2887 100644 --- a/docs/commands-legacy/web-get-http-header.md +++ b/docs/commands-legacy/web-get-http-header.md @@ -116,4 +116,13 @@ The following method allows getting any HTTP request header field content: #### See also [WEB GET HTTP BODY](web-get-http-body.md) -[WEB SET HTTP HEADER](web-set-http-header.md) \ No newline at end of file +[WEB SET HTTP HEADER](web-set-http-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 697 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-get-option.md b/docs/commands-legacy/web-get-option.md index e489c4560fc340..7f46e1b1e9fac0 100644 --- a/docs/commands-legacy/web-get-option.md +++ b/docs/commands-legacy/web-get-option.md @@ -62,4 +62,13 @@ When you use the Web debug log *selector*, you can receive one of the following #### See also -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1209 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-get-server-info.md b/docs/commands-legacy/web-get-server-info.md index 8caacce4055b91..a48ff41ae39207 100644 --- a/docs/commands-legacy/web-get-server-info.md +++ b/docs/commands-legacy/web-get-server-info.md @@ -129,4 +129,13 @@ After you execute the following code: [License info](../commands/license-info.md) [Process activity](../commands/process-activity.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1531 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-get-statistics.md b/docs/commands-legacy/web-get-statistics.md index aced882b74c87e..ee2727316ece62 100644 --- a/docs/commands-legacy/web-get-statistics.md +++ b/docs/commands-legacy/web-get-statistics.md @@ -60,3 +60,13 @@ In the project method STATS, you write the following code: ``` You can send the "stats.shtm" page using a URL link or using the [WEB SEND FILE](web-send-file.md) command. + + +#### Properties + +| | | +| --- | --- | +| Command number | 658 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-get-variables.md b/docs/commands-legacy/web-get-variables.md index 35eaa2b0eed476..df5eb7b0b44bfd 100644 --- a/docs/commands-legacy/web-get-variables.md +++ b/docs/commands-legacy/web-get-variables.md @@ -63,4 +63,13 @@ The vNAME variable contains ROBERT and the vCITY variable contains DALLAS. #### See also -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 683 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-is-secured-connection.md b/docs/commands-legacy/web-is-secured-connection.md index 35fdf9003d19b7..a2e0014c7de891 100644 --- a/docs/commands-legacy/web-is-secured-connection.md +++ b/docs/commands-legacy/web-is-secured-connection.md @@ -26,4 +26,13 @@ This command allows, for example, denying connections made in a non-secured mode #### See also -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 698 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-is-server-running.md b/docs/commands-legacy/web-is-server-running.md index 8d8995722e46a7..7904a36eb71101 100644 --- a/docs/commands-legacy/web-is-server-running.md +++ b/docs/commands-legacy/web-is-server-running.md @@ -36,3 +36,13 @@ You want to check that the Web server is running:     ... //do appropriate actions  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1313 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-legacy-close-session.md b/docs/commands-legacy/web-legacy-close-session.md index 765e9cf9ec83b6..609e15e12bd5b3 100644 --- a/docs/commands-legacy/web-legacy-close-session.md +++ b/docs/commands-legacy/web-legacy-close-session.md @@ -34,4 +34,13 @@ After this command is executed, if a Web client sends a request using an invalid #### See also [On Web Legacy Close Session database method](on-web-legacy-close-session-database-method.md) -*Web Sessions Management (Legacy)* \ No newline at end of file +*Web Sessions Management (Legacy)* + +#### Properties + +| | | +| --- | --- | +| Command number | 1208 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-legacy-get-session-expiration.md b/docs/commands-legacy/web-legacy-get-session-expiration.md index 254b47b27b7505..a339a542ac76af 100644 --- a/docs/commands-legacy/web-legacy-get-session-expiration.md +++ b/docs/commands-legacy/web-legacy-get-session-expiration.md @@ -37,4 +37,13 @@ The *expDate* parameter receives the expiration date and the *expTime* parameter [WEB Get Current Session ID](web-get-current-session-id.md) *Web Sessions Management (Legacy)* -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1207 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-send-blob.md b/docs/commands-legacy/web-send-blob.md index 069f66e8606816..6a01eac19e46bd 100644 --- a/docs/commands-legacy/web-send-blob.md +++ b/docs/commands-legacy/web-send-blob.md @@ -79,4 +79,13 @@ Refer to the example of the [PICTURE TO BLOB](picture-to-blob.md) routine. #### See also -[WEB SEND FILE](web-send-file.md) \ No newline at end of file +[WEB SEND FILE](web-send-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 654 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-send-file.md b/docs/commands-legacy/web-send-file.md index a8851d2746412d..a4abe214ca2ed1 100644 --- a/docs/commands-legacy/web-send-file.md +++ b/docs/commands-legacy/web-send-file.md @@ -48,4 +48,14 @@ If the file to be sent exists and if the timeout has not run out, OK is set to 1 #### See also -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 619 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/web-send-http-redirect.md b/docs/commands-legacy/web-send-http-redirect.md index 23517fe05ef15d..2d18661c8288ff 100644 --- a/docs/commands-legacy/web-send-http-redirect.md +++ b/docs/commands-legacy/web-send-http-redirect.md @@ -55,3 +55,13 @@ In the [QR SET DESTINATION](qr-set-destination.md), you insert the following cod        ... //Put the request code here  End case ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 659 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-send-raw-data.md b/docs/commands-legacy/web-send-raw-data.md index 9b9945a6456e80..5bdd2c368837fd 100644 --- a/docs/commands-legacy/web-send-raw-data.md +++ b/docs/commands-legacy/web-send-raw-data.md @@ -82,4 +82,13 @@ This example illustrates the use of the chunked option with the **WEB SEND RAW D #### See also [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 815 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-send-text.md b/docs/commands-legacy/web-send-text.md index 4beb0454e972bc..7280fe70ca71e4 100644 --- a/docs/commands-legacy/web-send-text.md +++ b/docs/commands-legacy/web-send-text.md @@ -42,4 +42,13 @@ The following method: #### See also -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 677 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-service-authenticate.md b/docs/commands-legacy/web-service-authenticate.md index 1259491d5b8d0f..7a0ee3c750f328 100644 --- a/docs/commands-legacy/web-service-authenticate.md +++ b/docs/commands-legacy/web-service-authenticate.md @@ -51,4 +51,13 @@ Authentication with a Web Service located behind a proxy: #### See also [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE Get info](web-service-get-info.md) \ No newline at end of file +[WEB SERVICE Get info](web-service-get-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 786 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-service-call.md b/docs/commands-legacy/web-service-call.md index 0ff93f4402f38e..35f08d848c2f56 100644 --- a/docs/commands-legacy/web-service-call.md +++ b/docs/commands-legacy/web-service-call.md @@ -161,4 +161,14 @@ If the request has been correctly routed and the Web Service has accepted it, th #### See also [WEB SERVICE GET RESULT](web-service-get-result.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 778 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/web-service-get-info.md b/docs/commands-legacy/web-service-get-info.md index 889373c7662f17..7c730a18f54fd4 100644 --- a/docs/commands-legacy/web-service-get-info.md +++ b/docs/commands-legacy/web-service-get-info.md @@ -28,3 +28,13 @@ The *infoType* parameter allows you to indicate the type of information that you | Web Service HTTP status code | Integer | 2 | HTTP error code (to be used in case of main error 9912). | An empty string is returned when no information is available, more particularly when the last SOAP request did not generate any errors. + + +#### Properties + +| | | +| --- | --- | +| Command number | 780 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-service-get-result.md b/docs/commands-legacy/web-service-get-result.md index 24ea39e6f0c4d1..986143d38532ee 100644 --- a/docs/commands-legacy/web-service-get-result.md +++ b/docs/commands-legacy/web-service-get-result.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **WEB SERVICE GET RESULT** command retrieves a value sent back by the Web Service as a result of the processing performed. - -**Note:** This command must be used only after the [WEB SERVICE CALL](web-service-call.md) command. +The **WEB SERVICE GET RESULT** command retrieves a value sent back by the Web Service as a result of the processing performed.This command must be used only after the [WEB SERVICE CALL](web-service-call.md) command. The *returnValue* parameter receives the value sent back by the Web Service. Pass a 4D variable in this parameter. This variable is generally $0, corresponding to the value returned by the proxy method. It is, however, possible to use intermediary variables (you must use process variables only). @@ -52,4 +50,13 @@ Imagine that a Web Service returns the current time in any city in the world. Th #### See also [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 779 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-service-set-option.md b/docs/commands-legacy/web-service-set-option.md index 875038cda100ad..2646bc53640e51 100644 --- a/docs/commands-legacy/web-service-set-option.md +++ b/docs/commands-legacy/web-service-set-option.md @@ -60,4 +60,13 @@ Using version 1.2 of the SOAP protocol: #### See also -[WEB SERVICE CALL](web-service-call.md) \ No newline at end of file +[WEB SERVICE CALL](web-service-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 901 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-service-set-parameter.md b/docs/commands-legacy/web-service-set-parameter.md index 3872137d797a56..c70e4e39e1d508 100644 --- a/docs/commands-legacy/web-service-set-parameter.md +++ b/docs/commands-legacy/web-service-set-parameter.md @@ -72,4 +72,13 @@ This example defines two parameters: #### See also [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE GET RESULT](web-service-get-result.md) \ No newline at end of file +[WEB SERVICE GET RESULT](web-service-get-result.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 777 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-set-home-page.md b/docs/commands-legacy/web-set-home-page.md index 8a42ad6f890673..bfb5df6835dbcc 100644 --- a/docs/commands-legacy/web-set-home-page.md +++ b/docs/commands-legacy/web-set-home-page.md @@ -26,3 +26,13 @@ You pass the name of the HTML home page or the page’s HTML access path to the To stop sending *homePage* as home page for the current Web process, execute **WEB SET HOME PAGE** with an empty string ("") passed in *homePage*. **Note:** The default home page of the Web server is specified in the Database Settings dialog box. + + +#### Properties + +| | | +| --- | --- | +| Command number | 639 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-set-http-header.md b/docs/commands-legacy/web-set-http-header.md index 2ad085309e4c3f..1f4d75aae51d60 100644 --- a/docs/commands-legacy/web-set-http-header.md +++ b/docs/commands-legacy/web-set-http-header.md @@ -62,4 +62,13 @@ If you do not specify a state, it will automatically be HTTP/1.0 200 OK. By defa #### See also -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 660 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-set-option.md b/docs/commands-legacy/web-set-option.md index 87ae80c34f4e1a..0c692445ef4c04 100644 --- a/docs/commands-legacy/web-set-option.md +++ b/docs/commands-legacy/web-set-option.md @@ -79,4 +79,13 @@ A log entry looks like this: #### See also [WEB GET OPTION](web-get-option.md) -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 5 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-set-root-folder.md b/docs/commands-legacy/web-set-root-folder.md index c73be49f46b132..5127a73a1b9890 100644 --- a/docs/commands-legacy/web-set-root-folder.md +++ b/docs/commands-legacy/web-set-root-folder.md @@ -36,4 +36,14 @@ If you specify an invalid pathname, an OS File manager error is generated. You c #### See also [Get 4D folder](get-4d-folder.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 634 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands-legacy/web-start-server.md b/docs/commands-legacy/web-start-server.md index 1a3510a1bd5ec9..c0b2b0b090dc82 100644 --- a/docs/commands-legacy/web-start-server.md +++ b/docs/commands-legacy/web-start-server.md @@ -24,4 +24,14 @@ If the Web Server is successfully started, **OK** is set to 1; otherwise **OK** #### See also -[WEB STOP SERVER](web-stop-server.md) \ No newline at end of file +[WEB STOP SERVER](web-stop-server.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 617 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/web-stop-server.md b/docs/commands-legacy/web-stop-server.md index 9af9d432aca55d..3c55494c6fb9c4 100644 --- a/docs/commands-legacy/web-stop-server.md +++ b/docs/commands-legacy/web-stop-server.md @@ -20,4 +20,13 @@ If the Web server has not been started, the command does nothing. #### See also -[WEB START SERVER](web-start-server.md) \ No newline at end of file +[WEB START SERVER](web-start-server.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 618 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/web-validate-digest.md b/docs/commands-legacy/web-validate-digest.md index f38ebb2812c2d0..238f9d74585dfb 100644 --- a/docs/commands-legacy/web-validate-digest.md +++ b/docs/commands-legacy/web-validate-digest.md @@ -55,4 +55,13 @@ Example using *On Web Authentication Database Method* in Digest mode: #### See also [Generate digest](generate-digest.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 946 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/window-kind.md b/docs/commands-legacy/window-kind.md index b18d64612bfbc7..9c4c1c8733c852 100644 --- a/docs/commands-legacy/window-kind.md +++ b/docs/commands-legacy/window-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Window kind** command returns the 4D type of the window whose reference number is passed in *window*. If the window does not exist, **Window kind** returns *0* (zero). @@ -40,4 +37,13 @@ See example for the [WINDOW LIST](window-list.md) command. [GET WINDOW RECT](get-window-rect.md) [Get window title](get-window-title.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 445 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/window-list.md b/docs/commands-legacy/window-list.md index 1a0be5c1c6d7f6..0b82c5bb2602d1 100644 --- a/docs/commands-legacy/window-list.md +++ b/docs/commands-legacy/window-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WINDOW LIST command populates the array *windows* with the window reference numbers of the windows currently open in all running processes (kernel or user processes). Only "visible" windows (i.e. windows that are not hidden) are returned. @@ -52,4 +49,13 @@ The following project method tiles all the current open window, except floating #### See also [Window kind](window-kind.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 442 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/window-process.md b/docs/commands-legacy/window-process.md index ef2722c38a223e..b73e6d89ea7283 100644 --- a/docs/commands-legacy/window-process.md +++ b/docs/commands-legacy/window-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Window process command returns the process number that runs the window whose reference number is passed in *window*. If the window does not exist, 0 (zero) is returned. @@ -25,4 +22,13 @@ If you omit the *window* parameter, Window process returns the process of the cu #### See also -[Current process](current-process.md) \ No newline at end of file +[Current process](current-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 446 | +| Thread safe | ✗ | + + diff --git a/docs/commands-legacy/windows-alt-down.md b/docs/commands-legacy/windows-alt-down.md index 119ae4a9065b3c..382f3e8b7af92a 100644 --- a/docs/commands-legacy/windows-alt-down.md +++ b/docs/commands-legacy/windows-alt-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Windows Alt down** returns TRUE if the Windows Alt key is pressed. - -**Note:** When called on a Macintosh platform, **Windows Alt down** returns TRUE if the Macintosh Option key is pressed. +**Windows Alt down** returns TRUE if the Windows Alt key is pressed.When called on a Macintosh platform, **Windows Alt down** returns TRUE if the Macintosh Option key is pressed. #### Example @@ -30,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 563 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/windows-ctrl-down.md b/docs/commands-legacy/windows-ctrl-down.md index 788d8a2e5a84fa..f4e1f87bc7a14d 100644 --- a/docs/commands-legacy/windows-ctrl-down.md +++ b/docs/commands-legacy/windows-ctrl-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Windows Ctrl down** returns TRUE if the Windows Ctrl key is pressed. - -**Note:** When called on a Macintosh platform, **Windows Ctrl down** returns TRUE if the Macintosh Command key is pressed. +**Windows Ctrl down** returns TRUE if the Windows Ctrl key is pressed.When called on a Macintosh platform, **Windows Ctrl down** returns TRUE if the Macintosh Command key is pressed. #### Example @@ -30,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 562 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/write-picture-file.md b/docs/commands-legacy/write-picture-file.md index e37558a5592562..210500938df8ea 100644 --- a/docs/commands-legacy/write-picture-file.md +++ b/docs/commands-legacy/write-picture-file.md @@ -46,4 +46,14 @@ If the command is executed successfully, the system variable Document contains t [PICTURE TO BLOB](picture-to-blob.md) *Pictures* [READ PICTURE FILE](read-picture-file.md) -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 680 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/docs/commands-legacy/xml-decode.md b/docs/commands-legacy/xml-decode.md index d6fa06042800c3..f3696b92571358 100644 --- a/docs/commands-legacy/xml-decode.md +++ b/docs/commands-legacy/xml-decode.md @@ -71,4 +71,13 @@ Example of XML document: #### See also [BASE64 DECODE](base64-decode.md) -[BASE64 ENCODE](base64-encode.md) \ No newline at end of file +[BASE64 ENCODE](base64-encode.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1091 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/xml-get-error.md b/docs/commands-legacy/xml-get-error.md index 00c975748bc9a4..136da3988275a0 100644 --- a/docs/commands-legacy/xml-get-error.md +++ b/docs/commands-legacy/xml-get-error.md @@ -28,4 +28,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also -[DOM Get XML information](dom-get-xml-information.md) \ No newline at end of file +[DOM Get XML information](dom-get-xml-information.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 732 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/docs/commands-legacy/xml-get-options.md b/docs/commands-legacy/xml-get-options.md index 0b433e541f1ce6..7c85dc3e757a50 100644 --- a/docs/commands-legacy/xml-get-options.md +++ b/docs/commands-legacy/xml-get-options.md @@ -36,4 +36,13 @@ In selector, pass a constant of the "*XML*" theme indicating the option to get. #### See also -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1096 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/xml-set-options.md b/docs/commands-legacy/xml-set-options.md index af643b7bfd754c..d74eb80a502015 100644 --- a/docs/commands-legacy/xml-set-options.md +++ b/docs/commands-legacy/xml-set-options.md @@ -64,4 +64,13 @@ Insertion of an SVG picture: [DOM SET XML DECLARATION](dom-set-xml-declaration.md) [DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[XML GET OPTIONS](xml-get-options.md) \ No newline at end of file +[XML GET OPTIONS](xml-get-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1090 | +| Thread safe | ✓ | + + diff --git a/docs/commands-legacy/year-of.md b/docs/commands-legacy/year-of.md index 6152be5f07e87a..0ffde0b669f870 100644 --- a/docs/commands-legacy/year-of.md +++ b/docs/commands-legacy/year-of.md @@ -37,4 +37,13 @@ See example for the command [Current date](current-date.md). #### See also [Day of](day-of.md) -[Month of](month-of.md) \ No newline at end of file +[Month of](month-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 25 | +| Thread safe | ✓ | + + diff --git a/docs/commands/4d.md b/docs/commands/4d.md index 09522461571f5d..0b710c66f72007 100644 --- a/docs/commands/4d.md +++ b/docs/commands/4d.md @@ -11,4 +11,13 @@ displayed_sidebar: docs | classStore | Object | ← | Class Store containing all built-in 4D classes | -The **4D** keyword is described in the [**Concept page for Classes**](../Concepts/classes.md#4d). \ No newline at end of file +The **4D** keyword is described in the [**Concept page for Classes**](../Concepts/classes.md#4d). + +#### Properties + +| | | +| --- | --- | +| Command number | 1709 | +| Thread safe | ✓ | + + diff --git a/docs/commands/command-index.md b/docs/commands/command-index.md index 8bb281779dceab..51c34176ebb304 100644 --- a/docs/commands/command-index.md +++ b/docs/commands/command-index.md @@ -91,7 +91,7 @@ title: Index [`Cache info`](../commands-legacy/cache-info.md)
[`Call chain`](../commands-legacy/call-chain.md)
-[`CALL FORM`](call-form.md)
+[`CALL FORM`](../commands-legacy/call-form.md)
[`CALL SUBFORM CONTAINER`](../commands-legacy/call-subform-container.md)
[`CALL WORKER`](../commands-legacy/call-worker.md)
[`CANCEL`](../commands-legacy/cancel.md)
@@ -280,7 +280,7 @@ title: Index [`Euro converter`](../commands-legacy/euro-converter.md)
[`EXECUTE FORMULA`](../commands-legacy/execute-formula.md)
[`EXECUTE METHOD`](../commands-legacy/execute-method.md)
-[`EXECUTE METHOD IN SUBFORM`](execute-method-in-subform.md)
+[`EXECUTE METHOD IN SUBFORM`](../commands-legacy/execute-method-in-subform.md)
[`EXECUTE ON CLIENT`](../commands-legacy/execute-on-client.md)
[`Execute on server`](../commands-legacy/execute-on-server.md)
[`Exp`](../commands-legacy/exp.md)
@@ -658,7 +658,7 @@ title: Index [`METHOD GET NAMES`](../commands-legacy/method-get-names.md)
[`METHOD Get path`](../commands-legacy/method-get-path.md)
[`METHOD GET PATHS`](../commands-legacy/method-get-paths.md)
-[`METHOD GET PATHS FORM`](method-get-paths-form.md)
+[`METHOD GET PATHS FORM`](../commands-legacy/method-get-paths-form.md)
[`METHOD OPEN PATH`](../commands-legacy/method-open-path.md)
[`METHOD RESOLVE PATH`](../commands-legacy/method-resolve-path.md)
[`METHOD SET ACCESS MODE`](../commands-legacy/method-set-access-mode.md)
@@ -758,7 +758,7 @@ title: Index [`OBJECT GET SCROLLBAR`](../commands-legacy/object-get-scrollbar.md)
[`OBJECT GET SHORTCUT`](../commands-legacy/object-get-shortcut.md)
[`OBJECT Get style sheet`](../commands-legacy/object-get-style-sheet.md)
-[`OBJECT GET SUBFORM`](object-get-subform.md)
+[`OBJECT GET SUBFORM`](../commands-legacy/object-get-subform.md)
[`OBJECT GET SUBFORM CONTAINER SIZE`](../commands-legacy/object-get-subform-container-size.md)
[`OBJECT Get subform container value`](../commands-legacy/object-get-subform-container-value.md)
[`OBJECT Get text orientation`](../commands-legacy/object-get-text-orientation.md)
@@ -804,7 +804,7 @@ title: Index [`OBJECT SET SCROLLBAR`](../commands-legacy/object-set-scrollbar.md)
[`OBJECT SET SHORTCUT`](../commands-legacy/object-set-shortcut.md)
[`OBJECT SET STYLE SHEET`](../commands-legacy/object-set-style-sheet.md)
-[`OBJECT SET SUBFORM`](object-set-subform.md)
+[`OBJECT SET SUBFORM`](../commands-legacy/object-set-subform.md)
[`OBJECT SET SUBFORM CONTAINER VALUE`](../commands-legacy/object-set-subform-container-value.md)
[`OBJECT SET TEXT ORIENTATION`](../commands-legacy/object-set-text-orientation.md)
[`OBJECT SET THREE STATES CHECKBOX`](../commands-legacy/object-set-three-states-checkbox.md)
diff --git a/docs/commands/compile-project.md b/docs/commands/compile-project.md index d3c2326030570a..a54027af929cef 100644 --- a/docs/commands/compile-project.md +++ b/docs/commands/compile-project.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - -
History |Release|Changes| @@ -191,4 +188,13 @@ var $result:=Compile project($options) #### See also -[BUILD APPLICATION](../commands-legacy/build-application.md) \ No newline at end of file +[BUILD APPLICATION](../commands-legacy/build-application.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1760 | +| Thread safe | ✗ | + + diff --git a/docs/commands/create-entity-selection.md b/docs/commands/create-entity-selection.md index 7f25038fd76e68..4aa66830977722 100644 --- a/docs/commands/create-entity-selection.md +++ b/docs/commands/create-entity-selection.md @@ -50,4 +50,3 @@ $employees:=Create entity selection([Employee]) | --- | --- | | Command number | 1512 | | Thread safe | ✓ | - diff --git a/docs/commands/cs.md b/docs/commands/cs.md index 191c3c47e4cc5f..73b31833bcd4b5 100644 --- a/docs/commands/cs.md +++ b/docs/commands/cs.md @@ -10,3 +10,13 @@ displayed_sidebar: docs The **cs** keyword is described in the [**Concept page for Classes**](../Concepts/classes.md#cs). + + +#### Properties + +| | | +| --- | --- | +| Command number | 1710 | +| Thread safe | ✓ | + + diff --git a/docs/commands/dialog.md b/docs/commands/dialog.md index 38e366fd037314..094969d5881a27 100644 --- a/docs/commands/dialog.md +++ b/docs/commands/dialog.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **DIALOG** command presents the *form* to the user, along with *formData* parameter(s) (optional). @@ -180,3 +177,4 @@ After a call to **DIALOG**, if the dialog is accepted, OK is set to 1; if it is | Command number | 40 | | Thread safe | ✗ | | Modifies variables | OK, error | + diff --git a/docs/commands/ds.md b/docs/commands/ds.md index f9b49c4e2b3330..b4567b6aadab25 100644 --- a/docs/commands/ds.md +++ b/docs/commands/ds.md @@ -67,4 +67,13 @@ $result:=ds.Employee.query("firstName = :1";"S@") #### See also -[Open datastore](open-datastore.md) \ No newline at end of file +[Open datastore](open-datastore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1482 | +| Thread safe | ✓ | + + diff --git a/docs/commands/file.md b/docs/commands/file.md index 42de468d0c7eed..7ca2cba4b68cd6 100644 --- a/docs/commands/file.md +++ b/docs/commands/file.md @@ -84,3 +84,13 @@ If the command is called from a component, pass the optional `*` parameter to ge [Object to path](../commands-legacy/object-to-path.md) [Path to object](../commands-legacy/path-to-object.md) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1566 | +| Thread safe | ✓ | + + diff --git a/docs/commands/folder.md b/docs/commands/folder.md index 0f7ca4d2284ed0..298a1ec1017473 100644 --- a/docs/commands/folder.md +++ b/docs/commands/folder.md @@ -74,3 +74,13 @@ If the command is called from a component, pass the optional `*` parameter to ge [File](file.md) [Object to path](../commands-legacy/object-to-path.md) [Path to object](../commands-legacy/path-to-object.md) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1567 | +| Thread safe | ✓ | + + diff --git a/docs/commands/form-edit.md b/docs/commands/form-edit.md index 9a8169356ab25f..9db5ab11640884 100644 --- a/docs/commands/form-edit.md +++ b/docs/commands/form-edit.md @@ -13,9 +13,6 @@ displayed_sidebar: docs | object | Text | → | Form object name or group name | - -*This command is not thread-safe, it cannot be used in preemptive code.* -
History |Release|Changes| @@ -65,4 +62,13 @@ To open the *ContactPage* project form with "name-input" object selected: #### See also -*Design Object Access Commands* \ No newline at end of file +*Design Object Access Commands* + +#### Properties + +| | | +| --- | --- | +| Command number | 1749 | +| Thread safe | ✗ | + + diff --git a/docs/commands/form-event-code.md b/docs/commands/form-event-code.md index 663392fd424a2f..8bad2f81bb06a0 100644 --- a/docs/commands/form-event-code.md +++ b/docs/commands/form-event-code.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description @@ -351,4 +348,13 @@ As a result, the red rectangle follows the scrolling of the list box: [Get edited text](../commands-legacy/get-edited-text.md) [Keystroke](../commands-legacy/keystroke.md) [POST OUTSIDE CALL](../commands-legacy/post-outside-call.md) -[SET TIMER](../commands-legacy/set-timer.md) \ No newline at end of file +[SET TIMER](../commands-legacy/set-timer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 388 | +| Thread safe | ✗ | + + diff --git a/docs/commands/form-event.md b/docs/commands/form-event.md index b87dd0fef2c487..5ac77a6760d4c6 100644 --- a/docs/commands/form-event.md +++ b/docs/commands/form-event.md @@ -97,4 +97,13 @@ The resulting list box when rows are selected: #### See also [Form Events](../Events/overview.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1606 | +| Thread safe | ✓ | + + diff --git a/docs/commands/form-load.md b/docs/commands/form-load.md index 29357356e4d81b..f68da91dcc37d8 100644 --- a/docs/commands/form-load.md +++ b/docs/commands/form-load.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents. There can only be one current form per process. @@ -161,4 +158,13 @@ You want to print a form containing a list box. During the *on load* event, you [FORM UNLOAD](../commands-legacy/form-unload.md) [LISTBOX GET OBJECTS](../commands-legacy/listbox-get-objects.md) [OBJECT Get type](../commands-legacy/object-get-type.md) -[Print object](../commands-legacy/print-object.md) \ No newline at end of file +[Print object](../commands-legacy/print-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1103 | +| Thread safe | ✗ | + + diff --git a/docs/commands/form.md b/docs/commands/form.md index c4647e6c385da0..40214b701c2587 100644 --- a/docs/commands/form.md +++ b/docs/commands/form.md @@ -11,9 +11,6 @@ displayed_sidebar: docs | Function result | Object | ← | Form data of the current form | - -*This command is not thread-safe, it cannot be used in preemptive code.* -
History |Release|Changes| @@ -108,4 +105,13 @@ If values are edited and the OK button is clicked, the field is updated (the par #### See also -[DIALOG](dialog.md) \ No newline at end of file +[DIALOG](dialog.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1466 | +| Thread safe | ✗ | + + diff --git a/docs/commands/formula-from-string.md b/docs/commands/formula-from-string.md index d220d1f084e190..7fe63e970564d1 100644 --- a/docs/commands/formula-from-string.md +++ b/docs/commands/formula-from-string.md @@ -73,3 +73,13 @@ The following code will create a dialog accepting a formula in text format: [Parse formula](../commands-legacy/parse-formula.md) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1601 | +| Thread safe | ✓ | + + diff --git a/docs/commands/formula.md b/docs/commands/formula.md index c883d14e575691..aae32a78ca42ea 100644 --- a/docs/commands/formula.md +++ b/docs/commands/formula.md @@ -145,3 +145,13 @@ Calling a formula using object notation: [4D Blog - Write your own methods for objects](https://blog.4d.com/write-your-own-methods-for-objects/) [Formula from string](formula-from-string.md) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1597 | +| Thread safe | ✓ | + + diff --git a/docs/commands/imap-new-transporter.md b/docs/commands/imap-new-transporter.md index 4f738432d4ee1c..14b45a0771e204 100644 --- a/docs/commands/imap-new-transporter.md +++ b/docs/commands/imap-new-transporter.md @@ -69,3 +69,13 @@ If(Not($status.success)) End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1723 | +| Thread safe | ✓ | + + diff --git a/docs/commands/license-info.md b/docs/commands/license-info.md index 22c5aae0099057..e3584cf36db306 100644 --- a/docs/commands/license-info.md +++ b/docs/commands/license-info.md @@ -132,4 +132,13 @@ You want to get information on your current 4D Server license: [CHANGE LICENSES](../commands-legacy/change-licenses.md) [Is license available](../commands-legacy/is-license-available.md) -[WEB Get server info](../commands-legacy/web-get-server-info.md) \ No newline at end of file +[WEB Get server info](../commands-legacy/web-get-server-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1489 | +| Thread safe | ✓ | + + diff --git a/docs/commands/mail-convert-from-mime.md b/docs/commands/mail-convert-from-mime.md index bb95d829b11b04..91cb28177a177a 100644 --- a/docs/commands/mail-convert-from-mime.md +++ b/docs/commands/mail-convert-from-mime.md @@ -91,4 +91,13 @@ $status:=$transporter.send($email) | mime | BLOB, Text | → | Email in MIME | -| Function result | Object | ← | Email object | \ No newline at end of file +| Function result | Object | ← | Email object | + +#### Properties + +| | | +| --- | --- | +| Command number | 1681 | +| Thread safe | ✓ | + + diff --git a/docs/commands/mail-convert-to-mime.md b/docs/commands/mail-convert-to-mime.md index 3a0ddfa7b57c0f..8b22f42c39807f 100644 --- a/docs/commands/mail-convert-to-mime.md +++ b/docs/commands/mail-convert-to-mime.md @@ -84,3 +84,13 @@ $mime:=MAIL Convert to MIME($mail) // --E0AE5773D5E95245BBBD80DD0687E218-- ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1604 | +| Thread safe | ✓ | + + diff --git a/docs/commands/mail-new-attachment.md b/docs/commands/mail-new-attachment.md index 56d6137e5cc6ea..fa2da8fa25a9a1 100644 --- a/docs/commands/mail-new-attachment.md +++ b/docs/commands/mail-new-attachment.md @@ -147,3 +147,13 @@ $email.attachments:=New collection(MAIL New attachment($blob;"Annual report.docx $transporter.send($email) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1644 | +| Thread safe | ✓ | + + diff --git a/docs/commands/new-collection.md b/docs/commands/new-collection.md index 67019252df471c..40f847c22a5b74 100644 --- a/docs/commands/new-collection.md +++ b/docs/commands/new-collection.md @@ -80,4 +80,13 @@ You create a new collection and then add a new element: #### See also [New shared collection](new-shared-collection.md) -[Type](../commands-legacy/type.md) \ No newline at end of file +[Type](../commands-legacy/type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1472 | +| Thread safe | ✓ | + + diff --git a/docs/commands/new-shared-collection.md b/docs/commands/new-shared-collection.md index c2449c65b3f536..ed6205c093ffe1 100644 --- a/docs/commands/new-shared-collection.md +++ b/docs/commands/new-shared-collection.md @@ -69,4 +69,13 @@ Unlike standard (not shared) collections, shared collections do not support pict [New collection](new-collection.md) [New shared object](../commands-legacy/new-shared-object.md) -*Shared objects and shared collections* \ No newline at end of file +*Shared objects and shared collections* + +#### Properties + +| | | +| --- | --- | +| Command number | 1527 | +| Thread safe | ✓ | + + diff --git a/docs/commands/new-signal.md b/docs/commands/new-signal.md index 0db75e6a945d60..87b827779a9333 100644 --- a/docs/commands/new-signal.md +++ b/docs/commands/new-signal.md @@ -72,3 +72,13 @@ The ***doSomething*** method could be like: $signal.trigger() // The work is finished ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1641 | +| Thread safe | ✓ | + + diff --git a/docs/commands/open-datastore.md b/docs/commands/open-datastore.md index d30b2cb896cf86..8ace9db6175ecf 100644 --- a/docs/commands/open-datastore.md +++ b/docs/commands/open-datastore.md @@ -149,4 +149,14 @@ In case of error, the command returns **Null**. If the remote datastore cannot b #### See also -[ds](ds.md) \ No newline at end of file +[ds](ds.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1452 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/docs/commands/pop3-new-transporter.md b/docs/commands/pop3-new-transporter.md index 6b2ec9eb211fd5..b7f735360e4b1b 100644 --- a/docs/commands/pop3-new-transporter.md +++ b/docs/commands/pop3-new-transporter.md @@ -65,3 +65,13 @@ The function returns a [**POP3 transporter object**](../API/POP3TransporterClass ALERT("An error occurred receiving the mail: "+$status.statusText) End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1697 | +| Thread safe | ✓ | + + diff --git a/docs/commands/print-form.md b/docs/commands/print-form.md index 47608a6563355f..7e1402c301f2e8 100644 --- a/docs/commands/print-form.md +++ b/docs/commands/print-form.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Print form** simply prints *form* with the current values of fields and variables of *aTable*. It is usually used to print very complex reports that require complete control over the printing process. **Print form** does not do any record processing, break processing or page breaks. These operations are your responsibility. **Print form** prints fields and variables in a fixed size frame only. @@ -183,4 +180,13 @@ The code that calls the dialog then prints its body: [CANCEL](../commands-legacy/cancel.md) [PAGE BREAK](../commands-legacy/page-break.md) [PRINT SETTINGS](../commands-legacy/print-settings.md) -[SET PRINT OPTION](../commands-legacy/set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](../commands-legacy/set-print-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 5 | +| Thread safe | ✗ | + + diff --git a/docs/commands/process-number.md b/docs/commands/process-number.md index 78998366a79708..2001ecd370f64e 100644 --- a/docs/commands/process-number.md +++ b/docs/commands/process-number.md @@ -38,4 +38,13 @@ If the command is executed with the \* parameter from a process on the server ma [GET PROCESS VARIABLE](../commands-legacy/get-process-variable.md) [Process state](../commands-legacy/process-state.md) -[SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 372 | +| Thread safe | ✓ | + + diff --git a/docs/commands/session-storage.md b/docs/commands/session-storage.md index 00440dba2e3a52..642d990b39bc11 100644 --- a/docs/commands/session-storage.md +++ b/docs/commands/session-storage.md @@ -61,4 +61,13 @@ This method modifies the value of a "settings" property stored in the storage ob #### See also [Process activity](process-activity.md) -[Session](../API/SessionClass.md#session) \ No newline at end of file +[Session](../API/SessionClass.md#session) + +#### Properties + +| | | +| --- | --- | +| Command number | 1839 | +| Thread safe | ✗ | + + diff --git a/docs/commands/session.md b/docs/commands/session.md index f199884705fa4b..e3cb25ccbf7d55 100644 --- a/docs/commands/session.md +++ b/docs/commands/session.md @@ -100,4 +100,13 @@ IP:port/4DACTION/action_Session [Session storage](session-storage.md) [Session API](../API/SessionClass.md) -[Web server user sessions](../WebServer/sessions.md) \ No newline at end of file +[Web server user sessions](../WebServer/sessions.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1714 | +| Thread safe | ✓ | + + diff --git a/docs/commands/set-allowed-methods.md b/docs/commands/set-allowed-methods.md index cc3b29de7c3b97..7c0ba49237e228 100644 --- a/docs/commands/set-allowed-methods.md +++ b/docs/commands/set-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET ALLOWED METHODS** command designates the project methods that can be entered via the application. @@ -57,4 +54,13 @@ This example authorizes all methods starting with “formula” and the “Total #### See also [EDIT FORMULA](../commands-legacy/edit-formula.md) -[GET ALLOWED METHODS](../commands-legacy/get-allowed-methods.md) \ No newline at end of file +[GET ALLOWED METHODS](../commands-legacy/get-allowed-methods.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 805 | +| Thread safe | ✗ | + + diff --git a/docs/commands/smtp-new-transporter.md b/docs/commands/smtp-new-transporter.md index 2a14d82fa127a6..16ea0698ec4854 100644 --- a/docs/commands/smtp-new-transporter.md +++ b/docs/commands/smtp-new-transporter.md @@ -84,3 +84,13 @@ The function returns a [**SMTP transporter object**](../API/SMTPTransporterClass ALERT("An error occurred sending the mail: "+$status.message) End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1608 | +| Thread safe | ✓ | + + diff --git a/docs/commands/super.md b/docs/commands/super.md index c940653df04cca..c8e886e26adbe0 100644 --- a/docs/commands/super.md +++ b/docs/commands/super.md @@ -110,4 +110,13 @@ $message:=$square.description() //I have 4 sides which are all equal #### See also -[**Concept page for Classes**](../Concepts/classes.md). \ No newline at end of file +[**Concept page for Classes**](../Concepts/classes.md). + +#### Properties + +| | | +| --- | --- | +| Command number | 1706 | +| Thread safe | ✓ | + + diff --git a/docs/commands/this.md b/docs/commands/this.md index 656c45b3ae464c..514f5035de9efb 100644 --- a/docs/commands/this.md +++ b/docs/commands/this.md @@ -182,4 +182,13 @@ Once the form is executed, the list box is automatically filled with the entity #### See also [Self](../commands-legacy/self.md) -[Super](super.md) \ No newline at end of file +[Super](super.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1470 | +| Thread safe | ✓ | + + diff --git a/docs/commands/use-entity-selection.md b/docs/commands/use-entity-selection.md index 21b889f1f1d222..c66de5ccd5cd9b 100644 --- a/docs/commands/use-entity-selection.md +++ b/docs/commands/use-entity-selection.md @@ -45,4 +45,15 @@ USE ENTITY SELECTION($entitySel) //The current selection of the Employee table i #### See also -[Create entity selection](create-entity-selection.md) \ No newline at end of file +[Create entity selection](create-entity-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1513 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/docs/commands/web-server-list.md b/docs/commands/web-server-list.md index 677c69850b8865..07e96d1f4d2cc4 100644 --- a/docs/commands/web-server-list.md +++ b/docs/commands/web-server-list.md @@ -51,4 +51,13 @@ We want to know how many running web servers are available: #### See also [WEB Server](web-server.md) -[webServer.stop()](../API/WebServerClass.md#stop) \ No newline at end of file +[webServer.stop()](../API/WebServerClass.md#stop) + +#### Properties + +| | | +| --- | --- | +| Command number | 1716 | +| Thread safe | ✓ | + + diff --git a/docs/commands/web-server.md b/docs/commands/web-server.md index 4d475427cda6df..02224ba46b9d94 100644 --- a/docs/commands/web-server.md +++ b/docs/commands/web-server.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - -
History @@ -58,4 +55,13 @@ From your component, you want to know if the Web server of the host database is #### See also [WEB Server list](web-server-list.md) -[webServer.stop()](../API/WebServerClass.md#stop) \ No newline at end of file +[webServer.stop()](../API/WebServerClass.md#stop) + +#### Properties + +| | | +| --- | --- | +| Command number | 1674 | +| Thread safe | ✗ | + + diff --git a/docs/commands/zip-create-archive.md b/docs/commands/zip-create-archive.md index bc1a8419c44d48..0b0e730dcf05c5 100644 --- a/docs/commands/zip-create-archive.md +++ b/docs/commands/zip-create-archive.md @@ -164,4 +164,13 @@ $err:=ZIP Create archive($zip; $destination) [ZipArchive Class](../API/ZipArchiveClass.md) [ZipFile Class](../API/ZipFileClass.md) [ZipFolder Class](../API/ZipFolderClass.md) -[`ZIP Read archive`](zip-read-archive.md) \ No newline at end of file +[`ZIP Read archive`](zip-read-archive.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1640 | +| Thread safe | ✓ | + + diff --git a/docs/commands/zip-read-archive.md b/docs/commands/zip-read-archive.md index fdbc6ed7ac1647..b4cca7bbb94231 100644 --- a/docs/commands/zip-read-archive.md +++ b/docs/commands/zip-read-archive.md @@ -81,4 +81,13 @@ To extract from the root folder: [ZipArchive Class](../API/ZipArchiveClass.md) [ZipFile Class](../API/ZipFileClass.md) [ZipFolder Class](../API/ZipFolderClass.md) -[`ZIP Create archive`](zip-create-archive.md) \ No newline at end of file +[`ZIP Create archive`](zip-create-archive.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1637 | +| Thread safe | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/CollectionClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/CollectionClass.md index 04e1fc353b4025..20303612accbad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/API/CollectionClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/API/CollectionClass.md @@ -5,7 +5,7 @@ title: Collection La clase Collection gestiona variables de tipo [Collection](Concepts/dt_collection.md). -Ejemplo 3 +Una colección es inicializada con los comandos [`New collection`](../commands/new-collection.md) o [`New shared collection`](../commands/new-shared-collection.md). ### Ejemplo @@ -57,7 +57,7 @@ Notas | [](#reduceRight)
| | [](#remove)
| | [](#resize)
| -| Ejemplo 2 | +| [](#reverse)
| | [](#shift)
| | [](#slice)
| | [](#some)
| @@ -81,10 +81,10 @@ Notas -| Parámetros | Tipo | | Descripción | -| ---------- | ------- | :-------------------------: | ----------------------------------------------------------------------------------- | -| index | Integer | -> | Índice del elemento a devolver | -| Result | any | <- | Este ejemplo devuelve las personas contratadas hace más de 90 días: | +| Parámetros | Tipo | | Descripción | +| ---------- | ------- | :-------------------------: | ------------------------------ | +| index | Integer | -> | Índice del elemento a devolver | +| Result | any | <- | El elemento en ese índice | @@ -313,12 +313,12 @@ $c2:=$c.concat(6;7;8) //[1,2,3,4,5,6,7,8] -| Parámetros | Tipo | | Descripción | -| ------------ | ---------- | :-------------------------: | -------------------------------------------------------------- | -| option | Integer | -> | Ejemplo 3 | -| groupWithCol | Collection | -> | Colección compartida que se agrupa con la colección resultante | -| groupWithObj | Object | -> | Objeto compartido que se agrupa con la colección resultante | -| Result | Collection | <- | Colección original ordenada | +| Parámetros | Tipo | | Descripción | +| ------------ | ---------- | :-------------------------: | -------------------------------------------------------------------------------------------------------------------------------------------- | +| option | Integer | -> | `ck resolve pointers`: resolver punteros antes de copiar,
`ck shared`: devolver una colección compartida | +| groupWithCol | Collection | -> | Colección compartida que se agrupa con la colección resultante | +| groupWithObj | Object | -> | Objeto compartido que se agrupa con la colección resultante | +| Result | Collection | <- | Colección original ordenada | @@ -559,7 +559,7 @@ Resumen #### Descripción -Colección original con valores rellenados +Colección original sin elementos eliminados > Esta función no modifica la colección original. @@ -1001,7 +1001,7 @@ La retrollamada recibe los siguientes parámetros: Puede definir los siguientes parámetros: -- Búsquedas con fechas: +- Si se intenta eliminar un elemento de una colección vacía, el método no hace nada (no se genera ningún error). - *$1.stop* (booleano, opcional): **true** para detener la retrollamada del método. El valor devuelto es el último calculado. Por defecto, `.find()` busca en toda la colección. Opcionalmente, se puede pasar en *startFrom* el índice del elemento desde el que iniciar la búsqueda. @@ -1089,7 +1089,7 @@ La retrollamada recibe los siguientes parámetros: Puede definir los siguientes parámetros: -- Búsquedas con fechas: +- Si se intenta eliminar un elemento de una colección vacía, el método no hace nada (no se genera ningún error). - *$1.stop* (boolean, opcional): **true** para detener la retrollamada del método. El valor devuelto es el último calculado. Por defecto, `.findIndex()` busca en toda la colección. Opcionalmente, se puede pasar en *startFrom* el índice del elemento desde el que iniciar la búsqueda. @@ -1604,7 +1604,7 @@ Por defecto, los elementos nulos o vacíos de la colección se devuelven en la c #### Descripción -Objeto compartido que se agrupa con la colección resultante +Diferente de Si *startFrom* < 0, se considera el desplazamiento desde el final de la colección (*startFrom:=startFrom+length*). > Esta función no modifica la colección original. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md index f491240408d5b9..0a21f2e6301b10 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md @@ -320,25 +320,26 @@ Definición PEM de una llave de cifrado a cargar. Si la llave es una llave priva
Historia -| Lanzamiento | Modificaciones | -| ----------- | -------------- | -| 18 R4 | Añadidos | +| Lanzamiento | Modificaciones | +| ----------- | -------------------------- | +| 20 R8 | Support of message as Blob | +| 18 R4 | Añadidos |
-.**sign** (*message* : Text ; *options* : Object) : Text +.**sign** (*message* : Text ; *options* : Object) : Text
.**sign** (*message* : Blob ; *options* : Object) : Text -| Parámetros | Tipo | | Descripción | -| ---------- | ------ | --------------------------- | --------------------------------------------------------------------- | -| message | Text | -> | Cadena mensaje a firmar | -| options | Object | -> | Opciones de firma | -| Result | Text | <- | Firma en representación Base64 o Base64URL, según la opción "encoding | +| Parámetros | Tipo | | Descripción | +| ---------- | ------------ | --------------------------- | --------------------------------------------------------------------- | +| message | Text OR Blob | -> | Message to sign | +| options | Object | -> | Opciones de firma | +| Result | Text | <- | Firma en representación Base64 o Base64URL, según la opción "encoding | -La función `.sign()` firma la representación utf8 de una cadena de *message* utilizando las llaves del objeto `CryptoKey` y las *options* suministradas. Devuelve su firma en formato base64 o base64URL, dependiendo del valor del atributo `options.encoding` que le haya pasado. +La función `.sign()` firma la representación utf8 de una cadena *message* o Blob utilizando las llaves del objeto `CryptoKey` y las *options* suministradas. Devuelve su firma en formato base64 o base64URL, dependiendo del valor del atributo `options.encoding` que le haya pasado. La `CryptoKey` debe contener una llave **privada** válida. @@ -349,11 +350,11 @@ La `CryptoKey` debe contener una llave **privada** válida. | hash | text | Algoritmo Digest a utilizar. Por ejemplo: "SHA256", "SHA384" o "SHA512". Cuando se utiliza para producir un JWT, el tamaño del hash debe coincidir con el tamaño del algoritmo PS@, ES@, RS@ o PS@ | | encodingEncrypted | text | Codificación utilizada para convertir el mensaje binario encriptado en la cadena de resultados. Puede ser "Base64", o "Base64URL". Por defecto es "Base64". | | pss | boolean | Utilice el Probabilistic Signature Scheme (PSS). Se ignora si la llave no es una llave RSA. Pase `true` al producir un JWT para el algoritmo PS@ | -| encoding | text | Representation of provided signature. Possible values are "Base64" or "Base64URL". Por defecto es "Base64". | +| encoding | text | Representation to be used for result signature. Possible values are "Base64" or "Base64URL". Por defecto es "Base64". | #### *Resultado* -La representación utf8 de la cadena *message*. +La representación utf8 de *message*. @@ -403,22 +404,23 @@ Contiene el nombre del tipo de llave - "RSA"
Historia -| Lanzamiento | Modificaciones | -| ----------- | -------------- | -| 18 R4 | Añadidos | +| Lanzamiento | Modificaciones | +| ----------- | -------------------------- | +| 20 R8 | Support of message as Blob | +| 18 R4 | Añadidos |
-**.verify**( *message* : Text ; *signature* : Text ; *options* : Object) : Object +**.verify**( *message* : Text ; *signature* : Text ; *options* : Object) : Object
*.verify**( *message* : Blob ; *signature* : Text ; *options* : Object) : Object -| Parámetros | Tipo | | Descripción | -| ---------- | ------ | --------------------------- | --------------------------------------------------------------------------------------------- | -| message | Text | -> | Cadena mensaje utilizada para generar la firma | -| signature | Text | -> | Firma a verificar, en representación Base64 o Base64URL, según el valor de `options.encoding` | -| options | Object | -> | Opciones de firma | -| Result | Object | <- | Estado de la verificación | +| Parámetros | Tipo | | Descripción | +| ---------- | ------------ | --------------------------- | --------------------------------------------------------------------------------------------- | +| message | Text OR Blob | -> | Message that was used to produce the signature | +| signature | Text | -> | Firma a verificar, en representación Base64 o Base64URL, según el valor de `options.encoding` | +| options | Object | -> | Opciones de firma | +| Result | Object | <- | Estado de la verificación | diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/DataClassClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/DataClassClass.md index f0186ffddbca7c..3b5ba2b5f78bba 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/API/DataClassClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/API/DataClassClass.md @@ -943,7 +943,7 @@ Las fórmulas en las consultas pueden recibir parámetros a través de $1. Este | Incluído en | IN | Devuelve los datos iguales a al menos uno de los valores de una colección o de un conjunto de valores, admite el comodín (@) | | Contiene palabra clave | % | Las palabras claves pueden utilizarse en atributos de tipo texto o imagen | -- Puede ser un **marcador de posición** (ver **Uso de marcadores de posición** más adelante) o cualquier expresión que coincida con la propiedad de tipo de datos. **value**: el valor a comparar con el valor actual de la propiedad de cada entidad en la selección de entidades. Note that, in case of type mismatch with scalar types (text, date, number...), 4D will try to convert the **value** type to the attribute data type whenever possible, for an easier handling of values coming from the Internet. For example, if the string "v20" is entered as **value** to compare with an integer attribute, it will be converted to 20. +- Puede ser un **marcador de posición** (ver **Uso de marcadores de posición** más adelante) o cualquier expresión que coincida con la propiedad de tipo de datos. **value**: el valor a comparar con el valor actual de la propiedad de cada entidad en la selección de entidades. Tenga en cuenta que, en caso de no coincidencia de tipo con tipos escalares (texto, fecha, número...), 4D intentará convertir el tipo **value** al tipo de datos del atributo siempre que sea posible, para un manejo más fácil de los valores procedentes de Internet. Por ejemplo, si se introduce la cadena "v20" como **value** para comparar con un atributo entero, se convertirá a 20. For example, if the string "v20" is entered as value to compare with an integer attribute, it will be converted to 20. - La constante de tipo **texto** puede pasarse con o sin comillas simples (ver **Uso de comillas** más abajo). Para consultar una cadena dentro de otra cadena (una consulta de tipo "contiene"), utilice el símbolo de comodín (@) en el valor para aislar la cadena a buscar como se muestra en este ejemplo: "@Smith@". Las siguientes palabras claves están prohibidas para las constantes de texto: true, false. - Valores constantes de tipo **booleano**: **true** o **false** (Sensible a las mayúsculas y minúsculas). @@ -1038,6 +1038,20 @@ No obtendrá el resultado esperado porque el valor null será evaluado por 4D co $vSingles:=ds.Person.query("spouse = null") // Sintaxis correcta ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### No igual a en colecciones Al buscar dentro de atributos de objetos de dataclass que contengan las colecciones, el comparador "not equal to *value*" (`#` o `!=`) encontrará los elementos en los que TODAS las propiedades sean diferentes de *value* (y no aquellos en los que AL MENOS una propiedad sea diferente de *value*, que es como funcionan otros comparadores). Básicamente, equivale a buscar "Not(buscar elementos de la colección cuya propiedad sea igual a *value*"). Por ejemplo, con las siguientes entidades: diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/EntityClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/EntityClass.md index 477fed7ba31d28..da850c6e40aa1b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/API/EntityClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/API/EntityClass.md @@ -98,11 +98,11 @@ El tipo de valor del atributo depende del tipo [kind](DataClassClass.md#attribut #### Descripción -The `.clone()` function creates in memory a new entity referencing the same record as the original entity. +La función `.clone()` crea en la memoria una nueva entidad que hace referencia al mismo registro que la entidad original. This function allows you to update entities separately. Note however that, for performance reasons, the new entity shares the same reference of object attributes as the cloned entity. -> Keep in mind that any modifications done to entities will be saved in the referenced record only when the [`.save()`](#save) function is executed. +> Tenga en cuenta que toda modificación realizada a las entidades se guardará en el registro referenciado sólo cuando se ejecute la función [`.save()`](#save). Esta función sólo puede utilizarse con entidades ya guardadas en la base de datos. No se puede llamar a una entidad recién creada (para la que [`isNew()`](#isnew) devuelve **True**). diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md index 690ebec2a9718e..490428a3f8a4e1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md @@ -113,7 +113,7 @@ A 4D.IncomingMessage object is a [non-sharable](../Concepts/shared.md) object. #### Descripción -The `.getBlob()` function returns the body of the request as a Blob. +La función `.getBlob()` devuelve el cuerpo de la petición como un Blob. If the body has not been given as a binary content, the function tries to convert the value but it can give unexpected results. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md index aa48e9e13058c3..3e10e309c268cd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md @@ -61,7 +61,7 @@ A 4D.OutgoingMessage object is a [non-sharable](../Concepts/shared.md) object. #### Descripción -The `.body` property contains the outgoing message body. The following data types are supported in the `.body` property: +La propiedad `.body` contiene el cuerpo del mensaje saliente. The following data types are supported in the `.body` property: - text - blob @@ -70,7 +70,7 @@ The `.body` property contains the La propiedad `.body` es de lectura-escritura. -You can also set the `.body` property using the [`setBody()`](#setbody) function, in which case the `content-type` header is automatically set. +También puede definir la propiedad `.body` utilizando la función [`setBody()`](#setbody), en cuyo caso el encabezado `content-type` se define automáticamente. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/SignalClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/SignalClass.md index ab6418eaee23f2..573fca674ee900 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/API/SignalClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/API/SignalClass.md @@ -22,7 +22,7 @@ Lanzamiento Mientras espera una señal, el proceso que llama no utiliza ninguna Tenga en cuenta que para evitar situaciones de bloqueo, el método `.wait()` también puede regresar después de que se haya alcanzado un tiempo de espera definido. -Los objetos señal se crean con el comando [`New signal`](../commands/new-signal.md). +Los objetos Signal se crean con el comando [`New signal`](../commands/new-signal.md). ### Trabajar con señales @@ -126,7 +126,7 @@ Esta propiedad está en **lectura-escritura**. #### Descripción -Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Cuando se crea la señal, `.signaled` es **False**. La propiedad `.signaled` se convierte en true cuando cualquier worker/proceso llama al método `.trigger()`. +Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Cuando se crea la señal, `.signaled` es **False**. La propiedad `.signaled` se convierte en true cuando cualquier worker/proceso llama al método `.trigger()`. Esta propiedad es de **solo lectura**. @@ -158,7 +158,7 @@ Esta propiedad es de **solo lectura**. La función `.trigger( )` define la propiedad `signaled` del objeto signal como **true** y despierta a todos los workers o procesos que esperan esta signal. -Si la señal ya está en el estado de señalización (es decir, la propiedad signaled\\\\\\` ya es **true**), la función no hace nada. +Si la señal ya está en el estado de señalización (es decir, la propiedad signaled\\\\\\\\\` ya es **true**), la función no hace nada. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Debugging/basics.md b/i18n/es/docusaurus-plugin-content-docs/current/Debugging/basics.md index 88734464314007..e1a3eef95e8546 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/Debugging/basics.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/Debugging/basics.md @@ -70,27 +70,31 @@ La ventana de error de sintaxis propone varias opciones: - **Continuar**: la ejecución continua. La línea con el error puede ser parcialmente ejecutada, dependiendo de donde se encuentre el error. Continúe con precaución: el error puede impedir que el resto de su método se ejecute correctamente. Recomendamos hacer clic en **Continuar** sólo si el error está en una llamada trivial (como `SET WINDOW TITLE`) que no impide ejecutar y probar el resto de su código. -> Consejo: para ignorar un error que ocurre repetidamente (por ejemplo, en bucles), puede convertir el botón **Continuar** en un botón **Ignorar**. Mantenga presionada la tecla **Alt** (Windows) u **Opción** (macOS) y haga clic en el botón **Continuar** la primera vez que aparece. La etiqueta del botón cambia a **Ignorar** si el diálogo es llamado de nuevo por el mismo error. +:::tip -- **Abandonar**: detiene la ejecución del método y devuelve al estado antes del inicio de la ejecución del método: +To ignore an error that occurs repeatedly (for example, in loops), you can turn the **Continue** button into an **Ignore** button. Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. + +::: + +- **Abort**: Stops method execution and returns to the state before the method started executing: - Si un método formulario o método objeto se está ejecutando en respuesta a un evento, se detiene y se vuelve al formulario. - Si el método se está ejecutando desde dentro del entorno de la aplicación, volverá a ese entorno. -- **Copiar**: copia la información de depuración en el portapapeles. La información describe el entorno interno del error (número, componente interno, etc.). Está formateado como texto tabulado. +- **Copy**: Copies the debugging information into the clipboard. La información describe el entorno interno del error (número, componente interno, etc.). Está formateado como texto tabulado. -- **Guardar...**: guarda el contenido de la ventana de error de sintaxis y la cadena de llamadas en un archivo `.txt`. +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## Debugger -Un error común de los principiantes al tratar con la detección de errores es hacer clic en **Abandonar** en la ventana de error de sintaxis, volver al editor de código, y tratar de averiguar lo que está pasando mirando el código. ¡No lo haga! Ahorrará mucho tiempo y energía utilizando siempre el **Depurador**. +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. ¡No lo haga! You will save plenty of time and energy by always using the [**Debugger**](debugger.md). El depurador le permite pasar lentamente por los métodos. Muestra toda la información que necesita para entender por qué ha ocurrido un error. Una vez que tiene esta información, usted sabe cómo arreglar el error. -Otra razón para usar el Depurador es el desarrollo del código. A veces se puede escribir un algoritmo que es más complejo de lo habitual. A pesar de todos los sentimientos de cumplimiento, no puede estar totalmente seguro de que su codificación sea 100% correcta. En lugar de ejecutarlo "ciego", puede utilizar el comando `TRACE` al comienzo de su código, luego ejecutarlo paso a paso para mantener un ojo en lo que sucede. +Otra razón para usar el Depurador es el desarrollo del código. A veces se puede escribir un algoritmo que es más complejo de lo habitual. A pesar de todos los sentimientos de cumplimiento, no puede estar totalmente seguro de que su codificación sea 100% correcta. Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## Rupturas -En el proceso de depuración, puede que necesite saltar el seguimiento de algunas partes del código hasta una línea determinada. O, puede querer rastrear el código cuando una expresión dada tiene un determinado valor (e.. "$myVar > 1000"), o cada vez que se llama un comando 4D específico. +En el proceso de depuración, puede que necesite saltar el seguimiento de algunas partes del código hasta una línea determinada. Or, you may want to trace the code when a given expression has a certain value (e.g. `$myVar > 1000`), or every time a specific 4D command is called. -Estas necesidades están cubiertas por **puntos de interrupción** y las funciones de **captura de comando**. Pueden configurarse desde el editor de código, el depurador o el explorador de ejecución. +These needs are covered by **breakpoints** and **command catching** features. Pueden configurarse desde el editor de código, el depurador o el explorador de ejecución. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md b/i18n/es/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md index ef950297c74f85..129cb084ed2b25 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md @@ -15,7 +15,7 @@ Los puntos de interrupción de comandos le permiten comenzar a rastrear la ejecu Para crear un punto de interrupción, haga clic en el margen izquierdo de la ventana de evaluación del código fuente en el depurador o en el editor de código. -En el siguiente ejemplo, se ha definido un punto de ruptura (la viñeta roja), en el depurador, en la línea `If ($in.dataClass#Null)`: +In the following example, a break point (the red bullet) has been set, in the debugger, on the line `If (Value type(request.reponse.headers...`: ![break-point](../assets/en/Debugging/break.png) diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugger.md b/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugger.md index 6ea80858e46b29..7e5137ebba60bc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugger.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugger.md @@ -18,7 +18,7 @@ If you are used to coding with **VS Code**, you can also use this editor to debu Hay varias formas de conseguir que el depurador se muestre: - Haciendo clic en el botón **Trace** en [la ventana de errores de sintaxis](basics.md#syntax-error-window) -- Utilizando el comando [`TRACE`](https://doc.4d.com/4dv19/help/command/en/page157.html) +- Using the [`TRACE`](../commands-legacy/trace.md) command - Haciendo clic en el botón **Debug** en la ventana de ejecución del método o seleccionando **Run and debug...** en el Code Editor - Utilizando **Alt+Shift+Clic derecho** (Windows) o **Ctrl+Option+Cmd+Clic** (macOS) mientras se ejecuta un método, seleccionando entonces el proceso a rastrear en el menú emergente: @@ -29,8 +29,8 @@ Hay varias formas de conseguir que el depurador se muestre: Cuando se llama, la ventana del depurador ofrece el nombre del método o de la función de clase que se está rastreando en ese momento, y la acción que provoca la aparición inicial de la ventana del depurador. Por ejemplo, en la ventana del depurador arriba: -- _Clients_BuildLogo_ es el método en que se hace seguimiento -- La ventana del depurador apareció porque detectó una llamada al comando `C_PICTURE` y este comando fue uno de los a identificar +- _drop_ is the method being traced +- The debugger window appeared because of a break point. La visualización de una nueva ventana del depurador utiliza la misma configuración que la última ventana visualizada en la misma sesión. Si ejecuta varios procesos usuario, puede rastrearlos independientemente y tener una ventana de depuración abierta para cada proceso. @@ -52,39 +52,43 @@ La barra de herramientas del depurador incluye varios botones, asociados a acces ![execution-control-toolbar-buttons](../assets/en/Debugging/executionToolbarButtons.png) -> Los accesos directos predeterminados pueden personalizarse en la página Atajos del diálogo Preferencias. +:::note + +Default shortcuts can be customized in the [Shortcuts Page](../Preferences/shortcuts.md) of the Preferences dialog box. + +::: #### Fin del rastreo Detener el modo Seguimiento y reanudar el curso normal de la ejecución del método. -> **Shift** + **F5** o **Shift** + clic en el botón **No Trace** retoma la ejecución. También desactiva todas las llamadas a TRACE posteriores en el proceso actual. +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. También desactiva todas las llamadas a TRACE posteriores en el proceso actual. #### Pasar por encima Ejecuta la línea de método actual, indicada por el contador del programa (la flecha amarilla). El depurador pasa a la siguiente línea. -El botón Ejecutar no entra en las subrutinas y las funciones, sino que se queda al nivel del método que está rastreando en ese momento. Si desea también rastrear las llamadas a las subrutinas y a las funciones, utilice el botón **Paso a paso detallado**. +El botón Ejecutar no entra en las subrutinas y las funciones, sino que se queda al nivel del método que está rastreando en ese momento. If you want to also trace subroutines and functions calls, use the **Step Into** button. -En la depuración remota, si el método se ejecuta en el servidor, se llama al método padre después de que se ejecute la última línea del método hijo. Si el método padre se ejecuta en el lado remoto, el botón **Step Over** tiene el mismo efecto que el botón **No Trace**. +En la depuración remota, si el método se ejecuta en el servidor, se llama al método padre después de que se ejecute la última línea del método hijo. If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### Paso a paso detallado Cuando se ejecuta una línea que llama a otro método (subrutina o función), haga clic en este botón para mostrar el otro método y recorrerlo paso a paso. -El nuevo método se convierte en el método actual (superior) en la [Ventana cadena de llamada ](#call-chain-pane) de la ventana del depurador. +El nuevo método se convierte en el método actual (superior) en la [Ventana cadena de llamada](#call-chain-pane) de la ventana del depurador. -Cuando se ejecuta una línea que no llama a otro método, este botón tiene el mismo efecto que el botón **Ejectuar paso a paso**. +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. -#### Ejecutar y salir +#### Step Out -Si está rastreando subrutinas y funciones, al hacer clic en este botón podrá ejecutar todo el método que se está rastreando en ese momento y retroceder hasta el método llamante. La ventana del depurador vuelve al método anterior de la cadena de llamada. Si el método actual es el último método de la cadena de llamada, se cierra la ventana del depurador. +If you are tracing subroutines and functions, clicking on this button allows you to execute the entire method currently being traced and to step back to the caller method. The Debugger window is brought back to the previous method in the call chain. If the current method is the last method in the call chain, the Debugger window is closed. -En la depuración remota, al ejecutarse la última línea del método, si el método se ejecuta en el servidor, se llama al método padre. Si el método padre se ejecuta en el lado remoto, el botón actúa de la misma manera que el botón Reanudar. +In remote debugging, on execution of the last line of the method, if the method is executed on the server, the parent method is called. If the parent method is executed on the remote side, the button acts in the same manner as the No Trace button. -#### Paso a paso del nuevo proceso +#### Step Into Process -Al ejecutar una línea que crea un nuevo proceso (es decir, al llamar al comando New process), este botón abre una nueva ventana del depurador que permite rastrear el método de gestión del proceso recién creado. En la ejecución de una línea que no crea un nuevo proceso, este botón actúa de la misma manera que el botón Ejecutar paso a paso. +On execution of a line that creates a new process (i.e., calling the New process command), this button opens a new Debugger window that allows you to trace the process method of the newly created process. On execution of a line that does not creates a new process, this button acts in the same manner as the Step Over button. #### Abortar @@ -95,9 +99,9 @@ Detiene la ejecución del método y vuelve al estado anterior al inicio de la ej #### Detener y editar -El método que se está ejecutando cuando se presiona el botón **Abortar y Editar** se abre en el Editor de Código. +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Consejo**: utilice este botón cuando sepa qué cambios son necesarios en su código, y el momento en que deben ser efectuados para proseguir con las pruebas de sus métodos. Una vez haya terminado con los cambios, vuelva a ejecutar el método. +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. Una vez haya terminado con los cambios, vuelva a ejecutar el método. #### Acción de edición @@ -105,18 +109,20 @@ El método que se está ejecutando en el momento de presionar el botón Editar s Si utiliza este botón para modificar un método, las modificaciones sólo serán efectivas la próxima vez que se ejecute. -> **Consejo:** utilice este botón cuando sepa qué cambios son necesarios en su código y cuando no interfieran con el resto del código a ejecutar o rastrear. +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. -#### Parámetros Guardar +## Auto-saving -Guarda la configuración actual de la ventana del depurador y la convierte en la configuración por defecto. Esto incluye: +The current state of the debugger window is automatically saved in the project. Esto incluye: -- el tamaño y la posición de la ventana -- la posición de las líneas de división y el contenido del área que evalúa las expresiones +- the size and position of the window, +- the position of the division lines, +- el [modo de visualización](#display-mode), +- the expressions currently displayed in the custom watch pane expressions. By default, expressions are saved with the current method or function. Puede [**anclar una expresión**](#pin-an-expression) para mantenerla mostrada en todos los contextos. -Estos parámetros se almacenan en el proyecto. +The **Default window configuration** button restores the default position and size of the current window (including the division lines and the window itself). -Esta acción no está disponible en el modo de depuración remota (ver [Depuración desde máquinas remotas](./debugging-remote)). +![factory-settings-button](../assets/en/Debugging/debugger-factory.png) ## Ventana de expresión @@ -134,9 +140,9 @@ En cualquier momento, puede arrastrar y soltar temas, sublistas de temas (si las ### Lista de expresiones -#### Objetos línea +#### Line Expressions -Este tema le permite seguir los valores de los objetos o expresiones: +This theme lets you keep track of the values of expressions: - utilizado en la línea de código a ejecutar (la marcada con el contador de programa-la flecha amarilla en el [Panel de Código Fuente](#source-code-pane)), - utilizado en la línea de código anterior @@ -294,8 +300,9 @@ También puede utilizar el comando [Call chain](https://doc.4d.com/4dv19/help/co El panel de control personalizado es útil para evaluar expresiones. Es similar al [panel de control](#watch-pane), excepto que aquí usted decide qué expresiones se muestran. Todo tipo de expresión puede ser evaluada: -- campo - variable +- object and object property +- campo - pointer - cálculo - Comando 4D @@ -304,39 +311,70 @@ El panel de control personalizado es útil para evaluar expresiones. Es similar ![custom-Watch-pane](../assets/en/Debugging/custom-watch-pane.png) -Puede evaluar toda expresión que pueda mostrarse en forma de texto. Esto no cubre los campos o variables Imagen y BLOB. Para mostrar el contenido de los BLOB, puede utilizar comandos BLOB, como [BLOB to text](https://doc.4d.com/4dv19/help/command/en/page555.html). +Puede evaluar toda expresión que pueda mostrarse en forma de texto. Esto no cubre los campos o variables Imagen y BLOB. To display BLOB contents, you can use BLOB commands, such as [BLOB to text](../commands-legacy/blob-to-text.md). + +### Display mode + +El modo de visualización que se utilizará para todas las ventanas del depurador se selecciona mediante la opción **Visualización** del [menú contextual](#contextual-menu) del panel de vigilancia personalizado. + +![custom-Watch-pane](../assets/en/Debugging/custom-watch-pane-display-menu.png) + +Las siguientes opciones están disponibles: + +- **Local variables**: Displays and evaluates automatically local variables as soon as they are initialized in the running source code. +- **Line Expressions**: Displays and evaluates automatically the same contents as the [Line Expressions](#line-expressions) item of the Expression List. +- **Expressions**: Only displays custom expressions that you have entered manually. Custom expressions have a specific blue icon ![custom-expression-icon](../assets/en/Debugging/custom-expression-icon.png). + +:::note + +Whatever the display mode, you can add custom expressions at any moment. + +::: ### Gestión de expresiones +You can enter any expression to evaluate. A custom expression is only displayed in the current debugger window, except if you [pin it](#pin-an-expression). + Hay varias formas de añadir expresiones a la lista: - Arrastrar y soltar un objeto o expresión desde el Panel de Vigilancia o el Panel de Cadena de Llamadas - Seleccione una expresión en el [panel código fuente](#source-code-pane) y presione **ctrl+D** (Windows) o **cmd+D** (macOS) - Haga doble clic en algún lugar del espacio vacío del panel de control personalizado (añade una expresión con un nombre de marcador de posición que puede editar) - -Puede introducir cualquier fórmula que devuelva un resultado. +- Select a [display option](#display-mode) that automatically inserts expressions. +- Select **New Expression...** in the Custom Watch pane's [contextual menu](#contextual-menu) to add an expression using the **Formula Editor**. Puede introducir cualquier fórmula que devuelva un resultado. Para editar una expresión, haga clic en ella para seleccionarla y, a continuación, vuelva a hacer clic o presione **Intro** en su teclado. -Para eliminar una expresión, haga clic en ella para seleccionarla y, a continuación, presione **Retroceso** o **Borrar** en su teclado. +To delete a custom expression, click on it to select it, then press **Backspace** or **Delete** on your keyboard, or click on the **x** icon. -> **Atención:** tenga cuidado cuando evalúe una expresión 4D que modifique el valor de una de las Variables del Sistema (por ejemplo, la variable OK) porque la ejecución del resto del método puede verse alterada. +:::warning -### Menú contextual de la ventana de expresión +Be careful when you evaluate a 4D expression modifying the value of one of the System Variables (for instance, the OK variable) because the execution of the rest of the method may be altered. -El menú contextual del panel de control personalizado permite acceder al editor de fórmulas de 4D y a otras opciones: +::: -![custom-watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-context-menu.png) +### Pinning an expression + +You can click on the pushpin icon to pin an expression: + +![pinning-expression](../assets/en/Debugging/pin-expression.png) -**Nueva expresión**: inserta una nueva expresión y muestra el editor de fórmulas de 4D. +The expression will then be displayed in all debugger windows. -![custom-Watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-formula-editor.png) +### Menú contextual de la ventana de expresión + +The Custom Watch Pane’s menu is available on a contextual click or using the ![menu](../assets/en/Debugging/custom-watch-pane-menu.png) icon: + +![custom-watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-context-menu.png) -Para más información sobre el Editor de fórmulas, consulte el [Manual de referencia de Diseño 4D](https://doc.4d.com/4Dv19/4D/19/4D-Design-Reference.100-5416591.en.html). +- **Display**: Selects the [display mode](#display-mode) to be used for all debugger windows. +- **New Expression...**: Inserts a new expression and displays the 4D Formula Editor. + ![custom-Watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-formula-editor.png) + For more information on the Formula Editor, see the [4D Design Reference manual](https://doc.4d.com/4Dv20/4D/20.2/Description-of-formula-editor.300-6750169.en.html). -- **Insertar comando**: acceso directo para insertar un comando 4D como una nueva expresión. -- **Borrar todo**: elimina todas las expresiones del panel de control personalizado. -- **Expresiones estándar**: copia la lista de expresiones del panel de control. +* **Insert Command...**: Displays a menu allowing to insert a 4D command as a new expression. +* **Borrar todo**: elimina todas las expresiones del panel de control personalizado. +* **Standard Expressions**: Copies the Watch Pane's list of expressions as custom expressions. > Esta opción no está disponible en [modo de depuración remota](debugging-remote.md). @@ -353,6 +391,12 @@ El panel de código fuente muestra el código fuente del método o de la funció Esta área también le permite añadir o eliminar [**puntos de ruptura**](breakpoints.md). +### Prototype + +The prototype of the currently executed method or function in the Call chain is displayed on the top of the pane: + +![prototype](../assets/en/Debugging/prototype.png) + ### Tips Al pasar el puntero sobre una expresión, para mostrr un mensaje de ayuda que indica: @@ -410,12 +454,9 @@ El menú contextual de la Ventana de evaluación de los métodos da acceso a var ![source-code-pane-context-window](../assets/en/Debugging/sourceCodePaneContext.png) -- **Ir a definición**: va al lugar donde se define el objeto seleccionado. Este comando está disponible para: - - _Métodos proyecto:_ muestra el contenido de los métodos en una nueva ventana del Editor de Código - - _Campos_: muestra las propiedades de los campos en el inspector de la ventana de estructura - - _Tablas:_ muestra las propiedades de la tabla en el inspector de la ventana de estructura - - _Formularios:_ muestra el formulario en el editor de formularios - - _Variables_ (locales, proceso, interproceso o parámetro $n): muestra la línea en el método actual o entre los métodos del compilador donde se declara la variable +- **Show documentation**: Opens the documentation for the target element. Este comando está disponible para: + - _Project methods_, _user classes_: Selects the method in the Explorer and switches to the documentation tab + - _4D commands, functions, class names:_ Displays the online documentation. - **Buscar Referencias** (también disponible en el Editor de Código): busca todos los objetos del proyecto (métodos y formularios) en los que se hace referencia al elemento actual del método. El elemento actual es el seleccionado o aquel en el que se encuentra el cursor. Este puede ser el nombre de un campo, variable, comando, cadena, etc. Los resultados de la búsqueda se muestran en una nueva ventana de resultados estándar. - **Copiar**: copia estándar de la expresión seleccionada al portapapeles. - **Copiar en la ventana de expresión**: copiar la expresión seleccionada en la Ventana de evaluación. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md b/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md index 0e2292591693e8..20a638d5b330f3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md @@ -20,14 +20,12 @@ Sólo un depurador puede depurar una aplicación 4D Server en un momento dado. S - el depurador local de 4D Server (por defecto) - si el servidor no está ejecutando sin interfaz. - el depurador de un cliente 4D remoto - si la sesión remota tiene acceso al modo Diseño. - el [depurador Qodly](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server) en el servidor 4D - si el servidor permite el acceso a Qodly Studio. -- the VS Code debugger, provided you installed the [4D-Debugger](https://github.com/4d/4D-Debugger-VSCode) extension. - -::: +- the **VS Code** debugger, provided you installed the [4D-Debugger](https://github.com/4d/4D-Debugger-VSCode) extension. El depurador asociado es llamado cada vez que se encuentra un 4D Server: - un punto de ruptura -- un comando `TRACE` +- a `TRACE` command - un comando de captura - un error @@ -35,7 +33,7 @@ Tenga en cuenta que los mensajes de error se envían a la máquina depuradora as Note que: -- El código ejecutado en el método `On Server Startup Database` no se puede depurar de forma remota. Sólo se puede depurar del lado del servidor +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. Sólo se puede depurar del lado del servidor - Si no hay un depurador asociado, el código en ejecución no se detiene con los comandos de depuración ## Asociar al depurador @@ -51,20 +49,20 @@ Puede asociar el depurador a cualquier cliente 4D remoto que pueda conectarse a Para asociar el depurador a un cliente 4D remoto: -1. En la barra de menús de 4D Server, seleccione **Editar** > **Separar depurador** para que el depurador esté disponible para las máquinas remotas (este paso es inútil si 4D Server está funcionando sin interfaz). -2. En un cliente 4D remoto conectado al servidor, seleccione **Ejecutar** > **Adjuntar depurador remoto** +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -Si se acepta el archivo adjunto (ver [Solicitudes de archivo adjunto rechazadas](#rejected-attachment-requests)), el comando de menú se convierte en **Desconectar depurador remoto**. +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. El depurador se conecta entonces al cliente 4D remoto: - hasta el final de la sesión usuario -- hasta que se seleccione `Detach Remote Debugger` +- until you select `Detach Remote Debugger` Para volver a conectar el depurador al servidor: -1. En el cliente 4D remoto que tiene el depurador conectado, seleccione **Ejecutar** > **Separar depurador remoto**. -2. En la barra de menú de 4D Server, seleccione **Editar** > **Adjuntar depurador**. +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > Cuando el depurador está conectado al servidor (por defecto), todos los procesos del servidor se ejecutan automáticamente en modo cooperativo para permitir la depuración. Esto puede tener un impacto significativo en el rendimiento. Cuando no necesite depurar en la máquina del servidor, se recomienda separar el depurador y adjuntarlo a una máquina remota si es necesario. @@ -72,13 +70,13 @@ Para volver a conectar el depurador al servidor: 4D le permite adjuntar automáticamente el depurador a un cliente 4D remoto o al servidor al inicio: -- En el servidor (si no es headless), esta opción se llama **Attach Debugger At Startup**. Cuando el servidor se inicia, adjunta automáticamente el depurador (por defecto). +- On the server (if not headless), this option is named **Attach Debugger At Startup**. Cuando el servidor se inicia, adjunta automáticamente el depurador (por defecto). -> **Advertencia**: si se selecciona esta opción para un servidor que posteriormente se lanza en modo sin interfaz, el depurador no estará disponible para este servidor. +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- Asociar al depurador Cuando se selecciona, el cliente 4D remoto intentará automáticamente adjuntar el depurador remoto en cada conexión posterior a la misma base de datos 4D Server. Depuradores adjuntos +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. Cuando se selecciona, el cliente 4D remoto intentará automáticamente adjuntar el depurador remoto en cada conexión posterior a la misma base de datos 4D Server. If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. -> Esta configuración se aplica por proyecto y se almacena localmente en el archivo [`.4DPreferences`](Project/architecture.md#userpreferencesusername). +> This setting is applied per project and is stored locally in the [`.4DPreferences`](Project/architecture.md#userpreferencesusername) file. ## Peticiones de adjuntos rechazadas @@ -92,5 +90,5 @@ Si una máquina intenta conectar el depurador cuando ya está conectado, se rech Adjuntar el depurador en este caso requiere que: -- el depurador adjunto se separa del servidor o del cliente 4D remoto utilizando respectivamente el comando de menú **Detach debugger** o **Detach remote debugger**, +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - se cierra la sesión del cliente 4D remoto adjunto. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/FormEditor/properties_FormProperties.md b/i18n/es/docusaurus-plugin-content-docs/current/FormEditor/properties_FormProperties.md index 5b452dd2880fa2..d67ce2b4517e59 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/FormEditor/properties_FormProperties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/FormEditor/properties_FormProperties.md @@ -41,23 +41,23 @@ Un archivo CSS definido a nivel de formulario anulará la(s) hoja(s) de estilo p ## Form Class -Nombre de una [clase usuario] existente(../Concepts/classes.md#class-definition) para asociar al formulario. The user class can belong to the host project or to a [component](../Extensions/develop-components.md#sharing-of-classes), in which case the formal syntax is "[_componentNameSpace_](../settings/general.md#component-namespace-in-the-class-store).className". +Nombre de una [clase usuario](../Concepts/classes.md#class-definition) existente para asociar al formulario. The user class can belong to the host project or to a [component](../Extensions/develop-components.md#sharing-of-classes), in which case the formal syntax is "[_componentNameSpace_](../settings/general.md#component-namespace-in-the-class-store).className". -Associating a class to the form provides the following benefits: +Asociar una clase al formulario ofrece las siguientes ventajas: -- Cuando trabajas en el [Editor de formularios](../FormEditor/formEditor.md), la clase asociada se utiliza para comprobar con precisión la sintaxis de expresiones como `Form.myProperty` en todas las áreas de la [Lista de propiedades](../FormEditor/formEditor.md#property-list) que soporta [expresiones](../Concepts/quick-tour.md#expressions) (por ejemplo, **Variable o Expresión**, **Expresión de color de fuente**...). Errors are displayed in red and warnings are displayed in yellow in the left column of the Property list and you can hover it to get explanations: +- Cuando trabajas en el [Editor de formularios](../FormEditor/formEditor.md), la clase asociada se utiliza para comprobar con precisión la sintaxis de expresiones como `Form.myProperty` en todas las áreas de la [Lista de propiedades](../FormEditor/formEditor.md#property-list) que soporta [expresiones](../Concepts/quick-tour.md#expressions) (por ejemplo, **Variable o Expresión**, **Expresión de color de fuente**...). Los errores se muestran en rojo y las advertencias se muestran en amarillo en la columna izquierda de la lista de propiedades y puede pasar el cursor para obtener explicaciones: ![](../assets/en/FormObjects/warning-proplist.png) -- The detection of errors in the code of form object expressions by the [compiler](../Project/compiler.md) is improved. +- Se ha mejorado la detección de errores en el código de las expresiones de objetos de formulario por parte del [compilador](../Project/compiler.md). -- También puede beneficiarse de las funciones de autocompletado (../code-editor/write-class-method.md#autocomplete-functions) en el editor de código. +- También puede beneficiarse de las [funciones de autocompletado](../code-editor/write-class-method.md#autocomplete-functions) en el editor de código. -- When the form is executed, 4D automatically instantiates a user class object for the form, which is returned by the [`Form`](../commands/form.md) object. Your code can directly access class functions defined in the user class through the `Form` command (e.g. `Form.message()`) without having to pass a _formData_ object as parameter to the [`DIALOG`](../commands/dialog.md), [`Print form`](../commands/print-form.md), or [`FORM LOAD`](../commands/form-load.md) commands. +- Cuando se ejecuta el formulario, 4D instancia automáticamente un objeto clase usuario para el formulario, que es devuelto por el objeto [`Form`](../commands/form.md). Su código puede acceder directamente a las funciones de clase definidas en la clase usuario a través del comando `Form` (por ejemplo `Form.message()`) sin tener que pasar un objeto _formData_ como parámetro a los comandos [`DIALOG`](../commands/dialog.md), [`Print form`](../commands/print-form.md), o [`FORM LOAD`](../commands/form-load.md). :::note -See [this blog post](http://blog.4d.com/empower-your-development-process-with-your-forms) for an illustration of this feature. +Vea [esta publicación del blog](http://blog.4d.com/empower-your-development-process-with-your-forms) para una ilustración de esta funcionalidad. ::: diff --git a/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/text.md b/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/text.md index 8699ea25c28761..4f6af6c01ab2ef 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/text.md @@ -47,4 +47,4 @@ Una vez que un texto está rotado, puede seguir cambiando su tamaño o posición
-[Negrita](properties_Text.md#bold) - [Estilo de línea de borde](properties_BackgroundAndBorder.md#border-line-style) - [Inferior](properties_CoordinatesAndSizing.md#bottom) - [Clase](properties_Object.md#css-class) - [Radio de la esquina](properties_CoordinatesAndSizing.md#corner-radius) - [Color de relleno](properties_BackgroundAndBorder.md#background-color--fill-color) - [Fuente](properties_Text.md#font) - [Color de fuente](properties_Text.md#font-color) - [Tamaño de fuente](properties_Text.md#font-size) - [Altura](properties_CoordinatesAndSizing.md#height) - [Alineación horizontal](properties_Text.md#horizontal-alignment) - [Dimensionamiento horizontal](properties_ResizingOptions.md#horizontal-sizing) - [Cursiva](properties_Text.md#italic) - [Izquierda](properties_CoordinatesAndSizing.md#left) - [Nombre del objeto](properties_Object.md#object-name) - [Orientación](properties_Text.md#orientation) - [Derecha](properties_CoordinatesAndSizing.md#right) - [Título](properties_Object.md#title) - [Superior](properties_CoordinatesAndSizing.md#top) - [Tipo](properties_Object.md#type) - [Subrayado](properties_Text.md#underline) - [Dimensionamiento vertical](properties_ResizingOptions.md#vertical-sizing) - [Visibilidad](properties_Display.md#visibility) - [Ancho](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Notes/updates.md b/i18n/es/docusaurus-plugin-content-docs/current/Notes/updates.md index 007c041238226b..0369b74b4afd21 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/Notes/updates.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/Notes/updates.md @@ -13,9 +13,12 @@ Lea [**Novedades en 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R8/), - Las expresiones utilizadas en [propiedades de objetos de formulario](../FormObjects/properties_Reference.md) ahora se benefician de la comprobación de sintaxis en la [Lista de propiedades](../FormEditor/formEditor.md#property-list) y en el [Compilador](../Project/compiler.md#check-syntax). - Puede [asociar una clase a un formulario](../FormEditor/properties_FormProperties.md#form-class) para habilitar la anticipación del tipo de código y la instanciación automática de los datos del formulario cuando utilice el comando [`Form`](../commands/form.md). - Soporte de [sesiones autónomas](../API/SessionClass.md) para simplificar la codificación local de aplicaciones cliente/servidor. +- [4D debugger](../Debugging/debugger.md): new design and auto-save, display mode features. - [New built component architecture](../Desktop/building.md#build-component) for a better compliance with Apple notarization guidelines. +- Dependencies: Use the Dependency manager to [check for new versions](../Project/components.md#checking-for-new-versions) and [update](../Project/components.md#updating-dependencies) GitHub components. - Lenguaje 4D: - Comandos modificados: [`FORM EDIT`](../commands/form-edit.md) + - Las funciones [`.sign()`](../API/CryptoKeyClass.md#sign) y [`.verify()`](../API/CryptoKeyClass.md#verify) de la clase [4D.CryptoKey](../API/CryptoKeyClass.md) soportan Blob en el parámetro _message_. - [**Lista de bugs corregidos**](https://bugs.4d.fr/fixedbugslist?version=20_R8): lista de todos los bugs que se han corregido en 4D 20 R8. #### Cambios de comportamiento @@ -50,6 +53,7 @@ Lea [**Novedades en 4D 20 R7**](https://blog.4d.com/en-whats-new-in-4d-v20-R7/), - La documentación del [Lenguaje 4D](../commands/command-index.md) y del [Lenguaje 4D Write Pro](../WritePro/commands/command-index.md) ya está disponible en developer.4d.com. Descubra todas las novedades y cambios relativos a estas documentaciones en esta nota de la versión. - El comando [`File`](../commands/file.md) (así como [`4D.File.new()`](../API/FileClass.md#4dfilenew)) es más estricto a la hora de comprobar la sintaxis de la _ruta_ suministrada como parámetro. +- The **describe** action [permission](../ORDA/privileges.md#permission-actions) has been removed from available actions. Access to [`/rest/$catalog`](../REST/$catalog.md) urls is no longer controlled. Session _describe_ privileges are now ignored. ## 4D 20 R6 @@ -65,7 +69,7 @@ Lea [**Novedades en 4D 20 R6**](https://blog.4d.com/en-whats-new-in-4d-20-R6/), - Nuevo archivo [4DCEFParameters.json](../FormObjects/webArea_overview.md#4dcefparametersjson) para personalizar las áreas web anidadas de 4D. - Nueva clase [HTTPAgent](../API/HTTPAgentClass.md) y nueva propiedad [`agent`](../API/HTTPRequestClass.md#options-parameter) para la clase HTTPRequest. - Nuevas funciones [`enableState()`](../API/WebFormClass.md) y [`disableState()`](../API/WebFormClass.md) para controlar los estados de las páginas Qodly desde el servidor. -- Nueva [\\\\\\\\\` API$singleton](../REST/$singleton.md) para llamar las funciones singleton expuestas desde REST y nuevos [privilegios asociados](../ORDA/privileges.md). +- Nueva [\\\\\\\\\\\\` API$singleton](../REST/$singleton.md) para llamar las funciones singleton expuestas desde REST y nuevos [privilegios asociados](../ORDA/privileges.md). - Un [nuevo botón de parámetros](../settings/web.md#activate-rest-authentication-through-dsauthentify-function) le ayuda a actualizar su proyecto para utilizar el modo REST "conexión forzada" (el método base `On REST Authentication` es ahora obsoleto). - Una [nueva pestaña de parámetros](../Project/compiler.md#warnings) permite definir la generación de advertencias de forma global. - Varios comandos, principalmente del tema "Entorno 4D", ahora son hilo seguro ([ver la lista completa](https://doc.4d.com/4Dv20R6/4D/Preemptive_6957385.999-2878208.en.html)), así como algunos selectores de los comandos [`SET DATABASE PARAMETER`](https://doc.4d.com/4dv20R/help/command/en/page642.html)/[`Get database parameter`](https://doc.4d.com/4dv20R/help/command/en/page643.html). @@ -109,7 +113,7 @@ Lea [**Novedades en 4D 20 R4**](https://blog.4d.com/en-whats-new-in-4d-v20-R4/), #### Lo más destacado -- Soporte de [formato de cifrado ECDSA\\\\\\\\\`](../Admin/tls.md#encryption) para certificados TLS. +- Soporte de [formato de cifrado ECDSA\\\\\\\\\\\\`](../Admin/tls.md#encryption) para certificados TLS. - Las conexiones TLS cliente/servidor y servidor SQL ahora se [configuran dinámicamente](../Admin/tls.md#enabling-tls-with-the-other-servers) (no se requieren archivos de certificado). - Formato HTML directo para [exportaciones de definición de estructura](https://doc.4d.com/4Dv20R4/4D/20-R4/Exporting-and-importing-structure-definitions.300-6654851.en.html). - Nuevo [Code Live Checker](../code-editor/write-class-method.md#warnings-and-errors) que mejora el control del código durante los pasos de declaración, comprobación de sintaxis y compilación para evitar errores de ejecución. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/glossary.md b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/glossary.md index be3c960ff226a1..d5d0862b93a773 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/glossary.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/glossary.md @@ -9,7 +9,7 @@ title: Glosario ## Acción -Todas las acciones que pueden realizarse en un [recurso](#resource). Las acciones disponibles son: crear, leer, actualizar, eliminar, ejecutar, promover y describir. +Todas las acciones que pueden realizarse en un [recurso](#resource). Available actions are: create, read, update, drop, execute, and promote. ## Atributo diff --git a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/privileges.md b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/privileges.md index f30ce87b8ef723..0ff689649c704e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/privileges.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/privileges.md @@ -49,15 +49,14 @@ Los permisos controlan el acceso a los objetos o funciones del almacén de datos Las acciones disponibles están relacionadas con el recurso de destino. -| Acciones | Almacén de datos | dataclass | atributo | función del modelo de datos o función singleton | -| ------------ | --------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **create** | Crear entidad en cualquier clase de datos | Crear entidad en esta clase de datos | Crea una entidad con un valor diferente del valor por defecto permitido para este atributo (ignorado para atributos alias). | n/a | -| **read** | Leer atributos en cualquier dataclass | Leer atributos en esta clase de datos | Lea el contenido de este atributo | n/a | -| **update** | Actualizar atributos en cualquier clase de datos. | Actualiza los atributos de esta clase de datos. | Actualiza el contenido de este atributo (ignorado para atributos alias). | n/a | -| **drop** | Borrar datos en cualquier clase de datos. | Borrar los datos de esta clase de datos. | Eliminar un valor no nulo para este atributo (excepto para alias y atributo calculado). | n/a | -| **execute** | Ejecutar toda función en el proyecto (almacén de datos, clase de datos, selección de entidades, entidad) | Ejecuta cualquier función en la clase de datos. Las funciones dataclass, las funciones entidad y las funciones selección de entidades se tratan como funciones dataclass | n/a | Ejecutar esta función | -| **describe** | Todas las clases de datos están disponibles en /rest/$catalog API | Esta dataclass está disponible en la /rest/$catalog API | Este atributo está disponible en la API /rest/$catalog. | Esta función de clase de datos está disponible en la API /rest/$catalog (no disponible con singletons) | -| **promote** | n/a | n/a | n/a | Asocia un privilegio determinado durante la ejecución de la función. El privilegio se añade temporalmente a la sesión y se elimina al final de la ejecución de la función. Por seguridad, sólo se añade el privilegio al proceso que ejecuta la función, no a toda la sesión. | +| Acciones | Almacén de datos | dataclass | atributo | función del modelo de datos o función singleton | +| ----------- | --------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **create** | Crear entidad en cualquier clase de datos | Crear entidad en esta clase de datos | Crea una entidad con un valor diferente del valor por defecto permitido para este atributo (ignorado para atributos alias). | n/a | +| **read** | Leer atributos en cualquier dataclass | Leer atributos en esta clase de datos | Lea el contenido de este atributo | n/a | +| **update** | Actualizar atributos en cualquier clase de datos. | Actualiza los atributos de esta clase de datos. | Actualiza el contenido de este atributo (ignorado para atributos alias). | n/a | +| **drop** | Borrar datos en cualquier clase de datos. | Borrar los datos de esta clase de datos. | Eliminar un valor no nulo para este atributo (excepto para alias y atributo calculado). | n/a | +| **execute** | Ejecutar toda función en el proyecto (almacén de datos, clase de datos, selección de entidades, entidad) | Ejecuta cualquier función en la clase de datos. Las funciones dataclass, las funciones entidad y las funciones selección de entidades se tratan como funciones dataclass | n/a | Ejecutar esta función | +| **promote** | n/a | n/a | n/a | Asocia un privilegio determinado durante la ejecución de la función. El privilegio se añade temporalmente a la sesión y se elimina al final de la ejecución de la función. Por seguridad, sólo se añade el privilegio al proceso que ejecuta la función, no a toda la sesión. | **Notas:** @@ -67,10 +66,7 @@ Las acciones disponibles están relacionadas con el recurso de destino. - Valores por defecto: en la implementación actual, solo _Null_ está disponible como valor por defecto. - En modo REST [force login](../REST/authUsers.md/#force-login-mode), la función [`authentify()`](../REST/authUsers.md#function-authentify) es siempre ejecutable por usuarios invitados, cualquiera que sea la configuración de permisos. -La definición de permisos requiere ser coherente, en particular: - -- los permisos **update** y **drop** también necesitan el permiso **read** (pero **create** no lo necesita) -- Para las funciones del modelo de datos, el permiso **promote** también necesita el permiso **describe**. +Setting permissions requires to be consistent, in particular **update** and **drop** permissions also need **read** permission (but **create** does not need it). ## Privilegios y roles @@ -139,7 +135,6 @@ El archivo por defecto tiene el siguiente contenido: "create": ["none"], "update": ["none"], "drop": ["none"], - "describe": ["none"], "execute": ["none"], "promote": ["none"] } @@ -175,26 +170,25 @@ En Qodly Studio for 4D, el modo se puede definir utilizando la opción [**Forzar La sintaxis del archivo `roles.json` es la siguiente: -| Nombre de propiedad | | | Tipo | Obligatorio | Descripción | -| ------------------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------ | -| privileges | | | Colección de objetos `privilege` | X | Lista de privilegios definidos | -| | \[].privilege | | Text | | Nombre del privilegio | -| | \[].includes | | Colección de cadenas | | Lista de nombres de privilegios incluidos | -| roles | | | Colección de objetos `role` | | Lista de roles definidos | -| | \[].role | | Text | | Nombre del rol | -| | \[].privileges | | Colección de cadenas | | Lista de nombres de privilegios incluidos | -| permissions | | | Object | X | Lista de acciones permitidas | -| | allowed | | Colección de objetos `permission` | | Lista de permisos permitidos | -| | | \[].applyTo | Text | X | Targeted [resource](#resources) name | -| | | \[].type | Text | X | Tipo de [recurso](#resources): "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | -| | | \[].read | Colección de cadenas | | Lista de privilegios | -| | | \[].create | Colección de cadenas | | Lista de privilegios | -| | | \[].update | Colección de cadenas | | Lista de privilegios | -| | | \[].drop | Colección de cadenas | | Lista de privilegios | -| | | \[].describe | Colección de cadenas | | Lista de privilegios | -| | | \[].execute | Colección de cadenas | | Lista de privilegios | -| | | \[].promote | Colección de cadenas | | Lista de privilegios | -| forceLogin | | | Boolean | | True para habilitar el [modo "forceLogin"](../REST/authUsers.md#force-login-mode) | +| Nombre de propiedad | | | Tipo | Obligatorio | Descripción | +| ------------------- | ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | --------------------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------ | +| privileges | | | Colección de objetos `privilege` | X | Lista de privilegios definidos | +| | \[].privilege | | Text | | Nombre del privilegio | +| | \[].includes | | Colección de cadenas | | Lista de nombres de privilegios incluidos | +| roles | | | Colección de objetos `role` | | Lista de roles definidos | +| | \[].role | | Text | | Nombre del rol | +| | \[].privileges | | Colección de cadenas | | Lista de nombres de privilegios incluidos | +| permissions | | | Object | X | Lista de acciones permitidas | +| | allowed | | Colección de objetos `permission` | | Lista de permisos permitidos | +| | | \[].applyTo | Text | X | Targeted [resource](#resources) name | +| | | \[].type | Text | X | Tipo de [recurso](#resources): "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | +| | | \[].read | Colección de cadenas | | Lista de privilegios | +| | | \[].create | Colección de cadenas | | Lista de privilegios | +| | | \[].update | Colección de cadenas | | Lista de privilegios | +| | | \[].drop | Colección de cadenas | | Lista de privilegios | +| | | \[].execute | Colección de cadenas | | Lista de privilegios | +| | | \[].promote | Colección de cadenas | | Lista de privilegios | +| forceLogin | | | Boolean | | True para habilitar el [modo "forceLogin"](../REST/authUsers.md#force-login-mode) | :::caution Recordatorio @@ -254,9 +248,6 @@ La buena práctica es mantener todos los datos bloqueados por defecto gracias al "execute": [ "none" ], - "describe": [ - "none" - ], "promote": [ "none" ] diff --git a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md index 9b764b52c16b5e..6c6d0b8a2f4d2a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md @@ -49,7 +49,7 @@ Las funcionalidades ORDA relacionadas con el bloqueo de entidades y transaccione - Si un proceso bloquea una entidad de un datastores remoto, la entidad se bloquea para todos los otros procesos, incluso cuando estos procesos comparten la misma sesión (ver [Bloqueo de entidades](entities.md#entity-locking)). Si varias entidades que apuntan a un mismo registro han sido bloqueadas en un proceso, todas deben ser desbloqueadas en el proceso para eliminar el bloqueo. Si se ha puesto un bloqueo en una entidad, el bloqueo se elimina cuando ya no hay ninguna referencia a esta entidad en la memoria. - Las transacciones pueden iniciarse, validarse o cancelarse por separado en cada almacén de datos remoto mediante las funciones `dataStore.startTransaction()`, `dataStore.cancelTransaction()` y `dataStore.validateTransaction()`. No afectan a otros almacenes de datos. -- Los comandos clásicos del lenguaje 4D (`START TRANSACTION`, `VALIDATE TRANSACTION`, `CANCEL TRANSACTION`) sólo se aplican al datastore principal (devuelto por `ds`). +- Classic 4D language commands ([`START TRANSACTION`](../commands-legacy/start-transaction.md), [`VALIDATE TRANSACTION`](../commands-legacy/validate-transaction.md), [`CANCEL TRANSACTION`](../commands-legacy/cancel-transaction.md)) only apply to the main datastore (returned by `ds`). Si una entidad de un datastore remoto es retenida por una transacción en un proceso, los otros procesos no pueden actualizarla, incluso si estos procesos comparten la misma sesión. - Los bloqueos en las entidades son eliminados y las transacciones son anuladas: - cuando el proceso es eliminado. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Project/components.md b/i18n/es/docusaurus-plugin-content-docs/current/Project/components.md index 408c0f13d1b578..6dea253c977f3d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/Project/components.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/Project/components.md @@ -5,7 +5,7 @@ title: Componentes Un componente 4D es un conjunto de código y/o de formularios 4D que representan una o varias funcionalidades que pueden añadirse y utilizarse en sus proyectos. Por ejemplo, el componente [4D SVG](https://github.com/4d/4D-SVG) añade comandos avanzados y un motor de renderizado integrado que puede utilizarse para visualizar archivos SVG. -Puede [desarrollar](../Extensions/develop-components.md) y [crear](../Desktop/building.md) sus propios componentes 4D, o descargar componentes públicos compartidos por la comunidad 4D que [se pueden encontrar en GitHub](https://github.com/search?q=4d-component\\&type=Repositories). +Puede [desarrollar](../Extensions/develop-components.md) y [crear](../Desktop/building.md) sus propios componentes 4D, o descargar componentes públicos compartidos por la comunidad 4D que [se pueden encontrar en GitHub](https://github.com/search?q=4d-component\\\&type=Repositories). Al desarrollar en 4D, los archivos de los componentes pueden almacenarse de forma transparente en su ordenador o en un repositorio Github. @@ -47,7 +47,7 @@ Esta página describe cómo trabajar con componentes en los entornos **4D** y ** Para cargar un componente en su proyecto 4D, usted puede: - copiar los archivos del componente en la [carpeta **Components** de su proyecto](architecture.md#components), -- o bien, declare el componente en el archivo **dependencies.json** de su proyecto; esto se hace automáticamente para los archivos locales cuando [**añade una dependencia utilizando la interfaz del gestor de dependencias**](#adding-a-dependency). +- or, declare the component in the **dependencies.json** file of your project; this is done automatically for local files when you [**add a dependency using the Dependency manager interface**](#adding-a-github-dependency). Los componentes declarados en el archivo **dependencies.json** pueden almacenarse en diferentes ubicaciones: @@ -95,14 +95,16 @@ Dado que los componentes pueden instalarse de distintas formas, se aplica un ord ```mermaid flowchart TB - id1("1\nComponents from project's Components folder")~~~ - id2("2\nComponents listed in dependencies.json")~~~ - id2 -- environment4d.json gives path --> id4("Load component\nbased on path declared\nin environment4d.json") + id1("1
Components from project's Components folder") + ~~~ + id2("2
Components listed in dependencies.json") + ~~~ + id2 -- environment4d.json gives path --> id4("Load component based on path declared in environment4d.json") ~~~ - id3("3\nUser 4D components") - id2 -- environment4d.json doesn't give path --> id5("Load component\nnext to\npackage folder") + id3("3
User 4D components") + id2 -- environment4d.json doesn't give path --> id5("Load component next to package folder") ~~~ - id3("3\nUser 4D components") + id3("3
User 4D components") ``` Cuando un componente no puede cargarse debido a otra instancia del mismo componente situada en un nivel de prioridad superior, ambos obtienen un [estado] específico (#dependency-status): el componente no cargado recibe el estado _Overloaded_, mientras que el componente cargado tiene el estado _Overloading_. @@ -173,7 +175,7 @@ Las rutas absolutas sólo deben utilizarse para componentes específicos de una ### Configuración del repositorio GitHub -Para poder referenciar y utilizar directamente un componente 4D almacenado en GitHub, es necesario configurar el repositorio del componente GitHub: +4D components available as GitHub releases can be referenced and automatically loaded and updated in your 4D projects. :::note @@ -222,7 +224,7 @@ Declare un componente almacenado en GitHub en el archivo [**dependencies.json**] #### Etiquetas y versiones -Cuando crea una versión en GitHub, especifica una **etiqueta** y una **versión**. +When a release is created in GitHub, it is associated to a **tag** and a **version**. The Dependency manager uses these information to handle automatic availability of components. - **Etiquetas** son textos que hacen referencia única a una versión. En los archivos [**dependencies.json**](#dependencyjson) y [**environment4d.json**](#environment4djson), puede indicar la etiqueta de versión que desea utilizar en su proyecto. Por ejemplo: @@ -237,7 +239,7 @@ Cuando crea una versión en GitHub, especifica una **etiqueta** y una **versión } ``` -- Una versión también se identifica por una **versión**. El sistema de versionado utilizado se basa en el concepto _Versionado Semántico_, que es el más comúnmente utilizado. Cada número de versión se identifica de la siguiente manera: `majorNumber.minorNumber.pathNumber`. Del mismo modo que para las etiquetas, puede indicar la versión del componente que desea utilizar en su proyecto, como en este ejemplo: +- Una versión también se identifica por una **versión**. The versioning system used is based on the [_Semantic Versioning_](https://regex101.com/r/Ly7O1x/3/) concept, which is the most commonly used. Cada número de versión se identifica de la siguiente manera: `majorNumber.minorNumber.pathNumber`. Del mismo modo que para las etiquetas, puede indicar la versión del componente que desea utilizar en su proyecto, como en este ejemplo: ```json { @@ -250,7 +252,7 @@ Cuando crea una versión en GitHub, especifica una **etiqueta** y una **versión } ``` -La versión se utiliza para definir qué versiones se pueden utilizar. Se utiliza una [versión semántica estándar](https://regex101.com/r/Ly7O1x/3/). Un rango se define mediante dos versiones semánticas, un mínimo y un máximo, con los operadores '\< | > | >= | <= | ='. El `*` se puede utilizar como un marcador de posición para todas las versiones. Los prefijos ~ y ^ definen versiones a partir de un número, y hasta respectivamente la siguiente versión mayor y menor. +Un rango se define mediante dos versiones semánticas, un mínimo y un máximo, con los operadores '\< | > | >= | <= | ='. El `*` se puede utilizar como un marcador de posición para todas las versiones. Los prefijos ~ y ^ definen versiones a partir de un número, y hasta respectivamente la siguiente versión mayor y menor. Estos son algunos ejemplos: @@ -268,6 +270,8 @@ Estos son algunos ejemplos: Si no especifica una etiqueta o una versión, 4D recupera automáticamente la "última" versión. +The Dependency manager checks periodically if component updates are available on Github. If a new version is available for a component, an update indicator is then displayed for the component in the dependency list, [depending on your settings](#defining-a-github-dependency-version-range). + #### Repositorios privados Si quiere integrar un componente ubicado en un repositorio privado, necesita decirle a 4D que utilice un token de conexión para acceder a él. @@ -280,21 +284,7 @@ Para más información, consulte la [Interfaz de tokens GitHub](https://github.c ::: -Luego inserta la llave "github" en su archivo [**environment4d.json**](#environment4djson): - -```json -{ - "github": { - "token": "ghpXXXXXXXXXXXXUvW8x9yZ" - }, - "dependencies": { - - "mySecondGitHubComponent": { - "github": "JohnSmith/mySecondGitHubComponent" - } - } -} -``` +You then need to [provide your connection token](#providing-your-github-access-token) to the Dependency manager. #### Caché local para dependencias @@ -305,7 +295,7 @@ Los componentes GitHub a los que se hace referencia se descargan en una carpeta ...donde `` puede ser "4D", "4D Server" o "tool4D". -#### dependency-lock.json +### dependency-lock.json Se crea un archivo `dependency-lock.json` en la carpeta [`userPreferences`](architecture.md#userpreferencesusername) de su proyecto. @@ -313,7 +303,7 @@ Este archivo registra información como el estado de las dependencias, rutas, ur ## Monitoreo de dependencias del proyecto -En un proyecto abierto, puede añadir, eliminar y obtener información sobre las dependencias y su estado de carga actual en el panel **Dependencias**. +In an opened project, you can add, remove, update, and get information about dependencies and their current loading status in the **Dependencies** panel. Para mostrar el panel Dependencias: @@ -327,7 +317,72 @@ A continuación, se muestra el panel Dependencias. Las dependencias se ordenan p ![dependency](../assets/en/Project/dependency.png) -La interfaz del panel Dependencias le permite gestionar las dependencias (en 4D monousuario y 4D Server). Puede añadir o eliminar las dependencias **local** y **GitHub**. +The Dependencies panel interface allows you to manage dependencies (on 4D single-user and 4D Server). + +### Filtering dependencies + +Por defecto, se listan todas las dependencias identificadas por el gestor de dependencias, sea cual sea su [estado](#dependency-status). Puede filtrar las dependencias mostradas según su estado seleccionando la pestaña correspondiente en la parte superior del panel Dependencias: + +![dependency-tabs](../assets/en/Project/dependency-tabs.png) + +- **Activo**: dependencias que están cargadas y pueden ser utilizadas en el proyecto. Incluye dependencias _overloading_, las cuales son realmente cargadas. Las dependencias _Overloaded_ se enumeran en el panel **Conflicts** junto con todas las dependencias en conflicto. +- **Inactivo**: dependencias que no están cargadas en el proyecto y no están disponibles. Hay muchas razones posibles para este estado: archivos que faltan, incompatibilidad de versiones... +- **Conflicto**: dependencias que se cargan pero que sobrecargan al menos otra dependencia de menor [nivel de prioridad](#prioridad). También se muestran las dependencias sobrecargadas para que pueda comprobar el origen del conflicto y tomar las medidas oportunas. + +### Dependency status + +Las dependencias que requieren la atención del desarrollador se indican mediante una **etiqueta de estado** a la derecha de la línea y un color de fondo específico: + +![dependency-status](../assets/en/Project/dependency-conflict2.png) + +Las siguientes etiquetas de estado están disponibles: + +- **Overloaded**: la dependencia no se carga porque está sobrecargada por otra dependencia con el mismo nombre en un [nivel de prioridad] superior(#prioridad). +- **Overloading**: la dependencia está cargada y está sobrecargando una o más dependencias con el mismo nombre en un [nivel de prioridad] inferior(#prioridad). +- **Not found**: la dependencia se declara en el archivo dependencies.json pero no se encuentra. +- **Inactive**: la dependencia no se carga porque no es compatible con el proyecto (por ejemplo, el componente no está compilado para la plataforma actual). +- **Duplicated**: la dependencia no se carga porque existe otra dependencia con el mismo nombre en la misma ubicación (y está cargada). +- **Available after restart**: The dependency reference has just been added or updated [using the interface](#monitoring-project-dependencies), it will be loaded once the application restarts. +- **Descargado después de reiniciar**: la referencia de dependencias acaba de ser removida [utilizando la interfaz](#removing-a-dependency), se descargará una vez que la aplicación se reinicie. +- **Update available \**: A new version of the GitHub dependency matching your [component version configuration](#defining-a-github-dependency-version-range) has been detected. +- **Refreshed after restart**: The [component version configuration](#defining-a-github-dependency-version-range) of the GitHub dependency has been modified, it will be adjusted the next startup. +- **Recent update**: A new version of the GitHub dependency has been loaded at startup. + +Al pasar el ratón por encima de la línea de dependencia, se muestra un mensaje que ofrece información adicional sobre el estado: + +![dependency-tips](../assets/en/Project/dependency-tip1.png) + +### Dependency origin + +El panel Dependencias enumera todas las dependencias del proyecto, sea cual sea su origen, es decir, de dónde procedan. El origen de la dependencia lo suministra la etiqueta bajo su nombre: + +![dependency-origin](../assets/en/Project/dependency-origin.png) + +Las siguientes opciones de origen son posibles: + +| Etiqueta de origen | Descripción | +| --------------------------------- | ---------------------------------------------------------------------------------- | +| Componente 4D | Componente 4D integrado, almacenado en la carpeta `Components` de la aplicación 4D | +| dependencies.json | Componente declarado en el archivo [`dependencies.json`](#dependenciesjson) | +| Entorno | Componente declarado en el archivo [`environnement4d.json`](#environment4djson) | +| Componente del proyecto | Componente ubicado en la carpeta [`Components`](architecture.md#components) | + +**Clic derecho** en una línea de dependencia y selecciona **Mostrar en el disco** para revelar la ubicación de una dependencia: + +![dependency-show](../assets/en/Project/dependency-show.png) + +:::note + +Este elemento no se muestra si la relación está inactiva porque no se encuentran sus archivos. + +::: + +El icono del componente y el logotipo de ubicación ofrecen información adicional: + +- El logotipo del componente indica si es suministrado por 4D o por un desarrollador externo. +- Los componentes locales se pueden diferenciar de los componentes GitHub por un pequeño icono. + +![dependency-origin](../assets/en/Project/dependency-github.png) ### Añadir una dependencia local @@ -374,7 +429,15 @@ Si el componente se almacena en un [repositorio privado de GitHub](#private-repo ::: -Luego puede definir la opción [etiqueta o versión](#tags-and-versions) para la dependencia: +Define the [dependency version range](#tags-and-versions) to use for this project. By defaut, "Latest" is selected, which means that the lastest version will be automatically used. + +Haga clic en el botón **Añadir** para añadir la dependencia al proyecto. + +La dependencia de GitHub declarada en el archivo [**dependencies.json**](#dependenciesjson) y añadida a la [lista de dependencias inactivas](#dependency-status) con el estado **Disponible al reiniciar**. Se cargará cuando se reinicie la aplicación. + +#### Defining a GitHub dependency version range + +You can define the [tag or version](#tags-and-versions) option for a dependency: ![dependency-git-tag](../assets/en/Project/dependency-git-tag.png) @@ -383,99 +446,116 @@ Luego puede definir la opción [etiqueta o versión](#tags-and-versions) para la - **Up to Next Minor Version**: Similarly, restrict updates to the next minor version. - **Versión exacta (Etiqueta)**: selecciona o introduce manualmente una [etiqueta específica](#tags-and-versions) de la lista disponible. -Haga clic en el botón **Añadir** para añadir la dependencia al proyecto. +The current GitHub dependency version is displayed on the right side of the dependency item: -La dependencia de GitHub declarada en el archivo [**dependencies.json**](#dependenciesjson) y añadida a la [lista de dependencias inactivas](#dependency-status) con el estado **Disponible al reiniciar**. Se cargará cuando se reinicie la aplicación. +![dependency-origin](../assets/en/Project/dependency-version.png) -#### Providing your GitHub access token +#### Modifying the GitHub dependency version range -Si el componente está almacenado en un [repositorio privado GitHub](#private-repositories), deberá suministrar su token de acceso personal al gestor de dependencias. Para hacer esto, puede: +You can modify the [version setting](#defining-a-github-dependency-version-range) for a listed GitHub dependency: select the dependency to modify and select **Modify the dependency...** from the contextual menu. In the "Modify the dependency" dialog box, edit the Dependency Rule menu and click **Apply**. -- click on **Add a personal access token...** button that is displayed in the "Add a dependency" dialog box after you entered a private GitHub repository path. -- or, select **Add a GitHub personal access token...** in the Dependency manager menu at any moment. +Modifying the version range is useful for example if you use the automatic update feature and want to lock a dependency to a specific version number. -![dependency-add-token](../assets/en/Project/dependency-add-token.png) +### Updating GitHub dependencies -Luego puede introducir su token de acceso personal: +The Dependency manager provides an integrated handling of updates on GitHub. The following features are supported: -![dependency-add-token-2](../assets/en/Project/dependency-add-token-2.png) +- Automatic and manual checking of available versions +- Automatic and manual updating of components -Solo puede introducir un token de acceso personal. Una vez se ha sido introducido un token, puede editarlo. +Manual operations can be done **per dependency** or **for all dependencies**. -### Eliminando una dependencia +#### Checking for new versions -To remove a dependency from the Dependencies panel, select the dependency to remove and click on the **-** button of the panel or select **Remove the dependency...** from the contextual menu. Puede seleccionar varias relaciones, en cuyo caso la acción se aplica a todas las relaciones seleccionadas. +Dependencies are regularly checked for updates on GitHub. This checking is done transparently in background. :::note -Sólo las dependencias declaradas en el archivo [**dependencies.json**](#dependenciesjson) pueden eliminarse mediante el panel Dependencias. Si no se puede eliminar una dependencia seleccionada, se desactiva el botón **-** y se oculta la opción de menú **Eliminar la dependencia...**. +If you provide an [access token](#providing-your-github-access-token), checks are performed more frequently, as GitHub then allows a higher frequency of requests to repositories. ::: -Aparece una caja de diálogo de confirmación. Si la dependencia se declaró en el archivo **environment4d.json**, una opción permite eliminarla: +In addition, you can check for updates at any moment, for a single dependency or for all dependencies: -![dependency-remove](../assets/en/Project/remove-comp.png) +- To check for updates of a single dependency, right-click on the dependency and select **Check for updates** in the contextual menu. -Si confirma la caja de diálogo, la dependencia eliminada [estado](#estado-dependencia) se marca automáticamente como "Descargar tras reinicio". Se descargará cuando se reinicie la aplicación. +![check component](../assets/en/Project/check-component-one.png) -### Origen de dependencia +- To check for updates of all dependencies, click on the **options** menu at the bottom of the Dependency manager window and select **Check for updates**. -El panel Dependencias enumera todas las dependencias del proyecto, sea cual sea su origen, es decir, de dónde procedan. El origen de la dependencia lo suministra la etiqueta bajo su nombre: +![check components](../assets/en/Project/check-component-all.png) -![dependency-origin](../assets/en/Project/dependency-origin.png) +If a new component version matching your [component versioning configuration](#defining-a-github-dependency-version-range) is detected on GitHub, a specific dependency status is displayed: -Las siguientes opciones de origen son posibles: +![dependency-new-version](../assets/en/Project/dependency-available.png) -| Etiqueta de origen | Descripción | -| --------------------------------- | ---------------------------------------------------------------------------------- | -| Componente 4D | Componente 4D integrado, almacenado en la carpeta `Components` de la aplicación 4D | -| dependencies.json | Componente declarado en el archivo [`dependencies.json`](#dependenciesjson) | -| Entorno | Componente declarado en el archivo [`environnement4d.json`](#environment4djson) | -| Componente del proyecto | Componente ubicado en la carpeta [`Components`](architecture.md#components) | +You can decide to [update the component](#updating-dependencies) or not. -**Clic derecho** en una línea de dependencia y selecciona **Mostrar en el disco** para revelar la ubicación de una dependencia: +If you do not want to use a component update (for example you want to stay with a specific version), just let the current status (make sure the [**Automatic update**](#automatic-update) feature is not checked). -![dependency-show](../assets/en/Project/dependency-show.png) +#### Updating dependencies -:::note +**Updating a dependency** means downloading a new version of the dependency from GitHub and keeping it ready to be loaded the next time the project is started. -Este elemento no se muestra si la relación está inactiva porque no se encuentran sus archivos. +You can update dependencies at any moment, for a single dependency or for all dependencies: -::: +- To update a single dependency, right-click on the dependency and select **Update \ on next startup** in the contextual menu or in the **options** menu at the bottom of the Dependency manager window: -El icono del componente y el logotipo de ubicación ofrecen información adicional: +![check component](../assets/en/Project/update-component-one.png) -- El logotipo del componente indica si es suministrado por 4D o por un desarrollador externo. -- Los componentes locales se pueden diferenciar de los componentes GitHub por un pequeño icono. +- To update all dependencies at once, click on the **options** menu at the bottom of the Dependency manager window and select **Update all remote dependencies on next startup**: -![dependency-origin](../assets/en/Project/dependency-github.png) +![check components](../assets/en/Project/update-component-all.png) -### Filtrado de dependencias +In any cases, whatever the current dependency status, an automatic checking is done on GitHub before updating the dependency, to make sure the most recent version is retrieved, [according to your component versioning configuration](#defining-a-github-dependency-version-range). -Por defecto, se listan todas las dependencias identificadas por el gestor de dependencias, sea cual sea su [estado](#dependency-status). Puede filtrar las dependencias mostradas según su estado seleccionando la pestaña correspondiente en la parte superior del panel Dependencias: +When you select an update command: -![dependency-tabs](../assets/en/Project/dependency-tabs.png) +- a dialog box is displayed and proposes to **restart the project**, so that the updated dependencies are immediately available. It is usually recommended to restart the project to evaluate updated dependencies. +- if you click Later, the update command is no longer available in the menu, meaning the action has been planned for the next startup. -- **Activo**: dependencias que están cargadas y pueden ser utilizadas en el proyecto. Incluye dependencias _overloading_, las cuales son realmente cargadas. Las dependencias _Overloaded_ se enumeran en el panel **Conflicts** junto con todas las dependencias en conflicto. -- **Inactivo**: dependencias que no están cargadas en el proyecto y no están disponibles. Hay muchas razones posibles para este estado: archivos que faltan, incompatibilidad de versiones... -- **Conflicto**: dependencias que se cargan pero que sobrecargan al menos otra dependencia de menor [nivel de prioridad](#prioridad). También se muestran las dependencias sobrecargadas para que pueda comprobar el origen del conflicto y tomar las medidas oportunas. +#### Automatic update -### Estado de dependencia +The **Automatic update** option is available in the **options** menu at the bottom of the Dependency manager window. -Las dependencias que requieren la atención del desarrollador se indican mediante una **etiqueta de estado** a la derecha de la línea y un color de fondo específico: +When this option is checked (default), new GitHub component versions matching your [component versioning configuration](#defining-a-github-dependency-version-range) are automatically updated for the next project startup. This option facilitates the day-to-day management of dependency updates, by eliminating the need to manually select updates. -![dependency-status](../assets/en/Project/dependency-conflict2.png) +When this option is unchecked, a new component version matching your [component versioning configuration](#defining-a-github-dependency-version-range) is only indicated as available and will require a [manual updating](#updating-dependencies). Unselect the **Automatic update** option if you want to monitor dependency updates precisely. -Las siguientes etiquetas de estado están disponibles: +### Providing your GitHub access token -- **Overloaded**: la dependencia no se carga porque está sobrecargada por otra dependencia con el mismo nombre en un [nivel de prioridad] superior(#prioridad). -- **Overloading**: la dependencia está cargada y está sobrecargando una o más dependencias con el mismo nombre en un [nivel de prioridad] inferior(#prioridad). -- **Not found**: la dependencia se declara en el archivo dependencies.json pero no se encuentra. -- **Inactive**: la dependencia no se carga porque no es compatible con el proyecto (por ejemplo, el componente no está compilado para la plataforma actual). -- **Duplicated**: la dependencia no se carga porque existe otra dependencia con el mismo nombre en la misma ubicación (y está cargada). -- **Disponible después del reinicio**: la referencia a dependencias acaba de ser añadida [usando la interfaz](#monitoring-project-dependencies), se cargará una vez que la aplicación se reinicie. -- **Descargado después de reiniciar**: la referencia de dependencias acaba de ser removida [utilizando la interfaz](#removing-a-dependency), se descargará una vez que la aplicación se reinicie. +Registering your personal access token in the Dependency manager is: -Al pasar el ratón por encima de la línea de dependencia, se muestra un mensaje que ofrece información adicional sobre el estado: +- mandatory if the component is stored on a [private GitHub repository](#private-repositories), +- recommended for a more frequent [checking of dependency updates](#updating-github-dependencies). -![dependency-tips](../assets/en/Project/dependency-tip1.png) +To provide your GitHub access token, you can either: + +- click on **Add a personal access token...** button that is displayed in the "Add a dependency" dialog box after you entered a private GitHub repository path. +- or, select **Add a GitHub personal access token...** in the Dependency manager menu at any moment. + +![dependency-add-token](../assets/en/Project/dependency-add-token.png) + +Luego puede introducir su token de acceso personal: + +![dependency-add-token-2](../assets/en/Project/dependency-add-token-2.png) + +Solo puede introducir un token de acceso personal. Una vez se ha sido introducido un token, puede editarlo. + +The provided token is stored in a **github.json** file in the [active 4D folder](../commands-legacy/get-4d-folder.md#active-4d-folder). + +### Eliminando una dependencia + +To remove a dependency from the Dependencies panel, select the dependency to remove and click on the **-** button of the panel or select **Remove the dependency...** from the contextual menu. Puede seleccionar varias relaciones, en cuyo caso la acción se aplica a todas las relaciones seleccionadas. + +:::note + +Sólo las dependencias declaradas en el archivo [**dependencies.json**](#dependenciesjson) pueden eliminarse mediante el panel Dependencias. Si no se puede eliminar una dependencia seleccionada, se desactiva el botón **-** y se oculta la opción de menú **Eliminar la dependencia...**. + +::: + +Aparece una caja de diálogo de confirmación. Si la dependencia se declaró en el archivo **environment4d.json**, una opción permite eliminarla: + +![dependency-remove](../assets/en/Project/remove-comp.png) + +Si confirma la caja de diálogo, la dependencia eliminada [estado](#estado-dependencia) se marca automáticamente como "Descargar tras reinicio". Se descargará cuando se reinicie la aplicación. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png index 87f2c7ec6cc15d..f350cb995a59fd 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png index 35222f97254a0d..cba6de249cf77a 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png new file mode 100644 index 00000000000000..723465a0e2af57 Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png index f4372b543ee6b7..8718fded2a0b4c 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png new file mode 100644 index 00000000000000..21e28b40a2becf Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png new file mode 100644 index 00000000000000..97e0485cac6531 Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png index 282eef4ee9e9f9..e3c0e17dd9d02b 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png new file mode 100644 index 00000000000000..723465a0e2af57 Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png new file mode 100644 index 00000000000000..34e97fb3ae5556 Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png index cf71bd2d50e871..ddc56eac8963bd 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png index 5790890448635f..a2bf8c9b7a7bce 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png index 3ebacf28c5868d..ba0f3543b2a69a 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png new file mode 100644 index 00000000000000..f2e18d4d1ae84c Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png new file mode 100644 index 00000000000000..ef983192ecd1c3 Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png index 704002e1efdbe2..62e449d25b5084 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png index b70d73b8d2d592..69183c18d0472b 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png new file mode 100644 index 00000000000000..e69c0a944123d4 Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png new file mode 100644 index 00000000000000..a28b341c2f5711 Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png new file mode 100644 index 00000000000000..7d703a9fdb9d0a Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png index aca6352b6228e0..894064ff9c279c 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png index 3a8dde7cb02f1d..560e17bb42a38e 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png index 9d43fe6bd4f506..3b750ab5dbaf05 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png index ed358b57e41768..d862bd91343a59 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png index 05788609ab8a91..50830ff5e6adcb 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png new file mode 100644 index 00000000000000..b37014fd85bc8b Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png index 34127bf5a3d063..2515791f19c790 100644 Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png new file mode 100644 index 00000000000000..8c88840165538b Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png new file mode 100644 index 00000000000000..3494e7faee10c5 Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png new file mode 100644 index 00000000000000..0c734b11774382 Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png differ diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md index a865fbf0ffd05f..b4efcb30cccf62 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md @@ -41,4 +41,13 @@ Desea detener el proceso seleccionado de la colección de procesos que se muestr #### Ver también -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1634 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort.md index f1da78343517a5..3b91e3ef01567e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort.md @@ -34,4 +34,13 @@ Aunque el comando ABORT está destinado a ser utilizado sólo desde un método d #### Ver también -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 156 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abs.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abs.md index 0d3df9a1d38a42..c4cefe4f6736c4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abs.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abs.md @@ -25,3 +25,13 @@ El siguiente ejemplo devuelve el valor absoluto de –10.3, que es 10.3: ```4d  vlVector:=Abs(-10.3) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 99 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accept.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accept.md index e621ec93ff5e72..fbf349a99ddbf9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accept.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accept.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ACCEPT** se utiliza en métodos de objeto o de formulario (o en subrutinas) para: @@ -37,4 +34,14 @@ El comando **ACCEPT** se permite en modo sin interfaz, en el contexto de las ár #### Ver también -[CANCEL](cancel.md) \ No newline at end of file +[CANCEL](cancel.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 269 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md index ce0a6e63dffa4a..5dccf5c0da79a9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción ACCUMULATE especifica los campos o variables a acumular en un informe realizado utilizando [PRINT SELECTION](print-selection.md "PRINT SELECTION"). @@ -37,4 +34,13 @@ Ver el ejemplo del comando [BREAK LEVEL](break-level.md "BREAK LEVEL"). [BREAK LEVEL](break-level.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 303 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md index 48e40b2a258c83..752cef720af054 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md @@ -64,4 +64,13 @@ Desea saber si la acción copiar está disponible (es decir, si se han seleccion #### Ver también [INVOKE ACTION](invoke-action.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1442 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activated.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activated.md index 6d0d1ef9dd833f..b6bd2d291b6f2e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activated.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Activated** (obsoleto) devuelve **True** en un método formulario cuando la ventana que contiene el formulario se convierte en la ventana del primer plano del proceso del primer plano. @@ -29,4 +26,13 @@ displayed_sidebar: docs #### Ver también [Deactivated](deactivated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 346 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md index f532735731e5e8..95870fdd69c96e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md @@ -42,4 +42,13 @@ Usted quiere conocer el estado de la transacción actual: [In transaction](in-transaction.md) [RESUME TRANSACTION](resume-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspender las transacciones* \ No newline at end of file +*Suspender las transacciones* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1387 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md index 0f4c6314a1f9cb..2aa40599af8810 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md @@ -104,3 +104,13 @@ Este método, ejecutado en un proceso separado en 4D o 4D Server, ofrece una ins Obtiene arrays del tipo: ![](../assets/en/commands/pict1213741.es.png) + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1277 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md index f387d5db7f023d..a611f181f6dd8e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Compatibilidad **Este comando se implementó en las primeras versiones de 4D y sigue siendo útil para la creación de prototipos o desarrollos básicos. Sin embargo, para construir interfaces personalizadas y modernas, ahora se recomienda utilizar formularios genéricos basados en el comando [DIALOG](../commands/dialog.md) que ofrecen funciones avanzadas y un mejor control sobre el flujo de datos.* @@ -91,4 +88,17 @@ La variable sistema OK toma el valor 1 si se acepta el registro y 0 si se cancel [CANCEL](cancel.md) [CREATE RECORD](create-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 56 | +| Hilo seguro | ✗ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md index 0b327f2a052f9d..9e97499a87ead3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md @@ -35,3 +35,13 @@ Aunque usted puede utilizar los *Operadores de fechas* para añadir días a una   // Esta línea hace lo mismo que $vdMañana:=Current date+1  $vdMañana:=Add to date(Current date;0;0;1) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 393 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md index c290273ba0524d..dd32601f351284 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver también -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 119 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md index 4a50a9e2d3ad20..59b3e34f2ca49e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md @@ -52,4 +52,13 @@ Usted desea cambiar temporalmente la prioridad de la caché de los campos de tex #### Ver también [Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1431 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md index 710685b9e3fba6..8f14bca57e2f91 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md @@ -51,4 +51,13 @@ Usted desea cambiar temporalmente la prioridad de la caché para el índice de c #### Ver también [Get adjusted index cache priority](get-adjusted-index-cache-priority.md) -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1430 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md index 342777ef70b69a..54e29fab16743d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md @@ -50,4 +50,13 @@ Usted desea cambiar temporalmente la prioridad de la caché de los campos escala #### Ver también [Get adjusted table cache priority](get-adjusted-table-cache-priority.md) -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1429 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/after.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/after.md index 18c050a13b5579..10e9372b4a2429 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/after.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/after.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **After** devuelve True para el ciclo de ejecución After. @@ -26,4 +23,13 @@ Para que el ciclo de ejecución **After** se genere, asegúrese de que la propie #### Ver también -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 31 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/alert.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/alert.md index 9dc5bb4f5ec60d..87c384b72893d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/alert.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/alert.md @@ -66,4 +66,13 @@ Muestra la siguiente caja de diálogo de alerta (en Windows): [CONFIRM](confirm.md) [DISPLAY NOTIFICATION](display-notification.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 41 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md index 68ca6a4d584aca..b806e75033720e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md @@ -33,4 +33,15 @@ El siguiente ejemplo muestra todos los registros de la tabla \[Personas\]: [ORDER BY](order-by.md) [QUERY](query.md) [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 47 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md index e2fa45f9e992bb..746822d1b88778 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando APPEND DATA TO PASTEBOARD añade en el portapapeles los datos del tipo especificado en *tipoDatos* en el BLOB *datos*. @@ -217,4 +214,14 @@ Si los datos en el BLOB se añaden correctamente al portapapeles, la variable si [CLEAR PASTEBOARD](clear-pasteboard.md) [SET PICTURE TO PASTEBOARD](set-picture-to-pasteboard.md) -[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) \ No newline at end of file +[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 403 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md index 17589884412e66..b1a0052af6569b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md @@ -37,4 +37,14 @@ El siguiente ejemplo abre un documento existente llamado Nota, añade la cadena #### Ver también [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 265 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md index a6d6434dfbef97..aab6e8596f3530 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **APPEND MENU ITEM** añade nueva líneas de menú al menú cuyo número o referencia se pasa en *menu*. @@ -82,4 +79,14 @@ Entonces, en todo método de formulario o de proyecto, puede escribir: [DELETE MENU ITEM](delete-menu-item.md) [INSERT MENU ITEM](insert-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 411 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md index ce7664fc31a4a6..517d1ee8f95666 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md @@ -42,4 +42,13 @@ El siguiente código: #### Ver también [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 911 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md index 86c4dfcbb4ab6c..5488b7728d23e8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando APPEND TO LIST añade un nuevo elemento a la lista jerárquica cuyo número de referencia se pasa en *lista*. @@ -155,4 +152,13 @@ Cuando el formulario se ejecuta, la lista se verá de esta forma: [INSERT IN LIST](insert-in-list.md) [SET LIST ITEM](set-list-item.md) [SET LIST ITEM PARAMETER](set-list-item-parameter.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 376 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md index 40329c83064967..36235f5ca0acdd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md @@ -40,4 +40,13 @@ Al iniciar su base de datos en Windows, necesita verificar si una librería DLL #### Ver también [Data file](data-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 491 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md index d760095f6215dd..50ce65bcd8c976 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md @@ -130,4 +130,13 @@ Si el código se ejecuta en 4D Server, el objeto contiene (por ejemplo): [Execute on server](execute-on-server.md) [Get database parameter](get-database-parameter.md) [System info](system-info.md) -[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) \ No newline at end of file +[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1599 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md index 71dffd2da2221f..841f57254f75e0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md @@ -41,4 +41,13 @@ En alguna parte de su código, diferente del *Método base On Server Startup*, d #### Ver también [Application version](application-version.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 494 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md index d29c8a93d5e657..877345cce82da2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md @@ -119,4 +119,13 @@ Usted desea utilizar el valor de la versión corta de la aplicación devuelto po #### Ver también [Application type](application-type.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 493 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md index 287611f352f646..47286db2a823f9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md @@ -61,4 +61,14 @@ Si el usuario hace clic en el botón Detener en el termómetro de progresión, l #### Ver también *Conjuntos* -[EDIT FORMULA](edit-formula.md) \ No newline at end of file +[EDIT FORMULA](edit-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 70 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md index ab344f1cb73992..74e57cae8a7834 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -Arctan devuelve el ángulo, expresado en radianes, de la tangente *número*. - -**Nota:** 4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...) y Radian devuelve el valor en grados de un radián (57.29577...). +Arctan devuelve el ángulo, expresado en radianes, de la tangente *número*.4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...) y Radian devuelve el valor en grados de un radián (57.29577...). #### Ejemplo @@ -32,4 +30,13 @@ El siguiente ejemplo muestra el valor de Pi: [Cos](cos.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 20 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md index d49ee7728e0216..5a22492603b7a7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md @@ -59,4 +59,13 @@ Este ejemplo crea un array local de 100 filas, conteniendo cada una 50 elementos #### Ver también -*Creación de arrays* \ No newline at end of file +*Creación de arrays* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1222 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md index bbf6b5572784d1..fdddac9bb1d39c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY BOOLEAN crea y/o redimensiona un array de elementos *Booleanos* en memoria. - -* El parámetro *arrayName* es el nombre del array. +El comando ARRAY BOOLEAN crea y/o redimensiona un array de elementos *Booleanos* en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si se especifica *tamaño2*, el comando crea un array bidimensional. @@ -61,4 +59,13 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo [Booleano](# "Ca #### Ver también -[ARRAY INTEGER](array-integer.md) \ No newline at end of file +[ARRAY INTEGER](array-integer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 223 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md index 165fa5f8b34037..8288aeeefd1e99 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY DATE crea y/o redimensiona un array de elementos de tipo Fecha en memoria. - -* El parámetro *nombreArray* es el nombre del array. +El comando ARRAY DATE crea y/o redimensiona un array de elementos de tipo Fecha en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si se especifica *tamaño2*, el comando crea un array bidimensional. En este caso, *tamaño* especifica el número de filas y *tamaño2* especifica el número de columnas en cada array. Cada fila en un array bidimensional puede tratarse como un elemento y como un array. Esto significa que mientras trabaja con la primera dimensión del array, puede utilizar otros comandos de array para insertar y borrar arrays enteros en un array bidimensional. @@ -54,3 +52,13 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo Fecha y asigna a     ◊adValores{$vlElem}:=Current date+$vlElem  End for ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 224 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md index 56b4729b46f632..645012636753c4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY INTEGER crea y/o redimensiona un array de elementos de tipo [Entero](# "Number between -32,768..32,767 (2^15..(2^15)-1) (2-byte integer)") de 2 bytes en memoria. - -* El parámetro *nombreArray* es el nombre del array. +El comando ARRAY INTEGER crea y/o redimensiona un array de elementos de tipo [Entero](# "Number between -32,768..32,767 (2^15..(2^15)-1) (2-byte integer)") de 2 bytes en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si especifica *tamaño2*, el comando crea un array de dos dimensiones. En este caso, *tamaño* especifica el número de filas y *tamaño2* el número de columnas en cada array. Cada fila en un array de dos dimensiones puede tratarse como un elemento y como un array. Esto significa que mientras trabaja con la primera dimensión del array, puede utilizar otros comando de array para insertar y borrar arrays enteros en un array de dos dimensiones. @@ -58,4 +56,13 @@ Este ejemplo crea un array interproceso de 2 bytes de 50 elementos de tipo [Ente #### Ver también [ARRAY LONGINT](array-longint.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 220 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md index 8c2b3c19002e64..13d3ea17c93190 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY LONGINT crea y/o redimensiona un array de elementos de tipo [Entero largo](# "Entre -2 millardos y +2 millardos") de 4 bytes en memoria. - -* El parámetro *nombreArray* es el nombre del Array. +El comando ARRAY LONGINT crea y/o redimensiona un array de elementos de tipo [Entero largo](# "Entre -2 millardos y +2 millardos") de 4 bytes en memoria.es el nombre del Array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamañoi2* es opcional; si se especifica *tamaño2*, el comando crea un array de dos dimensiones. En este caso, *tamaño* especifica el número de filas y *tamaño2* el número de columnas en cada array. Cada fila en un array de dos dimensiones puede tratarse como un elemento y un array. Esto significa que mientras trabaja con la primera dimensión del arrray, puede utilizar otros comandos de array para insertar y borrar arrays completos en un array de dos dimensiones. @@ -58,4 +56,13 @@ Este ejemplo crea un array interproceso de 4 bytes de 50 elementos de tipo [Ente #### Ver también [ARRAY INTEGER](array-integer.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 221 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md index 57c525339a7469..fa78cfad9d7d52 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md @@ -68,4 +68,13 @@ Creación y llenado de un array local de objetos: [C\_OBJECT](c-object.md) *Creación de arrays* -*Objetos (Lenguaje)* \ No newline at end of file +*Objetos (Lenguaje)* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1221 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md index c7b4b1e21ab8b5..34a7acfaf71e4e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY PICTURE crea y/o redimensiona un array de elementos de tipo [Imagen](# "Can be any Windows or Macintosh picture") en memoria. - -* El parámetro *nombreArray* es el nombre del array. +El comando ARRAY PICTURE crea y/o redimensiona un array de elementos de tipo [Imagen](# "Can be any Windows or Macintosh picture") en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si se especifica *tamaño2*, el comando crea un array bidimensional. En este caso, *tamaño* especifica el número de filas y *tamaño2* especifica el número de columnas en cada array. Cada fila en un array bidimensional puede tratarse como un elemento y como un array. Esto significa que mientras trabaja con la primera dimensión del array, puede utilizar otros comandos de array para insertar y borrar arrays enteros en un array bidimensional. @@ -61,3 +59,13 @@ Este ejemplo crea un array interpcoceso de elementos de tipo [Imagen](# "Can be  End for  ARRAY PICTURE(◊agValores;$vlPictElem) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 279 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md index ffba983913c08e..1087897e6bfe43 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY POINTER crea o redimensiona un array de elementos de tipo [Puntero](# "A reference to another variable (including arrays and array elements), table, or field") en memoria. - -* El parámetro *nombreArray* es el nombre del array. +El comando ARRAY POINTER crea o redimensiona un array de elementos de tipo [Puntero](# "A reference to another variable (including arrays and array elements), table, or field") en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si se especifica *tamaño2*, el comando crea un array bidimensional. En este caso, *tamaño* especifica el número de filas y *tamaño2* especifica el número de columnas en cada array. Cada fila en un array bidimensional puede tratarse como un elemento y como un array. Esto significa que mientras trabaja con la primera dimensión del array, puede utilizar otros comandos de array para insertar y borrar arrays enteros en un array bidimensional. @@ -56,3 +54,13 @@ Este ejemplo crea un array interproceso de elementos de tipo [Puntero](# "A refe     End if  End for ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 280 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md index f84460f8dd47f8..40bc0e4826d4a3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md @@ -58,4 +58,13 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo Real y asigna a #### Ver también [ARRAY INTEGER](array-integer.md) -[ARRAY LONGINT](array-longint.md) \ No newline at end of file +[ARRAY LONGINT](array-longint.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 219 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md index 0ed194a7edb73f..3e5fbb9c9a5b00 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY TEXT crea y/o redimensiona un array de elementos de tipo [Texto](# "A character string that may contain from 0 to 2 GB of text") en memoria. - -* El parámetro *nombreArray* es el nombre del array. +El comando ARRAY TEXT crea y/o redimensiona un array de elementos de tipo [Texto](# "A character string that may contain from 0 to 2 GB of text") en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si se especifica *tamaño2*, el comando crea un array bidimensional. En este caso, *tamaño* especifica el número de filas y *tamaño2* especifica el número de columnas en cada array. Cada fila en un array bidimensional puede tratarse como un elemento y como un array. Esto significa que mientras trabaja con la primera dimensión del array, puede utilizar otros comandos de array para insertar y borrar arrays enteros en un array bidimensional. @@ -55,3 +53,13 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo texto y asigna a  End for ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 222 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md index 78846344051838..58f6dd82bd3190 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **ARRAY TIME** crea o redimensiona una array de tipo tiempo en memoria. - -**Recordatorio:** en 4D, las horas pueden ser procesados ​​como valores numéricos . En las versiones de 4D anteriores a v14, había que combinar un array entero largo con un formato de visualización para gestionar una array de horas. +El comando **ARRAY TIME** crea o redimensiona una array de tipo tiempo en memoria.en 4D, las horas pueden ser procesados ​​como valores numéricos . En las versiones de 4D anteriores a v14, había que combinar un array entero largo con un formato de visualización para gestionar una array de horas. El parámetro *nomArray* es el nombre del array. @@ -64,4 +62,13 @@ Como los arrays de horas aceptan valores numéricos, el siguiente código es vá #### Ver también *Creación de arrays* -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1223 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md index 9f4175e6fbe363..d165b181932bb1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md @@ -81,4 +81,13 @@ Desea copiar una array texto en una colección compartida: #### Ver también [COLLECTION TO ARRAY](collection-to-array.md) -*Conversiones de tipo entre las colecciones y los arrays 4D* \ No newline at end of file +*Conversiones de tipo entre las colecciones y los arrays 4D* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1563 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md index cc25b46ce7ba8c..54ed79c2ff92f7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ARRAY TO LIST crea o reemplaza la lista jerárquica o la *lista* utilizando los elementos del *array* *.* @@ -62,4 +59,14 @@ El comando ARRAY TO LIST genera el error *\-9957* cuando se aplica a una lista q [LIST TO ARRAY](list-to-array.md) [Load list](load-list.md) [ON ERR CALL](on-err-call.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 287 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md index c289cad23882b7..2e86b162fef5f9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md @@ -79,4 +79,14 @@ Usted desea copiar una selección de registros a una tabla archivo seleccionando #### Ver también [SELECTION TO ARRAY](selection-to-array.md) -*Variables sistema* \ No newline at end of file +*Variables sistema* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 261 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/assert.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/assert.md index f03dd2efb7984e..c87eb9cef86c9d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/assert.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/assert.md @@ -56,4 +56,14 @@ Una aserción permite probar los parámetros pasados a un método de proyecto pa [Asserted](asserted.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1129 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md index 6fbd78636b8f9e..610cfa42df3e2e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md @@ -40,4 +40,14 @@ Inserción de una aserción en la evaluación de una expresión: [ASSERT](assert.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1132 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/average.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/average.md index 43bdb092ee1b75..268cf89d8b2ffd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/average.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/average.md @@ -88,4 +88,14 @@ Puede hacer los siguientes cálculos: [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) [Subtotal](subtotal.md) -[Sum](sum.md) \ No newline at end of file +[Sum](sum.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 2 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md index b3eb5cfb61e7af..49eaf1cc14ff43 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md @@ -30,4 +30,13 @@ Pase el tipo de información a obtener en *selector*. El tipo y el contenido de #### Ver también -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 888 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup.md index db378cddc150c9..22627e285b819b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando BACKUP inicia el backup de la base de datos utilizando los parámetros de copia de seguridad actuales. No aparece una caja de diálogo de confirmación; sin embargo, aparece una barra de progreso en la pantalla. @@ -39,4 +36,14 @@ En caso de que se presenten incidentes durante el backup, la información relati [BACKUP INFO](backup-info.md) *Método de base de datos On Backup Startup* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 887 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md index 2acf7ef623a510..e42beb31bee621 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md @@ -54,4 +54,13 @@ Este ejemplo le permite transferir una imagen vía un BLOB: [BASE64 ENCODE](base64-encode.md) [Generate digest](generate-digest.md) *Presentación de los comandos XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 896 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md index dd78659fad4615..31826df49a1178 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md @@ -37,4 +37,13 @@ Por defecto, si se omite el parámetro *\**, el comando utiliza una codificació [BASE64 DECODE](base64-decode.md) [Generate digest](generate-digest.md) *Presentación de los comandos XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 895 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/beep.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/beep.md index 9c07ec24766ddc..1ca8b9de4aecb1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/beep.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/beep.md @@ -32,4 +32,13 @@ En el siguiente ejemplo, si una búsqueda no encuentra ningún registro, se emit #### Ver también -[PLAY](play.md) \ No newline at end of file +[PLAY](play.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 151 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md index e065f5a5d87fb9..a54709552b881a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Descripción -**Before selection** devuelve TRUE cuando el puntero del registro actual se encuentra antes del primer registro de la selección actual de *tabla*.**Before selection** generalmente es utilizado para verificar si el comando [PREVIOUS RECORD](previous-record.md) ha movido el puntero del registro actual antes del primer registro. Si la selección actual está vacía, **Before selection** devuelve TRUE. +**Before selection** devuelve TRUE cuando el puntero del registro actual se encuentra antes del primer registro de la selección actual de *tabla*.generalmente es utilizado para verificar si el comando [PREVIOUS RECORD](previous-record.md) ha movido el puntero del registro actual antes del primer registro. Si la selección actual está vacía, **Before selection** devuelve TRUE. Para mover el puntero del registro actual a la selección, utilice los comandos [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) o [GOTO SELECTED RECORD](goto-selected-record.md). [NEXT RECORD](next-record.md) no mueve el puntero a la selección. @@ -61,4 +61,13 @@ Este método de formulario se utiliza durante la impresión de un informe. Defin [FIRST RECORD](first-record.md) [Form event code](../commands/form-event-code.md) [PREVIOUS RECORD](previous-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 198 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before.md index d84ac895a11997..0831beb65dd813 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Before** devuelve True para el ciclo de ejecución Before. @@ -26,4 +23,13 @@ Para que el ciclo de ejecución **Before** se genere, asegúrese de que la propi #### Ver también -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 29 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md index 70f32a807260c8..98436c4399348a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md @@ -44,4 +44,13 @@ Note que el *Depurador* 4D evaluará el código SQL línea por línea. En alguno [End SQL](end-sql.md) [SQL Get current data source](sql-get-current-data-source.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 948 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md index 33e38870cd47fb..7d5e0b8f6ed023 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md @@ -76,4 +76,13 @@ Después de añadir este método a su aplicación, lo puede utilizar de esta man #### Ver también [COMPRESS BLOB](compress-blob.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 536 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md index b3b3fd6ef124b0..b24524a0b9e44f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md @@ -28,4 +28,13 @@ La línea de código añade 100 bytes al BLOB *miBlob*: #### Ver también -[SET BLOB SIZE](set-blob-size.md) \ No newline at end of file +[SET BLOB SIZE](set-blob-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 605 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md index 2912e6b289a22b..eb3c8befa46850 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md @@ -49,4 +49,14 @@ En todos los casos, puede interceptar el error utilizando un método de interrup [Create document](create-document.md) [DOCUMENT TO BLOB](document-to-blob.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 526 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md index 72989821a599f3..e97d8ce0746d5b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md @@ -58,4 +58,13 @@ El siguiente ejemplo lee 20 valores enteros de un BLOB, a partir del offset 0x20 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 549 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md index 3a3c5884364be1..e5ad7c362e873b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando BLOB to list crea una nueva lista jerárquica con los datos almacenados en el BLOB *blob* en el offset de bytes (a partir de cero) especificado por *offset* y devuelve un número de referencia de lista jerárquica para esa nueva lista. @@ -61,4 +58,14 @@ La variable OK toma el valor 1 si la lista se crea correctamente, de lo contrari #### Ver también -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 557 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md index 607041240d0c65..e33d7fba74b5b2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md @@ -57,4 +57,13 @@ El siguiente ejemplo lee 20 valores de tipo entero largo de un BLOB, a partir de [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 551 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md index 0f77c825117636..ddedcf13fb4e8a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md @@ -50,4 +50,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. [PICTURE CODEC LIST](picture-codec-list.md) [PICTURE TO BLOB](picture-to-blob.md) -[READ PICTURE FILE](read-picture-file.md) \ No newline at end of file +[READ PICTURE FILE](read-picture-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 682 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md index f7fee913c98cd2..7a17548ade7d31 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **BLOB to print settings** reemplaza los parámetros de impresión actuales de 4D por los parámetros almacenados en el BLOB *confImpr*. Este BLOB debe haber sido generado por el comando [Print settings to BLOB](print-settings-to-blob.md) o por el comando 4D Pack 4D Pack (ver abajo). @@ -77,4 +74,13 @@ Usted desea aplicar la configuración de impresión guardada en el disco para el #### Ver también -[Print settings to BLOB](print-settings-to-blob.md) \ No newline at end of file +[Print settings to BLOB](print-settings-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1434 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md index 8ae0b4f8050193..8e2a5a07c4b6bc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md @@ -58,4 +58,13 @@ El siguiente ejemplo lee 20 valores reales de un BLOB, a partir del offset 0x200 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 553 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md index 27c91cef98105d..b7ba7bb1d1a18f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md @@ -59,4 +59,13 @@ Después de la ejecución del comando, la variable se incrementa en el número d [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 555 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md index 071e4dcdc34cf6..6e2d8950dfb51e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando BLOB TO USERS remplaza las cuentas usuarios y los grupos presentes en el BLOB *usuarios* en la base actual. El BLOB *usuarios* está encriptado y debe haber sido creado utilizando el comando [USERS TO BLOB](users-to-blob.md). @@ -49,4 +46,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[USERS TO BLOB](users-to-blob.md) \ No newline at end of file +[USERS TO BLOB](users-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 850 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md index 14a398eeebaaad..1655046296440b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md @@ -40,4 +40,14 @@ La variable OK toma el valor 1 si la variable ha sido reescrita correctamente, d #### Ver también -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 533 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bool.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bool.md index 407bb4f46f11d1..5eca913db426e6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bool.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bool.md @@ -46,4 +46,13 @@ Selecciona un valor dependiendo del contenido de un atributo de campo de objeto, [Date](date.md) [Num](num.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1537 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md index b316548dac510f..2cb4372677390c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md @@ -31,4 +31,13 @@ Si no pasa el parámetro *conjunto*, el comando utilizará UserSet en el proceso #### Ver también -[CREATE SET FROM ARRAY](create-set-from-array.md) \ No newline at end of file +[CREATE SET FROM ARRAY](create-set-from-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 646 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md index 8e643d0fb45ccd..0a46f5a6448673 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción BREAK LEVEL especifica el número de niveles de ruptura en un informe realizado utilizando [PRINT SELECTION](print-selection.md "PRINT SELECTION"). @@ -46,4 +43,13 @@ El siguiente ejemplo imprime un informe con dos niveles de ruptura. La selecció [ACCUMULATE](accumulate.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 302 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md index b2a99934a5be15..e34d1c62b0c254 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción BRING TO FRONT pasa todas las ventanas que pertenecen a *process* al primer plano. Si el proceso ya está en el primer plano, el comando no hace nada. Si el proceso está oculto, debe utilizar [SHOW PROCESS](show-process.md) para mostrar el proceso, de lo contrario BRING TO FRONT no tiene efecto. @@ -38,4 +35,13 @@ El siguiente ejemplo es un método que puede ser ejecutado desde un menú. Él v [HIDE PROCESS](hide-process.md) [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 326 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md index 3a8cdbb376ced5..f47512240e6920 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando BUILD APPLICATION lanza el proceso de generación de la aplicación teniendo en cuenta los parámetros definidos en el proyecto de aplicación actual o en el proyecto de aplicación designado por el parámetro *nomProyecto*. @@ -53,4 +50,15 @@ Si el comando falla, se genera un error que puede interceptar con la ayuda del c #### Ver también -[Compile project ](../commands/compile-project.md) \ No newline at end of file +[Compile project ](../commands/compile-project.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 871 | +| Hilo seguro | ✗ | +| Modifica variables | OK, Document, error | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md index 0c4588a9a5af48..de5607d3118c53 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md @@ -52,4 +52,13 @@ Usted quiere obtener información de la caché de la base de datos y todos los c #### Ver también -[MEMORY STATISTICS](memory-statistics.md) \ No newline at end of file +[MEMORY STATISTICS](memory-statistics.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1402 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md index 42cac1b967050d..b737f730344277 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md @@ -48,3 +48,13 @@ Si se ejecuta un método de objeto de formulario, la cadena de llamadas podría ```json [   {    "type":"formObjectMethod",    "name":"detailForm.Button",    "line":1,    "database":"myDatabase"   },   {    "type":"formMethod",    "name”:"detailForm",    "line":2,    "database":"myDatabase"   },   {    "type":"projectMethod",    "name”:"showDetailForm",    "line":2,    "database":"myDatabase”   }] ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1662 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md index b55967a703cd2e..790de261e570d3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md @@ -100,4 +100,13 @@ Luego puede añadir otros mensajes ejecutando el comando **CALL FORM** nuevament [CALL WORKER](call-worker.md) -[DIALOG](../commands/dialog.md) \ No newline at end of file +[DIALOG](../commands/dialog.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1391 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md index 61479fcd882a7e..11a013306736f5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CALL SUBFORM CONTAINER** permite a una instancia de subformulario enviar el *evento* al objeto subformulario que lo contiene. El objeto subformulario puede entonces procesar el *evento* en el contexto del formulario padre. @@ -31,4 +28,13 @@ En *evento*, puede pasar todo evento de formulario predefinido de 4D (puede util #### Ver también [Form event code](../commands/form-event-code.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1086 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md index 9597996f00c65b..8c213c53c0530d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md @@ -73,7 +73,16 @@ El código de *workerMethod* es: #### Ver también -[CALL FORM](../commands/call-form.md) +[CALL FORM](call-form.md) [Current process name](current-process-name.md) [KILL WORKER](kill-worker.md) -*Sobre workers* \ No newline at end of file +*Sobre workers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1389 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md index 04e97f6b77a938..6862b5bad5df42 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md @@ -14,7 +14,7 @@ displayed_sidebar: docs #### Descripción -**CANCEL TRANSACTION** anula la transacción abierta por el comando [START TRANSACTION](start-transaction.md) del nivel correspondiente en el proceso actual. **CANCEL TRANSACTION** anula todas las operaciones que llegaran a ejecutarse en los datos durante la transacción. +**CANCEL TRANSACTION** anula la transacción abierta por el comando [START TRANSACTION](start-transaction.md) del nivel correspondiente en el proceso actual.anula todas las operaciones que llegaran a ejecutarse en los datos durante la transacción. **Nota:** **CANCEL TRANSACTION** no tiene efecto en las posibles modificaciones efectuadas en los registros actuales que no se guardaron, se siguen mostrando después de la ejecución del comando. @@ -24,4 +24,13 @@ displayed_sidebar: docs [START TRANSACTION](start-transaction.md) [Transaction level](transaction-level.md) *Utilización de transacciones* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 241 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md index 9759528f0ab074..1c006295512805 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CANCEL** se utiliza en métodos de objeto o de formulario (o en una subrutina) para: @@ -52,4 +49,14 @@ Cuando el comando CANCEL se ejecuta (anulación de formulario o de impresión), [ACCEPT](accept.md) [PAGE BREAK](page-break.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 270 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md index dbcdda9bc3fc1b..478be341ecbd4e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md @@ -28,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 547 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md index c230d034a45490..a75f406f59abf7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción CHANGE CURRENT USER permite cambiar la identidad del usuario actual en la base, sin tener que salir. El usuario puede cambiar su identidad utilizando la caja de diálogo de identificación del usuario de la base (cuando el comando se llama sin parámetros) o directamente vía el comando. Cuando un usuario cambia su identidad, el usuario abandona sus privilegios de acceso anteriores para beneficiarse de los del usuario elegido. @@ -73,4 +70,13 @@ El siguiente ejemplo muestra la caja de diálogo de conexión: #### Ver también [CHANGE PASSWORD](change-password.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 289 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md index 83732d923ae2de..6fd37d96d702ce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando CHANGE LICENSES muestra la caja de diálogo de gestión de licencias 4D. @@ -41,4 +38,14 @@ De esta forma un usuario puede activar licencias sin tener que modificar la base #### Ver también [License info](license-info.md) -[Is license available](is-license-available.md) \ No newline at end of file +[Is license available](is-license-available.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 637 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md index 76314a22f0207b..202344ef6d6705 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción CHANGE PASSWORD cambia la contraseña del usuario actual. Este comando reemplaza la contraseña actual con la nueva contraseña que se pasa en *contraseña*. @@ -44,4 +41,13 @@ El siguiente ejemplo permite al usuario cambiar su contraseña. #### Ver también [CHANGE CURRENT USER](change-current-user.md) -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 186 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md index c1c3e13e549104..8caf3d5c9996d7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md @@ -37,4 +37,13 @@ El siguiente ejemplo ilustra el uso de Change string. Los resultados se asignan [Delete string](delete-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 234 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/char.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/char.md index 760c30d0e7e3ed..515f1fe40bfe0c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/char.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/char.md @@ -34,4 +34,13 @@ El siguiente ejemplo utiliza Char para insertar un retorno de carro en el texto [Character code](character-code.md) *Códigos Unicode* -*Símbolos de referencia de caracteres* \ No newline at end of file +*Símbolos de referencia de caracteres* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 90 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md index 442b7be062e322..e4c6eedf71cbc5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md @@ -80,4 +80,13 @@ El segundo código se ejecuta más rápido por dos razones: sólo referencia un #### Ver también [Char](char.md) -*Símbolos de referencia de caracteres* \ No newline at end of file +*Símbolos de referencia de caracteres* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 91 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md index a36e4906d1720b..87c7eb7296c00d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CHECK LOG FILE** muestra la caja de diálogo de visulización del archivo de historial actual de la base (accesible también vía la ventana del Centro de seguridad y mantenimiento): @@ -36,4 +33,14 @@ Puede interceptar estos errores utilizando un método de manejo de errores insta #### Ver también *Errores de gestión de backup* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 799 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/choose.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/choose.md index a06ffca9fe3a0d..3e307950e9c086 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/choose.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/choose.md @@ -78,3 +78,13 @@ Este código es estrictamente equivalente a:        vEstado:="Separado"  End case ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 955 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md index 56bccd29cb9125..9418959454e073 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando CLEAR LIST borra de la memoria la lista jerárquica cuyo número de referencia se pasa en *lista*. @@ -55,4 +52,13 @@ Ver el ejemplo del comando [BLOB to list](blob-to-list.md "BLOB to list"). [BLOB to list](blob-to-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 377 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md index ac63be097ec000..ae1d6e038e1188 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md @@ -23,4 +23,13 @@ Si *temp* fue creado por el comando [CUT NAMED SELECTION](cut-named-selection.md [COPY NAMED SELECTION](copy-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 333 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md index eeb734a6bcacc5..9671908542cafb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando CLEAR PASTEBOARD borra el contenido del portapapeles. Si el portapapeles contiene múltiples instancias de los mismos datos, todas las instancias se borran. Después de llamar a CLEAR PASTEBOARD, el portapapeles queda vacío. @@ -41,4 +38,13 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard #### Ver también -[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) \ No newline at end of file +[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 402 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md index 643a55a109d70c..c36b9786b745b2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md @@ -27,4 +27,13 @@ Ver el ejemplo de [Semaphore](semaphore.md "Semaphore"). *Semáforos y señales* [Semaphore](semaphore.md) -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 144 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md index 4093327bb3a4f4..d0b85c1846a0cf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md @@ -25,4 +25,13 @@ Ver el ejemplo del comando [USE SET](use-set.md "USE SET"). [CREATE EMPTY SET](create-empty-set.md) [CREATE SET](create-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 117 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md index 3abe1d693d761e..0bc3f89c32cb9e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md @@ -43,4 +43,13 @@ En un formulario, utilice una lista desplegable llamada *asMiListaDesplegable* c #### Ver también -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 89 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md index 6aeeec77adf950..bd9fd2758c727d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Clickcount** devuelve, en el contexto de un evento clic, el número de veces que el usuario ha hecho clic de manera repetida con el mismo botón del ratón. Normalmente, este comando devuelve 2 para un doble clic. @@ -61,3 +58,13 @@ Las etiquetas no son editables pero lo son después de un triple-clic. Si desea     End case  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1332 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md index af55dd3329adcf..b575df5ab92d67 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md @@ -36,4 +36,13 @@ El siguiente ejemplo permite al usuario crear un nuevo documento, escribe la cad [Append document](append-document.md) [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 267 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md index 9a1bc50e39238e..d1e405ea58eed1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CLOSE PRINTING JOB** permite cerrar el trabajo de impresión previamente abierto por el comando [OPEN PRINTING JOB](open-printing-job.md) y enviar a la impresora actual el documento de impresión creado. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver también -[OPEN PRINTING JOB](open-printing-job.md) \ No newline at end of file +[OPEN PRINTING JOB](open-printing-job.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 996 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md index 48fcfc198fcb01..2fd3604bc46e5a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CLOSE RESOURCE FILE** cierra el archivo de recursos cuyo número de referencia se pasa en *resArchivo*. @@ -30,4 +27,13 @@ Recuerde llamar finalmente **CLOSE RESOURCE FILE** para un archivo de recursos q #### Ver también -[Open resource file](open-resource-file.md) \ No newline at end of file +[Open resource file](open-resource-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 498 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md index da273447300914..f041e9c388e1c0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción CLOSE WINDOW cierra la ventana activa abierta por el comando [Open window](open-window.md "Open window") u [Open form window](open-form-window.md "Open form window") en el proceso actual. CLOSE WINDOW no hace nada si no hay una ventana personalizada abierta; no cierra las ventanas sistema. CLOSE WINDOW tampoco tiene efecto si se llama mientras que un formulario esté activo en la ventana. Debe llamar CLOSE WINDOW cuando haya terminado de utilizar una ventana abierta por [Open window](open-window.md "Open window") u Open form window. @@ -38,4 +35,13 @@ El siguiente ejemplo abre una ventana formulario y crea nuevos registros con el #### Ver también [Open form window](open-form-window.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 154 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md index 43531521fa05d2..6bd4bb6e565387 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md @@ -64,4 +64,13 @@ Desea copiar diferentes valores de propiedad de una colección de objetos en dif #### Ver también [ARRAY TO COLLECTION ](array-to-collection.md) -*Conversiones de tipo entre las colecciones y los arrays 4D* \ No newline at end of file +*Conversiones de tipo entre las colecciones y los arrays 4D* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1562 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md index a129209a538f43..a1e9f75439641e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md @@ -50,4 +50,13 @@ Resultado: #### Ver también -[TRANSFORM PICTURE](transform-picture.md) \ No newline at end of file +[TRANSFORM PICTURE](transform-picture.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 987 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md index 6563d3cf90ef8d..cb347aa72b69fa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descripción -El comando **Command name** devuelve el nombre y (opcionalmente) las propiedades del comando cuyo número se pasa en *comando*. - -**Nota:** el número de cada comando está indicado en el Explorador, así como también en el área de Propiedades de esta documentación. +El comando **Command name** devuelve el nombre y (opcionalmente) las propiedades del comando cuyo número se pasa en *comando*.el número de cada comando está indicado en el Explorador, así como también en el área de Propiedades de esta documentación. **Nota de compatibilidad**: como el nombre de un comando puede variar de una versión 4D a otra (comandos renombrados), este comando se utilizó en versiones anteriores del programa para designar un comando directamente por medio de su número, especialmente en partes de código no tokenizadas. Esta sintaxis permite evitar posibles problemas debido a las variaciones en los nombres de los comandos, así como otros elementos tales como tablas, sin dejar de poder escribir estos nombres de forma legible (para obtener más información sobre este punto, consulte la sección *Utilizar tokens en fórmulas*). Además, de forma predeterminada, la versión en Inglés del lenguaje se utiliza a partir de 4D v15; Sin embargo, la opción "Utilizar la configuración del sistema regional" en la [Is a list](is-a-list.md) de las Preferencias le permite continuar con el uso de la versión en español en un 4D en español. @@ -102,4 +100,14 @@ Luego, para el comando "SAVE RECORD" (53) por ejemplo, puede escribir: #### Ver también [EXECUTE FORMULA](execute-formula.md) -*Procesos 4D apropiativos* \ No newline at end of file +*Procesos 4D apropiativos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 538 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md index 53811c0eb5eaa5..0aa92cc65f22c3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md @@ -69,4 +69,14 @@ Si la operación de compactación se lleva a cabo correctamente, la variable sis #### Ver también [Table fragmentation](table-fragmentation.md) -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 937 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md index ffbb1b8e3eb5c2..68814f72490c40 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md @@ -105,4 +105,13 @@ Los siguientes ejemplos ilustran el impacto específico de las opciones en el ** #### Ver también -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1756 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md index 868a949737f0bd..a41621b54bcc0b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md @@ -32,4 +32,13 @@ Para mayor información sobre componentes 4D, por favor consulte el *Manual de D #### Ver también -[PLUGIN LIST](plugin-list.md) \ No newline at end of file +[PLUGIN LIST](plugin-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1001 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md index f286d02ca693ba..5ffff17e8232bd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md @@ -89,4 +89,14 @@ La variable OK toma el valor 1 si el BLOB se comprime correctamente; de lo contr #### Ver también [BLOB PROPERTIES](blob-properties.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 534 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md index b64c7264639651..aed360bded8a5d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md @@ -91,4 +91,14 @@ Mostrará la siguiente caja de diálogo de confirmación (en Windows): #### Ver también [ALERT](alert.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 162 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md index 08375546c89d1a..4ae5f5baadd578 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Contextual click devuelve Verdadero si un se ha efectuado un clic contextual: @@ -42,4 +39,13 @@ Este método, combinado con un área desplegable, le permite cambiar el valor de #### Ver también [Form event code](../commands/form-event-code.md) -[Right click](right-click.md) \ No newline at end of file +[Right click](right-click.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 713 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md index 73b1336d63e3b5..c9bf4b26ee7ad1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CONVERT COORDINATES**convierte las coordenadas (x,y) de un punto de un sistema de coordenadas a otro. Los sistemas de coordenadas de entrada y salida soportados son los formularios (y subformularios), las ventanas y la pantalla. Por ejemplo, puede utilizar este comando para obtener las coordenadas en el formulario principal de un objeto perteneciente a un subformulario. Este principio facilita la creación de menús contextuales en cualquier posición personalizada. @@ -86,4 +83,13 @@ Usted quiere abrir una ventana emergente en la posición del cursor del ratón. [GET WINDOW RECT](get-window-rect.md) [OBJECT GET COORDINATES](object-get-coordinates.md) [OBJECT SET COORDINATES](object-set-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1365 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md index 4caa76124d9be6..f755c1cdc523d1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md @@ -188,4 +188,14 @@ Si el comando ha sido ejecutado correctamente, la variable OK toma el valor 1\. #### Ver también -[Convert to text](convert-to-text.md) \ No newline at end of file +[Convert to text](convert-to-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1011 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md index 639f259bba1bde..e9f3ce73602aa7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md @@ -53,4 +53,13 @@ Ejemplos bajo Windows: [Convert path system to POSIX](convert-path-system-to-posix.md) [Object to path](object-to-path.md) -[Path to object ](path-to-object.md) \ No newline at end of file +[Path to object ](path-to-object.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1107 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md index 9bc81d0c2f4e57..8d60fdcc7d26ea 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md @@ -60,4 +60,13 @@ Ejemplo bajo Windows [Convert path POSIX to system](convert-path-posix-to-system.md) [Object to path](object-to-path.md) [Path to object ](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1106 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md index 459e58db107a9a..126cdb411b35e6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md @@ -50,4 +50,13 @@ Conversión de una imagen con calidad del 60%: #### Ver también -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1002 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md index caf23539a5998b..a5fd0f9f6a2d13 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md @@ -30,4 +30,14 @@ Si el comando se ejecuta correctamente, la variable OK toma el valor 1\. De lo c #### Ver también -[CONVERT FROM TEXT](convert-from-text.md) \ No newline at end of file +[CONVERT FROM TEXT](convert-from-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1012 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md index d20a754bfd0640..12b69347ccf651 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando COPY ARRAY crea o remplaza el array *destino* con el mismo contenido, tamaño y tipo del array *fuente*. - -**Nota:** en el caso de los arrays numéricos de diferentes tipos, se mantiene el tipo del array *destino*. +El comando COPY ARRAY crea o remplaza el array *destino* con el mismo contenido, tamaño y tipo del array *fuente*.en el caso de los arrays numéricos de diferentes tipos, se mantiene el tipo del array *destino*. Los arrays *fuente* y *destino* pueden ser locales, proceso o interproceso. El alcance del array no tiene importancia en el momento de copiar arrays. @@ -36,3 +34,13 @@ El siguiente ejemplo llena el array C. Luego crea un nuevo array, llamado D, del  SELECTION TO ARRAY([Personas]Empresa;C) // Mover los datos del campo empresa al array C  COPY ARRAY(C;D) // Copiar el array C al array D ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 226 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md index e7dc2a7b3e0f53..4ac22278361c23 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md @@ -28,4 +28,13 @@ La copia comienza en la posición (expresada con relación al comienzo del BLOB #### Ver también [DELETE FROM BLOB](delete-from-blob.md) -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 558 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md index 77484604e9378c..a7302f0f6e4d8d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md @@ -19,8 +19,6 @@ displayed_sidebar: docs #### Descripción El comando **COPY DOCUMENT** copia el documento especificado por *nomFuente* en la ubicación especificada por *nomDest*. - -* **Copia de archivo** En este caso, el parámetro *nomFuente* debe contener una ruta de acceso completa del archivo, expresada con respecto a la raíz del volumen. El parámetro *nomDest* puede contener varios tipos de lugares: * una ruta de acceso completa del archivo expresada con respecto a la raíz del volumen: el archivo se copia en esta ubicación @@ -118,4 +116,14 @@ Los siguientes ejemplos crean diferentes archivos y carpetas en la carpeta de la #### Ver también *Documentos del sistema* -[MOVE DOCUMENT](move-document.md) \ No newline at end of file +[MOVE DOCUMENT](move-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 541 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md index bd0a355f3fbf07..d8fbe92cc0e563 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Copy list duplica la lista cuyo número de referencia se pasa en el parámetro *lista* y devuelve el número de referencia de la nueva lista. @@ -27,4 +24,13 @@ Una vez hay terminado de utilizar la nueva lista, llame a [CLEAR LIST](clear-lis [CLEAR LIST](clear-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 626 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md index 7d9f6895922df4..e4bab13c7778d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md @@ -49,4 +49,13 @@ El siguiente ejemplo permite verificar si hay otras facturas vencidas en la tabl [CLEAR NAMED SELECTION](clear-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 331 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md index 398b149ecd0a5b..c8093a3dd93cee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md @@ -79,4 +79,13 @@ Como el comando devuelve una colección, se puede utilizar con **.join()** para #### Ver también -[Count parameters](count-parameters.md) \ No newline at end of file +[Count parameters](count-parameters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1790 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md index d13783542cb809..50a376b87de775 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md @@ -38,4 +38,13 @@ El siguiente ejemplo en Cliente/Servidor, copia el conjunto proceso "ConjuntoA", #### Ver también -*Conjuntos* \ No newline at end of file +*Conjuntos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 600 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cos.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cos.md index 9a0c91b30c8518..a05f8b64d08a69 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cos.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cos.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descripción -Cos devuelve el coseno del *número*, donde *número* se expresa en radianes. - -**Nota:** 4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). +Cos devuelve el coseno del *número*, donde *número* se expresa en radianes.4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). #### Ver también [Arctan](arctan.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 18 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md index 6ba118d60ebb68..35dfb5bae4df73 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md @@ -56,4 +56,13 @@ Desea contar las referencias a objetos en un array objeto: #### Ver también [Find in array](find-in-array.md) -[Find in sorted array](find-in-sorted-array.md) \ No newline at end of file +[Find in sorted array](find-in-sorted-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 907 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md index 9ae70108c722e0..d670265974a311 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Count list items devuelve el número actual de elementos visibles o el número total de elementos en la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -62,4 +59,13 @@ Acá tenemos una lista llamada *hList* mostrada en el entorno Aplicación: #### Ver también [List item position](list-item-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 380 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md index b82e6cb7240386..fe9f1b84eff99c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Count menu items devuelve el número de los elementos del menú presentes en el menú cuyo número o referencia se pasa en *menu.* @@ -28,4 +25,14 @@ Si omite el parámetro *proceso*, Count menu items se aplica a la barra de menú #### Ver también -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 405 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md index ef6e9cd45f4ca0..bd7883801f0db8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Count menus devuelve el número de menús presentes en la barra de menús. @@ -25,4 +22,14 @@ Si omite el parámetro *proceso*, Count menus se aplica a la barra de menús del #### Ver también -[Count menu items](count-menu-items.md) \ No newline at end of file +[Count menu items](count-menu-items.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 404 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md index 2a5a75fcd19534..d5a12f090225de 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -El comando Count parameters devuelve el número de parámetros pasados a un método de proyecto. - -**Advertencia:** Count parameters es significativo sólo en un método de proyecto que haya sido llamado por otro método (método de proyecto u otro). Si el método de proyecto que llama Count parameters está asociado a un menú, Count parameters devuelve 0. +El comando Count parameters devuelve el número de parámetros pasados a un método de proyecto.Count parameters es significativo sólo en un método de proyecto que haya sido llamado por otro método (método de proyecto u otro). Si el método de proyecto que llama Count parameters está asociado a un menú, Count parameters devuelve 0. #### Ejemplo 1 @@ -94,4 +92,13 @@ o: #### Ver también *Comandos del Compilador* -[Copy parameters](copy-parameters.md) \ No newline at end of file +[Copy parameters](copy-parameters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 259 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md index 6cb3b383e29d22..c3f2db956f0f16 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Count screens devuelve el número de pantallas conectadas a su equipo. @@ -26,4 +23,13 @@ displayed_sidebar: docs [SCREEN COORDINATES](screen-coordinates.md) [SCREEN DEPTH](screen-depth.md) [Screen height](screen-height.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 437 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md index a09f6cc4e24db9..3816d0613ed3c5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md @@ -28,4 +28,13 @@ Ver el ejemplo para [Process state](process-state.md "Process state") y [On Exit [Count user processes](count-user-processes.md) [Count users](count-users.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 335 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md index dda7bd7fc57441..0b7d3af79ee0bf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### Ver también [Count tasks](count-tasks.md) -[Count users](count-users.md) \ No newline at end of file +[Count users](count-users.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 343 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md index 3e217f2a65c88a..879de0fe65ca5f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md @@ -22,4 +22,13 @@ Cuando se ejecuta en una aplicación 4D monousuario, **Count users** devuelve 1. #### Ver también [Count tasks](count-tasks.md) -[Count user processes](count-user-processes.md) \ No newline at end of file +[Count user processes](count-user-processes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 342 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md index 39208d00837864..52fcec79199bc9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md @@ -66,4 +66,14 @@ La variable sistema OK toma el valor 1 si el comando se ejecuta correctamente, s #### Ver también -[RESOLVE ALIAS](resolve-alias.md) \ No newline at end of file +[RESOLVE ALIAS](resolve-alias.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 694 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md index c53d06afa13489..f589e9f47449c7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md @@ -25,4 +25,13 @@ Antes de lanzar la operación, el comando verifica que la ruta de acceso no corr #### Ver también -[OPEN DATA FILE](open-data-file.md) \ No newline at end of file +[OPEN DATA FILE](open-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 313 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md index 2ab9a5c28d649c..74f2b0725afb7f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Create deployment license** crea un archivo de licencia anidado en la carpeta Licenses de la aplicación creada *mergedApp*. Si la carpeta Licenses no existe en *mergedApp*, el comando la creará. @@ -56,4 +53,13 @@ Si la compilación requiere una licencia OEM específica (*4D OEM XML Keys*) y s #### Ver también - \ No newline at end of file + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1811 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md index 7975b438f61f95..9136094b75d2d9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md @@ -71,4 +71,14 @@ Si el documento se crea correctamente, la variable sistema OK toma el valor 1 y #### Ver también [Append document](append-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 266 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md index 0f0db3976f0497..862c6fa0337911 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md @@ -27,4 +27,13 @@ Consulte el ejemplo de la sección *Conjuntos*. #### Ver también [CLEAR SET](clear-set.md) -[CREATE SET](create-set.md) \ No newline at end of file +[CREATE SET](create-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 140 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md index 5fec6c33fc5c0b..42b7e4eaea39df 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md @@ -70,4 +70,14 @@ Creación de la subcarpeta "\\Febrero\\" en la carpeta existente "C:\\Archives\\ #### Ver también [FOLDER LIST](folder-list.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 475 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md index 350aa361767e4a..7635e219b72d7c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md @@ -86,4 +86,13 @@ Creación de un índice compuesto en los campos “Ciudad” y “CodigoPostal [DELETE INDEX](delete-index.md) [RESUME INDEXES](resume-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 966 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md index b7320913559fe3..acf9822e3c93d3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Create menu** permite crear un nuevo menú en memoria. Este menú sólo existirá en memoria y no se añadirá al editor de menú en el entorno Diseño. Toda modificación efectuada a este menú durante la sesión repercutirá inmediatamente en todas las instancias de este menú y en todos los procesos de la base. @@ -42,4 +39,13 @@ Consulte el ejemplo del comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR"). [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 408 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md index 5a6e61f0ffd3f0..d301ae9c244750 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md @@ -45,4 +45,14 @@ El siguiente ejemplo archiva los registros que tienen más de 30 días. Esta ope [ADD RECORD](add-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 68 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md index 2f7c375f1b946d..0891f2ca91be60 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md @@ -23,4 +23,13 @@ Si ya existe un registro relacionado, CREATE RELATED ONE actúa como [RELATE ONE #### Ver también -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 65 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md index 5a4cd424995cf2..a3d3170f4e7539 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md @@ -47,4 +47,15 @@ Si un número de registro no es válido (registro no creado), se genera el error [CREATE SET FROM ARRAY](create-set-from-array.md) [LONGINT ARRAY FROM SELECTION](longint-array-from-selection.md) [SELECTION TO ARRAY](selection-to-array.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 640 | +| Hilo seguro | ✓ | +| Modifica variables | error | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md index d6e07a43d1725c..4f96371582f86e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md @@ -37,4 +37,14 @@ En un array de enteros largos, si un número de registro no es válido (registro #### Ver también [BOOLEAN ARRAY FROM SET](boolean-array-from-set.md) -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 641 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md index f231451ba24f03..536f438b662f40 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md @@ -31,4 +31,13 @@ El siguiente ejemplo crea un conjunto después de efectuar una búsqueda, de man #### Ver también [CLEAR SET](clear-set.md) -[CREATE EMPTY SET](create-empty-set.md) \ No newline at end of file +[CREATE EMPTY SET](create-empty-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 116 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md index 7c98eb426d2d9c..1e1f3c3136cb6d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md @@ -57,3 +57,13 @@ El parámetro *profundidad* se ignora y por lo tanto debe omitirse. El comando s El parámetro opcional *profundidad* define el número de colores bajo Mac OS (es decir, la profundidad de pantalla) a conservar en la miniatura resultante. El parámetro es un entero igual al número de bits por píxel: 1, 2, 4, 8, 16 ó 32\. Introduzca 0 para utilizar la profundidad de pantalla actual (valor por defecto). **Nota:** bajo Windows, se ignora el parámetro *profundidad*; el comando siempre utiliza la profundidad de pantalla actual. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 679 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md index 5a4b18fd46d1ff..cfff38c46f554b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md @@ -68,3 +68,13 @@ Con esta configuración, no se muestra un diálogo de contraseña para un 4D rem ``` **Nota:** este escenario básico requiere que los nombres de usuario 4D repliquen los nombres del directorio Active, para un mapeo automático. En una aplicación más sofisticada, la información devuelta por el comando se asigna a una tabla \[usuarios\] para crear o seleccionar los usuarios con base en la información del directorio Active. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1355 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md index b24ca50d0cb302..74edb2f51aaaa2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Current date devuelve la fecha actual tal como está definida en el reloj del sistema. - -**4D Server:** si pasa el parámetro asterisco (\*) durante la ejecución de esta función en un equipo cliente 4D Client, la función devuelve la fecha actual del servidor. +El comando Current date devuelve la fecha actual tal como está definida en el reloj del sistema.si pasa el parámetro asterisco (\*) durante la ejecución de esta función en un equipo cliente 4D Client, la función devuelve la fecha actual del servidor. #### Ejemplo 1 @@ -97,4 +95,13 @@ El siguiente método de proyecto permite hacerlo: [Day of](day-of.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 33 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md index f719c9bd2b46f0..d32a04d17ed83a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md @@ -29,4 +29,13 @@ Siempre y cuando se haya definido una tabla por defecto, la siguiente línea de [DEFAULT TABLE](default-table.md) [Table](table.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 363 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md index c0b818db637de8..ab383bf7c0e986 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Current form name** devuelve el nombre del formulario actual definido para el proceso. El formulario actual puede ser un formulario proyecto o un formulario tabla. @@ -59,4 +56,13 @@ Usted quiere obtener el formulario actual si éste es un formulario proyecto: #### Ver también -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1298 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md index 292d29af12eda5..915cf6dae99590 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Current form table devuelve el puntero hacia la tabla del formulario en pantalla o impreso en el proceso actual. @@ -65,4 +62,13 @@ Para esto, utilice el método de objeto para crear la variable *vsCurrentRecord* [DIALOG](../commands/dialog.md) [FORM SET INPUT](form-set-input.md) [FORM SET OUTPUT](form-set-output.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 627 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md index dc52746b6f198f..d592c28531a73d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Current form window devuelve la referencia de la ventana del formulario actual. Si ninguna ventana ha sido definida para el formulario actual, el comando devuelve 0. @@ -26,4 +23,13 @@ La ventana del formulario actual puede ser generada automáticamente por un coma [Open form window](open-form-window.md) [Open window](open-window.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 827 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md index 41145e2f10cf5d..701b31d5ab34a6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md @@ -29,4 +29,13 @@ Incluso si no está corriendo la versión cliente/servidor de 4D, su aplicación #### Ver también -[Current system user](current-system-user.md) \ No newline at end of file +[Current system user](current-system-user.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 483 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md index c83e825a09f790..c8ed78a540e724 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md @@ -37,3 +37,13 @@ En función del tipo de método llamado, la cadena devuelta puede ser: Este comando no puede llamarse desde una fórmula 4D. **Nota:** para que este comando funcione en modo compilado, la opción **Control de ejecución** no debe ser desactivada. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 684 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md index 93e59f83ef8ebe..a8fab7d125fbdb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md @@ -15,11 +15,18 @@ displayed_sidebar: docs #### Descripción -El comando **Current method path** devuelve la ruta de acceso interna del método base, trigger, método de proyecto, método formulario o método objeto en ejecución. - -**Nota:** en el contexto de los macro comandos 4D, la etiqueta ** es remplazada por la ruta de acceso completa del código en ejecución. +El comando **Current method path** devuelve la ruta de acceso interna del método base, trigger, método de proyecto, método formulario o método objeto en ejecución.en el contexto de los macro comandos 4D, la etiqueta ** es remplazada por la ruta de acceso completa del código en ejecución. #### Ver también [METHOD Get path](method-get-path.md) -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1201 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md index fe6e3aeeae4dc9..e966a4db349bc9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md @@ -31,4 +31,13 @@ Quiere llamar a un proceso worker y pasar el nombre del proceso de llamada como [CALL WORKER](call-worker.md) [KILL WORKER](kill-worker.md) -*Sobre workers* \ No newline at end of file +*Sobre workers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1392 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md index ce1e0d1a11e566..866052bb908b03 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md @@ -25,4 +25,13 @@ Ver los ejemplos de [DELAY PROCESS](delay-process.md "DELAY PROCESS") y [PROCESS [Process number](process-number.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 322 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md index 57cd4f61ca4dcd..50776124a68fc9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md @@ -23,4 +23,13 @@ Ver el ejemplo del comando [Current machine](current-machine.md "Current machine #### Ver también -[Current machine](current-machine.md) \ No newline at end of file +[Current machine](current-machine.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 484 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md index 48dfa58968341e..a9519e19636b4f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md @@ -48,4 +48,13 @@ El siguiente ejemplo extrae las horas, minutos y segundos de la hora actual: [Milliseconds](milliseconds.md) [String](string.md) -[Tickcount](tickcount.md) \ No newline at end of file +[Tickcount](tickcount.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 178 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md index 66a05993309b14..54879d046e582a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md @@ -37,4 +37,13 @@ Ver el ejemplo del comando [User in group](user-in-group.md "User in group"). [CHANGE CURRENT USER](change-current-user.md) [CHANGE PASSWORD](change-password.md) [SET USER ALIAS](set-user-alias.md) -[User in group](user-in-group.md) \ No newline at end of file +[User in group](user-in-group.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 182 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md index e7716ac96d3c97..0a3a925b308a9e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md @@ -35,4 +35,14 @@ El método siguiente vacía la selección actual de una tabla *\[Clientes\]*: [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 334 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md index 3c6a260729574a..d2bcd8a5d0b7d8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md @@ -67,4 +67,13 @@ Desea conocer el estado de cifrado de un archivo de datos que corresponde al arc #### Ver también -[Encrypt data file](encrypt-data-file.md) \ No newline at end of file +[Encrypt data file](encrypt-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1609 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md index 94d1ce135670dc..bc91b874ba53bf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md @@ -31,4 +31,13 @@ Si está trabajando por ejemplo con la base en la carpeta Documentos:MisCDsƒ: e #### Ver también [Application file](application-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 490 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md index af2f9f35479dc1..155f194cc95375 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md @@ -330,3 +330,13 @@ Queremos obtener las medidas de bytes de caché en los últimos dos minutos:  OB SET($oParams;"historyLength";2*60)  $measures:=Database measures($oParams) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1314 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/date.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/date.md index 9e9632543fa9ea..98c37488827d72 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/date.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/date.md @@ -93,4 +93,13 @@ Usted desea obtener una fecha de un atributo objeto, sea cual sea la opción de #### Ver también [Bool](bool.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 102 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md index d80a0438dae22d..7cce4d1a29aa4d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Day number devuelve un número que representa el día de la semana que corresponde a la *f* *echa*. - -**Nota:** Day Number devuelve *2* para fechas nulas. +El comando Day number devuelve un número que representa el día de la semana que corresponde a la *f* *echa*.Day Number devuelve *2* para fechas nulas. 4D ofrece las siguientes constantes predefinidas: @@ -60,4 +58,13 @@ El siguiente ejemplo es una función que devuelve el día actual como una cadena #### Ver también -[Day of](day-of.md) \ No newline at end of file +[Day of](day-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 114 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md index dd9cbb5303ca30..f99aa80054f008 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Day of devuelve el día del mes de *fecha*. - -**Nota:** Day of devuelve un valor entre 1 y 31\. Para obtener el día de la semana de una fecha, utilice el comando [Day number](day-number.md "Day number"). +El comando Day of devuelve el día del mes de *fecha*.Day of devuelve un valor entre 1 y 31\. Para obtener el día de la semana de una fecha, utilice el comando [Day number](day-number.md "Day number"). #### Ejemplo 1 @@ -37,4 +35,13 @@ Ver el ejemplo para el comando [Current date](current-date.md "Current date"). [Day number](day-number.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 23 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md index 71bd23d780da34..21eec9284c9fa0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Deactivated** devuelve True en un método formulario u objeto cuando la ventana del primer plano del proceso de primer plano, contiene el formulario, se traslada a la parte posterior. @@ -27,4 +24,13 @@ Para que se genere el ciclo de ejecución **Deactivated**, asegúrese de que la #### Ver también [Activated](activated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 347 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dec.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dec.md index ddde76ca11e8d8..631e68c1908012 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dec.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dec.md @@ -29,4 +29,13 @@ El siguiente ejemplo utiliza un valor monetario expresado como un número real, #### Ver también -[Int](int.md) \ No newline at end of file +[Int](int.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 9 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md index 9a9b70930e1fc8..32dbefa6202cc0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md @@ -33,4 +33,13 @@ Consulte los ejemplos dados por el comando [ENCRYPT BLOB](encrypt-blob.md "ENCRY #### Ver también [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 690 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md index 6f2b67ad9774a2..537d625a64af63 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md @@ -57,4 +57,13 @@ La *frasePasar* y la *sal* utilizadas para el descifrado son idénticas a la *fr [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1774 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md index a55a14a3600803..301bd0d42f70c4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md @@ -75,4 +75,13 @@ En este código se especifica el resultado de la tabla por defecto: #### Ver también [Current default table](current-default-table.md) -[NO DEFAULT TABLE](no-default-table.md) \ No newline at end of file +[NO DEFAULT TABLE](no-default-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 46 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md index dc87d45ac58052..901b9ca8252a42 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md @@ -37,4 +37,13 @@ Ver el ejemplo del comando [Process Number](process-number.md "Process Number"). #### Ver también [HIDE PROCESS](hide-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 323 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md index 9e23978cc3c5ac..44ff0d91b61a58 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md @@ -46,4 +46,14 @@ La eliminación de un documento hace que la variable sistema tome el valor 1\. S #### Ver también -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 159 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md index 9b732cb71dd717..8e5de1328c2bb1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md @@ -41,4 +41,14 @@ Puede interceptar estos errores utilizando un método instalado por el comando [ #### Ver también -[DELETE DOCUMENT](delete-document.md) \ No newline at end of file +[DELETE DOCUMENT](delete-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 693 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md index 6df7a5dc9c9ff6..fb6aab3b342614 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md @@ -43,4 +43,13 @@ El siguiente ejemplo borra el último elemento de un array, si existe: #### Ver también [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 228 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md index b72ec56fe9dd68..c3432a43d561e3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### Ver también -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 560 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md index 645ccf421454d7..7e419ef42dc888 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DELETE FROM LIST borra el elemento designado por el parámetro *refElem* de la lista cuyo número de referencia se pasa en *lista*. @@ -44,4 +41,13 @@ El siguiente código borra el elemento seleccionado de la lista *hList*. Si el e #### Ver también [CLEAR LIST](clear-list.md) -[GET LIST ITEM](get-list-item.md) \ No newline at end of file +[GET LIST ITEM](get-list-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 624 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md index 0f8776a3fa6307..0ceed452efa127 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md @@ -45,4 +45,13 @@ Este ejemplo ilustra las dos sintaxis del comando: [CREATE INDEX](create-index.md) [PAUSE INDEXES](pause-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 967 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md index 77e0ea7eb09f68..8e23036f588439 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DELETE MENU ITEM elimina la línea de menú cuyo número o referencia de menú y número de elemento usted pasó en *menu* y *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu.* @@ -35,4 +32,14 @@ Si omite el parámetro *proceso*, DELETE MENU ITEM se aplica a la barra de menú #### Ver también [APPEND MENU ITEM](append-menu-item.md) -[INSERT MENU ITEM](insert-menu-item.md) \ No newline at end of file +[INSERT MENU ITEM](insert-menu-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 413 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md index ca3883a367c2eb..8fafc416e19566 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md @@ -41,4 +41,14 @@ El siguiente ejemplo borra un registro de un empleado. El código pregunta al us #### Ver también [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 58 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md index 5153eb5956a4fd..22d5bbfa4124bc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md @@ -63,4 +63,14 @@ Si se encuentra un registro bloqueado durante la ejecución de DELETE SELECTION, [DISPLAY SELECTION](display-selection.md) [MODIFY SELECTION](modify-selection.md) *Record Locking* -[TRUNCATE TABLE](truncate-table.md) \ No newline at end of file +[TRUNCATE TABLE](truncate-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 66 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md index 9ac56c0d6b0ea0..5a6cd93ca62f8b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md @@ -44,4 +44,13 @@ El siguiente ejemplo ilustra el uso de Delete string. Los resultados se asignan [Change string](change-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 232 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md index 96061fc1f9276e..c6c24477b74761 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DELETE USER borra el usuario cuyo número se pasa en *refUsuario*. Debe pasar un número válido de usuario devuelto por el comando [GET USER LIST](get-user-list.md "GET USER LIST"). @@ -35,4 +32,14 @@ Si no tiene los privilegios de acceso para llamar DELETE USER o si otro proceso [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 615 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md index 834be47feb6aaa..9eb647c3b6dba3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md @@ -66,4 +66,13 @@ $vResultPath : #### Ver también [Last query path](last-query-path.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1044 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/difference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/difference.md index b65f9efcf6a083..cd7aa5922f96fb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/difference.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/difference.md @@ -53,4 +53,13 @@ Al final de la lista de registros hay un botón con un método de objeto. El mé #### Ver también [INTERSECTION](intersection.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 122 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md index c37c9bc18d4a12..806edf9def7d97 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DISABLE MENU ITEM desactiva el comando de menú cuyo número o referencia de menú y número de elemento usted pasó en *menu* y *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu*. @@ -32,4 +29,14 @@ Si el parámetro *menuItem* designa un submenú jerárquico, todos los elementos #### Ver también -[ENABLE MENU ITEM](enable-menu-item.md) \ No newline at end of file +[ENABLE MENU ITEM](enable-menu-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 150 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md index 528b0c4f17c96a..d4e9440c8006f0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md @@ -48,4 +48,13 @@ Los archivos llave (archivos de extensión ".4DKeyChain") deben almacenarse en e #### Ver también -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1639 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md index c0605da1b98f8d..fdb1cabd114807 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DISPLAY NOTIFICATION muestra un mensaje de notificación al usuario: @@ -42,4 +39,13 @@ Bajo Windows, se muestra la ventana del mensaje si no se detecta actividad en la #### Ver también -[ALERT](alert.md) \ No newline at end of file +[ALERT](alert.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 910 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md index 46ee9e51ab4bf4..9ae532e8e1432c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DISPLAY RECORD muestra el registro actual de *tabla*, utilizando el formulario de entrada actual. El registro se muestra hasta que un evento provoque un rediseño de la ventana. Tal evento puede ser la ejecución de un comando [ADD RECORD](add-record.md "ADD RECORD"), el regreso al formulario de entrada, o a la barra de menús. DISPLAY RECORD no hace nada si no hay registro actual. @@ -42,4 +39,13 @@ El siguiente ejemplo muestra una serie de registros como una presentación de di #### Ver también -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 105 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md index f9096bea895198..f50bdd56e36bc8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción DISPLAY SELECTION muestra la selección de *tabla*, utilizando el formulario de salida. Los registros se muestran en una lista por la cual se puede desplazar similar a la del modo Diseño. Si el usuario hace doble clic en un registro, por defecto se muestra el registro en el formulario de entrada actual. La lista se muestra en la ventana del primer plano. @@ -104,4 +101,14 @@ También puede utilizar otros comandos, tales como [PRINT SELECTION](print-selec *Conjuntos* [Form event code](../commands/form-event-code.md) -[MODIFY SELECTION](modify-selection.md) \ No newline at end of file +[MODIFY SELECTION](modify-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 59 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md index 9f75b4aea96c41..44708712f68ec8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Displayed line number funciona únicamente en el contexto del evento de formulario On Display Detail. Devuelve el número de la línea que está siendo procesada mientras una lista de registros es mostrada en pantalla. Si Displayed line number se llama cuando no se muestra una lista, devuelve 0. @@ -46,4 +43,13 @@ Este ejemplo le permite aplicar un color alterno en un formulario listado mostra #### Ver también [Form event code](../commands/form-event-code.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 897 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md index 1717f633bc013d..34ba0918bd44fa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md @@ -66,4 +66,13 @@ El array *aTPaths* obtiene los siguientes elementos: #### Ver también -[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) \ No newline at end of file +[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1395 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md index 6fe800cdc4fca8..5b88239d4c41b7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md @@ -63,4 +63,13 @@ El array *aLAges* obtiene los siguientes 9 elementos: #### Ver también -[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) \ No newline at end of file +[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1397 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md index 610b55c794f00b..4276484e6274b8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md @@ -81,4 +81,13 @@ Para calcular las estadísticas, usted desea ordenar el número de valores disti [GET TEXT KEYWORDS](get-text-keywords.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 339 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md index af8d6066eba5e1..daba7c876bd4a3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **DOCUMENT LIST** llena el array de tipo Texto *documentos* con los nombres del los documentos ubicados en la ubicación pasada en *rutaAcceso*. - -**Nota:** el parámetro *rutaAcceso* sólo acepta rutas de acceso absolutas. +El comando **DOCUMENT LIST** llena el array de tipo Texto *documentos* con los nombres del los documentos ubicados en la ubicación pasada en *rutaAcceso*.el parámetro *rutaAcceso* sólo acepta rutas de acceso absolutas. Por defecto, si omite el parámetro *opciones*, sólo los nombres de los documentos se devuelven en el array *documentos*. Puede modificar este funcionamiento pasando en el parámetro *opciones*, una o más de las siguientes constantes, que se encuentran en el tema *Documentos sistema*: @@ -112,4 +110,14 @@ Lista de todos los documentos en modo recursivo Posix (relativo): #### Ver también [FOLDER LIST](folder-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 474 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md index dcbb4dab0203fa..21048f2f8cc58a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md @@ -49,4 +49,14 @@ En todos los casos, puede interceptar el error utilizando un método de interrup #### Ver también [BLOB TO DOCUMENT](blob-to-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 525 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md index fb70471ed43f1a..ca8cf0bd17f813 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md @@ -76,4 +76,13 @@ Cuando ejecuta este código: #### Ver también *Documentos sistema* -[TEXT TO DOCUMENT](text-to-document.md) \ No newline at end of file +[TEXT TO DOCUMENT](text-to-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1236 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md index 0ae149f10abcec..fee89639241fce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md @@ -145,4 +145,13 @@ Si el contenido de *valorHijo* no es valido, se devuelve un error. #### Ver también [DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1080 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md index e84c47010e3609..189f612e6c0289 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md @@ -27,4 +27,13 @@ Ver el ejemplo del comando [DOM Insert XML element](dom-insert-xml-element.md "D #### Ver también -[DOM Insert XML element](dom-insert-xml-element.md) \ No newline at end of file +[DOM Insert XML element](dom-insert-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1082 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md index 2e1642bf65b352..8f937aaae7c31a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md @@ -26,4 +26,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo #### Ver también [DOM Parse XML source](dom-parse-xml-source.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 722 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md index b9d95dd0c37bff..59ea934a00c7aa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md @@ -51,4 +51,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo #### Ver también -[DOM Count XML elements](dom-count-xml-elements.md) \ No newline at end of file +[DOM Count XML elements](dom-count-xml-elements.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 727 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md index b46a9617bd1d32..412fda85680fa2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando DOM Count XML elements devuelve el número de elementos “hijo” dependientes del elemento padre *refElement* y llamado *nomElement*. - -**Nota:** por defecto, **DOM Count XML elements** es sensible a las mayúsculas y minúsculas con respecto el parámetro *nomElement* (de acuerdo a los estándares XML). Puede controlar la sensibilidad de mayúsculas y minúsculas del comando utilizando el selector XML DOM case sensitivity del comando [XML SET OPTIONS](xml-set-options.md). +El comando DOM Count XML elements devuelve el número de elementos “hijo” dependientes del elemento padre *refElement* y llamado *nomElement*.por defecto, **DOM Count XML elements** es sensible a las mayúsculas y minúsculas con respecto el parámetro *nomElement* (de acuerdo a los estándares XML). Puede controlar la sensibilidad de mayúsculas y minúsculas del comando utilizando el selector XML DOM case sensitivity del comando [XML SET OPTIONS](xml-set-options.md). #### Variables y conjuntos del sistema @@ -28,4 +26,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo #### Ver también [DOM Get XML element](dom-get-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 726 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md index b0dcdeeb8d712a..8ad120ba6f38ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md @@ -60,4 +60,13 @@ Para esto, es suficiente escribir: #### Ver también -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1097 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md index bf8893b146b954..51885efafc48cd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md @@ -154,4 +154,14 @@ Se genera un error cuando: [DOM Create XML element arrays](dom-create-xml-element-arrays.md) [DOM Get XML element](dom-get-xml-element.md) -[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) \ No newline at end of file +[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 865 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md index dec71ba86ac2e7..94eda7333c1cce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md @@ -97,4 +97,14 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\ #### Ver también [DOM CLOSE XML](dom-close-xml.md) -[DOM SET XML DECLARATION](dom-set-xml-declaration.md) \ No newline at end of file +[DOM SET XML DECLARATION](dom-set-xml-declaration.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 861 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md index 6d61583bf2c4c8..7db9b9bbc428d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md @@ -61,4 +61,14 @@ Se genera un error cuando: #### Ver también [DOM EXPORT TO VAR](dom-export-to-var.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 862 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md index 6e29562012bbe1..8c0015ff8bc030 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md @@ -54,4 +54,14 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\ #### Ver también [DOM EXPORT TO FILE](dom-export-to-file.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 863 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md index 08a53a97afe56b..66da1e87fee4b6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md @@ -27,4 +27,14 @@ El comando devuelve en resultado la referencia XML del elemento encontrado. #### Ver también -[DOM Find XML element](dom-find-xml-element.md) \ No newline at end of file +[DOM Find XML element](dom-find-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1010 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md index 53e8c63d85ab9e..738066926645f3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md @@ -116,4 +116,14 @@ Se genera un error cuando: #### Ver también [DOM Count XML elements](dom-count-xml-elements.md) -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 864 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md index 1431c39ba18d05..4cb604e250f277 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md @@ -57,4 +57,14 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\ #### Ver también -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 723 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md index b62860c6ece7ae..c3b3b8ef589495 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md @@ -42,4 +42,14 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\ #### Ver también -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 925 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md index 6a2dfef9de1719..1d87982ac68079 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md @@ -60,4 +60,14 @@ Si el comando se ha ejecutado correctamente y si el elemento analizado no es el #### Ver también -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 724 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md index ba5ad5af5e9463..fe09188c68315c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md @@ -35,4 +35,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. [DOM Get first child XML element](dom-get-first-child-xml-element.md) [DOM Get last child XML element](dom-get-last-child-xml-element.md) -[DOM Get Root XML element](dom-get-root-xml-element.md) \ No newline at end of file +[DOM Get Root XML element](dom-get-root-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 923 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md index a72ae4bcac4212..0e6a7b2d0dd702 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md @@ -32,4 +32,14 @@ Si el comando se ha ejecutado correctamente y si el elemento referenciado no es #### Ver también -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 924 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md index e6797e0715502f..8b771c55518309 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver también -[DOM Get parent XML element](dom-get-parent-xml-element.md) \ No newline at end of file +[DOM Get parent XML element](dom-get-parent-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1053 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md index b2e1eddd9b7e98..0482cc1405cd64 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md @@ -37,4 +37,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 729 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md index bc2842ce2a055a..c9bfbf864fdbb5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md @@ -48,4 +48,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 728 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md index 23b61a1bcb8590..d083013e713d3a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md @@ -61,4 +61,13 @@ Después de la ejecución de estas instrucciones: #### Ver también [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1081 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md index 45245579cf7a66..c3f0c28432aa2f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md @@ -52,4 +52,13 @@ En este ejemplo, queremos encontrar la declaración DTD del documento XML: #### Ver también [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) \ No newline at end of file +[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1088 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md index 7761ab2ca7ca5f..9da97062ad5b5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md @@ -39,4 +39,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) \ No newline at end of file +[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 730 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md index bb6823f1ea6459..d4253a8631a6cb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md @@ -42,4 +42,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) -[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) \ No newline at end of file +[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 731 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md index 8f31ac377e3081..634aa5448baf9a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md @@ -32,4 +32,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 725 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md index 5944ba7b2dada3..1aaf8f539a4517 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md @@ -41,4 +41,13 @@ Estas constantes indican la siguiente información: #### Ver también -[XML GET ERROR](xml-get-error.md) \ No newline at end of file +[XML GET ERROR](xml-get-error.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 721 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md index 529083413a4bd0..7d20ba2d1740f0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md @@ -79,4 +79,13 @@ $rootRef:=DOM Parse XML source("") //selección de documento XML #### Ver también -[DOM Append XML element](dom-append-xml-element.md) \ No newline at end of file +[DOM Append XML element](dom-append-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1083 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md index fd20683b49fb2a..b57fdfb7d5f3ff 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md @@ -93,4 +93,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 719 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md index c0fc327929cc29..47cffae9041d11 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md @@ -81,4 +81,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML source](dom-parse-xml-source.md) \ No newline at end of file +[DOM Parse XML source](dom-parse-xml-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 720 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md index d236c25e97463d..0ba6b940fb7731 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md @@ -43,4 +43,14 @@ El siguiente código permite remover el primer atributo "N=1": [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) -[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) \ No newline at end of file +[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1084 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md index cf2d67f0f66eb5..fc4b1efbef9fc8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md @@ -26,4 +26,14 @@ Un error se genera cuando la referencia del elemento no es válida. #### Ver también [DOM Create XML element](dom-create-xml-element.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 869 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md index 34d062ae4e7a38..eabc8c5438945a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md @@ -66,4 +66,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 866 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md index 04efc1534334ab..7a94b9e516a663 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md @@ -36,4 +36,13 @@ El siguiente ejemplo define la codificación a utilizar y la opción autónomo d #### Ver también [DOM Create XML Ref](dom-create-xml-ref.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 859 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md index 56c727df586b28..a495256880995b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md @@ -57,4 +57,14 @@ Se genera un error cuando: #### Ver también -[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) \ No newline at end of file +[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 867 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md index 5be9c1bde39cbd..7a5d753c9d774f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md @@ -115,4 +115,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 868 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md index 56d443ff3d723f..ce862dfd85e5e4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DRAG WINDOW permite arrastrar la ventana en la cual el usuario hace clic para desplazarla en función de los movimientos del ratón. Generalmente este comando se llama desde un método de objeto de un objeto que pueda responder instantáneamente a los clics del ratón (por ejemplo un botón invisible). @@ -48,4 +45,13 @@ Luego puede arrastrar la ventana haciendo clic en cualquiera de los bordes. #### Ver también [GET WINDOW RECT](get-window-rect.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 452 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md index 4e029411723a2d..1572862c671fbe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Drop position puede utilizarse para descubrir la ubicación, en un objeto de destino “complejo”, donde un objeto ha sido (arrastrado y) soltado. @@ -95,4 +92,13 @@ El método de objeto list box de la izquierda (destino) contiene el siguiente c #### Ver también -*Arrastrar y soltar* \ No newline at end of file +*Arrastrar y soltar* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 608 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md index 76cbf0b59af3ac..bbe09dca64ca44 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md @@ -42,4 +42,13 @@ Desea eliminar un usuario remoto específico: #### Ver también [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) \ No newline at end of file +[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1633 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md index e959e99dc6d49e..a4cb5ee3077383 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md @@ -23,4 +23,14 @@ DUPLICATE RECORD puede ejecutarse durante la entrada de datos. Esto permite dupl #### Ver también -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 225 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md index 664ab8dbb8b586..e79643bf4230ea 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Dynamic pop up menu** hace aparecer un menú desplegable jerárquico en la ubicación actual del ratón o en la ubicación definida por los parámetros opcionales *Coordx* y *Coordy*. @@ -93,4 +90,13 @@ Este código permite crear un menú emergente dinámico jerárquico basado en ac [Get selected menu item parameter](get-selected-menu-item-parameter.md) [Pop up menu](pop-up-menu.md) [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1006 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md index 7ccc1ff445096e..ff66f81e36611b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción EDIT ACCESS permite modificar el sistema de contraseñas. Cuando se ejecuta este comando, se muestra la ventana de la caja de herramientas que contiene las páginas Usuarios y Grupos. @@ -36,4 +33,14 @@ El siguiente ejemplo muestra al usuario la ventana de gestión de usuarios y gru #### Ver también [CHANGE CURRENT USER](change-current-user.md) -[CHANGE PASSWORD](change-password.md) \ No newline at end of file +[CHANGE PASSWORD](change-password.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 281 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md index 2d431d371f97ac..e3642dbfed9786 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EDIT FORMULA muestra el editor de fórmulas con el fin de permitir al usuario escribir o modificar una fórmula. El editor contiene al abrir: @@ -55,4 +52,14 @@ Si el usuario valida la caja de diálogo, la variable sistema OK toma el valor 1 [APPLY TO SELECTION](apply-to-selection.md) [EXECUTE FORMULA](execute-formula.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 806 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md index e464f0fbfd5aa9..9ee2f97e8ffe09 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **EDIT ITEM** le permite editar el elemento actual o el elemento de número *elemento* del array o la lista designada por el parámetro *objeto*. @@ -73,4 +70,13 @@ Dadas dos columnas de un list box donde los nombres de las variables asociadas s [GOTO OBJECT](goto-object.md) [INSERT IN LIST](insert-in-list.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 870 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md index face80e3041dbb..de1714f3d88594 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ENABLE MENU ITEM activa el comando de menú cuyo número o referencia de menú y número de elemento usted pasó en *menu* y *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu*. @@ -30,4 +27,14 @@ Si omite el parámetro *proceso*, ENABLE MENU ITEM se aplica a la barra de menú #### Ver también -[DISABLE MENU ITEM](disable-menu-item.md) \ No newline at end of file +[DISABLE MENU ITEM](disable-menu-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 149 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md index 5dbb9fb2715da3..4a378252622499 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md @@ -184,4 +184,13 @@ Una empresa quiere utilizar el Internet para intercambiar información. Cada fil [DECRYPT BLOB](decrypt-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 689 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md index a7624568a71a93..f6e35e25d34360 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md @@ -59,4 +59,13 @@ Encriptar un archivo de texto ubicado en la carpeta RESOURCES de la base de dato [Decrypt data BLOB](decrypt-data-blob.md) [ENCRYPT BLOB](encrypt-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1773 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md index 5586bdc4dc64a3..f9e31601f22138 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Encrypt data file** se utiliza para cifrar o volver a cifrar el archivo de datos designado por el parámetro *rutaDatos* asociado al parámetro *rutaEstructura*. También se puede utilizar para eliminar el cifrado de la base de datos. El comando no modifica los archivos originales, devuelve el nombre de ruta completo de la carpeta creada para respaldar el archivo de datos original. @@ -133,4 +130,13 @@ Vuelva a cifrar un archivo de datos encriptados con la llave actual (por ejemplo [Data file encryption status](data-file-encryption-status.md) [Decrypt data BLOB](decrypt-data-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1610 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md index bc0c85b4336383..26461448ac26f7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Descripción -**End selection** devuelve TRUE cuando el puntero del registro actual está más allá del último registro de la selección actual de *tabla*. **End selection** se utiliza generalmente para probar si la llamada al comando [NEXT RECORD](next-record.md) ha movido o no el puntero del registro actual detrás del último registro de la selección. Si la selección actual está vacía, **End selection** devuelve TRUE. +**End selection** devuelve TRUE cuando el puntero del registro actual está más allá del último registro de la selección actual de *tabla*.se utiliza generalmente para probar si la llamada al comando [NEXT RECORD](next-record.md) ha movido o no el puntero del registro actual detrás del último registro de la selección. Si la selección actual está vacía, **End selection** devuelve TRUE. Para mover el puntero del registro actual dentro de la selección, utilice [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) o [GOTO SELECTED RECORD](goto-selected-record.md). [PREVIOUS RECORD](previous-record.md) no mueva el puntero a la selección. @@ -60,4 +60,13 @@ Este método de formulario se utiliza durante la impresión de un informe. Se de [Form event code](../commands/form-event-code.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 36 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md index faa06ccb3ea3e4..418970866ee789 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md @@ -20,4 +20,13 @@ Una secuencia de instrucciones SQL debe estar rodeada por las palabras claves [B #### Ver también -[Begin SQL](begin-sql.md) \ No newline at end of file +[Begin SQL](begin-sql.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 949 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md index e27c428ca61519..10b8e38d5a2f0b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md @@ -41,3 +41,14 @@ Este es el código del botón **Compare**: ```4d  $equal :=Equal pictures($pict1;$pict2;$mask) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1196 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md index ed4a7dd283e8d4..39680f91a4abc2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ERASE WINDOW borra el contenido de la ventana cuyo número de referencia se pasa en *ventana*. @@ -29,4 +26,13 @@ No confunda ERASE WINDOW, que borra el contenido de una ventana, con [CLOSE WIND #### Ver también [GOTO XY](goto-xy.md) -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 160 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md index 3e96f64e9768e3..bf86f5e003e5a0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md @@ -78,3 +78,13 @@ Estos son algunos ejemplos de conversiones que pueden realizarse con este comand   //Convertir el valor a Liras Italianas  $EnLiras:=Euro converter($valor;French Franc;Italian Lira) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 676 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md index f0a2c48f87b681..7e97609a3ec6b9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md @@ -65,4 +65,13 @@ Usted desea ejecutar una fórmula incluida las llamadas a los comandos y tablas [Command name](command-name.md) [EDIT FORMULA](edit-formula.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 63 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md index ca58247aa81ec6..0d635d03f5a9ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EXECUTE METHOD IN SUBFORM permite ejecutar el código desigando por *formula* en el contexto del subformulario *objetoSubform*. @@ -75,3 +72,14 @@ Si este método se utilizó directamente en el método del formulario Calendar, #### Variables y conjuntos del sistema Si este comando se ejecuta correctamente, la variable sistema OK toma el valor 1; de lo contrario toma el valor 0. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1085 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md index b79acff8482d9b..cf8dba66937a94 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md @@ -31,4 +31,14 @@ Si este comando se ejecuta correctamente, la variable sistema OK toma el valor 1 #### Ver también -[EXECUTE FORMULA](execute-formula.md) \ No newline at end of file +[EXECUTE FORMULA](execute-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1007 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md index 5bdc42efce3e3f..480c6996da10d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EXECUTE ON CLIENT provoca la ejecución del método *nomMetodo*, con los parámetros *param1... paramN*, si es necesario, en el cliente 4D registrado cuyo nombre es *nomCliente*. El nombre registrado del cliente 4D es definido por el comando [REGISTER CLIENT](register-client.md "REGISTER CLIENT"). @@ -61,4 +58,14 @@ Consulte el ejemplo del comando [REGISTER CLIENT](register-client.md "REGISTER C [Execute on server](execute-on-server.md) [GET REGISTERED CLIENTS](get-registered-clients.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 651 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md index ade8f51bef453f..e28a8a43d68e6f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Execute on server inicia un nuevo proceso en el equipo servidor (cuando se llama en Cliente/Servidor) o en el mismo equipo (si se llama en monousuario) y devuelve el número de este proceso. @@ -190,4 +187,13 @@ Consulte la sección *Servicios basados en los procedimientos almacenados (ejemp #### Ver también [EXECUTE ON CLIENT](execute-on-client.md) -[New process](new-process.md) \ No newline at end of file +[New process](new-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 373 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/exp.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/exp.md index 1ae3c33c23f33f..113bbd4527b74d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/exp.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/exp.md @@ -30,4 +30,13 @@ El siguiente ejemplo asigna el exponencial de 1 a *vrE* (el log de *vrE* es 1): #### Ver también -[Log](log.md) \ No newline at end of file +[Log](log.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 21 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md index 50344362541b9c..8dbf9bfdc96a31 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md @@ -63,4 +63,14 @@ La variable OK toma el valor 1 si el BLOB ha sido descomprimido con éxito, de l #### Ver también [BLOB PROPERTIES](blob-properties.md) -[COMPRESS BLOB](compress-blob.md) \ No newline at end of file +[COMPRESS BLOB](compress-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 535 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md index 22610c0eaa5b17..6742bdc7c00715 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EXPORT DATA exportar datos en el archivo *nomArchivo*. 4D puede exportar datos en los siguientes formatos: Texto, Texto de longitud fija, XML, SYLK, DIF, DBF (dBase) y 4D. @@ -98,4 +95,14 @@ Si el usuario hace clic en **Cancelar** en la caja de diálogo estándar de abri [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) -[IMPORT DATA](import-data.md) \ No newline at end of file +[IMPORT DATA](import-data.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 666 | +| Hilo seguro | ✗ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md index 2092feac7a7f0d..87deeeba0fd62d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EXPORT DIF escribe los datos de los registros de la selección actual de *tabla* en el proceso actual. Los datos se escriben en *documento*, un documento DIF Windows o Macintosh, en el disco. @@ -51,4 +48,14 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 84 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md index 3f3b22382e8b47..2a719af145f633 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Export structure file** divide la estructura actual de la base 4D en un conjunto de archivos de texto o archivos de imagen nativos y los almacena en la *rutaCarpeta* especificada. Por defecto, se exporta la totalidad de la estructura de la base (métodos, formularios, catálogo, etc.). Puede filtrar los contenidos a exportar utilizando el parámetro *opciones* (ver abajo). @@ -115,4 +112,13 @@ Desea exportar solo los métodos proyecto y base, y un archivo de registro: #### Ver también -[FORM Convert to dynamic](form-convert-to-dynamic.md) \ No newline at end of file +[FORM Convert to dynamic](form-convert-to-dynamic.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1565 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md index 9b807a5da05fbc..ff53a39c85eae3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md @@ -54,4 +54,13 @@ Desea exportar la estructura actual de la base de datos en formato html: #### Ver también -[IMPORT STRUCTURE](import-structure.md) \ No newline at end of file +[IMPORT STRUCTURE](import-structure.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1311 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md index fb2a033922c84f..5e359834c39810 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **EXPORT SYLK** escribe los datos de los registros de la selección actual de *tabla* en el proceso actual. Los datos se escriben en *documento*, un documento Sylk Windows o Macintosh, en el disco. @@ -51,4 +48,14 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma [EXPORT DIF](export-dif.md) [EXPORT TEXT](export-text.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 85 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md index 2fdfb928cc71bd..18580801d0772b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EXPORT TEXT escribe datos de los registros de la selección actual de la *tabla* en el proceso actual. Los datos se escriben en *documento*, un documento de texto Windows o Macintosh en el disco. @@ -53,4 +50,14 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 167 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/false.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/false.md index ce35cd233a726a..ea0ebdb5a758d8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/false.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/false.md @@ -28,4 +28,13 @@ El siguiente ejemplo asigna la variable *vbOpciones* a Falso: #### Ver también [Not](not.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 215 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md index 92e0467aaaeb13..9e206e83efca18 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md @@ -48,4 +48,13 @@ Este ejemplo muestra una alerta. Este método pasa un puntero a un campo: [Field](field.md) [Last field number](last-field-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 257 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field.md index f312f41c0d6817..dfcce8f8b5304b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field.md @@ -56,4 +56,13 @@ En el siguiente ejemplo, la variable *campNum* es igual al número del campo de [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last field number](last-field-number.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 253 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md index 8944dbb231b920..9336aee836c41a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Llame al comando **FILTER EVENT** desde el interior del método de gestión de eventos instalado utilizando el comando [ON EVENT CALL](on-event-call.md). @@ -42,4 +39,14 @@ Ver el ejemplo del comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL"). #### Ver también -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 321 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md index 526fe6b55d54c9..2cc2be01409406 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción FILTER KEYSTROKE permite reemplazar el carácter introducido por el usuario en un campo o en un área editable por el primer carácter de la cadena *carFiltro*. @@ -243,3 +240,13 @@ El método ObtenerTextoSeleccionado es el siguiente: [Get edited text](get-edited-text.md) [Is editing text](is-editing-text.md) [Keystroke](keystroke.md) + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 389 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md index a1415868fc239d..5fa5f6a95c8a59 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md @@ -108,4 +108,13 @@ Desea encontrar una referencia a un objeto: [DELETE FROM ARRAY](delete-from-array.md) [Find in sorted array](find-in-sorted-array.md) [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 230 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md index 17425b0fe5ba9d..ea86fbcfebceea 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md @@ -62,3 +62,13 @@ Este es un ejemplo que permite verificar la existencia de un valor: ``` Tenga en cuenta >= permite cubrir todos los casos. De hecho, la función devuelve un número de registro y el primer registro tiene el número 0. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 653 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md index 6120fd52ebefef..4a160e14176fbd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Find in list devuelve la posición o referencia del primer elemento de la *lista* que es equivalente a la cadena pasada en *valor*. Si se encuentran varios elementos, la función también puede llenar un array *arrayElem* con la posición o la referencia de cada elemento. @@ -64,3 +61,13 @@ Dada la siguiente lista jerárquica:  $vlItemPos:=Find in list(hList;"Fecha";0;*)   //$vlItemPos igual a 0 ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 952 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md index 5e2507ffbf1501..ff1105d2004587 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md @@ -73,4 +73,13 @@ Usted quiere encontrar el número de ocurrencias de las cadenas que comienzan po [Count in array](count-in-array.md) [Find in array](find-in-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1333 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md index d78656460ce5a4..e6569bc7a4d9e4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Find windowdevuelve (si existe) el número de referencia de la primera ventana “tocada” por el punto cuyas coordenadas se pasan en *izquierda* y *superior*. @@ -30,4 +27,13 @@ El parámetro *parteVentana* devuelve 3 si se toca la ventana, de lo contrario 0 #### Ver también [Frontmost window](frontmost-window.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 449 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md index 65f75403b6eb33..e3f8252e89c979 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md @@ -33,4 +33,14 @@ El siguiente ejemplo carga el primer registro de la tabla \[Clientes\]: [End selection](end-selection.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 50 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md index a1b433a0de13c3..d30cfff6ef0b72 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md @@ -29,4 +29,13 @@ Normalmente, no es necesario llamar a este comando, ya que 4D guarda las modific #### Ver también [Get database parameter](get-database-parameter.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 297 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md index 481ea74fe22d62..cba2b8aa50821b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Nota de compatibilidad Este comando sólo se conserva por razones de compatibilidad. A partir de la versión 12 de 4D, se recomienda utilizar el comando [OBJECT Get pointer](object-get-pointer.md "OBJECT Get pointer"). @@ -50,4 +47,13 @@ El siguiente ejemplo es un método de objeto para un botón. El método de objet #### Ver también -[OBJECT Get pointer](object-get-pointer.md) \ No newline at end of file +[OBJECT Get pointer](object-get-pointer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 278 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md index 98a0501294b916..29bd4073a80238 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md @@ -16,13 +16,21 @@ displayed_sidebar: docs #### Descripción -El comando FOLDER LIST llena el array de tipo Texto o Alfa *directorios* con los nombres de las carpetas ubicadas en la ruta de acceso que se pasa en *rutaAcceso*. - -**Nota:** debe pasar una ruta de acceso absoluta en el parámetro *rutaAcceso*. +El comando FOLDER LIST llena el array de tipo Texto o Alfa *directorios* con los nombres de las carpetas ubicadas en la ruta de acceso que se pasa en *rutaAcceso*.debe pasar una ruta de acceso absoluta en el parámetro *rutaAcceso*. Si no hay carpetas en la ubicación especificada, el comando devuelve un array vacío. Si la ruta de acceso que se pasa en *rutaAcceso* es incorrecta, FOLDER LIST genera un error del administrador de archivos que puede interceptar utilizando un método [ON ERR CALL](on-err-call.md "ON ERR CALL"). #### Ver también [DOCUMENT LIST](document-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 473 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md index a4096b8887c185..9d57c6711b5096 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md @@ -47,4 +47,13 @@ Desea asegurarse de que la fuente utilizada en un área de texto esté disponibl #### Ver también -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1700 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md index 7c3a938a8fa7b7..49cb69ce74c2da 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md @@ -74,4 +74,13 @@ Usted quiere obtener una lista de fuentes recientes: [OBJECT SET FONT](object-set-font.md) [SET RECENT FONTS](set-recent-fonts.md) [ST SET ATTRIBUTES](st-set-attributes.md) -*Tipo de lista de las fuentes* \ No newline at end of file +*Tipo de lista de las fuentes* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 460 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md index 7c45fc9b9cdc6a..b63f0581d81f89 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md @@ -57,4 +57,13 @@ Usted desea seleccionar estilos de la familia de fuentes "Verdana" (si está dis #### Ver también -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1362 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md index e71f874a97a351..deccfea5142ace 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM Convert to dynamic** convierte el *nomFormulario* (formulario clásico) a un formulario dinámico y lo devuelve en un objeto. @@ -59,4 +56,13 @@ Si ejecuta el código: #### Ver también [DIALOG](../commands/dialog.md) -[Export structure file](export-structure-file.md) \ No newline at end of file +[Export structure file](export-structure-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1570 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md index d9dfde992ff73e..d9484608b03be3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción FORM FIRST PAGE cambia la página actual del formulario por la primera página del formulario.Si ningún formulario es mostrado o cargado por el comando [FORM LOAD](../commands/form-load.md), o si la primera página del formulario ya se muestra, FORM FIRST PAGE no hace nada. @@ -33,4 +30,13 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 250 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md index b85a05eeb16fa6..83d0b4752d3137 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM Get color scheme** devuelve el nombre de la combinación de colores actual del formulario mostrado actualmente. Si no hay un formulario actual, el comando devuelve una cadena vacía. @@ -45,4 +42,13 @@ Desea cargar una imagen según el esquema actual del formulario: #### Ver también [Get application color scheme](get-application-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1761 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md index f659be6c3c3d40..f9bfbe15cbe3f0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM Get current page** devuelve el número de la página actual del formulario mostrada actualmente o del formulario actual cargado vía el comando [FORM LOAD](../commands/form-load.md). @@ -71,4 +68,13 @@ En un formulario, si selecciona un elemento de menú de la barra de menús o si [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 276 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md index e9aa01c681d861..06a2ec94bba8f4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM GET ENTRY ORDER** devuelve en *nomObjetos* los nombres ordenados de los objetos que definen el orden de entrada del formulario. @@ -53,4 +50,13 @@ Puede excluir ciertos objetos del orden de entrada: #### Ver también -[FORM SET ENTRY ORDER](form-set-entry-order.md) \ No newline at end of file +[FORM SET ENTRY ORDER](form-set-entry-order.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1469 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md index 7e18bb71211551..fb71f228e4a70c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM GET HORIZONTAL RESIZING devuelve las propiedades de redimensionamiento horizontal del formulario actual en las variables *redimension*, *anchoMin* y *anchoMax*. Estas propiedades pueden haberse definido para el formulario en el editor de formularios en modo Diseño o para el proceso actual vía el comando [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md "FORM SET HORIZONTAL RESIZING"). #### Ver también -[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) \ No newline at end of file +[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1077 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md index 34d908ec4b3ec9..c39a9b07b2f8e0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM GET NAMES** llena el array *arrayNoms* con los nombres de los formularios de la aplicación. @@ -69,4 +66,13 @@ Ejemplos de uso típicos: #### Ver también *Formularios* -[METHOD GET PATHS FORM](../commands/method-get-paths-form.md) \ No newline at end of file +[METHOD GET PATHS FORM](method-get-paths-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1167 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md index 5b035e14ef836e..04515f32918f99 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM GET OBJECTS devuelve en forma de array(s) la lista de todos los objetos presentes en el formulario actual. Esta lista puede estar restringida a la página actual del formulario y puede excluir los objetos de los formularios heredados. El comando puede ser utilizado con los formularios de entrada y de salida. @@ -126,4 +123,13 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los [FORM GET PROPERTIES](form-get-properties.md) *Objetos (Formularios)* -*Objetos de formulario (Acceso)* \ No newline at end of file +*Objetos de formulario (Acceso)* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 898 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md index 4c421996d40f70..829606916c88b0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando \[#current\_title devuelve las propiedades del formulario *nomForm*. @@ -43,4 +40,13 @@ El parámetro *título* devuelve el título de la ventana del formulario, tal co [FORM GET OBJECTS](form-get-objects.md) [FORM SET SIZE](form-set-size.md) -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 674 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md index e82e7bb9aba0ae..e2208cc588d14f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM GET VERTICAL RESIZING devuelve las propiedades de redimensionamiento vertical del formulario actual en las variables *redimension*, *alturaMin* y *alturaMax*. Estas propiedades pueden haberse definido para el formulario en el editor de formularios en modo Diseño o para el proceso actual vía el comando [FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md "FORM SET VERTICAL RESIZING"). #### Ver también -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1078 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md index 59d75e8d44072f..8976f5bce108a3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **FORM GOTO PAGE** cambia la página actual de un formulario para mostrar la página especificada por *numPag*. @@ -50,4 +47,13 @@ El siguiente ejemplo es un método de objeto para un botón que muestra una pág [FORM Get current page](form-get-current-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 247 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md index dc1bd0e3e677ea..c4e263ce510b90 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción FORM LAST PAGE cambia la página actual de un formulario para mostrar la última página del formulario. Si ningún formulario es mostrado o cargado por el comando [FORM LOAD](../commands/form-load.md), o si ya se muestra la última página del formulario, FORM LAST PAGE no hace nada. @@ -33,4 +30,13 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 251 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md index c959b059d4f6c2..ede642b338d29f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción FORM NEXT PAGE cambia la página actual del formulario para mostrar la página siguiente.Si ningún formulario es mostrado o cargado por el comando [FORM LOAD](../commands/form-load.md), o si ya se muestra la última página del formulario, FORM NEXT PAGE no hace nada. @@ -33,4 +30,13 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 248 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md index 7ebefcc00fa57d..7182533f85f350 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción FORM PREVIOUS PAGE cambia la página actual de un formulario para mostrar la página anterior. Si ningún formulario es mostrado o cargado por el comando [FORM LOAD](../commands/form-load.md) o si ya se muestra la primera página del formulario, FORM PREVIOUS PAGE no hace nada. @@ -33,4 +30,13 @@ El siguiente ejemplo es un método de una línea llamado por un comando de menú [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM NEXT PAGE](form-next-page.md) \ No newline at end of file +[FORM NEXT PAGE](form-next-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 249 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md index e2d5940ddba439..5bf961e1aee39f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM SCREENSHOT** devuelve un formulario en forma de imagen. Este comando admite dos sintaxis diferentes: en función de la sintaxis utilizada, puede obtener la imagen de un formulario ejecutado, o la imagen del formulario en el editor de formularios. @@ -38,4 +35,13 @@ Por defecto, el comando devuelve una captura de pantalla de la página 1 del for #### Ver también -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 940 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md index 1c5c801d1e1f40..24863e47ad11db 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM SET ENTRY ORDER** permite definir dinámicamente el orden de entrada del formulario actual para el proceso actual basado en el array *nomObjetos*. @@ -55,4 +52,13 @@ Usted desea definir el orden de entrada de los objetos en el formulario basado e #### Ver también -[FORM GET ENTRY ORDER](form-get-entry-order.md) \ No newline at end of file +[FORM GET ENTRY ORDER](form-get-entry-order.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1468 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md index b53c0211a023a1..ad2fc4c3956ce5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM SET HORIZONTAL RESIZING permite cambiar por programación las propiedades de redimensionamiento horizontal del formulario actual. Por defecto, estas propiedades son definidas en el editor de formularios en el entorno Diseño. Las nuevas propiedades son definidas para el proceso actual; no se almacenan con el formulario. @@ -38,4 +35,13 @@ Consulte el ejemplo del comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE" [FORM GET HORIZONTAL RESIZING](form-get-horizontal-resizing.md) [FORM SET SIZE](form-set-size.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 892 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md index 79f699424f4fa0..6eba5ad193ad50 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM SET INPUT define el formulario de entrada actual de *tabla* para *form* o *formUsuario*. El formulario debe pertenecer a *tabla*. @@ -108,4 +105,13 @@ que devuelve: [MODIFY RECORD](modify-record.md) [MODIFY SELECTION](modify-selection.md) [Open window](open-window.md) -[QUERY BY EXAMPLE](query-by-example.md) \ No newline at end of file +[QUERY BY EXAMPLE](query-by-example.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 55 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md index 82d1ce7fa914ca..5addd78bef36fe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM SET OUTPUT** define el formulario de salida actual de *formulario* o *formUsuario*. El formulario debe pertenecer a *tabla*. @@ -71,4 +68,13 @@ Los siguientes ejemplos usan la ruta a un formulario .json para imprimir los reg [FORM SET INPUT](form-set-input.md) [MODIFY SELECTION](modify-selection.md) [PRINT LABEL](print-label.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 54 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md index 08c8852283cfbb..8fed87ac93104a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM SET SIZE le permite cambiar el tamaño del formulario actual por programación. El nuevo tamaño es definido por el proceso actual; no está almacenado con el formulario. @@ -123,4 +120,13 @@ El método de objeto asociado con este botón es el siguiente: #### Ver también [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 891 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md index 27ae880f3e87a5..8e9aa4249bb9de 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM SET VERTICAL RESIZING le permite modificar por programación las propiedades de redimensionamiento vertical del formulario actual. Por defecto, estas propiedades son definidas en el editor de formularios en el entorno Diseño. Las nuevas propiedades son definidas para el proceso actual; no son almacenadas con el formulario. @@ -38,4 +35,13 @@ Consulte el ejemplo del comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE" [FORM GET VERTICAL RESIZING](form-get-vertical-resizing.md) [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET SIZE](form-set-size.md) \ No newline at end of file +[FORM SET SIZE](form-set-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 893 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md index abcc1e6e493e0e..90e7d649639ccd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM UNLOAD** libera de la memoria el formulario actual designado utilizando el comando [FORM LOAD](../commands/form-load.md). @@ -23,4 +20,13 @@ Llamar este comando es necesario cuando se utiliza el comando [FORM LOAD](../com #### Ver también -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1299 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md index ebca62b25924d6..aaa2cb982a0b0c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Frontmost process devuelve el número del proceso cuya ventana (o ventanas) están en el primer plano. @@ -35,4 +32,13 @@ Ver el ejemplo para [BRING TO FRONT](bring-to-front.md "BRING TO FRONT"). #### Ver también [BRING TO FRONT](bring-to-front.md) -[WINDOW LIST](window-list.md) \ No newline at end of file +[WINDOW LIST](window-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 327 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md index 8a2a5ab977bc45..6f764c6a9f3713 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Frontmost window devuelve el número de referencia de la ventana ubicada en el primer plano. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver también [Frontmost process](frontmost-process.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 447 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md index 6afd3308637821..2a1e2b694adf8d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md @@ -86,4 +86,13 @@ Este es el método del botón **Generar** #### Ver también [GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 691 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md index 9f3aa206c702db..712c830b2ed910 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md @@ -83,4 +83,13 @@ Estos ejemplos ilustran cómo recuperar el extracto de un texto: [BASE64 ENCODE](base64-encode.md) [Generate password hash](generate-password-hash.md) *Protocolo seguro* -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1147 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md index 13c631d9fcacd4..81446455f6ebe2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md @@ -51,4 +51,13 @@ Ver el ejemplo del comando [ENCRYPT BLOB](encrypt-blob.md "ENCRYPT BLOB"). [DECRYPT BLOB](decrypt-blob.md) [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 688 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md index c291148c988c6a..4757bfb1930721 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md @@ -66,4 +66,13 @@ Este ejemplo genera un hash de contraseña utilizando bcrypt con un factor de co [Generate digest](generate-digest.md) -[Verify password hash ](verify-password-hash.md) \ No newline at end of file +[Verify password hash ](verify-password-hash.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1533 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md index b89250a07c1db2..e60f916092a977 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md @@ -29,3 +29,13 @@ Generación de un UUID en una variable:  var MyUUID : Text  MyUUID:=Generate UUID ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1066 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md index afd838cfe8337f..e73e898707eebe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md @@ -68,4 +68,13 @@ Usted quiere obtener la ruta del último archivo de backup: #### Ver también -[File](file.md) \ No newline at end of file +[File](file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1418 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md index fbefebdbb77a9d..79e89202d38c08 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md @@ -51,8 +51,8 @@ Las aplicaciones del entorno 4D utilizan una carpeta especifica para almacenar l La carpeta 4D activa es creada por defecto en la siguiente ubicación: -* En Windows: *{Disk}:\\Users\\* *\\AppData\\Roaming\\* -* En macOS: *{Disk}:Users:* *:Library:Application Support:* +* En Windows: *{Disk}:\\Users\\{userName}\\AppData\\Roaming\\{applicationName}* +* En macOS: *{Disk}:Users:{userName}:Library:Application Support:{applicationName}* ##### Carpeta Licencias @@ -207,4 +207,14 @@ Si el parámetro *carpeta* no es válido o si la ruta de acceso devuelta está v [System folder](system-folder.md) [Temporary folder](temporary-folder.md) [Test path name](test-path-name.md) -[WEB SET ROOT FOLDER](web-set-root-folder.md) \ No newline at end of file +[WEB SET ROOT FOLDER](web-set-root-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 485 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md index f60f7d1d170731..8268164bd1989a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) *Gestión de prioridades en la caché de la base* -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1428 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md index 45199aa0111ff6..b1ee344e670495 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) *Gestión de prioridades en la caché de la base* -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1427 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md index 7f7c5ace7370e1..a5bc695681ab41 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md @@ -26,4 +26,13 @@ Los tipos de campos de datos escalares incluyen campos de tipo fecha/hora, numé [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) *Gestión de prioridades en la caché de la base* -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1426 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md index cf8ee860db39b7..59496e880f2445 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET ALLOWED METHODS devuelve, en *arrMetodos*, los nombres de los métodos que pueden utilizarse para escribir fórmulas. Estos métodos están listados al final de la lista de comandos en el editor. @@ -45,4 +42,13 @@ Este ejemplo autoriza un conjunto de métodos específicos para crear un informe #### Ver también -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 908 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md index 0d866e43732d47..4ca176cf853ac7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get application color scheme** devuelve el nombre del esquema de color real en uso en el nivel de la aplicación. @@ -45,4 +42,13 @@ Consulte la descripción del comando [SET APPLICATION COLOR SCHEME](set-applicat #### Ver también [FORM Get color scheme](form-get-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1763 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md index c66209b97366e7..c315d688b458ea 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md @@ -23,4 +23,13 @@ Por defecto, las aserciones están activas pero pueden haber sido desactivadas u [ASSERT](assert.md) [Asserted](asserted.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1130 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md index 25ccafb6a83e22..392d801c17612e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md @@ -34,4 +34,13 @@ Consulte el ejemplo del comando [GET FIELD RELATION](get-field-relation.md "GET [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 899 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md index c9723cf6ac0cb5..6941c4f21a1ef3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -El comando **Get cache size** devuelve, en bytes, el tamaño actual de la caché de la base de datos. - -**Nota:** este comando sólo funciona en modo local (4D Server y 4D); no debe ser utilizado con 4D en modo remoto. +El comando **Get cache size** devuelve, en bytes, el tamaño actual de la caché de la base de datos.este comando sólo funciona en modo local (4D Server y 4D); no debe ser utilizado con 4D en modo remoto. #### Ejemplo @@ -25,4 +23,13 @@ Ver el ejemplo del comando [SET CACHE SIZE](set-cache-size.md). #### Ver también -[SET CACHE SIZE](set-cache-size.md) \ No newline at end of file +[SET CACHE SIZE](set-cache-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1432 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md index 2e58471aafcacb..0ef36ae3303a6f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get current printer**devuelve el nombre de la impresora actual definida en la aplicación 4D. Por defecto, al inicio de 4D, la impresora actual es la impresora definida en el sistema. @@ -33,4 +30,13 @@ Si no hay ninguna impresora instalada, se genera un error. #### Ver también [PRINTERS LIST](printers-list.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 788 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md index 2f933ba2a93325..f8dcc9868e65f1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md @@ -50,4 +50,13 @@ El lenguaje actual de la base permite definir la carpeta .lproj en la que el pro #### Ver también [Localized document path](localized-document-path.md) -[SET DATABASE LOCALIZATION](set-database-localization.md) \ No newline at end of file +[SET DATABASE LOCALIZATION](set-database-localization.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1009 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md index 0b26d964cdf19b..6e22d1e8422771 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get database parameter** permite obtener el valor actual de un parámetro de la base 4D. Cuando el valor del parámetro es una cadena de caracteres, se devuelve en el parámetro *valorAlfa*. @@ -134,4 +131,13 @@ En el [Método base On Startup](metodo-base-on-startup.md), usted escribe: [DISTINCT VALUES](distinct-values.md) [Application info](application-info.md) [QUERY SELECTION](query-selection.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 643 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md index 071049e205a4b9..79d1725ce10033 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get default user devuelve el número de referencia único del usuario designado como “Usuario por defecto” en la caja de diálogo de Preferencias de la base: @@ -23,3 +20,13 @@ displayed_sidebar: docs ![](../assets/en/commands/pict36789.es.png) Si ningún usuario por defecto está definido, el comando devuelve 0. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 826 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md index f1398f713ec7bc..059a42dc880c2f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando GET DOCUMENT ICON devuelve en el campo o la variable imagen 4D *icono*, el icono del documento cuyo nombre o ruta de acceso se pasa en *rutaDoc*. *rutaDoc* puede especificar un archivo de todo tipo (ejecutable, documento, atajo o alias, etc.) o una carpeta. +El comando GET DOCUMENT ICON devuelve en el campo o la variable imagen 4D *icono*, el icono del documento cuyo nombre o ruta de acceso se pasa en *rutaDoc*.puede especificar un archivo de todo tipo (ejecutable, documento, atajo o alias, etc.) o una carpeta. Pase en *rutaDoc* la ruta de acceso absoluta del documento. Igualmente, puede pasar únicamente el nombre del documento o ruta de acceso relativa, en este caso el documento debe encontrarse en el directorio actual de la base (generalmente, la carpeta que contiene el archivo de estructura de la base). @@ -26,3 +26,14 @@ Si pasa una cadena vacía en *rutaDoc*, aparece la caja de diálogo estándar de Pase en *icono* un campo o una variable imagen 4D. Después de la ejecución del comando, este parámetro contiene el icono del archivo (formato PICT). El parámetro opcional *tamaño* permite indicar las dimensiones en píxeles del icono. Este valor representa el largo del cuadrado incluyendo el icono. Generalmente, los iconos se definen de 32x32 píxeles (“iconos largos”) o 16x16 píxeles (“iconos pequeños”). Si pasa 0 u omite este parámetro, el comando devuelve el icono más grande disponible. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 700 | +| Hilo seguro | ✓ | +| Modifica variables | Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md index 8a50170de65077..3944985584bedc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md @@ -24,4 +24,13 @@ Get document position devuelve la posición, a partir del inicio del documento, [RECEIVE PACKET](receive-packet.md) [SEND PACKET](send-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 481 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md index 55627ef44ae8e7..da41ca4fe4748c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md @@ -207,4 +207,14 @@ Una vez implementado en la base, tenemos todo lo que necesitamos para escribir e #### Ver también -[SET DOCUMENT PROPERTIES](set-document-properties.md) \ No newline at end of file +[SET DOCUMENT PROPERTIES](set-document-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 477 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md index 0e5cbe04c453f3..39fe87b078a7a2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md @@ -28,4 +28,14 @@ En Macintosh, si no pasa el parámetro opcional *\**, se devuelve el tamaño del [Get document position](get-document-position.md) [SET DOCUMENT POSITION](set-document-position.md) -[SET DOCUMENT SIZE](set-document-size.md) \ No newline at end of file +[SET DOCUMENT SIZE](set-document-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 479 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md index 7684ea7f099cf8..c6ad36d4729c39 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get edited text** se utiliza principalmente con el evento formulario On After Edit para recuperar el texto a medida que es introducido. También puede utilizarse con los eventos formulario On Before Keystroke y On After Keystroke. Para mayor información sobre estos eventos formulario, por favor consulte la descripción del comando [Form event code](../commands/form-event-code.md). @@ -67,4 +64,13 @@ Este es un ejemplo de cómo procesar inmediatamente los caracteres introducidos #### Ver también [Form event code](../commands/form-event-code.md) -[Is editing text](is-editing-text.md) \ No newline at end of file +[Is editing text](is-editing-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 655 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md index 88f816ad0bb685..81daa306f1e980 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md @@ -30,4 +30,13 @@ Este comando devuelve una cadena vacía en los siguiente casos: #### Ver también -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1133 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md index 9ab713ac8fd92b..172d0634d762ae 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET FIELD ENTRY PROPERTIES devuelve las propiedades de entrada de datos para el campo especificado por *numTabla* y *numCamp* o por *ptrCamp*. @@ -46,4 +43,13 @@ Si ninguna lista está asociada al campo o si el tipo del campo no permite la as [GET FIELD PROPERTIES](get-field-properties.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[GET TABLE PROPERTIES](get-table-properties.md) \ No newline at end of file +[GET TABLE PROPERTIES](get-table-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 685 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md index 68381c166d16f7..d610b1d451df20 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md @@ -73,4 +73,13 @@ Este ejemplo recupera en las variables *vTipo*, *vLong*, *vIndex*, *vUnico* y *v [Field](field.md) [Field name](field-name.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 258 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md index 0bbbc0173ec73b..2e05cbcd75e8be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md @@ -82,4 +82,13 @@ El siguiente código ilustra las diferentes posibilidades ofrecidas por los coma [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET RELATION PROPERTIES](get-relation-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 920 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md index 73a72b9535674e..55ea43c34b2293 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET FIELD TITLES llena los arrays *titulosCampos* y *numCampos* con los nombres y los números de los campos de la *tabla*. Los contenidos de estos dos arrays están sincronizados. @@ -31,4 +28,13 @@ En ambos casos, el comando no devuelve campos invisibles. #### Ver también [GET TABLE TITLES](get-table-titles.md) -[SET FIELD TITLES](set-field-titles.md) \ No newline at end of file +[SET FIELD TITLES](set-field-titles.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 804 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md index e608d76be40364..3cf223f72b09bd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get file from pasteboard devuelve la ruta de acceso absoluto de un archivo incluido en una operación de arrastrar y soltar. Varios archivos pueden ser seleccionados y movidos simultáneamente. El parámetro *indiceN* se utiliza para designar un archivo entre un conjunto de archivos seleccionados. @@ -43,4 +40,13 @@ El siguiente ejemplo puede utilizarse para recuperar en un array todas las rutas #### Ver también -[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) \ No newline at end of file +[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 976 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md index be89084b4ff46d..f004cbd6cd2e74 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md @@ -34,4 +34,13 @@ Desea verificar si el usuario actual pertenece al grupo "plugins": #### Ver también -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1738 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md index f4bc9c0f023556..dc6e109758c040 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción GET GROUP LIST llena los arrays *nomGrupos y* *numGrupos* con los nombres y los números de referencia únicos de los grupos tal como aparecen en la ventana del editor de contraseñas. @@ -34,4 +31,14 @@ Si no tiene privilegios de acceso para llamar al comando GET GROUP LIST o si otr [GET GROUP PROPERTIES](get-group-properties.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 610 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md index 65f59bdc8a730e..087d51df8ed3bb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción GET GROUP PROPERTIES devuelve las propiedades del grupo cuyo número de referencia se pasa en *refGrupo*. Pase el número de referencia del grupo devuelto por el comando [GET GROUP LIST](get-group-list.md). @@ -41,4 +38,14 @@ Si no tiene privilegios de acceso para llamar al comando GET GROUP PROPERTIES o [GET GROUP LIST](get-group-list.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 613 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md index 7e18db69cd74a3..d5815ea9e03adc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET HIGHLIGHT permite determinar el texto seleccionado actualmente en *objeto*. @@ -65,4 +62,13 @@ Modificación del estilo del texto resaltado: [FILTER KEYSTROKE](filter-keystroke.md) [HIGHLIGHT TEXT](highlight-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 209 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md index 04bf0ed6fc6c44..a13d944958dba4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET HIGHLIGHTED RECORDS guarda en el conjunto designado por el parámetro *nomConjunto* los registros seleccionados (es decir, los registros seleccionados por el usuario en el formulario listado) de la *tabla* pasada como parámetro. Si el parámetro *tabla* se omite, se utiliza la tabla del formulario o del subformulario actual. @@ -45,4 +42,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[HIGHLIGHT RECORDS](highlight-records.md) \ No newline at end of file +[HIGHLIGHT RECORDS](highlight-records.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 902 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md index c108cabfff5dc7..6a013b948406f9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get indexed string devuelve: @@ -40,4 +37,14 @@ Si el recurso se encuentra, OK toma el valor 1, de lo contrario toma el valor 0 [Get string resource](get-string-resource.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 510 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md index 592b20dc7a695a..7c114d02880c1f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md @@ -24,4 +24,13 @@ Este comando está destinado a ser utilizado en un proceso de actualización aut #### Ver también [RESTART 4D](restart-4d.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1301 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md index ce0d9246f78302..cda37144b469ca 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get list item font devuelve el nombre de la fuente del carácter actual del elemento especificado por el parámetro RefElem de la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -33,4 +30,13 @@ Finalmente, puede pasar \* en *refElem*: en este caso, el comando se aplicará a #### Ver también -[SET LIST ITEM FONT](set-list-item-font.md) \ No newline at end of file +[SET LIST ITEM FONT](set-list-item-font.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 954 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md index 22524a6629afd4..ab89d6be1436a3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET LIST ITEM ICON devuelve, en *icono*, el icono asociado al elemento cuyo número de referencia se pasa en *refElem* de la lista cuyo número de referencia o nombre de objeto pasa en *lista*. @@ -40,4 +37,13 @@ Si ningún icono está asociado al elemento, la variable icono se devuelve vací #### Ver también [GET LIST ITEM PROPERTIES](get-list-item-properties.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 951 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md index c06ffbd163cc75..446d3ebf0d3ffc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET LIST ITEM PARAMETER ARRAYS** permite recuperar en una sola llamada el conjunto de los parámetros (así como también, opcionalmente, sus valores) asociados al elemento *refElemento* de la lista jerárquica cuya referencia o nombre de objeto se pasó en el parámetro *lista*. @@ -77,4 +74,13 @@ Si también quiere obtener los valores de los parámetros, escriba: #### Ver también -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1195 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md index 13057bf7ed0856..8a60dc618d560b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET LIST ITEM PARAMETER permite conocer el *valor* actual del parámetro *selector* para el elemento *refElem* de la lista jerárquica cuya referencia o nombre de objeto se pasa en el parámetro *lista*. @@ -37,4 +34,13 @@ En *selector*, puede pasar la constante Additional text o Standard action (en el #### Ver también *Listas jerárquicas* -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 985 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md index 5579e26402de26..2381984dff1ea6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET LIST ITEM PROPERTIES** devuelve las propiedades del elemento designado por el parámetro *refElem* de la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -54,4 +51,13 @@ Para mayor información sobre estas propiedades, consulte la descripción del co [GET LIST ITEM](get-list-item.md) [GET LIST ITEM ICON](get-list-item-icon.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 631 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md index 759c187e372265..2c037bf8fb3bf7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET LIST ITEM devuelve la información sobre el elemento especificado por *posicionElem* de la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -67,4 +64,13 @@ Consulte el ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LI [List item position](list-item-position.md) [Selected list items](selected-list-items.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 378 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md index 1ced6258ac0a2d..dd044d0792be89 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET LIST PROPERTIES devuelve información sobe la lista cuyo número de referencia se pasa en *lista*. @@ -39,4 +36,13 @@ Para una completa descripción de la apariencia, iconos de nodos, altura de lín #### Ver también -[SET LIST PROPERTIES](set-list-properties.md) \ No newline at end of file +[SET LIST PROPERTIES](set-list-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 632 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md index ffbbe6e82cc0f2..bf844ae7a1634c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET MACRO PARAMETER devuelve, en el parámetro *paramText*, una parte o la totalidad del texto del método desde el cual se llama. @@ -36,4 +33,13 @@ Consulte el ejemplo del comando [SET MACRO PARAMETER](set-macro-parameter.md "SE #### Ver también -[SET MACRO PARAMETER](set-macro-parameter.md) \ No newline at end of file +[SET MACRO PARAMETER](set-macro-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 997 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md index ddc04b871c2627..8c64920ca9a405 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get menu bar reference** devuelve la identificación única de la barra de menús actual o de la barra de menús de un proceso específico. @@ -41,4 +38,13 @@ Consulte el ejemplo del comando [GET MENU ITEMS](get-menu-items.md "GET MENU ITE #### Ver también -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 979 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md index 13550fc8cd0946..f1569d9a163027 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET MENU ITEM ICON devuelve, en la variable *refIcono*, la referencia del icono asociado a la línea de menú designada por los parámetros *menu* y *menuItem*. Esta referencia es el nombre o número de la imagen en la librería de imágenes. @@ -35,4 +32,13 @@ Si ningún icono está asociado a la línea de menú, el comando devuelve un val #### Ver también -[SET MENU ITEM ICON](set-menu-item-icon.md) \ No newline at end of file +[SET MENU ITEM ICON](set-menu-item-icon.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 983 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md index 8cca8b2dc9d804..5fa917f9038e65 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item key devuelve el código del atajo **Ctrl** (Windows) o **Comando** (Mac OS) para el comando de menú cuyo número o referencia de menú se pasa en *menu* y cuyo número de comando se pasa en *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu.* @@ -50,4 +47,14 @@ Para obtener un atajo asociado con un comando de menú, es útil implementar una #### Ver también [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 424 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md index b21e3688467cf0..ad685045485b5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item mark devuelve la marca de la línea de menú cuyo número o referencia de menú y número de línea se pasan en *menu* y *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu.* @@ -41,4 +38,14 @@ El siguiente ejemplo invierte la marca de una línea de menú: #### Ver también -[SET MENU ITEM MARK](set-menu-item-mark.md) \ No newline at end of file +[SET MENU ITEM MARK](set-menu-item-mark.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 428 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md index 6daa21c8261b2a..540b3e13022f9d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item method devuelve el nombre del método de proyecto 4D asociado a la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -31,4 +28,13 @@ El comando devuelve el nombre del método 4D como una cadena de caracteres (expr #### Ver también -[SET MENU ITEM METHOD](set-menu-item-method.md) \ No newline at end of file +[SET MENU ITEM METHOD](set-menu-item-method.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 981 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md index 2c3a05ef750217..204dbed812bc4b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item modifiers devuelve los modificadores adicionales asociados a los atajos de teclado estándar de la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -53,4 +50,13 @@ Consulte el ejemplo del comando [Get menu item key](get-menu-item-key.md "Get me #### Ver también [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 980 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md index 6c5fed933190ca..772a1531a8cf04 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item parameter devuelve la cadena de caracteres personalizada asociada a la línea de menú designada por los parámetros *menu* y *lineaMenu*. Esta cadena debe haber sido definida previamente utilizando el comando [SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER"). @@ -26,4 +23,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get selected menu item parameter](get-selected-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1003 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md index 6166f961a1994f..ab304852bdc9d4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET MENU ITEM PROPERTY** devuelve, en el parámetro *valor*, el valor actual de la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -34,4 +31,13 @@ En el parámetro *propiedad*, pase la propiedad para la cual quiere obtener el v #### Ver también -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 972 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md index 816a0a8b623239..e7e709e162cd91 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item style devuelve el estilo de fuente de la línea de menú cuyo número o referencia se pasa en *menu* y cuyo número de elemento se pasa en *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu.* @@ -48,4 +45,14 @@ Para probar si un elemento de menú se muestra en negrita, escribe: #### Ver también -[SET MENU ITEM STYLE](set-menu-item-style.md) \ No newline at end of file +[SET MENU ITEM STYLE](set-menu-item-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 426 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md index 751e24d08fe2db..aa7fea8d8a9b5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item devuelve el texto del comando de menú cuyos números de menú y de comando se pasan en *menu* y *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu*. @@ -30,4 +27,14 @@ Si omite el parámetro *proceso*, Get menu item se aplica a la barra de menús d #### Ver también [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM](set-menu-item.md) \ No newline at end of file +[SET MENU ITEM](set-menu-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 422 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md index aab488e834f4ee..6dc61f8b0e26ad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET MENU ITEMS devuelve, en los arrays *arrayTitMenus* y *arraysRefMenus*, los títulos e identificadores de todas las líneas de menú o de la barra de menús designada por el parámetro *menu*. @@ -36,3 +33,13 @@ Usted quiere conocer el contenido de la barra de menú del proceso actual:  RefBarMenu:=Get menu bar reference(Frontmost process)  GET MENU ITEMS(RefBarMenu;arrayTitMenus;arraysRefMenus) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 977 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md index 86241383151048..2450d65bdd3807 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu title devuelve el título del menú cuyo número o referencia se pasa en *menu.* @@ -28,4 +25,14 @@ Si omite el parámetro *proceso*, Get menu title se aplica a la barra de menús #### Ver también -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 430 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md index cf284867f84aba..d7b79b1550f04c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md @@ -32,4 +32,13 @@ Una vez haya identificado las tablas faltantes de la base, puede reactivarlas v #### Ver también -[REGENERATE MISSING TABLE](regenerate-missing-table.md) \ No newline at end of file +[REGENERATE MISSING TABLE](regenerate-missing-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1125 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md index 86cf61415d3574..0fa70792c4303d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PASTEBOARD DATA TYPE permite obtener la lista de los tipos de datos presentes en el portapapeles. Este comando generalmente debe ser utilizado en el contexto de una operación arrastrar y soltar, en los eventos de formulario On Drop o On Drag Over del objeto de destino. Más particularmente, permite verificar la presencia de un tipo de datos específico en el portapapeles. @@ -39,4 +36,13 @@ Para mayor información sobre los tipos de datos soportados, consulte la secció #### Ver también -*Gestión de portapapeles* \ No newline at end of file +*Gestión de portapapeles* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 958 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md index 91058b71e3f9d9..489d78c42d398c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PASTEBOARD DATA devuelve en el campo o variable de tipo BLOB *datos* que se encuentran en el portapapeles y cuyo tipo se pasa en *tipoDatos*. (Si el portapapeles contiene texto copiado en 4D, entonces el conjunto de caracteres del BLOB será probablemente UTF-16.) @@ -55,4 +52,14 @@ Si los datos se extraen correctamente, la variable OK toma el valor 1; de lo con [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 401 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md index 51950d6d3f8632..50079ebf9870f1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md @@ -24,4 +24,13 @@ Si la imagen no tienen un nombre por defecto, el comando devuelve una cadena vac #### Ver también -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1171 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md index 8b0b0fa2a4701c..e0f7a9a9ededc0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md @@ -47,4 +47,13 @@ Usted quiere saber los formatos de imagen almacenados en un campo para el regist #### Ver también - \ No newline at end of file + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1406 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md index 87caea43b55d39..ab65d4f6a4d2e1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PICTURE FROM LIBRARY devuelve en el parámetro *imagen* la imagen de la librería de imágenes cuyo número de referencia se pasa en *refImag* o cuyo nombre se pasa en *nomImag*. @@ -55,4 +52,14 @@ Si no hay suficiente memoria para devolver la imagen, se genera el error -108\. [PICTURE LIBRARY LIST](picture-library-list.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 565 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md index 2c4e7db1200632..c46ae5f938e706 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción GET PICTURE FROM PASTEBOARD devuelve la imagen presente en el portapapeles en el campo o variable imagen *imagen*. @@ -42,4 +39,14 @@ Si la imagen se extrae correctamente, OK toma el valor 1; de lo contrario OK tom [GET PASTEBOARD DATA](get-pasteboard-data.md) [Get text from pasteboard](get-text-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 522 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md index 98e77c429ae4c4..3e7639d0326e06 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md @@ -32,4 +32,13 @@ Si la imagen no contiene palabras claves o metadatos IPTC/Keywords, el comando d #### Ver también [GET PICTURE METADATA](get-picture-metadata.md) -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1142 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md index 1208733af5355d..0a565e6a0679d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md @@ -99,4 +99,14 @@ La variable sistema *OK* devuelve 1 si la recuperación de los metadatos es corr [GET PICTURE KEYWORDS](get-picture-keywords.md) *Nombres de metadatos imágenes* *Picture Metadata Values* -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1122 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md index 3737e930235824..53e33359ed4945 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PICTURE RESOURCE devuelve en el campo o en la variable *resDatos* la imagen guardada en el recurso imagen (“PICT”) cuyo número se pasa en *resNum*. @@ -43,4 +40,14 @@ Si no hay suficiente memoria para cargar la imagen, se genera un error. Puede in #### Ver también -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 502 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md index 76f3a22f27ebaa..99cf28aafd041e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get plugin access devuelve el nombre del grupo de usuarios autorizados a utilizar el plug-in cuyo número se pasa en el parámetro *plugIn*. Si ningún grupo está asociado al plug-in, el comando devuelve una cadena vacía (""). @@ -35,4 +32,13 @@ Pase en el parámetro *plugIn* el número del plug-in del que quiere conocer el #### Ver también [SET GROUP ACCESS](set-group-access.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 846 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md index 0a904573c2606a..ac819720268873 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md @@ -49,4 +49,13 @@ Utilizar punteros a elementos de arrays de dos dimensiones: #### Ver también [Field](field.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 304 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md index 45eadfb2c04a55..7c55b07fdb5167 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get print marker permite obtener la posición actual de un marcador durante una impresión. @@ -63,4 +60,13 @@ Consulte el ejemplo del comando [SET PRINT MARKER](set-print-marker.md "SET PRIN #### Ver también [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 708 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md index 03795aba26ef86..22739f6a0d6bc3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET PRINT OPTION** devuelve los valores actuales de una opción de impresión. @@ -51,4 +48,14 @@ La variable sistema OK toma el valor 1 si el comando ha sido ejecutado correctam #### Ver también [PRINT OPTION VALUES](print-option-values.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 734 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md index 3167813bf120fa..660d5155864282 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get print preview** devuelve True si el comando [SET PRINT PREVIEW](set-print-preview.md) se llamó con el valor **True** en el proceso actual. @@ -25,4 +22,13 @@ Note que el usuario puede modificar esta opción antes de validar la caja de di #### Ver también [Is in print preview](is-in-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1197 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md index fb1b194723269a..02e8723b1114b8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PRINTABLE AREA devuelve el tamaño en píxeles del área de impresión en los parámetros *altura* y *largo* el tamaño. Este tamaño depende de los parámetros de impresión actuales, la orientación del papel, etc. @@ -40,4 +37,13 @@ Para saber el tamaño total de la página, puede: #### Ver también [GET PRINTABLE MARGIN](get-printable-margin.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 703 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md index 9635ef063ed641..5f9f06f2964efe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PRINTABLE MARGIN devuelve los valores actuales de los diferentes márgenes definidos utilizando los comandos [Print form](../commands/print-form.md), [PRINT SELECTION](print-selection.md) y [PRINT RECORD](print-record.md). @@ -45,4 +42,13 @@ Es posible basar la impresión de los formularios efectuados utilizando los coma [GET PRINTABLE AREA](get-printable-area.md) [Print form](../commands/print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 711 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md index 0c63df8ec925a8..48bcf52788d9e4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get printed height devuelve la altura global (en píxeles) de la sección impresa por el comando [Print form](../commands/print-form.md "Print form"). @@ -32,4 +29,13 @@ Los márgenes de impresión derecha e izquierda no influyen en el valor devuelto [GET PRINTABLE AREA](get-printable-area.md) [Print form](../commands/print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 702 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md index 60dfef8df93fd5..372b1096fffbb1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PROCESS VARIABLE lee el valor de las variables proceso *srcVar* (*srvVar2*, etc.) desde el proceso fuente cuyo número se pasa en *proceso* y devuelve sus valores actuales en las variables *dstVar* (*dstVar2*, etc.) del proceso actual. @@ -119,4 +116,13 @@ Ver el ejemplo del comando DRAG AND DROP PROPERTIES. [POST OUTSIDE CALL](post-outside-call.md) *Procesos* [SET PROCESS VARIABLE](set-process-variable.md) -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 371 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md index 2e4ddfdb9166b6..23e727c79b6817 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md @@ -55,4 +55,13 @@ Queremos modificar temporalmente el destino de búsqueda y restablecer los pará #### Ver también -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1155 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md index 38f9f5db858bde..964597aea24cc7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md @@ -23,4 +23,13 @@ Por defecto, si ningún límite se ha definido, el comando devuelve 0. #### Ver también -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1156 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md index 26799c775c95f3..950378ae100e5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET REGISTERED CLIENTS llena dos arrays: @@ -48,4 +45,14 @@ Si la operación se realiza correctemente, la variable sistema OK toma el valor [EXECUTE ON CLIENT](execute-on-client.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 650 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md index 2fbb60317f3750..a2c88ea435a541 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md @@ -42,4 +42,13 @@ Una se haya ejecutado el comando: [GET FIELD PROPERTIES](get-field-properties.md) [GET TABLE PROPERTIES](get-table-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 686 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md index 476a8c418075f7..28aec49f9153dc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get resource name devuelve el nombre del recurso cuyo tipo se pasa en *resTipo* y cuyo número de referencia (ID) en *resNum*. @@ -26,3 +23,13 @@ displayed_sidebar: docs Si pasa un número de referencia de archivo de recursos en el parámetro *resArchivo*, el recurso se busca en ese archivo únicamente. Si no pasa *resArchivo*, el archivo se busca en los archivos de recursos abiertos. Si el recurso no existe, Get resource name devuelve una cadena vacía. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 513 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md index 846a2c73f933fd..03574b6a422133 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get resource properties** devuelve los atributos del recurso cuyo tipo se pasa en *resTipo* y cuyo número de identificación se pasa en *resNum*. @@ -36,3 +33,14 @@ Ver el ejemplo del comando [Get resource name](get-resource-name.md). #### Variables y conjuntos del sistema La variable sistema OK toma el valor 0 si el recurso no existe, de lo contrario toma el valor 1. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 515 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md index 6bb0e8b0e0cdfa..48977370741a0c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET RESOURCE devuelve en el campo o la variable BLOB *resDatos* el contenido del recurso cuyo tipo y número se pasa en *resTipo* y *resNum*. @@ -50,4 +47,14 @@ Si no hay suficiente memoria para cargar la imagen, se genera un error. Puede in #### Ver también -*Recursos* \ No newline at end of file +*Recursos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 508 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md index 5cf7cb2cb0141b..b85a81bc0f6182 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get selected menu item parameter devuelve la cadena de caracteres personalizada asociada a la línea de menú seleccionada. Este parámetro deber haber sido definido de antemano utilizando el comando [SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER"). @@ -25,4 +22,13 @@ Si ninguna línea de menú ha sido seleccionada, el comando devuelve una cadena [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1005 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md index 4e12bb19c8aac9..6aeb4db40521fb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md @@ -48,4 +48,13 @@ Este método de proyecto puede utilizarse para direccionar el mismo puerto seria #### Ver también -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 909 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md index e72d2b6eed2f6d..449f1c61d2e940 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get string resource devuelve la cadena almacenada en el recurso cadena (“STR ”) cuyo número de referencia se pasa en *resNum*. @@ -44,4 +41,14 @@ La variable sistema OK toma el valor 1 si se encuentra el recurso, de lo contrar [Get indexed string](get-indexed-string.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 506 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md index 53ca3b93ff1275..840a939da70359 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET STYLE SHEET INFO** devuelve la configuración actual de la hoja de estilo *nomHojaEstilo* . @@ -66,4 +63,14 @@ Si quiere conocer la configuración actual de la hoja de estilo "Automatic" #### Ver también [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1256 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md index c11f0ae938a15b..42b4a2c2766c8e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando [Get subrecord key](get-subrecord-key.md) facilita la migración del código 4D utilizando subtablas convertidas al código estándar de manipulación de tablas. - -**Recordatorio:** a partir de la versión 11 de 4D, no se soportan subtablas. Cuando se convierte una base antigua, las subtablas existentes se transforman automáticamente en tablas estándar relacionadas con las tablas originales por una relación automática. La subtabla anterior se convierte en la tabla Muchos y la tabla original es la tabla Uno. En la tabla Uno, el campo subtabla anterior se transforma en un campo especial de tipo "Relación subtabla" y en la tabla Muchos, se añade un campo especial, de tipo "Relación subtabla", llamado "id\_anadido\_por\_convertidor". +El comando [Get subrecord key](get-subrecord-key.md) facilita la migración del código 4D utilizando subtablas convertidas al código estándar de manipulación de tablas.a partir de la versión 11 de 4D, no se soportan subtablas. Cuando se convierte una base antigua, las subtablas existentes se transforman automáticamente en tablas estándar relacionadas con las tablas originales por una relación automática. La subtabla anterior se convierte en la tabla Muchos y la tabla original es la tabla Uno. En la tabla Uno, el campo subtabla anterior se transforma en un campo especial de tipo "Relación subtabla" y en la tabla Muchos, se añade un campo especial, de tipo "Relación subtabla", llamado "id\_anadido\_por\_convertidor". Esto permite preservar el funcionamiento de bases de datos convertidas, pero le recomendamos que sustituya los mecanismos de subtablas en sus bases por los que se utilizan para las tablas estándar. @@ -80,3 +78,13 @@ Por ejemplo, con la estructura anterior puede escribir: ``` Este código funcionará tanto con una relación especial como con una estándar. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1137 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md index ce2a59e9376738..38d171c5a74334 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md @@ -41,4 +41,13 @@ En el parámetro *formato*, pase el tipo del parámetro del que quiere conocer e #### Ver también -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 994 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md index 8dbc0176acf3e1..edc5f960616ea7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md @@ -33,4 +33,13 @@ Una vez ejecutado el comando: [GET FIELD ENTRY PROPERTIES](get-field-entry-properties.md) [GET FIELD PROPERTIES](get-field-properties.md) -[GET RELATION PROPERTIES](get-relation-properties.md) \ No newline at end of file +[GET RELATION PROPERTIES](get-relation-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 687 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md index 28cc3df8569900..9456400e0ed2df 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET TABLE TITLES llena los arrays *titTablas* y *numTablas* con los nombres y números de las tablas de la base definidas en la ventana de estructura o vía el comando [SET TABLE TITLES](set-table-titles.md "SET TABLE TITLES"). El contenido de estos dos arrays está sincronizado. @@ -30,4 +27,13 @@ En ambos casos, el comando no devuelve las tablas invisibles. #### Ver también [GET FIELD TITLES](get-field-titles.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 803 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md index 8ce4b6496c4484..a3e131e83a8ea0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Get text from pasteboard devuelve el texto en el portapapeles. @@ -34,4 +31,14 @@ Si el texto se extrae correctamente, OK toma el valor 1; de lo contrario OK toma [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 524 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md index 2edb3697b0566a..4e07d581574448 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md @@ -82,4 +82,13 @@ Para contar las palabras de un texto: #### Ver también -[DISTINCT VALUES](distinct-values.md) \ No newline at end of file +[DISTINCT VALUES](distinct-values.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1141 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md index 415db898b193c2..9a4d956730efee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get text resource devuelve el texto guardado en el recurso texto (“TEXT”) cuyo número de identificación se pasa en *resNum*. @@ -44,4 +41,14 @@ Si se encuentra el recurso, OK toma el valor 1\. De lo contrario, toma el valor [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 504 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md index e57bca32ead2e6..d77030493b2d39 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción GET USER LIST llena los arrays *nomsUsuario* y *refUsuario* con los nombres y los números de referencia únicos de los usuarios tal como aparecen en la ventana de contraseñas. @@ -37,4 +34,14 @@ Si no tiene privilegios de acceso para llamar al comando GET USER LIST o si otro [GET GROUP LIST](get-group-list.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 609 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md index 654984d26cf696..fdcdc2dce8df92 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **GET USER PROPERTIES** devuelve la información sobre el usuario cuyo número de referencia se pasa en el parámetro *refUsuario*. Debe pasar un número de referencia de usuario devuelto por el comando [GET USER LIST](get-user-list.md). @@ -54,4 +51,14 @@ Si no tiene privilegios de acceso para llamar al comando GET USER PROPERTIES o s [GET USER LIST](get-user-list.md) [Is user deleted](is-user-deleted.md) [Set user properties](set-user-properties.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 611 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md index df1c876d1c7115..4f15e8791592d9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET WINDOW RECT** devuelve las coordenadas globales de la ventana cuyo número de referencia se pasa en *ventana*. Si la ventana no existe, las variables de los parámetros no cambian. @@ -37,4 +34,13 @@ Ver el ejemplo del comando [WINDOW LIST](window-list.md "WINDOW LIST"). #### Ver también [CONVERT COORDINATES](convert-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 443 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md index c60243242fc7f8..e3a8bf0b22f624 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get window title devuelve el título de la ventana cuyo número de referencia se pasa en *ventana*. Si la ventana no existe, se devuelve una cadena vacía. @@ -29,4 +26,13 @@ Ver ejemplo del comando [SET WINDOW TITLE](set-window-title.md "SET WINDOW TITLE #### Ver también -[SET WINDOW TITLE](set-window-title.md) \ No newline at end of file +[SET WINDOW TITLE](set-window-title.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 450 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md index c04d35d48d6348..9975f02897defc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GOTO OBJECT se utiliza para seleccionar el objeto editable *objeto* como el área activa del formulario. Es equivalente de un clic del usuario en el área o de utilizar la tecla Tab para seleccionar el campo o la variable. @@ -51,4 +48,13 @@ Ver el ejemplo del comando [REJECT](reject.md "REJECT"). #### Ver también [CALL SUBFORM CONTAINER](call-subform-container.md) -[REJECT](reject.md) \ No newline at end of file +[REJECT](reject.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 206 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md index 89d5bc799ee59b..e7bc6338e130dd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md @@ -27,4 +27,15 @@ Ver el ejemplo para Record Number. #### Ver también *Acerca de números de registros* -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 242 | +| Hilo seguro | ✓ | +| Modifica variables | error | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md index b08503143d3ac1..0ed2ef7c8753c9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md @@ -60,4 +60,14 @@ El siguiente método de objeto del área desplegable *atNames* selecciona el reg #### Ver también -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 245 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md index 80630075ed915a..b7da9b4b423351 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GOTO XY se utiliza conjuntamente con el comando [MESSAGE](message.md "MESSAGE") cuando usted muestra mensajes en una ventana abierta por el comando [Open window](open-window.md "Open window"). @@ -60,4 +57,13 @@ Muestra la siguiente ventana (en Macintosh) por 30 segundos: #### Ver también -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 161 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md index f50b280eab9bfe..b77e7c6939259a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción GRAPH SETTINGS permite cambiar los parámetros de los gráficos mostrados en un formulario. El gráfico debe haber sido definido con el comando [GRAPH](graph.md). GRAPH SETTINGS no tiene efecto en un gráfico de tipo sectores. Este comando debe llamarse obligatoriamente en el mismo proceso que el formulario. @@ -44,4 +41,13 @@ Ver el ejemplo del comando [GRAPH](graph.md "GRAPH"). #### Ver también -[GRAPH](graph.md) \ No newline at end of file +[GRAPH](graph.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 298 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph.md index ae3aa727fa24af..04499b88581ce1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph.md @@ -282,4 +282,13 @@ En este ejemplo, personalizamos algunos parámetros: [GRAPH SETTINGS](graph-settings.md) *Parámetros Gráficos* -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 169 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md index 3097641b66c586..54dd61dc2f16a1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando HIDE MENU BAR vuelve invisible la barra de menús. @@ -45,4 +42,14 @@ El siguiente método muestra un registro en toda la pantalla (Macintosh) hasta q [HIDE TOOL BAR](hide-tool-bar.md) [SHOW MENU BAR](show-menu-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 432 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md index 8376ef7b2dea68..090c903b42ec51 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción HIDE PROCESS oculta todas las ventanas que pertenecen a *proceso*. Todos los elementos de interfaz de *proceso* se ocultan hasta el siguiente [SHOW PROCESS](show-process.md "SHOW PROCESS"). La barra de menús del proceso también se oculta. Esto significa que la apertura de una ventana mientras el proceso está oculto no provocará ningún cambio en la visualización en pantalla. Si el proceso ya está oculto, el comando no tiene ningún efecto. @@ -37,4 +34,13 @@ El siguiente ejemplo oculta todas las ventanas que pertenecen al proceso actual: #### Ver también [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 324 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md index 56aed83963ca12..1ed6a3409701f4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **HIDE TOOL BAR** maneja la visualización de las barras de herramientas personalizadas creadas por el comando [Open form window](open-form-window.md) para el proceso actual. @@ -41,4 +38,13 @@ Para evitar esto, en el evento formulario On Resize de la ventana estándar, es #### Ver también -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 434 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md index dcd5d35a26d98c..141a0505b63de1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando HIDE WINDOW permite ocultar la ventana cuyo número de referencia se pasa en *ventana* o, si se omite este parámetro, la ventana del primer plano del proceso actual. Este comando permite, por ejemplo, en un proceso con varias ventanas, mostrar únicamente la ventana activa. @@ -47,4 +44,13 @@ Este ejemplo corresponde a un método de un botón ubicado en un formulario de e #### Ver también -[SHOW WINDOW](show-window.md) \ No newline at end of file +[SHOW WINDOW](show-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 436 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md index 7fd109ca1befbb..2a939ef2c7f491 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando HIGHLIGHT RECORDS permite seleccionar registros en un formulario listado. Esta operación es idéntica a la selección de registros manual en modo listado utilizando el ratón o las combinaciones de teclado **Mayús+Clic** o **Ctrl+Clic** (Windows) o **comando+Clic** (Mac OS). La selección actual no se modifica. @@ -49,4 +46,13 @@ Cuando el usuario hace clic en el botón, aparece la caja de diálogo estándar #### Ver también [GET HIGHLIGHTED RECORDS](get-highlighted-records.md) -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 656 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md index 684b0ae01f97b9..125e86a66b6930 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando HIGHLIGHT TEXT selecciona una parte de texto en *objeto*. @@ -63,4 +60,13 @@ Ver el ejemplo del comando [FILTER KEYSTROKE](filter-keystroke.md "FILTER KEYSTR #### Ver también -[GET HIGHLIGHT](get-highlight.md) \ No newline at end of file +[GET HIGHLIGHT](get-highlight.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 210 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md index f7cba2f4111270..a3488105d811c4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md @@ -56,4 +56,13 @@ Ejemplos de peticiones con autenticación: #### Ver también -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1161 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md index a889878939f000..a514f859ae460a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md @@ -37,4 +37,13 @@ Usted quiere cambiar temporalmente la carpeta de certificados: #### Ver también -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1307 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md index 108a0690cc978e..a01596693354e5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md @@ -42,4 +42,13 @@ En el parámetro *valor*, pase una variable para recibir el valor actual de la * #### Ver también -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1159 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md index 0cd1b91d400794..95d9b3fc3c82e5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md @@ -104,4 +104,14 @@ Recuperación de un vídeo: #### Ver también -[HTTP Request](http-request.md) \ No newline at end of file +[HTTP Request](http-request.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1157 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md index 2a0cf92f90b17b..ef8efc5cc7cdb7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md @@ -14,9 +14,16 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción La documentación de este comando está disponible en [developer.4d.com.](https://developer.4d.com/docs/API/HTTPRequestClass#http-parse-messege) + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1824 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md index 703532435a503c..b72c5bac249abe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md @@ -124,4 +124,13 @@ Petición para añadir un registro en JSON a una base remota: #### Ver también -[HTTP Get](http-get.md) \ No newline at end of file +[HTTP Get](http-get.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1158 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md index b38cb23d9ab33f..6712905f7c002f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md @@ -55,4 +55,13 @@ Usted quiere cambiar temporalmente la carpeta de certificados: #### Ver también [GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) -[HTTP Get certificates folder](http-get-certificates-folder.md) \ No newline at end of file +[HTTP Get certificates folder](http-get-certificates-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1306 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md index d8fadc0d1b9714..cbf583611d3ce4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md @@ -44,4 +44,13 @@ El orden de llamada de las opciones no tiene importancia. Si la misma opción se #### Ver también [HTTP AUTHENTICATE](http-authenticate.md) -[HTTP GET OPTION](http-get-option.md) \ No newline at end of file +[HTTP GET OPTION](http-get-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1160 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/idle.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/idle.md index 0dc07435f51897..86836344564023 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/idle.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/idle.md @@ -50,4 +50,13 @@ con: #### Ver también *Comandos del Compilador* -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 311 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md index 1c09fdab8cf958..9f7c46e4968a2e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md @@ -45,4 +45,14 @@ Si el usuario hace clic en **Cancelar** en la caja de diálogo estándar de guar [EXPORT DATA](export-data.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[IMPORT TEXT](import-text.md) \ No newline at end of file +[IMPORT TEXT](import-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 665 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md index 07bf6eb73d910a..9332ee374cdcb7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando IMPORT DIF lee datos de *documento*, un documento DIF Windows o Macintosh y los escribe en *tabla* creando nuevos registros para esa tabla. @@ -53,4 +50,14 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma [EXPORT DIF](export-dif.md) [IMPORT SYLK](import-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 86 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md index 35bb79dc5df566..a9d400c1ab2ffe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **IMPORT STRUCTURE** importa, en la base actual, la definición XML de la estructura de la base 4D pasada en el parámetro *estructuraXML*. @@ -49,4 +46,13 @@ Usted desea importar una definición de estructura guardada en la base actual: #### Ver también -[EXPORT STRUCTURE](export-structure.md) \ No newline at end of file +[EXPORT STRUCTURE](export-structure.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1310 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md index 1ae83a936dd2a7..99da710a2c5804 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando IMPORT SYLK lee los datos de *documento*, un documento SYLK Windows o Macintosh, y los escribe en *tabla* creando nuevos registros. @@ -53,4 +50,14 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma [EXPORT SYLK](export-sylk.md) [IMPORT DIF](import-dif.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 87 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md index 5296c68924b07b..1cc09d604d3673 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando IMPORT TEXT lee los datos de *documento*, un documento texto Windows o Macintosh, y los escribe en *tabla* creando nuevos registros para esa tabla. @@ -55,4 +52,14 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 168 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md index bee6b16707e238..79ee7a2f84b5a6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **In break** devuelve True para el ciclo de ejecución In break. @@ -27,4 +24,13 @@ Para que se genere el ciclo de ejecución **In break** asegúrese de que la prop #### Ver también [In footer](in-footer.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 113 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md index 9ee6513c2a4269..fd9fced3ab9363 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **In footer** devuelve True para el ciclo de ejecución In footer. @@ -27,4 +24,13 @@ Para que se genere el ciclo de ejecución **In footer** asegúrese de que la pro #### Ver también [In break](in-break.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 191 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md index af60ba806c67de..6a5c7bdfd1178e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **In header** devuelve True para el ciclo de ejecución In header. @@ -27,4 +24,13 @@ Para que se genere el ciclo de ejecución **In header**, asegúrese de que la pr #### Ver también [In break](in-break.md) -[In footer](in-footer.md) \ No newline at end of file +[In footer](in-footer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 112 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md index 1365ef47803e9c..1e085f4669e467 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md @@ -29,4 +29,13 @@ Si efectúa la operación desde un trigger o una subrutina que puede ser llamado [CANCEL TRANSACTION](cancel-transaction.md) [START TRANSACTION](start-transaction.md) *Triggers* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 397 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md index 69b1d41c78f9ec..39d622260ef480 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md @@ -44,4 +44,13 @@ El siguiente ejemplo añade un elemento a un array: #### Ver también [DELETE FROM ARRAY](delete-from-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 227 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md index e4348b062d15e0..3e0cc1c62ebdb8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md @@ -30,4 +30,13 @@ Antes de llamar el comando, pase en la variable del parámetro *offset* la posic #### Ver también -[DELETE FROM BLOB](delete-from-blob.md) \ No newline at end of file +[DELETE FROM BLOB](delete-from-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 559 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md index a98e5fe8fa7f2b..c3acff29054ddd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando INSERT IN LIST inserta el elemento designado por el parámetro *refElem* en la lista cuyo número de referencia se pasa en *lista*. @@ -50,4 +47,13 @@ El siguiente código inserta un elemento (sin sublista asociada) justo antes del #### Ver también [APPEND TO LIST](append-to-list.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 625 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md index 1203e8650ab1f0..5acee874ba662d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **INSERT MENU ITEM** inserta nuevas líneas en el menú cuyo número o referencia se pasa en *menu* y las ubica después de la línea de menú cuyo número se pasa en *despuesItem*. @@ -56,4 +53,14 @@ El siguiente ejemplo crea un menú que consiste en dos comandos los cuales asign #### Ver también [APPEND MENU ITEM](append-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 412 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md index dffaf0928dc333..4686f5c2cce888 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md @@ -40,4 +40,13 @@ El siguiente ejemplo ilustra el uso de Insert string. Los resultados se asignan [Change string](change-string.md) [Delete string](delete-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 231 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/int.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/int.md index 359bc0b97137b9..3393222c1e0ce7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/int.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/int.md @@ -29,4 +29,13 @@ El siguiente ejemplo ilustra el funcionamiento de Int para números positivos y #### Ver también -[Dec](dec.md) \ No newline at end of file +[Dec](dec.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 8 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md index a7b0c04cf1ecb2..f2fdc27f8b3742 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md @@ -113,4 +113,13 @@ Después de la ejecución de este código: [BLOB to text](blob-to-text.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 548 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md index be34da2e1d9055..c4c4c1fe4d503a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md @@ -102,4 +102,14 @@ Si la integración se efectúa correctamente, la variable sistema OK toma el val #### Ver también -[LOG FILE TO JSON](log-file-to-json.md) \ No newline at end of file +[LOG FILE TO JSON](log-file-to-json.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1312 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md index 9f3e557785803e..2493570345bcc5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md @@ -48,4 +48,13 @@ El siguiente ejemplo busca los clientes que son atendidos por dos representantes #### Ver también [DIFFERENCE](difference.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 121 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md index 08220b8213359e..26430de1af4baf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **INVOKE ACTION** activa la acción estándar definida por el parámetro accion, opcionalmente en el contexto objetivo. @@ -65,4 +62,13 @@ Usted desea ejecutar una acción estándar **Goto page** (página 3) en el formu #### Ver también -[Action info](action-info.md) \ No newline at end of file +[Action info](action-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1439 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md index d66855b8b357d1..6b516cae194508 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Is a list devuelve TRUE si el valor pasado en *lista* es una referencia válida a una lista jerárquica. De lo contrario, devuelve FALSE. @@ -25,3 +22,13 @@ displayed_sidebar: docs Ver el ejemplo del comando [CLEAR LIST](clear-list.md "CLEAR LIST"). + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 621 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md index 292962bee16cbc..9bd805a6ede6dd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md @@ -23,4 +23,13 @@ Si quiere conocer el nombre de la variable que está siendo apuntada o el númer #### Ver también [Is nil pointer](is-nil-pointer.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 294 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md index 535fc73ed34feb..7329d727d9b728 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md @@ -43,4 +43,13 @@ En una de sus rutinas, usted incluyó el código de depuración de la base, úti #### Ver también [IDLE](idle.md) -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 492 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md index 0013d08c68d151..66e093f02e9c43 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md @@ -29,3 +29,13 @@ Este método evitará la apertura de la base si el archivo de datos está bloque     QUIT 4D  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 716 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md index 60816168ae3824..a8aa27ada8dbac 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Is editing text** devuelve **True** si el usuario está ingresando valores en un objeto de formulario de entrada, y **False** en todos los demás casos. @@ -60,4 +57,13 @@ Desea permitir que el usuario seleccione una línea que comience con la letra o [FILTER KEYSTROKE](filter-keystroke.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1744 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md index e73d2ff11bff7c..b5233ccbca6a71 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md @@ -24,4 +24,13 @@ Este comando permite detectar las eventuales eliminaciones de campos, que crean #### Ver también [Last table number](last-table-number.md) -[Is table number valid](is-table-number-valid.md) \ No newline at end of file +[Is table number valid](is-table-number-valid.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1000 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md index 66fc2308656457..80ce69a94fa9eb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md @@ -27,4 +27,13 @@ El valor devuelto por este comando sólo tiene sentido si la opción "*Mapear va #### Ver también [Null](null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 964 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md index 240e9cb0b5f786..04675681e88294 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Is in print preview** devuelve True si la opción **Vista previa de impresión** está seleccionada en la caja de diálogo de impresión y False de lo contrario. Esta configuración es local al proceso. @@ -46,4 +43,13 @@ Este ejemplo permite tener en cuenta todos los tipos de impresiones: #### Ver también [Get print preview](get-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1198 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md index bab29c35e6ef25..b2ac0c89f44d3b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md @@ -33,4 +33,13 @@ El siguiente ejemplo es un método de objeto de un botón que prueba si el regis #### Ver también [ADD TO SET](add-to-set.md) -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 273 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md index 7e97c1095745bb..f989b654a67563 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Is license available le permite conocer la disponibilidad de un plug-in. Es útil, por ejemplo, para mostrar u ocultar funciones que necesitan de la presencia de un plug-in. @@ -48,4 +45,13 @@ Is license available devuelve [False](false.md "False") si el plug-in está func [License info](license-info.md) [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 714 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md index 10b8807fb4f0ea..a1d98f131b9ff1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md @@ -32,4 +32,13 @@ Usted desea determinar si el sistema operativo actual es macOS: #### Ver también [System info](system-info.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1572 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md index 9c505465139907..a1ae7a50b0fc98 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Is new record devuelve [True](true.md "True") cuando el registro actual de *tabla* está siendo creado y aún no ha sido guardado en el proceso actual. - -**Nota de compatibilidad:** es posible obtener la misma información utilizando el comando existente [Record Number](record-number.md "Record Number"), y probando si devuelve -3\. Sin embargo, recomendamos utilizar Is new record en lugar de [Record Number](record-number.md "Record Number") en este caso. De hecho, el comando Is new record asegura una mejor compatibilidad con las futuras versiones de 4D. +El comando Is new record devuelve [True](true.md "True") cuando el registro actual de *tabla* está siendo creado y aún no ha sido guardado en el proceso actual.es posible obtener la misma información utilizando el comando existente [Record Number](record-number.md "Record Number"), y probando si devuelve -3\. Sin embargo, recomendamos utilizar Is new record en lugar de [Record Number](record-number.md "Record Number") en este caso. De hecho, el comando Is new record asegura una mejor compatibilidad con las futuras versiones de 4D. **4D Server:** este comando devuelve un resultado diferente en el contexto del evento de formulario On Validate dependiendo de si se ejecuta en 4D (monopuesto) o 4D Client. En versión monopuesto, el comando devuelve [False](false.md "False") (el registro se considera como creado). En versión cliente/servidor, el comando devuelve [True](true.md "True") porque en este caso, el registro ya ha sido creado en el servidor pero la información no ha sido enviada aún al cliente. @@ -39,4 +37,13 @@ Las dos siguientes instrucciones siguientes son idénticas. La segunda se recomi #### Ver también [Modified record](modified-record.md) -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 668 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md index a473baefffa817..83c9be5f9ca279 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md @@ -35,4 +35,13 @@ Si quiere conocer el nombre de la variable apuntada o el número del campo, pued #### Ver también [Is a variable](is-a-variable.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 315 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md index fc671f5bc9aaf8..df6c2e70a5c465 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md @@ -27,4 +27,13 @@ Si no pasa el parámetro *\**, el comando prueba el archivo buscando su extensi #### Ver también -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1113 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md index 3d035e98d70f85..4e6f85c84c9bcb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Is record loaded devuelve True si si el registro actual de *tabla* se carga en el proceso actual. - -**4D Server**: en principio, cuando las tablas están relacionadas por relaciones automáticas, los registros actuales de las tablas relacionadas se cargan automáticamente (ver *Relaciones*). Sin embargo, por razones de optimización, 4D Server sólo carga estos registros cuando es necesario, por ejemplo al leer o asignar un campo del registro relacionado. Como resultado, en este contexto, el comando **Is record loaded** devolverá False en modo remoto (devuelve True en modo local). +El comando Is record loaded devuelve True si si el registro actual de *tabla* se carga en el proceso actual.devolverá False en modo remoto (devuelve True en modo local). #### Ejemplo @@ -43,3 +41,13 @@ En lugar de utilizar las acciones automáticas “Siguiente registro” o “Reg     End if  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 669 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md index 199fac1e3d93ca..c33537b3256359 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md @@ -23,4 +23,13 @@ Este comando permite detectar las eventuales eliminaciones de tablas, que crean #### Ver también [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 999 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md index 165dfb0dc03c2d..35951b6e9e7073 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Is user deleted prueba la cuenta de usuario cuyo número de identificación único se pasa en *refUsuario*. @@ -31,4 +28,14 @@ Si no tiene privilegios de acceso para llamar al comando Is user deleted o si ot [DELETE USER](delete-user.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 616 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md index bda1a7b0e9a8d2..0164f79537605d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Tema:** Eventos formulario @@ -63,4 +60,13 @@ End case #### Ver también -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1422 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md index 0d0870049c5f02..1e3af4f09f0276 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Is window maximized** devuelve **True** si la ventana cuyo número de referencia se pasa en *ventana* está actualmente maximizada, y **False** en caso contrario. @@ -36,4 +33,13 @@ Quiere cambiar entre el estado maximizado y el anterior: #### Ver también [Is window reduced](is-window-reduced.md) -[MAXIMIZE WINDOW](maximize-window.md) \ No newline at end of file +[MAXIMIZE WINDOW](maximize-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1830 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md index 71094d87e5f10b..0d0066196dd44f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Is window reduced** devuelve **True** si la ventana cuyo número de referencia se pasa en *ventana* está actualmente reducida en la barra de tareas (Windows) o en el dock (macOS), y **False** en caso contrario. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver también [Is window maximized](is-window-maximized.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1831 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md index 7abb5063bfc353..2d45e2911536e9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md @@ -32,4 +32,13 @@ Desea determinar si el sistema operativo actual es Windows: #### Ver también [System info](system-info.md) -[Is macOS](is-macos.md) \ No newline at end of file +[Is macOS](is-macos.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1573 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md index 084d335f67ebc3..373b732fad72b0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md @@ -57,4 +57,13 @@ En este ejemplo, los datos de los campos de los registros de una tabla se extrae #### Ver también [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1219 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md index 26449d34a6727c..6e16d37eb5faac 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md @@ -189,4 +189,13 @@ beta[1].golf:{line:10,offset:12}}} [JSON PARSE ARRAY](json-parse-array.md) [JSON Stringify](json-stringify.md) [JSON Validate](json-validate.md) -*Tipos de campos y variables* \ No newline at end of file +*Tipos de campos y variables* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1218 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md index bc375fc1b6b168..3d07989a2bf605 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md @@ -229,4 +229,13 @@ Si ejecuta: #### Ver también - \ No newline at end of file + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1478 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md index d8832eb1000305..8fcac3e218de53 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md @@ -107,4 +107,13 @@ Conversión de una selección 4D en un array objeto: #### Ver también [JSON PARSE ARRAY](json-parse-array.md) -[JSON Stringify](json-stringify.md) \ No newline at end of file +[JSON Stringify](json-stringify.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1228 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md index faf2b97bd59086..a1f5dc0cf5565d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md @@ -168,4 +168,13 @@ $myTxtCol="[33,"mike","2017-08-28",false]" #### Ver también [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1217 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md index 34fd24e83bd42a..4c80df39e03a5c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md @@ -67,4 +67,13 @@ Uso del comando **JSON TO SELECTION** para añadir los registros a la tabla \[Co #### Ver también -[Selection to JSON](selection-to-json.md) \ No newline at end of file +[Selection to JSON](selection-to-json.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1235 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md index ecc1408e6f9d67..dad14f66f836ad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md @@ -103,4 +103,13 @@ Usted desea validar un objeto JSON con un esquema y obtener la lista de errores -[JSON Parse](json-parse.md) \ No newline at end of file +[JSON Parse](json-parse.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1456 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md index 66090896286658..5371ddd6643375 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Keystroke devuelve el carácter introducido por el usuario en un campo o en un área editable. @@ -170,4 +167,13 @@ Utilizando las habilidades de la comunicación interproceso de 4D, puede constru [FILTER KEYSTROKE](filter-keystroke.md) [Form event code](../commands/form-event-code.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 390 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md index 38aaaa9d96d965..ecb8c4b02a6b88 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md @@ -52,4 +52,13 @@ En el método (*theWorker*), se añade código para manejar esta situación: [CALL WORKER](call-worker.md) [Current process name](current-process-name.md) -*Sobre workers* \ No newline at end of file +*Sobre workers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1390 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md index c443c96da8eac4..d9928402f34c25 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md @@ -32,4 +32,13 @@ Este comando debe ser llamado desde un método de llamada de error instalado por #### Ver también [ON ERR CALL](on-err-call.md) -[throw](throw.md) \ No newline at end of file +[throw](throw.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1799 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md index a88e55c8ad4f0b..70e9b238ea6826 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md @@ -41,4 +41,13 @@ El siguiente método de proyecto crea el array *asCampos*, con los nombres de lo [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 255 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md index 37856fa8eda446..c12387f6ad618b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md @@ -32,4 +32,13 @@ La descripción de la ruta de la última búsqueda puede compararse con la descr #### Ver también [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1045 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md index ea12c82bf39557..125565eeb173e7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md @@ -33,4 +33,13 @@ La descripción del plan de la última búsqueda puede compararse con la descrip #### Ver también [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query path](last-query-path.md) \ No newline at end of file +[Last query path](last-query-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1046 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md index cbc42ffe2cd7a1..8756d53cd764a0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md @@ -31,4 +31,14 @@ El siguiente ejemplo designa el último registro de la tabla \[Personas\] como r [End selection](end-selection.md) [FIRST RECORD](first-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 200 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md index 95a9b708eb2966..7c09e3b51b95fc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md @@ -38,4 +38,13 @@ El siguiente ejemplo inicializa los elementos del array *asTablas,* con los nomb [Last field number](last-field-number.md) [Is table number valid](is-table-number-valid.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 254 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md index 9cbdc59b7bb240..9b6f95caf43799 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md @@ -144,4 +144,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [OPEN URL](open-url.md) -[SET ENVIRONMENT VARIABLE](set-environment-variable.md) \ No newline at end of file +[SET ENVIRONMENT VARIABLE](set-environment-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 811 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md index e6baeabbc40436..1bd38081594890 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LDAP LOGIN** abre una conexión de sólo lectura en el servidor LDAP especificado por el parámetro *url* con los identificadores *login* y *contraseña* suministrados. Si es aceptado por el servidor, esta conexión se utiliza para todas las búsquedas LDAP efectuadas posteriormente en el proceso actual hasta que el comando *RuntimeVLWinFolder* se ejecute (o hasta que el proceso se cierre). @@ -98,4 +95,13 @@ Este ejemplo intenta conectarse a una aplicación: #### Ver también *LDAP* -[LDAP LOGOUT](ldap-logout.md) \ No newline at end of file +[LDAP LOGOUT](ldap-logout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1326 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md index d2e5422dc0bc6c..6a08dd715a48fd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md @@ -12,13 +12,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LDAP LOGOUT** cierra la conexión con un servidor LDAP en el proceso actual (si aplica). Si no hay conexión, se devuelve el error 1003 indicando que no está conectado. #### Ver también -[LDAP LOGIN](ldap-login.md) \ No newline at end of file +[LDAP LOGIN](ldap-login.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1327 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md index f68e4091193537..399f103564dfa2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LDAP SEARCH ALL** busca todas las ocurrencias que coinciden con los criterios definidos en el servidor LDAP objetivo. Este comando debe ser ejecutado dentro de una conexión a un servidor LDAP abierta con *LDAP LOGIN*; de lo contrario se devuelve un error 1003. @@ -117,4 +114,13 @@ Estos ejemplos ilustran el uso del parámetro *atributosEnArray*: #### Ver también *LDAP* -[LDAP Search](ldap-search.md) \ No newline at end of file +[LDAP Search](ldap-search.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1329 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md index f576280cef6f8c..16d50a8222fa96 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LDAP Search** busca la primera ocurrencia que coincida con los criterios definidos en el servidor LDAP objetivo. Este comando debe ser ejecutado dentro de una conexión a un servidor LDAP abierta con *RuntimeVLIncludeIt*; de lo contrario se devuelve un error 1003. @@ -85,4 +82,13 @@ Queremos obtener una array de todas las entradas que se encuentran en el atribut #### Ver también *LDAP* -[LDAP SEARCH ALL](ldap-search-all.md) \ No newline at end of file +[LDAP SEARCH ALL](ldap-search-all.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1328 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/length.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/length.md index 0c9d256267a5e8..af3b0bab2a187f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/length.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/length.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Descripción -**Length** permite obtener la longitud de *cadena*. **Length** devuelve el número de caracteres alfanuméricos en *cadena*. +**Length** permite obtener la longitud de *cadena*.devuelve el número de caracteres alfanuméricos en *cadena*. **Nota:** en modo Unicode, si quiere verificar que una cadena contiene caracteres, incluyendo caracteres ignorables, debe utilizar el último If(Length(vtAnyText)=0) en lugar de If(vtAnyText=""). Si la cadena contiene por ejemplo Char(1), que es carácter ignorable, Length(vtAnyText) devuelve 1 pero vtAnyText="" devuelve True. @@ -28,3 +28,13 @@ Este ejemplo ilustra el uso de Length. Los resultados, descritos en los comentar  vlResult:=Length("Topacio") // vlResult obtiene 7  vlResult:=Length("Ciudadano") // vlResult obtiene 9 ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 16 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/level.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/level.md index e00687e430669e..cab2bee8918c45 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/level.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Level se utiliza para determinar el nivel de ruptura o del encabezado actual. Devuelve el nivel de ruptura durante los eventos On Header y On Printing Break. @@ -68,4 +65,13 @@ Este ejemplo es una plantilla para un método de formulario. Muestra cada evento [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Form event code](../commands/form-event-code.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 101 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md index 4f699dc2585b1b..3349e7063f4de7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md @@ -71,3 +71,13 @@ Esta tabla detalla el contenido del objeto de sesión para las sesiones REST: | sessionID | Texto | ID de la sesión REST | | IPAddress | Texto | ID del cliente que inició la sesión REST | | isDatastore | Boolean | True si la solicitud REST proviene de un datastore | + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1782 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md index c1755f337c9b89..4b86e2b7b75ba1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando List item parent devuelve el número de referencia del elemento padre. @@ -73,4 +70,13 @@ Los números de referencia de los elementos son los siguientes: [GET LIST ITEM](get-list-item.md) [List item position](list-item-position.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 633 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md index 14ab4b855c3fb0..a0012f1d865ddb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando List item position devuelve la posición del elemento cuyo número de referencia o nombre de objeto se pasa en *refElem*, en la lista cuyo número de referencia se pasa en *lista*. @@ -40,4 +37,13 @@ Si el elemento no existe, List item position devuelve 0. #### Ver también [Count list items](count-list-items.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 629 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md index 8a065dd84c80e0..2f1751e38a7e46 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md @@ -14,11 +14,18 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LIST OF CHOICE LISTS devuelve, en los arrays sincronizados *arraysNums* y *arrayNoms*, los números y los nombres de las listas definidas en el editor de listas en el entorno Diseño. Los números de las listas corresponden a su orden de creación. En el editor de listas, las listas se muestran en orden alfabético. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 957 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md index 300859f2afd672..bb2a63fc7a0ccb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LIST OF STYLE SHEETS** devuelve la lista de hojas de estilo de la aplicación en el array *arrHojasEstilo*. @@ -51,4 +48,13 @@ Si ejecuta el siguiente código: #### Ver también [GET STYLE SHEET INFO](get-style-sheet-info.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1255 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md index aa9c3a52d69f5b..f43a6bfbc9d0be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LIST TO ARRAY crea o reemplaza el array a*rray* con los elementos del primer nivel de la lista o de la lista de selección designada por *lista*. @@ -86,4 +83,13 @@ Si ejecuta la siguiente instrucción: [ARRAY TO LIST](array-to-list.md) [Load list](load-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 288 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md index 40b179c16632d2..bcddc88383853a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LIST TO BLOB almacena la lista jerárquica *list* en el BLOB *blob*. @@ -47,4 +44,14 @@ Ver el ejemplo del comando [BLOB to list](blob-to-list.md "BLOB to list"). [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) [SAVE LIST](save-list.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 556 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md index ea70ebc0706617..9168a22fb42e52 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX COLLAPSE se utiliza para contraer líneas de ruptura del objeto list box designado por los parámetros *objeto* y *\** parámetros. @@ -52,4 +49,13 @@ Este ejemplo colapsa el primer nivel de líneas de ruptura de la selección en e #### Ver también -[LISTBOX EXPAND](listbox-expand.md) \ No newline at end of file +[LISTBOX EXPAND](listbox-expand.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1101 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md index 3f946997bd3877..41995fa9687247 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX DELETE COLUMN borra una o más columnas (visibles o no) en el list box designado por los parámetros *objeto* y *\**. @@ -35,4 +32,13 @@ Si el parámetro *posicionCol* es mayor al número de columnas en el list box, e #### Ver también [LISTBOX Get number of columns](listbox-get-number-of-columns.md) -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 830 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md index cc1178c9af5e07..500d14671ad646 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX DELETE ROWS borra una o varias líneas a partir de *posicion* (visible o no) del list box definido por los parámetros *objeto* y \*. @@ -37,4 +34,14 @@ Si el parámetro *posicion* es superior al número de líneas del array del list #### Ver también [LISTBOX Get number of rows](listbox-get-number-of-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 914 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md index a252b692a60ce2..7bfa128e9d8daa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX DUPLICATE COLUMN** duplica la columna definida por los parámetros *objeto* y *\** por programación en el contexto del formulario ejecutado (Modo Aplicación). El formulario original, generado en modo Diseño no se modifica. @@ -87,4 +84,13 @@ Note que las variables de encabezado y de pie de página siempre se crean con un #### Ver también -[LISTBOX MOVE COLUMN](listbox-move-column.md) \ No newline at end of file +[LISTBOX MOVE COLUMN](listbox-move-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1273 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md index a335641f4a2d18..38089101275f24 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX EXPAND se utiliza para desplegar las líneas de ruptura del objeto list box designado por los parámetros objeto y \*. @@ -82,4 +79,13 @@ Este ejemplo ilustra diferentes modos de utilizar el comando. Dados los siguient #### Ver también -[LISTBOX COLLAPSE](listbox-collapse.md) \ No newline at end of file +[LISTBOX COLLAPSE](listbox-collapse.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1100 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md index 97862d6022391d..4bfe4829d0e109 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando sólo funciona con los list box de tipo array. @@ -62,4 +59,13 @@ Ejemplos típicos de uso: #### Ver también [LISTBOX GET ARRAYS](listbox-get-arrays.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1278 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md index 2833969d3a0b3a..119b8a0ffdafc3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX GET ARRAYS** devuelve un conjunto de arrays sincronizados ofreciendo información sobre cada columna (visible o invisible) del list box designado por los parámetros *objeto* y *\**. @@ -51,4 +48,13 @@ Para un list box de tipo selección, colección o selección de entidades, *arrE [LISTBOX Get array](listbox-get-array.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 832 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md index 81ebd5bbe15ff9..05aa20ee660446 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get auto row height** devuelve el valor de altura de fila mínimo o máximo actual definido para el objeto list box designado utilizando los parámetros *objeto* y *\**. @@ -57,4 +54,13 @@ Usted desea obtener el número máximo de líneas para una línea de list box: [LISTBOX Get row height ](listbox-get-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) \ No newline at end of file +[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1502 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md index 5f22d274e9a0ed..4ee8753a01c14a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX GET CELL COORDINATES devuelve en las variables o campos *izq*, *arriba*, *der* y *inf* las coordenadas (en puntos) de la celda designada por los parámetros *columna* y *linea*, en el list box definido por *\** y *objeto*. @@ -54,4 +51,13 @@ Usted quiere dibujar un rectángulo rojo alrededor de la celda seleccionada de u #### Ver también [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[OBJECT GET COORDINATES](object-get-coordinates.md) \ No newline at end of file +[OBJECT GET COORDINATES](object-get-coordinates.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1330 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md index 775fda53fc8079..2c08b994d2908d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX GET CELL POSITION** devuelve los números de la *columna* y de la *fila* correspondientes a la ubicación en el list box (designado por *\** y *objeto*) del último clic, última selección realizada con el teclado, o las coordenadas vertical y horizontal del ratón. @@ -55,4 +52,13 @@ Este comando tiene en cuenta las acciones de selección o deselección efectuada #### Ver también [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) -[LISTBOX SELECT BREAK](listbox-select-break.md) \ No newline at end of file +[LISTBOX SELECT BREAK](listbox-select-break.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 971 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md index 9c2cd500a0fb4e..a317d54353e8db 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get column formula** devuelve la fórmula asociada a la columna de list box designada por los parámetros *objeto* y *\**. Las fórmulas no pueden utilizarse cuando la propiedad “Fuente de datos” del list box es **Selección actual**, **Selección temporal** o **Colección o Selección** **de entidades**. Si ninguna fórmula está asociada a la columna, el comando devuelve una cadena vacía. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom #### Ver también -[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) \ No newline at end of file +[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1202 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md index 068ff2dfdf8765..df315a5a17edc2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX Get column width devuelve el largo (en píxeles) de la columna designada por los parámetros *objeto* y *\*.* Puede pasar indiferentemente una columna o un título de columna de list box en el parámetro *objeto*. @@ -31,4 +28,13 @@ Si no se ha definido ningún valor de ancho mínimo y/o máximo para la columna, #### Ver también -[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) \ No newline at end of file +[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 834 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md index abf1236c624a6a..8f5a0bfbccf971 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El nuevo comando **LISTBOX Get footer calculation** devuelve el tipo de cálculo asociado al área de pie de página del list box designado por los parámetros *objeto* y *\**. @@ -32,4 +29,13 @@ Puede comparar el valor devuelto con las constantes del tema *List box cálculo #### Ver también -[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) \ No newline at end of file +[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1150 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md index 7682b2e00bcd21..59ced1d8a11901 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get footers height** devuelve la altura de la línea de pie del list box designado por los parámetros *objeto* y *\**. @@ -37,4 +34,13 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex #### Ver también -[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) \ No newline at end of file +[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1146 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md index 4b0768e780f134..d59059c9784d9f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX GET GRID COLORS** devuelve el color de las líneas horizontales y verticales que componen la rejilla del objeto list box object designado por los parámetros *objeto* y *\**. @@ -32,4 +29,13 @@ En *colorH* y *colorV*, el comando devuelve los valores de los colores RGB. El f #### Ver también -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1200 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md index be83108940d15f..701f9fd007e315 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX GET GRID** devuelve el estado visible/oculto de las líneas horizontales y/o verticales que componen la rejilla del objeto list box designado por los parámetros *objeto* y *\**. @@ -29,4 +26,13 @@ El comando devuelve en los parámetros *horizontal* y *vertical*, el valor **Tru #### Ver también -[LISTBOX SET GRID](listbox-set-grid.md) \ No newline at end of file +[LISTBOX SET GRID](listbox-set-grid.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1199 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md index 42137df05fe2a2..729ecab15662aa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get headers height** devuelve la altura de la línea de encabezado del list box designado por los parámetros *objeto* y *\**. @@ -37,4 +34,13 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex #### Ver también -[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) \ No newline at end of file +[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1144 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md index b60b05f589d9c0..0c8c4752f5bb5b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX GET HIERARCHY permite buscar las propiedades jerárquicas del objeto list box designado por los parámetros *objeto* y *\** . @@ -36,4 +33,13 @@ Si el list box está en modo jerárquico, el comando llena el array *jerarquia* #### Ver también -[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) \ No newline at end of file +[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1099 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md index cf0ee4aa8e6036..d368559ba039d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get locked columns** devuelve el número de columnas bloqueadas en el list box designado por los parámetros *objeto* y *\**. @@ -31,4 +28,13 @@ displayed_sidebar: docs #### Ver también -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1152 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md index 09ba12f98f7b06..776c4622f652a5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX Get number of columns devuelve el número total de columnas (visibles o invisibles) presentes en el list box designado por los parámetros *objeto* y *\**. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom #### Ver también -[LISTBOX DELETE COLUMN](listbox-delete-column.md) \ No newline at end of file +[LISTBOX DELETE COLUMN](listbox-delete-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 831 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md index 328fa519f30eef..e8e929af534fa1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX Get number of rows devuelve el número de filas del list box designado por los parámetros objeto y \*. @@ -31,4 +28,13 @@ Si pasa el parámetro opcional \*, indica que el parámetro *objeto* es un nombr #### Ver también [LISTBOX DELETE ROWS](listbox-delete-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 915 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md index 9161f15978b133..ff104b45b0a4a5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX GET OBJECTS** devuelve un array que contiene los nombres de todos los objetos que componen el list box designado por los parámetros *objeto* y *\** . @@ -61,4 +58,13 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los #### Ver también [FORM LOAD](../commands/form-load.md) -[OBJECT Get type](object-get-type.md) \ No newline at end of file +[OBJECT Get type](object-get-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1302 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md index e40af854dcde57..651bcbe4534266 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX GET PRINT INFORMATION devuelve la información actual relativa a la impresión del objeto list box designado por los parámetros *objeto* y *\** . Este comando permite controlar la impresión del contenido del list box. @@ -69,3 +66,13 @@ Impresión de al menos 500 líneas del list box, conociendo que algunas líneas     PAGE BREAK  Until($GlobalPrinted>=500) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1110 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md index 1e137a4d1ac025..f6cbd1f1f12200 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get property** devuelve el valor de la *propiedad* del list box o columna especificado utilizando los parámetros *objeto* y *\*.* @@ -101,4 +98,13 @@ Dado un list box "MyListbox", si ejecuta la siguiente instrucción: [LISTBOX SET GRID](listbox-set-grid.md) [LISTBOX SET PROPERTY](listbox-set-property.md) -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 917 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md index 1b0ec031cba0cd..2ae3158ce4c560 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando sólo funciona con los list box de tipo array. @@ -60,4 +57,13 @@ Dado el siguiente list box: *Listbox* [LISTBOX Get row color](listbox-get-row-color.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1271 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md index a58d696e5cfb2b..9a82167844753b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando solo funciona con list boxes de tipo array. @@ -59,4 +56,13 @@ Dado el siguiente list box: #### Ver también -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1658 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md index 6a3cc32a2fd298..e559d54c812465 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando sólo funciona con los list box de tipo array. @@ -51,4 +48,13 @@ Dado el siguiente list box: #### Ver también -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1269 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md index 83b63a0372e177..6ddca1b40a674a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get row height** devuelve la altura de la *fila* especificada en el objeto list box designado utilizando el *objeto* y los parámetros *\**. @@ -36,4 +33,13 @@ El valor de la altura de la línea se expresa: [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1408 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md index 8bafff4e8a9d49..291748d7f48fbb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get rows height** devuelve la altura actual (en píxeles o en líneas) de las líneas del objeto list box designado utilizando los parámetros *objeto* y *\**.El valor devuelto corresponde a la altura de una sola línea. @@ -38,4 +35,13 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX Get row height ](listbox-get-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 836 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md index 579ee13cb5bad1..648f8300bd8b70 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get static columns** devuelve el número de columnas estáticas en el list box designado por los parámetros *objeto* y *\**. @@ -33,4 +30,13 @@ Sin embargo, el comando no tiene en cuenta el estado visible/invisible de las co #### Ver también -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1154 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md index e0dbc23f9e236b..136eb3303f3041 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX GET TABLE SOURCE permite conocer la fuente actual de datos mostrados en el list box designado por los parámetros *\** y *objeto*. @@ -34,4 +31,13 @@ Si el list box está asociado con arrays, *numTabla* devuelve -1 y *tempo*, si s #### Ver también -[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) \ No newline at end of file +[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1014 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md index 5efcbbe3273c00..3d4e573a6cde55 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX INSERT COLUMN FORMULA** inserta una columna en el listbox designado por los parámetros *objeto* y *\**. @@ -119,4 +116,13 @@ La columna se añade al list box: #### Ver también -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 970 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md index 2e8b66bf01272e..c7cb5927958ed6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX INSERT COLUMN** inserta una columna en el list box designado por los parámetros *objeto* y *\**. @@ -100,4 +97,13 @@ Usted desea insertar una columna de forma dinámica en un array de tipo list box #### Ver también [LISTBOX DELETE COLUMN](listbox-delete-column.md) -[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) \ No newline at end of file +[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 829 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md index eb8ed197114dca..7f65d287e087d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX INSERT ROWS** inserta una o varias nuevas líneas en el list box designado por los parámetros *objeto* y *\**. @@ -35,4 +32,14 @@ Si el valor de *posicionL* es mayor que el número total de filas en el list box #### Ver también -[LISTBOX DELETE ROWS](listbox-delete-rows.md) \ No newline at end of file +[LISTBOX DELETE ROWS](listbox-delete-rows.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 913 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md index 1c1704242968e5..6038a6fa5b9f5a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX MOVE COLUMN** mueve por programación la columna designada por los parámetros *objeto* y *\** en el contexto del formulario en ejecución (modo Aplicación). El formulario original, generado en modo Diseño, no se modifica. @@ -42,4 +39,13 @@ Usted quiere invertir la segunda y tercera columna del list box: #### Ver también -[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) \ No newline at end of file +[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1274 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md index d88128c67a580c..2859793e1043d6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX MOVED COLUMN NUMBER devuelve dos números en *antPosicion* y *nuevPosicion* indicando respectivamente la posición anterior y la nueva posición de la columna movida en el list box designado por los parámetros *objeto* y *\**. @@ -32,4 +29,13 @@ Este comando debe utilizarse con el evento de formulario On column moved (ver el #### Ver también [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) \ No newline at end of file +[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 844 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md index 5e6cc1cae15ea9..05aeaef1d1b753 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX MOVED ROW NUMBER devuelve dos números en *antPosicion* y *nuevPosicion* indicando respectivamente la posición anterior y la nueva posición de la fila movida en el list box, especificadas por los parámetros *objeto* y *\**. @@ -34,4 +31,13 @@ Este comando debe utilizarse con el evento de formulario On row moved (ver el co #### Ver también [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) \ No newline at end of file +[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 837 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md index f63b209c4ba478..bf7d43fbb7ff9c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SELECT BREAK se utiliza para seleccionar líneas de ruptura en el objeto list box designado por los parámetros *objeto* y *\**. El list box debe mostrarse en modo jerárquico. @@ -63,4 +60,13 @@ Este es el resultado: #### Ver también [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1117 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md index 1a252963e23c42..283f85ae3163b9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SELECT ROW selecciona la fila cuyo número se pasa en *posicion* en el list box designado por los parámetros *objeto* y *\**. @@ -55,4 +52,13 @@ Después de la ejecución del método, los arrays son sincronizados: si el array [LISTBOX INSERT ROWS](listbox-insert-rows.md) [LISTBOX SELECT BREAK](listbox-select-break.md) [LISTBOX SELECT ROWS](listbox-select-rows.md) -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 912 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md index d8cc9c736a432c..b0db0513e7c3ac 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SELECT ROWS** selecciona las líneas de un list box selección de entidad o un list box colección que corresponde a las entidades u objetos contenidos en el parámetro de *seleccion*. @@ -86,4 +83,13 @@ Ejemplo con una colección de objetos: #### Ver también -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1715 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md index 85c918ec883d1f..c602f7f650d29d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota**: este comando sólo funciona con los list box de tipo array. @@ -67,4 +64,13 @@ Usted desea definir un array de altura de línea para un list box: #### Ver también [LISTBOX Get array](listbox-get-array.md) -[LISTBOX GET ARRAYS](listbox-get-arrays.md) \ No newline at end of file +[LISTBOX GET ARRAYS](listbox-get-arrays.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1279 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md index 7f28b08573cf01..254deea931bcf7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SET AUTO ROW HEIGHT le permite establecer el valor de altura de fila mínimo o máximo en el objeto de list box designado utilizando los parámetros *objeto* y *\**. @@ -59,4 +56,13 @@ Usted desea definir las alturas mínimas y máximas para un list box con una alt [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1501 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md index ccae7b1cca762c..c43e917dabf365 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET COLUMN FORMULA** modifica la *formula* asociada a la columna de list box designada por los parámetros *objeto* y *\**. Las fórmulas no se pueden utilizar cuando la propiedad “Fuente de datos” del list box es **Selección actual**, **Selección temporal** o **Colección** o **Selección de entidades**. @@ -43,4 +40,13 @@ El parámetro *tipoDatos* designa el tipo de datos resultantes de la ejecución #### Ver también [LISTBOX Get column formula](listbox-get-column-formula.md) -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1203 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md index e271fd89c0c023..ceb757e3e5683c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SET COLUMN WIDTH le permite modificar por programación el ancho de una o todas las columnas del objeto (list box, columna o título) designado utilizando los parámetros *objeto* y *\**. @@ -34,4 +31,13 @@ Los parámetros opcionales *anchoMin* y *anchoMax* permiten definir los límites #### Ver también -[LISTBOX Get column width](listbox-get-column-width.md) \ No newline at end of file +[LISTBOX Get column width](listbox-get-column-width.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 833 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md index 87db04142f154e..e879c89d040624 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET FOOTER CALCULATION** permite definir el cálculo automático asociado al área de pie del list box designado por los parámetros *objeto* y *\**. @@ -52,4 +49,13 @@ Si el tipo de datos de la columna o de al menos una columna del list box (si obj #### Ver también -[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) \ No newline at end of file +[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1140 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md index 916575092a0342..37d91aec142f4d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET FOOTERS HEIGHT** modifica por programación la altura de la línea de pie del list box designado por los parámetros *objeto* y *\**. @@ -37,4 +34,13 @@ Pase en el parámetro *altura* la altura a definir. Por defecto, si omite el par #### Ver también -[LISTBOX Get footers height](listbox-get-footers-height.md) \ No newline at end of file +[LISTBOX Get footers height](listbox-get-footers-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1145 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md index 2aacc68449dd06..51f7dc876f75a2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET GRID COLOR** le permite modificar el color de la rejilla del objeto list box designado por los parámetros *objeto* y *\**. @@ -37,4 +34,13 @@ Los parámetros *horizontal* y *vertical* le permiten especificar las líneas a [LISTBOX GET GRID COLORS](listbox-get-grid-colors.md) [LISTBOX SET GRID](listbox-set-grid.md) -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 842 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md index 823e224a719087..caf4879c310488 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SET GRID permite mostrar u ocultar las líneas horizontales y/o verticales que componen la matriz del objeto list box designado por los parámetros *objeto* y *\**. @@ -31,4 +28,13 @@ Pase en los parámetros *horizontal* y *vertical* los valores booleanos que indi [LISTBOX GET GRID](listbox-get-grid.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 841 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md index 1ba0054c245d3a..8ed831213bf6fd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET HEADERS HEIGHT** modifica por programación la altura de la línea de encabezado del list box designado por los parámetros *objeto* y *\**. @@ -41,4 +38,13 @@ Los encabezados deben respetar la altura mínima establecida por el sistema. Est #### Ver también -[LISTBOX Get headers height](listbox-get-headers-height.md) \ No newline at end of file +[LISTBOX Get headers height](listbox-get-headers-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1143 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md index 1fed0c36ef3127..a9eb73f4ce9a2a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SET HIERARCHY permite configurar el objeto list box designado por los parámetros objeto y *\** en modo jerárquico o no jerárquico. @@ -55,4 +52,13 @@ Definición de los arrays aPais, aRegion y aCiudad como jerarquía de un list bo #### Ver también -[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) \ No newline at end of file +[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1098 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md index 90a85a12da55c9..f96eb20c96d1b2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET LOCKED COLUMNS** bloquea las primeras *numColumnas* columnas izquierdas del list box designado por los parámetros *objeto* y *\**. @@ -33,4 +30,13 @@ Para eliminar el bloqueo de columnas, pase 0 o un valor negativo en *numColumnas #### Ver también [LISTBOX Get locked columns](listbox-get-locked-columns.md) -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1151 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md index 31fa9340773f9e..fce8fe11ceabeb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET PROPERTY** define el valor de la propiedad de la columna list box o list box especificada utilizando los parámetros objeto y \*. @@ -86,4 +83,13 @@ Usted desea definir el ancho máximo de la columna "ProductNumber": *Listbox* -[LISTBOX Get property](listbox-get-property.md) \ No newline at end of file +[LISTBOX Get property](listbox-get-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1440 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md index 71eb0fc3ac4570..085f0199aafd9b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando sólo funciona con listboxes de tipo array. @@ -65,4 +62,13 @@ En un array de tipo list box, queremos establecer los colores de una fila y para *Listbox* [LISTBOX Get row color](listbox-get-row-color.md) [LISTBOX Get row color as number](listbox-get-row-color-as-number.md) -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1270 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md index 17147ba25aa506..2b01b7a2d1010e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando sólo funciona con los list boxes de tipo array. @@ -80,4 +77,13 @@ Después de la segunda declaración, todas las celdas de la tercera fila cambian #### Ver también [LISTBOX Get row font style](listbox-get-row-font-style.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1268 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md index 0c695fcebc3c31..1b366f9f0ad887 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET ROW HEIGHT** le permite modificar la altura de la *fila* especificada en el objeto list box designado utilizando los parámetros *objeto* y *\**. @@ -85,4 +82,13 @@ Por otro lado, si el código siguiente se ejecuta posteriormente... [LISTBOX Get row height ](listbox-get-row-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1409 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md index 7a2ae17dd5e061..6605bdf3f9bfec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET ROWS HEIGHT** le permite modificar por programación la altura de las filas del objeto list box designado por los parámetros *objeto* y *\**. @@ -38,4 +35,13 @@ Por defecto, si omite el parámetro *unidad*, la altura se expresa en píxeles. [LISTBOX Get rows height](listbox-get-rows-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 835 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md index bbacf43ea26e2e..98a7db7161dcfe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET STATIC COLUMNS** define las primeras *numColumnas* columnas (empezando por la izquierda) en el list box designado por los parámetros *objeto* y *\**. @@ -29,4 +26,13 @@ Las columnas estáticas no pueden moverse en el list box. #### Ver también [LISTBOX Get static columns](listbox-get-static-columns.md) -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1153 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md index 423f04b4ea14d4..8c3fe7aeb0e889 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET TABLE SOURCE** permite modificar la fuente de datos mostrada en el listbox diseñado por los parámetros *\** y *objeto* @@ -39,4 +36,13 @@ Si el list box ya contiene las columnas, sus contenidos se actualizarán despué #### Ver también -[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) \ No newline at end of file +[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1013 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md index cdb80e54644cab..a41eef22409596 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SORT COLUMNS aplica una ordenación estándar a las líneas del list box definido por el objeto y los parámetros \* en función de los valores de una o varias columnas. @@ -36,3 +33,13 @@ Puede definir ordenaciones multiniveles: para hacerlo, pase tantos pares (*numCo Conforme con el principio de funcionamiento del list box, las columnas están sincronizadas, lo que significa que la ordenación de una columna repercute automáticamente en todas las otras columnas del objeto. **Nota:** el comando **LISTBOX SORT COLUMNS** no tiene en cuenta la propiedad listbox *Sortable*. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 916 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md index eb1014e812436f..e0e062b4b013c1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md @@ -194,3 +194,13 @@ Obtendrá el siguiente resultado (objeto stringified): ``` **Nota:** para más información sobre el formato del [objeto](# "Datos estructurados como forma de objeto nativo 4D"), devuelto, contacte los servicios técnicos de 4D. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1528 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md index a8d7f5a72c7128..e2e2d76d9fc768 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Load list crea una lista jerárquica cuyo contenido se copia de la lista pasada en *nomLista*. Luego devuelve el número de referencia de la lista creada recientemente. @@ -50,4 +47,13 @@ Usted crea una base para el mercado internacional y necesita cambiar a los difer [CLEAR LIST](clear-list.md) [Is a list](is-a-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 383 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md index f011a643c37a5b..34005c45cdf2f6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md @@ -35,4 +35,13 @@ En entornos multiusuario y multiprocesos, cuando necesite modificar un registro [Locked](locked.md) *Record Locking* -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 52 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md index 5746b23cecbdf9..edf8b798bf2433 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md @@ -41,4 +41,14 @@ Si el usuario hace clic en Cancelar en la caja de diálogo de abrir archivos, o #### Ver también -[SAVE SET](save-set.md) \ No newline at end of file +[SAVE SET](save-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 185 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md index ee882242c0aa61..ae8eef49d7e3b3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md @@ -44,4 +44,14 @@ Si las variables se cargan correctamente, la variable sistema OK toma el valor 1 [BLOB TO VARIABLE](blob-to-variable.md) [DOCUMENT TO BLOB](document-to-blob.md) [RECEIVE VARIABLE](receive-variable.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 74 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md index bef81a5f4c9ef1..1f2815c3e5faec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md @@ -64,4 +64,13 @@ Si el lenguaje actual es, por ejemplo, francés canadiense (fr-ca), el comando d #### Ver también -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1105 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md index b4b9b6eeaa0b53..a308434be39b4a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md @@ -53,4 +53,14 @@ Si el comando se ejecuta correctamente, la variable OK toma el valor 1\. Si *res #### Ver también -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 991 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md index 46352a57b4f9d5..d613133fc6382a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md @@ -39,4 +39,13 @@ Si el registro ha sido bloqueado por una *petición $lock REST*: #### Ver también [Locked](locked.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 353 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md index ce25d7007db3a2..1aa0a33ca9ef07 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md @@ -89,4 +89,13 @@ Si el código se ejecuta en un 4D Server y el bloqueo es causado por una máquin #### Ver también -[Locked](locked.md) \ No newline at end of file +[Locked](locked.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1316 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked.md index 17debdf48851a6..011d4317d6dbd2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked.md @@ -33,4 +33,13 @@ Durante una transacción, [LOAD RECORD](load-record.md) y Locked se utilizan con [Locked records info](locked-records-info.md) [LOAD RECORD](load-record.md) [LOCKED BY](locked-by.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 147 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md index 19a9f248d1861f..d1e1fe9f20bcfc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md @@ -63,3 +63,13 @@ Cada vez que se abre la base, esta información se escribirá en el visor de eve #### Ver también [SET DATABASE PARAMETER](set-database-parameter.md) + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 667 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md index 3cda4ee12c8088..0e4d77de212aaf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md @@ -95,4 +95,14 @@ El comando **LOG FILE TO JSON** modifica el valor de las variables sistema OK y #### Ver también -[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) \ No newline at end of file +[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1352 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md index e427098f549c45..e310dfd20600b6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md @@ -30,4 +30,14 @@ Si la base funciona con un archivo historial, la variable sistema OK toma el val #### Ver también -[SELECT LOG FILE](select-log-file.md) \ No newline at end of file +[SELECT LOG FILE](select-log-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 928 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log.md index 4a13c10f5e92ba..b72628924bd9e3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log.md @@ -30,4 +30,13 @@ La siguiente línea muestra 1: #### Ver también -[Exp](exp.md) \ No newline at end of file +[Exp](exp.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 22 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md index a3e879dde62166..231ba407235c1e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md @@ -34,4 +34,13 @@ Quiere recuperar los números de los registros de la selección actual: #### Ver también -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 647 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md index b2e9075372c230..741810dfc4b986 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md @@ -113,4 +113,13 @@ Después de la ejecución de este código: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 550 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md index f3c813e119ac08..7727ebab7fe684 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md @@ -47,4 +47,13 @@ Este ejemplo compara los resultados obtenidos de acuerdo a si se pasa o no el pa #### Ver también -[Uppercase](uppercase.md) \ No newline at end of file +[Uppercase](uppercase.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 14 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md index 2f8bbc92e3de53..1d3d0743834dbc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Macintosh command down devuelve TRUE si la tecla Comando Macintosh está presionada. - -**Nota:** cuando se llama bajo Windows, Macintosh command down devuelve TRUE si la tecla Ctrl Windows está presionada. +Macintosh command down devuelve TRUE si la tecla Comando Macintosh está presionada.cuando se llama bajo Windows, Macintosh command down devuelve TRUE si la tecla Ctrl Windows está presionada. #### Ejemplo @@ -30,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 546 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md index ce0dffc864a120..47b3e19ee52ce5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Macintosh control down devuelve TRUE si la tecla Control de Macintosh está presionada. - -**Nota:** cuando se llama bajo Windows, Macintosh control down devuelve FALSE. Esta tecla Macintosh no tiene equivalente en Windows. +Macintosh control down devuelve TRUE si la tecla Control de Macintosh está presionada.cuando se llama bajo Windows, Macintosh control down devuelve FALSE. Esta tecla Macintosh no tiene equivalente en Windows. #### Ejemplo @@ -30,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 544 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md index e483d558b2fbb7..41f79b0ca50553 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Macintosh option down devuelve TRUE si la tecla Opción Macintosh está presionada. - -**Nota:** cuando se llama bajo Windows, Macintosh option down devuelve TRUE si la tecla Alt Windows está presionada. +Macintosh option down devuelve TRUE si la tecla Opción Macintosh está presionada.cuando se llama bajo Windows, Macintosh option down devuelve TRUE si la tecla Alt Windows está presionada. #### Ejemplo @@ -30,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh control down](macintosh-control-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 545 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md index 4a4b94c2caf3c0..2203b7f124eccb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md @@ -113,3 +113,14 @@ Añadir una estrella al final de una de las dos sintaxis anteriores. #### Gestión de errores En caso de error, el comando genera un error que puede interceptar vía un método instalado por el comando [ON ERR CALL](on-err-call.md "ON ERR CALL"). + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1019 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/max.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/max.md index b47026140b9d24..74f67db63931b1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/max.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/max.md @@ -68,4 +68,14 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo #### Ver también -[Min](min.md) \ No newline at end of file +[Min](min.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 3 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md index ac9d34964b9f28..90adf4ea8e71f8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando MAXIMIZE WINDOW provoca el zoom de la ventana cuyo número de referencia se pasa en *ventana*. Si se omite este parámetro, el efecto es el mismo pero se aplica a todas las ventanas de la aplicación (Windows) o de la ventana del primer plano del proceso actual (Mac OS). @@ -83,4 +80,13 @@ En este contexto, si el usuario hace clic en el botón: [Is window maximized](is-window-maximized.md) [MINIMIZE WINDOW](minimize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 453 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md index 27b8b5e5e8e849..87d5affdf77ab1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md @@ -26,4 +26,13 @@ Después de ejecutar el comando, las estadísticas solicitadas se entregan en lo #### Ver también -[Cache info](cache-info.md) \ No newline at end of file +[Cache info](cache-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1118 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md index a9ed68cbe81524..d37bd3fb9549f7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Menu bar height devuelve la altura de la barra de menús, expresada en píxeles. @@ -31,4 +28,13 @@ El comando devuelve 0: [HIDE MENU BAR](hide-menu-bar.md) [Menu bar screen](menu-bar-screen.md) -[SHOW MENU BAR](show-menu-bar.md) \ No newline at end of file +[SHOW MENU BAR](show-menu-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 440 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md index 6c77bfad61a68d..d9d5a10aae586a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Menu bar screen devuelve el número de la pantalla donde está ubicada la barra de menús. @@ -25,4 +22,13 @@ displayed_sidebar: docs #### Ver también [Count screens](count-screens.md) -[Menu bar height](menu-bar-height.md) \ No newline at end of file +[Menu bar height](menu-bar-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 441 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md index 969865bcf334f5..68db58b7433035 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Menu selected se utiliza sólo cuando se muestran formularios. Esta función detecta el comando de menú elegido en un menú y en el caso de un submenú jerárquico, devuelve la referencia del submenú. @@ -61,4 +58,14 @@ El siguiente método de formulario utiliza Menu selected para proporcionar los a #### Ver también -*Gestión de menús* \ No newline at end of file +*Gestión de menús* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 152 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/message.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/message.md index e45e33e0adaf84..5c35ed1b1ac56e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/message.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/message.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando MESSAGE generalmente se utiliza para informar al usuario sobre alguna actividad. Muestra *mensaje* en la pantalla en una ventana de mensaje especial que se abre y cierra cada vez que usted llama a MESSAGE, a menos que usted trabaje con una ventana que abrió previamente utilizando [Open window](open-window.md) (ver los siguientes detalles). El mensaje es temporal y se borra tan pronto como se muestre un formulario o se detenga la ejecución del método. Si se ejecuta otro comando MESSAGE, el mensaje anterior se borra. @@ -114,4 +111,13 @@ El resultado es el siguiente (en Windows): [CLOSE WINDOW](close-window.md) [ERASE WINDOW](erase-window.md) [GOTO XY](goto-xy.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 88 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md index 22747d974109b1..3002543404b155 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md @@ -61,4 +61,13 @@ El siguiente ejemplo suprime los termómetros de progreso antes de efectuar una #### Ver también -[MESSAGES ON](messages-on.md) \ No newline at end of file +[MESSAGES ON](messages-on.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 175 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md index b4971530c5b6c6..f4691523fb52d3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md @@ -18,4 +18,13 @@ displayed_sidebar: docs #### Ver también -[MESSAGES OFF](messages-off.md) \ No newline at end of file +[MESSAGES OFF](messages-off.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 181 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md index 516f8d829c7154..63cf83dd283ec4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md @@ -44,4 +44,13 @@ Este comando es particularmente útil en el contexto de componentes porque le pe #### Ver también *Gestión de errores* -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 704 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md index ca3e2571570884..375d34971d1810 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Method called on event devuelve el nombre del método instalado por el comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL"). @@ -24,4 +21,13 @@ Si no se ha instalado un ningún método, se devuelve una cadena vacía (""). #### Ver también -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 705 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md index a0a87e6ef415ae..c4aea7f4b7a477 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD Get attribute** devuelve el valor del atributo *tipoAtributo* para el método proyecto designado por el parámetro *ruta*. Este comando sólo funciona con métodos proyecto. Si pasa una *ruta* invalida, se genera un error. @@ -41,4 +38,13 @@ El comando devuelve **True** si se selecciona un atributo y **False** si se dese #### Ver también -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1169 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md index e681e654f8dd7f..9f3d62cd1e9d7c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md @@ -59,4 +59,13 @@ Después de la ejecución, $att contiene, por ejemplo: #### Ver también -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1334 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md index 6290f39df5eaea..906d86aa7f8f64 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET CODE** devuelve en el parámetro *codigo*, el contenido de los métodos designados por el parámetro *ruta*. Este comando puede devolver el código de todos los tipos de métodos: métodos base, definiciones de clases, triggers, métodos proyecto, métodos formulario y métodos objeto. @@ -123,4 +120,13 @@ El documento resultante contendrá: #### Ver también [METHOD SET CODE](method-set-code.md) -*Utilizar tokens en fórmulas* \ No newline at end of file +*Utilizar tokens en fórmulas* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1190 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md index fac6e109130058..f7ff6b5c46b8c3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET COMMENTS** devuelve en el parámetro *comentarios*, la documentación de los métodos designados por el parámetro *ruta*. @@ -57,4 +54,13 @@ Si el comando se ejecuta desde un componente, se aplica por defecto a los métod #### Ver también -[METHOD SET COMMENTS](method-set-comments.md) \ No newline at end of file +[METHOD SET COMMENTS](method-set-comments.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1189 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md index 8817e50f91ca63..a487b4936af9b7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET FOLDERS** devuelve en el array *arrNoms*, los nombres de las carpetas creadas en la página Inicio del Explorador de 4D: @@ -31,4 +28,13 @@ Si se ejecuta este comando desde un componente, devuelve por defecto las rutas d #### Ver también -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1206 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md index 148c90f35251ad..54a32644dc7bdf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET MODIFICATION DATE** devuelve en los parámetros *fechaMod* y *horaMod* las fechas y horas de la última modificación de los métodos designados por el parámetro *ruta*. @@ -70,3 +67,13 @@ Quiere obtener las fechas de modificación de los métodos de un módulo con el ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1170 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md index 7666017909875d..cf447fec785554 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md @@ -39,3 +39,13 @@ Ejemplos de uso:   // Lista de los métodos proyecto de la base local que comienzan por una cadena específica  METHOD GET NAMES(t_Names;"web_@";*) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1166 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md index 34cb83642de85a..d95b759f0d3db7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD Get path** devuelve la ruta de acceso interna completa de un método. @@ -66,4 +63,13 @@ Si el comando se ejecuta desde un componente, devuelve por defecto las rutas de [Current method path](current-method-path.md) [METHOD OPEN PATH](method-open-path.md) -[METHOD RESOLVE PATH](method-resolve-path.md) \ No newline at end of file +[METHOD RESOLVE PATH](method-resolve-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1164 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md index 2f6b8c6ea6f89f..31be433d33473c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET PATHS FORM** llena el array *arrRutas* con las rutas de acceso internas y los nombres de los métodos de todos los objetos de los formularios así como también de los métodos formulario. Los métodos formulario se etiquetan {formMethod}. @@ -71,4 +68,13 @@ Lista de todos los objetos de los formularios "input" de la tabla \[Empleados\] #### Ver también -[FORM GET NAMES](form-get-names.md) \ No newline at end of file +[FORM GET NAMES](form-get-names.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1168 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md index 2d969d60d879b7..9b924064f05ed7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET PATHS** llena el array *arrRutas* con las rutas de acceso internas y los nombres de los métodos de la aplicación del tipo definido por el parámetro *tipoMetodo*. @@ -86,4 +83,13 @@ Consulte el ejemplo del comando [METHOD SET CODE](method-set-code.md). #### Ver también [Current method path](current-method-path.md) -[METHOD GET FOLDERS](method-get-folders.md) \ No newline at end of file +[METHOD GET FOLDERS](method-get-folders.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1163 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md index 248ed33b2f7064..43b6c62ab58ba8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD OPEN PATH** abre, en el editor de métodos de 4D, el método cuya ruta de acceso interna se pasa en el parámetro *ruta*. @@ -31,4 +28,13 @@ Puede ejecutar este comando desde un componente, pero en este caso, debe pasar e #### Ver también *Comandos del tema Acceso objetos diseño* -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1213 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md index 635bd6e77df40f..6fcf10ea12c422 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD RESOLVE PATH** analiza la ruta de acceso interna pasada en el parámetro *ruta* y devuelve sus diferentes componentes en los parámetros *tipoMetodo*, *ptrTabla*, *nomObjeto* y *nomObjetoForm*. @@ -84,4 +81,13 @@ Resolución de una ruta de objeto de método formulario tabla: #### Ver también -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1165 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md index 20e78c9664645c..a2f587de945612 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD SET ACCESS MODE** permite definir el comportamiento de 4D cuando intenta acceder en escritura a un objeto ya cargado en modificación por otro usuario o proceso. El alcance de este comando es la sesión actual. @@ -27,3 +24,13 @@ En *modo*, pase una de las siguientes constantes del tema *Acceso objetos diseñ | On object locked abort | Entero largo | 0 | La carga del objeto se aborta (funcionamiento por defecto) | | On object locked confirm | Entero largo | 2 | 4D muestra una caja de diálogo permitiéndole elegir entre intentar nuevamente o abortar. En modo remoto, esta opción no es soportada (la carga se abandona) | | On object locked retry | Entero largo | 1 | 4D intenta cargar el objeto hasta que sea liberado | + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1191 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md index 49b3cd2874aca3..cb10b443fd4988 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD SET ATTRIBUTE** permite definir el valor del atributo *tipoAtrib* para el método proyecto designado por el parámetro *ruta*. Este comando sólo funciona con métodos proyecto. Si pasa una *ruta* invalida, se genera un error. @@ -69,4 +66,13 @@ Definición de varios pares de atributos/valores: *Acceso objetos diseño* [METHOD Get attribute](method-get-attribute.md) -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1192 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md index 78ebae9211db0d..87968f1f282ba7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Tema:** Acceso objetos diseño @@ -57,4 +54,13 @@ Usted desea modificar un solo atributo: #### Ver también [METHOD GET ATTRIBUTES](method-get-attributes.md) -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1335 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md index bb9d874f3443e4..644a4d067ff7a8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD SET CODE** modifica el código de los métodos designados por el parámetro *ruta* con el contenido pasado en el parámetro *codigo*. @@ -99,4 +96,13 @@ Este ejemplo exporta e importa la totalidad de los métodos proyecto de una apli #### Ver también -[METHOD GET CODE](method-get-code.md) \ No newline at end of file +[METHOD GET CODE](method-get-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1194 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md index 51ebc6a852579e..08ba7052a8ba8f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD SET COMMENTS** remplaza la documentación del(os) método(s) designados por el parámetro *ruta* por los definidos en el parámetro *comentarios*. @@ -63,4 +60,13 @@ Añadir una fecha de modificación a un comentario de trigger existente: #### Ver también -[METHOD GET COMMENTS](method-get-comments.md) \ No newline at end of file +[METHOD GET COMMENTS](method-get-comments.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1193 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md index 724ed4a158fcfa..58e08174a6bcbd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md @@ -46,4 +46,13 @@ El siguiente código espera hasta 5 segundos para que un registro bloqueado se d [Current time](current-time.md) [Tickcount](tickcount.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 459 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/min.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/min.md index d0f42fcaee5f15..ececdb9bd0606d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/min.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/min.md @@ -76,4 +76,14 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo #### Ver también -[Max](max.md) \ No newline at end of file +[Max](max.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 4 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md index 801ed3dc837860..6006ffa2d44856 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando MINIMIZE WINDOW define el tamaño de la ventana, cuyo número se pasó en *ventana*, del tamaño que tenía antes de ser maximizada. Si se omite *ventana*, el comando aplica a cada ventana de la aplicación (Windows) o a la ventana del primer plano del proceso actual (en Mac OS). @@ -53,4 +50,13 @@ Mac OS #### Ver también [MAXIMIZE WINDOW](maximize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 454 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md index 08ec5d48cfea4c..f9b920be8d1f08 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md @@ -44,4 +44,13 @@ Usted desea restablecer todas las sesiones actuales para todas las aplicaciones #### Ver también -[Método base On Mobile App Authentication](metodo-base-on-mobile-app-authentication.md) \ No newline at end of file +[Método base On Mobile App Authentication](metodo-base-on-mobile-app-authentication.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1596 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mod.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mod.md index 249e860f8b1faa..79204d8b1e379a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mod.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mod.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando Mod devuelve el resto de la división entera de *número1* entre *número2*. - -**Notas:** +El comando Mod devuelve el resto de la división entera de *número1* entre *número2*. • Mod acepta expresiones de tipo Entero, Entero largo y Reales. Sin embargo, si *número1* o *número2* son números reales, los números primeros son redondeados y luego se calcula Mod. • Sea cuidadoso cuando utilice Mod con números reales de gran tamaño (sobre 2^31), ya que en este caso, su operación podría alcanzar los límites de las capacidades de cálculo de los procesadores estándar. @@ -36,3 +34,13 @@ El siguiente ejemplo ilustra el funcionamiento de Mod con diferentes argumentos.  vlResult:=Mod(4;2) // vlResult vale 0  vlResult:=Mod(3.5;2) // vlResult vale 0 ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 98 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md index cb4fae7b1e896a..e7f398dd4c1e10 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md @@ -41,4 +41,13 @@ El siguiente ejemplo muestra una utilización típica de Modified record: [Modified](modified.md) [Old](old.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 314 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified.md index c39d8209a2740e..887ed9302bee87 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Modified** devuelve **True** si un valor ha sido asignado por programación a *campo* o si ha sido modificado durante la entrada de datos. El comando **Modified**debe utilizarse únicamente en un método de formulario (o una subrutina llamada por un método de formulario). @@ -69,4 +66,13 @@ Selecciona un registro para la tabla *\[unaTabla\]*, luego llama múltiples subr #### Ver también [Form event code](../commands/form-event-code.md) -[Old](old.md) \ No newline at end of file +[Old](old.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 32 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md index 21bc0af1638cdd..7e65513f8bc38c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando MODIFY RECORD permite al usuario modificar el registro actual de la tabla *tabla* o de la tabla por defecto si se omite el parámetro *tabla*. MODIFY RECORD carga el registro, si no se ha cargado por el proceso actual y muestra el formulario de entrada actual. Si no hay registro actual, entonces MODIFY RECORD no hace nada. MODIFY RECORD no afecta la selección actual. @@ -50,4 +47,15 @@ La variable sistema OK toma el valor 1 si se acepta el registro y 0 si se cancel [Locked](locked.md) [Modified record](modified-record.md) [READ WRITE](read-write.md) -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 57 | +| Hilo seguro | ✗ | +| Modifica variables | OK | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md index 08498f74f0ce59..b9b14dd3e7eadd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción MODIFY SELECTION es casi idéntico al comando [DISPLAY SELECTION](display-selection.md "DISPLAY SELECTION"). Consulte la descripción del comando [DISPLAY SELECTION](display-selection.md "DISPLAY SELECTION") para una descripción detallada. Las diferencias entre los dos comandos son: @@ -32,4 +29,14 @@ displayed_sidebar: docs *Conjuntos* [DISPLAY SELECTION](display-selection.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 204 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md index ae528954c8d04a..8c48e13539d64b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md @@ -138,4 +138,13 @@ Ver el ejemplo de **[START MONITORING ACTIVITY](start-monitoring-activity.md)** #### Ver también [START MONITORING ACTIVITY](start-monitoring-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1713 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md index 6f04ef6691381e..de1ba3a6c8ad2d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Month of devuelve el mes de *fecha*. - -**Nota:** Month of devuelve el número del mes, no el nombre. (ver ejemplo 1). +El comando Month of devuelve el mes de *fecha*.Month of devuelve el número del mes, no el nombre. (ver ejemplo 1). Para comparar el valor devuelto por esta función, 4D ofrece las siguientes constantes predefinidas, que se encuentran en el tema "Days and Months": @@ -53,4 +51,13 @@ Ver el ejemplo del comando [Current date](current-date.md "Current date"). #### Ver también [Day of](day-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 24 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md index ba133c1a060f76..f37b4d382fb83d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md @@ -39,4 +39,13 @@ Ver el ejemplo del comando [Pop up menu](pop-up-menu.md "Pop up menu"). [ON EVENT CALL](on-event-call.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 468 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md index da48369e7d2acc..627e851dd94d01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md @@ -50,4 +50,14 @@ El siguiente ejemplo mueve el documento DocName: #### Ver también -[COPY DOCUMENT](copy-document.md) \ No newline at end of file +[COPY DOCUMENT](copy-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 540 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md index 9481697194dc8f..42a6b4131247b9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md @@ -109,4 +109,13 @@ Si quiere que el array de nombres se utilice como tercer criterio de ordenación [ORDER BY](order-by.md) [SELECTION TO ARRAY](selection-to-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 718 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md index d7a4c9d03b908c..e3e08754851bba 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md @@ -54,4 +54,13 @@ Desea guardar una llave de cifrado en un archivo .4DKeyChain: [Discover data key](discover-data-key.md) [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[Register data key](register-data-key.md) \ No newline at end of file +[Register data key](register-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1611 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md index 8fba0bd93554bd..5ef358e18448f1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción New list crea una nueva lista jerárquica vacía en memoria y devuelve su número de referencia único. @@ -46,4 +43,13 @@ Ver el ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST"). [DELETE FROM LIST](delete-from-list.md) [INSERT IN LIST](insert-in-list.md) [LIST TO BLOB](list-to-blob.md) -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 375 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md index 3a43b2e74f60d0..bd508f41851fe4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md @@ -30,3 +30,14 @@ El archivo se renombra con los números de backup´actuales de la base y el arch En caso de que se presente un error, el comando genera un código que puede interceptarse utilizando el comando [ON ERR CALL](on-err-call.md "ON ERR CALL"). + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 926 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md index ef4b82b3893a6e..ca063fd5abbba3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md @@ -105,4 +105,13 @@ Con este comando, puede fácilmente manejar objetos en bucles: #### Ver también -[New shared object](new-shared-object.md) \ No newline at end of file +[New shared object](new-shared-object.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1471 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md index 5a1723cee4fd2f..82c15c30da8f41 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md @@ -107,4 +107,13 @@ En el editor de barras de menús, puede reemplazar ADD CUSTOMERS por el método [Execute on server](execute-on-server.md) *Procesos* -*Procesos 4D apropiativos* \ No newline at end of file +*Procesos 4D apropiativos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 317 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md index 973e0a58c03bcf..189a924f3e7314 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md @@ -66,4 +66,13 @@ Usted desea crear y modificar un objeto compartido. La estructura debe llamarse [New object](new-object.md) [New shared collection](new-shared-collection.md) -*Objetos y colecciones compartidos* \ No newline at end of file +*Objetos y colecciones compartidos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1526 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md index 53cc4b212847b3..b3c628893b7310 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md @@ -29,4 +29,14 @@ Ver el ejemplo del comando [DISPLAY RECORD](display-record.md "DISPLAY RECORD"). [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 51 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md index 71557e73c12178..4c94d541698582 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción @@ -25,4 +22,13 @@ El comando Next window devuelve el número de referencia de la ventana ubicada #### Ver también -[Frontmost window](frontmost-window.md) \ No newline at end of file +[Frontmost window](frontmost-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 448 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md index 6e6de0074af546..03e3fd599e4a9b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md @@ -42,4 +42,13 @@ En una base que contiene un formulario de proyecto llamado “ElFormulario” y #### Ver también -[DEFAULT TABLE](default-table.md) \ No newline at end of file +[DEFAULT TABLE](default-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 993 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/not.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/not.md index d0abb783adf69f..ff535fc101d56b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/not.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/not.md @@ -31,4 +31,13 @@ Este ejemplo asigna primero Verdadero a una variable, luego cambia el valor de l #### Ver también [False](false.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 34 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md index 3c284114b8cc7c..febdeff7c14fc0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando NOTIFY RESOURCES FOLDER MODIFICATION permite "forzar" el envío por 4D Server de una notificación indicando a todos los puestos 4D conectados que el contenido de la carpeta Resources de la base ha sido modificado, de manera que puedan sincronizar su carpeta Resources local. @@ -35,4 +32,13 @@ El parámetro actual puede estar definido: #### Ver también -[Get 4D folder](get-4d-folder.md) \ No newline at end of file +[Get 4D folder](get-4d-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1052 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/null.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/null.md index 8c2a5a11bca7cf..8aa10ea618dbf8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/null.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/null.md @@ -131,4 +131,13 @@ Aquí están los diferentes resultados del comando [Undefined](undefined.md) as [Is field value Null](is-field-value-null.md) [OB SET NULL](ob-set-null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1517 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/num.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/num.md index 9a07844443407b..1bf66d2c7a2a32 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/num.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/num.md @@ -86,4 +86,13 @@ Este ejemplo compara los resultados obtenidos dependiendo del separador “actua [Bool](bool.md) [GET SYSTEM FORMAT](get-system-format.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 11 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md index e8285020c911f7..0d5a462059b375 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md @@ -42,4 +42,13 @@ Luego, en un método, puedes escribir: #### Ver también -[OB Instance of](ob-instance-of.md) \ No newline at end of file +[OB Instance of](ob-instance-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1730 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md index 1f9dd63190ca00..56d1bbb83344ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md @@ -20,9 +20,6 @@ displayed_sidebar: docs #### Descripción El comando **OB Copy** devuelve un objeto que contiene una copia completa de las propiedades, sub objetos y valores de *objeto*. - -* Primera sintaxis: **OB Copy(object{; resolvePtrs})** - Si el *objeto* contiene valores de tipo de puntero, por defecto la copia también contiene los punteros. Sin embargo, puede resolver los punteros al momento de la copia pasando **True** en el parámetro *resuelvePunt*. En este caso, cada puntero presente como valor en *objeto* se evalúa al momento de la copia y se utiliza su valor desreferenciado. **Nota:** si las propiedades del *objeto* son objetos compartidos o colecciones compartidas, se convierten en objetos o colecciones estándar (no compartidos) en la copia devuelta. Use the second syntax if you want to return shared elements (see below). @@ -166,4 +163,13 @@ Queremos copiar *$sharedObj e*n *$sharedColl* pero dado que pertenecen a diferen #### Ver también [OB Get](ob-get.md) -*Objetos y colecciones compartidos* \ No newline at end of file +*Objetos y colecciones compartidos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1225 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md index 2ae92c3ea705de..6fb55f829100a8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OB Entries** devuelve una colección de objetos que contienen el contenido del *objeto* como pares de propiedades llave/valor. @@ -56,4 +53,13 @@ El uso de un objeto como un mapa hash (sistema llave/valor) ofrece un acceso rá #### Ver también [OB Keys](ob-keys.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1720 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md index cce85a88bb3e02..7d8a681a45a2e9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB GET ARRAY** recupera en *array*, el array de valores almacenados en la *propiedad* del objeto de lenguaje designado por el parámetro *objeto*. - -*objeto* debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB GET ARRAY** recupera en *array*, el array de valores almacenados en la *propiedad* del objeto de lenguaje designado por el parámetro *objeto*.debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. En el parámetro *propiedad*, pase la etiqueta de la propiedad a leer. Tenga en cuenta que el parámetro *propiedad* tiene en cuenta las mayúsculas y minúsculas. @@ -52,4 +50,13 @@ Queremos cambiar un valor en el primer elemento del array: #### Ver también *Conversiones de tipo entre las colecciones y los arrays 4D* -[OB SET ARRAY](ob-set-array.md) \ No newline at end of file +[OB SET ARRAY](ob-set-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1229 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md index c94ac0bd43073d..902ad81ae543a9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB GET PROPERTY NAMES** devuelve, en *arrProp*, los nombres de las propiedades contenidas en el objeto de lenguaje designados por el parámetro *objeto* . - -*objeto* debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB GET PROPERTY NAMES** devuelve, en *arrProp*, los nombres de las propiedades contenidas en el objeto de lenguaje designados por el parámetro *objeto* .debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. Pase un array texto en el parámetro *arrProp*. Si el array no existe, el comando lo crea y lo redimensiona de forma automática. @@ -97,4 +95,13 @@ Utilizando un elemento de array de objetos: #### Ver también [OB Get type](ob-get-type.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1232 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md index 1158a086cb8d44..3994e11ed1fb2b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB Get type** devuelve el tipo del valor asociado a la *propiedad* del *objeto*. - -*objeto* debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB Get type** devuelve el tipo del valor asociado a la *propiedad* del *objeto*.debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. En el parámetro *propiedad*, pase la etiqueta de la propiedad cuyo tipo quiere conocer. Tenga en cuenta que el parámetro *propiedad* tiene en cuenta las mayúsculas y minúsculas. @@ -53,4 +51,13 @@ Queremos obtener el tipo de valores estándar: #### Ver también [OB GET PROPERTY NAMES](ob-get-property-names.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1230 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md index 256be7b852780a..138321c26d1dbd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB Get** devuelve el valor actual de la *propiedad* del *objeto*, convertido opcionalmente en el *tipo* definido. - -*objeto* debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB Get** devuelve el valor actual de la *propiedad* del *objeto*, convertido opcionalmente en el *tipo* definido.debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. **Nota:** este comando soporta definiciones de atributo en *objetos* 4D Write Pro, como el comando *WP GET ATTRIBUTES* (ver el ejemplo 9). @@ -221,4 +219,13 @@ Desea conocer el tamaño de una imagen almacenada en un atributo objeto: [OB Copy](ob-copy.md) [OB SET](ob-set.md) -*Tipos de campos y variables* \ No newline at end of file +*Tipos de campos y variables* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1224 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md index a56f24b199479d..e6f95b89cfda0d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md @@ -52,4 +52,13 @@ Luego, en un método, puede escribir: #### Ver también -[OB Class](ob-class.md) \ No newline at end of file +[OB Class](ob-class.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1731 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md index 693568b97d2ab5..45fa02672dcf5c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB Is defined** devuelve **True** si *objeto* o *propiedad* se definen y **False** en caso contrario. - -*objeto* debe haber sido creado con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB Is defined** devuelve **True** si *objeto* o *propiedad* se definen y **False** en caso contrario.debe haber sido creado con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. Por defecto, si se omite el parámetro *propiedad*, el comando comprueba que *objeto* esté definido. Un objeto está definido si su contenido se ha sido inicializado. @@ -61,4 +59,13 @@ Esta prueba es equivalente a: #### Ver también -[OB Is empty](ob-is-empty.md) \ No newline at end of file +[OB Is empty](ob-is-empty.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1231 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md index 49669d5667373a..cec083b03facba 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB Is empty** devuelve **True** si *objeto* no está definido o está vacío, y **False** si *objeto* está definido (inicializado) y contiene al menos una propiedad. - -*objeto* debe haber sido creado con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB Is empty** devuelve **True** si *objeto* no está definido o está vacío, y **False** si *objeto* está definido (inicializado) y contiene al menos una propiedad.debe haber sido creado con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. #### Ejemplo @@ -42,4 +40,13 @@ Estos son los diferentes resultados de este comando como también del comando [O #### Ver también -[OB Is defined](ob-is-defined.md) \ No newline at end of file +[OB Is defined](ob-is-defined.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1297 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md index 28dafb70c77891..9e039a8d0aa528 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md @@ -19,3 +19,13 @@ displayed_sidebar: docs El comando **OB Is shared** devuelve **True** si el objeto o colección *aVerificar* es compartido, y **False** en caso contrario (ver *Objetos y colecciones compartidos*). Este comando devuelve **True** si se pasa una selección de entidades compartible en *aVerificar* (ver ). + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1759 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md index daa5aff0e72f64..73d63a6d158a5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OB Keys** devuelve una colección de cadenas que contienen todos los nombres de propiedades enumerables del *objeto*. @@ -46,4 +43,13 @@ Quiere una colección con todos los nombres de propiedad de primer nivel de un o #### Ver también [OB Entries](ob-entries.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1719 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md index 25c9e5ead64b48..fbad034f2fafe1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md @@ -36,4 +36,13 @@ Usted quiere eliminar la propiedad "edad" de un objeto: #### Ver también -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1226 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md index 75f1ace29a43cc..8c82aecddda66a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB SET ARRAY** define el *array* a asociarse a la *propiedad* en el objeto definido por el parámetro *objeto*. - -*objeto* debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB SET ARRAY** define el *array* a asociarse a la *propiedad* en el objeto definido por el parámetro *objeto*.debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. En el parámetro *propiedad*, pase la etiqueta de la propiedad a crear o modificar. Si la propiedad ya existe en *objeto*, su valor se actualiza. Si no existe, se crea. Tenga en cuenta que el parámetro *propiedad* tiene en cuenta las mayúsculas y minúsculas. @@ -131,4 +129,13 @@ Utilizando un array imagen: *Conversiones de tipo entre las colecciones y los arrays 4D* [OB GET ARRAY](ob-get-array.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1227 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md index cebedc5f62c4df..d134d707ddfbd8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB SET NULL** almacena el valor **null** en el objeto de lenguaje designado por el parámetro *objeto* . - -*objeto* debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB SET NULL** almacena el valor **null** en el objeto de lenguaje designado por el parámetro *objeto* .debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. En el parámetro *propiedad*, pase la etiqueta de la propiedad en la que desea almacenar el valor **null**. Si la propiedad ya existe en *objeto*, su valor se actualiza. Si no existe, se crea. Tenga en cuenta que el parámetro *propiedad* tiene en cuenta las mayúsculas y minúsculas. @@ -40,4 +38,13 @@ Queremos poner el valor nulo en la propiedad "edad" para Lea: [Null](null.md) [OB GET PROPERTY NAMES](ob-get-property-names.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1233 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md index 345df6dfea8171..d8231c42301bd0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB SET** crea o modifica uno o más pares de *propiedad*/*valor* en el objeto de lenguaje designado por el parámetro *objeto*. - -*objeto* debe haber sido definido usando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB SET** crea o modifica uno o más pares de *propiedad*/*valor* en el objeto de lenguaje designado por el parámetro *objeto*.debe haber sido definido usando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. En el parámetro *propiedad*, pase la etiqueta de la propiedad a crear o modificar. Si la propiedad ya existe en *objeto*, su valor se actualiza. Si no existe, se crea. @@ -197,4 +195,13 @@ Usted desea almacenar una imagen en un campo objeto. Puede escribir: [OB Get](ob-get.md) [OB REMOVE](ob-remove.md) [OB SET ARRAY](ob-set-array.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1220 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md index 70abf027c8e74b..3d1d0c348b57bc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OB Values** devuelve una colección de variantes que contiene todos los valores de propiedad enumerables del *objeto*. @@ -46,4 +43,13 @@ Desea una colección con todos los valores de propiedad de un objeto: #### Ver también [OB Entries](ob-entries.md) -[OB Keys](ob-keys.md) \ No newline at end of file +[OB Keys](ob-keys.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1718 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md index e3025ac3f117b9..723f3e5c831bff 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT DUPLICATE permite crear una copia del objeto designado por el parámetro *objeto* en el contexto del formulario que está siendo ejecutado (modo Aplicación). El formulario de origen, generado en modo Diseño, no se modifica. @@ -102,4 +99,14 @@ Creación de un nuevo botón radio "bRadio6" basado en el botón radio existente [OBJECT Get pointer](object-get-pointer.md) [OBJECT MOVE](object-move.md) -*Objetos de formulario (Acceso)* \ No newline at end of file +*Objetos de formulario (Acceso)* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1111 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md index 24fdeca604d2b2..98c0f3b40cdb57 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get action** devuelve el nombre y (si es el caso) el parámetro de la acción estándar asociada con el objeto designado por los parámetros *objeto* y *\**. @@ -45,4 +42,13 @@ Usted desea asociar la acción "Cancelar" con todos los objetos en el formulario #### Ver también -[OBJECT SET ACTION](object-set-action.md) \ No newline at end of file +[OBJECT SET ACTION](object-set-action.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1457 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md index 79cc52d80ce571..8c3865520f439c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get auto spellcheck** devuelve el estado de la opción Corrección ortográfica automática del o de los objeto(s) designado(s) por los parámetros *objeto* y *\** para el proceso actual . @@ -28,4 +25,13 @@ El comando devuelve **True** cuando la corrección ortográfica automática est #### Ver también -[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) \ No newline at end of file +[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1174 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md index bd15d6c4c50b4b..680fb5705f0385 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET BEST SIZE** devuelve en los parámetros *largOpt* y *altOpt*, el largo y alto “óptimo” del objeto de formulario designado por los parámetros *\** y *objeto*. Estos valores se expresan en píxeles. Este comando es particularmente útil para la visualización o impresión de informes complejos, asociados al comando [OBJECT MOVE](object-move.md). @@ -53,4 +50,13 @@ Consulte el ejemplo en el comando [SET PRINT MARKER](set-print-marker.md "SET PR #### Ver también [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 717 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md index cf4c188fd45f1d..cd382851b790dd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get border style** devuelve el estilo de línea de borde del objeto o de los objetos designado(s) por los parámetros *objeto* y *\**. @@ -40,4 +37,13 @@ El comando devuelve un valor que corresponde al estilo de la línea fronteriza. #### Ver también -[OBJECT SET BORDER STYLE](object-set-border-style.md) \ No newline at end of file +[OBJECT SET BORDER STYLE](object-set-border-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1263 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md index 8562cef63aba69..9d371720e6f573 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get context menu** devuelve el estado actual de la opción "Menú contextual" del objeto o de los objetos designado(s) por los parámetros *objeto* y *\** . @@ -30,4 +27,13 @@ El comando devuelve **True** si el menú contextual está activo para el objeto #### Ver también -[OBJECT SET CONTEXT MENU](object-set-context-menu.md) \ No newline at end of file +[OBJECT SET CONTEXT MENU](object-set-context-menu.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1252 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md index 34bace7ae0d186..ed332599079928 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET COORDINATES**devuelve las coordenadas *izquierda*, *superior*, *derecha* e *inferior* (en puntos) en las variables o campos de los objetos del formulario actual definido por los parámetros *\** y *objeto*. @@ -86,4 +83,13 @@ El método devuelve las coordenadas teóricas. Si el listbox es redimensionado, [CONVERT COORDINATES](convert-coordinates.md) [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) [OBJECT MOVE](object-move.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 663 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md index a8f5954422d229..421847b5a159ad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get corner radius** devuelve el valor actual del radio de la esquina para el objeto designado por el parámetro *objeto*. Este valor puede haber sido definido a nivel del formulario utilizando la *propiedad radio de esquina* o para el proceso actual con el comando [OBJECT SET CORNER RADIUS](object-set-corner-radius.md). @@ -48,4 +45,13 @@ El siguiente código puede añadirse a un método de un botón: #### Ver también -[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) \ No newline at end of file +[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1324 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md index a15186631d318e..f9f0a4fb58c6f2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get data source** devuelve la fuente de datos actual de los objetos designados por los parámetros *objeto* y *\** . @@ -43,4 +40,13 @@ Ejecuta el siguiente código: #### Ver también -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1265 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md index 45f1ebcffd3f89..452771b6b953fd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET DRAG AND DROP OPTIONS** devuelve las opciones de arrastrar y soltar para el objeto o los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -38,4 +35,13 @@ Cada parámetro devuelve True o False dependiendo de si la opción correspondien #### Ver también -[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) \ No newline at end of file +[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1184 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md index 16df59caebe550..d556137b2462fe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get enabled devuelve True si el objeto o grupo de objetos designado por objeto está activo en el formulario y False si no está activo. @@ -36,4 +33,13 @@ Este comando se puede aplicar a los siguientes tipos de objetos: #### Ver también -[OBJECT SET ENABLED](object-set-enabled.md) \ No newline at end of file +[OBJECT SET ENABLED](object-set-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1079 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md index ad6cb32d7b7a22..42185ffbc89e8c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get enterable devuelve True si el objeto o grupo de objetos designado por *objeto* tiene el atributo **editable**; de lo contrario, devuelve False. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr #### Ver también -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1067 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md index 731eaa1e163869..9806b0f8660dc8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET EVENTS** permite obtener la configuración actual de los eventos formulario del formulario, del objeto o de los objetos designado(s) por los parámetros *objeto* y *\**. @@ -48,4 +45,13 @@ Usted quiere activar dos eventos y obtener la lista de eventos para un objeto: #### Ver también -[OBJECT SET EVENTS](object-set-events.md) \ No newline at end of file +[OBJECT SET EVENTS](object-set-events.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1238 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md index 1fa66f1efea483..7ab7dec50a18cd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get filter devuelve el nombre de todo filtro asociado con el objeto o grupo de objetos designado por *objeto*. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr #### Ver también -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1073 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md index d508ac2ed42cba..3e5059c46b0a8e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get focus rectangle invisible** devuelve el estado de la opción de invisibilidad del rectángulo de foco del objeto o de los objetos designados por los parámetros *objeto* y *\** para el proceso actual. Esta configuración corresponde a la opción **Ocultar rectángulo de foco** disponible para los objetos editables en la Lista de propiedades en modo Diseño. Este comando devuelve el estado actual de la opción, como se definió en modo Diseño o utilizando el comando [OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md). @@ -30,4 +27,13 @@ El comando devuelve **True** si el rectángulo de foco está oculto y **False** #### Ver también -[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1178 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md index 1336e8cd262e06..89441bae1a53cb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get font size devuelve el tamaño (en puntos) de la fuente utilizada por el objeto de formulario designado por *objeto*. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr #### Ver también -[OBJECT SET FONT SIZE](object-set-font-size.md) \ No newline at end of file +[OBJECT SET FONT SIZE](object-set-font-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1070 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md index 03e956c80b6349..b222becb15b12f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get font style devuelve el estilo actual de la fuente utilizada por el objeto de formulario designado por *objeto*. @@ -35,4 +32,13 @@ Puede comparar el valor devuelto por el comando con el valor de uno o más de la #### Ver también -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1071 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md index 176f4987fe4a69..5deeb01ec1ca55 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get font devuelve el nombre de la fuente utilizada por el objeto de formulario designado por *objeto*. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr #### Ver también -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1069 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md index 6bcb61a0970f23..32fc31244d3c69 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get format devuelve el formato de salida actual aplicado al objeto especificado en el parámetro *objeto*. @@ -65,4 +62,13 @@ Customized formats are returned untouched: #### Ver también -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 894 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md index 098da1c35e6dd1..2467d08bb77bb0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get help tip** devuelve el mensaje de ayuda asociado al objeto o a los objetos designados por los parámetros *objeto* y *\** en el proceso actual. @@ -38,4 +35,13 @@ El título de un botón imagen se guarda en forma de mensaje de ayuda. Este tít #### Ver también -[OBJECT SET HELP TIP](object-set-help-tip.md) \ No newline at end of file +[OBJECT SET HELP TIP](object-set-help-tip.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1182 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md index 477bf2acee47dd..e21d1440221d20 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get horizontal alignment** devuelve un código indicando el tipo de alineación horizontal aplicada al objeto designado por los parámetros *objeto* y *\**. @@ -60,4 +57,13 @@ Los objetos de formulario a los cuales se puede aplicar alineación son los sigu [OBJECT Get vertical alignment](object-get-vertical-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 707 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md index 2a5d5ca4020a48..4a89825fba9968 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get indicator type** devuelve el tipo del indicador actual asignado al termómetro(s) designado por los parámetros *objeto* y *\**. @@ -36,4 +33,13 @@ Puede comparar el valor devuelto por el comando con las siguientes constantes, q #### Ver también -[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) \ No newline at end of file +[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1247 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md index f5417ddc50be03..a28e85105ae838 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get keyboard layout** devuelve la configuración del teclado actual asociada a los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -28,4 +25,13 @@ El comando devuelve una cadena indicando el código del lenguaje utilizado, basa #### Ver también -[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) \ No newline at end of file +[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1180 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md index 5e729bb95fbeb3..d3a90c70355be5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get list name devuelve el nombre de la lista asociada al objeto o a un grupo de objetos designados por *objeto*. 4D le permite asociar una lista de opciones (creada con el editor de la listas en modo Diseño) a los objetos de formulario utilizando el editor de formularios o el comando [OBJECT SET LIST BY NAME](object-set-list-by-name.md). @@ -39,4 +36,13 @@ Si ninguna lista del tipo definido está asociada al *objeto*, el comando devuel #### Ver también [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1072 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md index f2657aec009a45..dc7507b00ea463 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get list reference** devuelve el número de referencia (*RefList*) de la lista jerárquica asociada al objeto o grupo de objetos designados por los parámetros *objeto* y *\** . @@ -39,4 +36,13 @@ Si no hay una lista jerárquica asociada al objeto para el *tipoLista* definido, #### Ver también [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1267 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md index cebe8650d05968..2f346fb9302b63 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET MAXIMUM VALUE** devuelve, en la variable valorMax, el valor máximo actual del objeto o de los objetos designados por los parámetros *objeto* y *\** . @@ -32,4 +29,13 @@ Si pasa el parámetro opcional *\** indica que el parámetro *objeto* es un nomb #### Ver también [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1245 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md index 363d4088b976d7..ed9d9ca4e536f6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET MINIMUM VALUE** devuelve, en la variable *valorMin*, el valor mínimo actual del objeto o de los objetos designado(s) por los parámetros *objeto* y *\**. @@ -29,4 +26,13 @@ Si pasa el parámetro opcional *\** indica que el parámetro *objeto* es un nomb #### Ver también [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1243 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md index 97f655f29b22c2..8e1a70ad6512fb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get multiline** devuelve el estado actual de la opción "Multilínea" del objeto o de los objetos designado(s) por los parámetros *objeto* y *\** . @@ -39,4 +36,13 @@ El valor devuelto corresponde a una de las siguientes constantes del tema "*Prop #### Ver también -[OBJECT SET MULTILINE](object-set-multiline.md) \ No newline at end of file +[OBJECT SET MULTILINE](object-set-multiline.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1254 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md index 1de0fa780289f7..938cda34d501bb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get name devuelve el nombre de un objeto de formulario. @@ -40,4 +37,13 @@ Después de la ejecución de este método objeto, la variable *$btnName* contien [OBJECT Get pointer](object-get-pointer.md) *Objetos (Formularios)* -*Objetos de formulario (Acceso)* \ No newline at end of file +*Objetos de formulario (Acceso)* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1087 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md index 171f534d14dfa6..69026c9331d3fa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get placeholder** devuelve el texto de ejemplo asociado al objeto o a los objetos designado(s) por los parámetros *objeto* y *\**. Si no hay ningún texto del marcador asociado con el objeto, el comando devuelve una cadena vacía. @@ -38,4 +35,13 @@ Si quiere recibir el texto del marcador de campo: #### Ver también -[OBJECT SET PLACEHOLDER](object-set-placeholder.md) \ No newline at end of file +[OBJECT SET PLACEHOLDER](object-set-placeholder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1296 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md index 2f3b4b0df7c43d..49b5651af5ed81 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get pointer** devuelve un puntero a la variable de un objeto de formulario. @@ -58,4 +55,13 @@ Dado un formulario "SF" utilizado dos veces como subformulario en el mismo formu [OBJECT Get subform container value](object-get-subform-container-value.md) *Objetos (Formularios)* *Objetos de formulario (Acceso)* -[Self](self.md) \ No newline at end of file +[Self](self.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1124 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md index 256b03a36ea997..af9a720c62f2c5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET PRINT VARIABLE FRAME** obtiene la configuración actual de las opciones de impresión en tamaño variable del objeto o de los objetos designado(s) por los parámetros *objeto* y *\** . @@ -37,4 +34,13 @@ Si el *objeto* es un subformulario y si la impresión en tamaño variable está #### Ver también -[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) \ No newline at end of file +[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1241 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md index 046012c6b9a83a..8465268d6ae271 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET RESIZING OPTIONS** devuelve las opciones de redimensionamiento actuales del o de los objetos designados por los parámetros *objeto* y *\**. @@ -45,4 +42,13 @@ El parámetro *vertical* devuelve un valor indicando la opción de redimensionam #### Ver también -[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) \ No newline at end of file +[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1176 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md index e46609b1b33cde..9c595be720d517 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT GET RGB COLORS devuelve los colores de fondo y primer plano del objeto o grupo de objetos designados por *objeto*. @@ -37,4 +34,13 @@ Para obtener más información acerca del formato de los parámetros *colorPrime #### Ver también -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1074 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md index efd050b821b264..5f06cd6c50c0c3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción OBJECT GET SCROLL POSITION devuelve, en los parámetros *posicionLinea* y *posicionH*, información relacionada con la posición de las barras de desplazamiento del objeto de formulario designado por los parámetros *\** y *objeto*. @@ -33,4 +30,13 @@ Si *objeto* designa una imagen (variable o campo), *posicionLinea* devuelve el d #### Ver también -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1114 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md index 099855e1696d5b..784ce24ae25e4b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT GET SCROLLBAR se utiliza para mostrar u ocultar las barras de desplazamiento horizontal y/o vertical en el objeto designado por los parámetros *objeto* y *\**. @@ -46,4 +43,13 @@ Para obtener más información, consulte la descripción del comando [OBJECT SET #### Ver también -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1076 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md index ac36cb11a091c6..1ad467dbf4df07 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET SHORTCUT** devuelve el atajo de teclado asociado al objeto o a los objetos designados por los parámetros *objeto* y *\** en el proceso actual. @@ -43,4 +40,13 @@ Si ninguna tecla de modificación se ha definido para el atajo, modificadores de #### Ver también -[OBJECT SET SHORTCUT](object-set-shortcut.md) \ No newline at end of file +[OBJECT SET SHORTCUT](object-set-shortcut.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1186 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md index 85f57ab43d4f2f..f0f2ee0d0711ef 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get style sheet** devuelve el nombre de la hoja de estilos asociada al objeto o a los objetos designado(s) por los parámetros *objeto* y *\** . @@ -48,4 +45,13 @@ En la **arquitectura proyecto**, este comando sólo soporta las tres hojas de es #### Ver también *Estilos de fuente* -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1258 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md index ce0f25804a0ffe..97548794ddc9f4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET SUBFORM CONTAINER SIZE** devuelve el *ancho* y el *alto* (en píxeles) de un objeto subformulario "actual", mostrado en el formulario padre. @@ -32,5 +29,14 @@ El evento On Resize se genera en el método formulario del subformulario si el o #### Ver también -[OBJECT GET SUBFORM](../commands/object-get-subform.md) -[OBJECT SET SUBFORM](../commands/object-set-subform.md) \ No newline at end of file +[OBJECT GET SUBFORM](object-get-subform.md) +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1148 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md index 6fd07b7c1f38ac..10e85cdc9fa1bc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción The **OBJECT Get subform container value** command returns the current value of the data source bound with the subform container displayed in the parent form. @@ -57,4 +54,13 @@ As a result, at runtime, updating the value of the main form's Input object also [Form](../commands/form.md) [OBJECT Get pointer](object-get-pointer.md) -[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) \ No newline at end of file +[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1785 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md index 318a0196d8072d..e28b3e215bf73f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET SUBFORM** obtiene los nombres del o de los formulario(s) asociado(s) al objeto subformulario designado por los parámetros *objeto* y *\**. @@ -41,4 +38,13 @@ Si no hay formulario listado, se devuelve una cadena vacía en el parámetro *su #### Ver también [OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) -[OBJECT SET SUBFORM](../commands/object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1139 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md index 212efe356132f7..2e49d13e3e79d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get text orientation** devuelve el valor de orientación actual aplicado al texto del objeto o de los objetos designado(s) por los parámetros *objeto* y *\**. @@ -57,4 +54,13 @@ Cuando se ejecuta el formulario, si se llama a la siguiente declaración: #### Ver también -[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) \ No newline at end of file +[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1283 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md index 02cca99c8690cd..d0d6c7874dcc30 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get three states checkbox** devuelve el estado actual de la propiedad "Tres estados" de la(s) casilla(s) de selección designada(s) por los parámetros *objeto* y *\** . @@ -26,4 +23,13 @@ La propiedad "Tres estados" se puede definir ya sea usando la lista de propiedad #### Ver también -[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) \ No newline at end of file +[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1250 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md index fef43a314e68d7..e05f4df10b8275 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get title devuelve el título (etiqueta) del objeto de formulario designado por *objeto* . @@ -34,4 +31,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom #### Ver también -[OBJECT SET TITLE](object-set-title.md) \ No newline at end of file +[OBJECT SET TITLE](object-set-title.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1068 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md index 93bf256faa6bbf..ef2fb63bcca566 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get type** devuelve el tipo del objeto designado por los parámetros *objeto* y *\** en el formulario actual . @@ -97,4 +94,13 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los #### Ver también [FORM LOAD](../commands/form-load.md) -[LISTBOX GET OBJECTS](listbox-get-objects.md) \ No newline at end of file +[LISTBOX GET OBJECTS](listbox-get-objects.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1300 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md index 2aba8bfb3b5288..c42cd8d6018c29 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get value** devuelve el valor actual de la fuente de datos para los objetos de formulario designados por el parámetro *nomObjeto*. @@ -40,4 +37,13 @@ Ver el ejemplo para el comando [OBJECT SET VALUE](object-set-value.md). #### Ver también -[OBJECT SET VALUE](object-set-value.md) \ No newline at end of file +[OBJECT SET VALUE](object-set-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1743 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md index d1a2a1a086e15f..b1fd6ebd118b8f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get vertical alignment** devuelve un valor indicando el tipo de alineación vertical aplicada al objeto designado por los parámetros *objeto* y *\**. @@ -44,4 +41,13 @@ La alineación vertical puede aplicarse a los siguientes tipos de objetos de for [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1188 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md index 4743914ecbe643..93496d42c42cbd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get visible devuelve True si el objeto o grupo de objetos designado por *objeto* tiene el atributo visible y de lo contrario False. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr #### Ver también -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1075 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md index e184c0ecf76d3f..dac8eac3d6d5fa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Is styled text** devuelve **True** sila opción "Multiestilo" está seleccionada para el(los) objeto(s) designado(s) por los parámetros *objeto* y *\** . @@ -44,4 +41,13 @@ Un formulario contiene un campo representado por dos objetos diferentes, uno de #### Ver también -*Texto multiestilo* \ No newline at end of file +*Texto multiestilo* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1261 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md index 7d24327aa7eb09..4223cf7f8788a0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT MOVE permite mover los objetos en el formulario actual, definido por los parámetros *\** y *objeto, moveH* píxeles horizontalmente y *moveV* píxeles verticalmente. @@ -68,4 +65,13 @@ La siguiente instrucción mueve el botón “boton\_1” a las siguientes coorde [OBJECT DUPLICATE](object-duplicate.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 664 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md index b3901475ad0f36..ba9d410ba50b91 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET ACTION** modifica, para el proceso actual, la acción estándar asociada al objeto o a los objetos designado(s) por los parámetros *objeto* y *\** . @@ -42,4 +39,13 @@ Usted desea asociar la acción estándar **Validate** con un botón: #### Ver también -[OBJECT Get action](object-get-action.md) \ No newline at end of file +[OBJECT Get action](object-get-action.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1259 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md index 3e252457bad805..924c06786d96be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET AUTO SPELLCHECK** permite definir o modificar dinámicamente el estado de la opción **Corrección ortográfica** de los objetos designados por los parámetros *objeto* y *\** para el proceso actual. Esta opción activa o desactiva la corrección ortográfica automática durante la entrada para el objeto (objetos de tipo texto únicamente). @@ -28,4 +25,13 @@ Pase **True** en *correccionAuto* para activar esta función para objeto y **Fal #### Ver también -[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) \ No newline at end of file +[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1173 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md index a05ebcff28ffd7..dfecf8484ee98a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET BORDER STYLE** modifica el estilo de línea del borde del objeto(s) designada por los parámetros *objeto* y *\** . @@ -40,4 +37,13 @@ En el parámetro *estiloBorde*, pase el valor del estilo de la línea fronteriza #### Ver también -[OBJECT Get border style](object-get-border-style.md) \ No newline at end of file +[OBJECT Get border style](object-get-border-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1262 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md index c740de0a564455..0e01e1e378f1e5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET CONTEXT MENU** activa o desactiva, para el proceso actual, la asociación de un menú contextual por defecto al objeto o a los objetos designado(s) por los parámetros *objeto* y *\** . @@ -30,4 +27,13 @@ Pase **True** en el parámetro *menuContext* para activar el menú contextual, y #### Ver también -[OBJECT Get context menu](object-get-context-menu.md) \ No newline at end of file +[OBJECT Get context menu](object-get-context-menu.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1251 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md index ea1dbfc7bf5329..ac0efa4ba02a70 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET COORDINATES** modifica la ubicación y, opcionalmente, el tamaño del objeto o de los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -56,4 +53,13 @@ La siguiente declaración ubica el objeto "button\_1" en las coordenadas (10,20) [CONVERT COORDINATES](convert-coordinates.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1248 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md index 3009033ee42437..96c913f780db6a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET CORNER RADIUS** modifica el *radio* de las esquinas de los objetos pasados en el parámetro *objeto*. El nuevo radio sólo se define para el proceso y no se guarda en el formulario. @@ -67,4 +64,13 @@ Tenga en cuenta que para las áreas de texto (así como las entradas), a diferen #### Ver también -[OBJECT Get corner radius](object-get-corner-radius.md) \ No newline at end of file +[OBJECT Get corner radius](object-get-corner-radius.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1323 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md index 4a258b307e22f3..25b2f08dd5fd45 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET DATA SOURCE** modifica la fuente de datos de los objetos designados por los parámetros *objeto* y *\** . @@ -51,4 +48,13 @@ Cambio de la fuente de datos para un área de entrada: #### Ver también [LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) -[OBJECT Get data source](object-get-data-source.md) \ No newline at end of file +[OBJECT Get data source](object-get-data-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1264 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md index ada1060aca2e8e..5684be868a7a05 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET DRAG AND DROP OPTIONS** define o modifica dinámicamente las opciones de arrastrar y soltar para el objeto o los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -44,4 +41,13 @@ Definición de un área de texto en arrastrar y soltar auto: #### Ver también -[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) \ No newline at end of file +[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1183 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md index a01fc2b6685435..d41bb4cae5a91f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET ENABLED utilizado para activar o desactivar el objeto o grupo de objetos especificado por *objeto* en el formulario actual. @@ -40,4 +37,13 @@ Este comando se puede aplicar a los siguientes tipos de objetos: #### Ver también -[OBJECT Get enabled](object-get-enabled.md) \ No newline at end of file +[OBJECT Get enabled](object-get-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1123 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md index a807728402843a..607112100dd43e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET ENTERABLE** \]vuelve editables o no editables los objetos de formulario especificados por *objeto* y puede definir el atributo enfocable. @@ -74,4 +71,13 @@ Este es el método de objeto de una casilla de selección ubicada en el encabeza #### Ver también [OBJECT Get enterable](object-get-enterable.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 238 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md index 294ecfffdafd06..f851bde9b4e72e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET EVENTS** modifica, para el proceso actual, la configuración de los eventos formulario del formulario u objetos designados por los parámetros *objeto* y *\** . @@ -167,4 +164,13 @@ Desactivación de un solo evento del formulario sin modificar los otros: #### Ver también *Eventos formulario* -[OBJECT GET EVENTS](object-get-events.md) \ No newline at end of file +[OBJECT GET EVENTS](object-get-events.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1239 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md index 1779c6bc6625ac..db3d20cca161fe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción OBJECT SET FILTER reemplaza el filtro de entrada para los objetos especificados por *objeto* por *filtroEntrada*. @@ -57,4 +54,13 @@ El siguiente ejemplo permite únicamente la entrada de las letras “a,” “b, #### Ver también [OBJECT Get filter](object-get-filter.md) -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 235 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md index 21c5a2eddba215..9b8e3dc8dc9270 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET FOCUS RECTANGLE INVISIBLE** permite definir o modificar dinámicamente la opción invisibilidad del rectángulo de foco del objeto designado por los parámetros *objeto* y *\** para el proceso actual. Esta configuración corresponde a la opción **Ocultar rectángulo de foco** disponible para los objetos editables en la Lista de propiedades en modo Diseño. @@ -30,4 +27,13 @@ Pase **True** en el parámetro *invisible* para ocultar el rectángulo de foco y #### Ver también -[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1177 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md index ef06a7d9fab86a..ee5ac81ea73279 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **OBJECT SET FONT SIZE** define los objetos formulario especificados por *objeto* para mostrarse utilizando el tamaño de fuente que se pasa en *tamaño*. @@ -51,4 +48,13 @@ El siguiente ejemplo define el tamaño de fuente para todos los objetos de formu *Interacción de comandos genéricos con textos multiestilos* [OBJECT Get font size](object-get-font-size.md) [OBJECT SET FONT](object-set-font.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 165 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md index dd7ce8cc1e8e43..e092af131105ef 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción OBJECT SET FONT STYLE asigna el estilo de fuente de *estilos* a los objetos de formulario especificados por *objeto*. @@ -55,4 +52,13 @@ Este ejemplo define el estilo de fuente Plain para todos los objetos de formular [OBJECT Get font style](object-get-font-style.md) [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 166 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md index 2eb66cd6af61b5..837b53f75b2cf5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción OBJECT SET FONT muestra el *objeto* utilizando la fuente especificada en el parámetro *fuente*. El parámetro *fuente* debe contener un nombre de fuente válido. @@ -62,4 +59,13 @@ El siguiente ejemplo utiliza la opción especial *%password*, diseñada para la *Interacción de comandos genéricos con textos multiestilos* [OBJECT Get font](object-get-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 164 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md index 2777c6031d8c43..9478acfa9e637e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **OBJECT SET FORMAT** reemplaza el formato de salida para los objetos especificados por *objeto* por el formato que pasa en *formatSalida*. El nuevo formato se utiliza únicamente para la visualización actual, no se guarda con el formulario. @@ -360,4 +357,13 @@ Pase un termómetro a modo "Barber shop" [GET SYSTEM FORMAT](get-system-format.md) [OBJECT Get format](object-get-format.md) -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 236 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md index 96511eb55b2ce8..6baa2b5f00cf92 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET HELP TIP** permite definir o modificar dinámicamente el mensaje de ayuda asociado al objeto o los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -137,4 +134,13 @@ El resultado es... #### Ver también [OBJECT Get help tip](object-get-help-tip.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1181 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md index 436eb76593f848..7e49a4e388ddc8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET HORIZONTAL ALIGNMENT** permite determinar el tipo de alineación aplicado al objeto o a los objetos designados por los parámetros *objeto* y *\**. @@ -58,4 +55,13 @@ Los objetos de formulario a los cuales puede aplicar este comando son los siguie [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 706 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md index e11d3e26b91bed..ab2aa84cd9d5b0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET INDICATOR TYPE** modifica el tipo de indicador de progresión del o de los termómetro(s) designado(s) por los parámetros *objeto* y *\** en el proceso actual. @@ -36,4 +33,13 @@ En el parámetro *indicador*, pase el tipo de indicador a mostrar. Puede utiliza #### Ver también -[OBJECT Get indicator type](object-get-indicator-type.md) \ No newline at end of file +[OBJECT Get indicator type](object-get-indicator-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1246 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md index 65b69f02740359..c28eb0299cf921 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET KEYBOARD LAYOUT** permite definir o modificar dinámicamente la configuración de teclado asociada al objeto o los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -28,4 +25,13 @@ En *codigoLeng*, pase una cadena indicando el código del lenguaje a utilizar, b #### Ver también -[OBJECT Get keyboard layout](object-get-keyboard-layout.md) \ No newline at end of file +[OBJECT Get keyboard layout](object-get-keyboard-layout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1179 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md index 8527b7d7da0ba6..826880f0ad161b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET LIST BY NAME define, reemplaza o disocia la lista asociada al objeto o al grupo de objetos designado por *objeto.* La lista cuyo nombre se pasa en el parámetro *lista* debe haber sido creada en el editor de listas en el entorno Diseño*.* @@ -94,4 +91,13 @@ Usted quiere eliminar la lista de asociaciones: #### Ver también [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 237 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md index 5181154d843527..67a5400b77a7af 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET LIST BY REFERENCE** define o remplaza la lista asociada con el objeto u objetos definidos por los parámetros *objeto* y *\**, con la lista jerárquica definida en el parámetro *lista*. @@ -129,4 +126,13 @@ Con el fin de actualizar la lista asociada al pop-up gestionado por array, es ne #### Ver también [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1266 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md index bb63e8d2f3839a..db118d648f79b1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET MAXIMUM VALUE** modifica el valor máximo del objeto o de los objetos designado(s) por los parámetros *objeto* y *\** para el proceso actual. @@ -31,4 +28,13 @@ En *valorMax*, pase el nuevo valor máximo que desea asignar al objeto para el p #### Ver también [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1244 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md index 4d261be9afeec6..3dcae4208453f2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET MINIMUM VALUE** modifica el valor mínimo del objeto o de los objetos designado(s) por los parámetros *objeto* y *\** para el proceso actual. @@ -31,4 +28,13 @@ En *valorMinimo*, pase el nuevo valor mínimo a asignar al objeto para el proces #### Ver también [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1242 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md index d5f308a526ac4a..73d0a6be3c9c42 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET MULTILINE** modifica la propiedad "Multilínea" del objeto(s) designada por los parámetros *objeto* y *\** . @@ -44,4 +41,13 @@ Usted quiere prohibir varias líneas en un área de entrada: #### Ver también -[OBJECT Get multiline](object-get-multiline.md) \ No newline at end of file +[OBJECT Get multiline](object-get-multiline.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1253 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md index 4a0015d24199d9..fb7a4ed95a8952 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET PLACEHOLDER** asocia un texto de ejemplo al objeto o a los objetos designados por los parámetros *objeto* y *\** . @@ -46,4 +43,13 @@ Usted quiere mostrar el texto "Buscar" un combo box: #### Ver también -[OBJECT Get placeholder](object-get-placeholder.md) \ No newline at end of file +[OBJECT Get placeholder](object-get-placeholder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1295 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md index 6a196bb217c3c4..4b4fbdd3f03447 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET PRINT VARIABLE FRAME** modifica la propiedad de marco de impresión variable del objeto o de los objetos designados por los parámetros *objeto* y *\**. @@ -43,4 +40,13 @@ El parámetro opcional *subformFijo* le permite configurar una opción adicional #### Ver también -[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) \ No newline at end of file +[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1240 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md index 3e03b5193f265e..4c33f2e8a62a30 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET RESIZING OPTIONS** permite definir o modificar dinámicamente las opciones de redimensionamiento del objeto o de los objetos designados por los parámetros *objeto* y *\** para el proceso actual. Estas opciones definen la visualización del objeto en caso de redimensionamiento de la ventana del formulario. @@ -44,4 +41,13 @@ En el parámetro *vertical*, pase un valor que indique la opción de redimension #### Ver también -[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) \ No newline at end of file +[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1175 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md index cdd0c8375eb3dd..528d1a6ae354aa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET RGB COLORS** cambia los colores de fondo y primer plano de los objetos especificados por *objeto* y el parámetro opcional *\**. Cuando el comando se aplica a un objeto list box, un parámetro adicional le permite modificar el color alterno de las filas. @@ -105,4 +102,13 @@ Cambia a fondo transparente con un color de fuente claro: #### Ver también [OBJECT GET RGB COLORS](object-get-rgb-colors.md) -[Select RGB Color](select-rgb-color.md) \ No newline at end of file +[Select RGB Color](select-rgb-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 628 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md index d000bcacdb1237..98b6de833f049f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET SCROLL POSITION permite desplazar el contenido de varios tipos de objetos: líneas de un subformulario, de un formulario listado mostrado utilizando los comandos [MODIFY SELECTION](modify-selection.md), [DISPLAY SELECTION](display-selection.md) o de una lista jerárquica, líneas y columnas de un list box o incluso los píxeles de una imagen. @@ -91,4 +88,13 @@ Asegúrese de no omitir el segundo parámetro *\** en este caso, de lo contrario [HIGHLIGHT RECORDS](highlight-records.md) [LISTBOX SELECT ROW](listbox-select-row.md) -[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) \ No newline at end of file +[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 906 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md index 7cd55410635193..9fc8496165fe85 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET SCROLLBAR le permite mostrar u ocultar las barras de desplazamiento horizontal o vertical en el objeto designado por los parámetros *objeto* y *\**. @@ -46,4 +43,13 @@ Pase en los parámetros *horizontal* y *vertical* los valores indicando si las b [LISTBOX Get property](listbox-get-property.md) [LISTBOX SET GRID](listbox-set-grid.md) [OBJECT GET SCROLLBAR](object-get-scrollbar.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 843 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md index 6aef0e352ba1ed..aa215494618bc9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET SHORTCUT** permite definir o modificar dinámicamente el atajo de teclado asociado al objeto o a los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -90,4 +87,13 @@ Usted quiere asociar un atajo de teclado diferente en función del lenguaje actu #### Ver también -[OBJECT GET SHORTCUT](object-get-shortcut.md) \ No newline at end of file +[OBJECT GET SHORTCUT](object-get-shortcut.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1185 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md index 4a5695df2e3a12..f5fdb45c683bb1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET STYLE SHEET** modifica, para el proceso actual, la hoja de estilo asociada al objeto(s) designado(s) por los parámetros *objeto* y *\** . Una hoja de estilo modifica la fuente, el tamaño de fuente y (excepto para las hojas de estilo automáticas) el estilo de fuente. @@ -50,4 +47,13 @@ En la **arquitectura proyecto**, este comando sólo soporta las tres hojas de es *Estilos de fuente* [GET STYLE SHEET INFO](get-style-sheet-info.md) [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT Get style sheet](object-get-style-sheet.md) \ No newline at end of file +[OBJECT Get style sheet](object-get-style-sheet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1257 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md index 1f8b03f5f01aca..efc69f272d1385 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción The **OBJECT SET SUBFORM CONTAINER VALUE** command sets the current value of the data source bound with the subform container displayed in the parent form. @@ -33,4 +30,13 @@ A detailed example is available in the [OBJECT Get subform container value](obje #### Ver también [Form](../commands/form.md) -[OBJECT Get subform container value](object-get-subform-container-value.md) \ No newline at end of file +[OBJECT Get subform container value](object-get-subform-container-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1784 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md index e5eb812c689034..ef80e4e4e2cb01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET SUBFORM** permite modificar dinámicamente el formulario detallado así como también, opcionalmente, el formulario listado asociado al objeto subformulario designado por los parámetros *objeto* y *\**. @@ -44,5 +41,14 @@ Cuando modifica un subformulario página, el comando puede ejecutarse en cualqui #### Ver también -[OBJECT GET SUBFORM](../commands/object-get-subform.md) -[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) \ No newline at end of file +[OBJECT GET SUBFORM](object-get-subform.md) +[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1138 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md index a20be5c721ed95..71efaab4783d6a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET TEXT ORIENTATION** modifica la orientación del contenido del objeto o de los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -51,4 +48,13 @@ Desea aplicar una orientación de 270° a una variable en su formulario: #### Ver también -[OBJECT Get text orientation](object-get-text-orientation.md) \ No newline at end of file +[OBJECT Get text orientation](object-get-text-orientation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1284 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md index 5f294a2b4b1d5d..75dee825c4c2be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET THREE STATES CHECKBOX** modifica para el proceso actual, la propiedad de "Tres Estados" de la(s) casilla(s) de selección designada(s) por los parámetros *objeto* y *\** . @@ -32,4 +29,13 @@ En el parámetro *tresEst*, pase **True** para activar el modo "tres estados", o #### Ver también -[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) \ No newline at end of file +[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1249 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md index e587144be4eb50..5861c15550b0e5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET TITLE cambia el título de los objetos especificados por *objeto* y lo reemplaza por el valor pasado en *titulo* *.* @@ -69,4 +66,13 @@ Usted quiere insertar los títulos en dos líneas: #### Ver también -[OBJECT Get title](object-get-title.md) \ No newline at end of file +[OBJECT Get title](object-get-title.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 194 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md index f6ea343349e340..855541f88391ea 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Ejemplo 1 **OBJECT SET VALUE** define el *valor* de la fuente de datos actual para los objetos de formulario designados por el parámetro *nomObjeto*. @@ -41,4 +38,13 @@ Desea obtener el valor de la fuente de datos para un objeto de formulario, obten #### Ver también -[OBJECT Get value](object-get-value.md) \ No newline at end of file +[OBJECT Get value](object-get-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1742 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md index 37d36134279a02..1949feabd54f50 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET VERTICAL ALIGNMENT** modifica por programación el tipo de alineación vertical aplicada al objeto designado por los parámetros *objeto* y *\**. @@ -43,4 +40,13 @@ La alineación vertical puede aplicarse a los siguientes tipos de objetos de for [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) \ No newline at end of file +[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1187 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md index 74335106a2a540..9809195c47d64a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET VISIBLE muestra u oculta los objetos especificados por *objeto*. @@ -60,4 +57,13 @@ o: #### Ver también [OBJECT Get visible](object-get-visible.md) -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 603 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md index 58757c12571d9a..e0f2d38f0b8432 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md @@ -54,4 +54,13 @@ Queremos duplicar y cambiar el nombre de un archivo en su propia carpeta [File](file.md) [Folder ](folder.md) [Path to object ](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1548 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md index e16831e05ba21e..6a051d40af0bb5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md @@ -15,13 +15,22 @@ displayed_sidebar: docs #### Descripción -OLD RELATED MANY funciona de la misma forma que [RELATE MANY](relate-many.md "RELATE MANY"), excepto que OLD RELATED MANY utiliza el valor anterior del campo Uno para establecer la relación. - -**Nota:** OLD RELATED MANY utiliza el valor anterior del campo Muchos, tal como lo devuelve la función [Old](old.md "Old"). Para mayor información, consulte la descripción del comando [Old](old.md "Old"). +OLD RELATED MANY funciona de la misma forma que [RELATE MANY](relate-many.md "RELATE MANY"), excepto que OLD RELATED MANY utiliza el valor anterior del campo Uno para establecer la relación.OLD RELATED MANY utiliza el valor anterior del campo Muchos, tal como lo devuelve la función [Old](old.md "Old"). Para mayor información, consulte la descripción del comando [Old](old.md "Old"). OLD RELATED MANY cambia la selección de la tabla relacionada y selecciona el primer registro de la selección actual como registro actual. #### Ver también [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 263 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md index 2da4f661ce4502..0217ce61145ed7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción OLD RELATED ONE funciona de la misma forma que [RELATE ONE](relate-one.md "RELATE ONE"), con la diferencia de que OLD RELATED ONE utiliza el valor anterior de *campo* para establecer la relación. @@ -33,4 +30,14 @@ Si el comando se ejecuta correctamente y si los registros relacionados se han ca [Old](old.md) [OLD RELATED MANY](old-related-many.md) [RELATE ONE](relate-one.md) -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 44 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old.md index a7c054517ff437..2c8d179ae2643a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old.md @@ -38,4 +38,13 @@ Para restaurar el valor original de un campo, asígnele el valor devuelto por Ol #### Ver también -[Modified](modified.md) \ No newline at end of file +[Modified](modified.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 35 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md index 6a8831dc3f87fe..ea87ff1c2c3c2d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md @@ -183,4 +183,13 @@ El siguiente método de gestión de errores ignora las interrupciones del usuari [Last errors](last-errors.md) [Last errors](last-errors.md) [Method called on error](method-called-on-error.md) -*Variables sistema* \ No newline at end of file +*Variables sistema* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 155 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md index 2d40ca87c0604f..fbf648a4548ff2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ON EVENT CALL** instala el método, cuyo nombre se pasa en *metodoEvento*, como método de gestión de eventos. @@ -116,4 +113,14 @@ Si imprime un informe utilizando [PRINT SELECTION](print-selection.md "PRINT SEL [FILTER EVENT](filter-event.md) [MOUSE POSITION](mouse-position.md) [Method called on event](method-called-on-event.md) -[Shift down](shift-down.md) \ No newline at end of file +[Shift down](shift-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 190 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md index 8e5b053680b073..d18f043b84d24f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md @@ -28,4 +28,15 @@ Este comando fue útil para “reponer” un registro que había sido apilado y [CREATE SELECTION FROM ARRAY](create-selection-from-array.md) *Selecciones temporales* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 189 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md index 9d9258413dd371..b0fba3b5b6602e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OPEN ADMINISTRATION WINDOW muestra la ventana de administración del servidor en el equipo que lo ejecuta. La ventana de administración de 4D Server permite visualizar los parámetros actuales y efectuar varias operaciones de mantenimiento (ver la Guía de referencia de 4D). A partir de la versión 11 de 4D Server, esta ventana puede mostrarse desde un equipo cliente: @@ -51,4 +48,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también -[OPEN SECURITY CENTER](open-security-center.md) \ No newline at end of file +[OPEN SECURITY CENTER](open-security-center.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1047 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md index f041d10329815c..ae20a2fd430a04 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OPEN COLOR PICKER** muestra la caja de diálogo de selección de color del sistema. @@ -30,4 +27,13 @@ Si el color se ha cambiado, el evento formulario On After Edit se genera para el #### Ver también -[OPEN FONT PICKER](open-font-picker.md) \ No newline at end of file +[OPEN FONT PICKER](open-font-picker.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1304 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md index f655856330ef3d..e47e919ca3a818 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md @@ -53,4 +53,13 @@ En el contexto del despliegue de una aplicación fusionada, usted desea abrir o #### Ver también -[CREATE DATA FILE](create-data-file.md) \ No newline at end of file +[CREATE DATA FILE](create-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 312 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md index ed615d7c1be603..32dadcc21ff291 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md @@ -69,3 +69,13 @@ Desea seleccionar un servidor al inicio desde una aplicación mono usuario. Pued     QUIT 4D  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1321 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md index 8b64e4ca2869bd..61a504c813604c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md @@ -86,4 +86,14 @@ Si pasa el valor 3 en *modo*, la función devuelve ?00:00:00? (sin referencia de #### Ver también [Append document](append-document.md) -[Create document](create-document.md) \ No newline at end of file +[Create document](create-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 264 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md index ffbc7d6570680b..93df2b64b52662 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OPEN FONT PICKER** muestra la caja de diálogo de selección de fuente del sistema. @@ -44,4 +41,13 @@ Este es el código del botón: #### Ver también -[OPEN COLOR PICKER](open-color-picker.md) \ No newline at end of file +[OPEN COLOR PICKER](open-color-picker.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1303 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md index 59034a0ffda228..b71b790f391c73 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Open form window abre una nueva ventana utilizando las propiedades de tamaño y de redimensionamiento del formulario *nomForm*. @@ -138,4 +135,13 @@ que devuelve: [FORM GET PROPERTIES](form-get-properties.md) [Open window](open-window.md) *Tipos de ventanas* -*Tipos de ventanas (Compatibilidad)* \ No newline at end of file +*Tipos de ventanas (Compatibilidad)* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 675 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md index 727c8048e42a6a..1f4792c15c263d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OPEN PRINTING JOB** abre una tarea de impresión y apila todas las órdenes de impresión ejecutadas hasta que se llame el comando [CLOSE PRINTING JOB](close-printing-job.md). Este comando le permite controlar los trabajos de impresión y, más particularmente, asegurar que ninguna tarea de impresión inesperada pueda ser insertada en una secuencia de impresión. @@ -38,4 +35,14 @@ La variable sistema OK toma el valor 1 si el trabajo de impresión se ha abierto #### Ver también -[CLOSE PRINTING JOB](close-printing-job.md) \ No newline at end of file +[CLOSE PRINTING JOB](close-printing-job.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 995 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md index 1a569b1500786e..bed2ccbe7a87ff 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Open resource file** abre el archivo de recursos cuyo nombre o ruta de acceso completa se pasa en *resNomArchivo*. @@ -99,4 +96,14 @@ Si el archivo de recursos no se pudo abrir por un problema del recurso o de E/S, #### Ver también [CLOSE RESOURCE FILE](close-resource-file.md) -*Recursos* \ No newline at end of file +*Recursos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 497 | +| Hilo seguro | ✗ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md index 8b9b429acd4306..afcb10617a56ae 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md @@ -15,3 +15,13 @@ displayed_sidebar: docs #### Descripción El comando OPEN RUNTIME EXPLORER muestra el explorador de ejecución en una ventana flotante. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1781 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md index bcd68579caaea3..5544121d764f3a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OPEN SECURITY CENTERmuestra la ventana del Centro de seguridad y mantenimiento (CSM).Para más información, consulte la página *Centro de seguridad y mantenimiento*. @@ -28,4 +25,13 @@ Dependiendo de los privilegios de acceso del usuario actual, ciertas funciones d #### Ver también -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1018 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md index 1dbe0d8c90cdc4..84b2ef5c2d048b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OPEN SETTINGS WINDOW** abre la caja de diálogo de Preferencias 4D o las Propiedades de la base actual y muestra los parámetros o la página correspondiente a la llave pasada en el parámetro *selector*. @@ -141,3 +138,14 @@ Acceso a la página interfaz de las Propiedades de la base en modo "Propiedades #### Variables y conjuntos del sistema Si la caja de diálogo Preferencias/Propiedades se valida, la variable sistema OK devuelve 1; si se anula, OK devuelve 0. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 903 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md index 3809d7395c8f39..0b125a0b6432ba 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md @@ -80,4 +80,13 @@ Puede abrir un mismo archivo texto con diferentes aplicaciones utilizando el par #### Ver también -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 673 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md index 549d5584b98d5b..6b4c420e0766ce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Open window** abre una nueva ventana cuyas dimensiones son definidas por los cuatro primeros parámetros: @@ -139,4 +136,13 @@ Este ejemplo ilustra el mecanismo de “retraso” de mostrar ventanas bajo Mac [CLOSE WINDOW](close-window.md) *Crear ventana* -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 153 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md index 8d63f82646cfd2..db695a5c945437 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md @@ -111,4 +111,13 @@ Los registros están en el siguiente orden: #### Ver también - \ No newline at end of file + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1407 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md index e5130584291e1b..1ef1742c10ce4b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md @@ -45,4 +45,15 @@ Este ejemplo ordena los registros de la tabla \[Personas\] en orden descendente, #### Ver también -[ORDER BY](order-by.md) \ No newline at end of file +[ORDER BY](order-by.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 300 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md index 4686ec725946ff..6c330c354f50f6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md @@ -199,4 +199,15 @@ Cada botón llama al método de proyecto MULTINIVEL con un puntero al campo de l #### Ver también -[ORDER BY FORMULA](order-by-formula.md) \ No newline at end of file +[ORDER BY FORMULA](order-by-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 49 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md index 1d9bc1faac4399..96056a69377048 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Outside call** devuelve True para el ciclo de ejecución After. @@ -27,4 +24,13 @@ Para que se genere el ciclo de ejecución **Outside call**, asegúrese de que la #### Ver también [Form event code](../commands/form-event-code.md) -[POST OUTSIDE CALL](post-outside-call.md) \ No newline at end of file +[POST OUTSIDE CALL](post-outside-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 328 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md index d5884481169106..e52cc9d8e10216 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción PAGE BREAK dispara la impresión de datos enviados a la impresora y provocar un salto de página. PAGE BREAK se utiliza conjuntamente con *form* (en el contexto del evento de formulario On Printing Detail) para forzar saltos de página e imprimir la última página creada en memoria. No utilice PAGE BREAK con el comando [PRINT SELECTION](print-selection.md "PRINT SELECTION"). Es mejor utilizar [Subtotal](subtotal.md "Subtotal") o [BREAK LEVEL](break-level.md "BREAK LEVEL") con el parámetro opcional para generar saltos de página. @@ -45,4 +42,14 @@ Consulte el ejemplo del comando [SET PRINT MARKER](set-print-marker.md "SET PRIN #### Ver también [CANCEL](cancel.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 6 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md index 1aab51cc26da6e..0827bd75e5242e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción La función **Parse formula** analiza la *formula* 4D, verifica su sintaxis y devuelve su formula normalizada. Esto permite que la fórmula siga siendo válida en el caso de que se cambie el nombre de un lenguaje 4D o elemento de estructura (comando, constante, tabla, campo o Plugin 4D). @@ -107,4 +104,13 @@ Utilizando las tablas del **Ejemplo 1**: [Formula from string](formula-from-string.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -*Utilizar tokens en fórmulas* \ No newline at end of file +*Utilizar tokens en fórmulas* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1576 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md index a8c027696724be..6487cb76ccc492 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Pasteboard data size permite probar si hay datos del tipo *tipoDatos* en el portapapeles. @@ -93,4 +90,14 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) [Get text from pasteboard](get-text-from-pasteboard.md) -*Portapapeles* \ No newline at end of file +*Portapapeles* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 400 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md index 89c535612de001..22d06ef2a664db 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md @@ -173,4 +173,13 @@ Desea saber la cantidad de subcarpetas en una ruta: [File](file.md) [Folder ](folder.md) [Object to path](object-to-path.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1547 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md index 691e312dcde4ae..f47c224a0e6322 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md @@ -45,4 +45,13 @@ Ejemplo de método de importación masivo de datos: #### Ver también [DELETE INDEX](delete-index.md) -[RESUME INDEXES](resume-indexes.md) \ No newline at end of file +[RESUME INDEXES](resume-indexes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1293 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md index a221c936f594c4..057b7515a27f7e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md @@ -30,4 +30,13 @@ Cuando se suspende la ejecución de un proceso, las ventanas que pertenecen a es [ABORT PROCESS BY ID](abort-process-by-id.md) [DELAY PROCESS](delay-process.md) [HIDE PROCESS](hide-process.md) -[RESUME PROCESS](resume-process.md) \ No newline at end of file +[RESUME PROCESS](resume-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 319 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md index 4f722bed0f718a..57763a7e1a1d3f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - :::info Compatibilidad **PHP es obsoleto en 4D**. Se recomienda utilizar la clase [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -279,4 +276,13 @@ Para obtener más información acerca de la función trim, por favor, consulte l *Ejecutar scripts PHP en 4D* [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1058 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md index 7e188151d77a64..9c0a7b3777d071 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - :::info Compatibilidad **PHP es obsoleto en 4D**. Se recomienda utilizar la clase [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Dado que los intercambios entre 4D y el intérprete PHP se efectúan a través d #### Ver también [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1061 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md index dc93ff30a8c3d0..46f462c90f7000 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - :::info Compatibilidad **PHP es obsoleto en 4D**. Se recomienda utilizar la clase [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -36,4 +33,13 @@ Pase en el parámetro *opcion* una constante del tema "*PHP*" para designar la o #### Ver también [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1060 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md index d56a09db196665..f8e5fa62933e3b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - :::info Compatibilidad **PHP es obsoleto en 4D**. Se recomienda utilizar la clase [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Por defecto, **PHP SET OPTION** define la opción para todas las llamadas poster #### Ver también [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1059 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md index e1bc8474027eb4..0f3867ebbd08d7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md @@ -31,4 +31,13 @@ Por defecto, si no pasa el parámetro *\**, el comando devuelve únicamente los #### Ver también *Imágenes* -[Is picture file](is-picture-file.md) \ No newline at end of file +[Is picture file](is-picture-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 992 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md index c96a3a2176c0fa..a0f55aa8b57604 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando PICTURE LIBRARY LIST devuelve los números de referencia y los nombres de las imágenes almacenadas en la librería de imágenes de la base de datos. @@ -94,4 +91,13 @@ El siguiente ejemplo exporta la librería de imágenes a un documento almacenado [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 564 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md index a3d8c5fac63172..4668aaef044ca6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md @@ -28,4 +28,13 @@ Los parámetros *hDesp*, *vDesp*, y *modo* devuelven las posiciones horizontal y #### Ver también -[Picture size](picture-size.md) \ No newline at end of file +[Picture size](picture-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 457 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md index 694a077914511b..a3b94739aa1342 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### Ver también -[PICTURE PROPERTIES](picture-properties.md) \ No newline at end of file +[PICTURE PROPERTIES](picture-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 356 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md index 4708d06856d212..e97f52f5ec0ed8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md @@ -50,4 +50,14 @@ Desea convertir una imagen de un formato propietario a formato GIF y mostrarlo e [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 692 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/play.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/play.md index dd8b8ccf5a2a5c..d8265e96177282 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/play.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/play.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **PLAY** permite reproducir archivos de sonido o multimedia. Pase la ruta de acceso completa del archivo que quiere reproducir en *nombreObjeto*. En OS X, el comando también puede utilizarse para reproducir un sonido sistema. @@ -57,4 +54,13 @@ El siguiente código de ejemplo reproduce un sonido del sistema en OS X: #### Ver también -[BEEP](beep.md) \ No newline at end of file +[BEEP](beep.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 290 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md index 067ac6c0b45a30..ff5fdc622f6941 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md @@ -27,4 +27,13 @@ PLUGIN LIST tiene en cuenta todos los plug-ins, incluyendo aquellos que están i [COMPONENT LIST](component-list.md) [Get plugin access](get-plugin-access.md) [Is license available](is-license-available.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 847 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md index 992b07cca34d55..5a4a8ed9fee1a2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md @@ -32,4 +32,14 @@ El siguiente ejemplo recupera el registro de un cliente en la pila: #### Ver también [PUSH RECORD](push-record.md) -*Uso de la pila de registros* \ No newline at end of file +*Uso de la pila de registros* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 177 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md index 3b488ea88b0815..3d8e2e43d036e8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Pop up menu muestra un menú pop up en la ubicación actual del ratón. @@ -91,4 +88,13 @@ El siguiente es el menú pop-up tal como aparece en Windows (izquierda) y Macint #### Ver también [Dynamic pop up menu](dynamic-pop-up-menu.md) -[MOUSE POSITION](mouse-position.md) \ No newline at end of file +[MOUSE POSITION](mouse-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 542 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/position.md index 81c1da62712435..9270e298af8998 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/position.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/position.md @@ -117,4 +117,13 @@ En el siguiente ejemplo, usted quiere encontrar todas las instancias de una cade #### Ver también [Compare strings](compare-strings.md) -[Substring](substring.md) \ No newline at end of file +[Substring](substring.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 15 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md index fbb36903eee12a..76d6626e7acaeb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando POST CLICK simula un clic del ratón. Tiene el mismo efecto que cuando el usuario hace clic en el botón del ratón. @@ -30,4 +27,13 @@ Si especifica el parámetro proceso *proceso*, el clic se envía al proceso cuyo #### Ver también [POST EVENT](post-event.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 466 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md index 0b51b1befad497..802266ddabf372 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando POST EVENT simula un evento de teclado o de ratón. Tiene el mismo efecto que cuando el usuario actúa a través del teclado o del ratón. @@ -50,4 +47,13 @@ Si pasa el parámetro *proceso*, el evento se envía al proceso cuyo número se #### Ver también [POST CLICK](post-click.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 467 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md index 06de4240eb9bcd..b96113a51412ce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando POST KEY simula una tecla. Tiene el mismo efecto que cuando un usuario digita un carácter en el teclado. @@ -37,4 +34,13 @@ Ver el ejemplo del comando [Process number](process-number.md "Process number"). *Códigos ASCII* *Códigos de teclas de función* [POST CLICK](post-click.md) -[POST EVENT](post-event.md) \ No newline at end of file +[POST EVENT](post-event.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 465 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md index a576cf7a3e889b..54d851c3678a5d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Compatibility Note This command was named **CALL PROCESS** in previous 4D releases. @@ -46,4 +43,14 @@ Ver el ejemplo de [On Exit Database Method](metodo-base-on-exit.md "On Exit Data [Form event code](../commands/form-event-code.md) [GET PROCESS VARIABLE](get-process-variable.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 329 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md index 47b987a9cbb7bf..6d8f020fd788e3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md @@ -25,4 +25,14 @@ Si PREVIOUS RECORD mueve el puntero del registro actual antes de la selección a [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[NEXT RECORD](next-record.md) \ No newline at end of file +[NEXT RECORD](next-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 110 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md index 12958c8941f8ae..95d377cec08d04 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **PRINT LABEL** le permite imprimir etiquetas con los datos de la selección de *tabla*. @@ -108,4 +105,14 @@ El siguiente ejemplo le permite al usuario efectuar una búsqueda en la tabla \[ #### Ver también [PRINT SELECTION](print-selection.md) -[QR REPORT](qr-report.md) \ No newline at end of file +[QR REPORT](qr-report.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 39 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md index 99f9938af71e05..c2c3d01e233d19 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Print object** permite imprimir el o los objetos de formulario designado(s) por los parámetros *objeto* y *\**, en la ubicación definida por los parámetros *posX* y *posY*. @@ -97,4 +94,13 @@ Ejemplo de impresión de un list box completo: #### Ver también -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1095 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md index c8461a4ac5ed5f..e20ebb72d1780a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **PRINT OPTION VALUES** devuelve en *arrayNoms* una lista de nombres disponibles para la *opcion* de impresión definida. Opcionalmente, puede recuperar la información adicional para cada nombre en *info1Array* y *info2Array*. @@ -55,4 +52,13 @@ Toda la información devuelta por estos comandos es suministrada por el sistema #### Ver también [GET PRINT OPTION](get-print-option.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 785 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md index b1584a46a5734d..04071c31763f6b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **PRINT RECORD** imprime el registro actual de *tabla*, sin modificar la selección actual. El formulario de salida actual se utiliza para la impresión. Si no hay registro actual para *tabla*, **PRINT RECORD** no hace nada. @@ -63,4 +60,13 @@ El siguiente ejemplo imprime el mismo registro actual en dos formularios diferen #### Ver también -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 71 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md index 9dbb5b4154eba3..2810352ff93785 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción PRINT SELECTION imprime la selección actual de *tabla*. Los registros se imprimen en el formulario de salida actual de la tabla del proceso actual. PRINT SELECTION realiza la misma acción que el comando Imprimir del entorno Usuario. Si la selección está vacía, PRINT SELECTION no hace nada. @@ -63,4 +60,14 @@ El siguiente ejemplo selecciona todos los registros en la tabla \[Personas\]. El [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 60 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md index 509bce23c804ca..307a731d6f9cd2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Print settings to BLOB** guarda los ajustes de impresión 4D actuales en el BLOB *confImp*. El parámetro *confImp* almacena todos los valores utilizados para la impresión: @@ -55,4 +52,13 @@ Usted desea almacenar la configuración de impresión actual en el disco: #### Ver también -[BLOB to print settings](blob-to-print-settings.md) \ No newline at end of file +[BLOB to print settings](blob-to-print-settings.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1433 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md index 3febd0ca9b499d..1884b684c42ee9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción PRINT SETTINGS muestra una caja de diálogo de impresión. Este comando debe llamarse antes de una serie de comandos [Print form](../commands/print-form.md) o el comando [OPEN PRINTING JOB](open-printing-job.md). @@ -42,4 +39,14 @@ Si el usuario hace clic en OK en ambas cajas de diálogo, la variable sistema OK [OPEN PRINTING JOB](open-printing-job.md) [PAGE BREAK](page-break.md) [Print form](../commands/print-form.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 106 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md index 86457e9440aac1..0d8d0de5caca8e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **PRINTERS LIST** llena el (los) array(s) pasados como parámetro(s) con los nombres y opcionalmente con la ubicación o nombres personalizados y los modelos de impresión disponibles para el equipo. @@ -46,4 +43,14 @@ La variable sistema OK toma el valor 1 si el comando ha sido ejecutado correctam #### Ver también [Get current printer](get-current-printer.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 789 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md index f6f215f57af9c5..f3516f8c57dcab 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Printing page** devuelve el número de la página en impresión. Puede utilizarse sólo cuando esté imprimiendo con [PRINT SELECTION](print-selection.md) o con el menú Impresión en el entorno Diseño. @@ -39,4 +36,13 @@ El siguiente ejemplo cambia la posición de los números de página en un inform #### Ver también -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 275 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md index d9c6eb4de8d787..c0497362fa36b3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md @@ -71,4 +71,13 @@ Este ejemplo genera un texto utilizando los datos de los arrays: #### Ver también -*Etiquetas de transformación 4D* \ No newline at end of file +*Etiquetas de transformación 4D* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 816 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md index 6fd74051550045..e979afb21d0ab2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md @@ -21,4 +21,13 @@ Este estado ocurrirá muy raramente. Los procesos suelen detenerse antes de que #### Ver también -[Método base On Exit](metodo-base-on-exit.md) \ No newline at end of file +[Método base On Exit](metodo-base-on-exit.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 672 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md index 851c2c58a540fc..d7410d749732a9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md @@ -65,4 +65,13 @@ Con esta función, el método de proyecto listado pega el texto recibido como pa [GET PROCESS VARIABLE](get-process-variable.md) [Process info](../commands/process-info.md) [Process state](process-state.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 372 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md index 69f81e04103f73..7b0d0ba573c1e7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Process state devuelve el estado del proceso cuyo número se pasó en *proceso*. @@ -61,4 +58,13 @@ El siguiente ejemplo coloca el nombre y número de referencia para cada proceso #### Ver también [Count tasks](count-tasks.md) -[Process info](../commands/process-info.md) \ No newline at end of file +[Process info](../commands/process-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 330 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md index 9a67a3e06a274c..b1a4c672671f73 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md @@ -32,4 +32,13 @@ El siguiente ejemplo apila el registro de un cliente: #### Ver también [POP RECORD](pop-record.md) -*Uso de la pila de registros* \ No newline at end of file +*Uso de la pila de registros* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 176 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md index e9ff45ac96dcd7..b76e12cecc5e0e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR BLOB TO REPORT coloca el informe contenido en el *blob* en el área de informe rápido pasada en *area*. @@ -45,4 +42,14 @@ La siguiente instrucción recupera el informe rápido almacenado en Campo4 y lo #### Ver también -[QR REPORT TO BLOB](qr-report-to-blob.md) \ No newline at end of file +[QR REPORT TO BLOB](qr-report-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 771 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md index ef8814be1ec3a2..10614d4fd6e9ab 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Count columns devuelve el número de columnas presentes en el *area* del informe rápido. @@ -35,4 +32,14 @@ El siguiente código permite añadir una columna adicional a la derecha de la ú #### Ver también [QR DELETE COLUMN](qr-delete-column.md) -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 764 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md index 2feb8fbdc22f70..cf2bbb84951380 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR DELETE COLUMN borra del *area* la columna cuyo número se pasó en *numColumna*. Este comando no aplica a los informes de tablas cruzadas. @@ -36,4 +33,14 @@ El siguiente ejemplo se asegura de que el informe sea listado y borra la tercera #### Ver también -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 749 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md index 34630c83838d6d..0b4a9d1e132074 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR DELETE OFFSCREEN AREA borra de la memoria el área fuera de pantalla del informe rápido cuya referencia se pasa en el parámetro *area*. @@ -24,4 +21,14 @@ Si pasa un número de *area* incorrecto, se genera el error -9850. #### Ver también -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 754 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md index f2a64d4b1a4e7a..30e7851b57f21f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR EXECUTE COMMAND** ejecuta el comando de botón de la barra de herramientas cuya referencia se pasa en *comando*. Este comando se utiliza por lo general para ejecutar un comando seleccionado por el usuario e interceptado en su código a través del comando [QR ON COMMAND](qr-on-command.md). @@ -39,4 +36,14 @@ Si pasa un número de *comando* incorrecto, se genera el error -9852. #### Ver también [QR Get command status](qr-get-command-status.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 791 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md index 9c9f49ed49d875..785b133d4fcf5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Find column devuelve el número de la primera columna cuyo contenido corresponde a la *expresion* pasada en parámetro. @@ -44,3 +41,14 @@ $NumColumn:=QR Find column (MiArea; "\[G.NQR Tests\]Trimestre")     QR DELETE COLUMN(MiArea;$NumColumn)  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 776 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md index 6ea5fbbad6427d..cc8b5244d801a1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR Get area property** devuelve 0 si no se muestra el elemento de interfaz pasado en *propiedad*; de lo contrario, devuelve 1. @@ -36,4 +33,14 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9852. #### Ver también -[QR SET AREA PROPERTY](qr-set-area-property.md) \ No newline at end of file +[QR SET AREA PROPERTY](qr-set-area-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 795 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md index f916f5230f435a..361c61d68667b0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET BORDERS permite recuperar el estilo del borde de una celda determinada. @@ -71,4 +68,14 @@ Si el parámetro *area* es incorrecto, se genera el error -9850. #### Ver también -[QR SET BORDERS](qr-set-borders.md) \ No newline at end of file +[QR SET BORDERS](qr-set-borders.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 798 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md index 10fe60f6b1e21d..1de03111f50485 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get command status devuelve 0 si el *comando* está inactivo ó 1 si está activo. @@ -38,4 +35,14 @@ Si el parámetro *comando* es incorrecto, se genera el error -9852. #### Ver también [QR EXECUTE COMMAND](qr-execute-command.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 792 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md index 0310ece9b92e5a..ab375f8318f30d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET DESTINATION recupera el *tipo* de salida del informe para el área cuya referencia se pasó en *area*. @@ -38,4 +35,14 @@ Si pasa un número de *area* incorrecto, se genera el error -9850. #### Ver también -[QR SET DESTINATION](qr-set-destination.md) \ No newline at end of file +[QR SET DESTINATION](qr-set-destination.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 756 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md index f5ad0746f477fb..380120e0f6ae48 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get document property permite recuperar el estado mostrado para la caja de diálogo de impresión o la unidad utilizada para el documento presente en *area*. @@ -47,4 +44,13 @@ Si pasa un valor incorrecto del parámetro *propiedad*, se genera el error -9852 #### Ver también -[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) \ No newline at end of file +[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 773 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md index 92eef87ea7391f..5c11d45a69cc58 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get drop column devuelve un valor dependiendo de dónde se efectúe una acción soltar: @@ -28,4 +25,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 747 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md index d50e3bf11c08c8..a04c54a540bfc0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET HEADER AND FOOTER permite recuperar el contenido y el tamaño del encabezado o pie de página. @@ -68,4 +65,14 @@ El siguiente código recupera el contenido y la altura del título del encabezad #### Ver también -[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) \ No newline at end of file +[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 775 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md index 1e936e104b3395..bf4615b989abd9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get HTML template devuelve la plantilla HTML utilizada actualmente por el área del informe rápido referenciada por *area*. El valor devuelto es de tipo texto e incluye la totalidad del código HTML utilizado como plantilla. @@ -27,4 +24,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR SET HTML TEMPLATE](qr-set-html-template.md) \ No newline at end of file +[QR SET HTML TEMPLATE](qr-set-html-template.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 751 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md index ea4ccfaa448ce9..2330644d8f93e0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción ##### Informes en lista @@ -117,4 +114,14 @@ Puede escribir: [QR Get info row](qr-get-info-row.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 766 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md index 72d787c2a8f7d4..aa80cced9a090e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get info row indica si *linea* se muestra o se oculta en *area*. @@ -40,4 +37,14 @@ Si el parámetro *linea* es incorrecto, se genera el error -9852. [QR GET INFO COLUMN](qr-get-info-column.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 769 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md index 63c8cd7650fc15..88e0bbf0dbc04a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get report kind devuelve el tipo del informe presente en *area*. @@ -36,4 +33,14 @@ Si pasa un número de *area* incorrecto, se genera el error -9850. #### Ver también -[QR SET REPORT KIND](qr-set-report-kind.md) \ No newline at end of file +[QR SET REPORT KIND](qr-set-report-kind.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 755 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md index 17a0b406e7f14c..a42f62437a7a88 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get report table devuelve el número de la tabla actual del informe designado por el parámetro *area*. @@ -25,4 +22,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR SET REPORT TABLE](qr-set-report-table.md) \ No newline at end of file +[QR SET REPORT TABLE](qr-set-report-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 758 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md index 42f6ceaa171344..b1e07d0bb95485 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET SELECTION devuelve las coordenadas de la selección actual de *area*. @@ -40,4 +37,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR SET SELECTION](qr-set-selection.md) \ No newline at end of file +[QR SET SELECTION](qr-set-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 793 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md index 1e71ca3cd6b169..81626127f79dc9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET SORTS llenas dos arrays: @@ -37,4 +34,14 @@ Si pasa un número de area inválido, se genera el error -9850. #### Ver también -[QR SET SORTS](qr-set-sorts.md) \ No newline at end of file +[QR SET SORTS](qr-set-sorts.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 753 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md index cad9cf7b09d2e4..c948573227d3b5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get text property devuelve el valor de la propiedad de los atributos texto en la celda determinada por *numColumna* y *numLinea*. @@ -67,4 +64,14 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9854 #### Ver también -[QR SET TEXT PROPERTY](qr-set-text-property.md) \ No newline at end of file +[QR SET TEXT PROPERTY](qr-set-text-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 760 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md index e0cbf613cc0acb..1888812e3c47a9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción ##### Informe en lista @@ -73,4 +70,14 @@ Si el parámetro *numRuptura* es incorrecto, se genera el error -9853. #### Ver también -[QR SET TOTALS DATA](qr-set-totals-data.md) \ No newline at end of file +[QR SET TOTALS DATA](qr-set-totals-data.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 768 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md index 31db51e059f1d8..4a521f3f0460eb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET TOTALS SPACING permite recuperar el valor del espacio añadido debajo de una línea de subtotal. Aplica únicamente en modo listado. @@ -38,4 +35,14 @@ Si el parámetro *subtotal* es incorrecto, se genera el error -9852. #### Ver también -[QR SET TOTALS SPACING](qr-set-totals-spacing.md) \ No newline at end of file +[QR SET TOTALS SPACING](qr-set-totals-spacing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 762 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md index d39ab9f2867ad7..d5af5399ecb9f2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR INSERT COLUMN inserta o crea una columna en una posición específica. Las columnas situadas a la derecha de la columna añadida serán desplazadas en consecuencia. @@ -40,4 +37,14 @@ La siguiente instrucción inserta (o crea) una primera columna en el área MiAre #### Ver también -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 748 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md index c6e77c67354556..8a5c4180dd0faa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR MOVE COLUMN** mueve la columna que se encuentra actualmente en la posición *numColumna* a la posición *nuevaPosicion*. @@ -41,3 +38,13 @@ Si ejecuta: El resultado es: ![](../assets/en/commands/pict2569472.en.png) + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1325 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md index c3360d2ac8e17b..4d199864230c69 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md @@ -13,13 +13,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR NEW AREA** crea una nueva área de informe rápido y almacena su número de referencia en la variable de tipo Entero largo referenciada por el puntero *ptr*. #### Ver también -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1320 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md index a600a15ceaaf11..c4d386c4660742 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR New offscreen area crea un área de informe rápido fuera de pantalla y devuelve su número de referencia. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### Ver también [QR DELETE OFFSCREEN AREA](qr-delete-offscreen-area.md) -[QR NEW AREA](qr-new-area.md) \ No newline at end of file +[QR NEW AREA](qr-new-area.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 735 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md index e95f01d1dea4d6..d123097c7f5a0c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR ON COMMAND ejecuta el método proyecto 4D pasado en el parámetro *nomMetodo* cuando un comando del editor de informes rápidos es llamado por el usuario, seleccionando un comando de menú o haciendo clic en un botón. @@ -44,4 +41,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. *QR Comandos* [QR EXECUTE COMMAND](qr-execute-command.md) -[QR Get command status](qr-get-command-status.md) \ No newline at end of file +[QR Get command status](qr-get-command-status.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 790 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md index 8b40233be434b8..e365848b029fb9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR REPORT TO BLOB coloca el informe cuya referencia se pasó en *area* en un BLOB (variable o campo). @@ -33,4 +30,14 @@ La siguiente instrucción asigna el informe rápido almacenado en el área MiAre #### Ver también -[QR BLOB TO REPORT](qr-blob-to-report.md) \ No newline at end of file +[QR BLOB TO REPORT](qr-blob-to-report.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 770 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md index 680578c2ffcd23..549e194378bdd7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **QR REPORT** imprime un informe para *tabla*, con ayuda del editor de informes rápidos de 4D. Este editor permite a los usuarios crear sus propios informes. Para mayor información sobre la creación de informes rápidos con la ayuda del editor de informes rápidos, consulte la sección *Informes rápidos* en el *Manual de Diseño* de 4D. @@ -132,4 +129,14 @@ El método myCallbackMeth convierte el informe cuando se genera: [PRINT LABEL](print-label.md) [PRINT SELECTION](print-selection.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 197 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md index 371534ccf86265..0263419a27c2c3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR RUN provoca la ejecución del informe rápido designado por el parámetro *area.* El informe se genera con sus parámetros actuales, incluyendo su tipo de salida. Puede utilizar el comando [QR SET DESTINATION](qr-set-destination.md) para modificar el tipo de salida. @@ -25,3 +22,14 @@ El informe se ejecuta en la tabla a la que pertenece el área. Cuando *area* des Si pasa un número de *area* inválido, se genera el error -9850. **4D Server:** este comando puede ejecutarse en 4D Server como parte de un procedimiento almacenado. En este contexto, asegúrese de que no aparezca ninguna caja de diálogo en el equipo servidor (excepto para los requisitos específicos). Para ello, es necesario llamar al comando [QR SET DESTINATION](qr-set-destination.md) con el parámetro "\*". En caso de un problema de la impresora (sin papel, impresora desconectada, etc), no se genera ningún mensaje de error. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 746 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md index 9999649f6837da..e09d178b984c83 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR SET AREA PROPERTY** muestra u oculta el elemento de interfaz cuya referencia se pasa en *propiedad*. @@ -35,4 +32,14 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9852. #### Ver también -[QR Get area property](qr-get-area-property.md) \ No newline at end of file +[QR Get area property](qr-get-area-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 796 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md index fff66fa29806d5..492862b788f19d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET BORDERS permite definir el estilo del borde de una celda dada. @@ -74,4 +71,14 @@ Si el parámetro *ancho* es incorrecto, se genera el error -9855. #### Ver también -[QR GET BORDERS](qr-get-borders.md) \ No newline at end of file +[QR GET BORDERS](qr-get-borders.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 797 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md index b15e738bad4a11..6889fbfef2019b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET DESTINATION permite definir el *tipo* de salida del informe rápido en *area*. @@ -51,4 +48,14 @@ El siguiente código define el archivo texto Midoc.txt como tipo de destino del #### Ver también -[QR GET DESTINATION](qr-get-destination.md) \ No newline at end of file +[QR GET DESTINATION](qr-get-destination.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 745 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md index d95f45e6ea36de..e6bd1efae3419c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR SET DOCUMENT PROPERTY** permite mostrar la caja de diálogo de impresión o definir la unidad utilizada por el documento. @@ -47,4 +44,14 @@ Si pasa un valor incorrecto en *propiedad* o *valor*, se genera el error corresp #### Ver también -[QR Get document property](qr-get-document-property.md) \ No newline at end of file +[QR Get document property](qr-get-document-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 772 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md index ba9df2bd1bd619..9d18d9712fa108 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET HEADER AND FOOTER permite definir el contenido y el tamaño del encabezado y el pie de página de *area*. @@ -57,4 +54,14 @@ La siguiente instrucción coloca el título “Título del centro” en el encab #### Ver también -[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) \ No newline at end of file +[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 774 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md index 441553f5b1d22b..215fcafc85b4e2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET HTML TEMPLATE define la plantilla HTML a utilizar para el área de informe rápido referenciada por *area*. Esta plantilla se utilizará durante la creación del informe en formato HTML. @@ -75,4 +72,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR Get HTML template](qr-get-html-template.md) \ No newline at end of file +[QR Get HTML template](qr-get-html-template.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 750 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md index 77a60fe112e79e..56e483a007546b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción ##### Informes en lista @@ -111,4 +108,14 @@ Si el parámetro *numColumna* es incorrecto, se genera el error -9852. [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 765 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md index 284599348e4278..69f4db5a0c8b41 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET INFO ROW muestra/oculta la fila cuya referencia se pasa en *linea*. @@ -51,4 +48,14 @@ La siguiente instrucción oculta el contenido de la línea detalle: [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO COLUMN](qr-set-info-column.md) \ No newline at end of file +[QR SET INFO COLUMN](qr-set-info-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 763 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md index 3fb052959d6c94..39f21eea467eba 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET REPORT KIND define el *tipo* del informe presente en *area*. @@ -40,4 +37,14 @@ Si pasa un valor incorrecto del parámetro *propiedad*, se genera el error -9852 #### Ver también -[QR Get report kind](qr-get-report-kind.md) \ No newline at end of file +[QR Get report kind](qr-get-report-kind.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 738 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md index a90a9258cdd5de..0865206a6d43ff 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET REPORT TABLE define la tabla actual para el área del informe referenciada por el parámetro *area* a la tabla número *tabla*. @@ -28,4 +25,14 @@ Si el parámetro *tabla* es incorrecto, se genera el error -9852. #### Ver también -[QR Get report table](qr-get-report-table.md) \ No newline at end of file +[QR Get report table](qr-get-report-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 757 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md index 83dec4bbbaf23b..624ad225b22849 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET SELECTION permite seleccionar una celda, una fila, una columna o toda un *area* como lo haría con un ratón. Este comando también le permite deseleccionar la selección actual. @@ -37,4 +34,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR GET SELECTION](qr-get-selection.md) \ No newline at end of file +[QR GET SELECTION](qr-get-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 794 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md index 48885e46740e24..7bddd3d788ce9f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET SORTS permite definir el sentido de ordenación de cada columna del informe rápido cuya referencia se pasa en *area*. @@ -47,4 +44,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR GET SORTS](qr-get-sorts.md) \ No newline at end of file +[QR GET SORTS](qr-get-sorts.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 752 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md index 6e0072b1779c34..634bf802b2027b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET TEXT PROPERTY permite definir las propiedades de texto de la celda determinada por los parámetros *numColumna* y *numLinea*. @@ -86,4 +83,14 @@ Este método define varios atributos para el título de la primera columna: #### Ver también -[QR Get text property](qr-get-text-property.md) \ No newline at end of file +[QR Get text property](qr-get-text-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 759 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md index 4813d2c7acad1e..911810c77f989e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando no puede crear un subtotal. @@ -97,4 +94,14 @@ Si el parámetro *numRuptura* es incorrecto, se genera el error -9853. #### Ver también -[QR GET TOTALS DATA](qr-get-totals-data.md) \ No newline at end of file +[QR GET TOTALS DATA](qr-get-totals-data.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 767 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md index d93bfe5b72c0c3..3bc3ea2a5ba870 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET TOTALS SPACING define un espacio debajo de la línea de subtotal. Aplica únicamente al modo listado. @@ -39,4 +36,14 @@ Si el parámetro *subtotal*, es incorrecto, se genera el error -9852. #### Ver también -[QR GET TOTALS SPACING](qr-get-totals-spacing.md) \ No newline at end of file +[QR GET TOTALS SPACING](qr-get-totals-spacing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 761 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md index e9adbbaf52c49b..414ee7288ba871 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Descripción -**QUERY BY ATTRIBUTE** busca los registros que coincidan con la cadena de consulta definida utilizando los parámetros *campoObjeto*, *rutaAtributo*, *opBusq* y *valor*, y devuelve una selección de registros para *tabla*. - -**QUERY BY ATTRIBUTE** cambia la selección actual de *tabla* para el proceso actual y vuelve el primer registro de la nueva selección el registro actual. Si se omite el parámetro *tabla*, el comando se aplica a la tabla por defecto. Si no se ha definido ninguna tabla por defecto, se produce un error. +**QUERY BY ATTRIBUTE** busca los registros que coincidan con la cadena de consulta definida utilizando los parámetros *campoObjeto*, *rutaAtributo*, *opBusq* y *valor*, y devuelve una selección de registros para *tabla*.cambia la selección actual de *tabla* para el proceso actual y vuelve el primer registro de la nueva selección el registro actual. Si se omite el parámetro *tabla*, el comando se aplica a la tabla por defecto. Si no se ha definido ninguna tabla por defecto, se produce un error. El parámetro opcional *opC* *onj* se utilizar para combinar varias llamadas a **QUERY BY ATTRIBUTE** en caso de búsquedas múltiples. Los operadores de conjunción disponibles son los mismos que los del comando [QUERY](query.md): @@ -405,4 +403,16 @@ La variable OK toma el valor 0 si: - el usuario hace clic en Cancelar en la caja *Estructura de los objetos de lenguaje 4D* -[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) \ No newline at end of file +[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1331 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md index 48ab6d2b56676f..b47dbad1d3a9ac 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción QUERY BY EXAMPLE efectúa la misma acción que el comando de menú Búsqueda por formulario... en el entorno Diseño. Este comando muestra el formulario de entrada actual como ventana de búsqueda. QUERY BY EXAMPLE busca en *tabla* los datos que el usuario introduce en la ventana de búsqueda. El formulario debe contener los campos que usted quiere utilizar para efectuar la búsqueda. La búsqueda se optimiza; los campos indexados se utilizan automáticamente para optimizar la búsqueda. @@ -42,4 +39,17 @@ Si el usuario hace clic en el botón Aceptar o presionan la tecla Enter, la vari #### Ver también [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 292 | +| Hilo seguro | ✗ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md index b501127552527f..342acb63a4b461 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md @@ -77,4 +77,15 @@ Este ejemplo utiliza una unión para buscar todas las líneas de facturas de cli [QUERY](query.md) [QUERY BY SQL](query-by-sql.md) [QUERY SELECTION](query-selection.md) -[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) \ No newline at end of file +[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 48 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md index 4c0265896f42ed..e43bacad385eef 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QUERY BY SQL permite aprovechar directamente el motor SQL integrado de 4D. Este comando puede ejecutar una petición SELECT simple que puede escribirse de esta forma: @@ -161,4 +158,16 @@ Si el formato de la condición de búsqueda es correcto, la variable sistema OK #### Ver también -[QUERY BY FORMULA](query-by-formula.md) \ No newline at end of file +[QUERY BY FORMULA](query-by-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 942 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md index 42faf57a226a9f..f6cba73cc153c2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md @@ -46,4 +46,16 @@ Usted quiere encontrar personas con una edad entre 20 y 30, entre los registros #### Ver también -[QUERY BY ATTRIBUTE](query-by-attribute.md) \ No newline at end of file +[QUERY BY ATTRIBUTE](query-by-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1424 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md index 7590277b0af403..42e4cd47763f8c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md @@ -29,4 +29,15 @@ Para mayor información, consulte la descripción del comando [QUERY BY FORMULA] [QUERY](query.md) [QUERY BY FORMULA](query-by-formula.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 207 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md index 000ad79e3b2bcf..7f79be1b86f0fd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md @@ -27,4 +27,14 @@ Para mayor información, consulte la descripción del comando [QUERY WITH ARRAY] #### Ver también -[QUERY WITH ARRAY](query-with-array.md) \ No newline at end of file +[QUERY WITH ARRAY](query-with-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1050 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md index 45b23b880c6421..12e19e7a542f67 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md @@ -42,4 +42,16 @@ Va a encontrar todas las empresas ubicadas en la ciudad de Nueva York, con una a #### Ver también -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 341 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md index 430843347445e3..1c39d4c3c42d21 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md @@ -38,4 +38,14 @@ El siguiente ejemplo le permite recuperar los registros de clientes franceses y #### Ver también -[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) \ No newline at end of file +[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 644 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query.md index b8d3cdc4c74e02..f1b0fd07253c13 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query.md @@ -308,4 +308,16 @@ La variable OK toma el valor 0 si: - el usuario hace clic en Cancelar en la caja #### Ver también -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 277 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md index 2290893646ab8b..3ffa222ac399db 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md @@ -65,4 +65,13 @@ El método de proyecto siguiente está asociado al elemento de menú Salir en el #### Ver también -[Método base On Exit](metodo-base-on-exit.md) \ No newline at end of file +[Método base On Exit](metodo-base-on-exit.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 291 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/random.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/random.md index 94c2470d736278..f87a4ba8071b3d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/random.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/random.md @@ -32,3 +32,13 @@ El siguiente ejemplo asigna un valor aleatorio entre 10 y 30 a la variable *vlRe ```4d  vlResult:=(Random%21)+10 ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 100 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md index 26aa206601d61b..19cfe3b99fa1ba 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md @@ -35,4 +35,13 @@ El siguiente ejemplo prueba el estado de la tabla \[Facturas\]. Si el estado de [READ ONLY](read-only.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 362 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md index 66db8ccf446a47..b4d7cf45cb8c2a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md @@ -25,4 +25,13 @@ Utilice READ ONLY cuando no necesite modificar los registros. [Read only state](read-only-state.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 145 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md index 1c358448e7c693..06ae63dbd6ba8d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md @@ -40,4 +40,14 @@ Si la ejecución del comando es correcta, la variable sistema Document contiene [BLOB TO PICTURE](blob-to-picture.md) *Imágenes* [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 678 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md index 9f5975ec6c8abc..efda5b230eef89 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md @@ -29,4 +29,13 @@ Utilice READ WRITE cuando tenga que modificar un registro y guardar los cambios. [READ ONLY](read-only.md) [Read only state](read-only-state.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 146 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md index 59b5be78aa3115..6f0351b3b50275 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md @@ -131,4 +131,13 @@ Después de la ejecución de este código: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 552 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md index e2be5ca6c235ce..9f8284a4d609b6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md @@ -62,4 +62,14 @@ Note que el acceso a la variable interproceso *vtBuffer* debe estar protegido po [RECEIVE PACKET](receive-packet.md) [Semaphore](semaphore.md) [SET CHANNEL](set-channel.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 172 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md index 1dcf3ae19bf7aa..f049b7249b2b43 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md @@ -114,4 +114,14 @@ Después de un llamado a RECEIVE PACKET, la variable sistema OK toma el valor 1 [SEND PACKET](send-packet.md) [SET DOCUMENT POSITION](set-document-position.md) [SET TIMEOUT](set-timeout.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 104 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md index 0ad593f8b13a49..8e0ee638c276d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md @@ -150,4 +150,14 @@ La variable sistema OK toma el valor 1 si se recibe el registro. De lo contrario [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 79 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md index 4ad0dd07df7ba5..b7dab2510ae2d8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md @@ -40,4 +40,14 @@ La variable sistema OK toma el valor 1 si se recibe la variable. De lo contrario [ON ERR CALL](on-err-call.md) [RECEIVE RECORD](receive-record.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 81 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md index 12097c5f467b21..2e2ecef1b7a1be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md @@ -42,4 +42,13 @@ El siguiente ejemplo guarda el número del registro actual y luego busca en la t [GOTO RECORD](goto-record.md) [Is new record](is-new-record.md) [Selected record number](selected-record-number.md) -[Sequence number](sequence-number.md) \ No newline at end of file +[Sequence number](sequence-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 243 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md index 8e597992214f10..99cd4e018c51b6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md @@ -32,4 +32,13 @@ El siguiente ejemplo muestra una técnica de bucle actualmente utilizada para mo #### Ver también -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 76 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md index 046b9f21125fde..e2a0fc8335cd77 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md @@ -32,4 +32,13 @@ El siguiente ejemplo muestra una alerta indicando el porcentaje de clientes que #### Ver también [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 195 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md index e1c163132d17b0..bf7b26c3a54c53 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md @@ -28,4 +28,13 @@ El siguiente ejemplo muestra una alerta que indica el número de registros en la #### Ver también -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 83 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md index 38117deb9da512..96607d927cfe80 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando REDRAW WINDOW provoca una actualización del contenido de la ventana cuyo número de referencia se pasa en *ventana*. @@ -26,4 +23,13 @@ Si omite el parámetro *ventana*, REDRAW WINDOW aplica a la ventana del primer p #### Ver también -[ERASE WINDOW](erase-window.md) \ No newline at end of file +[ERASE WINDOW](erase-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 456 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md index 29a8d3498ed01e..3099ab08f85ec3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Cuando utiliza un método para modificar el contenido de un campo o subcampo mostrado en un subformulario, debe ejecutar REDRAW para asegurar que el formulario esté correctamente actualizado. . @@ -24,4 +21,13 @@ En el contexto de los list boxes en modo selección, la instrucción REDRAW apli #### Ver también -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 174 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md index 8e062427554b36..92200b1facdc5c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **REDUCE RESTORE WINDOW** reduce/expande la ventana cuyo número de referencia se pasó en *ventana* a/desde la barra de tareas en Windows o el dock en macOS. @@ -31,4 +28,13 @@ El comando cambia el estado de la ventana: [Is window reduced](is-window-reduced.md) [MAXIMIZE WINDOW](maximize-window.md) -[MINIMIZE WINDOW](minimize-window.md) \ No newline at end of file +[MINIMIZE WINDOW](minimize-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1829 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md index 2b641e96ea5b8f..e904b5d3a459d6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md @@ -56,4 +56,15 @@ El siguiente ejemplo busca las estadísticas correctas para una competencia mund *Conjuntos* [ORDER BY](order-by.md) [QUERY](query.md) -[SCAN INDEX](scan-index.md) \ No newline at end of file +[SCAN INDEX](scan-index.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 351 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md index 556086d17d88b6..13feaf3c57c174 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Refresh license** actualiza la licencia actual del servidor 4D. Lo conecta con la base de datos de clientes 4D y activa automáticamente cualquier licencia nueva o actualizada (por ejemplo, clientes comprados adicionales) relacionada con la licencia actual. @@ -47,3 +44,13 @@ Desea actualizar su licencia y recibir un mensaje cuando se complete:     ALERT($res.statusText)  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1336 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md index 8a584b5a6a61ac..88bba8cb8f2936 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando REGENERATE MISSING TABLE reconstruye la tabla faltante cuyo nombre se pasa en el parámetro *nomTabla*. Cuando se reconstruye una tabla faltante, se vuelve visible en el editor de estructura y sus datos son accesibles nuevamente. @@ -61,4 +58,13 @@ Este método regenera todas las tablas faltantes eventualmente presentes en la b #### Ver también -[GET MISSING TABLE NAMES](get-missing-table-names.md) \ No newline at end of file +[GET MISSING TABLE NAMES](get-missing-table-names.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1126 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md index ba97db489de5f3..5d06482b6a92cd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando REGISTER CLIENT “registra” un equipo cliente 4D con el nombre especificado en *nomCliente* en 4D Server, con el fin de permitir a otros clientes o eventualmente 4D Server (utilizando procedimientos almacenados) ejecutar métodos utilizando el comando [EXECUTE ON CLIENT](execute-on-client.md "EXECUTE ON CLIENT"). Una vez registrado, un cliente 4D puede ejecutar uno o varios métodos para otros clientes. @@ -118,4 +115,14 @@ Si el cliente 4D está registrado correctamente, la variable sistema OK es igual [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 648 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md index 61d2675f33e620..efc0345e420687 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md @@ -47,4 +47,13 @@ En el primer parámetro, pase *curPassPhrase* o *curDataKey* que define la llave #### Ver también -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1638 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md index 38e20670c98e72..0e437807fa6940 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md @@ -38,4 +38,13 @@ Desea rechazar o aceptar las nuevas conexiones de clientes: [DROP REMOTE USER](drop-remote-user.md) [Application info](application-info.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1635 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject.md index d780eb85659ee2..6ca67c50ede99d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **REJECT** tiene dos sintaxis. La primera sintaxis no tiene parámetros. En este caso, el comando rechaza la totalidad de la entrada y obliga al usuario a permanecer en el formulario. La segunda sintaxis rechaza solamente el *campo* y obliga al usuario a permanecer en el campo. @@ -64,4 +61,13 @@ El siguiente ejemplo es parte de un método de objeto para un campo *\[Employees [ACCEPT](accept.md) [CANCEL](cancel.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 38 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md index 57a67c4661f151..3c1fe1daa817f6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -El comando RELATE MANY SELECTION crea una selección de registros en la tabla Muchos, basada en la selección actual de la tabla Uno. - -**Nota:** RELATE MANY SELECTION cambia el registro actual de la tabla Uno. +El comando RELATE MANY SELECTION crea una selección de registros en la tabla Muchos, basada en la selección actual de la tabla Uno.RELATE MANY SELECTION cambia el registro actual de la tabla Uno. #### Ejemplo @@ -34,4 +32,15 @@ Este ejemplo selecciona todas las facturas de clientes con crédito superior o i [QUERY](query.md) [RELATE ONE](relate-one.md) -[RELATE ONE SELECTION](relate-one-selection.md) \ No newline at end of file +[RELATE ONE SELECTION](relate-one-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 340 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md index 650870b0a5ee11..90695ac5875b87 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md @@ -64,4 +64,14 @@ Note que es necesario el comando RELATE MANY, aunque las relaciones sean automá #### Ver también [OLD RELATED MANY](old-related-many.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 262 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md index e53ac6740db9f4..3e2a5749c116c7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md @@ -56,4 +56,15 @@ La siguiente técnica utiliza **RELATE ONE SELECTION** para obtener el mismo res *Conjuntos* [QUERY](query.md) [RELATE MANY SELECTION](relate-many-selection.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 349 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md index 7dc83dade1bf03..45e06a08360215 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción RELATE ONE acepta dos sintaxis. @@ -88,4 +85,16 @@ Si el comando se ejecuta correctamente y si los registros relacionados se han ca #### Ver también [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 42 | +| Hilo seguro | ✗ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md index 5f12902607478c..009e6ce337b0e2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando RELEASE MENU borra de la memoria el menú cuya referencia se pasa en *menu*.. La regla es la siguiente: a cada [Create menu](create-menu.md) debe corresponder un [RELEASE MENU](release-menu.md). @@ -56,4 +53,13 @@ Este ejemplo muestra las diferentes formas de utilizar este comando: #### Ver también -[Create menu](create-menu.md) \ No newline at end of file +[Create menu](create-menu.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 978 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md index 22bc6f2c564792..e2184daa3602bd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md @@ -25,4 +25,13 @@ A continuación debe recargar los datos utilizando el comando **RELOAD EXTERNAL #### Ver también -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1135 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md index 7099f502500754..72e5772a82d83e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **RELOAD PROJECT** recarga las definiciones del archivo fuente (métodos, formularios, etc.) desde el disco para el proyecto en ejecución en el entorno 4D actual. Solo se puede utilizar con proyectos 4D ejecutados en **modo interpretado**. La ejecución del comando es asíncrona. @@ -36,4 +33,13 @@ Cuando se llama al comando desde: #### Ver también - \ No newline at end of file + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1739 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md index 1996ad7ac4759c..56b15add3e0dad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver también -[ADD TO SET](add-to-set.md) \ No newline at end of file +[ADD TO SET](add-to-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 561 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md index 2ff877c0613967..af17f9cb1147d8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando REMOVE PICTURE FROM LIBRARY elimina de la librería de imágenes la imagen cuyo número de referencia se pasa en *refImag* o cuyo nombre se pasa en *nomImag*. @@ -51,4 +48,14 @@ El siguiente ejemplo borra de la librería de imágenes toda imagen cuyo nombre [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 567 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md index ceb27d2734c5ee..88b20e10270595 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md @@ -71,4 +71,13 @@ El siguiente ejemplo ilustra el uso del parámetro \* en el caso de una evaluaci [Change string](change-string.md) [Delete string](delete-string.md) -[Insert string](insert-string.md) \ No newline at end of file +[Insert string](insert-string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 233 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/request.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/request.md index dbe821d437ffa6..2c2f867ca43c8d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/request.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/request.md @@ -77,4 +77,14 @@ Mostrará la siguiente caja de diálogo (en Windows): #### Ver también [ALERT](alert.md) -[CONFIRM](confirm.md) \ No newline at end of file +[CONFIRM](confirm.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 163 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md index a86f5ad81e890a..8bb2e48f7ef8d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando RESIZE FORM WINDOW permite modificar el tamaño de la ventana del formulario actual. @@ -48,4 +45,13 @@ Después de la ejecución de esta línea: [FORM GET PROPERTIES](form-get-properties.md) [FORM SET SIZE](form-set-size.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 890 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md index c007fdb72ba212..f7761525b17dc3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md @@ -30,4 +30,14 @@ Si *rutaAlias* especifica un alias/atajo, la variable sistema OK toma el valor 1 #### Ver también -[CREATE ALIAS](create-alias.md) \ No newline at end of file +[CREATE ALIAS](create-alias.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 695 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md index 564036a5ff895a..ab51e38511041b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md @@ -108,4 +108,13 @@ Este es un ejemplo de puntero a un array 2D: [Get pointer](get-pointer.md) [Is a variable](is-a-variable.md) [Is nil pointer](is-nil-pointer.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 394 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md index 5dbcb0b1b63367..98fd9b42dfd1dc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando RESOURCE LIST llena los arrays *resNums* y *resNoms* con los números y los nombres de los recursos cuyo tipo se pasa en *resTipo*. @@ -71,4 +68,13 @@ El siguiente ejemplo copia los recursos imagen presentes en todos los archivos d #### Ver también -[RESOURCE TYPE LIST](resource-type-list.md) \ No newline at end of file +[RESOURCE TYPE LIST](resource-type-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 500 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md index ef709ad0022f71..4f27e19a3a282e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando RESOURCE TYPE LIST llena el array *resTipos* con los tipos de recursos presentes en el (los) archivo(s) de recursos abierto(s). @@ -82,4 +79,13 @@ Una vez este método de proyecto se implementa en una base, puede escribir: #### Ver también -[RESOURCE LIST](resource-list.md) \ No newline at end of file +[RESOURCE LIST](resource-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 499 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md index 808a99615989e0..58ff06081952df 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md @@ -33,4 +33,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1, #### Ver también [Get last update log path](get-last-update-log-path.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1292 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md index 9a4ffa27d6d8f6..471d969a72df01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md @@ -34,4 +34,13 @@ El tipo y el contenido de los parámetros *info1* e *info2* dependen del valor d #### Ver también -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 889 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore.md index b92b58bee57851..70aa9272bef49b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando RESTORE permite restituir el o los archivos incluidos en un archivo 4D. Este comando es útil con interfaces personalizadas para la gestión de backups. @@ -35,4 +32,14 @@ El comando RESTORE modifica el valor de las variables *OK* y *Document*: si la r #### Ver también [BACKUP](backup.md) -[RESTORE INFO](restore-info.md) \ No newline at end of file +[RESTORE INFO](restore-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 918 | +| Hilo seguro | ✗ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md index 50a0701bbeeef1..bb8d334b971c64 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md @@ -26,4 +26,13 @@ El comando **RESUME INDEXES** sólo se puede llamar desde 4D Server o un 4D loca #### Ver también [CREATE INDEX](create-index.md) -[PAUSE INDEXES](pause-indexes.md) \ No newline at end of file +[PAUSE INDEXES](pause-indexes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1294 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md index 5de423402e7f0e..61794f960c16a5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md @@ -24,4 +24,14 @@ Si *proceso* ha sido retrasado anteriormente, consulte los comandos [PAUSE PROCE #### Ver también [DELAY PROCESS](delay-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 320 | +| Hilo seguro | ✓ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md index ecadda4fe8061b..d06bbb15f49d9f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md @@ -22,4 +22,13 @@ Para más información, consulte la sección *Suspender las transacciones*. [Active transaction](active-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspender las transacciones* \ No newline at end of file +*Suspender las transacciones* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1386 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md index 7a78cf6a73e340..78898713c26723 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Right click devuelve [True](true.md "True") si se hace clic en el botón derecho del ratón. @@ -25,4 +22,13 @@ Este comando debe utilizarse únicamente en el contexto del evento de formulario #### Ver también [Contextual click](contextual-click.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 712 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/round.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/round.md index 4d2bb93774a1c6..88c8541dfdf7bd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/round.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/round.md @@ -36,4 +36,13 @@ El siguiente ejemplo ilustra cómo Redondeo funciona con diferentes argumentos. #### Ver también -[Trunc](trunc.md) \ No newline at end of file +[Trunc](trunc.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 94 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md index 47a19ec9d65da9..38b0cf860839f7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SAVE LIST guarda la lista cuyo número de referencia pasó en *lista*, en el editor de listas en el entorno Diseño, bajo el nombre que pasó en *nomLista*. @@ -27,4 +24,13 @@ Su contenido se reemplazará si ya hay una lista con el mismo nombre. #### Ver también -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 384 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md index 595edfd63cc8d3..f6b348555683a2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md @@ -47,4 +47,13 @@ El siguiente ejemplo es parte de un método que lee registros de un documento. E [CREATE RECORD](create-record.md) [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 53 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md index 5f538a94e73567..93a7ec607d0dee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md @@ -24,4 +24,13 @@ SAVE RELATED ONE no guardará un registro bloqueado. Cuando utilice este comando [CREATE RELATED ONE](create-related-one.md) [Locked](locked.md) [RELATE ONE](relate-one.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 43 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md index 5322072913262c..f857b6fb09e2c6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md @@ -40,4 +40,14 @@ Si el usuario hace clic en el botón Cancelar en la caja de diálogo de guardar #### Ver también -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 184 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md index c288474dd183df..b0a7cfb08edb61 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md @@ -47,4 +47,14 @@ Si las variables se guardan correctamente, la variable sistema OK toma el valor [DOCUMENT TO BLOB](document-to-blob.md) [LOAD VARIABLES](load-variables.md) [VARIABLE TO BLOB](variable-to-blob.md) -*Variables sistema* \ No newline at end of file +*Variables sistema* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 75 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md index d5af8cdf92b369..22d5977fe7c7ec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md @@ -44,4 +44,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) \ No newline at end of file +[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 857 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md index e6d50031a3bc56..1402f7a69c821c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md @@ -73,4 +73,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[SAX GET XML CDATA](sax-get-xml-cdata.md) \ No newline at end of file +[SAX GET XML CDATA](sax-get-xml-cdata.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 856 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md index 1ae82d97fc23ae..e33db95e668c77 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md @@ -45,4 +45,14 @@ En caso de error, el comando devuelve un error que puede interceptarse utilizand #### Ver también -[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) \ No newline at end of file +[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 852 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md index fede7c59414848..4689874dc46f76 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md @@ -45,4 +45,14 @@ En caso de error, el comando devuelve un error que puede interceptarse utilizand #### Ver también -[SAX ADD XML COMMENT](sax-add-xml-comment.md) \ No newline at end of file +[SAX ADD XML COMMENT](sax-add-xml-comment.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 851 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md index 12900eff30bc9c..08846486996039 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md @@ -49,4 +49,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [SAX GET XML ELEMENT VALUE](sax-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 855 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md index ae024116bf00a1..d596d0dc4e2c45 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md @@ -36,4 +36,13 @@ Si el último elemento abierto es **, la siguiente instrucción: #### Ver también [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 854 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md index 3afe50713efc40..2aa04396531d7c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md @@ -48,4 +48,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [SAX ADD XML CDATA](sax-add-xml-cdata.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 878 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md index ff0dcf1999dfda..7f6121dc14572b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md @@ -25,4 +25,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [SAX ADD XML COMMENT](sax-add-xml-comment.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 874 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md index b38f0bfc2b1856..9500318a22b285 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md @@ -29,4 +29,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [SAX Get XML node](sax-get-xml-node.md) -[SAX SET XML DECLARATION](sax-set-xml-declaration.md) \ No newline at end of file +[SAX SET XML DECLARATION](sax-set-xml-declaration.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 873 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md index c61c7db540c827..4dab025b953206 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md @@ -43,4 +43,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 877 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md index fd7f06e67ce95b..47b98995d76b6b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md @@ -56,4 +56,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 876 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md index 207e08655fd28a..c9f334890a504b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md @@ -47,4 +47,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 879 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md index b3bb2d60e757c0..7e0e7fba511fdb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md @@ -55,3 +55,14 @@ El siguiente ejemplo procesa un evento: #### Variables y conjuntos del sistema Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. De lo contrario toma el valor 0 y se genera un error. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 860 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md index 6e2e93acabd075..45544c4db31393 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md @@ -39,4 +39,13 @@ La siguiente instrucción devolverá “PI” en *vNom* y “TextProcess” en * #### Ver también [SAX ADD PROCESSING INSTRUCTION](sax-add-processing-instruction.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 875 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md index 71eaf65b0ee4e8..eb7e7049792a37 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md @@ -53,4 +53,13 @@ El siguiente método: [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 921 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md index 5d0006b27bf629..20e3114157cae0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md @@ -51,4 +51,14 @@ Si se pasa en tag un carácter inválido, se genera un error. #### Ver también [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 853 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md index e29b72f4959ff8..f2a9dbede314ab 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md @@ -44,4 +44,13 @@ El siguiente código: #### Ver también -[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) \ No newline at end of file +[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 858 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md index eb686375c17833..adcb195c756a92 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md @@ -48,4 +48,15 @@ El siguiente ejemplo envía cartas a los 50 peores clientes y 50 a los mejores c [ORDER BY](order-by.md) [QUERY](query.md) -[REDUCE SELECTION](reduce-selection.md) \ No newline at end of file +[REDUCE SELECTION](reduce-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 350 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md index 229bfc528f4ef3..0cd7edc32ede0e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SCREEN COORDINATES devuelve en los parámetros *izquierda*, *arriba*, *derecha,* y *abajo* las coordenadas de la pantalla especificada por *IDpantalla*. @@ -47,4 +44,13 @@ Las siguientes imágenes demuestran las diferencias entre el tamaño de la panta [Count screens](count-screens.md) [Menu bar screen](menu-bar-screen.md) -[SCREEN DEPTH](screen-depth.md) \ No newline at end of file +[SCREEN DEPTH](screen-depth.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 438 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md index cb19cb463d0187..e5b5c0fb9f23e5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SCREEN DEPTH devuelve en los parámetros *profundidad* y *color* la información sobre el monitor. @@ -61,3 +58,13 @@ Su aplicación muestra varios gráficos a color. Puede escribir en alguna parte #### Ver también [Count screens](count-screens.md) + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 439 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md index e0afba9eda6763..d996da01cbefe6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción En Windows, Screen height devuelve la altura de la ventana de la aplicación 4D (ventana MDI). Si pasa el parámetro opcional *\**, Screen height devuelve la altura de la pantalla. @@ -26,4 +23,13 @@ En Mac OS, Screen height devuelve la altura de la pantalla principal, es decir l #### Ver también [SCREEN COORDINATES](screen-coordinates.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 188 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md index 338d8d2f3317a0..dee9b7bbf39043 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción En Windows, Screen width devuelve el largo de la ventana de la aplicación 4D (ventana MDI). Si pasa el parámetro opcional *\**, Screen width devuelve el largo de la pantalla. @@ -26,4 +23,13 @@ En Macintosh, Screen width devuelve el largo de la pantalla principal, es decir #### Ver también [SCREEN COORDINATES](screen-coordinates.md) -[Screen height](screen-height.md) \ No newline at end of file +[Screen height](screen-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 187 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md index 3bf0040a66e218..3dd2e69fcecd8c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md @@ -96,4 +96,14 @@ Si no se seleccionó ningún archivo (por ejemplo, si el usuario hace clic en el #### Ver también [Open document](open-document.md) -[Select folder](select-folder.md) \ No newline at end of file +[Select folder](select-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 905 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md index 233b3ec7a4c9fa..c41061eb4d5c47 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md @@ -86,4 +86,14 @@ El siguiente ejemplo le permite seleccionar la carpeta en la cual se almacenará [CREATE FOLDER](create-folder.md) [FOLDER LIST](folder-list.md) -[Select document](select-document.md) \ No newline at end of file +[Select document](select-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 670 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md index be92c665c49e54..8fe315669783a6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SELECT LIST ITEMS BY POSITION selecciona el(los) elemento(s) cuya posición se pasa en *posicionElem* y opcionalmente en *posicionArray* en la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -74,4 +71,13 @@ Se seleccionan los elementos segundo, tercero y quinto de la lista jerárquica [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 381 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md index e694ad615c4ba0..524897e2a106e4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SELECT LIST ITEMS BY REFERENCE selecciona el o los elementos cuyo número de referencia se pasa en *refElem* y opcionalmente en *refArray*, en la lista cuyo número de referencia se pasa en *lista*. @@ -51,4 +48,13 @@ Si trabaja con los números de referencia de los elementos, asegúrese de constr [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 630 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md index 0d97697d8fe7c3..ab8be4f200ec95 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SELECT LOG FILE** crea, o cierra el archivo historial de acuerdo al valor que se pase en *historial*. @@ -40,4 +37,14 @@ Se genera el error -4447 si no se puede realizar la operación porque la base de #### Ver también -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 345 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md index 7a26b84c2071b4..08396da828d5e0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Select RGB Color muestra la ventana sistema de selección de color y devuelve el valor RGB del color seleccionado por el usuario. @@ -41,4 +38,15 @@ El efecto de la validación de esta caja de diálogo difiere dependiendo de la p #### Ver también -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 956 | +| Hilo seguro | ✗ | +| Modifica variables | OK | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md index f195ad5f92cdc6..cc6e30bd21e634 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Selected list items devuelve la posición o referencia del elemento seleccionado en la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -86,4 +83,13 @@ Esta es una lista llamada *hList,* mostrada en el entorno Aplicación: #### Ver también [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 379 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md index 890ca10c77f9f1..8067fbfbd4fb01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md @@ -34,4 +34,13 @@ El siguiente ejemplo guarda el número del registro actual de la selección en u *Acerca de números de registros* [GOTO SELECTED RECORD](goto-selected-record.md) -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 246 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md index 251967a99bd161..6bd5670416b539 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md @@ -107,4 +107,13 @@ Uso de los 50 primeros registros actuales de la tabla \[Facturas\] para cargar v [ON ERR CALL](on-err-call.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 368 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md index 90abce0415f634..2c3e38dbe98218 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md @@ -78,4 +78,13 @@ El mismo ejemplo puede escribirse: [MULTI SORT ARRAY](multi-sort-array.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 260 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md index 4851e3cf774c60..f28af9847ac761 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md @@ -90,4 +90,13 @@ Puede utilizar la sintaxis *template* para exportar campos de tablas diferentes: #### Ver también -[JSON TO SELECTION](json-to-selection.md) \ No newline at end of file +[JSON TO SELECTION](json-to-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1234 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/self.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/self.md index e8919eb216d02b..66d31ecf92ab34 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/self.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/self.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Nota de compatibilidad Este comando sólo se conserva por razones de compatibilidad. A partir de la versión 12 de 4D, se recomienda utilizar el comando OBJECT Get pointer. @@ -44,4 +41,13 @@ Ver el ejemplo del comando [RESOLVE POINTER](resolve-pointer.md "RESOLVE POINTER [OBJECT Get pointer](object-get-pointer.md) [RESOLVE POINTER](resolve-pointer.md) -[This ](this.md) \ No newline at end of file +[This ](this.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 308 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md index 272569b9f74d2f..8204eeb3079f2d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md @@ -146,4 +146,13 @@ Sintaxis: [CLEAR SEMAPHORE](clear-semaphore.md) *Semáforos y señales* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 143 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md index 0b44d7e800c647..c43b8c680986c4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md @@ -51,4 +51,13 @@ Desea enviar un mensaje a todos los usuarios y luego enviar un mensaje a un usua #### Ver también -[DROP REMOTE USER](drop-remote-user.md) \ No newline at end of file +[DROP REMOTE USER](drop-remote-user.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1632 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md index 5ab91fd41bed56..822435f9d32179 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md @@ -81,4 +81,13 @@ Este ejemplo ilustra el envío y recuperación de caracteres extendidos vía un [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 103 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md index 65ffe97099799f..d01793ffbf9378 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md @@ -33,4 +33,13 @@ Ver el ejemplo del comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD"). [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 78 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md index ad9fd2d42e5828..4c43ac0b917818 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md @@ -31,4 +31,13 @@ Ver el ejemplo del comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD"). [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 80 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md index 7433ab040bb954..59121c1f76e4b8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md @@ -58,4 +58,13 @@ El siguiente ejemplo es parte de un método de formulario. Estas líneas de cód *Acerca de números de registros* [Record number](record-number.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 244 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md index cc06ccb634df0b..36b7034d0fa126 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET ABOUT** cambia el comando de menú **Acerca de 4D** del menú **Ayuda** (Windows) o del menú **Aplicación** (Mac OS X) por *textoElem*. @@ -45,4 +42,13 @@ El siguiente ejemplo reinicializa el comando de menú Acerca de 4D: #### Ver también -[SET HELP MENU](set-help-menu.md) \ No newline at end of file +[SET HELP MENU](set-help-menu.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 316 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md index 38781894f0a228..fd7cdf50a42cdb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET APPLICATION COLOR SCHEME** define el esquema de color a utilizar a nivel de la aplicación para la sesión actual. Este esquema se aplicará a los formularios que no declaren ya un esquema específico (un esquema de color definido a nivel de formulario tiene prioridad sobre el nivel de aplicación). @@ -38,4 +35,13 @@ En el parámetro *esquemaColor*, pase un esquema de color a aplicar: #### Ver también [FORM Get color scheme](form-get-color-scheme.md) -[Get application color scheme](get-application-color-scheme.md) \ No newline at end of file +[Get application color scheme](get-application-color-scheme.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1762 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md index 937f34862be3a4..30b0e7f045f12c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md @@ -37,4 +37,13 @@ Desactivación de aserciones: [ASSERT](assert.md) [Asserted](asserted.md) -[Get assert enabled](get-assert-enabled.md) \ No newline at end of file +[Get assert enabled](get-assert-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1131 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md index 8487c82c14c720..f759321085b8c2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md @@ -43,4 +43,13 @@ El siguiente ejemplo vuelve automáticas todas las relaciones Muchos a Uno y res *Relaciones* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 310 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md index faf7b724366f4e..555a8359d5bcfc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md @@ -49,4 +49,13 @@ El siguiente ejemplo crea un BLOB de 16K lleno de 0xFF: #### Ver también -[BLOB size](blob-size.md) \ No newline at end of file +[BLOB size](blob-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 606 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md index 032e124af4f8b3..49061d28fc390c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md @@ -47,4 +47,13 @@ En el , usted desea definir una prioridad alta para la tabla \[Customer\]: #### Ver también [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) -[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) \ No newline at end of file +[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1425 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md index 9496ab83490942..2339b617575e51 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md @@ -38,4 +38,13 @@ Usted quiere añadir 100 MB al tamaño de la caché de su base actual. Puede esc #### Ver también -[Get cache size](get-cache-size.md) \ No newline at end of file +[Get cache size](get-cache-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1399 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md index e52b712a937ae5..b7333b6f0fc421 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md @@ -167,4 +167,14 @@ Ver los ejemplos de los comandos [RECEIVE BUFFER](receive-buffer.md "RECEIVE BUF [SEND PACKET](send-packet.md) [SEND RECORD](send-record.md) [SEND VARIABLE](send-variable.md) -[SET TIMEOUT](set-timeout.md) \ No newline at end of file +[SET TIMEOUT](set-timeout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 77 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md index 9bb9aa6548beaf..14fa8b909d4795 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET CURRENT PRINTER** designa la impresora a utilizar para imprimir con la aplicación 4D actual. @@ -54,4 +51,14 @@ Creación de un documento PDF bajo Windows: #### Ver también [Get current printer](get-current-printer.md) -[PRINTERS LIST](printers-list.md) \ No newline at end of file +[PRINTERS LIST](printers-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 787 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md index b1c2a6f3c9179a..c8ebe64b1e1142 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET CURSOR cambia el puntero (gráfico) del ratón por el del sistema cuyo número de identificación se pasa en *cursor*. @@ -62,3 +59,13 @@ Usted quiere que se muestre el cursor ![](../assets/en/commands/pict2478692.en.p     SET CURSOR(9019)  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 469 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md index 4deb0ea8f0f3a7..ae7b5bb9ba564f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET DATABASE LOCALIZATION utilizado para modificar el lenguaje actual de la base para la sesión actual. @@ -71,4 +68,14 @@ La interfaz de su aplicación utiliza la cadena estática ":xliff:shopping". Los #### Ver también -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1104 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md index e9ce2f51a0e637..fdc19fe2f45f01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET DATABASE PARAMETER** permite modificar varios parámetros internos de la base de datos 4D. @@ -147,4 +144,13 @@ Usted quiere exportar datos en JSON que contienen una fecha 4D convertida. Note [Get database parameter](get-database-parameter.md) [LOG EVENT](log-event.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 642 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md index 6e5650435375e8..7957c67b6e1a1a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md @@ -64,3 +64,13 @@ En todos los casos: * 25/01/2007 significa enero 25, 2007 Este comando afecta sólo la entrada de datos. No tiene ningún efecto en el almacenamiento de datos, cálculos, etc. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 392 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md index 70341fc6ffd967..84785f2e634baf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md @@ -29,4 +29,13 @@ Dependiendo del ancla puede pasar valores positivos o negativos en *offset*. [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 482 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md index d31b455c92d0ce..330e1bd0289aa9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md @@ -34,4 +34,14 @@ Las fechas y horas de creación y última modificación son administradas por el #### Ver también -[GET DOCUMENT PROPERTIES](get-document-properties.md) \ No newline at end of file +[GET DOCUMENT PROPERTIES](get-document-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 478 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md index f011142f0ebac2..706e676a507d3e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md @@ -26,4 +26,13 @@ En Macintosh, se modifica el tamaño del data fork del documento. [Get document position](get-document-position.md) [Get document size](get-document-size.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 480 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md index 4ebd721ba1289f..0dfe536a83bbbf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET DRAG ICON** asocia la imagen de icono al cursor durante las operaciones de arrastrar y soltar que se manejan por programación. @@ -59,4 +56,13 @@ Note que puede modificar la posición del cursor con respecto a la imagen: #### Ver también -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1272 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md index 81e075f5a0cc9e..3946c2374eea61 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md @@ -41,4 +41,13 @@ Consulte los ejemplos del comando [LAUNCH EXTERNAL PROCESS](launch-external-proc #### Ver también -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 812 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md index 27c63d1d23d8a5..d20e00df8799b2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md @@ -56,4 +56,13 @@ Usted desea guardar el contenido de un archivo existente en el campo imagen, alm #### Ver también [Get external data path](get-external-data-path.md) -[RELOAD EXTERNAL DATA](reload-external-data.md) \ No newline at end of file +[RELOAD EXTERNAL DATA](reload-external-data.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1134 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md index 35f870cca3ba61..de13cfa8b94b40 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md @@ -53,4 +53,14 @@ El siguiente código permite definir sólo las relaciones útiles como automáti [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 919 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md index 480485f3b142b5..b17fb5fb685b48 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **SET FIELD TITLES** permite ocultar, renombrar y reorganizar los campos de la tabla pasada en *tabla* cuando aparecen en las cajas de diálogo estándar de 4D, tal como el editor de búsquedas, en el entorno Aplicación(es decir, cuando el modo de inicio es **Aplicación**, o después de seleccionar **Probar aplicación** en el menú **Ejecutar**). @@ -62,4 +59,13 @@ Ver el ejemplo del comando [SET TABLE TITLES](set-table-titles.md "SET TABLE TIT [GET FIELD TITLES](get-field-titles.md) [Last field number](last-field-number.md) [Parse formula](parse-formula.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 602 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md index f06d604e0a7b91..703421f3f91054 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md @@ -27,4 +27,13 @@ El valor NULL es utilizado por el motor SQL de 4D. Para mayor información, cons #### Ver también [Is field value Null](is-field-value-null.md) -[Null](null.md) \ No newline at end of file +[Null](null.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 965 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md index 1d0e72034caece..b05ea26a4e0390 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET FILE TO PASTEBOARD añade al portapapeles la ruta de acceso completa del archivo pasada en el parámetro *archivo*. Este comando permite crear interfaces permitiendo arrastrar y soltar objetos 4D a los archivos en el escritorio por ejemplo. @@ -29,4 +26,13 @@ El comando admite el asterisco *\** como parámetro opcional. Por defecto, cuand #### Ver también -[Get file from pasteboard](get-file-from-pasteboard.md) \ No newline at end of file +[Get file from pasteboard](get-file-from-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 975 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md index c987faa3b2304a..b2d883daba3a54 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md @@ -43,4 +43,14 @@ Desea promocionar al usuario actual a los grupos "admin" y "plugins" para la ses [Get group access](get-group-access.md) [Get plugin access](get-plugin-access.md) [SET PLUGIN ACCESS](set-plugin-access.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1737 | +| Hilo seguro | ✓ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md index 5aec95650c7ca3..d38d25cca6c140 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Set group properties permite modificar y actualizar las propiedades de un grupo existente cuyo número de referencia único se pasa en *refGrupo*, o para añadir un nuevo grupo. @@ -58,4 +55,14 @@ Si no tiene privilegios de acceso para llamar al comando Set group properties o [GET GROUP LIST](get-group-list.md) [GET GROUP PROPERTIES](get-group-properties.md) -[GET USER LIST](get-user-list.md) \ No newline at end of file +[GET USER LIST](get-user-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 614 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md index 16be7537181c9d..b00085c418a932 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET HELP MENU** le permite reemplazar el menú **Ayuda** por defecto de 4D por la colección de elementos del menù *menuCol* del modo aplicación. @@ -33,7 +30,7 @@ En *menuCol*, pase una colección de objetos de menú que definan todos los elem | --------------------------- | ----------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | title | Text | Nombre del elemento de menú | | method | Text \| [4D.Function](https://developer.4d.com/docs/API/FunctionClass#about-4dfunction-objects) | Nombre del método proyecto u objeto fórmula 4D a ejecutar cuando se selecciona el elemento de menú. Cuando se utiliza esta propiedad, no se debe pasar la propiedad "action" (de lo contrario se ignora "method"). | -| worker | Text \| Number | Nombre del worker o Número del proceso que se encargará de la ejecución del código del "método". Se soportan varias configuraciones, dependiendo del valor de la propiedad "worker":
si es un nombre de worker (Text), 4D utiliza o crea este worker para ejecutar el "método" (equivalente a [CALL WORKER](call-worker.md)) si es un número de proceso, 4D utiliza este proceso si existe, en caso contrario no hace nada (equivalente a [CALL WORKER](call-worker.md)) si no está definido y la aplicación muestra un diálogo actual (frontmost dialog), 4D utiliza el proceso de este diálogo (equivalente a [CALL FORM](../commands/call-form.md)) si no está definido y la aplicación no muestra un diálogo actual, 4D llama y utiliza el worker1 (4D remoto/mono usuario) o el worker *4D\_server\_interface* (4D Server) | +| worker | Text \| Number | Nombre del worker o Número del proceso que se encargará de la ejecución del código del "método". Se soportan varias configuraciones, dependiendo del valor de la propiedad "worker":
si es un nombre de worker (Text), 4D utiliza o crea este worker para ejecutar el "método" (equivalente a [CALL WORKER](call-worker.md)) si es un número de proceso, 4D utiliza este proceso si existe, en caso contrario no hace nada (equivalente a [CALL WORKER](call-worker.md)) si no está definido y la aplicación muestra un diálogo actual (frontmost dialog), 4D utiliza el proceso de este diálogo (equivalente a [CALL FORM](call-form.md)) si no está definido y la aplicación no muestra un diálogo actual, 4D llama y utiliza el worker1 (4D remoto/mono usuario) o el worker *4D\_server\_interface* (4D Server) | | action | Text | *Acción estándar* a ejecutar cuando el elemento de menú es seleccionado. Cuando se utiliza esta propiedad, la propiedad "method" se ignora si se pasa. | | shortcutKey | Text | Tecla de acceso directo del elemento (para llamar con la tecla Ctrl/Comando) | | shortcutShift | Boolean | True para añadir la tecla **Mayús** al acceso directo del elemento | @@ -61,4 +58,13 @@ Desea personalizar el menú **Ayuda** de su aplicación: #### Ver también -[SET ABOUT](set-about.md) \ No newline at end of file +[SET ABOUT](set-about.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1801 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md index 775c7cbf50ba96..c8372be662b200 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md @@ -47,4 +47,13 @@ En el , usted desea definir una alta prioridad para los índices campo \[Cliente #### Ver también [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) -[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) \ No newline at end of file +[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1401 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md index 84c43369c8ca3b..ed1aca03be0a30 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md @@ -88,4 +88,13 @@ Creación de un índice de palabras claves: [DELETE INDEX](delete-index.md) [GET FIELD PROPERTIES](get-field-properties.md) [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 344 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md index 330c4262121866..be453334242568 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET LIST ITEM FONT modifica la fuente de caracteres del elemento especificado por el parámetro *refElem* de la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -44,4 +41,13 @@ Aplicar la fuente Times al elemento actual de la lista: [Get list item font](get-list-item-font.md) [OBJECT SET FONT](object-set-font.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 953 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md index 001f797a920a08..2b6a9c000ceef0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET LIST ITEM ICON permite modificar el icono asociado al elemento especificado por el parámetro *refElem* de la lista cuyo número de referencia o nombre de objeto se pasa en *lista* @@ -48,4 +45,13 @@ Queremos asignar la misma imagen a dos elementos diferentes. El siguiente códig [SET LIST ITEM](set-list-item.md) [SET LIST ITEM FONT](set-list-item-font.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 950 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md index 375b9d66be7552..bec6368994fd01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET LIST ITEM PARAMETER permite modificar el parámetro *selector* para el elemento *refElem* de la lista jerárquica cuya referencia o nombre de objeto se pasa en el parámetro *lista*. @@ -63,4 +60,13 @@ Usted desea definir como lista de opciones de un menú emergente jerárquico una [Action info](action-info.md) [GET LIST ITEM PARAMETER](get-list-item-parameter.md) [GET LIST ITEM PARAMETER ARRAYS](get-list-item-parameter-arrays.md) -[INSERT IN LIST](insert-in-list.md) \ No newline at end of file +[INSERT IN LIST](insert-in-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 986 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md index a49cd1cb237a14..9d4865fea73ee9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET LIST ITEM PROPERTIES** modifica el elemento designado por el parámetro *refElem* de la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -79,4 +76,13 @@ El siguiente ejemplo cambia el texto del elemento actual de *lista* a negrita y [GET LIST ITEM PROPERTIES](get-list-item-properties.md) *Listas jerárquicas* [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 386 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md index 9bea13f7bc8bd4..d2876196e77c01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET LIST ITEM modifica el elemento designado por el parámetro *refElem* en la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -79,4 +76,13 @@ Ver ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST"). [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [SET LIST ITEM FONT](set-list-item-font.md) [SET LIST ITEM ICON](set-list-item-icon.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 385 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md index 369b4acc7bd478..92f19c7180a053 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET LIST PROPERTIES** define el alto de línea y el funcionamiento de las lista jerárquica cuya referencia se pasa en el parámetro *lista*. @@ -67,4 +64,13 @@ Desea rechazar la sublista de expandir/contraer al hacer doble clic. Puede escri [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [GET LIST PROPERTIES](get-list-properties.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 387 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md index 9d8669f4998b06..20b64e7fe2da67 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MACRO PARAMETER inserta el texto *paramText* en el método desde el cual se llama. @@ -59,4 +56,13 @@ Esta macro crea un nuevo texto que será devuelto al método llamante: #### Ver también -[GET MACRO PARAMETER](get-macro-parameter.md) \ No newline at end of file +[GET MACRO PARAMETER](get-macro-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 998 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md index 286111a7402e42..cf1b72f51c504f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción MENU BAR reemplaza la barra de menús actual con la especificada por *barra* en el proceso actual únicamente. En el parámetro *barra*, puede pasar el número o nombre de la nueva barra. Igualmente puede pasar una referencia única de menú (tipo [MenuRef](# "Unique ID (16-character alphanumeric) of a menu"), cadena de 16 caracteres). Cuando trabaja con referencias, los menús pueden ser utilizados como barras de menú y viceversa (ver la sección *Gestión de menús*). @@ -120,4 +117,13 @@ En este ejemplo, crearemos por programación, una barra de menús incluyendo los #### Ver también -*Gestión de menús* \ No newline at end of file +*Gestión de menús* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 67 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md index ec6b1299cb7b68..f1623fcfb6ad40 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET MENU ITEM ICON** permite modificar el icono asociado a la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -45,4 +42,13 @@ Uso de una imagen ubicada en la carpeta Resources de la base: #### Ver también -[GET MENU ITEM ICON](get-menu-item-icon.md) \ No newline at end of file +[GET MENU ITEM ICON](get-menu-item-icon.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 984 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md index 1115180a2fcdcf..dad11fabc54ad5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MENU ITEM MARK cambia la marca del elemento de menú cuyo número o referencia de menú se pasa en *menu* y cuyo número de línea se pasa en *menuItem* al primer carácter de la cadena pasada en *marca*. Puede pasar -1 en *menuItem* para designar la última línea añadida al menú. @@ -38,4 +35,14 @@ Ver ejemplo para el comando [Get menu item mark](get-menu-item-mark.md "Get menu #### Ver también -[Get menu item mark](get-menu-item-mark.md) \ No newline at end of file +[Get menu item mark](get-menu-item-mark.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 208 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md index 3786228a67da2c..0bf2805dcc79c9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MENU ITEM METHOD puede utilizarse para modificar el método de proyecto 4D asociado a la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -37,4 +34,13 @@ Consulte el ejemplo del comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR"). #### Ver también -[Get menu item method](get-menu-item-method.md) \ No newline at end of file +[Get menu item method](get-menu-item-method.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 982 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md index 69fcbadd90e353..7ba75dd9a0269d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MENU ITEM PARAMETER permite asociar una cadena de caracteres personalizada con una línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -43,4 +40,13 @@ Este código ofrece un menú que incluye los nombres de las ventanas abiertas y [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[Get selected menu item parameter](get-selected-menu-item-parameter.md) \ No newline at end of file +[Get selected menu item parameter](get-selected-menu-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1004 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md index 8c60c0e7f8941c..2477bc70957f55 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET MENU ITEM PROPERTY** permite fijar el *valor* de la propiedad para la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -47,4 +44,13 @@ En el caso de la propiedad Associated standard action, puede pasar en el paráme #### Ver también [Dynamic pop up menu](dynamic-pop-up-menu.md) -[GET MENU ITEM PROPERTY](get-menu-item-property.md) \ No newline at end of file +[GET MENU ITEM PROPERTY](get-menu-item-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 973 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md index 7cfc98c1f665d8..bb5b4ad2c01568 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET MENU ITEM SHORTCUT** asigna un nuevo acceso directo a un elemento del menú. @@ -79,4 +76,14 @@ Definición del atajo de teclado F4 para la opción de menú "Cerrar": #### Ver también [Get menu item key](get-menu-item-key.md) -[Get menu item modifiers](get-menu-item-modifiers.md) \ No newline at end of file +[Get menu item modifiers](get-menu-item-modifiers.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 423 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md index 85b80d14883b35..9cec5f5c6b2569 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MENU ITEM STYLE cambia el estilo de la fuente de la línea de menú cuyo número o referencia de menú se pasa en *menu* y cuyo número de elemento se pasa en *menuItem* de acuerdo al estilo de fuente pasado en *itemEstilo*. Puede pasa -1 en *menuItem* para indicar el último elemento añadido a *menu*. @@ -40,4 +37,14 @@ En el parámetro *itemEstilo* puede definir el estilo del elemento. Pase una com #### Ver también -[Get menu item style](get-menu-item-style.md) \ No newline at end of file +[Get menu item style](get-menu-item-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 425 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md index 13815238d92ad2..3026bde70097e9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MENU ITEM cambia el texto de la línea de menú cuyo número o referencia de menú se pasa en *menu* y cuyo número de elemento se pasa en *menuItem*, para el texto que pasó en *itemText*. Puede pasar -1 en *menuItem* para designar el último elemento añadido a *menu*. @@ -34,4 +31,14 @@ Si omite el parámetro *proceso*, SET MENU ITEM se aplica a la barra de menús d [APPEND MENU ITEM](append-menu-item.md) [Get menu item](get-menu-item.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 348 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md index bb33611171f3b9..4ac3f550103b4b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md @@ -25,4 +25,13 @@ El nombre por defecto se utiliza como nombre de archivo cuando la imagen se expo #### Ver también [Get picture file name](get-picture-file-name.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1172 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md index dfe669e3aa0623..1004d1de12c731 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md @@ -81,4 +81,14 @@ Cuanto todos los metadatos se manipulan vía una referencia de elementos DOM, la [GET PICTURE KEYWORDS](get-picture-keywords.md) [GET PICTURE METADATA](get-picture-metadata.md) *Nombres de metadatos imágenes* -*Picture Metadata Values* \ No newline at end of file +*Picture Metadata Values* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1121 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md index e72babc0d9f7ed..4a33880f0fdb1d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET PICTURE TO LIBRARY crea una nueva imagen o reemplaza una imagen existente en la librería de imágenes. @@ -94,4 +91,15 @@ Si no hay suficiente memoria para añadir la imagen a la librería de imágenes, [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) \ No newline at end of file +[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 566 | +| Hilo seguro | ✗ | +| Modifica variables | error | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md index 49e38392d9d4b8..202a7265523ab1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción SET PICTURE TO PASTEBOARD limpia el portapapeles y coloca una copia de la imagen que usted pasó en *imagen* en el portapapeles. @@ -50,4 +47,14 @@ Si no hay suficiente memoria para colocar una copia de la imagen en el portapape #### Ver también [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) \ No newline at end of file +[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 521 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md index d3f1c900ebcd92..cebdca8a390a61 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET PLUGIN ACCESS permite especificar por programación el grupo de usuarios autorizado a utilizar cada plug-in “serializado” instalado en la base. Al hacer esto, puede administrar la repartición de las licencias de los plug-ins. @@ -45,4 +42,13 @@ Pase en el parámetro *grupo* el nombre del grupo cuyos usuarios están autoriza [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 845 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md index 6477b13b2dd5c2..ed2979ff3b884f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET PRINT MARKER permite definir la posición de un marcador durante la impresión. Combinado con los comandos [Get print marker](get-print-marker.md "Get print marker"), [OBJECT MOVE](object-move.md "OBJECT MOVE") o [Print form](../commands/print-form.md "Print form"), este comando le permite ajustar el tamaño de las áreas de impresión. @@ -183,4 +180,13 @@ El método de formulario List\_Imp3 es el siguiente: [PAGE BREAK](page-break.md) [Print form](../commands/print-form.md) [PRINT RECORD](print-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 709 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md index 44c2ff0520945a..f94fb47b07a22c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET PRINT OPTION** se utiliza para modificar por programación el valor de una opción de impresión. Cada opción definida utilizando este comando se aplica a los [parámetros de impresión actuales 4D](https://developer.4d.com/docs/settings/compatibility/) siempre que no se llame otro comando que modifique los parámetros de impresión ([PRINT SETTINGS](print-settings.md), [PRINT SELECTION](print-selection.md) sin el parámetro *\>* parámetro, etc.). Si se ha abierto un trabajo de impresión (por ejemplo con [OPEN PRINTING JOB](open-printing-job.md)), la opción se define para el trabajo y no puede modificarse mientras el trabajo no haya finalizado (excepto para Orientation option, ver más adelante). @@ -81,4 +78,14 @@ Si el valor pasado por una *opción* es incorrecto o si no está disponible en l *Opciones de impresión* [Print form](../commands/print-form.md) [PRINT OPTION VALUES](print-option-values.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 733 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md index d074744da313f7..864c28c5e598a1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **SET PRINT PREVIEW** le permite seleccionar o deseleccionar por programación la opción de previsualización en pantalla de la caja de diálogo de impresión. Si pasa TRUE en *vista previa*, se selecciona Previsualización en pantalla, si pasa FALSE, se deseleccionará. Este parámetro es local para un proceso y no afecta la impresión de otros procesos o usuarios. @@ -38,4 +35,13 @@ El siguiente ejemplo selecciona la opción Previsualización en pantalla para mo #### Ver también [Get print preview](get-print-preview.md) -[Is in print preview](is-in-print-preview.md) \ No newline at end of file +[Is in print preview](is-in-print-preview.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 364 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md index ce798205e1aed7..d0b4b1054b1070 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET PRINTABLE MARGIN \[#descv\]permite asignar los valores de varias márgenes de impresión utilizando los comandos [Print form](../commands/print-form.md), [PRINT SELECTION](print-selection.md) y [PRINT RECORD](print-record.md). @@ -59,4 +56,13 @@ El siguiente ejemplo le permite obtener el tamaño del papel: [GET PRINTABLE MARGIN](get-printable-margin.md) [Get printed height](get-printed-height.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 710 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md index b39a9c52b84571..dcf153ac969169 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET PROCESS VARIABLE escribe las variables proceso *dstVar* (*dstVar2*, etc.) del proceso de destino cuyo número se pasa en *proceso* utilizando los valores pasados en *expr1* (*expr2*, etc.). @@ -98,4 +95,13 @@ Este ejemplo escribe la instancia de las variables *v1*, *v2* y *v3* utilizando [GET PROCESS VARIABLE](get-process-variable.md) [POST OUTSIDE CALL](post-outside-call.md) *Procesos* -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 370 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md index 372e28c20e51f7..e8e11ff3f46bd0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md @@ -68,4 +68,14 @@ Si el comando no se llama en el contexto de una transacción, se genera un error #### Ver también -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 661 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md index 12c4880f81f1c2..14129ce1024d97 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md @@ -250,4 +250,13 @@ Después de implementar este método de proyecto en su aplicación, puede escrib [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 396 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md index ae490b0557231c..8379e5cc2eb783 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md @@ -62,4 +62,13 @@ Ver el segundo ejemplo del comando [SET QUERY DESTINATION](set-query-destination [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 395 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md index b259c377f3ddfa..819e9784a46d42 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET REAL COMPARISON LEVEL** define el valor epsilon utilizado por 4D para hacer comparaciones de igualdad de valores y expresiones de tipo real. @@ -37,3 +34,13 @@ Utilizando **SET REAL COMPARISON LEVEL**, puede aumentar o reducir el valor epsi **IMPORTANTE:** cambiar el epsilon sólo afecta la comparación de igualdad de reales. No tiene efecto en los otros cálculos y visualizaciones de valores reales. **Nota:** el comando **SET REAL COMPARISON LEVEL** no tiene efecto en las búsquedas y ordenaciones efectuadas con los campos de tipo real. Eso aplica únicamente al lenguaje de 4D. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 623 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md index 4ff35f510b4347..483e0e261865db 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET RECENT FONTS** modifica la lista de fuentes recientes que aparecen en el menú contextual de las "fuentes recientes" . @@ -43,4 +40,13 @@ Luego el menú contiene: #### Ver también -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1305 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md index 01ec86ffab76b2..cb3c9b7790a987 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md @@ -48,4 +48,13 @@ En el , usted desea definir una prioridad alta para el dato escalar \[Customer\] [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) -[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) \ No newline at end of file +[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1400 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md index 9166443030c0bf..25efeb2e28b624 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción SET TABLE TITLES permite ocultar, renombrar y reordenar las tablas de su base cuando aparecen en las cajas de diálogo estándar de 4D en el entorno Aplicación(es decir, cuando el modo de inicio es **Aplicación**, o después de seleccionar **Probar aplicación** en el menú **Ejecutar**). Por ejemplo, este comando puede modificar la visualización de tablas en el editor búsquedas en modo Aplicación. @@ -184,4 +181,13 @@ Desea eliminar todos los nombres de tablas y campos personalizados definidos: [GET TABLE TITLES](get-table-titles.md) [Parse formula](parse-formula.md) [SET FIELD TITLES](set-field-titles.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 601 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md index e7957db6824ab5..3519fd132252da 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción SET TEXT TO PASTEBOARD limpia el portapapeles y luego coloca una copia del texto en *texto* en el portapapeles. @@ -39,4 +36,14 @@ Si el texto se coloca correctamente en el portapapeles, la variable OK toma el v #### Ver también [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 523 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md index 23473022b80f43..8e6b5a431c800d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md @@ -48,4 +48,14 @@ El siguiente ejemplo fija el puerto serial para recibir datos y el timeout. Los [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) [RECEIVE RECORD](receive-record.md) -[RECEIVE VARIABLE](receive-variable.md) \ No newline at end of file +[RECEIVE VARIABLE](receive-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 268 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md index f3b540e32c0f0b..cf684f279b9e9c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET TIMER permite activar el evento de formulario On Timer y fijar, para el proceso y formulario actual, el número de tics (1 tic = 1/60 de segundo) entre cada evento de formulario On Timer. @@ -47,4 +44,13 @@ Imaginemos que usted quiere, cuando un formulario aparece en pantalla, que el or #### Ver también [Form event code](../commands/form-event-code.md) -[REDRAW](redraw.md) \ No newline at end of file +[REDRAW](redraw.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 645 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md index 25418d85b365df..0df5926bfe7e74 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET UPDATE FOLDER** especifica la carpeta que contiene la actualización de la aplicación 4D fusionada actual. Esta información se almacena en la sesión 4D hasta que se llama el método [RESTART 4D](restart-4d.md). Si se sale de la aplicación manualmente, esta información no se conserva. @@ -55,4 +52,14 @@ Usted creó una carpeta "MyUpdates" en su disco, en la cual ubicó una nueva ver #### Ver también [Get last update log path](get-last-update-log-path.md) -[RESTART 4D](restart-4d.md) \ No newline at end of file +[RESTART 4D](restart-4d.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1291 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md index cd8391cd75829e..c1ccb41541a589 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md @@ -39,4 +39,14 @@ Sus usuarios se administran a través de una tabla personalizada y utilizan la m [CHANGE CURRENT USER](change-current-user.md) [Current user](current-user.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1666 | +| Hilo seguro | ✓ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md index b42a2ca55d6f50..75616081648c58 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Set user properties permite modificar y actualizar las propiedades de una cuenta activa de usuario existente cuyo número de referencia se pasa en el parámetro *refUsuario* o para añadir un nuevo usuario. @@ -64,4 +61,13 @@ Si no tiene privilegios de acceso para llamar al comando Set user properties o s [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 612 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md index 12f068cd5c7cd4..d96282433bab09 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET WINDOW RECT** cambia las coordenadas globales de la ventana cuyo número de referencia se pasa en *ventana*. Si la ventana no existe, el comando no hace nada. @@ -63,4 +60,13 @@ La ventana aparece de esta forma: [CONVERT COORDINATES](convert-coordinates.md) [DRAG WINDOW](drag-window.md) [GET WINDOW RECT](get-window-rect.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 444 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md index d27f283e7c75b1..2e1add9a268081 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET WINDOW TITLE cambia el título de la ventana cuyo número de referencia se pasa en *ventana* para el texto pasado en *titulo* (longitud máxima 80 caracteres). @@ -51,4 +48,13 @@ Mientras efectúa una entrada de datos en un formulario, usted hace clic en un b #### Ver también -[Get window title](get-window-title.md) \ No newline at end of file +[Get window title](get-window-title.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 213 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md index eff9a8816edbe6..5dda87198c257a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md @@ -50,4 +50,13 @@ El siguiente método de objeto para el botón *bUnBoton* efectúa diferentes acc [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 543 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md index f471050fdb2498..adcc2a91144d23 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SHOW MENU BAR hace visible la barra de menús. @@ -29,4 +26,14 @@ Ver el ejemplo del comando [HIDE MENU BAR](hide-menu-bar.md "HIDE MENU BAR"). [HIDE MENU BAR](hide-menu-bar.md) [HIDE TOOL BAR](hide-tool-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 431 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md index 388a0ee7b5b485..18bddd33587255 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md @@ -47,3 +47,14 @@ Los siguientes ejemplos ilustran el funcionamiento del comando: #### Variables y conjuntos del sistema La variable sistema OK toma el valor 1 si el comando se ejecuta correctamente, de lo contrario toma el valor 0\. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 922 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md index 04b44c6a18fdee..30576291c96e22 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción SHOW PROCESS muestra todas las ventanas que pertenecen a *proceso*. Este comando no trae las ventanas de *proceso* al primer plano. Para hacer esto, utilice el comando [BRING TO FRONT](bring-to-front.md "BRING TO FRONT"). @@ -33,4 +30,13 @@ El siguiente ejemplo muestra un proceso llamado Clientes, que se ha ocultado pre [BRING TO FRONT](bring-to-front.md) [HIDE PROCESS](hide-process.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 325 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md index 5cee6621653425..7da018c4dc8018 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SHOW TOOL BAR** maneja la visualización de las barras de herramientas personalizadas creadas por el comando [Open form window](open-form-window.md) para el proceso actual. @@ -27,4 +24,13 @@ Consulte el ejemplo del comando [HIDE TOOL BAR](hide-tool-bar.md). #### Ver también -[HIDE TOOL BAR](hide-tool-bar.md) \ No newline at end of file +[HIDE TOOL BAR](hide-tool-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 433 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md index 7c06af33711992..60d7d678c11f5d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SHOW WINDOW permite mostrar la ventana cuyo número se pasó en *ventana*. Si se omite este parámetro, se mostrará la ventana del primer plano del proceso actual. @@ -28,4 +25,13 @@ Consulte el ejemplo del comando [HIDE WINDOW](hide-window.md "HIDE WINDOW"). #### Ver también -[HIDE WINDOW](hide-window.md) \ No newline at end of file +[HIDE WINDOW](hide-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 435 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sin.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sin.md index 5f0825a3bd2cbc..6170addc409a60 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sin.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sin.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descripción -Sin devuelve el seno del *número*, donde *número* se expresa en radianes. - -**Nota:** 4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). +Sin devuelve el seno del *número*, donde *número* se expresa en radianes.4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). #### Ver también [Arctan](arctan.md) [Cos](cos.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 17 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md index 448182199e1c88..0eb1c738d72eb4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md @@ -45,4 +45,13 @@ El siguiente ejemplo devuelve el número de columnas de una fila en un array bid #### Ver también [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 274 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md index 9f90f0a62f3fed..c7e9a902f6d703 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md @@ -197,4 +197,13 @@ Este ejemplo illustra los resultados de los diferentes tipos de declaraciones: [Is data file locked](is-data-file-locked.md) [SOAP get info](soap-get-info.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 782 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md index 9a7ffab41f946b..392090107f1c4d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md @@ -32,4 +32,13 @@ Pase en el parámetro *numInfo* el número del tipo de información SOAP que qui #### Ver también [SET DATABASE PARAMETER](set-database-parameter.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 784 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md index 21d79cdbf319d1..51fa9c3d9ea0fd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md @@ -37,4 +37,13 @@ Desea rechazar cualquier solicitud nueva a su servidor de servicios web: #### Ver también [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[WEB Get server info](web-get-server-info.md) \ No newline at end of file +[WEB Get server info](web-get-server-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1636 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md index 588a919762b731..99bb25236f8d05 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md @@ -42,4 +42,13 @@ Regresando al ejemplo del servicio Web “Raiz\_cuadrada” de la descripción d #### Ver también [SOAP DECLARATION](soap-declaration.md) -[SOAP get info](soap-get-info.md) \ No newline at end of file +[SOAP get info](soap-get-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 781 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md index 89575bb9b1db6d..b55c11724672d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md @@ -18,8 +18,6 @@ displayed_sidebar: docs El comando SORT ARRAY ordena uno o más arrays en orden ascendente o descendente. -**Notas:** - * No es posible ordenar arrays de tipo [Puntero](# "A reference to another variable (including arrays and array elements), table, or field") o [Imagen](# "Can be any Windows or Macintosh picture"). Puede ordenar los elementos de un array bidimensional (es decir, *a2DArray{$vlEsteElem}*) pero no puede ordenar el array bidimensional en sí mismo (es decir, *a2DArray*). * Puede ordenar arrays [Objeto](# "Datos estructurados como forma de objeto nativo 4D"). Los elementos null se agrupan y los elementos del array se ordenan con un orden interno. @@ -81,4 +79,13 @@ Usted visualiza los nombres de una tabla *\[Personas\]* en una ventana flotante. [Find in sorted array](find-in-sorted-array.md) [MULTI SORT ARRAY](multi-sort-array.md) [ORDER BY](order-by.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 229 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md index 17ce5a1795cf4d..dfabfa670d6430 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SORT LIST ordena la lista cuyo número de referencia se pasa en *lista*. @@ -58,4 +55,13 @@ La lista se ve de esta forma: #### Ver también -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 391 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md index dd5521b2b08b02..483f10ee2e859e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL ADD TO USER DICTIONARY** añade una o más palabras al diccionario usuario actual. @@ -38,4 +35,13 @@ Adición de nombres propios al diccionario de usuario: #### Ver también -[SPELL CHECK TEXT](spell-check-text.md) \ No newline at end of file +[SPELL CHECK TEXT](spell-check-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1214 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md index 65c90cfff5f11b..afaa5efbd9a247 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL CHECK TEXT** verifica el contenido del parámetro *texto* a partir del carácter *posVerif* y devuelve la posición de la primera palabra desconocida encontrada (si la hay). @@ -54,4 +51,14 @@ Queremos contar el número posible de errores en un texto: #### Ver también [SPELL ADD TO USER DICTIONARY](spell-add-to-user-dictionary.md) -[SPELL CHECKING](spell-checking.md) \ No newline at end of file +[SPELL CHECKING](spell-checking.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1215 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md index 096e2e6a140d94..3de08a5f018638 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL CHECKING** activa la revisión ortográfica del campo o variable que tiene el foco en el formulario en pantalla. El objeto verificado debe ser de tipo Alfa o Texto. @@ -35,4 +32,13 @@ La verificación ortográfica comienza con la primera palabra del campo o variab #### Ver también [SPELL CHECK TEXT](spell-check-text.md) -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 900 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md index 42cfb943fc8a02..cb21338ac4a355 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL Get current dictionary** devuelve el número de ID del diccionario que está siendo utilizado. @@ -35,4 +32,13 @@ Queremos mostrar el lenguaje del diccionario actual: #### Ver también -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1205 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md index 3b03f6ec50b1e9..6226bbf0c1ba9a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL GET DICTIONARY LIST** devuelve en los arrays *lengID*, *lengArchivos* y *lengNoms*, los IDs, los nombres de archivos y los nombres de lenguajes correspondientes a los archivos de diccionarios Hunspell instalados en el equipo. @@ -53,4 +50,13 @@ Usted pone "fr-classic+reform1990.aff" y "fr-classic+reform1990.dic" como tambi #### Ver también -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1204 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md index 64a93117ff4788..f51d42aa269afd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL SET CURRENT DICTIONARY** reemplaza el diccionario actual por el especificado en el parámetro *diccionario*. El diccionario actual se utiliza para la corrección ortográfica integrada de 4D (para mayor información, consulte el *Manual de Diseño*) como también de 4D Write Pro. La modificación del diccionario actual repercute inmediatamente en todos los procesos de la base para la sesión, así como también en las áreas 4D Write Pro. @@ -52,4 +49,14 @@ Carga del diccionario "fr-classic" presente en la carpeta Hunspell: [SPELL CHECKING](spell-checking.md) [SPELL Get current dictionary](spell-get-current-dictionary.md) -[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) \ No newline at end of file +[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 904 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md index df6b85433f0452..39b0a30ff3b0f7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md @@ -56,4 +56,13 @@ El parámetro *separador* puede ser una cadena de múltiples caracteres: #### Ver también -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1554 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md index 793c3feda9efc6..0096f9ee9ac30c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL CANCEL LOAD finaliza la solicitud SELECT actual e inicializa los parámetros. @@ -53,4 +50,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\. #### Ver también [SQL LOAD RECORD](sql-load-record.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 824 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md index c86f935a3b8d61..4dc54cfcbeda23 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL End selection se utiliza para determinar si los límites del resultado obtenido se han alcanzado. @@ -40,3 +37,13 @@ El código a continuación se conecta a una fuente de datos externos (Oracle) ut ``` Este código devolverá en la variable 4D *vNombre* los nombres (ename) almacenados en la tabla emp. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 821 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md index c9c93c6e3aac1f..b9f451096844cc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL EXECUTE SCRIPT permite ejecutar una serie de instrucciones SQL ubicadas en el archivo de script designado por *rutaScript*. @@ -60,3 +57,14 @@ Si el script se ejecuta correctamente (no se encuentra ningún error), la variab * Si *errorAction* es SQL On error continue (valor 3), la variable *OK* siempre toma el valor 1\. **Nota:** si utiliza este comando para ejecutar acciones consumidoras de memoria tales como importación masiva de datos, puede considerar llamar al comando SQL ALTER DATABASE para desactivar temporalmente las opciones SQL. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1089 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md index 1e3c2e952ddfe9..a9249614e714b6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL EXECUTE se utiliza para ejecutar un comando SQL y asociar el resultado a objetos 4D (arrays, variables o campos). @@ -159,4 +156,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK devuelve 1, de lo #### Ver también -[SQL LOAD RECORD](sql-load-record.md) \ No newline at end of file +[SQL LOAD RECORD](sql-load-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 820 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md index 0619314477ca28..b9f8672f563df1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL EXPORT DATABASE exporta al formato SQL todos los registros de todas las tablas de la base. En SQL, esta operación de exportación global se llama "Dump". @@ -57,4 +54,14 @@ Si la exportación se realiza correctamente, la variable OK toma el valor 1\. De #### Ver también -[SQL EXPORT SELECTION](sql-export-selection.md) \ No newline at end of file +[SQL EXPORT SELECTION](sql-export-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1065 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md index b4ffab492c02e4..f78541a9b59a55 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL EXPORT SELECTION exporta al formato SQL los registros de la selección actual de la tabla 4D designada por el parámetro *Tabla*. @@ -38,4 +35,14 @@ Si la exportación se lleva a cabo correctamente, la variable *OK* toma el valor #### Ver también -[SQL EXPORT DATABASE](sql-export-database.md) \ No newline at end of file +[SQL EXPORT DATABASE](sql-export-database.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1064 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md index f00a270637c23d..550cf379a40490 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando *Get current data source* devuelve el nombre de la fuente de datos actual de la aplicación. La fuente de datos actual recibe las búsquedas SQL ejecutadas dentro de las estructuras [Begin SQL](begin-sql.md "Begin SQL")/[End SQL](end-sql.md "End SQL"). @@ -30,4 +27,13 @@ Este comando permite verificar la fuente de datos actual, generalmente antes de [End SQL](end-sql.md) [SQL GET DATA SOURCE LIST](sql-get-data-source-list.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 990 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md index ae84db2f71e7b7..4b9d6883df1c4d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando *GET DATA SOURCE LIST* devuelve en los arrays *arrayNomsFuentes* y *arrayDrivers*, los nombres y drivers de las fuentes de datos de tipo *tipoFuente* definidas en el administrador ODBC del sistema operativo. @@ -55,4 +52,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. [SQL Get current data source](sql-get-current-data-source.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 989 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md index ec88f256e48305..77bc41cdc0fa5d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL GET LAST ERROR devuelve la información relacionada con el último error encontrado durante la ejecución de un comando ODBC. El error puede venir de la aplicación 4D, la red, la fuente ODBC, etc. @@ -36,4 +33,13 @@ Los dos últimos parámetros sólo se llenan cuando el error viene de la fuente #### Ver también [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 825 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md index e69a35101f50eb..788bde5fc3d167 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL GET OPTION devuelve el *valor* actual de la opción pasada en el parámetro *opcion*. @@ -29,4 +26,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[SQL SET OPTION](sql-set-option.md) \ No newline at end of file +[SQL SET OPTION](sql-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 819 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md index d893607bb4bdfc..326e636d1f6e7b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL LOAD RECORD recupera en 4D uno o más registros de la fuente de datos abierta en la conexión actual. @@ -35,4 +32,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\. #### Ver también [SQL CANCEL LOAD](sql-cancel-load.md) -[SQL EXECUTE](sql-execute.md) \ No newline at end of file +[SQL EXECUTE](sql-execute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 822 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md index 6fedacc634b893..fbd3908c81102c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SQL LOGIN** permite conectarse a una fuente de datos SQL especificada en el parámetro *entradaDatos* y designa el objetivo de las búsquedas SQL ejecutadas posteriormente en el proceso actual: @@ -203,4 +200,14 @@ Si la conexión es exitosa, el variable sistema OK toma el valor 1; de lo contra [Begin SQL](begin-sql.md) [End SQL](end-sql.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 817 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md index 904af7c3e18dbb..66bfdbb39a2240 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL LOGOUT cierra la conexión con una fuente ODBC abierta en el proceso actual (si aplica). Si no hay conexión ODBC abierta, el comando no hace nada. @@ -25,4 +22,14 @@ Si la conexión se cierra correctamente, la variable sistema OK toma el valor 1; #### Ver también -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 872 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md index a9192eb983ed7e..000c7376d75e68 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SQL SET OPTION** se utiliza para modificar el *valor* de la opción pasada en *opcion*. @@ -48,4 +45,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK devuelve 1\. De l #### Ver también -[SQL GET OPTION](sql-get-option.md) \ No newline at end of file +[SQL GET OPTION](sql-get-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 818 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md index 098423b8bd72d1..61429261abb826 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL SET PARAMETER permite el uso del valor de una variable, array o campo 4D en las peticiones SQL. @@ -78,3 +75,14 @@ El mismo ejemplo anterior, pero utilizando el comando SQL SET PARAMETER: #### Variables y conjuntos del sistema Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\. De lo contrario, devuelve 0. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 823 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md index 71304d9eaeb91e..22fff9c966d92b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md @@ -41,3 +41,13 @@ El siguiente método devuelve la hipotenusa del triángulo cuyos dos lados son p ``` Por ejemplo, Hipotenusa (4;3) devuelve 5. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 539 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md index 1925c4bcf0b442..77110f0ae12388 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST COMPUTE EXPRESSIONS** actualiza las expresiones dinámicas 4D encontradas en un campo o variable ya sea 4D Write Pro o multiestilo designado por el parámetro *objeto*. @@ -67,4 +64,14 @@ Usted desea actualizar las referencias incluidas en la selección de texto: #### Ver también [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1285 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md index f2042c5b5be04e..570c9e85782c4c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST FREEZE EXPRESSIONS** "congela" el contenido de las expresiones encontradas en un campo o variable ya sea 4D Write Pro o multiestilo designado por el parámetro *objeto*. Esta acción convierte expresiones dinámicas en texto estático o imágenes (áreas 4D Write Pro únicamente) y elimina las referencias asociadas al *objeto*. @@ -68,4 +65,13 @@ Usted quiere insertar la hora actual al inicio del texto y luego congelarla ante #### Ver también [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1282 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md index 3775e48489e826..23b0fc695f6336 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST GET ATTRIBUTES se utiliza para recuperar el valor actual de un atributo de estilo en una selección de texto del objeto de formulario designado por *objeto*. @@ -104,4 +101,14 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable #### Ver también -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1094 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md index 7cbab0e0e240de..70fa6f1aa9f96b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST Get content type** devuelve el tipo de contenido encontrado en el campo o la variable de texto multiestilo designada por el parámetro *objeto* . @@ -102,3 +99,14 @@ Usted desea mostrar los comandos de un menú contextual basado en el tipo de con        ...     End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1286 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md index 7de19a248179c8..230c6021aa0293 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST Get expression** devuelve la primera expresión que se encuentra en la selección actual del campo o de la variable de texto con estilo designada por el parámetro *objeto*. @@ -93,4 +90,14 @@ Usted quiere ejecutar un método 4D cuando se hace clic en un enlace de usuario: #### Ver también -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1287 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md index 1e7cdf9d9294a4..0baccc12b5a136 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST GET OPTIONS** obtiene el valor actual de una o varias opciones de funcionamiento del campo o de la variable de texto con estilo designada por el parámetro *objeto*. @@ -36,4 +33,13 @@ Pase el código de la opción a leer en el parámetro *opcion*. El comando devue #### Ver también -[ST SET OPTIONS](st-set-options.md) \ No newline at end of file +[ST SET OPTIONS](st-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1290 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md index 8eca75efed86c4..db24803e388d26 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST Get plain textremueve las etiquetas de estilo de la variable o campo de texto designado por los parámetros *\** y *objeto* y devuelve el texto plano. @@ -111,4 +108,14 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable [ST Get text](st-get-text.md) [ST SET PLAIN TEXT](st-set-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1092 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md index 747b97ffb0a397..dd61d3e73db788 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST Get text devuelve el texto con estilo encontrado en el campo o variable de texto designado por el parámetro *objeto*. @@ -62,4 +59,14 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable [ST Get plain text](st-get-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1116 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md index 5d94d56cff2482..7df737d9d234ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST GET URL** devuelve la etiqueta y la dirección de la primera URL detectada en el campo o la variable de texto multiestilo designado por el parámetro *objeto*. @@ -71,4 +68,13 @@ Cuando hay un evento de doble clic, se comprueba que no existe en realidad una U #### Ver también -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1288 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md index fac1b008eae39a..3bbac0c3483031 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST INSERT EXPRESSION** inserta una referencia a la expresión en el campo o la variable de texto multiestilo designada por el parámetro *objeto*. @@ -88,4 +85,14 @@ Desea reemplazar el texto seleccionado con el resultado de un método proyecto: [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) [ST Get expression](st-get-expression.md) -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1281 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md index a90aa48ecceef8..9ba0b4fa65231c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST INSERT URL** inserta un enlace URL en el campo o la variable de texto con estilo designada por el parámetro *objeto* . @@ -65,4 +62,14 @@ Usted desea insertar un enlace al sitio web de 4D para reemplazar el texto selec #### Ver también [ST GET URL](st-get-url.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1280 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md index 574816f73908fd..f2b1f504b4dc05 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST SET ATTRIBUTES permite modificar uno o más atributos de estilo en el(los) objeto(s) de formulario designado(s) por *objeto*. @@ -104,4 +101,14 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable #### Ver también [FONT LIST](font-list.md) -[ST GET ATTRIBUTES](st-get-attributes.md) \ No newline at end of file +[ST GET ATTRIBUTES](st-get-attributes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1093 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md index 67ff489d7b4a69..9a2cdf80fa64a6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST SET OPTIONS** modifica una o varias opciones de funcionamiento del campo o de la variable de texto con estilo designada por el parámetro *objeto* . @@ -63,4 +60,13 @@ El siguiente código permite cambiar el modo de visualización del área: #### Ver también -[ST GET OPTIONS](st-get-options.md) \ No newline at end of file +[ST GET OPTIONS](st-get-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1289 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md index b05bde2f15b021..a91a82fc82d87b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST SET PLAIN TEXT inserta el texto pasado en el parámetro *nuevTexto* en el campo o la variable de texto con estilo designado por el parámetro *objeto* . Este comando aplica únicamente al texto plano del parámetro *objeto*, sin modificar las posibles etiquetas de estilo que contiene. @@ -94,4 +91,14 @@ En caso de un error, la variable no cambia. Cuando se produce un error en una va #### Ver también [ST Get plain text](st-get-plain-text.md) -[ST SET TEXT](st-set-text.md) \ No newline at end of file +[ST SET TEXT](st-set-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1136 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md index 1db5755be1ed56..1a4d77fb1e2df0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST SET TEXT inserta el texto pasado en el parámetro *nuevText* en el campo o variable de texto con estilo designado por el parámetro *objeto*. Este comando sólo se aplica al texto sin formato del parámetro de *objeto*, sin modificar las etiquetas de estilo que contiene. Se puede utilizar para modificar por programación, texto con estilo en la pantalla. @@ -91,4 +88,14 @@ Consulte el ejemplo del comando [ST SET PLAIN TEXT](st-set-plain-text.md). [ST Get plain text](st-get-plain-text.md) [ST Get text](st-get-text.md) -[ST SET PLAIN TEXT](st-set-plain-text.md) \ No newline at end of file +[ST SET PLAIN TEXT](st-set-plain-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1115 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md index 7d9af4c41678f3..6daaf415318cc3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md @@ -91,4 +91,13 @@ Desea iniciar/detener la supervisión y revisión de los datos 4D y las activida #### Ver también [Monitored activity](monitored-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1712 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md index 4e9c5220a41b9b..c906ca7861c749 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando START SQL SERVER lanza el servidor SQL integrado de la aplicación 4D en la que se ejecuta. Una vez lanzado, el servidor SQL puede responder a las búsquedas SQL externas. @@ -27,4 +24,14 @@ Si el servidor SQL ha sido lanzado correctamente, la variable sistema OK toma el #### Ver también -[STOP SQL SERVER](stop-sql-server.md) \ No newline at end of file +[STOP SQL SERVER](stop-sql-server.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 962 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md index e9bc32426d65d0..7eb54f74056188 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md @@ -24,4 +24,13 @@ A partir de la versión 11 de 4D, puede anidar varias transacciones (subtransacc [In transaction](in-transaction.md) [Transaction level](transaction-level.md) *Utilización de transacciones* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 239 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md index c03a167aa88748..17f6644c28c0e3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md @@ -59,4 +59,13 @@ Este ejemplo obtiene la desviación estándar de una serie de valores ubicados e [Average](average.md) [Sum](sum.md) [Sum squares](sum-squares.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 26 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md index d111bebd8ffb94..85304b64ceebb7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md @@ -25,4 +25,13 @@ Ver ejemplo para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**. #### Ver también [Monitored activity](monitored-activity.md) -[START MONITORING ACTIVITY](start-monitoring-activity.md) \ No newline at end of file +[START MONITORING ACTIVITY](start-monitoring-activity.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1721 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md index 494a326b0e584d..ebcc486eb342a9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando STOP SQL SERVER detiene el servidor SQL integrado de la aplicación 4D en la cual ha sido ejecutado. @@ -25,4 +22,13 @@ Si el servidor SQL ha sido lanzado, todas las conexiones SQL se interrumpen y el #### Ver también -[START SQL SERVER](start-sql-server.md) \ No newline at end of file +[START SQL SERVER](start-sql-server.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 963 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/storage.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/storage.md index 2922c60a554177..c4df9fb8231bdb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/storage.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/storage.md @@ -81,4 +81,13 @@ Este ejemplo muestra una forma estándar de establecer valores de **Almacenamien #### Ver también -*Objetos y colecciones compartidos* \ No newline at end of file +*Objetos y colecciones compartidos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1525 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md index 3ad329377e3ae9..0607c9743e87ef 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando STRING LIST TO ARRAY llena el array *cadenas* con: @@ -45,4 +42,14 @@ Si se encuentra el recurso, la variable sistema OK toma el valor 1, de lo contra [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[Get text resource](get-text-resource.md) \ No newline at end of file +[Get text resource](get-text-resource.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 511 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string.md index f4e4b75c0f2a44..7df3f47d55bac1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string.md @@ -185,4 +185,13 @@ Si *expresion* se evalúa como Null, el comando devuelve la cadena "null". Esto [Date](date.md) [Num](num.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 10 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md index dbb50d7e29a295..b58aaa0fd80ec0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md @@ -66,4 +66,13 @@ El siguiente ejemplo puede utilizarse para saber si el método se llama desde un [Application file](application-file.md) [COMPONENT LIST](component-list.md) -[Data file](data-file.md) \ No newline at end of file +[Data file](data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 489 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/substring.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/substring.md index 71523b227270be..26a4218152c1b2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/substring.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/substring.md @@ -64,4 +64,13 @@ El siguiente método de proyecto añade los párrafos que se encuentran en el te #### Ver también -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 12 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md index c8d5845c51a5d1..ae733b227ea97e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Subtotal devuelve el subtotal de *valores* para el nivel de ruptura actual o anterior. Subtotal sólo funciona cuando una selección ordenada se imprime con [PRINT SELECTION](print-selection.md "PRINT SELECTION") o utilizando Imprimir en el entorno Diseño. El parámetro *valores* debe ser de tipo real, entero, o entero largo. Usted debe asignar el resultado de la función Subtotal a una variable ubicada en el área de ruptura del formulario. @@ -64,4 +61,13 @@ La función Subtotal es necesaria para mostrar valores en un formulario. [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 97 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md index 9d083dadd74b1b..59a6e7294b0b77 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md @@ -57,4 +57,13 @@ Este ejemplo permite obtener la suma de cuadrados de los valores ubicados en un [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 28 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum.md index cfba88b5939040..67ffb1efc875f6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum.md @@ -71,4 +71,14 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo [Min](min.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md index 6de486206473ea..7bae8e486b87df 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md @@ -22,4 +22,13 @@ Para más información, por favor consulte la sección *Suspender las transaccio [Active transaction](active-transaction.md) [RESUME TRANSACTION](resume-transaction.md) -*Suspender las transacciones* \ No newline at end of file +*Suspender las transacciones* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1385 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md index 5ce08b698b50b3..94fa4a51c64148 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **SVG EXPORT TO PICTURE** permite guardar en la variable o campo imagen indicado por el parámetro *VarImag* una imagen en formato SVG contenida en un árbol XML. - -**Nota:** para mayor información sobre el formato SVG, consulte la sección *Presentación de los comandos XML utilitarios* . +El comando **SVG EXPORT TO PICTURE** permite guardar en la variable o campo imagen indicado por el parámetro *VarImag* una imagen en formato SVG contenida en un árbol XML.para mayor información sobre el formato SVG, consulte la sección *Presentación de los comandos XML utilitarios* . Pase en *refElement* la referencia del elemento XML raíz que contiene la imagen SVG. @@ -52,4 +50,13 @@ El siguiente ejemplo puede utilizarse para mostrar “Hello World” en una imag #### Ver también [DOM EXPORT TO FILE](dom-export-to-file.md) -[DOM EXPORT TO VAR](dom-export-to-var.md) \ No newline at end of file +[DOM EXPORT TO VAR](dom-export-to-var.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1017 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md index 17360e9ed8c0a8..a16b72ac2e632a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SVG Find element ID by coordinates devuelve la identificación ("id" o atributo "xml:id") del elemento XML encontrado en la ubicación definida por las coordenadas (x,y) en la imagen SVG designada por el parámetro *objetoImagen*. Este comando puede utilizarse particularmente para crear interfaces gráficas interactivas utilizando objetos SVG. @@ -52,4 +49,14 @@ Si *objetoImagen* no contiene una imagen SVG válida, el comando devuelve una ca #### Ver también -[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) \ No newline at end of file +[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1054 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md index 8bea72cc405373..bb82745010a74a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SVG Find element IDs by rect llena el array texto *arrIDs* con los IDs (atributo "id" o "xml:id") de los elementos XML cuyo rectángulo circundante está en intersección con el rectángulo de selección en la ubicación definida por los parámetros *x* y *y*. @@ -43,4 +40,13 @@ Todos los elementos cuyo rectángulo circundante está en intersección con el r #### Ver también -[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) \ No newline at end of file +[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1109 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md index 7b3015c902f855..4fe3929840e502 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SVG GET ATTRIBUTE se utiliza para obtener el valor actual del atributo *nomAtrib* en un objeto o una imagen SVG. @@ -42,4 +39,13 @@ Para obtener más información acerca de los atributos SVG, consulte la descripc #### Ver también -[SVG SET ATTRIBUTE](svg-set-attribute.md) \ No newline at end of file +[SVG SET ATTRIBUTE](svg-set-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1056 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md index f753523461561b..27ecafb4f61dff 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md @@ -94,4 +94,14 @@ Modificación del contenido de un elemento de tipo texto: #### Ver también -[SVG GET ATTRIBUTE](svg-get-attribute.md) \ No newline at end of file +[SVG GET ATTRIBUTE](svg-get-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1055 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md index 2ba7ac849573bb..bee50479ac19a3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SVG SHOW ELEMENT mueve el documento SVG *objetoImagen* para mostrar el elemento cuyo atributo "id" es especificado por el parámetro *id*. @@ -30,3 +27,14 @@ displayed_sidebar: docs Este comando sólo tiene efecto en modo de visualización "top left" (con barras de desplazamiento). Si este comando no se ejecuta en el contexto de un formulario o si se pasa un *objetoImagen* inválido, la variable OK toma el valor 0\. Si el comando se ejecuta correctamente, toma el valor 1. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1108 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md index 1248108fdb81e6..b4e1d0b56e7383 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md @@ -48,4 +48,13 @@ Si omite el parámetro *tipo*, la función devolverá la ruta a la carpeta siste #### Ver también [Get 4D folder](get-4d-folder.md) -[Temporary folder](temporary-folder.md) \ No newline at end of file +[Temporary folder](temporary-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 487 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md index dc122b2e6f9880..51e32d38a2a059 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md @@ -144,4 +144,13 @@ devuelve un objeto que contiene la siguiente información: [Application info](application-info.md) [Is macOS](is-macos.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1571 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md index 68b8776a67a405..3d8872c0ac3fa5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md @@ -40,4 +40,13 @@ Este método de mantenimiento permite solicitar la compactación del archivo de #### Ver también -[Compact data file](compact-data-file.md) \ No newline at end of file +[Compact data file](compact-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1127 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md index 8906e1f7341984..758f2f1d510bb7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md @@ -37,4 +37,13 @@ El siguiente es un ejemplo de un método genérico que muestra los registros de [Last table number](last-table-number.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 256 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table.md index d046a6e0666f96..0be51e162eb2f1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table.md @@ -58,4 +58,13 @@ Este ejemplo, la variable *numTabla* es igual al número de la tabla a la cual p [Field](field.md) [Last table number](last-table-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 252 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tan.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tan.md index 9898dff96ad3f5..88b5290f809172 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tan.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tan.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descripción -Tan devuelve la tangente del *número*, donde *número* se expresa en radianes. - -**Nota:** 4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). +Tan devuelve la tangente del *número*, donde *número* se expresa en radianes.4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). #### Ver también [Arctan](arctan.md) [Cos](cos.md) -[Sin](sin.md) \ No newline at end of file +[Sin](sin.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 19 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md index 6ae6ace299bcfc..acb334a56d697b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md @@ -23,4 +23,13 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard #### Ver también -[System folder](system-folder.md) \ No newline at end of file +[System folder](system-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 486 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md index 305cfeee7f00e7..3a43de63d2b4b7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md @@ -49,4 +49,13 @@ El siguiente ejemplo prueba la presencia del documento “Diario” en la carpet [Create document](create-document.md) [CREATE FOLDER](create-folder.md) [Object to path](object-to-path.md) -[Path to object ](path-to-object.md) \ No newline at end of file +[Path to object ](path-to-object.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 476 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md index 85dcd7a067b852..b6f7646c1bf3f1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md @@ -41,4 +41,13 @@ El siguiente ejemplo le permite conocer el estado de un proceso (en nuestro caso #### Ver también [CLEAR SEMAPHORE](clear-semaphore.md) -[Semaphore](semaphore.md) \ No newline at end of file +[Semaphore](semaphore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 652 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md index 27a3678751dd22..e2719546bec3b4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **TEXT TO ARRAY** transforma una variable texto en un array texto. El texto original (con estilo o no) se divide y cada parte se convierte en un elemento del array *arrText* que es devuelto por el comando. Este comando se puede utilizar por ejemplo para llenar las páginas o las columnas con texto de un tamaño fijo. @@ -110,4 +107,13 @@ Debe imprimir en un área de 400 píxeles de largo un texto de un máximo de 80 [Split string](split-string.md) [ST Get plain text](st-get-plain-text.md) -[ST Get text](st-get-text.md) \ No newline at end of file +[ST Get text](st-get-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1149 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md index 4b136ff1f68cb0..ab536a6072cd83 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md @@ -105,4 +105,13 @@ Después de la ejecución este código: [CONVERT FROM TEXT](convert-from-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[REAL TO BLOB](real-to-blob.md) \ No newline at end of file +[REAL TO BLOB](real-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 554 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md index 5cbecdf131b6be..6427ac376756d4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md @@ -81,4 +81,13 @@ Ejemplo que permite al usuario indicar la ubicación del archivo a crear: #### Ver también [Document to text](document-to-text.md) -*Documentos sistema* \ No newline at end of file +*Documentos sistema* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1237 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/throw.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/throw.md index ea6a10066c3937..a33f0db78c0a5a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/throw.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/throw.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **throw** crea un error que será lanzado inmediatamente o cuando el método que lo llama devuelva a su llamador (modo diferido). @@ -107,4 +104,13 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi [ASSERT](assert.md) [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1805 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md index 59760f8eb546c2..b7c82ac4417184 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Tickcount devuelve el número de tics (1 tic = 1 / 60avo de un segundo) pasados desde que se inició el equipo. - -**Nota:** Tickcount devuelve un valor de tipo Entero largo. +Tickcount devuelve el número de tics (1 tic = 1 / 60avo de un segundo) pasados desde que se inició el equipo.Tickcount devuelve un valor de tipo Entero largo. #### Ejemplo @@ -26,4 +24,13 @@ Ver el ejemplo del comando [Milliseconds](milliseconds.md "Milliseconds"). #### Ver también [Current time](current-time.md) -[Milliseconds](milliseconds.md) \ No newline at end of file +[Milliseconds](milliseconds.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 458 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md index 303894367d0264..02716b243436ec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md @@ -35,4 +35,13 @@ El siguiente muestra una caja de alerta con el mensaje, “46 800 segundos repre #### Ver también [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 180 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time.md index ec92351de2d261..d56ec6e47f7f2b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time.md @@ -50,4 +50,13 @@ Puede expresar todo valor numérico como una hora: [Bool](bool.md) [String](string.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 179 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md index 588572bd30cb7e..27b0c66e1ce66e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md @@ -41,4 +41,13 @@ Resultado: [Milliseconds](milliseconds.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1445 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md index 3a32b1b789439a..b4ff4f19a3d7d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Tool bar height devuelve la altura de la barra de herramientas visible actualmente, expresada en píxeles. Dependiendo del contexto, puede ser la barra de herramientas de modo Diseño 4D, o una barra de herramientas personalizada creada con [Open form window](open-form-window.md) (la barra de herramientas de modo Diseño se oculta automáticamente cuando se muestra una barra de herramientas personalizada). @@ -26,4 +23,13 @@ Si no se muestra ninguna barra de herramientas, el comando devuelve 0. [HIDE TOOL BAR](hide-tool-bar.md) [Menu bar height](menu-bar-height.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1016 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trace.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trace.md index 849adb3ce1c535..c2a2bac2cf08af 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trace.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trace.md @@ -59,3 +59,13 @@ El método de proyecto DEBUG se lista aquí:     End if  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 157 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md index 3ad637efcd3b46..341f0664c10fe7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md @@ -21,4 +21,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Utilización de transacciones* \ No newline at end of file +*Utilización de transacciones* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 961 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md index 8f1aacc4bcc3d9..33178f6f5fbcd8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Descripción -El comando TRANSFORM PICTURE permite aplicar una transformación de tipo *operador* a la imagen pasada en el parámetro *imagen*. - -**Nota:** este comando extiende las funcionalidades ofrecidas por los operadores convencionales de transformación de imágenes (+/, etc., ver la sección [C\_BOOLEAN](c-boolean.md)). Estos operadores permanecen totalmente utilizables en 4D. +El comando TRANSFORM PICTURE permite aplicar una transformación de tipo *operador* a la imagen pasada en el parámetro *imagen*.este comando extiende las funcionalidades ofrecidas por los operadores convencionales de transformación de imágenes (+/, etc., ver la sección [C\_BOOLEAN](c-boolean.md)). Estos operadores permanecen totalmente utilizables en 4D. La *imagen* fuente se modifica directamente después de la ejecución del comando. Tenga en cuenta que ciertas operaciones no son destructivas y pueden revertirse mediante la realización de la operación contraria o por medio de la operación "Reset". Por ejemplo, una imagen reducida a 1% retomará su tamaño original sin alteraciones si se agranda 100 veces. Las transformaciones no modifican el tipo original de la imagen: por ejemplo, una imagen vectorial permanecerá vectorial después de su transformación. @@ -73,4 +71,13 @@ Este es un ejemplo de corte de una imagen (la imagen se muestra en el formulario #### Ver también -[COMBINE PICTURES](combine-pictures.md) \ No newline at end of file +[COMBINE PICTURES](combine-pictures.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 988 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md index f17a8d00fbeb90..9dbcd5d1ade2d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md @@ -52,4 +52,13 @@ Utilice el comando **Trigger event** para estructurar sus triggers de esta maner [In transaction](in-transaction.md) [Trigger level](trigger-level.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 369 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md index b454a5361d8a82..c537aea2ad2c6e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md @@ -23,4 +23,13 @@ Para mayor información sobre niveles de ejecución, consulte el tema *Triggers [Trigger event](trigger-event.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 398 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md index d39303b30b7968..d40264612c8fa6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md @@ -37,4 +37,13 @@ El número de tabla y de registro para el registro relacionado por el evento de *Acerca de números de registros* [Trigger event](trigger-event.md) [Trigger level](trigger-level.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 399 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/true.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/true.md index 635249af7581ff..132fbf9ea6cafb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/true.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/true.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### Ver también [False](false.md) -[Not](not.md) \ No newline at end of file +[Not](not.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 214 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md index ecaf2170c65710..af06e993c912f0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md @@ -34,4 +34,13 @@ El siguiente ejemplo ilustra la manera cómo Trunc funciona con diferentes argum #### Ver también -[Round](round.md) \ No newline at end of file +[Round](round.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 95 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md index 0d435edb26f606..8ae153457ba3b0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md @@ -38,4 +38,16 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo #### Ver también -[DELETE SELECTION](delete-selection.md) \ No newline at end of file +[DELETE SELECTION](delete-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1051 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/type.md index 3d37505be9b134..09fd93fd69b95e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/type.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/type.md @@ -139,4 +139,13 @@ Ver ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md [Is a variable](is-a-variable.md) [Undefined](undefined.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 295 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md index 8fe2324886d5bb..db1570d9e340b3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md @@ -59,4 +59,13 @@ Aquí están los diferentes resultados del comando [Undefined](undefined.md) as #### Ver también -[CLEAR VARIABLE](clear-variable.md) \ No newline at end of file +[CLEAR VARIABLE](clear-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 82 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/union.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/union.md index 316ac009b392f9..f64f042f7f01d7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/union.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/union.md @@ -49,4 +49,13 @@ Este ejemplo añade registros al conjunto de mejores clientes. Los registros se #### Ver también [DIFFERENCE](difference.md) -[INTERSECTION](intersection.md) \ No newline at end of file +[INTERSECTION](intersection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 120 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md index 7b194e79d7e76c..d521773972d051 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md @@ -28,4 +28,13 @@ Si un registro tiene una cantidad importante de datos, de campos de imagen, o de #### Ver también [LOAD RECORD](load-record.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 212 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md index cc5ac12cb120c7..2479ff7ccfa7ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando UNREGISTER CLIENT da de baja un registro de un equipo 4D Client. El cliente debe haber sido registrado por el comando REGISTER CLIENT. @@ -37,4 +34,14 @@ Si el cliente es dado de baja correctamente, la variable sistema OK toma el valo [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[REGISTER CLIENT](register-client.md) \ No newline at end of file +[REGISTER CLIENT](register-client.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 649 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md index 2b8ce57eb33be5..fa51f7b88a3845 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md @@ -36,4 +36,13 @@ Ver el ejemplo para [Lowercase](lowercase.md "Lowercase"). #### Ver también -[Lowercase](lowercase.md) \ No newline at end of file +[Lowercase](lowercase.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 13 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md index 61aa87f26a9788..3097cd1bfef4ad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md @@ -50,4 +50,14 @@ La variable sistema OK toma el valor 1 si el mapa se carga correctamente, de lo [IMPORT TEXT](import-text.md) [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 205 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md index 9050db75fa44c6..36e0341b979fad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md @@ -28,4 +28,15 @@ Recuerde que una selección temporal es una representación de una selección de [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[CUT NAMED SELECTION](cut-named-selection.md) \ No newline at end of file +[CUT NAMED SELECTION](cut-named-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 332 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md index 09f5de4a999604..fec48dc80420e3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md @@ -34,4 +34,15 @@ El siguiente ejemplo utiliza [LOAD SET](load-set.md "LOAD SET") para cargar un c #### Ver también [CLEAR SET](clear-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 118 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md index 6c1adb9967073f..51fae3b6cb078f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción User in group devuelve TRUE si *usuario* está en *grupo*. @@ -42,4 +39,13 @@ El siguiente ejemplo busca facturas específicas. Si el usuario actual está en #### Ver también -[Current user](current-user.md) \ No newline at end of file +[Current user](current-user.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 338 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md index fd6534eb5a5824..3fc6c604717fbc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota de compatibilidad*: este comando solo funciona en bases de datos binarias. Siempre devuelve un BLOB vacío en proyectos.* @@ -33,4 +30,14 @@ Este concepto permite conservar un backup de usuarios en la base e implementar u #### Ver también -[BLOB TO USERS](blob-to-users.md) \ No newline at end of file +[BLOB TO USERS](blob-to-users.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 849 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md index c095173bbaa1d4..7a83a067c8bf46 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Validate password devuelve True si la cadena pasada en *contraseña* es la contraseña para la cuenta de usuario cuyo número de referencia se pasa en *refUsuario*. @@ -62,4 +59,13 @@ En el [Método base On 4D Mobile Authentication](metodo-base-on-4d-mobile-authen [GET USER PROPERTIES](get-user-properties.md) [Set user properties](set-user-properties.md) -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 638 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md index 8d51f3548d7981..8331eca1eb9b6b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md @@ -29,4 +29,14 @@ Tenga en cuenta que cuando OK toma el valor 0, la transacción automáticamente [CANCEL TRANSACTION](cancel-transaction.md) [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Utilización de transacciones* \ No newline at end of file +*Utilización de transacciones* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 240 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md index 52faff06c33a2c..03e9d780f4ae24 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md @@ -112,4 +112,13 @@ Desea obtener la suma de todos los valores numéricos en una colección: #### Ver también [OB Get type](ob-get-type.md) -[Type](type.md) \ No newline at end of file +[Type](type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1509 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md index d239236fb585f5..99885722aa8353 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md @@ -137,4 +137,14 @@ Después de añadir estos métodos a su aplicación, puede escribir: [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 532 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md index dfefaf29646cd0..3c4d377c69d408 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando VARIABLE TO VARIABLE escribe las variables proceso *dstVar* (*dstVar2*, etc.) del proceso de destino cuyo número se pasa en *proceso* utilizando los valores de las variables *srcVar1* *srcVar2*, etc. @@ -60,4 +57,13 @@ El siguiente ejemplo lee un array proceso desde el proceso indicado por *$vlProc [GET PROCESS VARIABLE](get-process-variable.md) *Procesos* -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 635 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variance.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variance.md index 7e5a7a464c130b..2ae6aa19cc1844 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variance.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variance.md @@ -65,4 +65,13 @@ Este ejemplo permite obtener la varianza de valores ubicados en un array: [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Sum squares](sum-squares.md) \ No newline at end of file +[Sum squares](sum-squares.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 27 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md index bcda768e1aadb4..c6d723c0f04665 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md @@ -41,4 +41,14 @@ Si el método de retrollamada no existe, la verificación no se efectúa, se gen #### Ver también -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1008 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md index 37bc387a0d7f61..363dd58117002a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Descripción -El comando VERIFY DATA FILE efectúa una verificación estructural de los objetos contenidos en el archivo de datos 4D designado por *rutaEstructura* y *rutaDatos*. - -**Nota:** para mayor información sobre el proceso de verificación de datos, consulte el Manual de Diseño. *rutaEstructura* designa el archivo de estructura (compilado o no) asociado con el archivo de datos a verificar. Puede tratarse del archivo de estructura abierto o de cualquier otro archivo de estructura. Usted debe pasar un nombre de ruta completo, expresado con la sintaxis del sistema operativo. También puede pasar una cadena vacía, en este caso aparece una caja de diálogo estándar de apertura de archivos que permite al usuario designar el archivo de estructura a utilizar. +El comando VERIFY DATA FILE efectúa una verificación estructural de los objetos contenidos en el archivo de datos 4D designado por *rutaEstructura* y *rutaDatos*.para mayor información sobre el proceso de verificación de datos, consulte el Manual de Diseño. *rutaEstructura* designa el archivo de estructura (compilado o no) asociado con el archivo de datos a verificar. Puede tratarse del archivo de estructura abierto o de cualquier otro archivo de estructura. Usted debe pasar un nombre de ruta completo, expresado con la sintaxis del sistema operativo. También puede pasar una cadena vacía, en este caso aparece una caja de diálogo estándar de apertura de archivos que permite al usuario designar el archivo de estructura a utilizar. *rutaDatos* designa un archivo de datos 4D (.4DD). Debe corresponder al archivo de estructura definido por el parámetro *rutaEstructura*. Atención, usted puede designar el archivo de estructura actual pero el archivo de datos no debe ser el archivo actual (abierto). Para verificar el archivo de datos está abierto actualmente, utilice el comando [VERIFY CURRENT DATA FILE](verify-current-data-file.md). Si intenta verificar el archivo de datos actual con el comando VERIFY DATA FILE, se genera un error. @@ -169,4 +167,14 @@ Si el método de retrollamada no existe, la verificación no se efectúa, se gen #### Ver también -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 939 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md index 40fdd63835983e..62d3e00b63d363 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md @@ -52,4 +52,13 @@ Este ejemplo verifica un hash de contraseña creado previamente por [Generate pa #### Ver también -[Generate password hash](generate-password-hash.md) \ No newline at end of file +[Generate password hash](generate-password-hash.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1534 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md index b35f0dc69331b1..ce942be4e4ec1e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md @@ -42,4 +42,13 @@ Esta prueba permite ejecutar código diferente dependiendo de que versión es un #### Ver también [Application type](application-type.md) -[Application version](application-version.md) \ No newline at end of file +[Application version](application-version.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 495 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md index 865925290aab65..7bb029c6105d82 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descripción -El comando VOLUME ATTRIBUTES devuelve en bytes el tamaño, el espacio utilizado y el espacio libre del volumen cuyo nombre se pasa en *volumen*. - -**Nota:** si *volumen* indica un volumen remoto no montado, la variable OK toma el valor 0 y los tres parámetros devuelven -1\. +El comando VOLUME ATTRIBUTES devuelve en bytes el tamaño, el espacio utilizado y el espacio libre del volumen cuyo nombre se pasa en *volumen*.si *volumen* indica un volumen remoto no montado, la variable OK toma el valor 0 y los tres parámetros devuelven -1\. #### Ejemplo @@ -96,4 +94,14 @@ Una vez se añade este método de proyecto a su aplicación, puede escribir: #### Ver también -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 472 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md index 9e859d53714810..c62cb02b1d1c79 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md @@ -38,4 +38,13 @@ Utilizando un área de desplazamiento llamada *atVolumenes,* usted quiere mostra [DOCUMENT LIST](document-list.md) [FOLDER LIST](folder-list.md) -[VOLUME ATTRIBUTES](volume-attributes.md) \ No newline at end of file +[VOLUME ATTRIBUTES](volume-attributes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 471 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md index f28a6ed7b3c29f..6ec9a446b5c54b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Back URL available se utiliza para saber si existe un URL precedente disponible en la secuencia de URLs abiertos en el área web designada por los parámetros *\** y *objeto*. @@ -27,4 +24,13 @@ El comando devuelve [True](true.md "True") si existe un URL y de lo contrario [F #### Ver también [WA Forward URL available](wa-forward-url-available.md) -[WA OPEN BACK URL](wa-open-back-url.md) \ No newline at end of file +[WA OPEN BACK URL](wa-open-back-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1026 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md index 489f46df6c6c6e..a8e3513eac248f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **WA Create URL history menu** crea y llena un menú que puede utilizarse directamente para la navegación entre los URLs visitados durante la sesión en el área web designada por los parámetros *\** y *objeto*. Puede utilizarse para crear una interfaz de navegación personalizada. @@ -69,4 +66,13 @@ El siguiente código puede estar asociado con un botón 3D con menú pop up llam [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[WA GET URL HISTORY](wa-get-url-history.md) \ No newline at end of file +[WA GET URL HISTORY](wa-get-url-history.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1049 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md index 81bd799e8ce4ec..f0056c2bdfa37a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Evaluate JavaScript ejecuta en el área web designada por los parámetros *\** y *objeto* el código JavaScript pasado en *codeJS* y devuelve el resultado. Este comando debe ser llamado después de cargar la página (el evento de formulario On End URL Loading debe haber sido generado). @@ -104,4 +101,13 @@ Luego puede evaluar el código JavaScript desde 4D: #### Ver también -[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) \ No newline at end of file +[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1029 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md index 0d1b53af404659..911e89e4443a8e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA EXECUTE JAVASCRIPT FUNCTION ejecuta en el área Web designada por los parámetros *\** y *objeto*, la función JavaScript *funcionJS* y devuelve opcionalmente su resultado en el parámetro *resultado*. @@ -59,4 +56,13 @@ La función JavaScript "getCustomerInfo" recibe un número ID como parámetro y #### Ver también -[WA Evaluate JavaScript](wa-evaluate-javascript.md) \ No newline at end of file +[WA Evaluate JavaScript](wa-evaluate-javascript.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1043 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md index 390cbcab037399..050fea22e60128 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Forward URL available permite conocer si existe un URL siguiente disponible en la secuencia de URLs abiertos en el área web designada por los parámetros *\** y *objeto*. @@ -27,4 +24,13 @@ El comando devuelve [True](true.md "True") si existe un URL y de lo contrario [F #### Ver también [WA Back URL available](wa-back-url-available.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1027 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md index 6342abff59e519..3a0b45725c5e84 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Get current URL devuelve la dirección URL de la página mostrada en el área web designada por los parámetros *\** y *objeto*. @@ -37,4 +34,13 @@ La página mostrada es el URL "www.apple.com" y la página "www.4dhispano.com" e #### Ver también -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1025 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md index 51be68ce8a2617..cc0c15e129ec7c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA GET EXTERNAL FILTERS LINKS devuelve en los arrays *arrFiltros* y *arrAutorizRechazar*, los filtros de enlaces externos del área web designada por los parámetros *\** y *objeto*. Si ningún filtro está activo, los arrays se devuelven vacíos. @@ -28,4 +25,13 @@ Los filtros son instalados por el comando [WA SET EXTERNAL LINKS FILTERS](wa-set #### Ver también [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1033 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md index 1eb80d118e4a3c..9484d11f89ef9c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Get last filtered URL devuelve el último URL filtrado en el área web designada por los parámetros *\** y *objeto*. @@ -35,4 +32,13 @@ Es recomendable llamar este comando en el contexto de los eventos de formulario [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) [WA GET URL FILTERS](wa-get-url-filters.md) [WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1035 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md index ff10e81b3f987c..133b048f3faa02 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA GET LAST URL ERROR permite recuperar varios elementos de información relacionados con el último error ocurrido en el área Web designada por los parámetros *\** y *objeto*. @@ -40,4 +37,13 @@ Es recomendable llamar este comando dentro del marco del evento de formulario On #### Ver también -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1034 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md index 2dcbf46512aac4..81cf692ceca6fe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Get page content devuelve el código HTML de la página actual o en de la página que se va a mostrar en el área web designada por los parámetros *\** y *objeto*. @@ -26,4 +23,13 @@ Este comando devuelve una cadena vacía si el contenido de la página actual no #### Ver también -[WA SET PAGE CONTENT](wa-set-page-content.md) \ No newline at end of file +[WA SET PAGE CONTENT](wa-set-page-content.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1038 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md index bfd6a5a38a8109..666fbdab89a119 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Get page title devuelve el título de la página actual o que va a ser mostrada en el área web designada por los parámetros *\** y *objeto*. El título corresponde a la etiqueta HTML "Title". @@ -26,4 +23,13 @@ Este comando devuelve una cadena vacía si no hay título disponible para el URL #### Ver también -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1036 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md index df5aca83307523..3085e0b2a73aab 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA GET PREFERENCE permite obtener el valor actual de una preferencia en el área web designada por los parámetros *\** y *objeto*. @@ -35,4 +32,13 @@ Pase en el parámetro *valor* una variable que recibirá el valor actual de la p #### Ver también -[WA SET PREFERENCE](wa-set-preference.md) \ No newline at end of file +[WA SET PREFERENCE](wa-set-preference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1042 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md index 4a913ca416113a..15f6f5f00277fe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA GET URL FILTERS devuelve en los arrays *arrFiltros* y *arrAutorizRechazar*, los filtros activos en el área web designada por los parámetros *\** y *objeto* . Si ningún filtro está activo, los arrays se devuelven vacíos. @@ -28,4 +25,13 @@ Los filtros son instalados por el comando [WA SET URL FILTERS](wa-set-url-filter #### Ver también [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1031 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md index 3eedd4e1fe318e..1ca63f461068a8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA GET URL HISTORY devuelve uno o dos arrays que contienen los URLs visitados durante la sesión en el área web designada por los parámetros *\** y *objeto*. Permite construir una interfaz de navegación personalizada. @@ -45,4 +42,13 @@ Si se pasa, el parámetro *arrTitulos* contiene la lista de los nombres de venta #### Ver también -[WA Create URL history menu](wa-create-url-history-menu.md) \ No newline at end of file +[WA Create URL history menu](wa-create-url-history-menu.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1048 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md index 8bc600feef41b8..9dfa6e2c151ab5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA OPEN BACK URL carga en el área web designada por los parámetros *\** y *objeto* el URL precedente en la secuencia de los URLs abiertos. @@ -26,4 +23,13 @@ Si no hay un URL precedente, el comando no hace nada. Puede probar la disponibil #### Ver también [WA OPEN FORWARD URL](wa-open-forward-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1021 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md index 25da98e877816a..6ea826d10bc633 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA OPEN FORWARD URL carga en el área web designada por los parámetros *\** y *objeto* el URL siguiente en la secuencia de los URLs abiertos. @@ -26,4 +23,13 @@ Si no hay un URL siguiente (es decir, si el usuario no ha regresado al URL anter #### Ver también [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1022 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md index 86770b8baf55e7..1693fbba1cbefb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **WA OPEN URL** carga en el área web designada por los parámetros *\** y *objeto* el URL pasado en el parámetro *url*. @@ -49,4 +46,13 @@ Es equivalente a: [OPEN URL](open-url.md) [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1020 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md index 69f026fa3ae768..7c0e2c5df39e49 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **WA OPEN WEB INSPECTOR** abre un inspector web para el área web designada por los parámetros *\** y *objeto*. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver también *Gestión programada de áreas web* -[WA Run offscreen area](wa-run-offscreen-area.md) \ No newline at end of file +[WA Run offscreen area](wa-run-offscreen-area.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1736 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md index 5c6da127ee4421..43e9d94cf7b7c8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA REFRESH CURRENT URL recarga el URL actual mostrado en el área web designada por los parámetros *\** y *objeto*. #### Ver también -[WA STOP LOADING URL](wa-stop-loading-url.md) \ No newline at end of file +[WA STOP LOADING URL](wa-stop-loading-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1023 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md index 6831c7ce07fdf7..64de54db95a36d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **WA Run offscreen area** crea un área web en memoria que se puede utilizar para cargar y analizar automáticamente las páginas web. @@ -98,4 +95,14 @@ La variable del sistema OK se define en 0 si se ha alcanzado el tiempo de espera [FORM Event](../commands/form-event.md) *Gestión programada de áreas web* -[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) \ No newline at end of file +[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1727 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md index ecd14149930827..c2cb4ab7dfc733 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA SET EXTERNAL LINKS FILTERS permite establecer uno o más filtros de enlaces externos para la zona web designada por los parámetros *\** y *objeto*. Los filtros de enlaces externos determinan si un URL asociado a la página actual vía un enlace debe abrirse en el área web o en el navegador web por defecto del equipo. @@ -76,4 +73,13 @@ Este ejemplo combina los filtros de sitios y de enlaces externos: #### Ver también [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1032 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md index e98915a13c11a8..4a29ef2450a5f7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Nota de compatibilidad Este comando histórico ya no es realmente útil. A medida que se refuerza la seguridad en los navegadores modernos, hay cada vez más restricciones para modificar el contenido de las páginas "sobre la marcha". Un enfoque más confiable es crear un archivo local (por ejemplo, en la carpeta temporal) y utilizar [WA OPEN URL](wa-open-url.md) para cargarlo. Para borrar el contenido, basta con llamar a WA OPEN URL(myArea; "about:blank"). @@ -47,4 +44,13 @@ Mostrar la frase "¡Hola mundo!" y definición de un URL de base "file:///" base #### Ver también -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1037 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md index c22fbb2d39d282..537991cc740e93 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA SET PREFERENCE permite fijar diferentes preferencias para el área web designada por los parámetros *\** y *objeto*. @@ -51,4 +48,13 @@ Para activar la URL suéltela en el área web 'myarea': #### Ver también -[WA GET PREFERENCE](wa-get-preference.md) \ No newline at end of file +[WA GET PREFERENCE](wa-get-preference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1041 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md index d3be87971718ad..eb0211ef56eef9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA SET URL FILTERS permite colocar uno o más filtros para el área Web designada por los parámetros *\** y *objeto*. @@ -157,4 +154,13 @@ Usted quiere negar el acceso a direcciones IP específicas: #### Ver también [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1030 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md index f4ad741a769be2..548d397fbf2f9f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA STOP LOADING URL detiene la carga de los recursos del URL actual de la zona web designada por los parámetros *\** y *objeto*. #### Ver también -[WA REFRESH CURRENT URL](wa-refresh-current-url.md) \ No newline at end of file +[WA REFRESH CURRENT URL](wa-refresh-current-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1024 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md index 15cd54fc1856de..5ed8ead2ee22b7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA ZOOM IN aumenta el tamaño del contenido mostrado en el área web designada por los parámetros *\** y *objeto*. @@ -27,4 +24,13 @@ Bajo Windows, el alcance de este comando es global: la configuración se conserv #### Ver también -[WA ZOOM OUT](wa-zoom-out.md) \ No newline at end of file +[WA ZOOM OUT](wa-zoom-out.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1039 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md index 40b2c2d6a251ab..3a57fbae38b8e1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA ZOOM OUT reduce el tamaño del contenido mostrado en el área web designada por los parámetros \* y objeto. @@ -27,4 +24,13 @@ Bajo Windows, el alcance de este comando es global: la configuración se conserv #### Ver también -[WA ZOOM IN](wa-zoom-in.md) \ No newline at end of file +[WA ZOOM IN](wa-zoom-in.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1040 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md index de25507adce2a9..cd17bca9971639 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md @@ -23,4 +23,13 @@ Consulte el ejemplo del comando [WEB GET BODY PART](web-get-body-part.md). #### Ver también -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1211 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md index ff7f41fb7f2652..b6a37491f36ea7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md @@ -91,4 +91,13 @@ Este es el código del método GetFile: [WEB Get body part count](web-get-body-part-count.md) [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET VARIABLES](web-get-variables.md) \ No newline at end of file +[WEB GET VARIABLES](web-get-variables.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1212 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md index d3211cf0c3a928..be32990b21dc70 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md @@ -22,4 +22,13 @@ Si este comando se llama fuera del contexto de una sesión web, devuelve una cad #### Ver también *Gestión de las sesiones web (heredado)* -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1162 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md index cca8e8f467d8a7..8bcdbfd4901c7f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md @@ -47,4 +47,13 @@ Cuando el formulario se envia al servidor web, la variable $textoSolicitud recib #### Ver también [WEB GET BODY PART](web-get-body-part.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 814 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md index e29c5fcb2cb97d..dc7a1ab962b3ae 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md @@ -117,4 +117,13 @@ On Web Connection): #### Ver también [WEB GET HTTP BODY](web-get-http-body.md) -[WEB SET HTTP HEADER](web-set-http-header.md) \ No newline at end of file +[WEB SET HTTP HEADER](web-set-http-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 697 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md index 4f092ad26cdea1..a74a218477fcce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md @@ -62,4 +62,13 @@ Cuando utiliza el *selector* Web debug log, puede recibir una de las siguientes #### Ver también -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1209 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md index 41af0bc1910190..04d5a472e42138 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md @@ -127,4 +127,13 @@ Después de ejecutar el siguiente código: [License info](license-info.md) [Process activity](../commands/process-activity.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1531 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md index a0dd59fcd5b117..747ae7d19514be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md @@ -59,3 +59,13 @@ En el método de proyecto STATS, escriba el siguiente código: ``` Puede enviar la página "stats.shtm" utilizando un enlace URL o utilizando el comando [WEB SEND FILE](web-send-file.md). + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 658 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md index fbdb0262abd03f..9b435e6d1e3c00 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md @@ -63,4 +63,13 @@ La variable vNOMBRE contiene ROBERTO y vCIUDAD contiene PARIS. #### Ver también -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 683 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md index e779a3428e74fe..39c17b0ea4fc84 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md @@ -26,4 +26,13 @@ Este comando permite, por ejemplo, rechazar los intentos de conexión en modo no #### Ver también -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 698 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md index 7ef08ce4582802..8486121cbec410 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md @@ -36,3 +36,13 @@ Usted quiere verificar que el servidor web se está ejecutando:     ... //hacer las acciones apropiadas  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1313 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md index 826174cebec074..3976aa45efb744 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md @@ -34,4 +34,13 @@ Después de la ejecución de este comando, si un cliente web envía una petició #### Ver también *Gestión de las sesiones web (heredado)* -[Método base On Web Legacy Close Session](metodo-base-on-web-legacy-close-session.md) \ No newline at end of file +[Método base On Web Legacy Close Session](metodo-base-on-web-legacy-close-session.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1208 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md index 11ea34a7bf9e40..b0fad22cc21b8d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md @@ -37,4 +37,13 @@ El parámetro *fechaVenc* recibe la fecha de vencimiento y el parámetro *horaVe *Gestión de las sesiones web (heredado)* [WEB Get Current Session ID](web-get-current-session-id.md) -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1207 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md index 4c90c77b9c46a1..0732534bc027ce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md @@ -79,4 +79,13 @@ Consulte el ejemplo de la rutina [PICTURE TO BLOB](picture-to-blob.md). #### Ver también -[WEB SEND FILE](web-send-file.md) \ No newline at end of file +[WEB SEND FILE](web-send-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 654 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md index 4d0a1e7b2a2d92..5d8917162d2156 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md @@ -49,4 +49,14 @@ Si el archivo a enviar existe y si el timeout no ha pasado, OK toma el valor 1\. #### Ver también -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 619 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md index 6e1c4026e57a67..f178abeb59b84c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md @@ -55,3 +55,13 @@ En el [QR SET DESTINATION](qr-set-destination.md), inserte el siguiente código:        ... //Coloque el código de búsqueda aquí  End case ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 659 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md index 5d42f5a63e21a5..2eba66d3e46b8c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md @@ -80,4 +80,13 @@ Este ejemplo ilustra el uso de la opción chunked con el comando **WEB SEND RAW #### Ver también [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 815 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md index a4361de3b82da3..d62120dd8c870b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md @@ -43,4 +43,13 @@ El siguiente método: #### Ver también -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 677 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md index f47c05b4dd411c..88d2b6c5e3c7c9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md @@ -51,4 +51,13 @@ Autenticación con un servicio web ubicado detrás de un proxy: #### Ver también [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE Get info](web-service-get-info.md) \ No newline at end of file +[WEB SERVICE Get info](web-service-get-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 786 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md index 1d281b1b8df73a..f18954163901d9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md @@ -165,4 +165,14 @@ Si la petición se enruta correctamente y el servicio web la acepta, la variable #### Ver también [WEB SERVICE GET RESULT](web-service-get-result.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 778 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md index 92984d8beaf7a6..03616c32aa4789 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md @@ -29,3 +29,13 @@ El parámetro *tipoInfo* le permite indicar el tipo de información que quiere o Se devuelve una cadena vacía cuando no hay información disponible, en particular si la última petición SOAP no generó errores. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 780 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md index 21e6ba1ab0b312..64450585f497d3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **WEB SERVICE GET RESULT** permite recuperar un valor enviado por el servicio web como resultado del proceso realizado. - -**Nota:** este comando debe utilizarse únicamente después del comando [WEB SERVICE CALL](web-service-call.md). +El comando **WEB SERVICE GET RESULT** permite recuperar un valor enviado por el servicio web como resultado del proceso realizado.este comando debe utilizarse únicamente después del comando [WEB SERVICE CALL](web-service-call.md). El parámetro *valorDevuelto* recibe el valor reenviado por el servicio web. Pase en este parámetro una variable 4D. Esta variable es generalmente $0, que corresponde al valor devuelto por el método proxy. Sin embargo, es posible utilizar variables intermediarias (debe utilizar las variables de proceso únicamente). @@ -50,4 +48,13 @@ Imagine un servicio web que devuelve la hora actual en cualquier ciudad del mund #### Ver también [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 779 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md index feb7b872091ce1..7148fbf90882c9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md @@ -61,4 +61,13 @@ Utilización de la versión 1.2 del protocolo SOAP: #### Ver también -[WEB SERVICE CALL](web-service-call.md) \ No newline at end of file +[WEB SERVICE CALL](web-service-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 901 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md index 71098786935f02..eab13b3b7ce541 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md @@ -72,4 +72,13 @@ Este ejemplo define dos parámetros: #### Ver también [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE GET RESULT](web-service-get-result.md) \ No newline at end of file +[WEB SERVICE GET RESULT](web-service-get-result.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 777 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md index 81a2d4c025529e..9f49a49e0691fc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md @@ -26,3 +26,13 @@ Pase en el parámetro *pagInicio* el nombre de la página HTML o de la ruta de a Para no enviar *pagInicio* como página de inicio para el proceso web actual, ejecute de nuevo el comando WEB SET HOME PAGE con una cadena vacía ("") pasada en *pagInicio*. **Nota:** la página de bienvenida por defecto del servidor web se define en las Propiedades de la base. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 639 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md index 753cd6afc7b9a5..a86b8f60f82188 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md @@ -64,4 +64,13 @@ Los campos **Date** y **Content-Length** siempre son definidos por defecto por 4 #### Ver también -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 660 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md index 4ab03a1afc73a0..a8eae897436af6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md @@ -79,4 +79,13 @@ Una entrada registrada se ve así: #### Ver también [WEB GET OPTION](web-get-option.md) -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 5 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md index c86ff7075cf957..3b24eed02da151 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md @@ -37,4 +37,14 @@ Si especifica una ruta de acceso invalida, se generará un error del administrad #### Ver también [Get 4D folder](get-4d-folder.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 634 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md index ee7437f5b60022..c122447d5a5b8b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md @@ -24,4 +24,14 @@ Si el servidor web se inicia correctamente, OK toma el valor *1*; de lo contrari #### Ver también -[WEB STOP SERVER](web-stop-server.md) \ No newline at end of file +[WEB STOP SERVER](web-stop-server.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 617 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md index b8206ea06cb8d4..255e68267ac638 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md @@ -20,4 +20,13 @@ Si el servidor web no se ha iniciado, el comando no hace nada. #### Ver también -[WEB START SERVER](web-start-server.md) \ No newline at end of file +[WEB START SERVER](web-start-server.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 618 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md index 734ba4b738ae37..56553c1e184e2e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md @@ -55,4 +55,13 @@ Ejemplo de método de base On Web Authentication en modo Digest: #### Ver también [Generate digest](generate-digest.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 946 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md index b19cc5f4e61e73..986dfd02be4228 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Window kind devuelve el tipo de ventana 4D cuyo número de referencia se pasa en *ventana*. Si la ventana no existe, Window kind devuelve *0* (cero). @@ -40,4 +37,13 @@ Ver el ejemplo del comando [WINDOW LIST](window-list.md "WINDOW LIST"). [GET WINDOW RECT](get-window-rect.md) [Get window title](get-window-title.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 445 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md index 3a9da08c9e91c7..417e8bd2e5b1c3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WINDOW LIST llena el array *ventanas* con los números de referencia de las ventanas abiertas actualmente en todos los procesos (procesos kernel o usuario). Sólo las ventanas "visibles" (ventanas no ocultas) se devuelven. @@ -52,4 +49,13 @@ El siguiente método de proyecto coloca en mosaico todas las ventanas abiertas a #### Ver también [Window kind](window-kind.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 442 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md index 180d5b22ea2cd6..f9dd7d8d9ccbd7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Window process devuelve el número de proceso que ejecuta la ventana cuyo número de referencia se pasa en *ventana*. Si la ventana no existe, el comando devuelve *0* (cero). @@ -25,4 +22,13 @@ Si omite el parámetro *ventana*, Window process devuelve el número del proceso #### Ver también -[Current process](current-process.md) \ No newline at end of file +[Current process](current-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 446 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md index d1138f4d38ce38..044f5d66a09930 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Windows Alt down devuelve TRUE si la tecla Alt Windows está presionada. - -**Nota:** cuando se llama en una plataforma Macintosh, Windows Alt down devuelve TRUE si la tecla Macintosh Opción está presionada. +Windows Alt down devuelve TRUE si la tecla Alt Windows está presionada.cuando se llama en una plataforma Macintosh, Windows Alt down devuelve TRUE si la tecla Macintosh Opción está presionada. #### Ejemplo @@ -30,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 563 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md index 9f9c36b793a169..c15eeb6883b6c0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Windows Ctrl down devuelve TRUE si la tecla Ctrl Windows está presionada. - -**Nota:** cuando se llama en una plataforma Macintosh, Windows Ctrl down devuelve TRUE si la tecla Macintosh Comando está presionada. +Windows Ctrl down devuelve TRUE si la tecla Ctrl Windows está presionada.cuando se llama en una plataforma Macintosh, Windows Ctrl down devuelve TRUE si la tecla Macintosh Comando está presionada. #### Ejemplo @@ -30,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 562 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md index 330f4e77cbbaac..226e104649804f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md @@ -49,4 +49,14 @@ Si la ejecución del comando es correcta, la variable sistema Document contiene *Imágenes* [PICTURE TO BLOB](picture-to-blob.md) [READ PICTURE FILE](read-picture-file.md) -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 680 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md index 081898cfe5a7c0..5c7e61edff2974 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md @@ -75,4 +75,13 @@ Ejemplo del documento XML: #### Ver también [BASE64 DECODE](base64-decode.md) -[BASE64 ENCODE](base64-encode.md) \ No newline at end of file +[BASE64 ENCODE](base64-encode.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1091 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md index a87c80a73ab858..06e74fd208c3b1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md @@ -28,4 +28,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[DOM Get XML information](dom-get-xml-information.md) \ No newline at end of file +[DOM Get XML information](dom-get-xml-information.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 732 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md index 71da0b0049ab2a..e55a39b887a114 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md @@ -36,4 +36,13 @@ En *selector*, pase una de las constantes del tema *XML* indicando la opción a #### Ver también -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1096 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md index 9be8336623c2d1..fff1b38a7d1e54 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md @@ -68,4 +68,13 @@ Inserción de una imagen SVG: [DOM SET XML DECLARATION](dom-set-xml-declaration.md) [DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[XML GET OPTIONS](xml-get-options.md) \ No newline at end of file +[XML GET OPTIONS](xml-get-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1090 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md index 369c350dccdb45..237e2e3ced8805 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md @@ -37,4 +37,13 @@ Ver el ejemplo del comando [Current date](current-date.md "Current date"). #### Ver también [Day of](day-of.md) -[Month of](month-of.md) \ No newline at end of file +[Month of](month-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 25 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/command-index.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/command-index.md index a1c846914ce3b8..ff1b61cb097e67 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/command-index.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/command-index.md @@ -90,7 +90,7 @@ title: Índice [`Cache info`](../commands-legacy/cache-info.md)
[`Call chain`](../commands-legacy/call-chain.md)
-[`CALL FORM`](call-form.md)
+[`CALL FORM`](../commands-legacy/call-form.md)
[`CALL SUBFORM CONTAINER`](../commands-legacy/call-subform-container.md)
[`CALL WORKER`](../commands-legacy/call-worker.md)
[`CANCEL`](../commands-legacy/cancel.md)
@@ -279,7 +279,7 @@ title: Índice [`Euro converter`](../commands-legacy/euro-converter.md)
[`EXECUTE FORMULA`](../commands-legacy/execute-formula.md)
[`EXECUTE METHOD`](../commands-legacy/execute-method.md)
-[`EXECUTE METHOD IN SUBFORM`](execute-method-in-subform.md)
+[`EXECUTE METHOD IN SUBFORM`](../commands-legacy/execute-method-in-subform.md)
[`EXECUTE ON CLIENT`](../commands-legacy/execute-on-client.md)
[`Execute on server`](../commands-legacy/execute-on-server.md)
[`Exp`](../commands-legacy/exp.md)
@@ -657,7 +657,7 @@ title: Índice [`METHOD GET NAMES`](../commands-legacy/method-get-names.md)
[`METHOD Get path`](../commands-legacy/method-get-path.md)
[`METHOD GET PATHS`](../commands-legacy/method-get-paths.md)
-[`METHOD GET PATHS FORM`](method-get-paths-form.md)
+[`METHOD GET PATHS FORM`](../commands-legacy/method-get-paths-form.md)
[`METHOD OPEN PATH`](../commands-legacy/method-open-path.md)
[`METHOD RESOLVE PATH`](../commands-legacy/method-resolve-path.md)
[`METHOD SET ACCESS MODE`](../commands-legacy/method-set-access-mode.md)
@@ -756,7 +756,7 @@ title: Índice [`OBJECT GET SCROLLBAR`](../commands-legacy/object-get-scrollbar.md)
[`OBJECT GET SHORTCUT`](../commands-legacy/object-get-shortcut.md)
[`OBJECT Get style sheet`](../commands-legacy/object-get-style-sheet.md)
-[`OBJECT GET SUBFORM`](object-get-subform.md)
+[`OBJECT GET SUBFORM`](../commands-legacy/object-get-subform.md)
[`OBJECT GET SUBFORM CONTAINER SIZE`](../commands-legacy/object-get-subform-container-size.md)
[`OBJECT Get subform container value`](../commands-legacy/object-get-subform-container-value.md)
[`OBJECT Get text orientation`](../commands-legacy/object-get-text-orientation.md)
@@ -802,7 +802,7 @@ title: Índice [`OBJECT SET SCROLLBAR`](../commands-legacy/object-set-scrollbar.md)
[`OBJECT SET SHORTCUT`](../commands-legacy/object-set-shortcut.md)
[`OBJECT SET STYLE SHEET`](../commands-legacy/object-set-style-sheet.md)
-[`OBJECT SET SUBFORM`](object-set-subform.md)
+[`OBJECT SET SUBFORM`](../commands-legacy/object-set-subform.md)
[`OBJECT SET SUBFORM CONTAINER VALUE`](../commands-legacy/object-set-subform-container-value.md)
[`OBJECT SET TEXT ORIENTATION`](../commands-legacy/object-set-text-orientation.md)
[`OBJECT SET THREE STATES CHECKBOX`](../commands-legacy/object-set-three-states-checkbox.md)
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md index 0c5131c3f3cb82..556b5b35851267 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md @@ -43,3 +43,10 @@ $employees:=Create entity selection([Employee]) #### Ver también [USE ENTITY SELECTION](use-entity-selection.md)
[`dataClass.newSelection()`](../API/DataClassClass.md#newselection) + +#### Propiedades + +| | | +| -------------- | ------------------------------------------- | +| Command number | 1512 | +| Thread safe | &amp;amp;amp;check; | diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/dialog.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/dialog.md index 447407ab7cfcf8..d7a8edf8ad0d5c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/dialog.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/dialog.md @@ -61,6 +61,10 @@ The dialog is closed by the user either with an "accept" action (triggered by th Keep in mind that validation does not equal saving: if the dialog includes fields, you must explicitly call the [SAVE RECORD](../commands-legacy/save-record.md) command to save any data that has been modified. +If you pass the optional *\** parameter, the form is loaded and displayed in the last open window of the current process and the command finishes its execution while leaving the active form on the screen.\ +If you pass the optional *\** parameter, the form is loaded and displayed in the last open window of the current process and the command finishes its execution while leaving the active form on the screen.\ +If you pass the optional *\** parameter, the form is loaded and displayed in the last open window of the current process and the command finishes its execution while leaving the active form on the screen.\ +This form then reacts “normally” to user actions and is closed using a standard action or when 4D code related to the form (object method or form method) calls the [CANCEL](../commands-legacy/cancel.md) or [ACCEPT](../commands-legacy/accept.md) command.\ If you pass the optional *\** parameter, the form is loaded and displayed in the last open window of the current process and the command finishes its execution while leaving the active form on the screen.\ If you pass the optional *\** parameter, the form is loaded and displayed in the last open window of the current process and the command finishes its execution while leaving the active form on the screen.\ This form then reacts “normally” to user actions and is closed using a standard action or when 4D code related to the form (object method or form method) calls the [CANCEL](../commands-legacy/cancel.md) or [ACCEPT](../commands-legacy/accept.md) command. If the current process terminates, the forms created in this way are automatically closed in the same way as if a [CANCEL](../commands-legacy/cancel.md) command had been called. This opening mode is particularly useful for displaying a floating palette with a document, without necessarily requiring another process. @@ -174,3 +178,11 @@ After a call to **DIALOG**, if the dialog is accepted, OK is set to 1; if it is [CANCEL](../commands-legacy/cancel.md)\ [Form](form.md)\ [Open window](../commands-legacy/open-window.md) + +#### Propiedades + +| | | +| ------------------ | ------------------------------------------- | +| Command number | 40 | +| Thread safe | &amp;amp;amp;cross; | +| Modifies variables | OK, error | diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/form-load.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/form-load.md index e24039e0c73698..9fbc6e3e6eb49f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/form-load.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/form-load.md @@ -21,7 +21,7 @@ displayed_sidebar: docs #### Descripción -The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents.The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents.The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents.The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents. There can only be one current form per process. +The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents.The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents.The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents.The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents.The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents. There can only be one current form per process. In the *form* parameter, you can pass: @@ -34,9 +34,9 @@ When the command is executed from a component, it loads the component forms by d ##### formData Optionally, you can pass parameters to the *form* using either the *formData* object or the form class object automatically instantiated by 4D if you have [associated a user class to the form](../FormEditor/properties_FormProperties.md#form-class). Any properties of the form data object will then be available from within the form context through the [Form](form.md) command. -Any properties of the form data object will then be available from within the form context through the [Form](form.md) command. +El objeto de datos del formulario está disponible en el [evento de formulario `On Load`](../Events/onLoad.md). -For detailed information on the form data object, please refer to the [`DIALOG`](dialog.md) command. +Para obtener información detallada sobre el objeto de datos del formulario, consulte el comando [`DIALOG`](dialog.md). ##### Printing data diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md index f86d35609feafa..9e87c4b0834aee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md @@ -29,24 +29,24 @@ El comando `IMAP New transporter` ](../API/IMAPTransporterClass.md#acceptunsecureconnection)
| False | -| .**accessTokenOAuth2**: Text
.**accessTokenOAuth2**: Object
Cadena u objeto token que representa las credenciales de autorización OAuth2. Utilizado sólo con OAUTH2 `authationMode`. Si se utiliza `accessTokenOAuth2` pero se omite `authenticationMode`, se utiliza el protocolo OAuth 2 (si el servidor lo permite). Not returned in *[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)* object. | ninguno | -| [](../API/IMAPTransporterClass.md#authenticationmode)
| se utiliza el modo de autenticación más seguro soportado por el servidor | -| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
| 300 | -| [](../API/IMAPTransporterClass.md#connectiontimeout)
| 30 | -| [](../API/IMAPTransporterClass.md#host)
| *obligatorio* | -| [](../API/IMAPTransporterClass.md#logfile)
| ninguno | -| .**password** : Text
contraseña de usuario para la autenticación en el servidor. No se devuelve en el objeto *[IMAP transporter](#imap-transporter-object)*. | ninguno | -| [](../API/IMAPTransporterClass.md#port)
| 993 | -| [](../API/IMAPTransporterClass.md#user)
| ninguno | +| *server* | Valor por defecto (si se omite) | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | +| [](../API/IMAPTransporterClass.md#acceptunsecureconnection)
| False | +| .**accessTokenOAuth2**: Text
.**accessTokenOAuth2**: Object
Cadena u objeto token que representa las credenciales de autorización OAuth2. Utilizado sólo con OAUTH2 `authationMode`. Si se utiliza `accessTokenOAuth2` pero se omite `authenticationMode`, se utiliza el protocolo OAuth 2 (si el servidor lo permite). No se devuelve en el objeto *[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)*. | ninguno | +| [](../API/IMAPTransporterClass.md#authenticationmode)
| se utiliza el modo de autenticación más seguro soportado por el servidor | +| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
| 300 | +| [](../API/IMAPTransporterClass.md#connectiontimeout)
| 30 | +| [](../API/IMAPTransporterClass.md#host)
| *obligatorio* | +| [](../API/IMAPTransporterClass.md#logfile)
| ninguno | +| .**password** : Text
contraseña de usuario para la autenticación en el servidor. No se devuelve en el objeto *[IMAP transporter](#imap-transporter-object)*. | ninguno | +| [](../API/IMAPTransporterClass.md#port)
| 993 | +| [](../API/IMAPTransporterClass.md#user)
| ninguno | > **Atención**: asegúrese de que el tiempo de espera definido sea menor que el tiempo de espera del servidor, de lo contrario el tiempo de espera del cliente será inútil. #### Result -The function returns an [**IMAP transporter object**](../API/IMAPTransporterClass.md#imap-transporter-object). Todas las propiedades devueltas son de sólo lectura\*\*. +La función devuelve un [**objeto IMAP transporter**](../API/IMAPTransporterClass.md#imap-transporter-object). Todas las propiedades devueltas son de sólo lectura\*\*. > La conexión IMAP se cierra automáticamente cuando se destruye el objeto transportador. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-convert-from-mime.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-convert-from-mime.md index ee74188975b414..e3bccf11c10d60 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-convert-from-mime.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-convert-from-mime.md @@ -88,5 +88,5 @@ $transporter:=SMTP New transporter($server) $status:=$transporter.send($email) ``` -\| mime | BLOB, Text | → | Email in MIME | -\| Function result | Object | ← | Email object | +\| mime | BLOB, Texto | → | Email en MIME | +\| Resultado de función | Objeto | ← | Objeto Email | diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-convert-to-mime.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-convert-to-mime.md index 2764aebb2d28b9..9359011121325e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-convert-to-mime.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-convert-to-mime.md @@ -27,7 +27,7 @@ displayed_sidebar: docs #### Descripción -El comando `MAIL Convert to MIME` convierte un objeto email en texto MIME. This command is called internally by [SMTP_transporter.send()](../API/SMTPTransporterClass.md#send) to format the email object before sending it. Se puede utilizar para analizar el formato MIME del objeto. +El comando `MAIL Convert to MIME` convierte un objeto email en texto MIME. Este comando es llamado internamente por [SMTP_transporter.send()](API/SMTPTransporterClass.md#send) para formatear el objeto email antes de enviarlo. Se puede utilizar para analizar el formato MIME del objeto. En *mail*, pase el contenido y los detalles de la estructura del correo electrónico a convertir. Esto incluye información como las direcciones de correo electrónico (remitente y destinatario(s)), el propio mensaje y el tipo de visualización del mensaje. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-new-attachment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-new-attachment.md index 14960351401ae6..45b72d12a696e4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-new-attachment.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/mail-new-attachment.md @@ -34,7 +34,7 @@ displayed_sidebar: docs #### Descripción -The `MAIL New attachment` command allows you to create an attachment object that you can add to an [Email object](../API/EmailObjectClass.md#email-object). +El comando `MAIL New attachment` le permite crear un objeto adjunto que puede agregar a un [objeto de Email](../API/EmailObjectClass.md#email-object). Para definir el adjunto, puede utilizar: diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/new-collection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/new-collection.md index 95f9dcc3e64cdb..b5e26d5dd25070 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/new-collection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/new-collection.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Descripción -The `New collection` command creates a new empty or prefilled collection and returns its reference. Collections can be handled using properties and functions of the [Collection class API](../API/CollectionClass.md). +El comando `New collection` crea una nueva colección vacía o prellenada y devuelve su referencia. Las colecciones pueden manejarse utilizando propiedades y funciones de la [API de la clase Collection](../API/CollectionClass.md). Si no se pasa ningún parámetro, `New collection` crea una colección vacía y devuelve su referencia. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/new-shared-collection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/new-shared-collection.md index c732901ac0dc1a..d4db2973c6a847 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/new-shared-collection.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/new-shared-collection.md @@ -19,7 +19,7 @@ displayed_sidebar: docs El comando `New shared collection` crea una nueva colección compartida vacía o precargada y devuelve su referencia. Collections can be handled using properties and functions of the [Collection class API](../API/CollectionClass.md). -Adding an element to this collection using the assignment operator must be surrounded by the [`Use...End use`](../Concepts/shared.md#useend-use) structure, otherwise an error is generated (this is not necessary when adding elements using functions such as [`push()`](../API/CollectionClass.md#push) or [`map()`](../API/CollectionClass.md#map) because they automatically trigger an internal *Use...End use*). Sin embargo, es posible leer un elemento sin una estructura *Use...End use*. +La adición de un elemento a esta colección utilizando el operador de asignación debe estar rodeada por la estructura [`Use...End use`](../Concepts/shared.md#useend-use), de lo contrario se genera un error (esto no es necesario cuando se añaden elementos utilizando funciones como [`push()`](../API/CollectionClass.md#push) o [`map()`](../API/CollectionClass.md#map) porque activan automáticamente una estructura interna *Use...End use*). Sin embargo, es posible leer un elemento sin una estructura *Use...End use*. :::info diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/pop3-new-transporter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/pop3-new-transporter.md index 335da459df3f01..97d02046ec84cc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/pop3-new-transporter.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/pop3-new-transporter.md @@ -11,7 +11,7 @@ displayed_sidebar: docs | Parámetros | Tipo | | Descripción | | ---------- | ---------------------------------- | - | --------------------------------------------------------------------------------- | | server | Object | → | Información del servidor de correo | -| Resultado | 4D.POP3Transporter | ← | [POP3 transporter object](../API/POP3TransporterClass.md#pop3-transporter-object) | +| Resultado | 4D.POP3Transporter | ← | [Objeto transporter POP3](../API/POP3TransporterClass.md#pop3-transporter-object) | @@ -25,7 +25,7 @@ displayed_sidebar: docs #### Descripción -The `POP3 New transporter` command configures a new POP3 connectionaccording to the *server* parameter and returns a new [POP3 transporter](../API/POP3TransporterClass.md#pop3-transporter-object) object. El objeto transportador devuelto se utilizará normalmente para recibir correos electrónicos. +El comando `POP3 New transporter` configura una nueva conexión POP3 en función del parámetro *server* y devuelve un nuevo objeto [transporter POP3](../API/POP3TransporterClass.md#pop3-transporter-object). El objeto transportador devuelto se utilizará normalmente para recibir correos electrónicos. En el parámetro *server*, pase un objeto que contenga las siguientes propiedades: diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/print-form.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/print-form.md index d80a38363d0121..9814801d6d9c0c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands/print-form.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/print-form.md @@ -23,7 +23,7 @@ displayed_sidebar: docs #### Descripción -**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*. It is usually used to print very complex reports that require complete control over the printing process. **Print form** does not do any record processing, break processing or page breaks. These operations are your responsibility. **Print form** prints fields and variables in a fixed size frame only. +**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*. It is usually used to print very complex reports that require complete control over the printing process. **Print form** does not do any record processing, break processing or page breaks. These operations are your responsibility. **Print form** prints fields and variables in a fixed size frame only. In the *form* parameter, you can pass: @@ -95,9 +95,9 @@ In this case, the command will print the section included between the *areaStart Optionally, you can pass parameters to the *form* using either the *formData* object or the form class object automatically instantiated by 4D if you have [associated a user class to the form](../FormEditor/properties_FormProperties.md#form-class). Any properties of the form data object will then be available from within the form context through the [Form](form.md) command. Optionally, you can pass parameters to the *form* using either the *formData* object or the form class object automatically instantiated by 4D if you have [associated a user class to the form](../FormEditor/properties_FormProperties.md#form-class). -For detailed information on the form data object, please refer to the [`DIALOG`](dialog.md) command. +Para obtener información detallada sobre el objeto de datos del formulario, consulte el comando [`DIALOG`](dialog.md). -**Return value** +**Valor devuelto** The value returned by **Print form** indicates the height of the printable area. This value will be automatically taken into account by the [Get printed height](../commands-legacy/get-printed-height.md) command. @@ -126,21 +126,21 @@ This command prints external areas and objects (for example, 4D Write or 4D View The following example performs as a [PRINT SELECTION](../commands-legacy/print-selection.md) command would. However, the report uses one of two different forms, depending on whether the record is for a check or a deposit: ```4d - QUERY([Register]) // Select the records + QUERY([Register]) // Seleccionar los registros  If(OK=1) -    ORDER BY([Register]) // Sort the records +    ORDER BY([Register]) // Ordenar los registros     If(OK=1) -       PRINT SETTINGS // Display Printing dialog boxes +       PRINT SETTINGS // Mostrar cuadros de diálogo de impresión        If(OK=1)           For($vlRecord;1;Records in selection([Register]))              If([Register]Type ="Check") -                Print form([Register];"Check Out") // Use one form for checks +                Print form([Register];"Check Out") // Utilice un formulario para cheques              Else -                Print form([Register];"Deposit Out") // Use another form for deposits +                Print form([Register];"Deposit Out") // Utilice otro formulario para depósitos              End if              NEXT RECORD([Register])           End for -          PAGE BREAK // Make sure the last page is printed +          PAGE BREAK // Asegúrese de que se imprime la última página        End if     End if  End if diff --git a/i18n/es/docusaurus-plugin-content-docs/version-18/Concepts/identifiers.md b/i18n/es/docusaurus-plugin-content-docs/version-18/Concepts/identifiers.md index 66b91a6eac3742..d55bbfca9f561e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-18/Concepts/identifiers.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-18/Concepts/identifiers.md @@ -11,7 +11,7 @@ Las siguientes reglas se aplican a todas las estructuras de 4D. - Un nombre debe comenzar por un carácter alfabético, un guión bajo o un dólar ("$") (tenga en cuenta que un signo de dólar puede denotar un elemento local, ver). - A partir de ahí, el nombre puede incluir caracteres alfabéticos, numéricos, el carácter espacio y el carácter de subrayado ("_"). -- Puntos (".") Periods (".") and brackets ("[ ]") are not allowed in table, field, method, or variable names. +- Puntos (".") Puntos (".") Puntos (".") Puntos (".") y corchetes ("[ ]") no están permitidos en los nombres de tablas, campos, métodos o variables. - No se permiten comas, barras inclinadas, comillas ni dos puntos. - Los caracteres reservados para su uso como operadores, como * y +, no están permitidos. - No utilice nombres reservados, es decir, nombres de comandos 4D (`Date`, `Time`, etc.), palabras clave (If, For, etc.) y constantes. @@ -20,7 +20,7 @@ Las siguientes reglas se aplican a todas las estructuras de 4D. ### Reglas adicionales para las propiedades de los objetos y los nombres ORDA - Los caracteres de espacio no están permitidos. -- Puntos (".") Periods (".") and brackets ("[ ]") are not allowed. +- Puntos (".") Puntos (".") Puntos (".") Puntos (".") Periods (".") and brackets ("[ ]") are not allowed. - Los nombres son sensibles a las mayúsculas y minúsculas. ### Reglas adicionales para SQL diff --git a/i18n/es/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md b/i18n/es/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md index c6a2e4ba240160..cd352dcaf3aa89 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md @@ -814,6 +814,20 @@ No obtendrá el resultado esperado porque el valor null será evaluado por 4D co $vSingles:=ds.Person.query("spouse = null") // Sintaxis correcta ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + **No igual a en colecciones** diff --git a/i18n/es/docusaurus-plugin-content-docs/version-19/API/EntityClass.md b/i18n/es/docusaurus-plugin-content-docs/version-19/API/EntityClass.md index 980527eee3e22a..7e1abb09ab2228 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-19/API/EntityClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-19/API/EntityClass.md @@ -95,7 +95,7 @@ El tipo de valor del atributo depende del tipo [kind](DataClassClass.md#attribut La función `.clone()` crea en memoria una nueva entidad que hace referencia al mismo registro que la entidad original. This function allows you to update entities separately. Note however that, for performance reasons, the new entity shares the same reference of object attributes as the cloned entity. -> Keep in mind that any modifications done to entities will be saved in the referenced record only when the [`.save()`](#save) function is executed. +> Tenga en cuenta que toda modificación realizada a las entidades se guardará en el registro referenciado solo cuando se ejecute la función [`.save()`](#save). Esta función sólo puede utilizarse con entidades ya guardadas en la base de datos. No se puede llamar a una entidad recién creada (para la que [`.isNew()`](#isnew) devuelve **True**). diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/CollectionClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/CollectionClass.md index 0598a801cfdf26..ea71d2851bc082 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/CollectionClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/CollectionClass.md @@ -62,7 +62,7 @@ Notas | [](#reduceRight)
| | [](#remove)
| | [](#resize)
| -| Ejemplo 2 | +| [](#reverse)
| | [](#shift)
| | [](#slice)
| | [](#some)
| @@ -229,10 +229,10 @@ Esta función modifica la colección original. -| Parámetros | Tipo | | Descripción | -| ---------- | ------- | :-------------------------: | ----------------------------------------------------------------------------------- | -| index | Integer | -> | Índice del elemento a devolver | -| Result | any | <- | Este ejemplo devuelve las personas contratadas hace más de 90 días: | +| Parámetros | Tipo | | Descripción | +| ---------- | ------- | :-------------------------: | ------------------------------ | +| index | Integer | -> | Índice del elemento a devolver | +| Result | any | <- | El elemento en ese índice | @@ -461,12 +461,12 @@ $c2:=$c.concat(6;7;8) //[1,2,3,4,5,6,7,8] -| Parámetros | Tipo | | Descripción | -| ------------ | ---------- | :-------------------------: | -------------------------------------------------------------- | -| option | Integer | -> | Ejemplo 3 | -| groupWithCol | Collection | -> | Colección compartida que se agrupa con la colección resultante | -| groupWithObj | Object | -> | Objeto compartido que se agrupa con la colección resultante | -| Result | Collection | <- | Colección original ordenada | +| Parámetros | Tipo | | Descripción | +| ------------ | ---------- | :-------------------------: | -------------------------------------------------------------------------------------------------------------------------------------------- | +| option | Integer | -> | `ck resolve pointers`: resolver punteros antes de copiar,
`ck shared`: devolver una colección compartida | +| groupWithCol | Collection | -> | Colección compartida que se agrupa con la colección resultante | +| groupWithObj | Object | -> | Objeto compartido que se agrupa con la colección resultante | +| Result | Collection | <- | Colección original ordenada | @@ -707,7 +707,7 @@ Resumen #### Descripción -Colección original con valores rellenados +Colección original sin elementos eliminados > Esta función no modifica la colección original. @@ -1149,7 +1149,7 @@ La retrollamada recibe los siguientes parámetros: Puede definir los siguientes parámetros: -- Búsquedas con fechas: +- Si se intenta eliminar un elemento de una colección vacía, el método no hace nada (no se genera ningún error). - *$1.stop* (boolean, opcional): **true** para detener la retrollamada del método. El valor devuelto es el último calculado. Por defecto, `.find()` busca en toda la colección. Opcionalmente, se puede pasar en *startFrom* el índice del elemento desde el que iniciar la búsqueda. @@ -1237,7 +1237,7 @@ La retrollamada recibe los siguientes parámetros: Puede definir los siguientes parámetros: -- Búsquedas con fechas: +- Si se intenta eliminar un elemento de una colección vacía, el método no hace nada (no se genera ningún error). - *$1.stop* (boolean, opcional): **true** para detener la retrollamada del método. El valor devuelto es el último calculado. Por defecto, `.findIndex()` busca en toda la colección. Opcionalmente, se puede pasar en *startFrom* el índice del elemento desde el que iniciar la búsqueda. @@ -1752,7 +1752,7 @@ Por defecto, los elementos nulos o vacíos de la colección se devuelven en la c #### Descripción -Objeto compartido que se agrupa con la colección resultante +Diferente de Si *startFrom* < 0, se considera el desplazamiento desde el final de la colección (*startFrom:=startFrom+length*). > Esta función no modifica la colección original. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md index 669f95753b8551..3fa8b1d4058711 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md @@ -910,7 +910,7 @@ attributePath|formula comparator value donde: -- **attributePath**: ruta del atributo sobre el que se quiere ejecutar la búsqueda. Este parámetro puede ser un nombre simple (por ejemplo, "país") o cualquier ruta de atributo válida (por ejemplo, "país.nombre".) En el caso de una ruta de atributos de tipo Collection, se utiliza la notación \[ ] para manejar todas las ocurrencias (por ejemplo "niños[ ].edad"). En el caso de una ruta de atributo cuyo tipo es `Collection`, se utiliza la notación `[]` para manejar todas las ocurrencias (por ejemplo `children[].age`). +- **attributePath**: ruta del atributo sobre el que se quiere ejecutar la búsqueda. Este parámetro puede ser un nombre simple (por ejemplo, "país") o cualquier ruta de atributo válida (por ejemplo, "país.nombre".) En el caso de una ruta de atributo cuyo tipo es `Collection`, se utiliza la notación `[]` para manejar todas las ocurrencias (por ejemplo `children[].age`). > \*No puede utilizar directamente atributos cuyo nombre contenga caracteres especiales como ".", "\[ ]", o "=", ">", "#"..., porque se evaluarán incorrectamente en la cadena de consulta. Si necesita consultar dichos atributos, debe considerar el uso de marcadores, que permiten un rango ampliado de caracteres en las rutas de los atributos (ver **Uso de marcadores de posición** *a continuación*) @@ -943,8 +943,8 @@ Las fórmulas en las consultas pueden recibir parámetros a través de $1. Este | Incluído en | IN | Devuelve los datos iguales a al menos uno de los valores de una colección o de un conjunto de valores, admite el comodín (@) | | Contiene palabra clave | % | Las palabras claves pueden utilizarse en atributos de tipo texto o imagen | -- Puede ser un **marcador de posición** (ver **Uso de marcadores de posición** más adelante) o cualquier expresión que coincida con la propiedad de tipo de datos. **value**: el valor a comparar con el valor actual de la propiedad de cada entidad en la selección de entidades. Note that, in case of type mismatch with scalar types (text, date, number...), 4D will try to convert the **value** type to the attribute data type whenever possible, for an easier handling of values coming from the Internet. For example, if the string "v20" is entered as **value** to compare with an integer attribute, it will be converted to 20. - For example, if the string "v20" is entered as value to compare with an integer attribute, it will be converted to 20. +- **value**: el valor a comparar con el valor actual de la propiedad de cada entidad en la selección de entidades. Puede ser un **marcador de posición** (ver **Uso de marcadores de posición** más adelante) o cualquier expresión que coincida con la propiedad de tipo de datos. Por ejemplo, si se introduce la cadena "v20" como **value** para comparar con un atributo entero, se convertirá a 20. For example, if the string "v20" is entered as value to compare with an integer attribute, it will be converted to 20. + Tenga en cuenta que, en caso de no coincidencia de tipo con tipos escalares (texto, fecha, número...), 4D intentará convertir el tipo **value** al tipo de datos del atributo siempre que sea posible, para un manejo más fácil de los valores procedentes de Internet. - La constante de tipo **texto** puede pasarse con o sin comillas simples (ver **Uso de comillas** más abajo). Para consultar una cadena dentro de otra cadena (una consulta de tipo "contiene"), utilice el símbolo de comodín (@) en el valor para aislar la cadena a buscar como se muestra en este ejemplo: "@Smith@". Las siguientes palabras claves están prohibidas para las constantes de texto: true, false. - Valores constantes de tipo **booleano**: **true** o **false** (Sensible a las mayúsculas y minúsculas). - Valores constantes de **tipo numérico**: los decimales se separan con un '.' (punto). @@ -1038,6 +1038,20 @@ No obtendrá el resultado esperado porque el valor null será evaluado por 4D co $vSingles:=ds.Person.query("spouse = null") // Sintaxis correcta ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### No igual a en colecciones Al buscar dentro de atributos de objetos de dataclass que contengan las colecciones, el comparador "not equal to *value*" (`#` o `!=`) encontrará los elementos en los que TODAS las propiedades sean diferentes de *value* (y no aquellos en los que AL MENOS una propiedad sea diferente de *value*, que es como funcionan otros comparadores). Básicamente, equivale a buscar "Not(buscar elementos de la colección cuya propiedad sea igual a *value*"). Por ejemplo, con las siguientes entidades: diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/EntityClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/EntityClass.md index 1316b6605e2a94..0e72b0ec7d25eb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/EntityClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/EntityClass.md @@ -98,11 +98,11 @@ El tipo de valor del atributo depende del tipo [kind](DataClassClass.md#attribut #### Descripción -The `.clone()` function creates in memory a new entity referencing the same record as the original entity. +La función `.clone()` crea en la memoria una nueva entidad que hace referencia al mismo registro que la entidad original. This function allows you to update entities separately. Note however that, for performance reasons, the new entity shares the same reference of object attributes as the cloned entity. -> Keep in mind that any modifications done to entities will be saved in the referenced record only when the [`.save()`](#save) function is executed. +> Tenga en cuenta que toda modificación realizada a las entidades se guardará en el registro referenciado sólo cuando se ejecute la función [`.save()`](#save). Esta función sólo puede utilizarse con entidades ya guardadas en la base de datos. No se puede llamar a una entidad recién creada (para la que [`isNew()`](#isnew) devuelve **True**). diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/SignalClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/SignalClass.md index 88ff2672a2f23b..f0643847bb8541 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/SignalClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/API/SignalClass.md @@ -198,7 +198,7 @@ Esta propiedad está en **lectura-escritura**. #### Descripción -Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Cuando se crea la señal, `.signaled` es **False**. La propiedad `.signaled` se convierte en true cuando cualquier worker/proceso llama al método `.trigger()`. +Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Cuando se crea la señal, `.signaled` es **False**. La propiedad `.signaled` se convierte en true cuando cualquier worker/proceso llama al método `.trigger()`. Esta propiedad es de **solo lectura**. @@ -230,7 +230,7 @@ Esta propiedad es de **solo lectura**. La función `.trigger( )` define la propiedad `signaled` del objeto signal como **true** y despierta a todos los workers o procesos que esperan esta signal. -Si la señal ya está en el estado de señalización (es decir, la propiedad signaled\\\\\\` ya es **true**), la función no hace nada. +Si la señal ya está en el estado de señalización (es decir, la propiedad signaled\\\\\\\\\` ya es **true**), la función no hace nada. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md index 73a474557f624c..f71990358b5253 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md @@ -70,27 +70,27 @@ La ventana de error de sintaxis propone varias opciones: - **Continuar**: la ejecución continua. La línea con el error puede ser parcialmente ejecutada, dependiendo de donde se encuentre el error. Continúe con precaución: el error puede impedir que el resto de su método se ejecute correctamente. Recomendamos hacer clic en **Continuar** sólo si el error está en una llamada trivial (como `SET WINDOW TITLE`) que no impide ejecutar y probar el resto de su código. -> Consejo: para ignorar un error que ocurre repetidamente (por ejemplo, en bucles), puede convertir el botón **Continuar** en un botón **Ignorar**. Mantenga presionada la tecla **Alt** (Windows) u **Opción** (macOS) y haga clic en el botón **Continuar** la primera vez que aparece. La etiqueta del botón cambia a **Ignorar** si el diálogo es llamado de nuevo por el mismo error. +> Consejo: para ignorar un error que ocurre repetidamente (por ejemplo, en bucles), puede convertir el botón **Continuar** en un botón **Ignorar**. Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. -- **Abandonar**: detiene la ejecución del método y devuelve al estado antes del inicio de la ejecución del método: +- **Abort**: Stops method execution and returns to the state before the method started executing: - Si un método formulario o método objeto se está ejecutando en respuesta a un evento, se detiene y se vuelve al formulario. - Si el método se está ejecutando desde dentro del entorno de la aplicación, volverá a ese entorno. -- **Copiar**: copia la información de depuración en el portapapeles. La información describe el entorno interno del error (número, componente interno, etc.). Está formateado como texto tabulado. +- **Copy**: Copies the debugging information into the clipboard. La información describe el entorno interno del error (número, componente interno, etc.). Está formateado como texto tabulado. -- **Guardar...**: guarda el contenido de la ventana de error de sintaxis y la cadena de llamadas en un archivo `.txt`. +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## Debugger -Un error común de los principiantes al tratar con la detección de errores es hacer clic en **Abandonar** en la ventana de error de sintaxis, volver al editor de código, y tratar de averiguar lo que está pasando mirando el código. ¡No lo haga! Ahorrará mucho tiempo y energía utilizando siempre el **Depurador**. +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. ¡No lo haga! Ahorrará mucho tiempo y energía utilizando siempre el **Depurador**. El depurador le permite pasar lentamente por los métodos. Muestra toda la información que necesita para entender por qué ha ocurrido un error. Una vez que tiene esta información, usted sabe cómo arreglar el error. -Otra razón para usar el Depurador es el desarrollo del código. A veces se puede escribir un algoritmo que es más complejo de lo habitual. A pesar de todos los sentimientos de cumplimiento, no puede estar totalmente seguro de que su codificación sea 100% correcta. En lugar de ejecutarlo "ciego", puede utilizar el comando `TRACE` al comienzo de su código, luego ejecutarlo paso a paso para mantener un ojo en lo que sucede. +Otra razón para usar el Depurador es el desarrollo del código. A veces se puede escribir un algoritmo que es más complejo de lo habitual. A pesar de todos los sentimientos de cumplimiento, no puede estar totalmente seguro de que su codificación sea 100% correcta. Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## Rupturas En el proceso de depuración, puede que necesite saltar el seguimiento de algunas partes del código hasta una línea determinada. O, puede querer rastrear el código cuando una expresión dada tiene un determinado valor (e.. "$myVar > 1000"), o cada vez que se llama un comando 4D específico. -Estas necesidades están cubiertas por **puntos de interrupción** y las funciones de **captura de comando**. Pueden configurarse desde el editor de código, el depurador o el explorador de ejecución. +These needs are covered by **breakpoints** and **command catching** features. Pueden configurarse desde el editor de código, el depurador o el explorador de ejecución. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md index 2a46d08f191488..1ac6a6b3a84a39 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md @@ -47,33 +47,33 @@ La barra de herramientas del depurador incluye varios botones, asociados a acces Detener el modo Seguimiento y reanudar el curso normal de la ejecución del método. -> **Shift** + **F5** o **Shift** + clic en el botón **No Trace** retoma la ejecución. También desactiva todas las llamadas a TRACE posteriores en el proceso actual. +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. También desactiva todas las llamadas a TRACE posteriores en el proceso actual. #### Pasar por encima Ejecuta la línea de método actual, indicada por el contador del programa (la flecha amarilla). El depurador pasa a la siguiente línea. -El botón Ejecutar no entra en las subrutinas y las funciones, sino que se queda al nivel del método que está rastreando en ese momento. Si desea también rastrear las llamadas a las subrutinas y a las funciones, utilice el botón **Paso a paso detallado**. +El botón Ejecutar no entra en las subrutinas y las funciones, sino que se queda al nivel del método que está rastreando en ese momento. If you want to also trace subroutines and functions calls, use the **Step Into** button. -En la depuración remota, si el método se ejecuta en el servidor, se llama al método padre después de que se ejecute la última línea del método hijo. Si el método padre se ejecuta en el lado remoto, el botón **Step Over** tiene el mismo efecto que el botón **No Trace**. +En la depuración remota, si el método se ejecuta en el servidor, se llama al método padre después de que se ejecute la última línea del método hijo. If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### Paso a paso detallado Cuando se ejecuta una línea que llama a otro método (subrutina o función), haga clic en este botón para mostrar el otro método y recorrerlo paso a paso. -El nuevo método se convierte en el método actual (superior) en la [Ventana cadena de llamada ](#call-chain-pane) de la ventana del depurador. +El nuevo método se convierte en el método actual (superior) en la [Ventana cadena de llamada](#call-chain-pane) de la ventana del depurador. -Cuando se ejecuta una línea que no llama a otro método, este botón tiene el mismo efecto que el botón **Ejectuar paso a paso**. +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. -#### Ejecutar y salir +#### Step Out -Si está rastreando subrutinas y funciones, al hacer clic en este botón podrá ejecutar todo el método que se está rastreando en ese momento y retroceder hasta el método llamante. La ventana del depurador vuelve al método anterior de la cadena de llamada. Si el método actual es el último método de la cadena de llamada, se cierra la ventana del depurador. +If you are tracing subroutines and functions, clicking on this button allows you to execute the entire method currently being traced and to step back to the caller method. The Debugger window is brought back to the previous method in the call chain. If the current method is the last method in the call chain, the Debugger window is closed. -En la depuración remota, al ejecutarse la última línea del método, si el método se ejecuta en el servidor, se llama al método padre. Si el método padre se ejecuta en el lado remoto, el botón actúa de la misma manera que el botón Reanudar. +In remote debugging, on execution of the last line of the method, if the method is executed on the server, the parent method is called. If the parent method is executed on the remote side, the button acts in the same manner as the No Trace button. -#### Paso a paso del nuevo proceso +#### Step Into Process -Al ejecutar una línea que crea un nuevo proceso (es decir, al llamar al comando New process), este botón abre una nueva ventana del depurador que permite rastrear el método de gestión del proceso recién creado. En la ejecución de una línea que no crea un nuevo proceso, este botón actúa de la misma manera que el botón Ejecutar paso a paso. +On execution of a line that creates a new process (i.e., calling the New process command), this button opens a new Debugger window that allows you to trace the process method of the newly created process. On execution of a line that does not creates a new process, this button acts in the same manner as the Step Over button. #### Abortar @@ -84,9 +84,9 @@ Detiene la ejecución del método y vuelve al estado anterior al inicio de la ej #### Detener y editar -El método que se está ejecutando cuando se presiona el botón **Abortar y Editar** se abre en el Editor de Código. +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Consejo**: utilice este botón cuando sepa qué cambios son necesarios en su código, y el momento en que deben ser efectuados para proseguir con las pruebas de sus métodos. Una vez haya terminado con los cambios, vuelva a ejecutar el método. +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. Una vez haya terminado con los cambios, vuelva a ejecutar el método. #### Acción de edición @@ -94,7 +94,7 @@ El método que se está ejecutando en el momento de presionar el botón Editar s Si utiliza este botón para modificar un método, las modificaciones sólo serán efectivas la próxima vez que se ejecute. -> **Consejo:** utilice este botón cuando sepa qué cambios son necesarios en su código y cuando no interfieran con el resto del código a ejecutar o rastrear. +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. #### Parámetros Guardar diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md index c8a06914651a84..3c4fc52b286475 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md @@ -23,7 +23,7 @@ Sólo un depurador puede depurar una aplicación 4D Server en un momento dado. S El depurador asociado es llamado cada vez que se encuentra un 4D Server: - un punto de ruptura -- un comando `TRACE` +- a `TRACE` command - un comando de captura - un error @@ -31,7 +31,7 @@ Tenga en cuenta que los mensajes de error se envían a la máquina depuradora as Note que: -- El código ejecutado en el método `On Server Startup Database` no se puede depurar de forma remota. Sólo se puede depurar del lado del servidor +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. Sólo se puede depurar del lado del servidor - Si no hay un depurador asociado, el código en ejecución no se detiene con los comandos de depuración ## Asociar al depurador @@ -47,20 +47,20 @@ Puede asociar el depurador a cualquier cliente 4D remoto que pueda conectarse a Para asociar el depurador a un cliente 4D remoto: -1. En la barra de menús de 4D Server, seleccione **Editar** > **Separar depurador** para que el depurador esté disponible para las máquinas remotas (este paso es inútil si 4D Server está funcionando sin interfaz). -2. En un cliente 4D remoto conectado al servidor, seleccione **Ejecutar** > **Adjuntar depurador remoto** +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -Si se acepta el archivo adjunto (ver [Solicitudes de archivo adjunto rechazadas](#rejected-attachment-requests)), el comando de menú se convierte en **Desconectar depurador remoto**. +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. El depurador se conecta entonces al cliente 4D remoto: - hasta el final de la sesión usuario -- hasta que se seleccione `Detach Remote Debugger` +- until you select `Detach Remote Debugger` Para volver a conectar el depurador al servidor: -1. En el cliente 4D remoto que tiene el depurador conectado, seleccione **Ejecutar** > **Separar depurador remoto**. -2. En la barra de menú de 4D Server, seleccione **Editar** > **Adjuntar depurador**. +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > Cuando el depurador está conectado al servidor (por defecto), todos los procesos del servidor se ejecutan automáticamente en modo cooperativo para permitir la depuración. Esto puede tener un impacto significativo en el rendimiento. Cuando no necesite depurar en la máquina del servidor, se recomienda separar el depurador y adjuntarlo a una máquina remota si es necesario. @@ -68,13 +68,13 @@ Para volver a conectar el depurador al servidor: 4D le permite adjuntar automáticamente el depurador a un cliente 4D remoto o al servidor al inicio: -- En el servidor (si no es headless), esta opción se llama **Attach Debugger At Startup**. Cuando el servidor se inicia, adjunta automáticamente el depurador (por defecto). +- On the server (if not headless), this option is named **Attach Debugger At Startup**. Cuando el servidor se inicia, adjunta automáticamente el depurador (por defecto). -> **Advertencia**: si se selecciona esta opción para un servidor que posteriormente se lanza en modo sin interfaz, el depurador no estará disponible para este servidor. +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- Asociar al depurador Cuando se selecciona, el cliente 4D remoto intentará automáticamente adjuntar el depurador remoto en cada conexión posterior a la misma base de datos 4D Server. Depuradores adjuntos +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. Cuando se selecciona, el cliente 4D remoto intentará automáticamente adjuntar el depurador remoto en cada conexión posterior a la misma base de datos 4D Server. If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. -> Esta configuración se aplica por proyecto y se almacena localmente en el archivo [`.4DPreferences`](Project/architecture.md#userpreferencesusername). +> This setting is applied per project and is stored locally in the [`.4DPreferences`](Project/architecture.md#userpreferencesusername) file. ## Peticiones de adjuntos rechazadas @@ -88,5 +88,5 @@ Si una máquina intenta conectar el depurador cuando ya está conectado, se rech Adjuntar el depurador en este caso requiere que: -- el depurador adjunto se separa del servidor o del cliente 4D remoto utilizando respectivamente el comando de menú **Detach debugger** o **Detach remote debugger**, +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - se cierra la sesión del cliente 4D remoto adjunto. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md index 38b4a52da42a33..1b8d7c5bc05884 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md @@ -47,4 +47,4 @@ Una vez que un texto está rotado, puede seguir cambiando su tamaño o posición
-[Negrita](properties_Text.md#bold) - [Estilo de línea de borde](properties_BackgroundAndBorder.md#border-line-style) - [Inferior](properties_CoordinatesAndSizing.md#bottom) - [Clase](properties_Object.md#css-class) - [Radio de la esquina](properties_CoordinatesAndSizing.md#corner-radius) - [Color de relleno](properties_BackgroundAndBorder.md#background-color--fill-color) - [Fuente](properties_Text.md#font) - [Color de fuente](properties_Text.md#font-color) - [Tamaño de fuente](properties_Text.md#font-size) - [Altura](properties_CoordinatesAndSizing.md#height) - [Alineación horizontal](properties_Text.md#horizontal-alignment) - [Dimensionamiento horizontal](properties_ResizingOptions.md#horizontal-sizing) - [Cursiva](properties_Text.md#italic) - [Izquierda](properties_CoordinatesAndSizing.md#left) - [Nombre del objeto](properties_Object.md#object-name) - [Orientación](properties_Text.md#orientation) - [Derecha](properties_CoordinatesAndSizing.md#right) - [Título](properties_Object.md#title) - [Superior](properties_CoordinatesAndSizing.md#top) - [Tipo](properties_Object.md#type) - [Subrayado](properties_Text.md#underline) - [Dimensionamiento vertical](properties_ResizingOptions.md#vertical-sizing) - [Visibilidad](properties_Display.md#visibility) - [Ancho](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Notes/updates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Notes/updates.md index 6596e14429d519..a9ebe93b7bbe09 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Notes/updates.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Notes/updates.md @@ -17,7 +17,7 @@ Lea [**Novedades en 4D 20 R6**](https://blog.4d.com/en-whats-new-in-4d-20-R6/), - Nuevo archivo [4DCEFParameters.json](../FormObjects/webArea_overview.md#4dcefparametersjson) para personalizar las áreas web anidadas de 4D. - Nueva clase [HTTPAgent](../API/HTTPAgentClass.md) y nueva propiedad [`agent`](../API/HTTPRequestClass.md#options-parameter) para la clase HTTPRequest. - Nuevas funciones [`enableState()`](../API/WebFormClass.md) y [`disableState()`](../API/WebFormClass.md) para controlar los estados de las páginas Qodly desde el servidor. -- Nueva [\\\\\\\\\` API$singleton](../REST/$singleton.md) para llamar las funciones singleton expuestas desde REST y nuevos [privilegios asociados](../ORDA/privileges.md). +- Nueva [\\\\\\\\\\\\` API$singleton](../REST/$singleton.md) para llamar las funciones singleton expuestas desde REST y nuevos [privilegios asociados](../ORDA/privileges.md). - Un [nuevo botón de parámetros](../settings/web.md#activate-rest-authentication-through-dsauthentify-function) le ayuda a actualizar su proyecto para utilizar el modo REST "conexión forzada" (el método base `On REST Authentication` es ahora obsoleto). - Una [nueva pestaña de parámetros](../Project/compiler.md#warnings) permite definir la generación de advertencias de forma global. - Varios comandos, principalmente del tema "Entorno 4D", ahora son hilo seguro ([ver la lista completa](https://doc.4d.com/4Dv20R6/4D/Preemptive_6957385.999-2878208.en.html)), así como algunos selectores de los comandos [`SET DATABASE PARAMETER`](https://doc.4d.com/4dv20R/help/command/en/page642.html)/[`Get database parameter`](https://doc.4d.com/4dv20R/help/command/en/page643.html). @@ -61,7 +61,7 @@ Lea [**Novedades en 4D 20 R4**](https://blog.4d.com/en-whats-new-in-4d-v20-R4/), #### Lo más destacado -- Soporte de [formato de cifrado ECDSA\\\\\\\\\`](../Admin/tls.md#encryption) para certificados TLS. +- Soporte de [formato de cifrado ECDSA\\\\\\\\\\\\`](../Admin/tls.md#encryption) para certificados TLS. - Las conexiones TLS cliente/servidor y servidor SQL ahora se [configuran dinámicamente](../Admin/tls.md#enabling-tls-with-the-other-servers) (no se requieren archivos de certificado). - Formato HTML directo para [exportaciones de definición de estructura](https://doc.4d.com/4Dv20R4/4D/20-R4/Exporting-and-importing-structure-definitions.300-6654851.en.html). - Nuevo [Code Live Checker](../code-editor/write-class-method.md#warnings-and-errors) que mejora el control del código durante los pasos de declaración, comprobación de sintaxis y compilación para evitar errores de ejecución. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Project/components.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Project/components.md index 6ff25cae30e136..d82c4cc0303411 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Project/components.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R6/Project/components.md @@ -5,7 +5,7 @@ title: Componentes Un componente 4D es un conjunto de código y/o de formularios 4D que representan una o varias funcionalidades que pueden añadirse y utilizarse en sus proyectos. Por ejemplo, el componente [4D SVG](https://github.com/4d/4D-SVG) añade comandos avanzados y un motor de renderizado integrado que puede utilizarse para visualizar archivos SVG. -Puede [desarrollar](../Extensions/develop-components.md) y [crear](../Desktop/building.md) sus propios componentes 4D, o descargar componentes públicos compartidos por la comunidad 4D que [se pueden encontrar en GitHub](https://github.com/search?q=4d-component\\&type=Repositories). +Puede [desarrollar](../Extensions/develop-components.md) y [crear](../Desktop/building.md) sus propios componentes 4D, o descargar componentes públicos compartidos por la comunidad 4D que [se pueden encontrar en GitHub](https://github.com/search?q=4d-component\\\&type=Repositories). Al desarrollar en 4D, los archivos de los componentes pueden almacenarse de forma transparente en su ordenador o en un repositorio Github. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/CollectionClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/CollectionClass.md index 76dd5f03615110..ab1d3fdca1fdf8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/CollectionClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/CollectionClass.md @@ -5,7 +5,7 @@ title: Collection La clase Collection gestiona variables de tipo [Collection](Concepts/dt_collection.md). -Ejemplo 3 +Una colección es inicializada con los comandos [`New collection`](../commands/new-collection.md) o [`New shared collection`](../commands/new-shared-collection.md). ### Ejemplo @@ -57,7 +57,7 @@ Notas | [](#reduceRight)
| | [](#remove)
| | [](#resize)
| -| Ejemplo 2 | +| [](#reverse)
| | [](#shift)
| | [](#slice)
| | [](#some)
| @@ -81,10 +81,10 @@ Notas -| Parámetros | Tipo | | Descripción | -| ---------- | ------- | :-------------------------: | ----------------------------------------------------------------------------------- | -| index | Integer | -> | Índice del elemento a devolver | -| Result | any | <- | Este ejemplo devuelve las personas contratadas hace más de 90 días: | +| Parámetros | Tipo | | Descripción | +| ---------- | ------- | :-------------------------: | ------------------------------ | +| index | Integer | -> | Índice del elemento a devolver | +| Result | any | <- | El elemento en ese índice | @@ -313,12 +313,12 @@ $c2:=$c.concat(6;7;8) //[1,2,3,4,5,6,7,8] -| Parámetros | Tipo | | Descripción | -| ------------ | ---------- | :-------------------------: | -------------------------------------------------------------- | -| option | Integer | -> | Ejemplo 3 | -| groupWithCol | Collection | -> | Colección compartida que se agrupa con la colección resultante | -| groupWithObj | Object | -> | Objeto compartido que se agrupa con la colección resultante | -| Result | Collection | <- | Colección original ordenada | +| Parámetros | Tipo | | Descripción | +| ------------ | ---------- | :-------------------------: | -------------------------------------------------------------------------------------------------------------------------------------------- | +| option | Integer | -> | `ck resolve pointers`: resolver punteros antes de copiar,
`ck shared`: devolver una colección compartida | +| groupWithCol | Collection | -> | Colección compartida que se agrupa con la colección resultante | +| groupWithObj | Object | -> | Objeto compartido que se agrupa con la colección resultante | +| Result | Collection | <- | Colección original ordenada | @@ -559,7 +559,7 @@ Resumen #### Descripción -Colección original con valores rellenados +Colección original sin elementos eliminados > Esta función no modifica la colección original. @@ -1001,7 +1001,7 @@ La retrollamada recibe los siguientes parámetros: Puede definir los siguientes parámetros: -- Búsquedas con fechas: +- Si se intenta eliminar un elemento de una colección vacía, el método no hace nada (no se genera ningún error). - *$1.stop* (boolean, opcional): **true** para detener la retrollamada del método. El valor devuelto es el último calculado. Por defecto, `.find()` busca en toda la colección. Opcionalmente, se puede pasar en *startFrom* el índice del elemento desde el que iniciar la búsqueda. @@ -1089,7 +1089,7 @@ La retrollamada recibe los siguientes parámetros: Puede definir los siguientes parámetros: -- Búsquedas con fechas: +- Si se intenta eliminar un elemento de una colección vacía, el método no hace nada (no se genera ningún error). - *$1.stop* (boolean, opcional): **true** para detener la retrollamada del método. El valor devuelto es el último calculado. Por defecto, `.findIndex()` busca en toda la colección. Opcionalmente, se puede pasar en *startFrom* el índice del elemento desde el que iniciar la búsqueda. @@ -1604,7 +1604,7 @@ Por defecto, los elementos nulos o vacíos de la colección se devuelven en la c #### Descripción -Objeto compartido que se agrupa con la colección resultante +Diferente de Si *startFrom* < 0, se considera el desplazamiento desde el final de la colección (*startFrom:=startFrom+length*). > Esta función no modifica la colección original. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md index 043f8c0eb1e011..96aceef1117562 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md @@ -910,7 +910,7 @@ attributePath|formula comparator value donde: -- **attributePath**: ruta del atributo sobre el que se quiere ejecutar la búsqueda. Este parámetro puede ser un nombre simple (por ejemplo, "país") o cualquier ruta de atributo válida (por ejemplo, "país.nombre".) En el caso de una ruta de atributos de tipo Collection, se utiliza la notación \[ ] para manejar todas las ocurrencias (por ejemplo "niños[ ].edad"). En el caso de una ruta de atributo cuyo tipo es `Collection`, se utiliza la notación `[]` para manejar todas las ocurrencias (por ejemplo `children[].age`). +- **attributePath**: ruta del atributo sobre el que se quiere ejecutar la búsqueda. Este parámetro puede ser un nombre simple (por ejemplo, "país") o cualquier ruta de atributo válida (por ejemplo, "país.nombre".) En el caso de una ruta de atributo cuyo tipo es `Collection`, se utiliza la notación `[]` para manejar todas las ocurrencias (por ejemplo `children[].age`). > \*No puede utilizar directamente atributos cuyo nombre contenga caracteres especiales como ".", "\[ ]", o "=", ">", "#"..., porque se evaluarán incorrectamente en la cadena de consulta. Si necesita consultar dichos atributos, debe considerar el uso de marcadores, que permiten un rango ampliado de caracteres en las rutas de los atributos (ver **Uso de marcadores de posición** *a continuación*) @@ -943,8 +943,8 @@ Las fórmulas en las consultas pueden recibir parámetros a través de $1. Este | Incluído en | IN | Devuelve los datos iguales a al menos uno de los valores de una colección o de un conjunto de valores, admite el comodín (@) | | Contiene palabra clave | % | Las palabras claves pueden utilizarse en atributos de tipo texto o imagen | -- Puede ser un **marcador de posición** (ver **Uso de marcadores de posición** más adelante) o cualquier expresión que coincida con la propiedad de tipo de datos. **value**: el valor a comparar con el valor actual de la propiedad de cada entidad en la selección de entidades. Note that, in case of type mismatch with scalar types (text, date, number...), 4D will try to convert the **value** type to the attribute data type whenever possible, for an easier handling of values coming from the Internet. For example, if the string "v20" is entered as **value** to compare with an integer attribute, it will be converted to 20. - For example, if the string "v20" is entered as value to compare with an integer attribute, it will be converted to 20. +- **value**: el valor a comparar con el valor actual de la propiedad de cada entidad en la selección de entidades. Puede ser un **marcador de posición** (ver **Uso de marcadores de posición** más adelante) o cualquier expresión que coincida con la propiedad de tipo de datos. Por ejemplo, si se introduce la cadena "v20" como **value** para comparar con un atributo entero, se convertirá a 20. For example, if the string "v20" is entered as value to compare with an integer attribute, it will be converted to 20. + Tenga en cuenta que, en caso de no coincidencia de tipo con tipos escalares (texto, fecha, número...), 4D intentará convertir el tipo **value** al tipo de datos del atributo siempre que sea posible, para un manejo más fácil de los valores procedentes de Internet. - La constante de tipo **texto** puede pasarse con o sin comillas simples (ver **Uso de comillas** más abajo). Para consultar una cadena dentro de otra cadena (una consulta de tipo "contiene"), utilice el símbolo de comodín (@) en el valor para aislar la cadena a buscar como se muestra en este ejemplo: "@Smith@". Las siguientes palabras claves están prohibidas para las constantes de texto: true, false. - Valores constantes de tipo **booleano**: **true** o **false** (Sensible a las mayúsculas y minúsculas). - Valores constantes de **tipo numérico**: los decimales se separan con un '.' (punto). @@ -1038,6 +1038,20 @@ No obtendrá el resultado esperado porque el valor null será evaluado por 4D co $vSingles:=ds.Person.query("spouse = null") // Sintaxis correcta ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### No igual a en colecciones Al buscar dentro de atributos de objetos de dataclass que contengan las colecciones, el comparador "not equal to *value*" (`#` o `!=`) encontrará los elementos en los que TODAS las propiedades sean diferentes de *value* (y no aquellos en los que AL MENOS una propiedad sea diferente de *value*, que es como funcionan otros comparadores). Básicamente, equivale a buscar "Not(buscar elementos de la colección cuya propiedad sea igual a *value*"). Por ejemplo, con las siguientes entidades: diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md index 8146ef0595bc28..0e72b0ec7d25eb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md @@ -102,7 +102,7 @@ La función `.clone()` crea en la memor This function allows you to update entities separately. Note however that, for performance reasons, the new entity shares the same reference of object attributes as the cloned entity. -> Keep in mind that any modifications done to entities will be saved in the referenced record only when the [`.save()`](#save) function is executed. +> Tenga en cuenta que toda modificación realizada a las entidades se guardará en el registro referenciado sólo cuando se ejecute la función [`.save()`](#save). Esta función sólo puede utilizarse con entidades ya guardadas en la base de datos. No se puede llamar a una entidad recién creada (para la que [`isNew()`](#isnew) devuelve **True**). diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md index 4ff1cc8e2e3d29..6afe62d3120507 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md @@ -5,7 +5,7 @@ title: OutgoingMessage The `4D.OutgoingMessage` class allows you to build messages to be returned by your application functions in response to [REST requests](../REST/REST_requests.md). If the response is of type `4D.OutgoingMessage`, the REST server does not return an object but the object instance of the `OutgoingMessage` class. -Typically, this class can be used in functions declared with the [`onHttpGet`](../ORDA/ordaClasses.md#onhttpget-keyword) keyword and designed to handle HTTP GET requests. Such requests are used, for example, to implement features such as download file, generate and download picture as well as receiving any content-type via a browser. +Típicamente, esta clase puede ser usada en funciones declaradas con la palabra clave [`onHttpGet`](../ORDA/ordaClasses.md#onhttpget-keyword) y diseñadas para manejar las peticiones HTTP GET. Such requests are used, for example, to implement features such as download file, generate and download picture as well as receiving any content-type via a browser. An instance of this class is built on 4D Server and can be sent to the browser by the [4D REST Server](../REST/gettingStarted.md) only. This class allows to use other technologies than HTTP (e.g. mobile). @@ -61,7 +61,7 @@ A 4D.OutgoingMessage object is a [non-sharable](../Concepts/shared.md) object. #### Descripción -The `.body` property contains the outgoing message body. The following data types are supported in the `.body` property: +La propiedad `.body` contiene el cuerpo del mensaje saliente. The following data types are supported in the `.body` property: - text - blob @@ -70,7 +70,7 @@ The `.body` property contains the La propiedad `.body` es de lectura-escritura. -You can also set the `.body` property using the [`setBody()`](#setbody) function, in which case the `content-type` header is automatically set. +También puede definir la propiedad `.body` utilizando la función [`setBody()`](#setbody), en cuyo caso el encabezado `content-type` se define automáticamente. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/SignalClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/SignalClass.md index ab6418eaee23f2..573fca674ee900 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/SignalClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/API/SignalClass.md @@ -22,7 +22,7 @@ Lanzamiento Mientras espera una señal, el proceso que llama no utiliza ninguna Tenga en cuenta que para evitar situaciones de bloqueo, el método `.wait()` también puede regresar después de que se haya alcanzado un tiempo de espera definido. -Los objetos señal se crean con el comando [`New signal`](../commands/new-signal.md). +Los objetos Signal se crean con el comando [`New signal`](../commands/new-signal.md). ### Trabajar con señales @@ -126,7 +126,7 @@ Esta propiedad está en **lectura-escritura**. #### Descripción -Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Cuando se crea la señal, `.signaled` es **False**. La propiedad `.signaled` se convierte en true cuando cualquier worker/proceso llama al método `.trigger()`. +Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Lanzamiento Cuando se crea la señal, `.signaled` es **False**. La propiedad `.signaled` se convierte en true cuando cualquier worker/proceso llama al método `.trigger()`. Esta propiedad es de **solo lectura**. @@ -158,7 +158,7 @@ Esta propiedad es de **solo lectura**. La función `.trigger( )` define la propiedad `signaled` del objeto signal como **true** y despierta a todos los workers o procesos que esperan esta signal. -Si la señal ya está en el estado de señalización (es decir, la propiedad signaled\\\\\\` ya es **true**), la función no hace nada. +Si la señal ya está en el estado de señalización (es decir, la propiedad signaled\\\\\\\\\` ya es **true**), la función no hace nada. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md index 73a474557f624c..f71990358b5253 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md @@ -70,27 +70,27 @@ La ventana de error de sintaxis propone varias opciones: - **Continuar**: la ejecución continua. La línea con el error puede ser parcialmente ejecutada, dependiendo de donde se encuentre el error. Continúe con precaución: el error puede impedir que el resto de su método se ejecute correctamente. Recomendamos hacer clic en **Continuar** sólo si el error está en una llamada trivial (como `SET WINDOW TITLE`) que no impide ejecutar y probar el resto de su código. -> Consejo: para ignorar un error que ocurre repetidamente (por ejemplo, en bucles), puede convertir el botón **Continuar** en un botón **Ignorar**. Mantenga presionada la tecla **Alt** (Windows) u **Opción** (macOS) y haga clic en el botón **Continuar** la primera vez que aparece. La etiqueta del botón cambia a **Ignorar** si el diálogo es llamado de nuevo por el mismo error. +> Consejo: para ignorar un error que ocurre repetidamente (por ejemplo, en bucles), puede convertir el botón **Continuar** en un botón **Ignorar**. Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. -- **Abandonar**: detiene la ejecución del método y devuelve al estado antes del inicio de la ejecución del método: +- **Abort**: Stops method execution and returns to the state before the method started executing: - Si un método formulario o método objeto se está ejecutando en respuesta a un evento, se detiene y se vuelve al formulario. - Si el método se está ejecutando desde dentro del entorno de la aplicación, volverá a ese entorno. -- **Copiar**: copia la información de depuración en el portapapeles. La información describe el entorno interno del error (número, componente interno, etc.). Está formateado como texto tabulado. +- **Copy**: Copies the debugging information into the clipboard. La información describe el entorno interno del error (número, componente interno, etc.). Está formateado como texto tabulado. -- **Guardar...**: guarda el contenido de la ventana de error de sintaxis y la cadena de llamadas en un archivo `.txt`. +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## Debugger -Un error común de los principiantes al tratar con la detección de errores es hacer clic en **Abandonar** en la ventana de error de sintaxis, volver al editor de código, y tratar de averiguar lo que está pasando mirando el código. ¡No lo haga! Ahorrará mucho tiempo y energía utilizando siempre el **Depurador**. +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. ¡No lo haga! Ahorrará mucho tiempo y energía utilizando siempre el **Depurador**. El depurador le permite pasar lentamente por los métodos. Muestra toda la información que necesita para entender por qué ha ocurrido un error. Una vez que tiene esta información, usted sabe cómo arreglar el error. -Otra razón para usar el Depurador es el desarrollo del código. A veces se puede escribir un algoritmo que es más complejo de lo habitual. A pesar de todos los sentimientos de cumplimiento, no puede estar totalmente seguro de que su codificación sea 100% correcta. En lugar de ejecutarlo "ciego", puede utilizar el comando `TRACE` al comienzo de su código, luego ejecutarlo paso a paso para mantener un ojo en lo que sucede. +Otra razón para usar el Depurador es el desarrollo del código. A veces se puede escribir un algoritmo que es más complejo de lo habitual. A pesar de todos los sentimientos de cumplimiento, no puede estar totalmente seguro de que su codificación sea 100% correcta. Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## Rupturas En el proceso de depuración, puede que necesite saltar el seguimiento de algunas partes del código hasta una línea determinada. O, puede querer rastrear el código cuando una expresión dada tiene un determinado valor (e.. "$myVar > 1000"), o cada vez que se llama un comando 4D específico. -Estas necesidades están cubiertas por **puntos de interrupción** y las funciones de **captura de comando**. Pueden configurarse desde el editor de código, el depurador o el explorador de ejecución. +These needs are covered by **breakpoints** and **command catching** features. Pueden configurarse desde el editor de código, el depurador o el explorador de ejecución. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md index 27f0d1d6345754..7792aaebed00b1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md @@ -52,33 +52,33 @@ La barra de herramientas del depurador incluye varios botones, asociados a acces Detener el modo Seguimiento y reanudar el curso normal de la ejecución del método. -> **Shift** + **F5** o **Shift** + clic en el botón **No Trace** retoma la ejecución. También desactiva todas las llamadas a TRACE posteriores en el proceso actual. +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. También desactiva todas las llamadas a TRACE posteriores en el proceso actual. #### Pasar por encima Ejecuta la línea de método actual, indicada por el contador del programa (la flecha amarilla). El depurador pasa a la siguiente línea. -El botón Ejecutar no entra en las subrutinas y las funciones, sino que se queda al nivel del método que está rastreando en ese momento. Si desea también rastrear las llamadas a las subrutinas y a las funciones, utilice el botón **Paso a paso detallado**. +El botón Ejecutar no entra en las subrutinas y las funciones, sino que se queda al nivel del método que está rastreando en ese momento. If you want to also trace subroutines and functions calls, use the **Step Into** button. -En la depuración remota, si el método se ejecuta en el servidor, se llama al método padre después de que se ejecute la última línea del método hijo. Si el método padre se ejecuta en el lado remoto, el botón **Step Over** tiene el mismo efecto que el botón **No Trace**. +En la depuración remota, si el método se ejecuta en el servidor, se llama al método padre después de que se ejecute la última línea del método hijo. If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### Paso a paso detallado Cuando se ejecuta una línea que llama a otro método (subrutina o función), haga clic en este botón para mostrar el otro método y recorrerlo paso a paso. -El nuevo método se convierte en el método actual (superior) en la [Ventana cadena de llamada ](#call-chain-pane) de la ventana del depurador. +El nuevo método se convierte en el método actual (superior) en la [Ventana cadena de llamada](#call-chain-pane) de la ventana del depurador. -Cuando se ejecuta una línea que no llama a otro método, este botón tiene el mismo efecto que el botón **Ejectuar paso a paso**. +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. -#### Ejecutar y salir +#### Step Out -Si está rastreando subrutinas y funciones, al hacer clic en este botón podrá ejecutar todo el método que se está rastreando en ese momento y retroceder hasta el método llamante. La ventana del depurador vuelve al método anterior de la cadena de llamada. Si el método actual es el último método de la cadena de llamada, se cierra la ventana del depurador. +If you are tracing subroutines and functions, clicking on this button allows you to execute the entire method currently being traced and to step back to the caller method. The Debugger window is brought back to the previous method in the call chain. If the current method is the last method in the call chain, the Debugger window is closed. -En la depuración remota, al ejecutarse la última línea del método, si el método se ejecuta en el servidor, se llama al método padre. Si el método padre se ejecuta en el lado remoto, el botón actúa de la misma manera que el botón Reanudar. +In remote debugging, on execution of the last line of the method, if the method is executed on the server, the parent method is called. If the parent method is executed on the remote side, the button acts in the same manner as the No Trace button. -#### Paso a paso del nuevo proceso +#### Step Into Process -Al ejecutar una línea que crea un nuevo proceso (es decir, al llamar al comando New process), este botón abre una nueva ventana del depurador que permite rastrear el método de gestión del proceso recién creado. En la ejecución de una línea que no crea un nuevo proceso, este botón actúa de la misma manera que el botón Ejecutar paso a paso. +On execution of a line that creates a new process (i.e., calling the New process command), this button opens a new Debugger window that allows you to trace the process method of the newly created process. On execution of a line that does not creates a new process, this button acts in the same manner as the Step Over button. #### Abortar @@ -89,9 +89,9 @@ Detiene la ejecución del método y vuelve al estado anterior al inicio de la ej #### Detener y editar -El método que se está ejecutando cuando se presiona el botón **Abortar y Editar** se abre en el Editor de Código. +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Consejo**: utilice este botón cuando sepa qué cambios son necesarios en su código, y el momento en que deben ser efectuados para proseguir con las pruebas de sus métodos. Una vez haya terminado con los cambios, vuelva a ejecutar el método. +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. Una vez haya terminado con los cambios, vuelva a ejecutar el método. #### Acción de edición @@ -99,7 +99,7 @@ El método que se está ejecutando en el momento de presionar el botón Editar s Si utiliza este botón para modificar un método, las modificaciones sólo serán efectivas la próxima vez que se ejecute. -> **Consejo:** utilice este botón cuando sepa qué cambios son necesarios en su código y cuando no interfieran con el resto del código a ejecutar o rastrear. +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. #### Parámetros Guardar diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md index 484587e09605c9..a62eb0f424ee27 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md @@ -24,7 +24,7 @@ Sólo un depurador puede depurar una aplicación 4D Server en un momento dado. S El depurador asociado es llamado cada vez que se encuentra un 4D Server: - un punto de ruptura -- un comando `TRACE` +- a `TRACE` command - un comando de captura - un error @@ -32,7 +32,7 @@ Tenga en cuenta que los mensajes de error se envían a la máquina depuradora as Note que: -- El código ejecutado en el método `On Server Startup Database` no se puede depurar de forma remota. Sólo se puede depurar del lado del servidor +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. Sólo se puede depurar del lado del servidor - Si no hay un depurador asociado, el código en ejecución no se detiene con los comandos de depuración ## Asociar al depurador @@ -48,20 +48,20 @@ Puede asociar el depurador a cualquier cliente 4D remoto que pueda conectarse a Para asociar el depurador a un cliente 4D remoto: -1. En la barra de menús de 4D Server, seleccione **Editar** > **Separar depurador** para que el depurador esté disponible para las máquinas remotas (este paso es inútil si 4D Server está funcionando sin interfaz). -2. En un cliente 4D remoto conectado al servidor, seleccione **Ejecutar** > **Adjuntar depurador remoto** +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -Si se acepta el archivo adjunto (ver [Solicitudes de archivo adjunto rechazadas](#rejected-attachment-requests)), el comando de menú se convierte en **Desconectar depurador remoto**. +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. El depurador se conecta entonces al cliente 4D remoto: - hasta el final de la sesión usuario -- hasta que se seleccione `Detach Remote Debugger` +- until you select `Detach Remote Debugger` Para volver a conectar el depurador al servidor: -1. En el cliente 4D remoto que tiene el depurador conectado, seleccione **Ejecutar** > **Separar depurador remoto**. -2. En la barra de menú de 4D Server, seleccione **Editar** > **Adjuntar depurador**. +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > Cuando el depurador está conectado al servidor (por defecto), todos los procesos del servidor se ejecutan automáticamente en modo cooperativo para permitir la depuración. Esto puede tener un impacto significativo en el rendimiento. Cuando no necesite depurar en la máquina del servidor, se recomienda separar el depurador y adjuntarlo a una máquina remota si es necesario. @@ -69,13 +69,13 @@ Para volver a conectar el depurador al servidor: 4D le permite adjuntar automáticamente el depurador a un cliente 4D remoto o al servidor al inicio: -- En el servidor (si no es headless), esta opción se llama **Attach Debugger At Startup**. Cuando el servidor se inicia, adjunta automáticamente el depurador (por defecto). +- On the server (if not headless), this option is named **Attach Debugger At Startup**. Cuando el servidor se inicia, adjunta automáticamente el depurador (por defecto). -> **Advertencia**: si se selecciona esta opción para un servidor que posteriormente se lanza en modo sin interfaz, el depurador no estará disponible para este servidor. +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- Asociar al depurador Cuando se selecciona, el cliente 4D remoto intentará automáticamente adjuntar el depurador remoto en cada conexión posterior a la misma base de datos 4D Server. Depuradores adjuntos +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. Cuando se selecciona, el cliente 4D remoto intentará automáticamente adjuntar el depurador remoto en cada conexión posterior a la misma base de datos 4D Server. If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. -> Esta configuración se aplica por proyecto y se almacena localmente en el archivo [`.4DPreferences`](Project/architecture.md#userpreferencesusername). +> This setting is applied per project and is stored locally in the [`.4DPreferences`](Project/architecture.md#userpreferencesusername) file. ## Peticiones de adjuntos rechazadas @@ -89,5 +89,5 @@ Si una máquina intenta conectar el depurador cuando ya está conectado, se rech Adjuntar el depurador en este caso requiere que: -- el depurador adjunto se separa del servidor o del cliente 4D remoto utilizando respectivamente el comando de menú **Detach debugger** o **Detach remote debugger**, +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - se cierra la sesión del cliente 4D remoto adjunto. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md index 38b4a52da42a33..1b8d7c5bc05884 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md @@ -47,4 +47,4 @@ Una vez que un texto está rotado, puede seguir cambiando su tamaño o posición
-[Negrita](properties_Text.md#bold) - [Estilo de línea de borde](properties_BackgroundAndBorder.md#border-line-style) - [Inferior](properties_CoordinatesAndSizing.md#bottom) - [Clase](properties_Object.md#css-class) - [Radio de la esquina](properties_CoordinatesAndSizing.md#corner-radius) - [Color de relleno](properties_BackgroundAndBorder.md#background-color--fill-color) - [Fuente](properties_Text.md#font) - [Color de fuente](properties_Text.md#font-color) - [Tamaño de fuente](properties_Text.md#font-size) - [Altura](properties_CoordinatesAndSizing.md#height) - [Alineación horizontal](properties_Text.md#horizontal-alignment) - [Dimensionamiento horizontal](properties_ResizingOptions.md#horizontal-sizing) - [Cursiva](properties_Text.md#italic) - [Izquierda](properties_CoordinatesAndSizing.md#left) - [Nombre del objeto](properties_Object.md#object-name) - [Orientación](properties_Text.md#orientation) - [Derecha](properties_CoordinatesAndSizing.md#right) - [Título](properties_Object.md#title) - [Superior](properties_CoordinatesAndSizing.md#top) - [Tipo](properties_Object.md#type) - [Subrayado](properties_Text.md#underline) - [Dimensionamiento vertical](properties_ResizingOptions.md#vertical-sizing) - [Visibilidad](properties_Display.md#visibility) - [Ancho](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md index f234c1086a71f8..c0d00c9a1cf091 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md @@ -31,6 +31,7 @@ Lea [**Novedades en 4D 20 R7**](https://blog.4d.com/en-whats-new-in-4d-v20-R7/), - La documentación del [Lenguaje 4D](../commands/command-index.md) y del [Lenguaje 4D Write Pro](../WritePro/commands/command-index.md) ya está disponible en developer.4d.com. Descubra todas las novedades y cambios relativos a estas documentaciones en esta nota de la versión. - El comando [`File`](../commands/file.md) (así como [`4D.File.new()`](../API/FileClass.md#4dfilenew)) es más estricto a la hora de comprobar la sintaxis de *path* suministrada como parámetro. +- The **describe** action [permission](../ORDA/privileges.md#permission-actions) has been removed from available actions. Access to [`/rest/$catalog`](../REST/$catalog.md) urls is no longer controlled. Session *describe* privileges are now ignored. ## 4D 20 R6 @@ -46,7 +47,7 @@ Lea [**Novedades en 4D 20 R6**](https://blog.4d.com/en-whats-new-in-4d-20-R6/), - Nuevo archivo [4DCEFParameters.json](../FormObjects/webArea_overview.md#4dcefparametersjson) para personalizar las áreas web anidadas de 4D. - Nueva clase [HTTPAgent](../API/HTTPAgentClass.md) y nueva propiedad [`agent`](../API/HTTPRequestClass.md#options-parameter) para la clase HTTPRequest. - Nuevas funciones [`enableState()`](../API/WebFormClass.md) y [`disableState()`](../API/WebFormClass.md) para controlar los estados de las páginas Qodly desde el servidor. -- Nueva [\\\\\\\\\` API$singleton](../REST/$singleton.md) para llamar las funciones singleton expuestas desde REST y nuevos [privilegios asociados](../ORDA/privileges.md). +- Nueva [\\\\\\\\\\\\` API$singleton](../REST/$singleton.md) para llamar las funciones singleton expuestas desde REST y nuevos [privilegios asociados](../ORDA/privileges.md). - Un [nuevo botón de parámetros](../settings/web.md#activate-rest-authentication-through-dsauthentify-function) le ayuda a actualizar su proyecto para utilizar el modo REST "conexión forzada" (el método base `On REST Authentication` es ahora obsoleto). - Una [nueva pestaña de parámetros](../Project/compiler.md#warnings) permite definir la generación de advertencias de forma global. - Varios comandos, principalmente del tema "Entorno 4D", ahora son hilo seguro ([ver la lista completa](https://doc.4d.com/4Dv20R6/4D/Preemptive_6957385.999-2878208.en.html)), así como algunos selectores de los comandos [`SET DATABASE PARAMETER`](https://doc.4d.com/4dv20R/help/command/en/page642.html)/[`Get database parameter`](https://doc.4d.com/4dv20R/help/command/en/page643.html). @@ -90,7 +91,7 @@ Lea [**Novedades en 4D 20 R4**](https://blog.4d.com/en-whats-new-in-4d-v20-R4/), #### Lo más destacado -- Soporte de [formato de cifrado ECDSA\\\\\\\\\`](../Admin/tls.md#encryption) para certificados TLS. +- Soporte de [formato de cifrado ECDSA\\\\\\\\\\\\`](../Admin/tls.md#encryption) para certificados TLS. - Las conexiones TLS cliente/servidor y servidor SQL ahora se [configuran dinámicamente](../Admin/tls.md#enabling-tls-with-the-other-servers) (no se requieren archivos de certificado). - Formato HTML directo para [exportaciones de definición de estructura](https://doc.4d.com/4Dv20R4/4D/20-R4/Exporting-and-importing-structure-definitions.300-6654851.en.html). - Nuevo [Code Live Checker](../code-editor/write-class-method.md#warnings-and-errors) que mejora el control del código durante los pasos de declaración, comprobación de sintaxis y compilación para evitar errores de ejecución. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md index 479bf1145f52a8..291c6fc182a6c4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md @@ -9,7 +9,7 @@ title: Glosario ## Acción -Todas las acciones que pueden realizarse en un [recurso](#resource). Las acciones disponibles son: crear, leer, actualizar, eliminar, ejecutar, promover y describir. +Todas las acciones que pueden realizarse en un [recurso](#resource). Available actions are: create, read, update, drop, execute, and promote. ## Atributo diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md index 91418b1df1697d..ee42d9f1279b7a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md @@ -49,15 +49,14 @@ Los permisos controlan el acceso a los objetos o funciones del almacén de datos Las acciones disponibles están relacionadas con el recurso de destino. -| Acciones | Almacén de datos | dataclass | atributo | función del modelo de datos o función singleton | -| ------------ | --------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **create** | Crear entidad en cualquier clase de datos | Crear entidad en esta clase de datos | Crea una entidad con un valor diferente del valor por defecto permitido para este atributo (ignorado para atributos alias). | n/a | -| **read** | Leer atributos en cualquier dataclass | Leer atributos en esta clase de datos | Lea el contenido de este atributo | n/a | -| **update** | Actualizar atributos en cualquier clase de datos. | Actualiza los atributos de esta clase de datos. | Actualiza el contenido de este atributo (ignorado para atributos alias). | n/a | -| **drop** | Borrar datos en cualquier clase de datos. | Borrar los datos de esta clase de datos. | Eliminar un valor no nulo para este atributo (excepto para alias y atributo calculado). | n/a | -| **execute** | Ejecutar toda función en el proyecto (almacén de datos, clase de datos, selección de entidades, entidad) | Ejecuta cualquier función en la clase de datos. Las funciones dataclass, las funciones entidad y las funciones selección de entidades se tratan como funciones dataclass | n/a | Ejecutar esta función | -| **describe** | Todas las clases de datos están disponibles en /rest/$catalog API | Esta dataclass está disponible en la /rest/$catalog API | Este atributo está disponible en la API /rest/$catalog. | Esta función de clase de datos está disponible en la API /rest/$catalog (no disponible con singletons) | -| **promote** | n/a | n/a | n/a | Asocia un privilegio determinado durante la ejecución de la función. El privilegio se añade temporalmente a la sesión y se elimina al final de la ejecución de la función. Por seguridad, sólo se añade el privilegio al proceso que ejecuta la función, no a toda la sesión. | +| Acciones | Almacén de datos | dataclass | atributo | función del modelo de datos o función singleton | +| ----------- | --------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **create** | Crear entidad en cualquier clase de datos | Crear entidad en esta clase de datos | Crea una entidad con un valor diferente del valor por defecto permitido para este atributo (ignorado para atributos alias). | n/a | +| **read** | Leer atributos en cualquier dataclass | Leer atributos en esta clase de datos | Lea el contenido de este atributo | n/a | +| **update** | Actualizar atributos en cualquier clase de datos. | Actualiza los atributos de esta clase de datos. | Actualiza el contenido de este atributo (ignorado para atributos alias). | n/a | +| **drop** | Borrar datos en cualquier clase de datos. | Borrar los datos de esta clase de datos. | Eliminar un valor no nulo para este atributo (excepto para alias y atributo calculado). | n/a | +| **execute** | Ejecutar toda función en el proyecto (almacén de datos, clase de datos, selección de entidades, entidad) | Ejecuta cualquier función en la clase de datos. Las funciones dataclass, las funciones entidad y las funciones selección de entidades se tratan como funciones dataclass | n/a | Ejecutar esta función | +| **promote** | n/a | n/a | n/a | Asocia un privilegio determinado durante la ejecución de la función. El privilegio se añade temporalmente a la sesión y se elimina al final de la ejecución de la función. Por seguridad, sólo se añade el privilegio al proceso que ejecuta la función, no a toda la sesión. | **Notas:** @@ -67,10 +66,7 @@ Las acciones disponibles están relacionadas con el recurso de destino. - Valores por defecto: en la implementación actual, solo *Null* está disponible como valor por defecto. - En modo REST [force login](../REST/authUsers.md/#force-login-mode), la función [`authentify()`](../REST/authUsers.md#function-authentify) es siempre ejecutable por usuarios invitados, cualquiera que sea la configuración de permisos. -La definición de permisos requiere ser coherente, en particular: - -- los permisos **update** y **drop** también necesitan el permiso **read** (pero **create** no lo necesita) -- Para las funciones del modelo de datos, el permiso **promote** también necesita el permiso **describe**. +Setting permissions requires to be consistent, in particular **update** and **drop** permissions also need **read** permission (but **create** does not need it). ## Privilegios y roles @@ -139,7 +135,6 @@ El archivo por defecto tiene el siguiente contenido: "create": ["none"], "update": ["none"], "drop": ["none"], - "describe": ["none"], "execute": ["none"], "promote": ["none"] } @@ -175,26 +170,25 @@ En Qodly Studio for 4D, el modo se puede definir utilizando la opción [**Forzar La sintaxis del archivo `roles.json` es la siguiente: -| Nombre de propiedad | | | Tipo | Obligatorio | Descripción | -| ------------------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------ | -| privileges | | | Colección de objetos `privilege` | X | Lista de privilegios definidos | -| | \[].privilege | | Text | | Nombre del privilegio | -| | \[].includes | | Colección de cadenas | | Lista de nombres de privilegios incluidos | -| roles | | | Colección de objetos `role` | | Lista de roles definidos | -| | \[].role | | Text | | Nombre del rol | -| | \[].privileges | | Colección de cadenas | | Lista de nombres de privilegios incluidos | -| permissions | | | Object | X | Lista de acciones permitidas | -| | allowed | | Colección de objetos `permission` | | Lista de permisos permitidos | -| | | \[].applyTo | Text | X | Targeted [resource](#resources) name | -| | | \[].type | Text | X | Tipo de [recurso](#resources): "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | -| | | \[].read | Colección de cadenas | | Lista de privilegios | -| | | \[].create | Colección de cadenas | | Lista de privilegios | -| | | \[].update | Colección de cadenas | | Lista de privilegios | -| | | \[].drop | Colección de cadenas | | Lista de privilegios | -| | | \[].describe | Colección de cadenas | | Lista de privilegios | -| | | \[].execute | Colección de cadenas | | Lista de privilegios | -| | | \[].promote | Colección de cadenas | | Lista de privilegios | -| forceLogin | | | Boolean | | True para habilitar el [modo "forceLogin"](../REST/authUsers.md#force-login-mode) | +| Nombre de propiedad | | | Tipo | Obligatorio | Descripción | +| ------------------- | ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | --------------------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------ | +| privileges | | | Colección de objetos `privilege` | X | Lista de privilegios definidos | +| | \[].privilege | | Text | | Nombre del privilegio | +| | \[].includes | | Colección de cadenas | | Lista de nombres de privilegios incluidos | +| roles | | | Colección de objetos `role` | | Lista de roles definidos | +| | \[].role | | Text | | Nombre del rol | +| | \[].privileges | | Colección de cadenas | | Lista de nombres de privilegios incluidos | +| permissions | | | Object | X | Lista de acciones permitidas | +| | allowed | | Colección de objetos `permission` | | Lista de permisos permitidos | +| | | \[].applyTo | Text | X | Targeted [resource](#resources) name | +| | | \[].type | Text | X | Tipo de [recurso](#resources): "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | +| | | \[].read | Colección de cadenas | | Lista de privilegios | +| | | \[].create | Colección de cadenas | | Lista de privilegios | +| | | \[].update | Colección de cadenas | | Lista de privilegios | +| | | \[].drop | Colección de cadenas | | Lista de privilegios | +| | | \[].execute | Colección de cadenas | | Lista de privilegios | +| | | \[].promote | Colección de cadenas | | Lista de privilegios | +| forceLogin | | | Boolean | | True para habilitar el [modo "forceLogin"](../REST/authUsers.md#force-login-mode) | :::caution Recordatorio @@ -254,9 +248,6 @@ La buena práctica es mantener todos los datos bloqueados por defecto gracias al "execute": [ "none" ], - "describe": [ - "none" - ], "promote": [ "none" ] diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md index 61c92328f76544..22a5f97de09680 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md @@ -49,7 +49,7 @@ Las funcionalidades ORDA relacionadas con el bloqueo de entidades y transaccione - Si un proceso bloquea una entidad de un datastores remoto, la entidad se bloquea para todos los otros procesos, incluso cuando estos procesos comparten la misma sesión (ver [Bloqueo de entidades](entities.md#entity-locking)). Si varias entidades que apuntan a un mismo registro han sido bloqueadas en un proceso, todas deben ser desbloqueadas en el proceso para eliminar el bloqueo. Si se ha puesto un bloqueo en una entidad, el bloqueo se elimina cuando ya no hay ninguna referencia a esta entidad en la memoria. - Las transacciones pueden iniciarse, validarse o cancelarse por separado en cada almacén de datos remoto mediante las funciones `dataStore.startTransaction()`, `dataStore.cancelTransaction()` y `dataStore.validateTransaction()`. No afectan a otros almacenes de datos. -- Los comandos clásicos del lenguaje 4D (`START TRANSACTION`, `VALIDATE TRANSACTION`, `CANCEL TRANSACTION`) sólo se aplican al datastore principal (devuelto por `ds`). +- Classic 4D language commands ([`START TRANSACTION`](../commands-legacy/start-transaction.md), [`VALIDATE TRANSACTION`](../commands-legacy/validate-transaction.md), [`CANCEL TRANSACTION`](../commands-legacy/cancel-transaction.md)) only apply to the main datastore (returned by `ds`). Si una entidad de un datastore remoto es retenida por una transacción en un proceso, los otros procesos no pueden actualizarla, incluso si estos procesos comparten la misma sesión. - Los bloqueos en las entidades son eliminados y las transacciones son anuladas: - cuando el proceso es eliminado. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Project/components.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Project/components.md index 48f3eea9855bd5..5a475d70353daa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Project/components.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/Project/components.md @@ -5,7 +5,7 @@ title: Componentes Un componente 4D es un conjunto de código y/o de formularios 4D que representan una o varias funcionalidades que pueden añadirse y utilizarse en sus proyectos. Por ejemplo, el componente [4D SVG](https://github.com/4d/4D-SVG) añade comandos avanzados y un motor de renderizado integrado que puede utilizarse para visualizar archivos SVG. -Puede [desarrollar](../Extensions/develop-components.md) y [crear](../Desktop/building.md) sus propios componentes 4D, o descargar componentes públicos compartidos por la comunidad 4D que [se pueden encontrar en GitHub](https://github.com/search?q=4d-component\\&type=Repositories). +Puede [desarrollar](../Extensions/develop-components.md) y [crear](../Desktop/building.md) sus propios componentes 4D, o descargar componentes públicos compartidos por la comunidad 4D que [se pueden encontrar en GitHub](https://github.com/search?q=4d-component\\\&type=Repositories). Al desarrollar en 4D, los archivos de los componentes pueden almacenarse de forma transparente en su ordenador o en un repositorio Github. @@ -314,7 +314,7 @@ A continuación, se muestra el panel Dependencias. Las dependencias se ordenan p ![dependency](../assets/en/Project/dependency.png) -La interfaz del panel Dependencias le permite gestionar las dependencias (en 4D monousuario y 4D Server). Puede añadir o eliminar las dependencias **local** y **GitHub**. +The Dependencies panel interface allows you to manage dependencies (on 4D single-user and 4D Server). Puede añadir o eliminar las dependencias **local** y **GitHub**. ### Añadir una dependencia local diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/WebServer/qodly-studio.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/WebServer/qodly-studio.md index da67e5512b2113..d09ede11cb446b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/WebServer/qodly-studio.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/WebServer/qodly-studio.md @@ -138,8 +138,8 @@ No existe compatibilidad directa entre las aplicaciones implementadas con 4D y l | Debugger | 4D IDE debugger
*4D Server only*: Qodly Studio debugger (see [this paragraph](#using-qodly-debugger-on-4d-server)) | Qodly Studio debugger | | Roles y privilegios REST/Web | Edición directa de roles.json/Editor de roles y permisos Qodly Studio | Editor de roles y privilegios de Qodly Studio | -(1) If you click on the **Model** button in Qodly Studio, nothing happens.
-(2) In 4D Server, opening 4D code with the Qodly Studio code editor is supported **for testing and debugging purposes** (see [this paragraph](#development-and-deployment)). (1) The **Model** item is disabled in Qodly Studio.
+(1) Si hace clic en el botón **Model** en Qodly Studio, no ocurre nada.
+(2) En 4D Server, abrir código 4D con el editor de código Qodly Studio es soportado **para propósitos de prueba y depuración** (ver [este párrafo](#development-and-deployment)). (1) The **Model** item is disabled in Qodly Studio.
(2) In 4D Server, opening 4D code with the Qodly Studio code editor is supported **for testing and debugging purposes** (see [this paragraph](#development-and-deployment)). ### Lenguaje diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md index a865fbf0ffd05f..b4efcb30cccf62 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md @@ -41,4 +41,13 @@ Desea detener el proceso seleccionado de la colección de procesos que se muestr #### Ver también -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1634 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md index f1da78343517a5..3b91e3ef01567e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md @@ -34,4 +34,13 @@ Aunque el comando ABORT está destinado a ser utilizado sólo desde un método d #### Ver también -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 156 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md index 0d3df9a1d38a42..c4cefe4f6736c4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md @@ -25,3 +25,13 @@ El siguiente ejemplo devuelve el valor absoluto de –10.3, que es 10.3: ```4d  vlVector:=Abs(-10.3) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 99 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md index 0e72b4e75e0f21..4dae5a1174efd4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ACCEPT** se utiliza en métodos de objeto o de formulario (o en subrutinas) para: @@ -37,4 +34,14 @@ El comando **ACCEPT** se permite en modo sin interfaz, en el contexto de las ár #### Ver también -[CANCEL](cancel.md) \ No newline at end of file +[CANCEL](cancel.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 269 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md index ce0a6e63dffa4a..5dccf5c0da79a9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción ACCUMULATE especifica los campos o variables a acumular en un informe realizado utilizando [PRINT SELECTION](print-selection.md "PRINT SELECTION"). @@ -37,4 +34,13 @@ Ver el ejemplo del comando [BREAK LEVEL](break-level.md "BREAK LEVEL"). [BREAK LEVEL](break-level.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 303 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md index 48e40b2a258c83..752cef720af054 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md @@ -64,4 +64,13 @@ Desea saber si la acción copiar está disponible (es decir, si se han seleccion #### Ver también [INVOKE ACTION](invoke-action.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1442 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md index 595a971c418de7..2b1fe652da8f70 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Activated** (obsoleto) devuelve **True** en un método formulario cuando la ventana que contiene el formulario se convierte en la ventana del primer plano del proceso del primer plano. @@ -29,4 +26,13 @@ displayed_sidebar: docs #### Ver también [Deactivated](deactivated.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 346 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md index f532735731e5e8..95870fdd69c96e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md @@ -42,4 +42,13 @@ Usted quiere conocer el estado de la transacción actual: [In transaction](in-transaction.md) [RESUME TRANSACTION](resume-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspender las transacciones* \ No newline at end of file +*Suspender las transacciones* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1387 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md index 0f4c6314a1f9cb..2aa40599af8810 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md @@ -104,3 +104,13 @@ Este método, ejecutado en un proceso separado en 4D o 4D Server, ofrece una ins Obtiene arrays del tipo: ![](../assets/en/commands/pict1213741.es.png) + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1277 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md index 6119f6b3568b06..46d0eb4d37cba6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Compatibilidad **Este comando se implementó en las primeras versiones de 4D y sigue siendo útil para la creación de prototipos o desarrollos básicos. Sin embargo, para construir interfaces personalizadas y modernas, ahora se recomienda utilizar formularios genéricos basados en el comando [DIALOG](dialog.md) que ofrecen funciones avanzadas y un mejor control sobre el flujo de datos.* @@ -91,4 +88,17 @@ La variable sistema OK toma el valor 1 si se acepta el registro y 0 si se cancel [CANCEL](cancel.md) [CREATE RECORD](create-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 56 | +| Hilo seguro | ✗ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md index 0b327f2a052f9d..9e97499a87ead3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md @@ -35,3 +35,13 @@ Aunque usted puede utilizar los *Operadores de fechas* para añadir días a una   // Esta línea hace lo mismo que $vdMañana:=Current date+1  $vdMañana:=Add to date(Current date;0;0;1) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 393 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md index c290273ba0524d..dd32601f351284 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver también -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 119 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md index 4a50a9e2d3ad20..59b3e34f2ca49e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md @@ -52,4 +52,13 @@ Usted desea cambiar temporalmente la prioridad de la caché de los campos de tex #### Ver también [Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1431 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md index 710685b9e3fba6..8f14bca57e2f91 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md @@ -51,4 +51,13 @@ Usted desea cambiar temporalmente la prioridad de la caché para el índice de c #### Ver también [Get adjusted index cache priority](get-adjusted-index-cache-priority.md) -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1430 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md index 342777ef70b69a..54e29fab16743d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md @@ -50,4 +50,13 @@ Usted desea cambiar temporalmente la prioridad de la caché de los campos escala #### Ver también [Get adjusted table cache priority](get-adjusted-table-cache-priority.md) -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1429 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md index aba04c5b276609..a720fc92a9989b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **After** devuelve True para el ciclo de ejecución After. @@ -26,4 +23,13 @@ Para que el ciclo de ejecución **After** se genere, asegúrese de que la propie #### Ver también -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 31 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md index 9dc5bb4f5ec60d..87c384b72893d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md @@ -66,4 +66,13 @@ Muestra la siguiente caja de diálogo de alerta (en Windows): [CONFIRM](confirm.md) [DISPLAY NOTIFICATION](display-notification.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 41 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md index 68ca6a4d584aca..b806e75033720e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md @@ -33,4 +33,15 @@ El siguiente ejemplo muestra todos los registros de la tabla \[Personas\]: [ORDER BY](order-by.md) [QUERY](query.md) [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 47 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md index e2fa45f9e992bb..746822d1b88778 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando APPEND DATA TO PASTEBOARD añade en el portapapeles los datos del tipo especificado en *tipoDatos* en el BLOB *datos*. @@ -217,4 +214,14 @@ Si los datos en el BLOB se añaden correctamente al portapapeles, la variable si [CLEAR PASTEBOARD](clear-pasteboard.md) [SET PICTURE TO PASTEBOARD](set-picture-to-pasteboard.md) -[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) \ No newline at end of file +[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 403 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md index 17589884412e66..b1a0052af6569b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md @@ -37,4 +37,14 @@ El siguiente ejemplo abre un documento existente llamado Nota, añade la cadena #### Ver también [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 265 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md index a6d6434dfbef97..aab6e8596f3530 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **APPEND MENU ITEM** añade nueva líneas de menú al menú cuyo número o referencia se pasa en *menu*. @@ -82,4 +79,14 @@ Entonces, en todo método de formulario o de proyecto, puede escribir: [DELETE MENU ITEM](delete-menu-item.md) [INSERT MENU ITEM](insert-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 411 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md index ce7664fc31a4a6..517d1ee8f95666 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md @@ -42,4 +42,13 @@ El siguiente código: #### Ver también [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 911 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md index 86c4dfcbb4ab6c..5488b7728d23e8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando APPEND TO LIST añade un nuevo elemento a la lista jerárquica cuyo número de referencia se pasa en *lista*. @@ -155,4 +152,13 @@ Cuando el formulario se ejecuta, la lista se verá de esta forma: [INSERT IN LIST](insert-in-list.md) [SET LIST ITEM](set-list-item.md) [SET LIST ITEM PARAMETER](set-list-item-parameter.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 376 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md index 40329c83064967..36235f5ca0acdd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md @@ -40,4 +40,13 @@ Al iniciar su base de datos en Windows, necesita verificar si una librería DLL #### Ver también [Data file](data-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 491 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md index d760095f6215dd..50ce65bcd8c976 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md @@ -130,4 +130,13 @@ Si el código se ejecuta en 4D Server, el objeto contiene (por ejemplo): [Execute on server](execute-on-server.md) [Get database parameter](get-database-parameter.md) [System info](system-info.md) -[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) \ No newline at end of file +[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1599 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md index 71dffd2da2221f..841f57254f75e0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md @@ -41,4 +41,13 @@ En alguna parte de su código, diferente del *Método base On Server Startup*, d #### Ver también [Application version](application-version.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 494 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md index d29c8a93d5e657..877345cce82da2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md @@ -119,4 +119,13 @@ Usted desea utilizar el valor de la versión corta de la aplicación devuelto po #### Ver también [Application type](application-type.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 493 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md index 287611f352f646..47286db2a823f9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md @@ -61,4 +61,14 @@ Si el usuario hace clic en el botón Detener en el termómetro de progresión, l #### Ver también *Conjuntos* -[EDIT FORMULA](edit-formula.md) \ No newline at end of file +[EDIT FORMULA](edit-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 70 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md index ab344f1cb73992..74e57cae8a7834 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -Arctan devuelve el ángulo, expresado en radianes, de la tangente *número*. - -**Nota:** 4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...) y Radian devuelve el valor en grados de un radián (57.29577...). +Arctan devuelve el ángulo, expresado en radianes, de la tangente *número*.4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...) y Radian devuelve el valor en grados de un radián (57.29577...). #### Ejemplo @@ -32,4 +30,13 @@ El siguiente ejemplo muestra el valor de Pi: [Cos](cos.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 20 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md index d49ee7728e0216..5a22492603b7a7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md @@ -59,4 +59,13 @@ Este ejemplo crea un array local de 100 filas, conteniendo cada una 50 elementos #### Ver también -*Creación de arrays* \ No newline at end of file +*Creación de arrays* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1222 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md index bbf6b5572784d1..fdddac9bb1d39c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY BOOLEAN crea y/o redimensiona un array de elementos *Booleanos* en memoria. - -* El parámetro *arrayName* es el nombre del array. +El comando ARRAY BOOLEAN crea y/o redimensiona un array de elementos *Booleanos* en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si se especifica *tamaño2*, el comando crea un array bidimensional. @@ -61,4 +59,13 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo [Booleano](# "Ca #### Ver también -[ARRAY INTEGER](array-integer.md) \ No newline at end of file +[ARRAY INTEGER](array-integer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 223 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md index 165fa5f8b34037..8288aeeefd1e99 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY DATE crea y/o redimensiona un array de elementos de tipo Fecha en memoria. - -* El parámetro *nombreArray* es el nombre del array. +El comando ARRAY DATE crea y/o redimensiona un array de elementos de tipo Fecha en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si se especifica *tamaño2*, el comando crea un array bidimensional. En este caso, *tamaño* especifica el número de filas y *tamaño2* especifica el número de columnas en cada array. Cada fila en un array bidimensional puede tratarse como un elemento y como un array. Esto significa que mientras trabaja con la primera dimensión del array, puede utilizar otros comandos de array para insertar y borrar arrays enteros en un array bidimensional. @@ -54,3 +52,13 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo Fecha y asigna a     ◊adValores{$vlElem}:=Current date+$vlElem  End for ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 224 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md index 56b4729b46f632..645012636753c4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY INTEGER crea y/o redimensiona un array de elementos de tipo [Entero](# "Number between -32,768..32,767 (2^15..(2^15)-1) (2-byte integer)") de 2 bytes en memoria. - -* El parámetro *nombreArray* es el nombre del array. +El comando ARRAY INTEGER crea y/o redimensiona un array de elementos de tipo [Entero](# "Number between -32,768..32,767 (2^15..(2^15)-1) (2-byte integer)") de 2 bytes en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si especifica *tamaño2*, el comando crea un array de dos dimensiones. En este caso, *tamaño* especifica el número de filas y *tamaño2* el número de columnas en cada array. Cada fila en un array de dos dimensiones puede tratarse como un elemento y como un array. Esto significa que mientras trabaja con la primera dimensión del array, puede utilizar otros comando de array para insertar y borrar arrays enteros en un array de dos dimensiones. @@ -58,4 +56,13 @@ Este ejemplo crea un array interproceso de 2 bytes de 50 elementos de tipo [Ente #### Ver también [ARRAY LONGINT](array-longint.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 220 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md index 8c2b3c19002e64..13d3ea17c93190 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY LONGINT crea y/o redimensiona un array de elementos de tipo [Entero largo](# "Entre -2 millardos y +2 millardos") de 4 bytes en memoria. - -* El parámetro *nombreArray* es el nombre del Array. +El comando ARRAY LONGINT crea y/o redimensiona un array de elementos de tipo [Entero largo](# "Entre -2 millardos y +2 millardos") de 4 bytes en memoria.es el nombre del Array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamañoi2* es opcional; si se especifica *tamaño2*, el comando crea un array de dos dimensiones. En este caso, *tamaño* especifica el número de filas y *tamaño2* el número de columnas en cada array. Cada fila en un array de dos dimensiones puede tratarse como un elemento y un array. Esto significa que mientras trabaja con la primera dimensión del arrray, puede utilizar otros comandos de array para insertar y borrar arrays completos en un array de dos dimensiones. @@ -58,4 +56,13 @@ Este ejemplo crea un array interproceso de 4 bytes de 50 elementos de tipo [Ente #### Ver también [ARRAY INTEGER](array-integer.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 221 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md index 57c525339a7469..fa78cfad9d7d52 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md @@ -68,4 +68,13 @@ Creación y llenado de un array local de objetos: [C\_OBJECT](c-object.md) *Creación de arrays* -*Objetos (Lenguaje)* \ No newline at end of file +*Objetos (Lenguaje)* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1221 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md index c7b4b1e21ab8b5..34a7acfaf71e4e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY PICTURE crea y/o redimensiona un array de elementos de tipo [Imagen](# "Can be any Windows or Macintosh picture") en memoria. - -* El parámetro *nombreArray* es el nombre del array. +El comando ARRAY PICTURE crea y/o redimensiona un array de elementos de tipo [Imagen](# "Can be any Windows or Macintosh picture") en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si se especifica *tamaño2*, el comando crea un array bidimensional. En este caso, *tamaño* especifica el número de filas y *tamaño2* especifica el número de columnas en cada array. Cada fila en un array bidimensional puede tratarse como un elemento y como un array. Esto significa que mientras trabaja con la primera dimensión del array, puede utilizar otros comandos de array para insertar y borrar arrays enteros en un array bidimensional. @@ -61,3 +59,13 @@ Este ejemplo crea un array interpcoceso de elementos de tipo [Imagen](# "Can be  End for  ARRAY PICTURE(◊agValores;$vlPictElem) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 279 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md index ffba983913c08e..1087897e6bfe43 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY POINTER crea o redimensiona un array de elementos de tipo [Puntero](# "A reference to another variable (including arrays and array elements), table, or field") en memoria. - -* El parámetro *nombreArray* es el nombre del array. +El comando ARRAY POINTER crea o redimensiona un array de elementos de tipo [Puntero](# "A reference to another variable (including arrays and array elements), table, or field") en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si se especifica *tamaño2*, el comando crea un array bidimensional. En este caso, *tamaño* especifica el número de filas y *tamaño2* especifica el número de columnas en cada array. Cada fila en un array bidimensional puede tratarse como un elemento y como un array. Esto significa que mientras trabaja con la primera dimensión del array, puede utilizar otros comandos de array para insertar y borrar arrays enteros en un array bidimensional. @@ -56,3 +54,13 @@ Este ejemplo crea un array interproceso de elementos de tipo [Puntero](# "A refe     End if  End for ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 280 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md index f84460f8dd47f8..40bc0e4826d4a3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md @@ -58,4 +58,13 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo Real y asigna a #### Ver también [ARRAY INTEGER](array-integer.md) -[ARRAY LONGINT](array-longint.md) \ No newline at end of file +[ARRAY LONGINT](array-longint.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 219 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md index 3de96443133703..35534de3527d39 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando ARRAY TEXT crea y/o redimensiona un array de elementos de tipo [Texto](# "A character string that may contain from 0 to 2 GB of text") en memoria. - -* El parámetro *nombreArray* es el nombre del array. +El comando ARRAY TEXT crea y/o redimensiona un array de elementos de tipo [Texto](# "A character string that may contain from 0 to 2 GB of text") en memoria.es el nombre del array. * El parámetro *tamaño* es el número de elementos en el array. * El parámetro *tamaño2* es opcional; si se especifica *tamaño2*, el comando crea un array bidimensional. En este caso, *tamaño* especifica el número de filas y *tamaño2* especifica el número de columnas en cada array. Cada fila en un array bidimensional puede tratarse como un elemento y como un array. Esto significa que mientras trabaja con la primera dimensión del array, puede utilizar otros comandos de array para insertar y borrar arrays enteros en un array bidimensional. @@ -54,3 +52,13 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo texto y asigna a     ◊atValores{$vlElem}:="Elemento #"+String($vlElem)  End for ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 222 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md index 78846344051838..58f6dd82bd3190 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **ARRAY TIME** crea o redimensiona una array de tipo tiempo en memoria. - -**Recordatorio:** en 4D, las horas pueden ser procesados ​​como valores numéricos . En las versiones de 4D anteriores a v14, había que combinar un array entero largo con un formato de visualización para gestionar una array de horas. +El comando **ARRAY TIME** crea o redimensiona una array de tipo tiempo en memoria.en 4D, las horas pueden ser procesados ​​como valores numéricos . En las versiones de 4D anteriores a v14, había que combinar un array entero largo con un formato de visualización para gestionar una array de horas. El parámetro *nomArray* es el nombre del array. @@ -64,4 +62,13 @@ Como los arrays de horas aceptan valores numéricos, el siguiente código es vá #### Ver también *Creación de arrays* -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1223 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md index 9f4175e6fbe363..d165b181932bb1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md @@ -81,4 +81,13 @@ Desea copiar una array texto en una colección compartida: #### Ver también [COLLECTION TO ARRAY](collection-to-array.md) -*Conversiones de tipo entre las colecciones y los arrays 4D* \ No newline at end of file +*Conversiones de tipo entre las colecciones y los arrays 4D* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1563 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md index cc25b46ce7ba8c..54ed79c2ff92f7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ARRAY TO LIST crea o reemplaza la lista jerárquica o la *lista* utilizando los elementos del *array* *.* @@ -62,4 +59,14 @@ El comando ARRAY TO LIST genera el error *\-9957* cuando se aplica a una lista q [LIST TO ARRAY](list-to-array.md) [Load list](load-list.md) [ON ERR CALL](on-err-call.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 287 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md index c289cad23882b7..2e86b162fef5f9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md @@ -79,4 +79,14 @@ Usted desea copiar una selección de registros a una tabla archivo seleccionando #### Ver también [SELECTION TO ARRAY](selection-to-array.md) -*Variables sistema* \ No newline at end of file +*Variables sistema* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 261 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md index f03dd2efb7984e..c87eb9cef86c9d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md @@ -56,4 +56,14 @@ Una aserción permite probar los parámetros pasados a un método de proyecto pa [Asserted](asserted.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1129 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md index 6fbd78636b8f9e..610cfa42df3e2e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md @@ -40,4 +40,14 @@ Inserción de una aserción en la evaluación de una expresión: [ASSERT](assert.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1132 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md index 43bdb092ee1b75..268cf89d8b2ffd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md @@ -88,4 +88,14 @@ Puede hacer los siguientes cálculos: [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) [Subtotal](subtotal.md) -[Sum](sum.md) \ No newline at end of file +[Sum](sum.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 2 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md index b3eb5cfb61e7af..49eaf1cc14ff43 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md @@ -30,4 +30,13 @@ Pase el tipo de información a obtener en *selector*. El tipo y el contenido de #### Ver también -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 888 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md index db378cddc150c9..22627e285b819b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando BACKUP inicia el backup de la base de datos utilizando los parámetros de copia de seguridad actuales. No aparece una caja de diálogo de confirmación; sin embargo, aparece una barra de progreso en la pantalla. @@ -39,4 +36,14 @@ En caso de que se presenten incidentes durante el backup, la información relati [BACKUP INFO](backup-info.md) *Método de base de datos On Backup Startup* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 887 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md index 2acf7ef623a510..e42beb31bee621 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md @@ -54,4 +54,13 @@ Este ejemplo le permite transferir una imagen vía un BLOB: [BASE64 ENCODE](base64-encode.md) [Generate digest](generate-digest.md) *Presentación de los comandos XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 896 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md index dd78659fad4615..31826df49a1178 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md @@ -37,4 +37,13 @@ Por defecto, si se omite el parámetro *\**, el comando utiliza una codificació [BASE64 DECODE](base64-decode.md) [Generate digest](generate-digest.md) *Presentación de los comandos XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 895 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md index 9c07ec24766ddc..1ca8b9de4aecb1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md @@ -32,4 +32,13 @@ En el siguiente ejemplo, si una búsqueda no encuentra ningún registro, se emit #### Ver también -[PLAY](play.md) \ No newline at end of file +[PLAY](play.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 151 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md index 74d575f5c60c33..7aa6b896301470 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Descripción -**Before selection** devuelve TRUE cuando el puntero del registro actual se encuentra antes del primer registro de la selección actual de *tabla*.**Before selection** generalmente es utilizado para verificar si el comando [PREVIOUS RECORD](previous-record.md) ha movido el puntero del registro actual antes del primer registro. Si la selección actual está vacía, **Before selection** devuelve TRUE. +**Before selection** devuelve TRUE cuando el puntero del registro actual se encuentra antes del primer registro de la selección actual de *tabla*.generalmente es utilizado para verificar si el comando [PREVIOUS RECORD](previous-record.md) ha movido el puntero del registro actual antes del primer registro. Si la selección actual está vacía, **Before selection** devuelve TRUE. Para mover el puntero del registro actual a la selección, utilice los comandos [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) o [GOTO SELECTED RECORD](goto-selected-record.md). [NEXT RECORD](next-record.md) no mueve el puntero a la selección. @@ -61,4 +61,13 @@ Este método de formulario se utiliza durante la impresión de un informe. Defin [FIRST RECORD](first-record.md) [Form event code](form-event-code.md) [PREVIOUS RECORD](previous-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 198 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md index 3810170e5a335c..59c251d6c19d9e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Before** devuelve True para el ciclo de ejecución Before. @@ -26,4 +23,13 @@ Para que el ciclo de ejecución **Before** se genere, asegúrese de que la propi #### Ver también -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 29 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md index 70f32a807260c8..98436c4399348a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md @@ -44,4 +44,13 @@ Note que el *Depurador* 4D evaluará el código SQL línea por línea. En alguno [End SQL](end-sql.md) [SQL Get current data source](sql-get-current-data-source.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 948 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md index 33e38870cd47fb..7d5e0b8f6ed023 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md @@ -76,4 +76,13 @@ Después de añadir este método a su aplicación, lo puede utilizar de esta man #### Ver también [COMPRESS BLOB](compress-blob.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 536 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md index b3b3fd6ef124b0..b24524a0b9e44f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md @@ -28,4 +28,13 @@ La línea de código añade 100 bytes al BLOB *miBlob*: #### Ver también -[SET BLOB SIZE](set-blob-size.md) \ No newline at end of file +[SET BLOB SIZE](set-blob-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 605 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md index 2912e6b289a22b..eb3c8befa46850 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md @@ -49,4 +49,14 @@ En todos los casos, puede interceptar el error utilizando un método de interrup [Create document](create-document.md) [DOCUMENT TO BLOB](document-to-blob.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 526 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md index 72989821a599f3..e97d8ce0746d5b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md @@ -58,4 +58,13 @@ El siguiente ejemplo lee 20 valores enteros de un BLOB, a partir del offset 0x20 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 549 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md index 3a3c5884364be1..e5ad7c362e873b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando BLOB to list crea una nueva lista jerárquica con los datos almacenados en el BLOB *blob* en el offset de bytes (a partir de cero) especificado por *offset* y devuelve un número de referencia de lista jerárquica para esa nueva lista. @@ -61,4 +58,14 @@ La variable OK toma el valor 1 si la lista se crea correctamente, de lo contrari #### Ver también -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 557 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md index 607041240d0c65..e33d7fba74b5b2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md @@ -57,4 +57,13 @@ El siguiente ejemplo lee 20 valores de tipo entero largo de un BLOB, a partir de [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 551 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md index 0f77c825117636..ddedcf13fb4e8a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md @@ -50,4 +50,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. [PICTURE CODEC LIST](picture-codec-list.md) [PICTURE TO BLOB](picture-to-blob.md) -[READ PICTURE FILE](read-picture-file.md) \ No newline at end of file +[READ PICTURE FILE](read-picture-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 682 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md index 5fbad1108819eb..91f28b852e563d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **BLOB to print settings** reemplaza los parámetros de impresión actuales de 4D por los parámetros almacenados en el BLOB *confImpr*. Este BLOB debe haber sido generado por el comando [Print settings to BLOB](print-settings-to-blob.md) o por el comando 4D Pack 4D Pack (ver abajo). @@ -77,4 +74,13 @@ Usted desea aplicar la configuración de impresión guardada en el disco para el #### Ver también -[Print settings to BLOB](print-settings-to-blob.md) \ No newline at end of file +[Print settings to BLOB](print-settings-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1434 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md index 8ae0b4f8050193..8e2a5a07c4b6bc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md @@ -58,4 +58,13 @@ El siguiente ejemplo lee 20 valores reales de un BLOB, a partir del offset 0x200 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 553 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md index 27c91cef98105d..b7ba7bb1d1a18f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md @@ -59,4 +59,13 @@ Después de la ejecución del comando, la variable se incrementa en el número d [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 555 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md index 071e4dcdc34cf6..6e2d8950dfb51e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando BLOB TO USERS remplaza las cuentas usuarios y los grupos presentes en el BLOB *usuarios* en la base actual. El BLOB *usuarios* está encriptado y debe haber sido creado utilizando el comando [USERS TO BLOB](users-to-blob.md). @@ -49,4 +46,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[USERS TO BLOB](users-to-blob.md) \ No newline at end of file +[USERS TO BLOB](users-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 850 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md index 14a398eeebaaad..1655046296440b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md @@ -40,4 +40,14 @@ La variable OK toma el valor 1 si la variable ha sido reescrita correctamente, d #### Ver también -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 533 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md index 407bb4f46f11d1..5eca913db426e6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md @@ -46,4 +46,13 @@ Selecciona un valor dependiendo del contenido de un atributo de campo de objeto, [Date](date.md) [Num](num.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1537 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md index b316548dac510f..2cb4372677390c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md @@ -31,4 +31,13 @@ Si no pasa el parámetro *conjunto*, el comando utilizará UserSet en el proceso #### Ver también -[CREATE SET FROM ARRAY](create-set-from-array.md) \ No newline at end of file +[CREATE SET FROM ARRAY](create-set-from-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 646 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md index 8e643d0fb45ccd..0a46f5a6448673 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción BREAK LEVEL especifica el número de niveles de ruptura en un informe realizado utilizando [PRINT SELECTION](print-selection.md "PRINT SELECTION"). @@ -46,4 +43,13 @@ El siguiente ejemplo imprime un informe con dos niveles de ruptura. La selecció [ACCUMULATE](accumulate.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 302 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md index b2a99934a5be15..e34d1c62b0c254 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción BRING TO FRONT pasa todas las ventanas que pertenecen a *process* al primer plano. Si el proceso ya está en el primer plano, el comando no hace nada. Si el proceso está oculto, debe utilizar [SHOW PROCESS](show-process.md) para mostrar el proceso, de lo contrario BRING TO FRONT no tiene efecto. @@ -38,4 +35,13 @@ El siguiente ejemplo es un método que puede ser ejecutado desde un menú. Él v [HIDE PROCESS](hide-process.md) [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 326 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md index 775268ec2313a1..10530747585d93 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando BUILD APPLICATION lanza el proceso de generación de la aplicación teniendo en cuenta los parámetros definidos en el proyecto de aplicación actual o en el proyecto de aplicación designado por el parámetro *nomProyecto*. @@ -53,4 +50,15 @@ Si el comando falla, se genera un error que puede interceptar con la ayuda del c #### Ver también -[Compile project ](compile-project.md) \ No newline at end of file +[Compile project ](compile-project.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 871 | +| Hilo seguro | ✗ | +| Modifica variables | OK, Document, error | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md index 0c4588a9a5af48..de5607d3118c53 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md @@ -52,4 +52,13 @@ Usted quiere obtener información de la caché de la base de datos y todos los c #### Ver también -[MEMORY STATISTICS](memory-statistics.md) \ No newline at end of file +[MEMORY STATISTICS](memory-statistics.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1402 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md index 42cac1b967050d..b737f730344277 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md @@ -48,3 +48,13 @@ Si se ejecuta un método de objeto de formulario, la cadena de llamadas podría ```json [   {    "type":"formObjectMethod",    "name":"detailForm.Button",    "line":1,    "database":"myDatabase"   },   {    "type":"formMethod",    "name”:"detailForm",    "line":2,    "database":"myDatabase"   },   {    "type":"projectMethod",    "name”:"showDetailForm",    "line":2,    "database":"myDatabase”   }] ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1662 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md index dbaeda31137699..5f9c4e34e130ae 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md @@ -100,4 +100,13 @@ Luego puede añadir otros mensajes ejecutando el comando **CALL FORM** nuevament [CALL WORKER](call-worker.md) -[DIALOG](dialog.md) \ No newline at end of file +[DIALOG](dialog.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1391 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md index 3e2af74ff226c8..f112daee28a96a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CALL SUBFORM CONTAINER** permite a una instancia de subformulario enviar el *evento* al objeto subformulario que lo contiene. El objeto subformulario puede entonces procesar el *evento* en el contexto del formulario padre. @@ -31,4 +28,13 @@ En *evento*, puede pasar todo evento de formulario predefinido de 4D (puede util #### Ver también [Form event code](form-event-code.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1086 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md index 02d4d94f1fd0c1..8c213c53c0530d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md @@ -76,4 +76,13 @@ El código de *workerMethod* es: [CALL FORM](call-form.md) [Current process name](current-process-name.md) [KILL WORKER](kill-worker.md) -*Sobre workers* \ No newline at end of file +*Sobre workers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1389 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md index 04e97f6b77a938..6862b5bad5df42 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md @@ -14,7 +14,7 @@ displayed_sidebar: docs #### Descripción -**CANCEL TRANSACTION** anula la transacción abierta por el comando [START TRANSACTION](start-transaction.md) del nivel correspondiente en el proceso actual. **CANCEL TRANSACTION** anula todas las operaciones que llegaran a ejecutarse en los datos durante la transacción. +**CANCEL TRANSACTION** anula la transacción abierta por el comando [START TRANSACTION](start-transaction.md) del nivel correspondiente en el proceso actual.anula todas las operaciones que llegaran a ejecutarse en los datos durante la transacción. **Nota:** **CANCEL TRANSACTION** no tiene efecto en las posibles modificaciones efectuadas en los registros actuales que no se guardaron, se siguen mostrando después de la ejecución del comando. @@ -24,4 +24,13 @@ displayed_sidebar: docs [START TRANSACTION](start-transaction.md) [Transaction level](transaction-level.md) *Utilización de transacciones* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 241 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md index 2a7c0838fec3a7..9409d51e2ddc99 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CANCEL** se utiliza en métodos de objeto o de formulario (o en una subrutina) para: @@ -52,4 +49,14 @@ Cuando el comando CANCEL se ejecuta (anulación de formulario o de impresión), [ACCEPT](accept.md) [PAGE BREAK](page-break.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 270 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md index dbcdda9bc3fc1b..478be341ecbd4e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md @@ -28,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 547 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md index c230d034a45490..a75f406f59abf7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción CHANGE CURRENT USER permite cambiar la identidad del usuario actual en la base, sin tener que salir. El usuario puede cambiar su identidad utilizando la caja de diálogo de identificación del usuario de la base (cuando el comando se llama sin parámetros) o directamente vía el comando. Cuando un usuario cambia su identidad, el usuario abandona sus privilegios de acceso anteriores para beneficiarse de los del usuario elegido. @@ -73,4 +70,13 @@ El siguiente ejemplo muestra la caja de diálogo de conexión: #### Ver también [CHANGE PASSWORD](change-password.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 289 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md index 83732d923ae2de..6fd37d96d702ce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando CHANGE LICENSES muestra la caja de diálogo de gestión de licencias 4D. @@ -41,4 +38,14 @@ De esta forma un usuario puede activar licencias sin tener que modificar la base #### Ver también [License info](license-info.md) -[Is license available](is-license-available.md) \ No newline at end of file +[Is license available](is-license-available.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 637 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md index 76314a22f0207b..202344ef6d6705 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción CHANGE PASSWORD cambia la contraseña del usuario actual. Este comando reemplaza la contraseña actual con la nueva contraseña que se pasa en *contraseña*. @@ -44,4 +41,13 @@ El siguiente ejemplo permite al usuario cambiar su contraseña. #### Ver también [CHANGE CURRENT USER](change-current-user.md) -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 186 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md index c1c3e13e549104..8caf3d5c9996d7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md @@ -37,4 +37,13 @@ El siguiente ejemplo ilustra el uso de Change string. Los resultados se asignan [Delete string](delete-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 234 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md index 760c30d0e7e3ed..515f1fe40bfe0c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md @@ -34,4 +34,13 @@ El siguiente ejemplo utiliza Char para insertar un retorno de carro en el texto [Character code](character-code.md) *Códigos Unicode* -*Símbolos de referencia de caracteres* \ No newline at end of file +*Símbolos de referencia de caracteres* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 90 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md index 442b7be062e322..e4c6eedf71cbc5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md @@ -80,4 +80,13 @@ El segundo código se ejecuta más rápido por dos razones: sólo referencia un #### Ver también [Char](char.md) -*Símbolos de referencia de caracteres* \ No newline at end of file +*Símbolos de referencia de caracteres* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 91 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md index a36e4906d1720b..87c7eb7296c00d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CHECK LOG FILE** muestra la caja de diálogo de visulización del archivo de historial actual de la base (accesible también vía la ventana del Centro de seguridad y mantenimiento): @@ -36,4 +33,14 @@ Puede interceptar estos errores utilizando un método de manejo de errores insta #### Ver también *Errores de gestión de backup* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 799 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md index a06ffca9fe3a0d..3e307950e9c086 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md @@ -78,3 +78,13 @@ Este código es estrictamente equivalente a:        vEstado:="Separado"  End case ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 955 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md index 56bccd29cb9125..9418959454e073 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando CLEAR LIST borra de la memoria la lista jerárquica cuyo número de referencia se pasa en *lista*. @@ -55,4 +52,13 @@ Ver el ejemplo del comando [BLOB to list](blob-to-list.md "BLOB to list"). [BLOB to list](blob-to-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 377 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md index ac63be097ec000..ae1d6e038e1188 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md @@ -23,4 +23,13 @@ Si *temp* fue creado por el comando [CUT NAMED SELECTION](cut-named-selection.md [COPY NAMED SELECTION](copy-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 333 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md index eeb734a6bcacc5..9671908542cafb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando CLEAR PASTEBOARD borra el contenido del portapapeles. Si el portapapeles contiene múltiples instancias de los mismos datos, todas las instancias se borran. Después de llamar a CLEAR PASTEBOARD, el portapapeles queda vacío. @@ -41,4 +38,13 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard #### Ver también -[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) \ No newline at end of file +[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 402 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md index 643a55a109d70c..c36b9786b745b2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md @@ -27,4 +27,13 @@ Ver el ejemplo de [Semaphore](semaphore.md "Semaphore"). *Semáforos y señales* [Semaphore](semaphore.md) -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 144 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md index 4093327bb3a4f4..d0b85c1846a0cf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md @@ -25,4 +25,13 @@ Ver el ejemplo del comando [USE SET](use-set.md "USE SET"). [CREATE EMPTY SET](create-empty-set.md) [CREATE SET](create-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 117 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md index 3abe1d693d761e..0bc3f89c32cb9e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md @@ -43,4 +43,13 @@ En un formulario, utilice una lista desplegable llamada *asMiListaDesplegable* c #### Ver también -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 89 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md index 6aeeec77adf950..bd9fd2758c727d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Clickcount** devuelve, en el contexto de un evento clic, el número de veces que el usuario ha hecho clic de manera repetida con el mismo botón del ratón. Normalmente, este comando devuelve 2 para un doble clic. @@ -61,3 +58,13 @@ Las etiquetas no son editables pero lo son después de un triple-clic. Si desea     End case  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1332 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md index af55dd3329adcf..b575df5ab92d67 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md @@ -36,4 +36,13 @@ El siguiente ejemplo permite al usuario crear un nuevo documento, escribe la cad [Append document](append-document.md) [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 267 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md index 9a1bc50e39238e..d1e405ea58eed1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CLOSE PRINTING JOB** permite cerrar el trabajo de impresión previamente abierto por el comando [OPEN PRINTING JOB](open-printing-job.md) y enviar a la impresora actual el documento de impresión creado. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver también -[OPEN PRINTING JOB](open-printing-job.md) \ No newline at end of file +[OPEN PRINTING JOB](open-printing-job.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 996 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md index 48fcfc198fcb01..2fd3604bc46e5a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CLOSE RESOURCE FILE** cierra el archivo de recursos cuyo número de referencia se pasa en *resArchivo*. @@ -30,4 +27,13 @@ Recuerde llamar finalmente **CLOSE RESOURCE FILE** para un archivo de recursos q #### Ver también -[Open resource file](open-resource-file.md) \ No newline at end of file +[Open resource file](open-resource-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 498 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md index da273447300914..f041e9c388e1c0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción CLOSE WINDOW cierra la ventana activa abierta por el comando [Open window](open-window.md "Open window") u [Open form window](open-form-window.md "Open form window") en el proceso actual. CLOSE WINDOW no hace nada si no hay una ventana personalizada abierta; no cierra las ventanas sistema. CLOSE WINDOW tampoco tiene efecto si se llama mientras que un formulario esté activo en la ventana. Debe llamar CLOSE WINDOW cuando haya terminado de utilizar una ventana abierta por [Open window](open-window.md "Open window") u Open form window. @@ -38,4 +35,13 @@ El siguiente ejemplo abre una ventana formulario y crea nuevos registros con el #### Ver también [Open form window](open-form-window.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 154 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md index 43531521fa05d2..6bd4bb6e565387 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md @@ -64,4 +64,13 @@ Desea copiar diferentes valores de propiedad de una colección de objetos en dif #### Ver también [ARRAY TO COLLECTION ](array-to-collection.md) -*Conversiones de tipo entre las colecciones y los arrays 4D* \ No newline at end of file +*Conversiones de tipo entre las colecciones y los arrays 4D* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1562 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md index a129209a538f43..a1e9f75439641e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md @@ -50,4 +50,13 @@ Resultado: #### Ver también -[TRANSFORM PICTURE](transform-picture.md) \ No newline at end of file +[TRANSFORM PICTURE](transform-picture.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 987 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md index 6563d3cf90ef8d..cb347aa72b69fa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descripción -El comando **Command name** devuelve el nombre y (opcionalmente) las propiedades del comando cuyo número se pasa en *comando*. - -**Nota:** el número de cada comando está indicado en el Explorador, así como también en el área de Propiedades de esta documentación. +El comando **Command name** devuelve el nombre y (opcionalmente) las propiedades del comando cuyo número se pasa en *comando*.el número de cada comando está indicado en el Explorador, así como también en el área de Propiedades de esta documentación. **Nota de compatibilidad**: como el nombre de un comando puede variar de una versión 4D a otra (comandos renombrados), este comando se utilizó en versiones anteriores del programa para designar un comando directamente por medio de su número, especialmente en partes de código no tokenizadas. Esta sintaxis permite evitar posibles problemas debido a las variaciones en los nombres de los comandos, así como otros elementos tales como tablas, sin dejar de poder escribir estos nombres de forma legible (para obtener más información sobre este punto, consulte la sección *Utilizar tokens en fórmulas*). Además, de forma predeterminada, la versión en Inglés del lenguaje se utiliza a partir de 4D v15; Sin embargo, la opción "Utilizar la configuración del sistema regional" en la [Is a list](is-a-list.md) de las Preferencias le permite continuar con el uso de la versión en español en un 4D en español. @@ -102,4 +100,14 @@ Luego, para el comando "SAVE RECORD" (53) por ejemplo, puede escribir: #### Ver también [EXECUTE FORMULA](execute-formula.md) -*Procesos 4D apropiativos* \ No newline at end of file +*Procesos 4D apropiativos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 538 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md index 53811c0eb5eaa5..0aa92cc65f22c3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md @@ -69,4 +69,14 @@ Si la operación de compactación se lleva a cabo correctamente, la variable sis #### Ver también [Table fragmentation](table-fragmentation.md) -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 937 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md index ffbb1b8e3eb5c2..68814f72490c40 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md @@ -105,4 +105,13 @@ Los siguientes ejemplos ilustran el impacto específico de las opciones en el ** #### Ver también -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1756 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md index 8d4e55d1da9f80..2124bf829a2550 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Compile project** permite compilar el proyecto local actual o el proyecto especificado en el parámetro *archivoProyecto*. Para más información sobre la compilación, consulte la *página de compilación en developer.4d.com*. @@ -186,4 +183,13 @@ var $result:=Compile project($options) #### Ver también -[BUILD APPLICATION](build-application.md) \ No newline at end of file +[BUILD APPLICATION](build-application.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1760 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md index 868a949737f0bd..a41621b54bcc0b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md @@ -32,4 +32,13 @@ Para mayor información sobre componentes 4D, por favor consulte el *Manual de D #### Ver también -[PLUGIN LIST](plugin-list.md) \ No newline at end of file +[PLUGIN LIST](plugin-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1001 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md index f286d02ca693ba..5ffff17e8232bd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md @@ -89,4 +89,14 @@ La variable OK toma el valor 1 si el BLOB se comprime correctamente; de lo contr #### Ver también [BLOB PROPERTIES](blob-properties.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 534 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md index b64c7264639651..aed360bded8a5d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md @@ -91,4 +91,14 @@ Mostrará la siguiente caja de diálogo de confirmación (en Windows): #### Ver también [ALERT](alert.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 162 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md index dfc3c4772030fd..dd494000c8b0bd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Contextual click devuelve Verdadero si un se ha efectuado un clic contextual: @@ -42,4 +39,13 @@ Este método, combinado con un área desplegable, le permite cambiar el valor de #### Ver también [Form event code](form-event-code.md) -[Right click](right-click.md) \ No newline at end of file +[Right click](right-click.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 713 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md index 73b1336d63e3b5..c9bf4b26ee7ad1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **CONVERT COORDINATES**convierte las coordenadas (x,y) de un punto de un sistema de coordenadas a otro. Los sistemas de coordenadas de entrada y salida soportados son los formularios (y subformularios), las ventanas y la pantalla. Por ejemplo, puede utilizar este comando para obtener las coordenadas en el formulario principal de un objeto perteneciente a un subformulario. Este principio facilita la creación de menús contextuales en cualquier posición personalizada. @@ -86,4 +83,13 @@ Usted quiere abrir una ventana emergente en la posición del cursor del ratón. [GET WINDOW RECT](get-window-rect.md) [OBJECT GET COORDINATES](object-get-coordinates.md) [OBJECT SET COORDINATES](object-set-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1365 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md index 4caa76124d9be6..f755c1cdc523d1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md @@ -188,4 +188,14 @@ Si el comando ha sido ejecutado correctamente, la variable OK toma el valor 1\. #### Ver también -[Convert to text](convert-to-text.md) \ No newline at end of file +[Convert to text](convert-to-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1011 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md index 639f259bba1bde..e9f3ce73602aa7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md @@ -53,4 +53,13 @@ Ejemplos bajo Windows: [Convert path system to POSIX](convert-path-system-to-posix.md) [Object to path](object-to-path.md) -[Path to object ](path-to-object.md) \ No newline at end of file +[Path to object ](path-to-object.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1107 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md index 9bc81d0c2f4e57..8d60fdcc7d26ea 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md @@ -60,4 +60,13 @@ Ejemplo bajo Windows [Convert path POSIX to system](convert-path-posix-to-system.md) [Object to path](object-to-path.md) [Path to object ](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1106 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md index 459e58db107a9a..126cdb411b35e6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md @@ -50,4 +50,13 @@ Conversión de una imagen con calidad del 60%: #### Ver también -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1002 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md index caf23539a5998b..a5fd0f9f6a2d13 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md @@ -30,4 +30,14 @@ Si el comando se ejecuta correctamente, la variable OK toma el valor 1\. De lo c #### Ver también -[CONVERT FROM TEXT](convert-from-text.md) \ No newline at end of file +[CONVERT FROM TEXT](convert-from-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1012 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md index d20a754bfd0640..12b69347ccf651 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando COPY ARRAY crea o remplaza el array *destino* con el mismo contenido, tamaño y tipo del array *fuente*. - -**Nota:** en el caso de los arrays numéricos de diferentes tipos, se mantiene el tipo del array *destino*. +El comando COPY ARRAY crea o remplaza el array *destino* con el mismo contenido, tamaño y tipo del array *fuente*.en el caso de los arrays numéricos de diferentes tipos, se mantiene el tipo del array *destino*. Los arrays *fuente* y *destino* pueden ser locales, proceso o interproceso. El alcance del array no tiene importancia en el momento de copiar arrays. @@ -36,3 +34,13 @@ El siguiente ejemplo llena el array C. Luego crea un nuevo array, llamado D, del  SELECTION TO ARRAY([Personas]Empresa;C) // Mover los datos del campo empresa al array C  COPY ARRAY(C;D) // Copiar el array C al array D ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 226 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md index e7dc2a7b3e0f53..4ac22278361c23 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md @@ -28,4 +28,13 @@ La copia comienza en la posición (expresada con relación al comienzo del BLOB #### Ver también [DELETE FROM BLOB](delete-from-blob.md) -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 558 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md index 77484604e9378c..a7302f0f6e4d8d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md @@ -19,8 +19,6 @@ displayed_sidebar: docs #### Descripción El comando **COPY DOCUMENT** copia el documento especificado por *nomFuente* en la ubicación especificada por *nomDest*. - -* **Copia de archivo** En este caso, el parámetro *nomFuente* debe contener una ruta de acceso completa del archivo, expresada con respecto a la raíz del volumen. El parámetro *nomDest* puede contener varios tipos de lugares: * una ruta de acceso completa del archivo expresada con respecto a la raíz del volumen: el archivo se copia en esta ubicación @@ -118,4 +116,14 @@ Los siguientes ejemplos crean diferentes archivos y carpetas en la carpeta de la #### Ver también *Documentos del sistema* -[MOVE DOCUMENT](move-document.md) \ No newline at end of file +[MOVE DOCUMENT](move-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 541 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md index bd0a355f3fbf07..d8fbe92cc0e563 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Copy list duplica la lista cuyo número de referencia se pasa en el parámetro *lista* y devuelve el número de referencia de la nueva lista. @@ -27,4 +24,13 @@ Una vez hay terminado de utilizar la nueva lista, llame a [CLEAR LIST](clear-lis [CLEAR LIST](clear-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 626 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md index 7d9f6895922df4..e4bab13c7778d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md @@ -49,4 +49,13 @@ El siguiente ejemplo permite verificar si hay otras facturas vencidas en la tabl [CLEAR NAMED SELECTION](clear-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 331 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md index 398b149ecd0a5b..c8093a3dd93cee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md @@ -79,4 +79,13 @@ Como el comando devuelve una colección, se puede utilizar con **.join()** para #### Ver también -[Count parameters](count-parameters.md) \ No newline at end of file +[Count parameters](count-parameters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1790 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md index d13783542cb809..50a376b87de775 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md @@ -38,4 +38,13 @@ El siguiente ejemplo en Cliente/Servidor, copia el conjunto proceso "ConjuntoA", #### Ver también -*Conjuntos* \ No newline at end of file +*Conjuntos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 600 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md index 9a0c91b30c8518..a05f8b64d08a69 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descripción -Cos devuelve el coseno del *número*, donde *número* se expresa en radianes. - -**Nota:** 4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). +Cos devuelve el coseno del *número*, donde *número* se expresa en radianes.4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). #### Ver también [Arctan](arctan.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 18 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md index 6ba118d60ebb68..35dfb5bae4df73 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md @@ -56,4 +56,13 @@ Desea contar las referencias a objetos en un array objeto: #### Ver también [Find in array](find-in-array.md) -[Find in sorted array](find-in-sorted-array.md) \ No newline at end of file +[Find in sorted array](find-in-sorted-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 907 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md index 9ae70108c722e0..d670265974a311 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Count list items devuelve el número actual de elementos visibles o el número total de elementos en la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -62,4 +59,13 @@ Acá tenemos una lista llamada *hList* mostrada en el entorno Aplicación: #### Ver también [List item position](list-item-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 380 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md index b82e6cb7240386..fe9f1b84eff99c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Count menu items devuelve el número de los elementos del menú presentes en el menú cuyo número o referencia se pasa en *menu.* @@ -28,4 +25,14 @@ Si omite el parámetro *proceso*, Count menu items se aplica a la barra de menú #### Ver también -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 405 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md index ef6e9cd45f4ca0..bd7883801f0db8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Count menus devuelve el número de menús presentes en la barra de menús. @@ -25,4 +22,14 @@ Si omite el parámetro *proceso*, Count menus se aplica a la barra de menús del #### Ver también -[Count menu items](count-menu-items.md) \ No newline at end of file +[Count menu items](count-menu-items.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 404 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md index 2a5a75fcd19534..d5a12f090225de 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -El comando Count parameters devuelve el número de parámetros pasados a un método de proyecto. - -**Advertencia:** Count parameters es significativo sólo en un método de proyecto que haya sido llamado por otro método (método de proyecto u otro). Si el método de proyecto que llama Count parameters está asociado a un menú, Count parameters devuelve 0. +El comando Count parameters devuelve el número de parámetros pasados a un método de proyecto.Count parameters es significativo sólo en un método de proyecto que haya sido llamado por otro método (método de proyecto u otro). Si el método de proyecto que llama Count parameters está asociado a un menú, Count parameters devuelve 0. #### Ejemplo 1 @@ -94,4 +92,13 @@ o: #### Ver también *Comandos del Compilador* -[Copy parameters](copy-parameters.md) \ No newline at end of file +[Copy parameters](copy-parameters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 259 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md index 6cb3b383e29d22..c3f2db956f0f16 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Count screens devuelve el número de pantallas conectadas a su equipo. @@ -26,4 +23,13 @@ displayed_sidebar: docs [SCREEN COORDINATES](screen-coordinates.md) [SCREEN DEPTH](screen-depth.md) [Screen height](screen-height.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 437 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md index a09f6cc4e24db9..3816d0613ed3c5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md @@ -28,4 +28,13 @@ Ver el ejemplo para [Process state](process-state.md "Process state") y [On Exit [Count user processes](count-user-processes.md) [Count users](count-users.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 335 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md index dda7bd7fc57441..0b7d3af79ee0bf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### Ver también [Count tasks](count-tasks.md) -[Count users](count-users.md) \ No newline at end of file +[Count users](count-users.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 343 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md index 3e217f2a65c88a..879de0fe65ca5f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md @@ -22,4 +22,13 @@ Cuando se ejecuta en una aplicación 4D monousuario, **Count users** devuelve 1. #### Ver también [Count tasks](count-tasks.md) -[Count user processes](count-user-processes.md) \ No newline at end of file +[Count user processes](count-user-processes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 342 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md index 39208d00837864..52fcec79199bc9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md @@ -66,4 +66,14 @@ La variable sistema OK toma el valor 1 si el comando se ejecuta correctamente, s #### Ver también -[RESOLVE ALIAS](resolve-alias.md) \ No newline at end of file +[RESOLVE ALIAS](resolve-alias.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 694 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md index c53d06afa13489..f589e9f47449c7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md @@ -25,4 +25,13 @@ Antes de lanzar la operación, el comando verifica que la ruta de acceso no corr #### Ver también -[OPEN DATA FILE](open-data-file.md) \ No newline at end of file +[OPEN DATA FILE](open-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 313 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md index 2ab9a5c28d649c..74f2b0725afb7f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Create deployment license** crea un archivo de licencia anidado en la carpeta Licenses de la aplicación creada *mergedApp*. Si la carpeta Licenses no existe en *mergedApp*, el comando la creará. @@ -56,4 +53,13 @@ Si la compilación requiere una licencia OEM específica (*4D OEM XML Keys*) y s #### Ver también - \ No newline at end of file + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1811 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md index 7975b438f61f95..9136094b75d2d9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md @@ -71,4 +71,14 @@ Si el documento se crea correctamente, la variable sistema OK toma el valor 1 y #### Ver también [Append document](append-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 266 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md index 0f0db3976f0497..862c6fa0337911 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md @@ -27,4 +27,13 @@ Consulte el ejemplo de la sección *Conjuntos*. #### Ver también [CLEAR SET](clear-set.md) -[CREATE SET](create-set.md) \ No newline at end of file +[CREATE SET](create-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 140 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md index 5fec6c33fc5c0b..42b7e4eaea39df 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md @@ -70,4 +70,14 @@ Creación de la subcarpeta "\\Febrero\\" en la carpeta existente "C:\\Archives\\ #### Ver también [FOLDER LIST](folder-list.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 475 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md index 350aa361767e4a..7635e219b72d7c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md @@ -86,4 +86,13 @@ Creación de un índice compuesto en los campos “Ciudad” y “CodigoPostal [DELETE INDEX](delete-index.md) [RESUME INDEXES](resume-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 966 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md index b7320913559fe3..acf9822e3c93d3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Create menu** permite crear un nuevo menú en memoria. Este menú sólo existirá en memoria y no se añadirá al editor de menú en el entorno Diseño. Toda modificación efectuada a este menú durante la sesión repercutirá inmediatamente en todas las instancias de este menú y en todos los procesos de la base. @@ -42,4 +39,13 @@ Consulte el ejemplo del comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR"). [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 408 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md index 5a6e61f0ffd3f0..d301ae9c244750 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md @@ -45,4 +45,14 @@ El siguiente ejemplo archiva los registros que tienen más de 30 días. Esta ope [ADD RECORD](add-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 68 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md index 2f7c375f1b946d..0891f2ca91be60 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md @@ -23,4 +23,13 @@ Si ya existe un registro relacionado, CREATE RELATED ONE actúa como [RELATE ONE #### Ver también -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 65 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md index 5a4cd424995cf2..a3d3170f4e7539 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md @@ -47,4 +47,15 @@ Si un número de registro no es válido (registro no creado), se genera el error [CREATE SET FROM ARRAY](create-set-from-array.md) [LONGINT ARRAY FROM SELECTION](longint-array-from-selection.md) [SELECTION TO ARRAY](selection-to-array.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 640 | +| Hilo seguro | ✓ | +| Modifica variables | error | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md index d6e07a43d1725c..4f96371582f86e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md @@ -37,4 +37,14 @@ En un array de enteros largos, si un número de registro no es válido (registro #### Ver también [BOOLEAN ARRAY FROM SET](boolean-array-from-set.md) -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 641 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md index f231451ba24f03..536f438b662f40 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md @@ -31,4 +31,13 @@ El siguiente ejemplo crea un conjunto después de efectuar una búsqueda, de man #### Ver también [CLEAR SET](clear-set.md) -[CREATE EMPTY SET](create-empty-set.md) \ No newline at end of file +[CREATE EMPTY SET](create-empty-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 116 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md index 7c98eb426d2d9c..1e1f3c3136cb6d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md @@ -57,3 +57,13 @@ El parámetro *profundidad* se ignora y por lo tanto debe omitirse. El comando s El parámetro opcional *profundidad* define el número de colores bajo Mac OS (es decir, la profundidad de pantalla) a conservar en la miniatura resultante. El parámetro es un entero igual al número de bits por píxel: 1, 2, 4, 8, 16 ó 32\. Introduzca 0 para utilizar la profundidad de pantalla actual (valor por defecto). **Nota:** bajo Windows, se ignora el parámetro *profundidad*; el comando siempre utiliza la profundidad de pantalla actual. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 679 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md index 5a4b18fd46d1ff..cfff38c46f554b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md @@ -68,3 +68,13 @@ Con esta configuración, no se muestra un diálogo de contraseña para un 4D rem ``` **Nota:** este escenario básico requiere que los nombres de usuario 4D repliquen los nombres del directorio Active, para un mapeo automático. En una aplicación más sofisticada, la información devuelta por el comando se asigna a una tabla \[usuarios\] para crear o seleccionar los usuarios con base en la información del directorio Active. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1355 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md index b24ca50d0cb302..74edb2f51aaaa2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Current date devuelve la fecha actual tal como está definida en el reloj del sistema. - -**4D Server:** si pasa el parámetro asterisco (\*) durante la ejecución de esta función en un equipo cliente 4D Client, la función devuelve la fecha actual del servidor. +El comando Current date devuelve la fecha actual tal como está definida en el reloj del sistema.si pasa el parámetro asterisco (\*) durante la ejecución de esta función en un equipo cliente 4D Client, la función devuelve la fecha actual del servidor. #### Ejemplo 1 @@ -97,4 +95,13 @@ El siguiente método de proyecto permite hacerlo: [Day of](day-of.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 33 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md index f719c9bd2b46f0..d32a04d17ed83a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md @@ -29,4 +29,13 @@ Siempre y cuando se haya definido una tabla por defecto, la siguiente línea de [DEFAULT TABLE](default-table.md) [Table](table.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 363 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md index d8709a5c1cce64..d90e3060f22849 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Current form name** devuelve el nombre del formulario actual definido para el proceso. El formulario actual puede ser un formulario proyecto o un formulario tabla. @@ -59,4 +56,13 @@ Usted quiere obtener el formulario actual si éste es un formulario proyecto: #### Ver también -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1298 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md index f1127680788f1a..32644a263158e9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Current form table devuelve el puntero hacia la tabla del formulario en pantalla o impreso en el proceso actual. @@ -65,4 +62,13 @@ Para esto, utilice el método de objeto para crear la variable *vsCurrentRecord* [DIALOG](dialog.md) [FORM SET INPUT](form-set-input.md) [FORM SET OUTPUT](form-set-output.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 627 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md index dc52746b6f198f..d592c28531a73d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Current form window devuelve la referencia de la ventana del formulario actual. Si ninguna ventana ha sido definida para el formulario actual, el comando devuelve 0. @@ -26,4 +23,13 @@ La ventana del formulario actual puede ser generada automáticamente por un coma [Open form window](open-form-window.md) [Open window](open-window.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 827 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md index 41145e2f10cf5d..701b31d5ab34a6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md @@ -29,4 +29,13 @@ Incluso si no está corriendo la versión cliente/servidor de 4D, su aplicación #### Ver también -[Current system user](current-system-user.md) \ No newline at end of file +[Current system user](current-system-user.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 483 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md index c83e825a09f790..c8ed78a540e724 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md @@ -37,3 +37,13 @@ En función del tipo de método llamado, la cadena devuelta puede ser: Este comando no puede llamarse desde una fórmula 4D. **Nota:** para que este comando funcione en modo compilado, la opción **Control de ejecución** no debe ser desactivada. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 684 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md index 93e59f83ef8ebe..a8fab7d125fbdb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md @@ -15,11 +15,18 @@ displayed_sidebar: docs #### Descripción -El comando **Current method path** devuelve la ruta de acceso interna del método base, trigger, método de proyecto, método formulario o método objeto en ejecución. - -**Nota:** en el contexto de los macro comandos 4D, la etiqueta ** es remplazada por la ruta de acceso completa del código en ejecución. +El comando **Current method path** devuelve la ruta de acceso interna del método base, trigger, método de proyecto, método formulario o método objeto en ejecución.en el contexto de los macro comandos 4D, la etiqueta ** es remplazada por la ruta de acceso completa del código en ejecución. #### Ver también [METHOD Get path](method-get-path.md) -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1201 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md index fe6e3aeeae4dc9..e966a4db349bc9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md @@ -31,4 +31,13 @@ Quiere llamar a un proceso worker y pasar el nombre del proceso de llamada como [CALL WORKER](call-worker.md) [KILL WORKER](kill-worker.md) -*Sobre workers* \ No newline at end of file +*Sobre workers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1392 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md index ce1e0d1a11e566..866052bb908b03 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md @@ -25,4 +25,13 @@ Ver los ejemplos de [DELAY PROCESS](delay-process.md "DELAY PROCESS") y [PROCESS [Process number](process-number.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 322 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md index 57cd4f61ca4dcd..50776124a68fc9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md @@ -23,4 +23,13 @@ Ver el ejemplo del comando [Current machine](current-machine.md "Current machine #### Ver también -[Current machine](current-machine.md) \ No newline at end of file +[Current machine](current-machine.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 484 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md index 48dfa58968341e..a9519e19636b4f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md @@ -48,4 +48,13 @@ El siguiente ejemplo extrae las horas, minutos y segundos de la hora actual: [Milliseconds](milliseconds.md) [String](string.md) -[Tickcount](tickcount.md) \ No newline at end of file +[Tickcount](tickcount.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 178 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md index 66a05993309b14..54879d046e582a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md @@ -37,4 +37,13 @@ Ver el ejemplo del comando [User in group](user-in-group.md "User in group"). [CHANGE CURRENT USER](change-current-user.md) [CHANGE PASSWORD](change-password.md) [SET USER ALIAS](set-user-alias.md) -[User in group](user-in-group.md) \ No newline at end of file +[User in group](user-in-group.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 182 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md index e7716ac96d3c97..0a3a925b308a9e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md @@ -35,4 +35,14 @@ El método siguiente vacía la selección actual de una tabla *\[Clientes\]*: [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 334 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md index 3c6a260729574a..d2bcd8a5d0b7d8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md @@ -67,4 +67,13 @@ Desea conocer el estado de cifrado de un archivo de datos que corresponde al arc #### Ver también -[Encrypt data file](encrypt-data-file.md) \ No newline at end of file +[Encrypt data file](encrypt-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1609 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md index 94d1ce135670dc..bc91b874ba53bf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md @@ -31,4 +31,13 @@ Si está trabajando por ejemplo con la base en la carpeta Documentos:MisCDsƒ: e #### Ver también [Application file](application-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 490 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md index af2f9f35479dc1..155f194cc95375 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md @@ -330,3 +330,13 @@ Queremos obtener las medidas de bytes de caché en los últimos dos minutos:  OB SET($oParams;"historyLength";2*60)  $measures:=Database measures($oParams) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1314 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md index 9e9632543fa9ea..98c37488827d72 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md @@ -93,4 +93,13 @@ Usted desea obtener una fecha de un atributo objeto, sea cual sea la opción de #### Ver también [Bool](bool.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 102 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md index d80a0438dae22d..7cce4d1a29aa4d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Day number devuelve un número que representa el día de la semana que corresponde a la *f* *echa*. - -**Nota:** Day Number devuelve *2* para fechas nulas. +El comando Day number devuelve un número que representa el día de la semana que corresponde a la *f* *echa*.Day Number devuelve *2* para fechas nulas. 4D ofrece las siguientes constantes predefinidas: @@ -60,4 +58,13 @@ El siguiente ejemplo es una función que devuelve el día actual como una cadena #### Ver también -[Day of](day-of.md) \ No newline at end of file +[Day of](day-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 114 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md index dd9cbb5303ca30..f99aa80054f008 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Day of devuelve el día del mes de *fecha*. - -**Nota:** Day of devuelve un valor entre 1 y 31\. Para obtener el día de la semana de una fecha, utilice el comando [Day number](day-number.md "Day number"). +El comando Day of devuelve el día del mes de *fecha*.Day of devuelve un valor entre 1 y 31\. Para obtener el día de la semana de una fecha, utilice el comando [Day number](day-number.md "Day number"). #### Ejemplo 1 @@ -37,4 +35,13 @@ Ver el ejemplo para el comando [Current date](current-date.md "Current date"). [Day number](day-number.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 23 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md index f2885892ed0f01..153725abe3f722 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Deactivated** devuelve True en un método formulario u objeto cuando la ventana del primer plano del proceso de primer plano, contiene el formulario, se traslada a la parte posterior. @@ -27,4 +24,13 @@ Para que se genere el ciclo de ejecución **Deactivated**, asegúrese de que la #### Ver también [Activated](activated.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 347 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md index ddde76ca11e8d8..631e68c1908012 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md @@ -29,4 +29,13 @@ El siguiente ejemplo utiliza un valor monetario expresado como un número real, #### Ver también -[Int](int.md) \ No newline at end of file +[Int](int.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 9 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md index 9a9b70930e1fc8..32dbefa6202cc0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md @@ -33,4 +33,13 @@ Consulte los ejemplos dados por el comando [ENCRYPT BLOB](encrypt-blob.md "ENCRY #### Ver también [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 690 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md index 6f2b67ad9774a2..537d625a64af63 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md @@ -57,4 +57,13 @@ La *frasePasar* y la *sal* utilizadas para el descifrado son idénticas a la *fr [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1774 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md index aca2f8c1492b48..44429fe0e747f0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md @@ -75,4 +75,13 @@ En este código se especifica el resultado de la tabla por defecto: #### Ver también [Current default table](current-default-table.md) -[NO DEFAULT TABLE](no-default-table.md) \ No newline at end of file +[NO DEFAULT TABLE](no-default-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 46 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md index dc87d45ac58052..901b9ca8252a42 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md @@ -37,4 +37,13 @@ Ver el ejemplo del comando [Process Number](process-number.md "Process Number"). #### Ver también [HIDE PROCESS](hide-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 323 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md index 9e23978cc3c5ac..44ff0d91b61a58 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md @@ -46,4 +46,14 @@ La eliminación de un documento hace que la variable sistema tome el valor 1\. S #### Ver también -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 159 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md index 9b732cb71dd717..8e5de1328c2bb1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md @@ -41,4 +41,14 @@ Puede interceptar estos errores utilizando un método instalado por el comando [ #### Ver también -[DELETE DOCUMENT](delete-document.md) \ No newline at end of file +[DELETE DOCUMENT](delete-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 693 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md index 6df7a5dc9c9ff6..fb6aab3b342614 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md @@ -43,4 +43,13 @@ El siguiente ejemplo borra el último elemento de un array, si existe: #### Ver también [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 228 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md index b72ec56fe9dd68..c3432a43d561e3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### Ver también -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 560 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md index 645ccf421454d7..7e419ef42dc888 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DELETE FROM LIST borra el elemento designado por el parámetro *refElem* de la lista cuyo número de referencia se pasa en *lista*. @@ -44,4 +41,13 @@ El siguiente código borra el elemento seleccionado de la lista *hList*. Si el e #### Ver también [CLEAR LIST](clear-list.md) -[GET LIST ITEM](get-list-item.md) \ No newline at end of file +[GET LIST ITEM](get-list-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 624 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md index 0f8776a3fa6307..0ceed452efa127 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md @@ -45,4 +45,13 @@ Este ejemplo ilustra las dos sintaxis del comando: [CREATE INDEX](create-index.md) [PAUSE INDEXES](pause-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 967 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md index 77e0ea7eb09f68..8e23036f588439 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DELETE MENU ITEM elimina la línea de menú cuyo número o referencia de menú y número de elemento usted pasó en *menu* y *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu.* @@ -35,4 +32,14 @@ Si omite el parámetro *proceso*, DELETE MENU ITEM se aplica a la barra de menú #### Ver también [APPEND MENU ITEM](append-menu-item.md) -[INSERT MENU ITEM](insert-menu-item.md) \ No newline at end of file +[INSERT MENU ITEM](insert-menu-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 413 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md index ca3883a367c2eb..8fafc416e19566 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md @@ -41,4 +41,14 @@ El siguiente ejemplo borra un registro de un empleado. El código pregunta al us #### Ver también [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 58 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md index 5153eb5956a4fd..22d5bbfa4124bc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md @@ -63,4 +63,14 @@ Si se encuentra un registro bloqueado durante la ejecución de DELETE SELECTION, [DISPLAY SELECTION](display-selection.md) [MODIFY SELECTION](modify-selection.md) *Record Locking* -[TRUNCATE TABLE](truncate-table.md) \ No newline at end of file +[TRUNCATE TABLE](truncate-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 66 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md index 9ac56c0d6b0ea0..5a6cd93ca62f8b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md @@ -44,4 +44,13 @@ El siguiente ejemplo ilustra el uso de Delete string. Los resultados se asignan [Change string](change-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 232 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md index 96061fc1f9276e..c6c24477b74761 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DELETE USER borra el usuario cuyo número se pasa en *refUsuario*. Debe pasar un número válido de usuario devuelto por el comando [GET USER LIST](get-user-list.md "GET USER LIST"). @@ -35,4 +32,14 @@ Si no tiene los privilegios de acceso para llamar DELETE USER o si otro proceso [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 615 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md index 834be47feb6aaa..9eb647c3b6dba3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md @@ -66,4 +66,13 @@ $vResultPath : #### Ver también [Last query path](last-query-path.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1044 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md index 11b13e1cafe9d3..ac6b21cda60376 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **DIALOG** presenta el *formulario* al usuario junto con los parámetros *formData* (opcional). Este comando se designa para trabajar con interfaces de usuario avanzadas y personalizadas basadas en formularios. Puede utilizarlo para mostrar información de la base o de otras ubicaciones, o para ofrecer funcionalidades de entrada de datos. A diferencia de [ADD RECORD](add-record.md) o [MODIFY RECORD](modify-record.md), **DIALOG** le da control total sobre el formulario, su contenido y los bontones de navegación y validación. @@ -137,4 +134,14 @@ Después de llamar a DIALOG, si se acepta el diálogo, la variable sistema OK to [CALL FORM](call-form.md) [CANCEL](cancel.md) [Form](form.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 40 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md index b65f9efcf6a083..cd7aa5922f96fb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md @@ -53,4 +53,13 @@ Al final de la lista de registros hay un botón con un método de objeto. El mé #### Ver también [INTERSECTION](intersection.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 122 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md index c37c9bc18d4a12..806edf9def7d97 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DISABLE MENU ITEM desactiva el comando de menú cuyo número o referencia de menú y número de elemento usted pasó en *menu* y *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu*. @@ -32,4 +29,14 @@ Si el parámetro *menuItem* designa un submenú jerárquico, todos los elementos #### Ver también -[ENABLE MENU ITEM](enable-menu-item.md) \ No newline at end of file +[ENABLE MENU ITEM](enable-menu-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 150 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md index 528b0c4f17c96a..d4e9440c8006f0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md @@ -48,4 +48,13 @@ Los archivos llave (archivos de extensión ".4DKeyChain") deben almacenarse en e #### Ver también -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1639 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md index c0605da1b98f8d..fdb1cabd114807 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DISPLAY NOTIFICATION muestra un mensaje de notificación al usuario: @@ -42,4 +39,13 @@ Bajo Windows, se muestra la ventana del mensaje si no se detecta actividad en la #### Ver también -[ALERT](alert.md) \ No newline at end of file +[ALERT](alert.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 910 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md index 46ee9e51ab4bf4..9ae532e8e1432c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DISPLAY RECORD muestra el registro actual de *tabla*, utilizando el formulario de entrada actual. El registro se muestra hasta que un evento provoque un rediseño de la ventana. Tal evento puede ser la ejecución de un comando [ADD RECORD](add-record.md "ADD RECORD"), el regreso al formulario de entrada, o a la barra de menús. DISPLAY RECORD no hace nada si no hay registro actual. @@ -42,4 +39,13 @@ El siguiente ejemplo muestra una serie de registros como una presentación de di #### Ver también -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 105 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md index 2d345077dcaa3d..cffaf617e2c33f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción DISPLAY SELECTION muestra la selección de *tabla*, utilizando el formulario de salida. Los registros se muestran en una lista por la cual se puede desplazar similar a la del modo Diseño. Si el usuario hace doble clic en un registro, por defecto se muestra el registro en el formulario de entrada actual. La lista se muestra en la ventana del primer plano. @@ -104,4 +101,14 @@ También puede utilizar otros comandos, tales como [PRINT SELECTION](print-selec *Conjuntos* [Form event code](form-event-code.md) -[MODIFY SELECTION](modify-selection.md) \ No newline at end of file +[MODIFY SELECTION](modify-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 59 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md index 929160716b9110..11f2602911a158 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Displayed line number funciona únicamente en el contexto del evento de formulario On Display Detail. Devuelve el número de la línea que está siendo procesada mientras una lista de registros es mostrada en pantalla. Si Displayed line number se llama cuando no se muestra una lista, devuelve 0. @@ -46,4 +43,13 @@ Este ejemplo le permite aplicar un color alterno en un formulario listado mostra #### Ver también [Form event code](form-event-code.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 897 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md index 1717f633bc013d..34ba0918bd44fa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md @@ -66,4 +66,13 @@ El array *aTPaths* obtiene los siguientes elementos: #### Ver también -[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) \ No newline at end of file +[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1395 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md index 6fe800cdc4fca8..5b88239d4c41b7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md @@ -63,4 +63,13 @@ El array *aLAges* obtiene los siguientes 9 elementos: #### Ver también -[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) \ No newline at end of file +[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1397 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md index 610b55c794f00b..4276484e6274b8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md @@ -81,4 +81,13 @@ Para calcular las estadísticas, usted desea ordenar el número de valores disti [GET TEXT KEYWORDS](get-text-keywords.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 339 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md index af8d6066eba5e1..daba7c876bd4a3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **DOCUMENT LIST** llena el array de tipo Texto *documentos* con los nombres del los documentos ubicados en la ubicación pasada en *rutaAcceso*. - -**Nota:** el parámetro *rutaAcceso* sólo acepta rutas de acceso absolutas. +El comando **DOCUMENT LIST** llena el array de tipo Texto *documentos* con los nombres del los documentos ubicados en la ubicación pasada en *rutaAcceso*.el parámetro *rutaAcceso* sólo acepta rutas de acceso absolutas. Por defecto, si omite el parámetro *opciones*, sólo los nombres de los documentos se devuelven en el array *documentos*. Puede modificar este funcionamiento pasando en el parámetro *opciones*, una o más de las siguientes constantes, que se encuentran en el tema *Documentos sistema*: @@ -112,4 +110,14 @@ Lista de todos los documentos en modo recursivo Posix (relativo): #### Ver también [FOLDER LIST](folder-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 474 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md index dcbb4dab0203fa..21048f2f8cc58a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md @@ -49,4 +49,14 @@ En todos los casos, puede interceptar el error utilizando un método de interrup #### Ver también [BLOB TO DOCUMENT](blob-to-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 525 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md index fb70471ed43f1a..ca8cf0bd17f813 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md @@ -76,4 +76,13 @@ Cuando ejecuta este código: #### Ver también *Documentos sistema* -[TEXT TO DOCUMENT](text-to-document.md) \ No newline at end of file +[TEXT TO DOCUMENT](text-to-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1236 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md index 0ae149f10abcec..fee89639241fce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md @@ -145,4 +145,13 @@ Si el contenido de *valorHijo* no es valido, se devuelve un error. #### Ver también [DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1080 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md index e84c47010e3609..189f612e6c0289 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md @@ -27,4 +27,13 @@ Ver el ejemplo del comando [DOM Insert XML element](dom-insert-xml-element.md "D #### Ver también -[DOM Insert XML element](dom-insert-xml-element.md) \ No newline at end of file +[DOM Insert XML element](dom-insert-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1082 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md index 2e1642bf65b352..8f937aaae7c31a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md @@ -26,4 +26,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo #### Ver también [DOM Parse XML source](dom-parse-xml-source.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 722 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md index b9d95dd0c37bff..59ea934a00c7aa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md @@ -51,4 +51,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo #### Ver también -[DOM Count XML elements](dom-count-xml-elements.md) \ No newline at end of file +[DOM Count XML elements](dom-count-xml-elements.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 727 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md index b46a9617bd1d32..412fda85680fa2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando DOM Count XML elements devuelve el número de elementos “hijo” dependientes del elemento padre *refElement* y llamado *nomElement*. - -**Nota:** por defecto, **DOM Count XML elements** es sensible a las mayúsculas y minúsculas con respecto el parámetro *nomElement* (de acuerdo a los estándares XML). Puede controlar la sensibilidad de mayúsculas y minúsculas del comando utilizando el selector XML DOM case sensitivity del comando [XML SET OPTIONS](xml-set-options.md). +El comando DOM Count XML elements devuelve el número de elementos “hijo” dependientes del elemento padre *refElement* y llamado *nomElement*.por defecto, **DOM Count XML elements** es sensible a las mayúsculas y minúsculas con respecto el parámetro *nomElement* (de acuerdo a los estándares XML). Puede controlar la sensibilidad de mayúsculas y minúsculas del comando utilizando el selector XML DOM case sensitivity del comando [XML SET OPTIONS](xml-set-options.md). #### Variables y conjuntos del sistema @@ -28,4 +26,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo #### Ver también [DOM Get XML element](dom-get-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 726 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md index b0dcdeeb8d712a..8ad120ba6f38ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md @@ -60,4 +60,13 @@ Para esto, es suficiente escribir: #### Ver también -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1097 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md index bf8893b146b954..51885efafc48cd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md @@ -154,4 +154,14 @@ Se genera un error cuando: [DOM Create XML element arrays](dom-create-xml-element-arrays.md) [DOM Get XML element](dom-get-xml-element.md) -[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) \ No newline at end of file +[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 865 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md index dec71ba86ac2e7..94eda7333c1cce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md @@ -97,4 +97,14 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\ #### Ver también [DOM CLOSE XML](dom-close-xml.md) -[DOM SET XML DECLARATION](dom-set-xml-declaration.md) \ No newline at end of file +[DOM SET XML DECLARATION](dom-set-xml-declaration.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 861 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md index 6d61583bf2c4c8..7db9b9bbc428d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md @@ -61,4 +61,14 @@ Se genera un error cuando: #### Ver también [DOM EXPORT TO VAR](dom-export-to-var.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 862 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md index 6e29562012bbe1..8c0015ff8bc030 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md @@ -54,4 +54,14 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\ #### Ver también [DOM EXPORT TO FILE](dom-export-to-file.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 863 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md index 08a53a97afe56b..66da1e87fee4b6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md @@ -27,4 +27,14 @@ El comando devuelve en resultado la referencia XML del elemento encontrado. #### Ver también -[DOM Find XML element](dom-find-xml-element.md) \ No newline at end of file +[DOM Find XML element](dom-find-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1010 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md index 53e8c63d85ab9e..738066926645f3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md @@ -116,4 +116,14 @@ Se genera un error cuando: #### Ver también [DOM Count XML elements](dom-count-xml-elements.md) -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 864 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md index 1431c39ba18d05..4cb604e250f277 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md @@ -57,4 +57,14 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\ #### Ver también -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 723 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md index b62860c6ece7ae..c3b3b8ef589495 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md @@ -42,4 +42,14 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\ #### Ver también -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 925 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md index 6a2dfef9de1719..1d87982ac68079 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md @@ -60,4 +60,14 @@ Si el comando se ha ejecutado correctamente y si el elemento analizado no es el #### Ver también -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 724 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md index ba5ad5af5e9463..fe09188c68315c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md @@ -35,4 +35,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. [DOM Get first child XML element](dom-get-first-child-xml-element.md) [DOM Get last child XML element](dom-get-last-child-xml-element.md) -[DOM Get Root XML element](dom-get-root-xml-element.md) \ No newline at end of file +[DOM Get Root XML element](dom-get-root-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 923 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md index a72ae4bcac4212..0e6a7b2d0dd702 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md @@ -32,4 +32,14 @@ Si el comando se ha ejecutado correctamente y si el elemento referenciado no es #### Ver también -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 924 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md index e6797e0715502f..8b771c55518309 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver también -[DOM Get parent XML element](dom-get-parent-xml-element.md) \ No newline at end of file +[DOM Get parent XML element](dom-get-parent-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1053 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md index b2e1eddd9b7e98..0482cc1405cd64 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md @@ -37,4 +37,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 729 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md index bc2842ce2a055a..c9bfbf864fdbb5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md @@ -48,4 +48,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 728 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md index 23b61a1bcb8590..d083013e713d3a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md @@ -61,4 +61,13 @@ Después de la ejecución de estas instrucciones: #### Ver también [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1081 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md index 45245579cf7a66..c3f0c28432aa2f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md @@ -52,4 +52,13 @@ En este ejemplo, queremos encontrar la declaración DTD del documento XML: #### Ver también [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) \ No newline at end of file +[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1088 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md index 7761ab2ca7ca5f..9da97062ad5b5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md @@ -39,4 +39,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) \ No newline at end of file +[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 730 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md index bb6823f1ea6459..d4253a8631a6cb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md @@ -42,4 +42,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) -[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) \ No newline at end of file +[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 731 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md index 8f31ac377e3081..634aa5448baf9a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md @@ -32,4 +32,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 725 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md index 5944ba7b2dada3..1aaf8f539a4517 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md @@ -41,4 +41,13 @@ Estas constantes indican la siguiente información: #### Ver también -[XML GET ERROR](xml-get-error.md) \ No newline at end of file +[XML GET ERROR](xml-get-error.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 721 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md index 529083413a4bd0..7d20ba2d1740f0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md @@ -79,4 +79,13 @@ $rootRef:=DOM Parse XML source("") //selección de documento XML #### Ver también -[DOM Append XML element](dom-append-xml-element.md) \ No newline at end of file +[DOM Append XML element](dom-append-xml-element.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1083 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md index fd20683b49fb2a..b57fdfb7d5f3ff 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md @@ -93,4 +93,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 719 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md index c0fc327929cc29..47cffae9041d11 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md @@ -81,4 +81,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML source](dom-parse-xml-source.md) \ No newline at end of file +[DOM Parse XML source](dom-parse-xml-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 720 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md index d236c25e97463d..0ba6b940fb7731 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md @@ -43,4 +43,14 @@ El siguiente código permite remover el primer atributo "N=1": [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) -[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) \ No newline at end of file +[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1084 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md index cf2d67f0f66eb5..fc4b1efbef9fc8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md @@ -26,4 +26,14 @@ Un error se genera cuando la referencia del elemento no es válida. #### Ver también [DOM Create XML element](dom-create-xml-element.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 869 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md index 34d062ae4e7a38..eabc8c5438945a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md @@ -66,4 +66,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 866 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md index 04efc1534334ab..7a94b9e516a663 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md @@ -36,4 +36,13 @@ El siguiente ejemplo define la codificación a utilizar y la opción autónomo d #### Ver también [DOM Create XML Ref](dom-create-xml-ref.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 859 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md index 56c727df586b28..a495256880995b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md @@ -57,4 +57,14 @@ Se genera un error cuando: #### Ver también -[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) \ No newline at end of file +[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 867 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md index 5be9c1bde39cbd..7a5d753c9d774f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md @@ -115,4 +115,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 868 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md index 56d443ff3d723f..ce862dfd85e5e4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando DRAG WINDOW permite arrastrar la ventana en la cual el usuario hace clic para desplazarla en función de los movimientos del ratón. Generalmente este comando se llama desde un método de objeto de un objeto que pueda responder instantáneamente a los clics del ratón (por ejemplo un botón invisible). @@ -48,4 +45,13 @@ Luego puede arrastrar la ventana haciendo clic en cualquiera de los bordes. #### Ver también [GET WINDOW RECT](get-window-rect.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 452 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md index 4e029411723a2d..1572862c671fbe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Drop position puede utilizarse para descubrir la ubicación, en un objeto de destino “complejo”, donde un objeto ha sido (arrastrado y) soltado. @@ -95,4 +92,13 @@ El método de objeto list box de la izquierda (destino) contiene el siguiente c #### Ver también -*Arrastrar y soltar* \ No newline at end of file +*Arrastrar y soltar* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 608 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md index 76cbf0b59af3ac..bbe09dca64ca44 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md @@ -42,4 +42,13 @@ Desea eliminar un usuario remoto específico: #### Ver también [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) \ No newline at end of file +[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1633 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md index e959e99dc6d49e..a4cb5ee3077383 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md @@ -23,4 +23,14 @@ DUPLICATE RECORD puede ejecutarse durante la entrada de datos. Esto permite dupl #### Ver también -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 225 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md index 664ab8dbb8b586..e79643bf4230ea 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Dynamic pop up menu** hace aparecer un menú desplegable jerárquico en la ubicación actual del ratón o en la ubicación definida por los parámetros opcionales *Coordx* y *Coordy*. @@ -93,4 +90,13 @@ Este código permite crear un menú emergente dinámico jerárquico basado en ac [Get selected menu item parameter](get-selected-menu-item-parameter.md) [Pop up menu](pop-up-menu.md) [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1006 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md index 7ccc1ff445096e..ff66f81e36611b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción EDIT ACCESS permite modificar el sistema de contraseñas. Cuando se ejecuta este comando, se muestra la ventana de la caja de herramientas que contiene las páginas Usuarios y Grupos. @@ -36,4 +33,14 @@ El siguiente ejemplo muestra al usuario la ventana de gestión de usuarios y gru #### Ver también [CHANGE CURRENT USER](change-current-user.md) -[CHANGE PASSWORD](change-password.md) \ No newline at end of file +[CHANGE PASSWORD](change-password.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 281 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md index 2d431d371f97ac..e3642dbfed9786 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EDIT FORMULA muestra el editor de fórmulas con el fin de permitir al usuario escribir o modificar una fórmula. El editor contiene al abrir: @@ -55,4 +52,14 @@ Si el usuario valida la caja de diálogo, la variable sistema OK toma el valor 1 [APPLY TO SELECTION](apply-to-selection.md) [EXECUTE FORMULA](execute-formula.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 806 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md index e464f0fbfd5aa9..9ee2f97e8ffe09 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **EDIT ITEM** le permite editar el elemento actual o el elemento de número *elemento* del array o la lista designada por el parámetro *objeto*. @@ -73,4 +70,13 @@ Dadas dos columnas de un list box donde los nombres de las variables asociadas s [GOTO OBJECT](goto-object.md) [INSERT IN LIST](insert-in-list.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 870 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md index face80e3041dbb..de1714f3d88594 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ENABLE MENU ITEM activa el comando de menú cuyo número o referencia de menú y número de elemento usted pasó en *menu* y *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu*. @@ -30,4 +27,14 @@ Si omite el parámetro *proceso*, ENABLE MENU ITEM se aplica a la barra de menú #### Ver también -[DISABLE MENU ITEM](disable-menu-item.md) \ No newline at end of file +[DISABLE MENU ITEM](disable-menu-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 149 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md index 5dbb9fb2715da3..4a378252622499 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md @@ -184,4 +184,13 @@ Una empresa quiere utilizar el Internet para intercambiar información. Cada fil [DECRYPT BLOB](decrypt-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 689 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md index a7624568a71a93..f6e35e25d34360 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md @@ -59,4 +59,13 @@ Encriptar un archivo de texto ubicado en la carpeta RESOURCES de la base de dato [Decrypt data BLOB](decrypt-data-blob.md) [ENCRYPT BLOB](encrypt-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1773 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md index 5586bdc4dc64a3..f9e31601f22138 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Encrypt data file** se utiliza para cifrar o volver a cifrar el archivo de datos designado por el parámetro *rutaDatos* asociado al parámetro *rutaEstructura*. También se puede utilizar para eliminar el cifrado de la base de datos. El comando no modifica los archivos originales, devuelve el nombre de ruta completo de la carpeta creada para respaldar el archivo de datos original. @@ -133,4 +130,13 @@ Vuelva a cifrar un archivo de datos encriptados con la llave actual (por ejemplo [Data file encryption status](data-file-encryption-status.md) [Decrypt data BLOB](decrypt-data-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1610 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md index 6b1df41d5a2d62..6dbd3cd4e146e8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Descripción -**End selection** devuelve TRUE cuando el puntero del registro actual está más allá del último registro de la selección actual de *tabla*. **End selection** se utiliza generalmente para probar si la llamada al comando [NEXT RECORD](next-record.md) ha movido o no el puntero del registro actual detrás del último registro de la selección. Si la selección actual está vacía, **End selection** devuelve TRUE. +**End selection** devuelve TRUE cuando el puntero del registro actual está más allá del último registro de la selección actual de *tabla*.se utiliza generalmente para probar si la llamada al comando [NEXT RECORD](next-record.md) ha movido o no el puntero del registro actual detrás del último registro de la selección. Si la selección actual está vacía, **End selection** devuelve TRUE. Para mover el puntero del registro actual dentro de la selección, utilice [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) o [GOTO SELECTED RECORD](goto-selected-record.md). [PREVIOUS RECORD](previous-record.md) no mueva el puntero a la selección. @@ -60,4 +60,13 @@ Este método de formulario se utiliza durante la impresión de un informe. Se de [Form event code](form-event-code.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 36 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md index faa06ccb3ea3e4..418970866ee789 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md @@ -20,4 +20,13 @@ Una secuencia de instrucciones SQL debe estar rodeada por las palabras claves [B #### Ver también -[Begin SQL](begin-sql.md) \ No newline at end of file +[Begin SQL](begin-sql.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 949 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md index e27c428ca61519..10b8e38d5a2f0b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md @@ -41,3 +41,14 @@ Este es el código del botón **Compare**: ```4d  $equal :=Equal pictures($pict1;$pict2;$mask) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1196 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md index ed4a7dd283e8d4..39680f91a4abc2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ERASE WINDOW borra el contenido de la ventana cuyo número de referencia se pasa en *ventana*. @@ -29,4 +26,13 @@ No confunda ERASE WINDOW, que borra el contenido de una ventana, con [CLOSE WIND #### Ver también [GOTO XY](goto-xy.md) -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 160 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md index 3e96f64e9768e3..bf86f5e003e5a0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md @@ -78,3 +78,13 @@ Estos son algunos ejemplos de conversiones que pueden realizarse con este comand   //Convertir el valor a Liras Italianas  $EnLiras:=Euro converter($valor;French Franc;Italian Lira) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 676 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md index f0a2c48f87b681..7e97609a3ec6b9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md @@ -65,4 +65,13 @@ Usted desea ejecutar una fórmula incluida las llamadas a los comandos y tablas [Command name](command-name.md) [EDIT FORMULA](edit-formula.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 63 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md index ca58247aa81ec6..0d635d03f5a9ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EXECUTE METHOD IN SUBFORM permite ejecutar el código desigando por *formula* en el contexto del subformulario *objetoSubform*. @@ -75,3 +72,14 @@ Si este método se utilizó directamente en el método del formulario Calendar, #### Variables y conjuntos del sistema Si este comando se ejecuta correctamente, la variable sistema OK toma el valor 1; de lo contrario toma el valor 0. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1085 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md index b79acff8482d9b..cf8dba66937a94 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md @@ -31,4 +31,14 @@ Si este comando se ejecuta correctamente, la variable sistema OK toma el valor 1 #### Ver también -[EXECUTE FORMULA](execute-formula.md) \ No newline at end of file +[EXECUTE FORMULA](execute-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1007 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md index 5bdc42efce3e3f..480c6996da10d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EXECUTE ON CLIENT provoca la ejecución del método *nomMetodo*, con los parámetros *param1... paramN*, si es necesario, en el cliente 4D registrado cuyo nombre es *nomCliente*. El nombre registrado del cliente 4D es definido por el comando [REGISTER CLIENT](register-client.md "REGISTER CLIENT"). @@ -61,4 +58,14 @@ Consulte el ejemplo del comando [REGISTER CLIENT](register-client.md "REGISTER C [Execute on server](execute-on-server.md) [GET REGISTERED CLIENTS](get-registered-clients.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 651 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md index ade8f51bef453f..e28a8a43d68e6f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Execute on server inicia un nuevo proceso en el equipo servidor (cuando se llama en Cliente/Servidor) o en el mismo equipo (si se llama en monousuario) y devuelve el número de este proceso. @@ -190,4 +187,13 @@ Consulte la sección *Servicios basados en los procedimientos almacenados (ejemp #### Ver también [EXECUTE ON CLIENT](execute-on-client.md) -[New process](new-process.md) \ No newline at end of file +[New process](new-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 373 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md index 1ae3c33c23f33f..113bbd4527b74d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md @@ -30,4 +30,13 @@ El siguiente ejemplo asigna el exponencial de 1 a *vrE* (el log de *vrE* es 1): #### Ver también -[Log](log.md) \ No newline at end of file +[Log](log.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 21 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md index 50344362541b9c..8dbf9bfdc96a31 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md @@ -63,4 +63,14 @@ La variable OK toma el valor 1 si el BLOB ha sido descomprimido con éxito, de l #### Ver también [BLOB PROPERTIES](blob-properties.md) -[COMPRESS BLOB](compress-blob.md) \ No newline at end of file +[COMPRESS BLOB](compress-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 535 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md index 22610c0eaa5b17..6742bdc7c00715 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EXPORT DATA exportar datos en el archivo *nomArchivo*. 4D puede exportar datos en los siguientes formatos: Texto, Texto de longitud fija, XML, SYLK, DIF, DBF (dBase) y 4D. @@ -98,4 +95,14 @@ Si el usuario hace clic en **Cancelar** en la caja de diálogo estándar de abri [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) -[IMPORT DATA](import-data.md) \ No newline at end of file +[IMPORT DATA](import-data.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 666 | +| Hilo seguro | ✗ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md index 2092feac7a7f0d..87deeeba0fd62d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EXPORT DIF escribe los datos de los registros de la selección actual de *tabla* en el proceso actual. Los datos se escriben en *documento*, un documento DIF Windows o Macintosh, en el disco. @@ -51,4 +48,14 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 84 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md index 3f3b22382e8b47..2a719af145f633 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Export structure file** divide la estructura actual de la base 4D en un conjunto de archivos de texto o archivos de imagen nativos y los almacena en la *rutaCarpeta* especificada. Por defecto, se exporta la totalidad de la estructura de la base (métodos, formularios, catálogo, etc.). Puede filtrar los contenidos a exportar utilizando el parámetro *opciones* (ver abajo). @@ -115,4 +112,13 @@ Desea exportar solo los métodos proyecto y base, y un archivo de registro: #### Ver también -[FORM Convert to dynamic](form-convert-to-dynamic.md) \ No newline at end of file +[FORM Convert to dynamic](form-convert-to-dynamic.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1565 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md index 9b807a5da05fbc..ff53a39c85eae3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md @@ -54,4 +54,13 @@ Desea exportar la estructura actual de la base de datos en formato html: #### Ver también -[IMPORT STRUCTURE](import-structure.md) \ No newline at end of file +[IMPORT STRUCTURE](import-structure.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1311 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md index fb2a033922c84f..5e359834c39810 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **EXPORT SYLK** escribe los datos de los registros de la selección actual de *tabla* en el proceso actual. Los datos se escriben en *documento*, un documento Sylk Windows o Macintosh, en el disco. @@ -51,4 +48,14 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma [EXPORT DIF](export-dif.md) [EXPORT TEXT](export-text.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 85 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md index 2fdfb928cc71bd..18580801d0772b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando EXPORT TEXT escribe datos de los registros de la selección actual de la *tabla* en el proceso actual. Los datos se escriben en *documento*, un documento de texto Windows o Macintosh en el disco. @@ -53,4 +50,14 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 167 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md index ce35cd233a726a..ea0ebdb5a758d8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md @@ -28,4 +28,13 @@ El siguiente ejemplo asigna la variable *vbOpciones* a Falso: #### Ver también [Not](not.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 215 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md index 92e0467aaaeb13..9e206e83efca18 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md @@ -48,4 +48,13 @@ Este ejemplo muestra una alerta. Este método pasa un puntero a un campo: [Field](field.md) [Last field number](last-field-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 257 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md index f312f41c0d6817..dfcce8f8b5304b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md @@ -56,4 +56,13 @@ En el siguiente ejemplo, la variable *campNum* es igual al número del campo de [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last field number](last-field-number.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 253 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md index 8944dbb231b920..9336aee836c41a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Llame al comando **FILTER EVENT** desde el interior del método de gestión de eventos instalado utilizando el comando [ON EVENT CALL](on-event-call.md). @@ -42,4 +39,14 @@ Ver el ejemplo del comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL"). #### Ver también -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 321 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md index 14215e6f75f7b0..6381beb5579e1a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción FILTER KEYSTROKE permite reemplazar el carácter introducido por el usuario en un campo o en un área editable por el primer carácter de la cadena *carFiltro*. @@ -249,4 +246,13 @@ El método ObtenerTextoSeleccionado es el siguiente: [Form event code](form-event-code.md) [Get edited text](get-edited-text.md) [Is editing text](is-editing-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 389 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md index a1415868fc239d..5fa5f6a95c8a59 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md @@ -108,4 +108,13 @@ Desea encontrar una referencia a un objeto: [DELETE FROM ARRAY](delete-from-array.md) [Find in sorted array](find-in-sorted-array.md) [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 230 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md index 17425b0fe5ba9d..ea86fbcfebceea 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md @@ -62,3 +62,13 @@ Este es un ejemplo que permite verificar la existencia de un valor: ``` Tenga en cuenta >= permite cubrir todos los casos. De hecho, la función devuelve un número de registro y el primer registro tiene el número 0. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 653 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md index 6120fd52ebefef..4a160e14176fbd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Find in list devuelve la posición o referencia del primer elemento de la *lista* que es equivalente a la cadena pasada en *valor*. Si se encuentran varios elementos, la función también puede llenar un array *arrayElem* con la posición o la referencia de cada elemento. @@ -64,3 +61,13 @@ Dada la siguiente lista jerárquica:  $vlItemPos:=Find in list(hList;"Fecha";0;*)   //$vlItemPos igual a 0 ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 952 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md index 5e2507ffbf1501..ff1105d2004587 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md @@ -73,4 +73,13 @@ Usted quiere encontrar el número de ocurrencias de las cadenas que comienzan po [Count in array](count-in-array.md) [Find in array](find-in-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1333 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md index d78656460ce5a4..e6569bc7a4d9e4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Find windowdevuelve (si existe) el número de referencia de la primera ventana “tocada” por el punto cuyas coordenadas se pasan en *izquierda* y *superior*. @@ -30,4 +27,13 @@ El parámetro *parteVentana* devuelve 3 si se toca la ventana, de lo contrario 0 #### Ver también [Frontmost window](frontmost-window.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 449 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md index 65f75403b6eb33..e3f8252e89c979 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md @@ -33,4 +33,14 @@ El siguiente ejemplo carga el primer registro de la tabla \[Clientes\]: [End selection](end-selection.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 50 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md index a1b433a0de13c3..d30cfff6ef0b72 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md @@ -29,4 +29,13 @@ Normalmente, no es necesario llamar a este comando, ya que 4D guarda las modific #### Ver también [Get database parameter](get-database-parameter.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 297 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md index 481ea74fe22d62..cba2b8aa50821b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Nota de compatibilidad Este comando sólo se conserva por razones de compatibilidad. A partir de la versión 12 de 4D, se recomienda utilizar el comando [OBJECT Get pointer](object-get-pointer.md "OBJECT Get pointer"). @@ -50,4 +47,13 @@ El siguiente ejemplo es un método de objeto para un botón. El método de objet #### Ver también -[OBJECT Get pointer](object-get-pointer.md) \ No newline at end of file +[OBJECT Get pointer](object-get-pointer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 278 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md index 98a0501294b916..29bd4073a80238 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md @@ -16,13 +16,21 @@ displayed_sidebar: docs #### Descripción -El comando FOLDER LIST llena el array de tipo Texto o Alfa *directorios* con los nombres de las carpetas ubicadas en la ruta de acceso que se pasa en *rutaAcceso*. - -**Nota:** debe pasar una ruta de acceso absoluta en el parámetro *rutaAcceso*. +El comando FOLDER LIST llena el array de tipo Texto o Alfa *directorios* con los nombres de las carpetas ubicadas en la ruta de acceso que se pasa en *rutaAcceso*.debe pasar una ruta de acceso absoluta en el parámetro *rutaAcceso*. Si no hay carpetas en la ubicación especificada, el comando devuelve un array vacío. Si la ruta de acceso que se pasa en *rutaAcceso* es incorrecta, FOLDER LIST genera un error del administrador de archivos que puede interceptar utilizando un método [ON ERR CALL](on-err-call.md "ON ERR CALL"). #### Ver también [DOCUMENT LIST](document-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 473 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md index a4096b8887c185..9d57c6711b5096 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md @@ -47,4 +47,13 @@ Desea asegurarse de que la fuente utilizada en un área de texto esté disponibl #### Ver también -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1700 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md index 7c3a938a8fa7b7..49cb69ce74c2da 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md @@ -74,4 +74,13 @@ Usted quiere obtener una lista de fuentes recientes: [OBJECT SET FONT](object-set-font.md) [SET RECENT FONTS](set-recent-fonts.md) [ST SET ATTRIBUTES](st-set-attributes.md) -*Tipo de lista de las fuentes* \ No newline at end of file +*Tipo de lista de las fuentes* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 460 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md index 7c45fc9b9cdc6a..b63f0581d81f89 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md @@ -57,4 +57,13 @@ Usted desea seleccionar estilos de la familia de fuentes "Verdana" (si está dis #### Ver también -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1362 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md index 6cdd7caea44651..824af981cf8f33 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM Convert to dynamic** convierte el *nomFormulario* (formulario clásico) a un formulario dinámico y lo devuelve en un objeto. @@ -59,4 +56,13 @@ Si ejecuta el código: #### Ver también [DIALOG](dialog.md) -[Export structure file](export-structure-file.md) \ No newline at end of file +[Export structure file](export-structure-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1570 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md index 681edce526c0b0..60a49b39927b47 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM EDIT** abre el *form* asociado a *tabla* en el editor de formularios 4D. Tenga en cuenta que debe tener acceso al entorno Diseño; de lo contrario, se genera el error -9804 ("No se puede abrir el formulario"). @@ -43,4 +40,13 @@ Para abrir el formulario proyecto *ContactList*: #### Ver también -*Comandos del tema Acceso objetos diseño* \ No newline at end of file +*Comandos del tema Acceso objetos diseño* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1749 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md index c9a7309f5aed95..f30ed262ece30a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Compatibilidad **Form event code** se llamaba **Form event** en versiones anteriores de 4D. Se renombró para mayor claridad cuando se agregó el comando [FORM Event](form-event.md), que devuelve un objeto. @@ -842,4 +839,13 @@ Como resultado, el rectángulo rojo sigue el desplazamiento del list box: [Get edited text](get-edited-text.md) [Keystroke](keystroke.md) [POST OUTSIDE CALL](post-outside-call.md) -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 388 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md index 1e09c5017838e3..98a4d4796c36ec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md @@ -96,4 +96,13 @@ El list box resultante cuando se seleccionan las líneas: #### Ver también -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1606 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md index 1b244a93503ace..15acbd2e7974fe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción FORM FIRST PAGE cambia la página actual del formulario por la primera página del formulario.Si ningún formulario es mostrado o cargado por el comando [FORM LOAD](form-load.md), o si la primera página del formulario ya se muestra, FORM FIRST PAGE no hace nada. @@ -33,4 +30,13 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 250 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md index b85a05eeb16fa6..83d0b4752d3137 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM Get color scheme** devuelve el nombre de la combinación de colores actual del formulario mostrado actualmente. Si no hay un formulario actual, el comando devuelve una cadena vacía. @@ -45,4 +42,13 @@ Desea cargar una imagen según el esquema actual del formulario: #### Ver también [Get application color scheme](get-application-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1761 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md index f9ef838ff7a8c7..5ceb5981bf9d71 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM Get current page** devuelve el número de la página actual del formulario mostrada actualmente o del formulario actual cargado vía el comando [FORM LOAD](form-load.md). @@ -71,4 +68,13 @@ En un formulario, si selecciona un elemento de menú de la barra de menús o si [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 276 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md index e9aa01c681d861..06a2ec94bba8f4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM GET ENTRY ORDER** devuelve en *nomObjetos* los nombres ordenados de los objetos que definen el orden de entrada del formulario. @@ -53,4 +50,13 @@ Puede excluir ciertos objetos del orden de entrada: #### Ver también -[FORM SET ENTRY ORDER](form-set-entry-order.md) \ No newline at end of file +[FORM SET ENTRY ORDER](form-set-entry-order.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1469 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md index 7e18bb71211551..fb71f228e4a70c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM GET HORIZONTAL RESIZING devuelve las propiedades de redimensionamiento horizontal del formulario actual en las variables *redimension*, *anchoMin* y *anchoMax*. Estas propiedades pueden haberse definido para el formulario en el editor de formularios en modo Diseño o para el proceso actual vía el comando [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md "FORM SET HORIZONTAL RESIZING"). #### Ver también -[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) \ No newline at end of file +[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1077 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md index b8dcc0f0283999..c39a9b07b2f8e0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM GET NAMES** llena el array *arrayNoms* con los nombres de los formularios de la aplicación. @@ -69,4 +66,13 @@ Ejemplos de uso típicos: #### Ver también *Formularios* -[METHOD GET PATHS FORM](method-get-paths-form.md) \ No newline at end of file +[METHOD GET PATHS FORM](method-get-paths-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1167 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md index 5b035e14ef836e..04515f32918f99 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM GET OBJECTS devuelve en forma de array(s) la lista de todos los objetos presentes en el formulario actual. Esta lista puede estar restringida a la página actual del formulario y puede excluir los objetos de los formularios heredados. El comando puede ser utilizado con los formularios de entrada y de salida. @@ -126,4 +123,13 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los [FORM GET PROPERTIES](form-get-properties.md) *Objetos (Formularios)* -*Objetos de formulario (Acceso)* \ No newline at end of file +*Objetos de formulario (Acceso)* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 898 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md index 4c421996d40f70..829606916c88b0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando \[#current\_title devuelve las propiedades del formulario *nomForm*. @@ -43,4 +40,13 @@ El parámetro *título* devuelve el título de la ventana del formulario, tal co [FORM GET OBJECTS](form-get-objects.md) [FORM SET SIZE](form-set-size.md) -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 674 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md index e82e7bb9aba0ae..e2208cc588d14f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM GET VERTICAL RESIZING devuelve las propiedades de redimensionamiento vertical del formulario actual en las variables *redimension*, *alturaMin* y *alturaMax*. Estas propiedades pueden haberse definido para el formulario en el editor de formularios en modo Diseño o para el proceso actual vía el comando [FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md "FORM SET VERTICAL RESIZING"). #### Ver también -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1078 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md index 3eefcb4e76706a..8bc83e80232b42 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **FORM GOTO PAGE** cambia la página actual de un formulario para mostrar la página especificada por *numPag*. @@ -50,4 +47,13 @@ El siguiente ejemplo es un método de objeto para un botón que muestra una pág [FORM Get current page](form-get-current-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 247 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md index d88f08f5e695b2..17e004ee25b317 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción FORM LAST PAGE cambia la página actual de un formulario para mostrar la última página del formulario. Si ningún formulario es mostrado o cargado por el comando [FORM LOAD](form-load.md), o si ya se muestra la última página del formulario, FORM LAST PAGE no hace nada. @@ -33,4 +30,13 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 251 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md index dd41922879f33d..2cd27262e5f339 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM LOAD** se utiliza para cargar el *formulario* en memoria en el proceso actual junto con *dataForm* (opcional) con el fin de imprimir sus datos o analizar sus contenidos. Sólo puede haber un formulario actual por proceso. @@ -173,4 +170,13 @@ var $over Boolean [FORM UNLOAD](form-unload.md) [LISTBOX GET OBJECTS](listbox-get-objects.md) [OBJECT Get type](object-get-type.md) -[Print object](print-object.md) \ No newline at end of file +[Print object](print-object.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1103 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md index 10a3550c76bf6a..d9adf442e0f782 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción FORM NEXT PAGE cambia la página actual del formulario para mostrar la página siguiente.Si ningún formulario es mostrado o cargado por el comando [FORM LOAD](form-load.md), o si ya se muestra la última página del formulario, FORM NEXT PAGE no hace nada. @@ -33,4 +30,13 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 248 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md index e9273020c6c3e4..44690fc56f01a0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción FORM PREVIOUS PAGE cambia la página actual de un formulario para mostrar la página anterior. Si ningún formulario es mostrado o cargado por el comando [FORM LOAD](form-load.md) o si ya se muestra la primera página del formulario, FORM PREVIOUS PAGE no hace nada. @@ -33,4 +30,13 @@ El siguiente ejemplo es un método de una línea llamado por un comando de menú [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM NEXT PAGE](form-next-page.md) \ No newline at end of file +[FORM NEXT PAGE](form-next-page.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 249 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md index 172cd954aabd85..962c196f145b06 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM SCREENSHOT** devuelve un formulario en forma de imagen. Este comando admite dos sintaxis diferentes: en función de la sintaxis utilizada, puede obtener la imagen de un formulario ejecutado, o la imagen del formulario en el editor de formularios. @@ -38,4 +35,13 @@ Por defecto, el comando devuelve una captura de pantalla de la página 1 del for #### Ver también -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 940 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md index 1c5c801d1e1f40..24863e47ad11db 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM SET ENTRY ORDER** permite definir dinámicamente el orden de entrada del formulario actual para el proceso actual basado en el array *nomObjetos*. @@ -55,4 +52,13 @@ Usted desea definir el orden de entrada de los objetos en el formulario basado e #### Ver también -[FORM GET ENTRY ORDER](form-get-entry-order.md) \ No newline at end of file +[FORM GET ENTRY ORDER](form-get-entry-order.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1468 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md index b53c0211a023a1..ad2fc4c3956ce5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM SET HORIZONTAL RESIZING permite cambiar por programación las propiedades de redimensionamiento horizontal del formulario actual. Por defecto, estas propiedades son definidas en el editor de formularios en el entorno Diseño. Las nuevas propiedades son definidas para el proceso actual; no se almacenan con el formulario. @@ -38,4 +35,13 @@ Consulte el ejemplo del comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE" [FORM GET HORIZONTAL RESIZING](form-get-horizontal-resizing.md) [FORM SET SIZE](form-set-size.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 892 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md index 79f699424f4fa0..6eba5ad193ad50 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM SET INPUT define el formulario de entrada actual de *tabla* para *form* o *formUsuario*. El formulario debe pertenecer a *tabla*. @@ -108,4 +105,13 @@ que devuelve: [MODIFY RECORD](modify-record.md) [MODIFY SELECTION](modify-selection.md) [Open window](open-window.md) -[QUERY BY EXAMPLE](query-by-example.md) \ No newline at end of file +[QUERY BY EXAMPLE](query-by-example.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 55 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md index 82d1ce7fa914ca..5addd78bef36fe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM SET OUTPUT** define el formulario de salida actual de *formulario* o *formUsuario*. El formulario debe pertenecer a *tabla*. @@ -71,4 +68,13 @@ Los siguientes ejemplos usan la ruta a un formulario .json para imprimir los reg [FORM SET INPUT](form-set-input.md) [MODIFY SELECTION](modify-selection.md) [PRINT LABEL](print-label.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 54 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md index 08c8852283cfbb..8fed87ac93104a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM SET SIZE le permite cambiar el tamaño del formulario actual por programación. El nuevo tamaño es definido por el proceso actual; no está almacenado con el formulario. @@ -123,4 +120,13 @@ El método de objeto asociado con este botón es el siguiente: #### Ver también [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 891 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md index 27ae880f3e87a5..8e9aa4249bb9de 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando FORM SET VERTICAL RESIZING le permite modificar por programación las propiedades de redimensionamiento vertical del formulario actual. Por defecto, estas propiedades son definidas en el editor de formularios en el entorno Diseño. Las nuevas propiedades son definidas para el proceso actual; no son almacenadas con el formulario. @@ -38,4 +35,13 @@ Consulte el ejemplo del comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE" [FORM GET VERTICAL RESIZING](form-get-vertical-resizing.md) [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET SIZE](form-set-size.md) \ No newline at end of file +[FORM SET SIZE](form-set-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 893 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md index bb30492d5415c4..2a774a91aabe99 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **FORM UNLOAD** libera de la memoria el formulario actual designado utilizando el comando [FORM LOAD](form-load.md). @@ -23,4 +20,13 @@ Llamar este comando es necesario cuando se utiliza el comando [FORM LOAD](form-l #### Ver también -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1299 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md index 21b59b60eec01d..ecf07c1817ab25 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Form** devuelve el objeto asociado con el formulario actual, si lo hay. 4D asocia automáticamente un objeto al formulario actual en los siguientes casos: @@ -72,4 +69,13 @@ El formulario muestra los valores que ha pasado: #### Ver también -[DIALOG](dialog.md) \ No newline at end of file +[DIALOG](dialog.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1466 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md index ebca62b25924d6..aaa2cb982a0b0c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Frontmost process devuelve el número del proceso cuya ventana (o ventanas) están en el primer plano. @@ -35,4 +32,13 @@ Ver el ejemplo para [BRING TO FRONT](bring-to-front.md "BRING TO FRONT"). #### Ver también [BRING TO FRONT](bring-to-front.md) -[WINDOW LIST](window-list.md) \ No newline at end of file +[WINDOW LIST](window-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 327 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md index 8a2a5ab977bc45..6f764c6a9f3713 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Frontmost window devuelve el número de referencia de la ventana ubicada en el primer plano. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver también [Frontmost process](frontmost-process.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 447 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md index 6afd3308637821..2a1e2b694adf8d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md @@ -86,4 +86,13 @@ Este es el método del botón **Generar** #### Ver también [GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 691 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md index 9f3aa206c702db..712c830b2ed910 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md @@ -83,4 +83,13 @@ Estos ejemplos ilustran cómo recuperar el extracto de un texto: [BASE64 ENCODE](base64-encode.md) [Generate password hash](generate-password-hash.md) *Protocolo seguro* -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1147 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md index 13c631d9fcacd4..81446455f6ebe2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md @@ -51,4 +51,13 @@ Ver el ejemplo del comando [ENCRYPT BLOB](encrypt-blob.md "ENCRYPT BLOB"). [DECRYPT BLOB](decrypt-blob.md) [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 688 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md index c291148c988c6a..4757bfb1930721 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md @@ -66,4 +66,13 @@ Este ejemplo genera un hash de contraseña utilizando bcrypt con un factor de co [Generate digest](generate-digest.md) -[Verify password hash ](verify-password-hash.md) \ No newline at end of file +[Verify password hash ](verify-password-hash.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1533 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md index b89250a07c1db2..e60f916092a977 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md @@ -29,3 +29,13 @@ Generación de un UUID en una variable:  var MyUUID : Text  MyUUID:=Generate UUID ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1066 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md index afd838cfe8337f..e73e898707eebe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md @@ -68,4 +68,13 @@ Usted quiere obtener la ruta del último archivo de backup: #### Ver también -[File](file.md) \ No newline at end of file +[File](file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1418 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md index fbefebdbb77a9d..79e89202d38c08 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md @@ -51,8 +51,8 @@ Las aplicaciones del entorno 4D utilizan una carpeta especifica para almacenar l La carpeta 4D activa es creada por defecto en la siguiente ubicación: -* En Windows: *{Disk}:\\Users\\* *\\AppData\\Roaming\\* -* En macOS: *{Disk}:Users:* *:Library:Application Support:* +* En Windows: *{Disk}:\\Users\\{userName}\\AppData\\Roaming\\{applicationName}* +* En macOS: *{Disk}:Users:{userName}:Library:Application Support:{applicationName}* ##### Carpeta Licencias @@ -207,4 +207,14 @@ Si el parámetro *carpeta* no es válido o si la ruta de acceso devuelta está v [System folder](system-folder.md) [Temporary folder](temporary-folder.md) [Test path name](test-path-name.md) -[WEB SET ROOT FOLDER](web-set-root-folder.md) \ No newline at end of file +[WEB SET ROOT FOLDER](web-set-root-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 485 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md index f60f7d1d170731..8268164bd1989a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) *Gestión de prioridades en la caché de la base* -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1428 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md index 45199aa0111ff6..b1ee344e670495 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) *Gestión de prioridades en la caché de la base* -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1427 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md index 7f7c5ace7370e1..a5bc695681ab41 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md @@ -26,4 +26,13 @@ Los tipos de campos de datos escalares incluyen campos de tipo fecha/hora, numé [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) *Gestión de prioridades en la caché de la base* -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1426 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md index cf8ee860db39b7..59496e880f2445 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET ALLOWED METHODS devuelve, en *arrMetodos*, los nombres de los métodos que pueden utilizarse para escribir fórmulas. Estos métodos están listados al final de la lista de comandos en el editor. @@ -45,4 +42,13 @@ Este ejemplo autoriza un conjunto de métodos específicos para crear un informe #### Ver también -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 908 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md index 0d866e43732d47..4ca176cf853ac7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get application color scheme** devuelve el nombre del esquema de color real en uso en el nivel de la aplicación. @@ -45,4 +42,13 @@ Consulte la descripción del comando [SET APPLICATION COLOR SCHEME](set-applicat #### Ver también [FORM Get color scheme](form-get-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1763 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md index c66209b97366e7..c315d688b458ea 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md @@ -23,4 +23,13 @@ Por defecto, las aserciones están activas pero pueden haber sido desactivadas u [ASSERT](assert.md) [Asserted](asserted.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1130 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md index 25ccafb6a83e22..392d801c17612e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md @@ -34,4 +34,13 @@ Consulte el ejemplo del comando [GET FIELD RELATION](get-field-relation.md "GET [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 899 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md index c9723cf6ac0cb5..6941c4f21a1ef3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -El comando **Get cache size** devuelve, en bytes, el tamaño actual de la caché de la base de datos. - -**Nota:** este comando sólo funciona en modo local (4D Server y 4D); no debe ser utilizado con 4D en modo remoto. +El comando **Get cache size** devuelve, en bytes, el tamaño actual de la caché de la base de datos.este comando sólo funciona en modo local (4D Server y 4D); no debe ser utilizado con 4D en modo remoto. #### Ejemplo @@ -25,4 +23,13 @@ Ver el ejemplo del comando [SET CACHE SIZE](set-cache-size.md). #### Ver también -[SET CACHE SIZE](set-cache-size.md) \ No newline at end of file +[SET CACHE SIZE](set-cache-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1432 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md index 2e58471aafcacb..0ef36ae3303a6f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get current printer**devuelve el nombre de la impresora actual definida en la aplicación 4D. Por defecto, al inicio de 4D, la impresora actual es la impresora definida en el sistema. @@ -33,4 +30,13 @@ Si no hay ninguna impresora instalada, se genera un error. #### Ver también [PRINTERS LIST](printers-list.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 788 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md index 2f933ba2a93325..f8dcc9868e65f1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md @@ -50,4 +50,13 @@ El lenguaje actual de la base permite definir la carpeta .lproj en la que el pro #### Ver también [Localized document path](localized-document-path.md) -[SET DATABASE LOCALIZATION](set-database-localization.md) \ No newline at end of file +[SET DATABASE LOCALIZATION](set-database-localization.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1009 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md index 0b26d964cdf19b..6e22d1e8422771 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get database parameter** permite obtener el valor actual de un parámetro de la base 4D. Cuando el valor del parámetro es una cadena de caracteres, se devuelve en el parámetro *valorAlfa*. @@ -134,4 +131,13 @@ En el [Método base On Startup](metodo-base-on-startup.md), usted escribe: [DISTINCT VALUES](distinct-values.md) [Application info](application-info.md) [QUERY SELECTION](query-selection.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 643 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md index 071049e205a4b9..79d1725ce10033 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get default user devuelve el número de referencia único del usuario designado como “Usuario por defecto” en la caja de diálogo de Preferencias de la base: @@ -23,3 +20,13 @@ displayed_sidebar: docs ![](../assets/en/commands/pict36789.es.png) Si ningún usuario por defecto está definido, el comando devuelve 0. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 826 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md index f1398f713ec7bc..059a42dc880c2f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando GET DOCUMENT ICON devuelve en el campo o la variable imagen 4D *icono*, el icono del documento cuyo nombre o ruta de acceso se pasa en *rutaDoc*. *rutaDoc* puede especificar un archivo de todo tipo (ejecutable, documento, atajo o alias, etc.) o una carpeta. +El comando GET DOCUMENT ICON devuelve en el campo o la variable imagen 4D *icono*, el icono del documento cuyo nombre o ruta de acceso se pasa en *rutaDoc*.puede especificar un archivo de todo tipo (ejecutable, documento, atajo o alias, etc.) o una carpeta. Pase en *rutaDoc* la ruta de acceso absoluta del documento. Igualmente, puede pasar únicamente el nombre del documento o ruta de acceso relativa, en este caso el documento debe encontrarse en el directorio actual de la base (generalmente, la carpeta que contiene el archivo de estructura de la base). @@ -26,3 +26,14 @@ Si pasa una cadena vacía en *rutaDoc*, aparece la caja de diálogo estándar de Pase en *icono* un campo o una variable imagen 4D. Después de la ejecución del comando, este parámetro contiene el icono del archivo (formato PICT). El parámetro opcional *tamaño* permite indicar las dimensiones en píxeles del icono. Este valor representa el largo del cuadrado incluyendo el icono. Generalmente, los iconos se definen de 32x32 píxeles (“iconos largos”) o 16x16 píxeles (“iconos pequeños”). Si pasa 0 u omite este parámetro, el comando devuelve el icono más grande disponible. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 700 | +| Hilo seguro | ✓ | +| Modifica variables | Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md index 8a50170de65077..3944985584bedc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md @@ -24,4 +24,13 @@ Get document position devuelve la posición, a partir del inicio del documento, [RECEIVE PACKET](receive-packet.md) [SEND PACKET](send-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 481 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md index 55627ef44ae8e7..da41ca4fe4748c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md @@ -207,4 +207,14 @@ Una vez implementado en la base, tenemos todo lo que necesitamos para escribir e #### Ver también -[SET DOCUMENT PROPERTIES](set-document-properties.md) \ No newline at end of file +[SET DOCUMENT PROPERTIES](set-document-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 477 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md index 0e5cbe04c453f3..39fe87b078a7a2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md @@ -28,4 +28,14 @@ En Macintosh, si no pasa el parámetro opcional *\**, se devuelve el tamaño del [Get document position](get-document-position.md) [SET DOCUMENT POSITION](set-document-position.md) -[SET DOCUMENT SIZE](set-document-size.md) \ No newline at end of file +[SET DOCUMENT SIZE](set-document-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 479 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md index 1cfa4673b9e128..27501166ebd273 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get edited text** se utiliza principalmente con el evento formulario On After Edit para recuperar el texto a medida que es introducido. También puede utilizarse con los eventos formulario On Before Keystroke y On After Keystroke. Para mayor información sobre estos eventos formulario, por favor consulte la descripción del comando [Form event code](form-event-code.md). @@ -67,4 +64,13 @@ Este es un ejemplo de cómo procesar inmediatamente los caracteres introducidos #### Ver también [Form event code](form-event-code.md) -[Is editing text](is-editing-text.md) \ No newline at end of file +[Is editing text](is-editing-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 655 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md index 88f816ad0bb685..81daa306f1e980 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md @@ -30,4 +30,13 @@ Este comando devuelve una cadena vacía en los siguiente casos: #### Ver también -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1133 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md index 9ab713ac8fd92b..172d0634d762ae 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET FIELD ENTRY PROPERTIES devuelve las propiedades de entrada de datos para el campo especificado por *numTabla* y *numCamp* o por *ptrCamp*. @@ -46,4 +43,13 @@ Si ninguna lista está asociada al campo o si el tipo del campo no permite la as [GET FIELD PROPERTIES](get-field-properties.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[GET TABLE PROPERTIES](get-table-properties.md) \ No newline at end of file +[GET TABLE PROPERTIES](get-table-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 685 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md index 68381c166d16f7..d610b1d451df20 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md @@ -73,4 +73,13 @@ Este ejemplo recupera en las variables *vTipo*, *vLong*, *vIndex*, *vUnico* y *v [Field](field.md) [Field name](field-name.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 258 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md index 0bbbc0173ec73b..2e05cbcd75e8be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md @@ -82,4 +82,13 @@ El siguiente código ilustra las diferentes posibilidades ofrecidas por los coma [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET RELATION PROPERTIES](get-relation-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 920 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md index 73a72b9535674e..55ea43c34b2293 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET FIELD TITLES llena los arrays *titulosCampos* y *numCampos* con los nombres y los números de los campos de la *tabla*. Los contenidos de estos dos arrays están sincronizados. @@ -31,4 +28,13 @@ En ambos casos, el comando no devuelve campos invisibles. #### Ver también [GET TABLE TITLES](get-table-titles.md) -[SET FIELD TITLES](set-field-titles.md) \ No newline at end of file +[SET FIELD TITLES](set-field-titles.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 804 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md index e608d76be40364..3cf223f72b09bd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get file from pasteboard devuelve la ruta de acceso absoluto de un archivo incluido en una operación de arrastrar y soltar. Varios archivos pueden ser seleccionados y movidos simultáneamente. El parámetro *indiceN* se utiliza para designar un archivo entre un conjunto de archivos seleccionados. @@ -43,4 +40,13 @@ El siguiente ejemplo puede utilizarse para recuperar en un array todas las rutas #### Ver también -[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) \ No newline at end of file +[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 976 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md index be89084b4ff46d..f004cbd6cd2e74 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md @@ -34,4 +34,13 @@ Desea verificar si el usuario actual pertenece al grupo "plugins": #### Ver también -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1738 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md index f4bc9c0f023556..dc6e109758c040 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción GET GROUP LIST llena los arrays *nomGrupos y* *numGrupos* con los nombres y los números de referencia únicos de los grupos tal como aparecen en la ventana del editor de contraseñas. @@ -34,4 +31,14 @@ Si no tiene privilegios de acceso para llamar al comando GET GROUP LIST o si otr [GET GROUP PROPERTIES](get-group-properties.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 610 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md index 65f59bdc8a730e..087d51df8ed3bb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción GET GROUP PROPERTIES devuelve las propiedades del grupo cuyo número de referencia se pasa en *refGrupo*. Pase el número de referencia del grupo devuelto por el comando [GET GROUP LIST](get-group-list.md). @@ -41,4 +38,14 @@ Si no tiene privilegios de acceso para llamar al comando GET GROUP PROPERTIES o [GET GROUP LIST](get-group-list.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 613 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md index 65c7ba9e01ab17..6a37d74188cea4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET HIGHLIGHT permite determinar el texto seleccionado actualmente en *objeto*. @@ -64,4 +61,13 @@ Modificación del estilo del texto resaltado: [FILTER KEYSTROKE](filter-keystroke.md) [HIGHLIGHT TEXT](highlight-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 209 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md index 04bf0ed6fc6c44..a13d944958dba4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET HIGHLIGHTED RECORDS guarda en el conjunto designado por el parámetro *nomConjunto* los registros seleccionados (es decir, los registros seleccionados por el usuario en el formulario listado) de la *tabla* pasada como parámetro. Si el parámetro *tabla* se omite, se utiliza la tabla del formulario o del subformulario actual. @@ -45,4 +42,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[HIGHLIGHT RECORDS](highlight-records.md) \ No newline at end of file +[HIGHLIGHT RECORDS](highlight-records.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 902 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md index c108cabfff5dc7..6a013b948406f9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get indexed string devuelve: @@ -40,4 +37,14 @@ Si el recurso se encuentra, OK toma el valor 1, de lo contrario toma el valor 0 [Get string resource](get-string-resource.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 510 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md index 592b20dc7a695a..7c114d02880c1f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md @@ -24,4 +24,13 @@ Este comando está destinado a ser utilizado en un proceso de actualización aut #### Ver también [RESTART 4D](restart-4d.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1301 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md index ce0d9246f78302..cda37144b469ca 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get list item font devuelve el nombre de la fuente del carácter actual del elemento especificado por el parámetro RefElem de la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -33,4 +30,13 @@ Finalmente, puede pasar \* en *refElem*: en este caso, el comando se aplicará a #### Ver también -[SET LIST ITEM FONT](set-list-item-font.md) \ No newline at end of file +[SET LIST ITEM FONT](set-list-item-font.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 954 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md index 22524a6629afd4..ab89d6be1436a3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET LIST ITEM ICON devuelve, en *icono*, el icono asociado al elemento cuyo número de referencia se pasa en *refElem* de la lista cuyo número de referencia o nombre de objeto pasa en *lista*. @@ -40,4 +37,13 @@ Si ningún icono está asociado al elemento, la variable icono se devuelve vací #### Ver también [GET LIST ITEM PROPERTIES](get-list-item-properties.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 951 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md index c06ffbd163cc75..446d3ebf0d3ffc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET LIST ITEM PARAMETER ARRAYS** permite recuperar en una sola llamada el conjunto de los parámetros (así como también, opcionalmente, sus valores) asociados al elemento *refElemento* de la lista jerárquica cuya referencia o nombre de objeto se pasó en el parámetro *lista*. @@ -77,4 +74,13 @@ Si también quiere obtener los valores de los parámetros, escriba: #### Ver también -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1195 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md index 13057bf7ed0856..8a60dc618d560b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET LIST ITEM PARAMETER permite conocer el *valor* actual del parámetro *selector* para el elemento *refElem* de la lista jerárquica cuya referencia o nombre de objeto se pasa en el parámetro *lista*. @@ -37,4 +34,13 @@ En *selector*, puede pasar la constante Additional text o Standard action (en el #### Ver también *Listas jerárquicas* -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 985 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md index 5579e26402de26..2381984dff1ea6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET LIST ITEM PROPERTIES** devuelve las propiedades del elemento designado por el parámetro *refElem* de la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -54,4 +51,13 @@ Para mayor información sobre estas propiedades, consulte la descripción del co [GET LIST ITEM](get-list-item.md) [GET LIST ITEM ICON](get-list-item-icon.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 631 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md index 759c187e372265..2c037bf8fb3bf7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET LIST ITEM devuelve la información sobre el elemento especificado por *posicionElem* de la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -67,4 +64,13 @@ Consulte el ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LI [List item position](list-item-position.md) [Selected list items](selected-list-items.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 378 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md index 1ced6258ac0a2d..dd044d0792be89 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET LIST PROPERTIES devuelve información sobe la lista cuyo número de referencia se pasa en *lista*. @@ -39,4 +36,13 @@ Para una completa descripción de la apariencia, iconos de nodos, altura de lín #### Ver también -[SET LIST PROPERTIES](set-list-properties.md) \ No newline at end of file +[SET LIST PROPERTIES](set-list-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 632 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md index ffbbe6e82cc0f2..bf844ae7a1634c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET MACRO PARAMETER devuelve, en el parámetro *paramText*, una parte o la totalidad del texto del método desde el cual se llama. @@ -36,4 +33,13 @@ Consulte el ejemplo del comando [SET MACRO PARAMETER](set-macro-parameter.md "SE #### Ver también -[SET MACRO PARAMETER](set-macro-parameter.md) \ No newline at end of file +[SET MACRO PARAMETER](set-macro-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 997 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md index ddc04b871c2627..8c64920ca9a405 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get menu bar reference** devuelve la identificación única de la barra de menús actual o de la barra de menús de un proceso específico. @@ -41,4 +38,13 @@ Consulte el ejemplo del comando [GET MENU ITEMS](get-menu-items.md "GET MENU ITE #### Ver también -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 979 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md index 13550fc8cd0946..f1569d9a163027 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET MENU ITEM ICON devuelve, en la variable *refIcono*, la referencia del icono asociado a la línea de menú designada por los parámetros *menu* y *menuItem*. Esta referencia es el nombre o número de la imagen en la librería de imágenes. @@ -35,4 +32,13 @@ Si ningún icono está asociado a la línea de menú, el comando devuelve un val #### Ver también -[SET MENU ITEM ICON](set-menu-item-icon.md) \ No newline at end of file +[SET MENU ITEM ICON](set-menu-item-icon.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 983 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md index 8cca8b2dc9d804..5fa917f9038e65 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item key devuelve el código del atajo **Ctrl** (Windows) o **Comando** (Mac OS) para el comando de menú cuyo número o referencia de menú se pasa en *menu* y cuyo número de comando se pasa en *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu.* @@ -50,4 +47,14 @@ Para obtener un atajo asociado con un comando de menú, es útil implementar una #### Ver también [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 424 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md index b21e3688467cf0..ad685045485b5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item mark devuelve la marca de la línea de menú cuyo número o referencia de menú y número de línea se pasan en *menu* y *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu.* @@ -41,4 +38,14 @@ El siguiente ejemplo invierte la marca de una línea de menú: #### Ver también -[SET MENU ITEM MARK](set-menu-item-mark.md) \ No newline at end of file +[SET MENU ITEM MARK](set-menu-item-mark.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 428 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md index 6daa21c8261b2a..540b3e13022f9d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item method devuelve el nombre del método de proyecto 4D asociado a la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -31,4 +28,13 @@ El comando devuelve el nombre del método 4D como una cadena de caracteres (expr #### Ver también -[SET MENU ITEM METHOD](set-menu-item-method.md) \ No newline at end of file +[SET MENU ITEM METHOD](set-menu-item-method.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 981 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md index 2c3a05ef750217..204dbed812bc4b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item modifiers devuelve los modificadores adicionales asociados a los atajos de teclado estándar de la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -53,4 +50,13 @@ Consulte el ejemplo del comando [Get menu item key](get-menu-item-key.md "Get me #### Ver también [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 980 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md index 6c5fed933190ca..772a1531a8cf04 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item parameter devuelve la cadena de caracteres personalizada asociada a la línea de menú designada por los parámetros *menu* y *lineaMenu*. Esta cadena debe haber sido definida previamente utilizando el comando [SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER"). @@ -26,4 +23,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get selected menu item parameter](get-selected-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1003 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md index 6166f961a1994f..ab304852bdc9d4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET MENU ITEM PROPERTY** devuelve, en el parámetro *valor*, el valor actual de la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -34,4 +31,13 @@ En el parámetro *propiedad*, pase la propiedad para la cual quiere obtener el v #### Ver también -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 972 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md index 816a0a8b623239..e7e709e162cd91 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item style devuelve el estilo de fuente de la línea de menú cuyo número o referencia se pasa en *menu* y cuyo número de elemento se pasa en *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu.* @@ -48,4 +45,14 @@ Para probar si un elemento de menú se muestra en negrita, escribe: #### Ver también -[SET MENU ITEM STYLE](set-menu-item-style.md) \ No newline at end of file +[SET MENU ITEM STYLE](set-menu-item-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 426 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md index 751e24d08fe2db..aa7fea8d8a9b5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu item devuelve el texto del comando de menú cuyos números de menú y de comando se pasan en *menu* y *menuItem*. Puede pasar -1 en *menuItem* para indicar el último elemento añadido a *menu*. @@ -30,4 +27,14 @@ Si omite el parámetro *proceso*, Get menu item se aplica a la barra de menús d #### Ver también [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM](set-menu-item.md) \ No newline at end of file +[SET MENU ITEM](set-menu-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 422 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md index aab488e834f4ee..6dc61f8b0e26ad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET MENU ITEMS devuelve, en los arrays *arrayTitMenus* y *arraysRefMenus*, los títulos e identificadores de todas las líneas de menú o de la barra de menús designada por el parámetro *menu*. @@ -36,3 +33,13 @@ Usted quiere conocer el contenido de la barra de menú del proceso actual:  RefBarMenu:=Get menu bar reference(Frontmost process)  GET MENU ITEMS(RefBarMenu;arrayTitMenus;arraysRefMenus) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 977 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md index 86241383151048..2450d65bdd3807 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get menu title devuelve el título del menú cuyo número o referencia se pasa en *menu.* @@ -28,4 +25,14 @@ Si omite el parámetro *proceso*, Get menu title se aplica a la barra de menús #### Ver también -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 430 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md index cf284867f84aba..d7b79b1550f04c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md @@ -32,4 +32,13 @@ Una vez haya identificado las tablas faltantes de la base, puede reactivarlas v #### Ver también -[REGENERATE MISSING TABLE](regenerate-missing-table.md) \ No newline at end of file +[REGENERATE MISSING TABLE](regenerate-missing-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1125 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md index 86cf61415d3574..0fa70792c4303d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PASTEBOARD DATA TYPE permite obtener la lista de los tipos de datos presentes en el portapapeles. Este comando generalmente debe ser utilizado en el contexto de una operación arrastrar y soltar, en los eventos de formulario On Drop o On Drag Over del objeto de destino. Más particularmente, permite verificar la presencia de un tipo de datos específico en el portapapeles. @@ -39,4 +36,13 @@ Para mayor información sobre los tipos de datos soportados, consulte la secció #### Ver también -*Gestión de portapapeles* \ No newline at end of file +*Gestión de portapapeles* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 958 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md index 91058b71e3f9d9..489d78c42d398c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PASTEBOARD DATA devuelve en el campo o variable de tipo BLOB *datos* que se encuentran en el portapapeles y cuyo tipo se pasa en *tipoDatos*. (Si el portapapeles contiene texto copiado en 4D, entonces el conjunto de caracteres del BLOB será probablemente UTF-16.) @@ -55,4 +52,14 @@ Si los datos se extraen correctamente, la variable OK toma el valor 1; de lo con [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 401 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md index 51950d6d3f8632..50079ebf9870f1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md @@ -24,4 +24,13 @@ Si la imagen no tienen un nombre por defecto, el comando devuelve una cadena vac #### Ver también -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1171 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md index 8b0b0fa2a4701c..e0f7a9a9ededc0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md @@ -47,4 +47,13 @@ Usted quiere saber los formatos de imagen almacenados en un campo para el regist #### Ver también - \ No newline at end of file + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1406 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md index 87caea43b55d39..ab65d4f6a4d2e1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PICTURE FROM LIBRARY devuelve en el parámetro *imagen* la imagen de la librería de imágenes cuyo número de referencia se pasa en *refImag* o cuyo nombre se pasa en *nomImag*. @@ -55,4 +52,14 @@ Si no hay suficiente memoria para devolver la imagen, se genera el error -108\. [PICTURE LIBRARY LIST](picture-library-list.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 565 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md index 2c4e7db1200632..c46ae5f938e706 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción GET PICTURE FROM PASTEBOARD devuelve la imagen presente en el portapapeles en el campo o variable imagen *imagen*. @@ -42,4 +39,14 @@ Si la imagen se extrae correctamente, OK toma el valor 1; de lo contrario OK tom [GET PASTEBOARD DATA](get-pasteboard-data.md) [Get text from pasteboard](get-text-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 522 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md index 98e77c429ae4c4..3e7639d0326e06 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md @@ -32,4 +32,13 @@ Si la imagen no contiene palabras claves o metadatos IPTC/Keywords, el comando d #### Ver también [GET PICTURE METADATA](get-picture-metadata.md) -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1142 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md index 1208733af5355d..0a565e6a0679d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md @@ -99,4 +99,14 @@ La variable sistema *OK* devuelve 1 si la recuperación de los metadatos es corr [GET PICTURE KEYWORDS](get-picture-keywords.md) *Nombres de metadatos imágenes* *Picture Metadata Values* -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1122 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md index 3737e930235824..53e33359ed4945 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PICTURE RESOURCE devuelve en el campo o en la variable *resDatos* la imagen guardada en el recurso imagen (“PICT”) cuyo número se pasa en *resNum*. @@ -43,4 +40,14 @@ Si no hay suficiente memoria para cargar la imagen, se genera un error. Puede in #### Ver también -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 502 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md index 76f3a22f27ebaa..99cf28aafd041e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get plugin access devuelve el nombre del grupo de usuarios autorizados a utilizar el plug-in cuyo número se pasa en el parámetro *plugIn*. Si ningún grupo está asociado al plug-in, el comando devuelve una cadena vacía (""). @@ -35,4 +32,13 @@ Pase en el parámetro *plugIn* el número del plug-in del que quiere conocer el #### Ver también [SET GROUP ACCESS](set-group-access.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 846 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md index 0a904573c2606a..ac819720268873 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md @@ -49,4 +49,13 @@ Utilizar punteros a elementos de arrays de dos dimensiones: #### Ver también [Field](field.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 304 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md index 70c9ecb4470a8b..398fc4007da092 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get print marker permite obtener la posición actual de un marcador durante una impresión. @@ -63,4 +60,13 @@ Consulte el ejemplo del comando [SET PRINT MARKER](set-print-marker.md "SET PRIN #### Ver también [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 708 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md index 03795aba26ef86..22739f6a0d6bc3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET PRINT OPTION** devuelve los valores actuales de una opción de impresión. @@ -51,4 +48,14 @@ La variable sistema OK toma el valor 1 si el comando ha sido ejecutado correctam #### Ver también [PRINT OPTION VALUES](print-option-values.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 734 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md index 3167813bf120fa..660d5155864282 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get print preview** devuelve True si el comando [SET PRINT PREVIEW](set-print-preview.md) se llamó con el valor **True** en el proceso actual. @@ -25,4 +22,13 @@ Note que el usuario puede modificar esta opción antes de validar la caja de di #### Ver también [Is in print preview](is-in-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1197 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md index ec56d61a44aaef..3e9981b47cd55f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PRINTABLE AREA devuelve el tamaño en píxeles del área de impresión en los parámetros *altura* y *largo* el tamaño. Este tamaño depende de los parámetros de impresión actuales, la orientación del papel, etc. @@ -40,4 +37,13 @@ Para saber el tamaño total de la página, puede: #### Ver también [GET PRINTABLE MARGIN](get-printable-margin.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 703 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md index 7b20e9e464de0a..cefb94ea4f9d0c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PRINTABLE MARGIN devuelve los valores actuales de los diferentes márgenes definidos utilizando los comandos [Print form](print-form.md), [PRINT SELECTION](print-selection.md) y [PRINT RECORD](print-record.md). @@ -45,4 +42,13 @@ Es posible basar la impresión de los formularios efectuados utilizando los coma [GET PRINTABLE AREA](get-printable-area.md) [Print form](print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 711 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md index 144b5383acbaac..5efeed2835cbd2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get printed height devuelve la altura global (en píxeles) de la sección impresa por el comando [Print form](print-form.md "Print form"). @@ -32,4 +29,13 @@ Los márgenes de impresión derecha e izquierda no influyen en el valor devuelto [GET PRINTABLE AREA](get-printable-area.md) [Print form](print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 702 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md index 60dfef8df93fd5..372b1096fffbb1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET PROCESS VARIABLE lee el valor de las variables proceso *srcVar* (*srvVar2*, etc.) desde el proceso fuente cuyo número se pasa en *proceso* y devuelve sus valores actuales en las variables *dstVar* (*dstVar2*, etc.) del proceso actual. @@ -119,4 +116,13 @@ Ver el ejemplo del comando DRAG AND DROP PROPERTIES. [POST OUTSIDE CALL](post-outside-call.md) *Procesos* [SET PROCESS VARIABLE](set-process-variable.md) -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 371 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md index 2e4ddfdb9166b6..23e727c79b6817 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md @@ -55,4 +55,13 @@ Queremos modificar temporalmente el destino de búsqueda y restablecer los pará #### Ver también -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1155 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md index 38f9f5db858bde..964597aea24cc7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md @@ -23,4 +23,13 @@ Por defecto, si ningún límite se ha definido, el comando devuelve 0. #### Ver también -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1156 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md index 26799c775c95f3..950378ae100e5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET REGISTERED CLIENTS llena dos arrays: @@ -48,4 +45,14 @@ Si la operación se realiza correctemente, la variable sistema OK toma el valor [EXECUTE ON CLIENT](execute-on-client.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 650 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md index 2fbb60317f3750..a2c88ea435a541 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md @@ -42,4 +42,13 @@ Una se haya ejecutado el comando: [GET FIELD PROPERTIES](get-field-properties.md) [GET TABLE PROPERTIES](get-table-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 686 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md index 476a8c418075f7..28aec49f9153dc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get resource name devuelve el nombre del recurso cuyo tipo se pasa en *resTipo* y cuyo número de referencia (ID) en *resNum*. @@ -26,3 +23,13 @@ displayed_sidebar: docs Si pasa un número de referencia de archivo de recursos en el parámetro *resArchivo*, el recurso se busca en ese archivo únicamente. Si no pasa *resArchivo*, el archivo se busca en los archivos de recursos abiertos. Si el recurso no existe, Get resource name devuelve una cadena vacía. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 513 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md index 846a2c73f933fd..03574b6a422133 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Get resource properties** devuelve los atributos del recurso cuyo tipo se pasa en *resTipo* y cuyo número de identificación se pasa en *resNum*. @@ -36,3 +33,14 @@ Ver el ejemplo del comando [Get resource name](get-resource-name.md). #### Variables y conjuntos del sistema La variable sistema OK toma el valor 0 si el recurso no existe, de lo contrario toma el valor 1. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 515 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md index 6bb0e8b0e0cdfa..48977370741a0c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET RESOURCE devuelve en el campo o la variable BLOB *resDatos* el contenido del recurso cuyo tipo y número se pasa en *resTipo* y *resNum*. @@ -50,4 +47,14 @@ Si no hay suficiente memoria para cargar la imagen, se genera un error. Puede in #### Ver también -*Recursos* \ No newline at end of file +*Recursos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 508 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md index 5cf7cb2cb0141b..b85a81bc0f6182 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get selected menu item parameter devuelve la cadena de caracteres personalizada asociada a la línea de menú seleccionada. Este parámetro deber haber sido definido de antemano utilizando el comando [SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER"). @@ -25,4 +22,13 @@ Si ninguna línea de menú ha sido seleccionada, el comando devuelve una cadena [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1005 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md index 4e12bb19c8aac9..6aeb4db40521fb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md @@ -48,4 +48,13 @@ Este método de proyecto puede utilizarse para direccionar el mismo puerto seria #### Ver también -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 909 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md index e72d2b6eed2f6d..449f1c61d2e940 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get string resource devuelve la cadena almacenada en el recurso cadena (“STR ”) cuyo número de referencia se pasa en *resNum*. @@ -44,4 +41,14 @@ La variable sistema OK toma el valor 1 si se encuentra el recurso, de lo contrar [Get indexed string](get-indexed-string.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 506 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md index 53ca3b93ff1275..840a939da70359 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET STYLE SHEET INFO** devuelve la configuración actual de la hoja de estilo *nomHojaEstilo* . @@ -66,4 +63,14 @@ Si quiere conocer la configuración actual de la hoja de estilo "Automatic" #### Ver también [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1256 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md index c11f0ae938a15b..42b4a2c2766c8e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando [Get subrecord key](get-subrecord-key.md) facilita la migración del código 4D utilizando subtablas convertidas al código estándar de manipulación de tablas. - -**Recordatorio:** a partir de la versión 11 de 4D, no se soportan subtablas. Cuando se convierte una base antigua, las subtablas existentes se transforman automáticamente en tablas estándar relacionadas con las tablas originales por una relación automática. La subtabla anterior se convierte en la tabla Muchos y la tabla original es la tabla Uno. En la tabla Uno, el campo subtabla anterior se transforma en un campo especial de tipo "Relación subtabla" y en la tabla Muchos, se añade un campo especial, de tipo "Relación subtabla", llamado "id\_anadido\_por\_convertidor". +El comando [Get subrecord key](get-subrecord-key.md) facilita la migración del código 4D utilizando subtablas convertidas al código estándar de manipulación de tablas.a partir de la versión 11 de 4D, no se soportan subtablas. Cuando se convierte una base antigua, las subtablas existentes se transforman automáticamente en tablas estándar relacionadas con las tablas originales por una relación automática. La subtabla anterior se convierte en la tabla Muchos y la tabla original es la tabla Uno. En la tabla Uno, el campo subtabla anterior se transforma en un campo especial de tipo "Relación subtabla" y en la tabla Muchos, se añade un campo especial, de tipo "Relación subtabla", llamado "id\_anadido\_por\_convertidor". Esto permite preservar el funcionamiento de bases de datos convertidas, pero le recomendamos que sustituya los mecanismos de subtablas en sus bases por los que se utilizan para las tablas estándar. @@ -80,3 +78,13 @@ Por ejemplo, con la estructura anterior puede escribir: ``` Este código funcionará tanto con una relación especial como con una estándar. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1137 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md index ce2a59e9376738..38d171c5a74334 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md @@ -41,4 +41,13 @@ En el parámetro *formato*, pase el tipo del parámetro del que quiere conocer e #### Ver también -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 994 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md index 8dbc0176acf3e1..edc5f960616ea7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md @@ -33,4 +33,13 @@ Una vez ejecutado el comando: [GET FIELD ENTRY PROPERTIES](get-field-entry-properties.md) [GET FIELD PROPERTIES](get-field-properties.md) -[GET RELATION PROPERTIES](get-relation-properties.md) \ No newline at end of file +[GET RELATION PROPERTIES](get-relation-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 687 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md index 28cc3df8569900..9456400e0ed2df 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GET TABLE TITLES llena los arrays *titTablas* y *numTablas* con los nombres y números de las tablas de la base definidas en la ventana de estructura o vía el comando [SET TABLE TITLES](set-table-titles.md "SET TABLE TITLES"). El contenido de estos dos arrays está sincronizado. @@ -30,4 +27,13 @@ En ambos casos, el comando no devuelve las tablas invisibles. #### Ver también [GET FIELD TITLES](get-field-titles.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 803 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md index 8ce4b6496c4484..a3e131e83a8ea0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Get text from pasteboard devuelve el texto en el portapapeles. @@ -34,4 +31,14 @@ Si el texto se extrae correctamente, OK toma el valor 1; de lo contrario OK toma [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 524 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md index 2edb3697b0566a..4e07d581574448 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md @@ -82,4 +82,13 @@ Para contar las palabras de un texto: #### Ver también -[DISTINCT VALUES](distinct-values.md) \ No newline at end of file +[DISTINCT VALUES](distinct-values.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1141 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md index 415db898b193c2..9a4d956730efee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get text resource devuelve el texto guardado en el recurso texto (“TEXT”) cuyo número de identificación se pasa en *resNum*. @@ -44,4 +41,14 @@ Si se encuentra el recurso, OK toma el valor 1\. De lo contrario, toma el valor [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 504 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md index e57bca32ead2e6..d77030493b2d39 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción GET USER LIST llena los arrays *nomsUsuario* y *refUsuario* con los nombres y los números de referencia únicos de los usuarios tal como aparecen en la ventana de contraseñas. @@ -37,4 +34,14 @@ Si no tiene privilegios de acceso para llamar al comando GET USER LIST o si otro [GET GROUP LIST](get-group-list.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 609 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md index 654984d26cf696..fdcdc2dce8df92 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **GET USER PROPERTIES** devuelve la información sobre el usuario cuyo número de referencia se pasa en el parámetro *refUsuario*. Debe pasar un número de referencia de usuario devuelto por el comando [GET USER LIST](get-user-list.md). @@ -54,4 +51,14 @@ Si no tiene privilegios de acceso para llamar al comando GET USER PROPERTIES o s [GET USER LIST](get-user-list.md) [Is user deleted](is-user-deleted.md) [Set user properties](set-user-properties.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 611 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md index df1c876d1c7115..4f15e8791592d9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **GET WINDOW RECT** devuelve las coordenadas globales de la ventana cuyo número de referencia se pasa en *ventana*. Si la ventana no existe, las variables de los parámetros no cambian. @@ -37,4 +34,13 @@ Ver el ejemplo del comando [WINDOW LIST](window-list.md "WINDOW LIST"). #### Ver también [CONVERT COORDINATES](convert-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 443 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md index c60243242fc7f8..e3a8bf0b22f624 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Get window title devuelve el título de la ventana cuyo número de referencia se pasa en *ventana*. Si la ventana no existe, se devuelve una cadena vacía. @@ -29,4 +26,13 @@ Ver ejemplo del comando [SET WINDOW TITLE](set-window-title.md "SET WINDOW TITLE #### Ver también -[SET WINDOW TITLE](set-window-title.md) \ No newline at end of file +[SET WINDOW TITLE](set-window-title.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 450 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md index c04d35d48d6348..9975f02897defc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GOTO OBJECT se utiliza para seleccionar el objeto editable *objeto* como el área activa del formulario. Es equivalente de un clic del usuario en el área o de utilizar la tecla Tab para seleccionar el campo o la variable. @@ -51,4 +48,13 @@ Ver el ejemplo del comando [REJECT](reject.md "REJECT"). #### Ver también [CALL SUBFORM CONTAINER](call-subform-container.md) -[REJECT](reject.md) \ No newline at end of file +[REJECT](reject.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 206 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md index 89d5bc799ee59b..e7bc6338e130dd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md @@ -27,4 +27,15 @@ Ver el ejemplo para Record Number. #### Ver también *Acerca de números de registros* -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 242 | +| Hilo seguro | ✓ | +| Modifica variables | error | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md index b08503143d3ac1..0ed2ef7c8753c9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md @@ -60,4 +60,14 @@ El siguiente método de objeto del área desplegable *atNames* selecciona el reg #### Ver también -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 245 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md index 80630075ed915a..b7da9b4b423351 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando GOTO XY se utiliza conjuntamente con el comando [MESSAGE](message.md "MESSAGE") cuando usted muestra mensajes en una ventana abierta por el comando [Open window](open-window.md "Open window"). @@ -60,4 +57,13 @@ Muestra la siguiente ventana (en Macintosh) por 30 segundos: #### Ver también -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 161 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md index f50b280eab9bfe..b77e7c6939259a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción GRAPH SETTINGS permite cambiar los parámetros de los gráficos mostrados en un formulario. El gráfico debe haber sido definido con el comando [GRAPH](graph.md). GRAPH SETTINGS no tiene efecto en un gráfico de tipo sectores. Este comando debe llamarse obligatoriamente en el mismo proceso que el formulario. @@ -44,4 +41,13 @@ Ver el ejemplo del comando [GRAPH](graph.md "GRAPH"). #### Ver también -[GRAPH](graph.md) \ No newline at end of file +[GRAPH](graph.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 298 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md index ae3aa727fa24af..04499b88581ce1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md @@ -282,4 +282,13 @@ En este ejemplo, personalizamos algunos parámetros: [GRAPH SETTINGS](graph-settings.md) *Parámetros Gráficos* -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 169 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md index 3097641b66c586..54dd61dc2f16a1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando HIDE MENU BAR vuelve invisible la barra de menús. @@ -45,4 +42,14 @@ El siguiente método muestra un registro en toda la pantalla (Macintosh) hasta q [HIDE TOOL BAR](hide-tool-bar.md) [SHOW MENU BAR](show-menu-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 432 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md index 8376ef7b2dea68..090c903b42ec51 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción HIDE PROCESS oculta todas las ventanas que pertenecen a *proceso*. Todos los elementos de interfaz de *proceso* se ocultan hasta el siguiente [SHOW PROCESS](show-process.md "SHOW PROCESS"). La barra de menús del proceso también se oculta. Esto significa que la apertura de una ventana mientras el proceso está oculto no provocará ningún cambio en la visualización en pantalla. Si el proceso ya está oculto, el comando no tiene ningún efecto. @@ -37,4 +34,13 @@ El siguiente ejemplo oculta todas las ventanas que pertenecen al proceso actual: #### Ver también [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 324 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md index 56aed83963ca12..1ed6a3409701f4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **HIDE TOOL BAR** maneja la visualización de las barras de herramientas personalizadas creadas por el comando [Open form window](open-form-window.md) para el proceso actual. @@ -41,4 +38,13 @@ Para evitar esto, en el evento formulario On Resize de la ventana estándar, es #### Ver también -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 434 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md index dcd5d35a26d98c..141a0505b63de1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando HIDE WINDOW permite ocultar la ventana cuyo número de referencia se pasa en *ventana* o, si se omite este parámetro, la ventana del primer plano del proceso actual. Este comando permite, por ejemplo, en un proceso con varias ventanas, mostrar únicamente la ventana activa. @@ -47,4 +44,13 @@ Este ejemplo corresponde a un método de un botón ubicado en un formulario de e #### Ver también -[SHOW WINDOW](show-window.md) \ No newline at end of file +[SHOW WINDOW](show-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 436 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md index 7fd109ca1befbb..2a939ef2c7f491 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando HIGHLIGHT RECORDS permite seleccionar registros en un formulario listado. Esta operación es idéntica a la selección de registros manual en modo listado utilizando el ratón o las combinaciones de teclado **Mayús+Clic** o **Ctrl+Clic** (Windows) o **comando+Clic** (Mac OS). La selección actual no se modifica. @@ -49,4 +46,13 @@ Cuando el usuario hace clic en el botón, aparece la caja de diálogo estándar #### Ver también [GET HIGHLIGHTED RECORDS](get-highlighted-records.md) -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 656 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md index 684b0ae01f97b9..125e86a66b6930 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando HIGHLIGHT TEXT selecciona una parte de texto en *objeto*. @@ -63,4 +60,13 @@ Ver el ejemplo del comando [FILTER KEYSTROKE](filter-keystroke.md "FILTER KEYSTR #### Ver también -[GET HIGHLIGHT](get-highlight.md) \ No newline at end of file +[GET HIGHLIGHT](get-highlight.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 210 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md index f7cba2f4111270..a3488105d811c4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md @@ -56,4 +56,13 @@ Ejemplos de peticiones con autenticación: #### Ver también -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1161 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md index a889878939f000..a514f859ae460a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md @@ -37,4 +37,13 @@ Usted quiere cambiar temporalmente la carpeta de certificados: #### Ver también -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1307 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md index 108a0690cc978e..a01596693354e5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md @@ -42,4 +42,13 @@ En el parámetro *valor*, pase una variable para recibir el valor actual de la * #### Ver también -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1159 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md index 0cd1b91d400794..95d9b3fc3c82e5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md @@ -104,4 +104,14 @@ Recuperación de un vídeo: #### Ver también -[HTTP Request](http-request.md) \ No newline at end of file +[HTTP Request](http-request.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1157 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md index 2a0cf92f90b17b..ef8efc5cc7cdb7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md @@ -14,9 +14,16 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción La documentación de este comando está disponible en [developer.4d.com.](https://developer.4d.com/docs/API/HTTPRequestClass#http-parse-messege) + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1824 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md index 703532435a503c..b72c5bac249abe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md @@ -124,4 +124,13 @@ Petición para añadir un registro en JSON a una base remota: #### Ver también -[HTTP Get](http-get.md) \ No newline at end of file +[HTTP Get](http-get.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1158 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md index b38cb23d9ab33f..6712905f7c002f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md @@ -55,4 +55,13 @@ Usted quiere cambiar temporalmente la carpeta de certificados: #### Ver también [GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) -[HTTP Get certificates folder](http-get-certificates-folder.md) \ No newline at end of file +[HTTP Get certificates folder](http-get-certificates-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1306 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md index d8fadc0d1b9714..cbf583611d3ce4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md @@ -44,4 +44,13 @@ El orden de llamada de las opciones no tiene importancia. Si la misma opción se #### Ver también [HTTP AUTHENTICATE](http-authenticate.md) -[HTTP GET OPTION](http-get-option.md) \ No newline at end of file +[HTTP GET OPTION](http-get-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1160 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md index 0dc07435f51897..86836344564023 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md @@ -50,4 +50,13 @@ con: #### Ver también *Comandos del Compilador* -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 311 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md index 1c09fdab8cf958..9f7c46e4968a2e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md @@ -45,4 +45,14 @@ Si el usuario hace clic en **Cancelar** en la caja de diálogo estándar de guar [EXPORT DATA](export-data.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[IMPORT TEXT](import-text.md) \ No newline at end of file +[IMPORT TEXT](import-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 665 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md index 07bf6eb73d910a..9332ee374cdcb7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando IMPORT DIF lee datos de *documento*, un documento DIF Windows o Macintosh y los escribe en *tabla* creando nuevos registros para esa tabla. @@ -53,4 +50,14 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma [EXPORT DIF](export-dif.md) [IMPORT SYLK](import-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 86 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md index 35bb79dc5df566..a9d400c1ab2ffe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **IMPORT STRUCTURE** importa, en la base actual, la definición XML de la estructura de la base 4D pasada en el parámetro *estructuraXML*. @@ -49,4 +46,13 @@ Usted desea importar una definición de estructura guardada en la base actual: #### Ver también -[EXPORT STRUCTURE](export-structure.md) \ No newline at end of file +[EXPORT STRUCTURE](export-structure.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1310 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md index 1ae83a936dd2a7..99da710a2c5804 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando IMPORT SYLK lee los datos de *documento*, un documento SYLK Windows o Macintosh, y los escribe en *tabla* creando nuevos registros. @@ -53,4 +50,14 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma [EXPORT SYLK](export-sylk.md) [IMPORT DIF](import-dif.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 87 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md index 5296c68924b07b..1cc09d604d3673 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando IMPORT TEXT lee los datos de *documento*, un documento texto Windows o Macintosh, y los escribe en *tabla* creando nuevos registros para esa tabla. @@ -55,4 +52,14 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 168 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md index ca321e8d3f29e1..1614606c8a9cc3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **In break** devuelve True para el ciclo de ejecución In break. @@ -27,4 +24,13 @@ Para que se genere el ciclo de ejecución **In break** asegúrese de que la prop #### Ver también [In footer](in-footer.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 113 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md index 55f957f8fe87f4..f49a481efc0384 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **In footer** devuelve True para el ciclo de ejecución In footer. @@ -27,4 +24,13 @@ Para que se genere el ciclo de ejecución **In footer** asegúrese de que la pro #### Ver también [In break](in-break.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 191 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md index 1a340fbbcd11cd..d0d6104d266bcf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **In header** devuelve True para el ciclo de ejecución In header. @@ -27,4 +24,13 @@ Para que se genere el ciclo de ejecución **In header**, asegúrese de que la pr #### Ver también [In break](in-break.md) -[In footer](in-footer.md) \ No newline at end of file +[In footer](in-footer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 112 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md index 1365ef47803e9c..1e085f4669e467 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md @@ -29,4 +29,13 @@ Si efectúa la operación desde un trigger o una subrutina que puede ser llamado [CANCEL TRANSACTION](cancel-transaction.md) [START TRANSACTION](start-transaction.md) *Triggers* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 397 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md index 69b1d41c78f9ec..39d622260ef480 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md @@ -44,4 +44,13 @@ El siguiente ejemplo añade un elemento a un array: #### Ver también [DELETE FROM ARRAY](delete-from-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 227 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md index e4348b062d15e0..3e0cc1c62ebdb8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md @@ -30,4 +30,13 @@ Antes de llamar el comando, pase en la variable del parámetro *offset* la posic #### Ver también -[DELETE FROM BLOB](delete-from-blob.md) \ No newline at end of file +[DELETE FROM BLOB](delete-from-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 559 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md index a98e5fe8fa7f2b..c3acff29054ddd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando INSERT IN LIST inserta el elemento designado por el parámetro *refElem* en la lista cuyo número de referencia se pasa en *lista*. @@ -50,4 +47,13 @@ El siguiente código inserta un elemento (sin sublista asociada) justo antes del #### Ver también [APPEND TO LIST](append-to-list.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 625 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md index 1203e8650ab1f0..5acee874ba662d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **INSERT MENU ITEM** inserta nuevas líneas en el menú cuyo número o referencia se pasa en *menu* y las ubica después de la línea de menú cuyo número se pasa en *despuesItem*. @@ -56,4 +53,14 @@ El siguiente ejemplo crea un menú que consiste en dos comandos los cuales asign #### Ver también [APPEND MENU ITEM](append-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 412 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md index dffaf0928dc333..4686f5c2cce888 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md @@ -40,4 +40,13 @@ El siguiente ejemplo ilustra el uso de Insert string. Los resultados se asignan [Change string](change-string.md) [Delete string](delete-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 231 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md index 359bc0b97137b9..3393222c1e0ce7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md @@ -29,4 +29,13 @@ El siguiente ejemplo ilustra el funcionamiento de Int para números positivos y #### Ver también -[Dec](dec.md) \ No newline at end of file +[Dec](dec.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 8 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md index a7b0c04cf1ecb2..f2fdc27f8b3742 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md @@ -113,4 +113,13 @@ Después de la ejecución de este código: [BLOB to text](blob-to-text.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 548 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md index 552f8e5fd17697..ea02be5d2a35ec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md @@ -101,4 +101,14 @@ Si la integración se efectúa correctamente, la variable sistema OK toma el val #### Ver también -[LOG FILE TO JSON](log-file-to-json.md) \ No newline at end of file +[LOG FILE TO JSON](log-file-to-json.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1312 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md index 9f3e557785803e..2493570345bcc5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md @@ -48,4 +48,13 @@ El siguiente ejemplo busca los clientes que son atendidos por dos representantes #### Ver también [DIFFERENCE](difference.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 121 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md index 08220b8213359e..26430de1af4baf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **INVOKE ACTION** activa la acción estándar definida por el parámetro accion, opcionalmente en el contexto objetivo. @@ -65,4 +62,13 @@ Usted desea ejecutar una acción estándar **Goto page** (página 3) en el formu #### Ver también -[Action info](action-info.md) \ No newline at end of file +[Action info](action-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1439 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md index dd8b5972aaf4ab..32c30df4cfc94d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Is a list devuelve TRUE si el valor pasado en *lista* es una referencia válida a una lista jerárquica. De lo contrario, devuelve FALSE. @@ -29,3 +26,13 @@ Ver el ejemplo del comando [CLEAR LIST](clear-list.md "CLEAR LIST"). Ver los ejemplos del comando DRAG AND DROP PROPERTIES. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 621 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md index 292962bee16cbc..9bd805a6ede6dd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md @@ -23,4 +23,13 @@ Si quiere conocer el nombre de la variable que está siendo apuntada o el númer #### Ver también [Is nil pointer](is-nil-pointer.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 294 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md index 535fc73ed34feb..7329d727d9b728 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md @@ -43,4 +43,13 @@ En una de sus rutinas, usted incluyó el código de depuración de la base, úti #### Ver también [IDLE](idle.md) -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 492 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md index 0013d08c68d151..66e093f02e9c43 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md @@ -29,3 +29,13 @@ Este método evitará la apertura de la base si el archivo de datos está bloque     QUIT 4D  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 716 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md index 60816168ae3824..a8aa27ada8dbac 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Is editing text** devuelve **True** si el usuario está ingresando valores en un objeto de formulario de entrada, y **False** en todos los demás casos. @@ -60,4 +57,13 @@ Desea permitir que el usuario seleccione una línea que comience con la letra o [FILTER KEYSTROKE](filter-keystroke.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1744 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md index e73d2ff11bff7c..b5233ccbca6a71 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md @@ -24,4 +24,13 @@ Este comando permite detectar las eventuales eliminaciones de campos, que crean #### Ver también [Last table number](last-table-number.md) -[Is table number valid](is-table-number-valid.md) \ No newline at end of file +[Is table number valid](is-table-number-valid.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1000 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md index 66fc2308656457..80ce69a94fa9eb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md @@ -27,4 +27,13 @@ El valor devuelto por este comando sólo tiene sentido si la opción "*Mapear va #### Ver también [Null](null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 964 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md index 240e9cb0b5f786..04675681e88294 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Is in print preview** devuelve True si la opción **Vista previa de impresión** está seleccionada en la caja de diálogo de impresión y False de lo contrario. Esta configuración es local al proceso. @@ -46,4 +43,13 @@ Este ejemplo permite tener en cuenta todos los tipos de impresiones: #### Ver también [Get print preview](get-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1198 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md index bab29c35e6ef25..b2ac0c89f44d3b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md @@ -33,4 +33,13 @@ El siguiente ejemplo es un método de objeto de un botón que prueba si el regis #### Ver también [ADD TO SET](add-to-set.md) -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 273 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md index 7e97c1095745bb..f989b654a67563 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Is license available le permite conocer la disponibilidad de un plug-in. Es útil, por ejemplo, para mostrar u ocultar funciones que necesitan de la presencia de un plug-in. @@ -48,4 +45,13 @@ Is license available devuelve [False](false.md "False") si el plug-in está func [License info](license-info.md) [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 714 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md index 10b8807fb4f0ea..a1d98f131b9ff1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md @@ -32,4 +32,13 @@ Usted desea determinar si el sistema operativo actual es macOS: #### Ver también [System info](system-info.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1572 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md index 9c505465139907..a1ae7a50b0fc98 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Is new record devuelve [True](true.md "True") cuando el registro actual de *tabla* está siendo creado y aún no ha sido guardado en el proceso actual. - -**Nota de compatibilidad:** es posible obtener la misma información utilizando el comando existente [Record Number](record-number.md "Record Number"), y probando si devuelve -3\. Sin embargo, recomendamos utilizar Is new record en lugar de [Record Number](record-number.md "Record Number") en este caso. De hecho, el comando Is new record asegura una mejor compatibilidad con las futuras versiones de 4D. +El comando Is new record devuelve [True](true.md "True") cuando el registro actual de *tabla* está siendo creado y aún no ha sido guardado en el proceso actual.es posible obtener la misma información utilizando el comando existente [Record Number](record-number.md "Record Number"), y probando si devuelve -3\. Sin embargo, recomendamos utilizar Is new record en lugar de [Record Number](record-number.md "Record Number") en este caso. De hecho, el comando Is new record asegura una mejor compatibilidad con las futuras versiones de 4D. **4D Server:** este comando devuelve un resultado diferente en el contexto del evento de formulario On Validate dependiendo de si se ejecuta en 4D (monopuesto) o 4D Client. En versión monopuesto, el comando devuelve [False](false.md "False") (el registro se considera como creado). En versión cliente/servidor, el comando devuelve [True](true.md "True") porque en este caso, el registro ya ha sido creado en el servidor pero la información no ha sido enviada aún al cliente. @@ -39,4 +37,13 @@ Las dos siguientes instrucciones siguientes son idénticas. La segunda se recomi #### Ver también [Modified record](modified-record.md) -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 668 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md index a473baefffa817..83c9be5f9ca279 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md @@ -35,4 +35,13 @@ Si quiere conocer el nombre de la variable apuntada o el número del campo, pued #### Ver también [Is a variable](is-a-variable.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 315 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md index fc671f5bc9aaf8..df6c2e70a5c465 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md @@ -27,4 +27,13 @@ Si no pasa el parámetro *\**, el comando prueba el archivo buscando su extensi #### Ver también -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1113 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md index 3d035e98d70f85..4e6f85c84c9bcb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Is record loaded devuelve True si si el registro actual de *tabla* se carga en el proceso actual. - -**4D Server**: en principio, cuando las tablas están relacionadas por relaciones automáticas, los registros actuales de las tablas relacionadas se cargan automáticamente (ver *Relaciones*). Sin embargo, por razones de optimización, 4D Server sólo carga estos registros cuando es necesario, por ejemplo al leer o asignar un campo del registro relacionado. Como resultado, en este contexto, el comando **Is record loaded** devolverá False en modo remoto (devuelve True en modo local). +El comando Is record loaded devuelve True si si el registro actual de *tabla* se carga en el proceso actual.devolverá False en modo remoto (devuelve True en modo local). #### Ejemplo @@ -43,3 +41,13 @@ En lugar de utilizar las acciones automáticas “Siguiente registro” o “Reg     End if  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 669 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md index 199fac1e3d93ca..c33537b3256359 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md @@ -23,4 +23,13 @@ Este comando permite detectar las eventuales eliminaciones de tablas, que crean #### Ver también [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 999 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md index 165dfb0dc03c2d..35951b6e9e7073 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Is user deleted prueba la cuenta de usuario cuyo número de identificación único se pasa en *refUsuario*. @@ -31,4 +28,14 @@ Si no tiene privilegios de acceso para llamar al comando Is user deleted o si ot [DELETE USER](delete-user.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 616 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md index c5b2d9f2a5ca4c..4fb2417155b296 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Tema:** Eventos formulario @@ -63,4 +60,13 @@ End case #### Ver también -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1422 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md index 0d0870049c5f02..1e3af4f09f0276 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Is window maximized** devuelve **True** si la ventana cuyo número de referencia se pasa en *ventana* está actualmente maximizada, y **False** en caso contrario. @@ -36,4 +33,13 @@ Quiere cambiar entre el estado maximizado y el anterior: #### Ver también [Is window reduced](is-window-reduced.md) -[MAXIMIZE WINDOW](maximize-window.md) \ No newline at end of file +[MAXIMIZE WINDOW](maximize-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1830 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md index 71094d87e5f10b..0d0066196dd44f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Is window reduced** devuelve **True** si la ventana cuyo número de referencia se pasa en *ventana* está actualmente reducida en la barra de tareas (Windows) o en el dock (macOS), y **False** en caso contrario. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver también [Is window maximized](is-window-maximized.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1831 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md index 7abb5063bfc353..2d45e2911536e9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md @@ -32,4 +32,13 @@ Desea determinar si el sistema operativo actual es Windows: #### Ver también [System info](system-info.md) -[Is macOS](is-macos.md) \ No newline at end of file +[Is macOS](is-macos.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1573 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md index 084d335f67ebc3..373b732fad72b0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md @@ -57,4 +57,13 @@ En este ejemplo, los datos de los campos de los registros de una tabla se extrae #### Ver también [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1219 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md index 26449d34a6727c..6e16d37eb5faac 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md @@ -189,4 +189,13 @@ beta[1].golf:{line:10,offset:12}}} [JSON PARSE ARRAY](json-parse-array.md) [JSON Stringify](json-stringify.md) [JSON Validate](json-validate.md) -*Tipos de campos y variables* \ No newline at end of file +*Tipos de campos y variables* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1218 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md index bc375fc1b6b168..3d07989a2bf605 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md @@ -229,4 +229,13 @@ Si ejecuta: #### Ver también - \ No newline at end of file + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1478 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md index d8832eb1000305..8fcac3e218de53 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md @@ -107,4 +107,13 @@ Conversión de una selección 4D en un array objeto: #### Ver también [JSON PARSE ARRAY](json-parse-array.md) -[JSON Stringify](json-stringify.md) \ No newline at end of file +[JSON Stringify](json-stringify.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1228 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md index faf2b97bd59086..a1f5dc0cf5565d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md @@ -168,4 +168,13 @@ $myTxtCol="[33,"mike","2017-08-28",false]" #### Ver también [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1217 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md index 34fd24e83bd42a..4c80df39e03a5c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md @@ -67,4 +67,13 @@ Uso del comando **JSON TO SELECTION** para añadir los registros a la tabla \[Co #### Ver también -[Selection to JSON](selection-to-json.md) \ No newline at end of file +[Selection to JSON](selection-to-json.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1235 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md index ecc1408e6f9d67..dad14f66f836ad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md @@ -103,4 +103,13 @@ Usted desea validar un objeto JSON con un esquema y obtener la lista de errores -[JSON Parse](json-parse.md) \ No newline at end of file +[JSON Parse](json-parse.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1456 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md index b11ede0fa0eed4..aa6d617d9badee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Keystroke devuelve el carácter introducido por el usuario en un campo o en un área editable. @@ -170,4 +167,13 @@ Utilizando las habilidades de la comunicación interproceso de 4D, puede constru [FILTER KEYSTROKE](filter-keystroke.md) [Form event code](form-event-code.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 390 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md index 38aaaa9d96d965..ecb8c4b02a6b88 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md @@ -52,4 +52,13 @@ En el método (*theWorker*), se añade código para manejar esta situación: [CALL WORKER](call-worker.md) [Current process name](current-process-name.md) -*Sobre workers* \ No newline at end of file +*Sobre workers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1390 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md index c443c96da8eac4..d9928402f34c25 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md @@ -32,4 +32,13 @@ Este comando debe ser llamado desde un método de llamada de error instalado por #### Ver también [ON ERR CALL](on-err-call.md) -[throw](throw.md) \ No newline at end of file +[throw](throw.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1799 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md index a88e55c8ad4f0b..70e9b238ea6826 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md @@ -41,4 +41,13 @@ El siguiente método de proyecto crea el array *asCampos*, con los nombres de lo [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 255 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md index 37856fa8eda446..c12387f6ad618b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md @@ -32,4 +32,13 @@ La descripción de la ruta de la última búsqueda puede compararse con la descr #### Ver también [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1045 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md index ea12c82bf39557..125565eeb173e7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md @@ -33,4 +33,13 @@ La descripción del plan de la última búsqueda puede compararse con la descrip #### Ver también [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query path](last-query-path.md) \ No newline at end of file +[Last query path](last-query-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1046 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md index cbc42ffe2cd7a1..8756d53cd764a0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md @@ -31,4 +31,14 @@ El siguiente ejemplo designa el último registro de la tabla \[Personas\] como r [End selection](end-selection.md) [FIRST RECORD](first-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 200 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md index 95a9b708eb2966..7c09e3b51b95fc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md @@ -38,4 +38,13 @@ El siguiente ejemplo inicializa los elementos del array *asTablas,* con los nomb [Last field number](last-field-number.md) [Is table number valid](is-table-number-valid.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 254 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md index 9cbdc59b7bb240..9b6f95caf43799 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md @@ -144,4 +144,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también [OPEN URL](open-url.md) -[SET ENVIRONMENT VARIABLE](set-environment-variable.md) \ No newline at end of file +[SET ENVIRONMENT VARIABLE](set-environment-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 811 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md index e6baeabbc40436..1bd38081594890 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LDAP LOGIN** abre una conexión de sólo lectura en el servidor LDAP especificado por el parámetro *url* con los identificadores *login* y *contraseña* suministrados. Si es aceptado por el servidor, esta conexión se utiliza para todas las búsquedas LDAP efectuadas posteriormente en el proceso actual hasta que el comando *RuntimeVLWinFolder* se ejecute (o hasta que el proceso se cierre). @@ -98,4 +95,13 @@ Este ejemplo intenta conectarse a una aplicación: #### Ver también *LDAP* -[LDAP LOGOUT](ldap-logout.md) \ No newline at end of file +[LDAP LOGOUT](ldap-logout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1326 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md index d2e5422dc0bc6c..6a08dd715a48fd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md @@ -12,13 +12,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LDAP LOGOUT** cierra la conexión con un servidor LDAP en el proceso actual (si aplica). Si no hay conexión, se devuelve el error 1003 indicando que no está conectado. #### Ver también -[LDAP LOGIN](ldap-login.md) \ No newline at end of file +[LDAP LOGIN](ldap-login.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1327 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md index f68e4091193537..399f103564dfa2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LDAP SEARCH ALL** busca todas las ocurrencias que coinciden con los criterios definidos en el servidor LDAP objetivo. Este comando debe ser ejecutado dentro de una conexión a un servidor LDAP abierta con *LDAP LOGIN*; de lo contrario se devuelve un error 1003. @@ -117,4 +114,13 @@ Estos ejemplos ilustran el uso del parámetro *atributosEnArray*: #### Ver también *LDAP* -[LDAP Search](ldap-search.md) \ No newline at end of file +[LDAP Search](ldap-search.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1329 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md index f576280cef6f8c..16d50a8222fa96 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LDAP Search** busca la primera ocurrencia que coincida con los criterios definidos en el servidor LDAP objetivo. Este comando debe ser ejecutado dentro de una conexión a un servidor LDAP abierta con *RuntimeVLIncludeIt*; de lo contrario se devuelve un error 1003. @@ -85,4 +82,13 @@ Queremos obtener una array de todas las entradas que se encuentran en el atribut #### Ver también *LDAP* -[LDAP SEARCH ALL](ldap-search-all.md) \ No newline at end of file +[LDAP SEARCH ALL](ldap-search-all.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1328 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md index 0c9d256267a5e8..af3b0bab2a187f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Descripción -**Length** permite obtener la longitud de *cadena*. **Length** devuelve el número de caracteres alfanuméricos en *cadena*. +**Length** permite obtener la longitud de *cadena*.devuelve el número de caracteres alfanuméricos en *cadena*. **Nota:** en modo Unicode, si quiere verificar que una cadena contiene caracteres, incluyendo caracteres ignorables, debe utilizar el último If(Length(vtAnyText)=0) en lugar de If(vtAnyText=""). Si la cadena contiene por ejemplo Char(1), que es carácter ignorable, Length(vtAnyText) devuelve 1 pero vtAnyText="" devuelve True. @@ -28,3 +28,13 @@ Este ejemplo ilustra el uso de Length. Los resultados, descritos en los comentar  vlResult:=Length("Topacio") // vlResult obtiene 7  vlResult:=Length("Ciudadano") // vlResult obtiene 9 ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 16 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md index 633a322b16f48e..2141109b3ce712 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Level se utiliza para determinar el nivel de ruptura o del encabezado actual. Devuelve el nivel de ruptura durante los eventos On Header y On Printing Break. @@ -68,4 +65,13 @@ Este ejemplo es una plantilla para un método de formulario. Muestra cada evento [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Form event code](form-event-code.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 101 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md index 4f699dc2585b1b..3349e7063f4de7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md @@ -71,3 +71,13 @@ Esta tabla detalla el contenido del objeto de sesión para las sesiones REST: | sessionID | Texto | ID de la sesión REST | | IPAddress | Texto | ID del cliente que inició la sesión REST | | isDatastore | Boolean | True si la solicitud REST proviene de un datastore | + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1782 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md index c1755f337c9b89..4b86e2b7b75ba1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando List item parent devuelve el número de referencia del elemento padre. @@ -73,4 +70,13 @@ Los números de referencia de los elementos son los siguientes: [GET LIST ITEM](get-list-item.md) [List item position](list-item-position.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 633 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md index 14ab4b855c3fb0..a0012f1d865ddb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando List item position devuelve la posición del elemento cuyo número de referencia o nombre de objeto se pasa en *refElem*, en la lista cuyo número de referencia se pasa en *lista*. @@ -40,4 +37,13 @@ Si el elemento no existe, List item position devuelve 0. #### Ver también [Count list items](count-list-items.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 629 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md index 8a065dd84c80e0..2f1751e38a7e46 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md @@ -14,11 +14,18 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LIST OF CHOICE LISTS devuelve, en los arrays sincronizados *arraysNums* y *arrayNoms*, los números y los nombres de las listas definidas en el editor de listas en el entorno Diseño. Los números de las listas corresponden a su orden de creación. En el editor de listas, las listas se muestran en orden alfabético. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 957 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md index 300859f2afd672..bb2a63fc7a0ccb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LIST OF STYLE SHEETS** devuelve la lista de hojas de estilo de la aplicación en el array *arrHojasEstilo*. @@ -51,4 +48,13 @@ Si ejecuta el siguiente código: #### Ver también [GET STYLE SHEET INFO](get-style-sheet-info.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1255 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md index aa9c3a52d69f5b..f43a6bfbc9d0be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LIST TO ARRAY crea o reemplaza el array a*rray* con los elementos del primer nivel de la lista o de la lista de selección designada por *lista*. @@ -86,4 +83,13 @@ Si ejecuta la siguiente instrucción: [ARRAY TO LIST](array-to-list.md) [Load list](load-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 288 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md index 40b179c16632d2..bcddc88383853a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LIST TO BLOB almacena la lista jerárquica *list* en el BLOB *blob*. @@ -47,4 +44,14 @@ Ver el ejemplo del comando [BLOB to list](blob-to-list.md "BLOB to list"). [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) [SAVE LIST](save-list.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 556 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md index ea70ebc0706617..9168a22fb42e52 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX COLLAPSE se utiliza para contraer líneas de ruptura del objeto list box designado por los parámetros *objeto* y *\** parámetros. @@ -52,4 +49,13 @@ Este ejemplo colapsa el primer nivel de líneas de ruptura de la selección en e #### Ver también -[LISTBOX EXPAND](listbox-expand.md) \ No newline at end of file +[LISTBOX EXPAND](listbox-expand.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1101 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md index 3f946997bd3877..41995fa9687247 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX DELETE COLUMN borra una o más columnas (visibles o no) en el list box designado por los parámetros *objeto* y *\**. @@ -35,4 +32,13 @@ Si el parámetro *posicionCol* es mayor al número de columnas en el list box, e #### Ver también [LISTBOX Get number of columns](listbox-get-number-of-columns.md) -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 830 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md index cc1178c9af5e07..500d14671ad646 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX DELETE ROWS borra una o varias líneas a partir de *posicion* (visible o no) del list box definido por los parámetros *objeto* y \*. @@ -37,4 +34,14 @@ Si el parámetro *posicion* es superior al número de líneas del array del list #### Ver también [LISTBOX Get number of rows](listbox-get-number-of-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 914 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md index a252b692a60ce2..7bfa128e9d8daa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX DUPLICATE COLUMN** duplica la columna definida por los parámetros *objeto* y *\** por programación en el contexto del formulario ejecutado (Modo Aplicación). El formulario original, generado en modo Diseño no se modifica. @@ -87,4 +84,13 @@ Note que las variables de encabezado y de pie de página siempre se crean con un #### Ver también -[LISTBOX MOVE COLUMN](listbox-move-column.md) \ No newline at end of file +[LISTBOX MOVE COLUMN](listbox-move-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1273 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md index a335641f4a2d18..38089101275f24 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX EXPAND se utiliza para desplegar las líneas de ruptura del objeto list box designado por los parámetros objeto y \*. @@ -82,4 +79,13 @@ Este ejemplo ilustra diferentes modos de utilizar el comando. Dados los siguient #### Ver también -[LISTBOX COLLAPSE](listbox-collapse.md) \ No newline at end of file +[LISTBOX COLLAPSE](listbox-collapse.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1100 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md index 97862d6022391d..4bfe4829d0e109 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando sólo funciona con los list box de tipo array. @@ -62,4 +59,13 @@ Ejemplos típicos de uso: #### Ver también [LISTBOX GET ARRAYS](listbox-get-arrays.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1278 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md index 2833969d3a0b3a..119b8a0ffdafc3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX GET ARRAYS** devuelve un conjunto de arrays sincronizados ofreciendo información sobre cada columna (visible o invisible) del list box designado por los parámetros *objeto* y *\**. @@ -51,4 +48,13 @@ Para un list box de tipo selección, colección o selección de entidades, *arrE [LISTBOX Get array](listbox-get-array.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 832 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md index 81ebd5bbe15ff9..05aa20ee660446 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get auto row height** devuelve el valor de altura de fila mínimo o máximo actual definido para el objeto list box designado utilizando los parámetros *objeto* y *\**. @@ -57,4 +54,13 @@ Usted desea obtener el número máximo de líneas para una línea de list box: [LISTBOX Get row height ](listbox-get-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) \ No newline at end of file +[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1502 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md index 5f22d274e9a0ed..4ee8753a01c14a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX GET CELL COORDINATES devuelve en las variables o campos *izq*, *arriba*, *der* y *inf* las coordenadas (en puntos) de la celda designada por los parámetros *columna* y *linea*, en el list box definido por *\** y *objeto*. @@ -54,4 +51,13 @@ Usted quiere dibujar un rectángulo rojo alrededor de la celda seleccionada de u #### Ver también [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[OBJECT GET COORDINATES](object-get-coordinates.md) \ No newline at end of file +[OBJECT GET COORDINATES](object-get-coordinates.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1330 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md index 775fda53fc8079..2c08b994d2908d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX GET CELL POSITION** devuelve los números de la *columna* y de la *fila* correspondientes a la ubicación en el list box (designado por *\** y *objeto*) del último clic, última selección realizada con el teclado, o las coordenadas vertical y horizontal del ratón. @@ -55,4 +52,13 @@ Este comando tiene en cuenta las acciones de selección o deselección efectuada #### Ver también [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) -[LISTBOX SELECT BREAK](listbox-select-break.md) \ No newline at end of file +[LISTBOX SELECT BREAK](listbox-select-break.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 971 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md index 9c2cd500a0fb4e..a317d54353e8db 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get column formula** devuelve la fórmula asociada a la columna de list box designada por los parámetros *objeto* y *\**. Las fórmulas no pueden utilizarse cuando la propiedad “Fuente de datos” del list box es **Selección actual**, **Selección temporal** o **Colección o Selección** **de entidades**. Si ninguna fórmula está asociada a la columna, el comando devuelve una cadena vacía. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom #### Ver también -[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) \ No newline at end of file +[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1202 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md index 068ff2dfdf8765..df315a5a17edc2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX Get column width devuelve el largo (en píxeles) de la columna designada por los parámetros *objeto* y *\*.* Puede pasar indiferentemente una columna o un título de columna de list box en el parámetro *objeto*. @@ -31,4 +28,13 @@ Si no se ha definido ningún valor de ancho mínimo y/o máximo para la columna, #### Ver también -[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) \ No newline at end of file +[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 834 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md index abf1236c624a6a..8f5a0bfbccf971 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El nuevo comando **LISTBOX Get footer calculation** devuelve el tipo de cálculo asociado al área de pie de página del list box designado por los parámetros *objeto* y *\**. @@ -32,4 +29,13 @@ Puede comparar el valor devuelto con las constantes del tema *List box cálculo #### Ver también -[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) \ No newline at end of file +[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1150 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md index 7682b2e00bcd21..59ced1d8a11901 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get footers height** devuelve la altura de la línea de pie del list box designado por los parámetros *objeto* y *\**. @@ -37,4 +34,13 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex #### Ver también -[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) \ No newline at end of file +[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1146 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md index 4b0768e780f134..d59059c9784d9f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX GET GRID COLORS** devuelve el color de las líneas horizontales y verticales que componen la rejilla del objeto list box object designado por los parámetros *objeto* y *\**. @@ -32,4 +29,13 @@ En *colorH* y *colorV*, el comando devuelve los valores de los colores RGB. El f #### Ver también -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1200 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md index be83108940d15f..701f9fd007e315 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX GET GRID** devuelve el estado visible/oculto de las líneas horizontales y/o verticales que componen la rejilla del objeto list box designado por los parámetros *objeto* y *\**. @@ -29,4 +26,13 @@ El comando devuelve en los parámetros *horizontal* y *vertical*, el valor **Tru #### Ver también -[LISTBOX SET GRID](listbox-set-grid.md) \ No newline at end of file +[LISTBOX SET GRID](listbox-set-grid.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1199 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md index 42137df05fe2a2..729ecab15662aa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get headers height** devuelve la altura de la línea de encabezado del list box designado por los parámetros *objeto* y *\**. @@ -37,4 +34,13 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex #### Ver también -[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) \ No newline at end of file +[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1144 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md index b60b05f589d9c0..0c8c4752f5bb5b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX GET HIERARCHY permite buscar las propiedades jerárquicas del objeto list box designado por los parámetros *objeto* y *\** . @@ -36,4 +33,13 @@ Si el list box está en modo jerárquico, el comando llena el array *jerarquia* #### Ver también -[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) \ No newline at end of file +[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1099 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md index cf0ee4aa8e6036..d368559ba039d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get locked columns** devuelve el número de columnas bloqueadas en el list box designado por los parámetros *objeto* y *\**. @@ -31,4 +28,13 @@ displayed_sidebar: docs #### Ver también -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1152 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md index 09ba12f98f7b06..776c4622f652a5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX Get number of columns devuelve el número total de columnas (visibles o invisibles) presentes en el list box designado por los parámetros *objeto* y *\**. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom #### Ver también -[LISTBOX DELETE COLUMN](listbox-delete-column.md) \ No newline at end of file +[LISTBOX DELETE COLUMN](listbox-delete-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 831 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md index 328fa519f30eef..e8e929af534fa1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX Get number of rows devuelve el número de filas del list box designado por los parámetros objeto y \*. @@ -31,4 +28,13 @@ Si pasa el parámetro opcional \*, indica que el parámetro *objeto* es un nombr #### Ver también [LISTBOX DELETE ROWS](listbox-delete-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 915 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md index d519b0ee34fb4f..1e1cb4da424633 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX GET OBJECTS** devuelve un array que contiene los nombres de todos los objetos que componen el list box designado por los parámetros *objeto* y *\** . @@ -61,4 +58,13 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los #### Ver también [FORM LOAD](form-load.md) -[OBJECT Get type](object-get-type.md) \ No newline at end of file +[OBJECT Get type](object-get-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1302 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md index e40af854dcde57..651bcbe4534266 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX GET PRINT INFORMATION devuelve la información actual relativa a la impresión del objeto list box designado por los parámetros *objeto* y *\** . Este comando permite controlar la impresión del contenido del list box. @@ -69,3 +66,13 @@ Impresión de al menos 500 líneas del list box, conociendo que algunas líneas     PAGE BREAK  Until($GlobalPrinted>=500) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1110 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md index 1e137a4d1ac025..f6cbd1f1f12200 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get property** devuelve el valor de la *propiedad* del list box o columna especificado utilizando los parámetros *objeto* y *\*.* @@ -101,4 +98,13 @@ Dado un list box "MyListbox", si ejecuta la siguiente instrucción: [LISTBOX SET GRID](listbox-set-grid.md) [LISTBOX SET PROPERTY](listbox-set-property.md) -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 917 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md index 1b0ec031cba0cd..2ae3158ce4c560 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando sólo funciona con los list box de tipo array. @@ -60,4 +57,13 @@ Dado el siguiente list box: *Listbox* [LISTBOX Get row color](listbox-get-row-color.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1271 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md index a58d696e5cfb2b..9a82167844753b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando solo funciona con list boxes de tipo array. @@ -59,4 +56,13 @@ Dado el siguiente list box: #### Ver también -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1658 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md index 6a3cc32a2fd298..e559d54c812465 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando sólo funciona con los list box de tipo array. @@ -51,4 +48,13 @@ Dado el siguiente list box: #### Ver también -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1269 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md index 83b63a0372e177..6ddca1b40a674a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get row height** devuelve la altura de la *fila* especificada en el objeto list box designado utilizando el *objeto* y los parámetros *\**. @@ -36,4 +33,13 @@ El valor de la altura de la línea se expresa: [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1408 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md index 8bafff4e8a9d49..291748d7f48fbb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get rows height** devuelve la altura actual (en píxeles o en líneas) de las líneas del objeto list box designado utilizando los parámetros *objeto* y *\**.El valor devuelto corresponde a la altura de una sola línea. @@ -38,4 +35,13 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX Get row height ](listbox-get-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 836 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md index 579ee13cb5bad1..648f8300bd8b70 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX Get static columns** devuelve el número de columnas estáticas en el list box designado por los parámetros *objeto* y *\**. @@ -33,4 +30,13 @@ Sin embargo, el comando no tiene en cuenta el estado visible/invisible de las co #### Ver también -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1154 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md index e0dbc23f9e236b..136eb3303f3041 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX GET TABLE SOURCE permite conocer la fuente actual de datos mostrados en el list box designado por los parámetros *\** y *objeto*. @@ -34,4 +31,13 @@ Si el list box está asociado con arrays, *numTabla* devuelve -1 y *tempo*, si s #### Ver también -[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) \ No newline at end of file +[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1014 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md index 5efcbbe3273c00..3d4e573a6cde55 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX INSERT COLUMN FORMULA** inserta una columna en el listbox designado por los parámetros *objeto* y *\**. @@ -119,4 +116,13 @@ La columna se añade al list box: #### Ver también -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 970 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md index 2e8b66bf01272e..c7cb5927958ed6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX INSERT COLUMN** inserta una columna en el list box designado por los parámetros *objeto* y *\**. @@ -100,4 +97,13 @@ Usted desea insertar una columna de forma dinámica en un array de tipo list box #### Ver también [LISTBOX DELETE COLUMN](listbox-delete-column.md) -[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) \ No newline at end of file +[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 829 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md index eb8ed197114dca..7f65d287e087d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX INSERT ROWS** inserta una o varias nuevas líneas en el list box designado por los parámetros *objeto* y *\**. @@ -35,4 +32,14 @@ Si el valor de *posicionL* es mayor que el número total de filas en el list box #### Ver también -[LISTBOX DELETE ROWS](listbox-delete-rows.md) \ No newline at end of file +[LISTBOX DELETE ROWS](listbox-delete-rows.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 913 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md index 1c1704242968e5..6038a6fa5b9f5a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX MOVE COLUMN** mueve por programación la columna designada por los parámetros *objeto* y *\** en el contexto del formulario en ejecución (modo Aplicación). El formulario original, generado en modo Diseño, no se modifica. @@ -42,4 +39,13 @@ Usted quiere invertir la segunda y tercera columna del list box: #### Ver también -[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) \ No newline at end of file +[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1274 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md index 0e1d87168fd0c5..ae329583002ea8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX MOVED COLUMN NUMBER devuelve dos números en *antPosicion* y *nuevPosicion* indicando respectivamente la posición anterior y la nueva posición de la columna movida en el list box designado por los parámetros *objeto* y *\**. @@ -32,4 +29,13 @@ Este comando debe utilizarse con el evento de formulario On column moved (ver el #### Ver también [Form event code](form-event-code.md) -[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) \ No newline at end of file +[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 844 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md index 374dfa43d9c105..94984a96e784a0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX MOVED ROW NUMBER devuelve dos números en *antPosicion* y *nuevPosicion* indicando respectivamente la posición anterior y la nueva posición de la fila movida en el list box, especificadas por los parámetros *objeto* y *\**. @@ -34,4 +31,13 @@ Este comando debe utilizarse con el evento de formulario On row moved (ver el co #### Ver también [Form event code](form-event-code.md) -[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) \ No newline at end of file +[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 837 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md index f63b209c4ba478..bf7d43fbb7ff9c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SELECT BREAK se utiliza para seleccionar líneas de ruptura en el objeto list box designado por los parámetros *objeto* y *\**. El list box debe mostrarse en modo jerárquico. @@ -63,4 +60,13 @@ Este es el resultado: #### Ver también [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1117 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md index 1a252963e23c42..283f85ae3163b9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SELECT ROW selecciona la fila cuyo número se pasa en *posicion* en el list box designado por los parámetros *objeto* y *\**. @@ -55,4 +52,13 @@ Después de la ejecución del método, los arrays son sincronizados: si el array [LISTBOX INSERT ROWS](listbox-insert-rows.md) [LISTBOX SELECT BREAK](listbox-select-break.md) [LISTBOX SELECT ROWS](listbox-select-rows.md) -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 912 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md index d8cc9c736a432c..b0db0513e7c3ac 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SELECT ROWS** selecciona las líneas de un list box selección de entidad o un list box colección que corresponde a las entidades u objetos contenidos en el parámetro de *seleccion*. @@ -86,4 +83,13 @@ Ejemplo con una colección de objetos: #### Ver también -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1715 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md index 85c918ec883d1f..c602f7f650d29d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota**: este comando sólo funciona con los list box de tipo array. @@ -67,4 +64,13 @@ Usted desea definir un array de altura de línea para un list box: #### Ver también [LISTBOX Get array](listbox-get-array.md) -[LISTBOX GET ARRAYS](listbox-get-arrays.md) \ No newline at end of file +[LISTBOX GET ARRAYS](listbox-get-arrays.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1279 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md index 7f28b08573cf01..254deea931bcf7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SET AUTO ROW HEIGHT le permite establecer el valor de altura de fila mínimo o máximo en el objeto de list box designado utilizando los parámetros *objeto* y *\**. @@ -59,4 +56,13 @@ Usted desea definir las alturas mínimas y máximas para un list box con una alt [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1501 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md index ccae7b1cca762c..c43e917dabf365 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET COLUMN FORMULA** modifica la *formula* asociada a la columna de list box designada por los parámetros *objeto* y *\**. Las fórmulas no se pueden utilizar cuando la propiedad “Fuente de datos” del list box es **Selección actual**, **Selección temporal** o **Colección** o **Selección de entidades**. @@ -43,4 +40,13 @@ El parámetro *tipoDatos* designa el tipo de datos resultantes de la ejecución #### Ver también [LISTBOX Get column formula](listbox-get-column-formula.md) -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1203 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md index e271fd89c0c023..ceb757e3e5683c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SET COLUMN WIDTH le permite modificar por programación el ancho de una o todas las columnas del objeto (list box, columna o título) designado utilizando los parámetros *objeto* y *\**. @@ -34,4 +31,13 @@ Los parámetros opcionales *anchoMin* y *anchoMax* permiten definir los límites #### Ver también -[LISTBOX Get column width](listbox-get-column-width.md) \ No newline at end of file +[LISTBOX Get column width](listbox-get-column-width.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 833 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md index 87db04142f154e..e879c89d040624 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET FOOTER CALCULATION** permite definir el cálculo automático asociado al área de pie del list box designado por los parámetros *objeto* y *\**. @@ -52,4 +49,13 @@ Si el tipo de datos de la columna o de al menos una columna del list box (si obj #### Ver también -[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) \ No newline at end of file +[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1140 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md index 916575092a0342..37d91aec142f4d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET FOOTERS HEIGHT** modifica por programación la altura de la línea de pie del list box designado por los parámetros *objeto* y *\**. @@ -37,4 +34,13 @@ Pase en el parámetro *altura* la altura a definir. Por defecto, si omite el par #### Ver también -[LISTBOX Get footers height](listbox-get-footers-height.md) \ No newline at end of file +[LISTBOX Get footers height](listbox-get-footers-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1145 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md index 2aacc68449dd06..51f7dc876f75a2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET GRID COLOR** le permite modificar el color de la rejilla del objeto list box designado por los parámetros *objeto* y *\**. @@ -37,4 +34,13 @@ Los parámetros *horizontal* y *vertical* le permiten especificar las líneas a [LISTBOX GET GRID COLORS](listbox-get-grid-colors.md) [LISTBOX SET GRID](listbox-set-grid.md) -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 842 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md index 823e224a719087..caf4879c310488 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SET GRID permite mostrar u ocultar las líneas horizontales y/o verticales que componen la matriz del objeto list box designado por los parámetros *objeto* y *\**. @@ -31,4 +28,13 @@ Pase en los parámetros *horizontal* y *vertical* los valores booleanos que indi [LISTBOX GET GRID](listbox-get-grid.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 841 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md index 1ba0054c245d3a..8ed831213bf6fd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET HEADERS HEIGHT** modifica por programación la altura de la línea de encabezado del list box designado por los parámetros *objeto* y *\**. @@ -41,4 +38,13 @@ Los encabezados deben respetar la altura mínima establecida por el sistema. Est #### Ver también -[LISTBOX Get headers height](listbox-get-headers-height.md) \ No newline at end of file +[LISTBOX Get headers height](listbox-get-headers-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1143 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md index 1fed0c36ef3127..a9eb73f4ce9a2a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SET HIERARCHY permite configurar el objeto list box designado por los parámetros objeto y *\** en modo jerárquico o no jerárquico. @@ -55,4 +52,13 @@ Definición de los arrays aPais, aRegion y aCiudad como jerarquía de un list bo #### Ver también -[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) \ No newline at end of file +[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1098 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md index 90a85a12da55c9..f96eb20c96d1b2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET LOCKED COLUMNS** bloquea las primeras *numColumnas* columnas izquierdas del list box designado por los parámetros *objeto* y *\**. @@ -33,4 +30,13 @@ Para eliminar el bloqueo de columnas, pase 0 o un valor negativo en *numColumnas #### Ver también [LISTBOX Get locked columns](listbox-get-locked-columns.md) -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1151 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md index 31fa9340773f9e..fce8fe11ceabeb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET PROPERTY** define el valor de la propiedad de la columna list box o list box especificada utilizando los parámetros objeto y \*. @@ -86,4 +83,13 @@ Usted desea definir el ancho máximo de la columna "ProductNumber": *Listbox* -[LISTBOX Get property](listbox-get-property.md) \ No newline at end of file +[LISTBOX Get property](listbox-get-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1440 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md index 71eb0fc3ac4570..085f0199aafd9b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando sólo funciona con listboxes de tipo array. @@ -65,4 +62,13 @@ En un array de tipo list box, queremos establecer los colores de una fila y para *Listbox* [LISTBOX Get row color](listbox-get-row-color.md) [LISTBOX Get row color as number](listbox-get-row-color-as-number.md) -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1270 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md index 17147ba25aa506..2b01b7a2d1010e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando sólo funciona con los list boxes de tipo array. @@ -80,4 +77,13 @@ Después de la segunda declaración, todas las celdas de la tercera fila cambian #### Ver también [LISTBOX Get row font style](listbox-get-row-font-style.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1268 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md index 0c695fcebc3c31..1b366f9f0ad887 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET ROW HEIGHT** le permite modificar la altura de la *fila* especificada en el objeto list box designado utilizando los parámetros *objeto* y *\**. @@ -85,4 +82,13 @@ Por otro lado, si el código siguiente se ejecuta posteriormente... [LISTBOX Get row height ](listbox-get-row-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1409 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md index 7a2ae17dd5e061..6605bdf3f9bfec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET ROWS HEIGHT** le permite modificar por programación la altura de las filas del objeto list box designado por los parámetros *objeto* y *\**. @@ -38,4 +35,13 @@ Por defecto, si omite el parámetro *unidad*, la altura se expresa en píxeles. [LISTBOX Get rows height](listbox-get-rows-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 835 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md index bbacf43ea26e2e..98a7db7161dcfe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET STATIC COLUMNS** define las primeras *numColumnas* columnas (empezando por la izquierda) en el list box designado por los parámetros *objeto* y *\**. @@ -29,4 +26,13 @@ Las columnas estáticas no pueden moverse en el list box. #### Ver también [LISTBOX Get static columns](listbox-get-static-columns.md) -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1153 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md index 423f04b4ea14d4..8c3fe7aeb0e889 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **LISTBOX SET TABLE SOURCE** permite modificar la fuente de datos mostrada en el listbox diseñado por los parámetros *\** y *objeto* @@ -39,4 +36,13 @@ Si el list box ya contiene las columnas, sus contenidos se actualizarán despué #### Ver también -[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) \ No newline at end of file +[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1013 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md index cdb80e54644cab..a41eef22409596 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando LISTBOX SORT COLUMNS aplica una ordenación estándar a las líneas del list box definido por el objeto y los parámetros \* en función de los valores de una o varias columnas. @@ -36,3 +33,13 @@ Puede definir ordenaciones multiniveles: para hacerlo, pase tantos pares (*numCo Conforme con el principio de funcionamiento del list box, las columnas están sincronizadas, lo que significa que la ordenación de una columna repercute automáticamente en todas las otras columnas del objeto. **Nota:** el comando **LISTBOX SORT COLUMNS** no tiene en cuenta la propiedad listbox *Sortable*. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 916 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md index eb1014e812436f..e0e062b4b013c1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md @@ -194,3 +194,13 @@ Obtendrá el siguiente resultado (objeto stringified): ``` **Nota:** para más información sobre el formato del [objeto](# "Datos estructurados como forma de objeto nativo 4D"), devuelto, contacte los servicios técnicos de 4D. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1528 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md index a8d7f5a72c7128..e2e2d76d9fc768 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Load list crea una lista jerárquica cuyo contenido se copia de la lista pasada en *nomLista*. Luego devuelve el número de referencia de la lista creada recientemente. @@ -50,4 +47,13 @@ Usted crea una base para el mercado internacional y necesita cambiar a los difer [CLEAR LIST](clear-list.md) [Is a list](is-a-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 383 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md index f011a643c37a5b..34005c45cdf2f6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md @@ -35,4 +35,13 @@ En entornos multiusuario y multiprocesos, cuando necesite modificar un registro [Locked](locked.md) *Record Locking* -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 52 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md index 5746b23cecbdf9..edf8b798bf2433 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md @@ -41,4 +41,14 @@ Si el usuario hace clic en Cancelar en la caja de diálogo de abrir archivos, o #### Ver también -[SAVE SET](save-set.md) \ No newline at end of file +[SAVE SET](save-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 185 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md index ee882242c0aa61..ae8eef49d7e3b3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md @@ -44,4 +44,14 @@ Si las variables se cargan correctamente, la variable sistema OK toma el valor 1 [BLOB TO VARIABLE](blob-to-variable.md) [DOCUMENT TO BLOB](document-to-blob.md) [RECEIVE VARIABLE](receive-variable.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 74 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md index bef81a5f4c9ef1..1f2815c3e5faec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md @@ -64,4 +64,13 @@ Si el lenguaje actual es, por ejemplo, francés canadiense (fr-ca), el comando d #### Ver también -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1105 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md index b4b9b6eeaa0b53..a308434be39b4a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md @@ -53,4 +53,14 @@ Si el comando se ejecuta correctamente, la variable OK toma el valor 1\. Si *res #### Ver también -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 991 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md index 46352a57b4f9d5..d613133fc6382a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md @@ -39,4 +39,13 @@ Si el registro ha sido bloqueado por una *petición $lock REST*: #### Ver también [Locked](locked.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 353 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md index ce25d7007db3a2..1aa0a33ca9ef07 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md @@ -89,4 +89,13 @@ Si el código se ejecuta en un 4D Server y el bloqueo es causado por una máquin #### Ver también -[Locked](locked.md) \ No newline at end of file +[Locked](locked.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1316 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md index 17debdf48851a6..011d4317d6dbd2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md @@ -33,4 +33,13 @@ Durante una transacción, [LOAD RECORD](load-record.md) y Locked se utilizan con [Locked records info](locked-records-info.md) [LOAD RECORD](load-record.md) [LOCKED BY](locked-by.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 147 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md index 19a9f248d1861f..d1e1fe9f20bcfc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md @@ -63,3 +63,13 @@ Cada vez que se abre la base, esta información se escribirá en el visor de eve #### Ver también [SET DATABASE PARAMETER](set-database-parameter.md) + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 667 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md index 3cda4ee12c8088..0e4d77de212aaf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md @@ -95,4 +95,14 @@ El comando **LOG FILE TO JSON** modifica el valor de las variables sistema OK y #### Ver también -[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) \ No newline at end of file +[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1352 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md index e427098f549c45..e310dfd20600b6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md @@ -30,4 +30,14 @@ Si la base funciona con un archivo historial, la variable sistema OK toma el val #### Ver también -[SELECT LOG FILE](select-log-file.md) \ No newline at end of file +[SELECT LOG FILE](select-log-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 928 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md index 4a13c10f5e92ba..b72628924bd9e3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md @@ -30,4 +30,13 @@ La siguiente línea muestra 1: #### Ver también -[Exp](exp.md) \ No newline at end of file +[Exp](exp.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 22 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md index a3e879dde62166..231ba407235c1e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md @@ -34,4 +34,13 @@ Quiere recuperar los números de los registros de la selección actual: #### Ver también -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 647 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md index b2e9075372c230..741810dfc4b986 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md @@ -113,4 +113,13 @@ Después de la ejecución de este código: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 550 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md index f3c813e119ac08..7727ebab7fe684 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md @@ -47,4 +47,13 @@ Este ejemplo compara los resultados obtenidos de acuerdo a si se pasa o no el pa #### Ver también -[Uppercase](uppercase.md) \ No newline at end of file +[Uppercase](uppercase.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 14 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md index 2f8bbc92e3de53..1d3d0743834dbc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Macintosh command down devuelve TRUE si la tecla Comando Macintosh está presionada. - -**Nota:** cuando se llama bajo Windows, Macintosh command down devuelve TRUE si la tecla Ctrl Windows está presionada. +Macintosh command down devuelve TRUE si la tecla Comando Macintosh está presionada.cuando se llama bajo Windows, Macintosh command down devuelve TRUE si la tecla Ctrl Windows está presionada. #### Ejemplo @@ -30,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 546 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md index ce0dffc864a120..47b3e19ee52ce5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Macintosh control down devuelve TRUE si la tecla Control de Macintosh está presionada. - -**Nota:** cuando se llama bajo Windows, Macintosh control down devuelve FALSE. Esta tecla Macintosh no tiene equivalente en Windows. +Macintosh control down devuelve TRUE si la tecla Control de Macintosh está presionada.cuando se llama bajo Windows, Macintosh control down devuelve FALSE. Esta tecla Macintosh no tiene equivalente en Windows. #### Ejemplo @@ -30,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 544 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md index e483d558b2fbb7..41f79b0ca50553 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Macintosh option down devuelve TRUE si la tecla Opción Macintosh está presionada. - -**Nota:** cuando se llama bajo Windows, Macintosh option down devuelve TRUE si la tecla Alt Windows está presionada. +Macintosh option down devuelve TRUE si la tecla Opción Macintosh está presionada.cuando se llama bajo Windows, Macintosh option down devuelve TRUE si la tecla Alt Windows está presionada. #### Ejemplo @@ -30,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh control down](macintosh-control-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 545 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md index 4a4b94c2caf3c0..2203b7f124eccb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md @@ -113,3 +113,14 @@ Añadir una estrella al final de una de las dos sintaxis anteriores. #### Gestión de errores En caso de error, el comando genera un error que puede interceptar vía un método instalado por el comando [ON ERR CALL](on-err-call.md "ON ERR CALL"). + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1019 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md index b47026140b9d24..74f67db63931b1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md @@ -68,4 +68,14 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo #### Ver también -[Min](min.md) \ No newline at end of file +[Min](min.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 3 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md index ac9d34964b9f28..90adf4ea8e71f8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando MAXIMIZE WINDOW provoca el zoom de la ventana cuyo número de referencia se pasa en *ventana*. Si se omite este parámetro, el efecto es el mismo pero se aplica a todas las ventanas de la aplicación (Windows) o de la ventana del primer plano del proceso actual (Mac OS). @@ -83,4 +80,13 @@ En este contexto, si el usuario hace clic en el botón: [Is window maximized](is-window-maximized.md) [MINIMIZE WINDOW](minimize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 453 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md index 27b8b5e5e8e849..87d5affdf77ab1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md @@ -26,4 +26,13 @@ Después de ejecutar el comando, las estadísticas solicitadas se entregan en lo #### Ver también -[Cache info](cache-info.md) \ No newline at end of file +[Cache info](cache-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1118 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md index a9ed68cbe81524..d37bd3fb9549f7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Menu bar height devuelve la altura de la barra de menús, expresada en píxeles. @@ -31,4 +28,13 @@ El comando devuelve 0: [HIDE MENU BAR](hide-menu-bar.md) [Menu bar screen](menu-bar-screen.md) -[SHOW MENU BAR](show-menu-bar.md) \ No newline at end of file +[SHOW MENU BAR](show-menu-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 440 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md index 6c77bfad61a68d..d9d5a10aae586a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Menu bar screen devuelve el número de la pantalla donde está ubicada la barra de menús. @@ -25,4 +22,13 @@ displayed_sidebar: docs #### Ver también [Count screens](count-screens.md) -[Menu bar height](menu-bar-height.md) \ No newline at end of file +[Menu bar height](menu-bar-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 441 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md index 969865bcf334f5..68db58b7433035 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Menu selected se utiliza sólo cuando se muestran formularios. Esta función detecta el comando de menú elegido en un menú y en el caso de un submenú jerárquico, devuelve la referencia del submenú. @@ -61,4 +58,14 @@ El siguiente método de formulario utiliza Menu selected para proporcionar los a #### Ver también -*Gestión de menús* \ No newline at end of file +*Gestión de menús* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 152 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md index e45e33e0adaf84..5c35ed1b1ac56e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando MESSAGE generalmente se utiliza para informar al usuario sobre alguna actividad. Muestra *mensaje* en la pantalla en una ventana de mensaje especial que se abre y cierra cada vez que usted llama a MESSAGE, a menos que usted trabaje con una ventana que abrió previamente utilizando [Open window](open-window.md) (ver los siguientes detalles). El mensaje es temporal y se borra tan pronto como se muestre un formulario o se detenga la ejecución del método. Si se ejecuta otro comando MESSAGE, el mensaje anterior se borra. @@ -114,4 +111,13 @@ El resultado es el siguiente (en Windows): [CLOSE WINDOW](close-window.md) [ERASE WINDOW](erase-window.md) [GOTO XY](goto-xy.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 88 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md index 22747d974109b1..3002543404b155 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md @@ -61,4 +61,13 @@ El siguiente ejemplo suprime los termómetros de progreso antes de efectuar una #### Ver también -[MESSAGES ON](messages-on.md) \ No newline at end of file +[MESSAGES ON](messages-on.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 175 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md index b4971530c5b6c6..f4691523fb52d3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md @@ -18,4 +18,13 @@ displayed_sidebar: docs #### Ver también -[MESSAGES OFF](messages-off.md) \ No newline at end of file +[MESSAGES OFF](messages-off.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 181 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md index 516f8d829c7154..63cf83dd283ec4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md @@ -44,4 +44,13 @@ Este comando es particularmente útil en el contexto de componentes porque le pe #### Ver también *Gestión de errores* -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 704 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md index ca3e2571570884..375d34971d1810 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Method called on event devuelve el nombre del método instalado por el comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL"). @@ -24,4 +21,13 @@ Si no se ha instalado un ningún método, se devuelve una cadena vacía (""). #### Ver también -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 705 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md index a0a87e6ef415ae..c4aea7f4b7a477 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD Get attribute** devuelve el valor del atributo *tipoAtributo* para el método proyecto designado por el parámetro *ruta*. Este comando sólo funciona con métodos proyecto. Si pasa una *ruta* invalida, se genera un error. @@ -41,4 +38,13 @@ El comando devuelve **True** si se selecciona un atributo y **False** si se dese #### Ver también -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1169 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md index e681e654f8dd7f..9f3d62cd1e9d7c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md @@ -59,4 +59,13 @@ Después de la ejecución, $att contiene, por ejemplo: #### Ver también -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1334 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md index 6290f39df5eaea..906d86aa7f8f64 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET CODE** devuelve en el parámetro *codigo*, el contenido de los métodos designados por el parámetro *ruta*. Este comando puede devolver el código de todos los tipos de métodos: métodos base, definiciones de clases, triggers, métodos proyecto, métodos formulario y métodos objeto. @@ -123,4 +120,13 @@ El documento resultante contendrá: #### Ver también [METHOD SET CODE](method-set-code.md) -*Utilizar tokens en fórmulas* \ No newline at end of file +*Utilizar tokens en fórmulas* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1190 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md index fac6e109130058..f7ff6b5c46b8c3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET COMMENTS** devuelve en el parámetro *comentarios*, la documentación de los métodos designados por el parámetro *ruta*. @@ -57,4 +54,13 @@ Si el comando se ejecuta desde un componente, se aplica por defecto a los métod #### Ver también -[METHOD SET COMMENTS](method-set-comments.md) \ No newline at end of file +[METHOD SET COMMENTS](method-set-comments.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1189 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md index 8817e50f91ca63..a487b4936af9b7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET FOLDERS** devuelve en el array *arrNoms*, los nombres de las carpetas creadas en la página Inicio del Explorador de 4D: @@ -31,4 +28,13 @@ Si se ejecuta este comando desde un componente, devuelve por defecto las rutas d #### Ver también -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1206 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md index 148c90f35251ad..54a32644dc7bdf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET MODIFICATION DATE** devuelve en los parámetros *fechaMod* y *horaMod* las fechas y horas de la última modificación de los métodos designados por el parámetro *ruta*. @@ -70,3 +67,13 @@ Quiere obtener las fechas de modificación de los métodos de un módulo con el ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1170 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md index 7666017909875d..cf447fec785554 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md @@ -39,3 +39,13 @@ Ejemplos de uso:   // Lista de los métodos proyecto de la base local que comienzan por una cadena específica  METHOD GET NAMES(t_Names;"web_@";*) ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1166 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md index 34cb83642de85a..d95b759f0d3db7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD Get path** devuelve la ruta de acceso interna completa de un método. @@ -66,4 +63,13 @@ Si el comando se ejecuta desde un componente, devuelve por defecto las rutas de [Current method path](current-method-path.md) [METHOD OPEN PATH](method-open-path.md) -[METHOD RESOLVE PATH](method-resolve-path.md) \ No newline at end of file +[METHOD RESOLVE PATH](method-resolve-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1164 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md index 2f6b8c6ea6f89f..31be433d33473c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET PATHS FORM** llena el array *arrRutas* con las rutas de acceso internas y los nombres de los métodos de todos los objetos de los formularios así como también de los métodos formulario. Los métodos formulario se etiquetan {formMethod}. @@ -71,4 +68,13 @@ Lista de todos los objetos de los formularios "input" de la tabla \[Empleados\] #### Ver también -[FORM GET NAMES](form-get-names.md) \ No newline at end of file +[FORM GET NAMES](form-get-names.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1168 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md index 2d969d60d879b7..9b924064f05ed7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD GET PATHS** llena el array *arrRutas* con las rutas de acceso internas y los nombres de los métodos de la aplicación del tipo definido por el parámetro *tipoMetodo*. @@ -86,4 +83,13 @@ Consulte el ejemplo del comando [METHOD SET CODE](method-set-code.md). #### Ver también [Current method path](current-method-path.md) -[METHOD GET FOLDERS](method-get-folders.md) \ No newline at end of file +[METHOD GET FOLDERS](method-get-folders.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1163 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md index 248ed33b2f7064..43b6c62ab58ba8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD OPEN PATH** abre, en el editor de métodos de 4D, el método cuya ruta de acceso interna se pasa en el parámetro *ruta*. @@ -31,4 +28,13 @@ Puede ejecutar este comando desde un componente, pero en este caso, debe pasar e #### Ver también *Comandos del tema Acceso objetos diseño* -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1213 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md index 635bd6e77df40f..6fcf10ea12c422 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD RESOLVE PATH** analiza la ruta de acceso interna pasada en el parámetro *ruta* y devuelve sus diferentes componentes en los parámetros *tipoMetodo*, *ptrTabla*, *nomObjeto* y *nomObjetoForm*. @@ -84,4 +81,13 @@ Resolución de una ruta de objeto de método formulario tabla: #### Ver también -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1165 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md index 20e78c9664645c..a2f587de945612 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD SET ACCESS MODE** permite definir el comportamiento de 4D cuando intenta acceder en escritura a un objeto ya cargado en modificación por otro usuario o proceso. El alcance de este comando es la sesión actual. @@ -27,3 +24,13 @@ En *modo*, pase una de las siguientes constantes del tema *Acceso objetos diseñ | On object locked abort | Entero largo | 0 | La carga del objeto se aborta (funcionamiento por defecto) | | On object locked confirm | Entero largo | 2 | 4D muestra una caja de diálogo permitiéndole elegir entre intentar nuevamente o abortar. En modo remoto, esta opción no es soportada (la carga se abandona) | | On object locked retry | Entero largo | 1 | 4D intenta cargar el objeto hasta que sea liberado | + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1191 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md index 49b3cd2874aca3..cb10b443fd4988 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD SET ATTRIBUTE** permite definir el valor del atributo *tipoAtrib* para el método proyecto designado por el parámetro *ruta*. Este comando sólo funciona con métodos proyecto. Si pasa una *ruta* invalida, se genera un error. @@ -69,4 +66,13 @@ Definición de varios pares de atributos/valores: *Acceso objetos diseño* [METHOD Get attribute](method-get-attribute.md) -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1192 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md index 78ebae9211db0d..87968f1f282ba7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Tema:** Acceso objetos diseño @@ -57,4 +54,13 @@ Usted desea modificar un solo atributo: #### Ver también [METHOD GET ATTRIBUTES](method-get-attributes.md) -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1335 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md index bb9d874f3443e4..644a4d067ff7a8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD SET CODE** modifica el código de los métodos designados por el parámetro *ruta* con el contenido pasado en el parámetro *codigo*. @@ -99,4 +96,13 @@ Este ejemplo exporta e importa la totalidad de los métodos proyecto de una apli #### Ver también -[METHOD GET CODE](method-get-code.md) \ No newline at end of file +[METHOD GET CODE](method-get-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1194 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md index 51ebc6a852579e..08ba7052a8ba8f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **METHOD SET COMMENTS** remplaza la documentación del(os) método(s) designados por el parámetro *ruta* por los definidos en el parámetro *comentarios*. @@ -63,4 +60,13 @@ Añadir una fecha de modificación a un comentario de trigger existente: #### Ver también -[METHOD GET COMMENTS](method-get-comments.md) \ No newline at end of file +[METHOD GET COMMENTS](method-get-comments.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1193 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md index 724ed4a158fcfa..58e08174a6bcbd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md @@ -46,4 +46,13 @@ El siguiente código espera hasta 5 segundos para que un registro bloqueado se d [Current time](current-time.md) [Tickcount](tickcount.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 459 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md index d0f42fcaee5f15..ececdb9bd0606d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md @@ -76,4 +76,14 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo #### Ver también -[Max](max.md) \ No newline at end of file +[Max](max.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 4 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md index 801ed3dc837860..6006ffa2d44856 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando MINIMIZE WINDOW define el tamaño de la ventana, cuyo número se pasó en *ventana*, del tamaño que tenía antes de ser maximizada. Si se omite *ventana*, el comando aplica a cada ventana de la aplicación (Windows) o a la ventana del primer plano del proceso actual (en Mac OS). @@ -53,4 +50,13 @@ Mac OS #### Ver también [MAXIMIZE WINDOW](maximize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 454 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md index 08ec5d48cfea4c..f9b920be8d1f08 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md @@ -44,4 +44,13 @@ Usted desea restablecer todas las sesiones actuales para todas las aplicaciones #### Ver también -[Método base On Mobile App Authentication](metodo-base-on-mobile-app-authentication.md) \ No newline at end of file +[Método base On Mobile App Authentication](metodo-base-on-mobile-app-authentication.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1596 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md index 249e860f8b1faa..79204d8b1e379a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando Mod devuelve el resto de la división entera de *número1* entre *número2*. - -**Notas:** +El comando Mod devuelve el resto de la división entera de *número1* entre *número2*. • Mod acepta expresiones de tipo Entero, Entero largo y Reales. Sin embargo, si *número1* o *número2* son números reales, los números primeros son redondeados y luego se calcula Mod. • Sea cuidadoso cuando utilice Mod con números reales de gran tamaño (sobre 2^31), ya que en este caso, su operación podría alcanzar los límites de las capacidades de cálculo de los procesadores estándar. @@ -36,3 +34,13 @@ El siguiente ejemplo ilustra el funcionamiento de Mod con diferentes argumentos.  vlResult:=Mod(4;2) // vlResult vale 0  vlResult:=Mod(3.5;2) // vlResult vale 0 ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 98 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md index cb4fae7b1e896a..e7f398dd4c1e10 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md @@ -41,4 +41,13 @@ El siguiente ejemplo muestra una utilización típica de Modified record: [Modified](modified.md) [Old](old.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 314 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md index e29e6921b6ead0..7901481702fec3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Modified** devuelve **True** si un valor ha sido asignado por programación a *campo* o si ha sido modificado durante la entrada de datos. El comando **Modified**debe utilizarse únicamente en un método de formulario (o una subrutina llamada por un método de formulario). @@ -69,4 +66,13 @@ Selecciona un registro para la tabla *\[unaTabla\]*, luego llama múltiples subr #### Ver también [Form event code](form-event-code.md) -[Old](old.md) \ No newline at end of file +[Old](old.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 32 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md index 21bc0af1638cdd..7e65513f8bc38c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando MODIFY RECORD permite al usuario modificar el registro actual de la tabla *tabla* o de la tabla por defecto si se omite el parámetro *tabla*. MODIFY RECORD carga el registro, si no se ha cargado por el proceso actual y muestra el formulario de entrada actual. Si no hay registro actual, entonces MODIFY RECORD no hace nada. MODIFY RECORD no afecta la selección actual. @@ -50,4 +47,15 @@ La variable sistema OK toma el valor 1 si se acepta el registro y 0 si se cancel [Locked](locked.md) [Modified record](modified-record.md) [READ WRITE](read-write.md) -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 57 | +| Hilo seguro | ✗ | +| Modifica variables | OK | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md index 38121e837e2378..37bcf232b7ff2f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción MODIFY SELECTION es casi idéntico al comando [DISPLAY SELECTION](display-selection.md "DISPLAY SELECTION"). Consulte la descripción del comando [DISPLAY SELECTION](display-selection.md "DISPLAY SELECTION") para una descripción detallada. Las diferencias entre los dos comandos son: @@ -32,4 +29,14 @@ displayed_sidebar: docs *Conjuntos* [DISPLAY SELECTION](display-selection.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 204 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md index ae528954c8d04a..8c48e13539d64b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md @@ -138,4 +138,13 @@ Ver el ejemplo de **[START MONITORING ACTIVITY](start-monitoring-activity.md)** #### Ver también [START MONITORING ACTIVITY](start-monitoring-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1713 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md index 6f04ef6691381e..de1ba3a6c8ad2d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando Month of devuelve el mes de *fecha*. - -**Nota:** Month of devuelve el número del mes, no el nombre. (ver ejemplo 1). +El comando Month of devuelve el mes de *fecha*.Month of devuelve el número del mes, no el nombre. (ver ejemplo 1). Para comparar el valor devuelto por esta función, 4D ofrece las siguientes constantes predefinidas, que se encuentran en el tema "Days and Months": @@ -53,4 +51,13 @@ Ver el ejemplo del comando [Current date](current-date.md "Current date"). #### Ver también [Day of](day-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 24 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md index ba133c1a060f76..f37b4d382fb83d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md @@ -39,4 +39,13 @@ Ver el ejemplo del comando [Pop up menu](pop-up-menu.md "Pop up menu"). [ON EVENT CALL](on-event-call.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 468 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md index da48369e7d2acc..627e851dd94d01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md @@ -50,4 +50,14 @@ El siguiente ejemplo mueve el documento DocName: #### Ver también -[COPY DOCUMENT](copy-document.md) \ No newline at end of file +[COPY DOCUMENT](copy-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 540 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md index 9481697194dc8f..42a6b4131247b9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md @@ -109,4 +109,13 @@ Si quiere que el array de nombres se utilice como tercer criterio de ordenación [ORDER BY](order-by.md) [SELECTION TO ARRAY](selection-to-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 718 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md index d7a4c9d03b908c..e3e08754851bba 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md @@ -54,4 +54,13 @@ Desea guardar una llave de cifrado en un archivo .4DKeyChain: [Discover data key](discover-data-key.md) [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[Register data key](register-data-key.md) \ No newline at end of file +[Register data key](register-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1611 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md index 8fba0bd93554bd..5ef358e18448f1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción New list crea una nueva lista jerárquica vacía en memoria y devuelve su número de referencia único. @@ -46,4 +43,13 @@ Ver el ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST"). [DELETE FROM LIST](delete-from-list.md) [INSERT IN LIST](insert-in-list.md) [LIST TO BLOB](list-to-blob.md) -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 375 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md index 3a43b2e74f60d0..bd508f41851fe4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md @@ -30,3 +30,14 @@ El archivo se renombra con los números de backup´actuales de la base y el arch En caso de que se presente un error, el comando genera un código que puede interceptarse utilizando el comando [ON ERR CALL](on-err-call.md "ON ERR CALL"). + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 926 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md index ef4b82b3893a6e..ca063fd5abbba3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md @@ -105,4 +105,13 @@ Con este comando, puede fácilmente manejar objetos en bucles: #### Ver también -[New shared object](new-shared-object.md) \ No newline at end of file +[New shared object](new-shared-object.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1471 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md index 5a1723cee4fd2f..82c15c30da8f41 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md @@ -107,4 +107,13 @@ En el editor de barras de menús, puede reemplazar ADD CUSTOMERS por el método [Execute on server](execute-on-server.md) *Procesos* -*Procesos 4D apropiativos* \ No newline at end of file +*Procesos 4D apropiativos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 317 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md index 973e0a58c03bcf..189a924f3e7314 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md @@ -66,4 +66,13 @@ Usted desea crear y modificar un objeto compartido. La estructura debe llamarse [New object](new-object.md) [New shared collection](new-shared-collection.md) -*Objetos y colecciones compartidos* \ No newline at end of file +*Objetos y colecciones compartidos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1526 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md index 53cc4b212847b3..b3c628893b7310 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md @@ -29,4 +29,14 @@ Ver el ejemplo del comando [DISPLAY RECORD](display-record.md "DISPLAY RECORD"). [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 51 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md index 71557e73c12178..4c94d541698582 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción @@ -25,4 +22,13 @@ El comando Next window devuelve el número de referencia de la ventana ubicada #### Ver también -[Frontmost window](frontmost-window.md) \ No newline at end of file +[Frontmost window](frontmost-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 448 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md index 4cd99fd000ff1f..8a471fe565cbf0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md @@ -42,4 +42,13 @@ En una base que contiene un formulario de proyecto llamado “ElFormulario” y #### Ver también -[DEFAULT TABLE](default-table.md) \ No newline at end of file +[DEFAULT TABLE](default-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 993 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md index d0abb783adf69f..ff535fc101d56b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md @@ -31,4 +31,13 @@ Este ejemplo asigna primero Verdadero a una variable, luego cambia el valor de l #### Ver también [False](false.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 34 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md index 3c284114b8cc7c..febdeff7c14fc0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando NOTIFY RESOURCES FOLDER MODIFICATION permite "forzar" el envío por 4D Server de una notificación indicando a todos los puestos 4D conectados que el contenido de la carpeta Resources de la base ha sido modificado, de manera que puedan sincronizar su carpeta Resources local. @@ -35,4 +32,13 @@ El parámetro actual puede estar definido: #### Ver también -[Get 4D folder](get-4d-folder.md) \ No newline at end of file +[Get 4D folder](get-4d-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1052 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md index 8c2a5a11bca7cf..8aa10ea618dbf8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md @@ -131,4 +131,13 @@ Aquí están los diferentes resultados del comando [Undefined](undefined.md) as [Is field value Null](is-field-value-null.md) [OB SET NULL](ob-set-null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1517 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md index 9a07844443407b..1bf66d2c7a2a32 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md @@ -86,4 +86,13 @@ Este ejemplo compara los resultados obtenidos dependiendo del separador “actua [Bool](bool.md) [GET SYSTEM FORMAT](get-system-format.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 11 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md index e8285020c911f7..0d5a462059b375 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md @@ -42,4 +42,13 @@ Luego, en un método, puedes escribir: #### Ver también -[OB Instance of](ob-instance-of.md) \ No newline at end of file +[OB Instance of](ob-instance-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1730 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md index 1f9dd63190ca00..56d1bbb83344ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md @@ -20,9 +20,6 @@ displayed_sidebar: docs #### Descripción El comando **OB Copy** devuelve un objeto que contiene una copia completa de las propiedades, sub objetos y valores de *objeto*. - -* Primera sintaxis: **OB Copy(object{; resolvePtrs})** - Si el *objeto* contiene valores de tipo de puntero, por defecto la copia también contiene los punteros. Sin embargo, puede resolver los punteros al momento de la copia pasando **True** en el parámetro *resuelvePunt*. En este caso, cada puntero presente como valor en *objeto* se evalúa al momento de la copia y se utiliza su valor desreferenciado. **Nota:** si las propiedades del *objeto* son objetos compartidos o colecciones compartidas, se convierten en objetos o colecciones estándar (no compartidos) en la copia devuelta. Use the second syntax if you want to return shared elements (see below). @@ -166,4 +163,13 @@ Queremos copiar *$sharedObj e*n *$sharedColl* pero dado que pertenecen a diferen #### Ver también [OB Get](ob-get.md) -*Objetos y colecciones compartidos* \ No newline at end of file +*Objetos y colecciones compartidos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1225 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md index 2ae92c3ea705de..6fb55f829100a8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OB Entries** devuelve una colección de objetos que contienen el contenido del *objeto* como pares de propiedades llave/valor. @@ -56,4 +53,13 @@ El uso de un objeto como un mapa hash (sistema llave/valor) ofrece un acceso rá #### Ver también [OB Keys](ob-keys.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1720 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md index cce85a88bb3e02..7d8a681a45a2e9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB GET ARRAY** recupera en *array*, el array de valores almacenados en la *propiedad* del objeto de lenguaje designado por el parámetro *objeto*. - -*objeto* debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB GET ARRAY** recupera en *array*, el array de valores almacenados en la *propiedad* del objeto de lenguaje designado por el parámetro *objeto*.debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. En el parámetro *propiedad*, pase la etiqueta de la propiedad a leer. Tenga en cuenta que el parámetro *propiedad* tiene en cuenta las mayúsculas y minúsculas. @@ -52,4 +50,13 @@ Queremos cambiar un valor en el primer elemento del array: #### Ver también *Conversiones de tipo entre las colecciones y los arrays 4D* -[OB SET ARRAY](ob-set-array.md) \ No newline at end of file +[OB SET ARRAY](ob-set-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1229 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md index c94ac0bd43073d..902ad81ae543a9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB GET PROPERTY NAMES** devuelve, en *arrProp*, los nombres de las propiedades contenidas en el objeto de lenguaje designados por el parámetro *objeto* . - -*objeto* debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB GET PROPERTY NAMES** devuelve, en *arrProp*, los nombres de las propiedades contenidas en el objeto de lenguaje designados por el parámetro *objeto* .debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. Pase un array texto en el parámetro *arrProp*. Si el array no existe, el comando lo crea y lo redimensiona de forma automática. @@ -97,4 +95,13 @@ Utilizando un elemento de array de objetos: #### Ver también [OB Get type](ob-get-type.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1232 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md index 1158a086cb8d44..3994e11ed1fb2b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB Get type** devuelve el tipo del valor asociado a la *propiedad* del *objeto*. - -*objeto* debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB Get type** devuelve el tipo del valor asociado a la *propiedad* del *objeto*.debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. En el parámetro *propiedad*, pase la etiqueta de la propiedad cuyo tipo quiere conocer. Tenga en cuenta que el parámetro *propiedad* tiene en cuenta las mayúsculas y minúsculas. @@ -53,4 +51,13 @@ Queremos obtener el tipo de valores estándar: #### Ver también [OB GET PROPERTY NAMES](ob-get-property-names.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1230 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md index 256be7b852780a..138321c26d1dbd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB Get** devuelve el valor actual de la *propiedad* del *objeto*, convertido opcionalmente en el *tipo* definido. - -*objeto* debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB Get** devuelve el valor actual de la *propiedad* del *objeto*, convertido opcionalmente en el *tipo* definido.debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. **Nota:** este comando soporta definiciones de atributo en *objetos* 4D Write Pro, como el comando *WP GET ATTRIBUTES* (ver el ejemplo 9). @@ -221,4 +219,13 @@ Desea conocer el tamaño de una imagen almacenada en un atributo objeto: [OB Copy](ob-copy.md) [OB SET](ob-set.md) -*Tipos de campos y variables* \ No newline at end of file +*Tipos de campos y variables* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1224 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md index a56f24b199479d..e6f95b89cfda0d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md @@ -52,4 +52,13 @@ Luego, en un método, puede escribir: #### Ver también -[OB Class](ob-class.md) \ No newline at end of file +[OB Class](ob-class.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1731 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md index 693568b97d2ab5..45fa02672dcf5c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB Is defined** devuelve **True** si *objeto* o *propiedad* se definen y **False** en caso contrario. - -*objeto* debe haber sido creado con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB Is defined** devuelve **True** si *objeto* o *propiedad* se definen y **False** en caso contrario.debe haber sido creado con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. Por defecto, si se omite el parámetro *propiedad*, el comando comprueba que *objeto* esté definido. Un objeto está definido si su contenido se ha sido inicializado. @@ -61,4 +59,13 @@ Esta prueba es equivalente a: #### Ver también -[OB Is empty](ob-is-empty.md) \ No newline at end of file +[OB Is empty](ob-is-empty.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1231 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md index 49669d5667373a..cec083b03facba 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB Is empty** devuelve **True** si *objeto* no está definido o está vacío, y **False** si *objeto* está definido (inicializado) y contiene al menos una propiedad. - -*objeto* debe haber sido creado con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB Is empty** devuelve **True** si *objeto* no está definido o está vacío, y **False** si *objeto* está definido (inicializado) y contiene al menos una propiedad.debe haber sido creado con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. #### Ejemplo @@ -42,4 +40,13 @@ Estos son los diferentes resultados de este comando como también del comando [O #### Ver también -[OB Is defined](ob-is-defined.md) \ No newline at end of file +[OB Is defined](ob-is-defined.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1297 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md index 28dafb70c77891..9e039a8d0aa528 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md @@ -19,3 +19,13 @@ displayed_sidebar: docs El comando **OB Is shared** devuelve **True** si el objeto o colección *aVerificar* es compartido, y **False** en caso contrario (ver *Objetos y colecciones compartidos*). Este comando devuelve **True** si se pasa una selección de entidades compartible en *aVerificar* (ver ). + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1759 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md index daa5aff0e72f64..73d63a6d158a5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OB Keys** devuelve una colección de cadenas que contienen todos los nombres de propiedades enumerables del *objeto*. @@ -46,4 +43,13 @@ Quiere una colección con todos los nombres de propiedad de primer nivel de un o #### Ver también [OB Entries](ob-entries.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1719 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md index 25c9e5ead64b48..fbad034f2fafe1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md @@ -36,4 +36,13 @@ Usted quiere eliminar la propiedad "edad" de un objeto: #### Ver también -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1226 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md index 75f1ace29a43cc..8c82aecddda66a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB SET ARRAY** define el *array* a asociarse a la *propiedad* en el objeto definido por el parámetro *objeto*. - -*objeto* debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB SET ARRAY** define el *array* a asociarse a la *propiedad* en el objeto definido por el parámetro *objeto*.debe haber sido definido con el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. En el parámetro *propiedad*, pase la etiqueta de la propiedad a crear o modificar. Si la propiedad ya existe en *objeto*, su valor se actualiza. Si no existe, se crea. Tenga en cuenta que el parámetro *propiedad* tiene en cuenta las mayúsculas y minúsculas. @@ -131,4 +129,13 @@ Utilizando un array imagen: *Conversiones de tipo entre las colecciones y los arrays 4D* [OB GET ARRAY](ob-get-array.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1227 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md index cebedc5f62c4df..d134d707ddfbd8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB SET NULL** almacena el valor **null** en el objeto de lenguaje designado por el parámetro *objeto* . - -*objeto* debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB SET NULL** almacena el valor **null** en el objeto de lenguaje designado por el parámetro *objeto* .debe haber sido definido utilizando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. En el parámetro *propiedad*, pase la etiqueta de la propiedad en la que desea almacenar el valor **null**. Si la propiedad ya existe en *objeto*, su valor se actualiza. Si no existe, se crea. Tenga en cuenta que el parámetro *propiedad* tiene en cuenta las mayúsculas y minúsculas. @@ -40,4 +38,13 @@ Queremos poner el valor nulo en la propiedad "edad" para Lea: [Null](null.md) [OB GET PROPERTY NAMES](ob-get-property-names.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1233 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md index 345df6dfea8171..d8231c42301bd0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **OB SET** crea o modifica uno o más pares de *propiedad*/*valor* en el objeto de lenguaje designado por el parámetro *objeto*. - -*objeto* debe haber sido definido usando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. +El comando **OB SET** crea o modifica uno o más pares de *propiedad*/*valor* en el objeto de lenguaje designado por el parámetro *objeto*.debe haber sido definido usando el comando [C\_OBJECT](c-object.md) o designar un campo objeto 4D. En el parámetro *propiedad*, pase la etiqueta de la propiedad a crear o modificar. Si la propiedad ya existe en *objeto*, su valor se actualiza. Si no existe, se crea. @@ -197,4 +195,13 @@ Usted desea almacenar una imagen en un campo objeto. Puede escribir: [OB Get](ob-get.md) [OB REMOVE](ob-remove.md) [OB SET ARRAY](ob-set-array.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1220 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md index 70abf027c8e74b..3d1d0c348b57bc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OB Values** devuelve una colección de variantes que contiene todos los valores de propiedad enumerables del *objeto*. @@ -46,4 +43,13 @@ Desea una colección con todos los valores de propiedad de un objeto: #### Ver también [OB Entries](ob-entries.md) -[OB Keys](ob-keys.md) \ No newline at end of file +[OB Keys](ob-keys.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1718 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md index e3025ac3f117b9..723f3e5c831bff 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT DUPLICATE permite crear una copia del objeto designado por el parámetro *objeto* en el contexto del formulario que está siendo ejecutado (modo Aplicación). El formulario de origen, generado en modo Diseño, no se modifica. @@ -102,4 +99,14 @@ Creación de un nuevo botón radio "bRadio6" basado en el botón radio existente [OBJECT Get pointer](object-get-pointer.md) [OBJECT MOVE](object-move.md) -*Objetos de formulario (Acceso)* \ No newline at end of file +*Objetos de formulario (Acceso)* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1111 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md index 24fdeca604d2b2..98c0f3b40cdb57 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get action** devuelve el nombre y (si es el caso) el parámetro de la acción estándar asociada con el objeto designado por los parámetros *objeto* y *\**. @@ -45,4 +42,13 @@ Usted desea asociar la acción "Cancelar" con todos los objetos en el formulario #### Ver también -[OBJECT SET ACTION](object-set-action.md) \ No newline at end of file +[OBJECT SET ACTION](object-set-action.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1457 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md index 79cc52d80ce571..8c3865520f439c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get auto spellcheck** devuelve el estado de la opción Corrección ortográfica automática del o de los objeto(s) designado(s) por los parámetros *objeto* y *\** para el proceso actual . @@ -28,4 +25,13 @@ El comando devuelve **True** cuando la corrección ortográfica automática est #### Ver también -[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) \ No newline at end of file +[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1174 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md index bd15d6c4c50b4b..680fb5705f0385 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET BEST SIZE** devuelve en los parámetros *largOpt* y *altOpt*, el largo y alto “óptimo” del objeto de formulario designado por los parámetros *\** y *objeto*. Estos valores se expresan en píxeles. Este comando es particularmente útil para la visualización o impresión de informes complejos, asociados al comando [OBJECT MOVE](object-move.md). @@ -53,4 +50,13 @@ Consulte el ejemplo en el comando [SET PRINT MARKER](set-print-marker.md "SET PR #### Ver también [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 717 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md index cf4c188fd45f1d..cd382851b790dd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get border style** devuelve el estilo de línea de borde del objeto o de los objetos designado(s) por los parámetros *objeto* y *\**. @@ -40,4 +37,13 @@ El comando devuelve un valor que corresponde al estilo de la línea fronteriza. #### Ver también -[OBJECT SET BORDER STYLE](object-set-border-style.md) \ No newline at end of file +[OBJECT SET BORDER STYLE](object-set-border-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1263 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md index 8562cef63aba69..9d371720e6f573 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get context menu** devuelve el estado actual de la opción "Menú contextual" del objeto o de los objetos designado(s) por los parámetros *objeto* y *\** . @@ -30,4 +27,13 @@ El comando devuelve **True** si el menú contextual está activo para el objeto #### Ver también -[OBJECT SET CONTEXT MENU](object-set-context-menu.md) \ No newline at end of file +[OBJECT SET CONTEXT MENU](object-set-context-menu.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1252 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md index 34bace7ae0d186..ed332599079928 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET COORDINATES**devuelve las coordenadas *izquierda*, *superior*, *derecha* e *inferior* (en puntos) en las variables o campos de los objetos del formulario actual definido por los parámetros *\** y *objeto*. @@ -86,4 +83,13 @@ El método devuelve las coordenadas teóricas. Si el listbox es redimensionado, [CONVERT COORDINATES](convert-coordinates.md) [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) [OBJECT MOVE](object-move.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 663 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md index a8f5954422d229..421847b5a159ad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get corner radius** devuelve el valor actual del radio de la esquina para el objeto designado por el parámetro *objeto*. Este valor puede haber sido definido a nivel del formulario utilizando la *propiedad radio de esquina* o para el proceso actual con el comando [OBJECT SET CORNER RADIUS](object-set-corner-radius.md). @@ -48,4 +45,13 @@ El siguiente código puede añadirse a un método de un botón: #### Ver también -[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) \ No newline at end of file +[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1324 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md index a15186631d318e..f9f0a4fb58c6f2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get data source** devuelve la fuente de datos actual de los objetos designados por los parámetros *objeto* y *\** . @@ -43,4 +40,13 @@ Ejecuta el siguiente código: #### Ver también -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1265 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md index 45f1ebcffd3f89..452771b6b953fd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET DRAG AND DROP OPTIONS** devuelve las opciones de arrastrar y soltar para el objeto o los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -38,4 +35,13 @@ Cada parámetro devuelve True o False dependiendo de si la opción correspondien #### Ver también -[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) \ No newline at end of file +[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1184 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md index 16df59caebe550..d556137b2462fe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get enabled devuelve True si el objeto o grupo de objetos designado por objeto está activo en el formulario y False si no está activo. @@ -36,4 +33,13 @@ Este comando se puede aplicar a los siguientes tipos de objetos: #### Ver también -[OBJECT SET ENABLED](object-set-enabled.md) \ No newline at end of file +[OBJECT SET ENABLED](object-set-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1079 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md index ad6cb32d7b7a22..42185ffbc89e8c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get enterable devuelve True si el objeto o grupo de objetos designado por *objeto* tiene el atributo **editable**; de lo contrario, devuelve False. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr #### Ver también -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1067 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md index 731eaa1e163869..9806b0f8660dc8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET EVENTS** permite obtener la configuración actual de los eventos formulario del formulario, del objeto o de los objetos designado(s) por los parámetros *objeto* y *\**. @@ -48,4 +45,13 @@ Usted quiere activar dos eventos y obtener la lista de eventos para un objeto: #### Ver también -[OBJECT SET EVENTS](object-set-events.md) \ No newline at end of file +[OBJECT SET EVENTS](object-set-events.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1238 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md index 1fa66f1efea483..7ab7dec50a18cd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get filter devuelve el nombre de todo filtro asociado con el objeto o grupo de objetos designado por *objeto*. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr #### Ver también -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1073 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md index d508ac2ed42cba..3e5059c46b0a8e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get focus rectangle invisible** devuelve el estado de la opción de invisibilidad del rectángulo de foco del objeto o de los objetos designados por los parámetros *objeto* y *\** para el proceso actual. Esta configuración corresponde a la opción **Ocultar rectángulo de foco** disponible para los objetos editables en la Lista de propiedades en modo Diseño. Este comando devuelve el estado actual de la opción, como se definió en modo Diseño o utilizando el comando [OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md). @@ -30,4 +27,13 @@ El comando devuelve **True** si el rectángulo de foco está oculto y **False** #### Ver también -[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1178 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md index 1336e8cd262e06..89441bae1a53cb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get font size devuelve el tamaño (en puntos) de la fuente utilizada por el objeto de formulario designado por *objeto*. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr #### Ver también -[OBJECT SET FONT SIZE](object-set-font-size.md) \ No newline at end of file +[OBJECT SET FONT SIZE](object-set-font-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1070 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md index 03e956c80b6349..b222becb15b12f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get font style devuelve el estilo actual de la fuente utilizada por el objeto de formulario designado por *objeto*. @@ -35,4 +32,13 @@ Puede comparar el valor devuelto por el comando con el valor de uno o más de la #### Ver también -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1071 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md index 176f4987fe4a69..5deeb01ec1ca55 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get font devuelve el nombre de la fuente utilizada por el objeto de formulario designado por *objeto*. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr #### Ver también -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1069 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md index 6bcb61a0970f23..32fc31244d3c69 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get format devuelve el formato de salida actual aplicado al objeto especificado en el parámetro *objeto*. @@ -65,4 +62,13 @@ Customized formats are returned untouched: #### Ver también -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 894 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md index 098da1c35e6dd1..2467d08bb77bb0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get help tip** devuelve el mensaje de ayuda asociado al objeto o a los objetos designados por los parámetros *objeto* y *\** en el proceso actual. @@ -38,4 +35,13 @@ El título de un botón imagen se guarda en forma de mensaje de ayuda. Este tít #### Ver también -[OBJECT SET HELP TIP](object-set-help-tip.md) \ No newline at end of file +[OBJECT SET HELP TIP](object-set-help-tip.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1182 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md index 477bf2acee47dd..e21d1440221d20 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get horizontal alignment** devuelve un código indicando el tipo de alineación horizontal aplicada al objeto designado por los parámetros *objeto* y *\**. @@ -60,4 +57,13 @@ Los objetos de formulario a los cuales se puede aplicar alineación son los sigu [OBJECT Get vertical alignment](object-get-vertical-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 707 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md index 2a5d5ca4020a48..4a89825fba9968 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get indicator type** devuelve el tipo del indicador actual asignado al termómetro(s) designado por los parámetros *objeto* y *\**. @@ -36,4 +33,13 @@ Puede comparar el valor devuelto por el comando con las siguientes constantes, q #### Ver también -[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) \ No newline at end of file +[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1247 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md index f5417ddc50be03..a28e85105ae838 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get keyboard layout** devuelve la configuración del teclado actual asociada a los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -28,4 +25,13 @@ El comando devuelve una cadena indicando el código del lenguaje utilizado, basa #### Ver también -[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) \ No newline at end of file +[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1180 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md index 5e729bb95fbeb3..d3a90c70355be5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get list name devuelve el nombre de la lista asociada al objeto o a un grupo de objetos designados por *objeto*. 4D le permite asociar una lista de opciones (creada con el editor de la listas en modo Diseño) a los objetos de formulario utilizando el editor de formularios o el comando [OBJECT SET LIST BY NAME](object-set-list-by-name.md). @@ -39,4 +36,13 @@ Si ninguna lista del tipo definido está asociada al *objeto*, el comando devuel #### Ver también [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1072 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md index f2657aec009a45..dc7507b00ea463 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get list reference** devuelve el número de referencia (*RefList*) de la lista jerárquica asociada al objeto o grupo de objetos designados por los parámetros *objeto* y *\** . @@ -39,4 +36,13 @@ Si no hay una lista jerárquica asociada al objeto para el *tipoLista* definido, #### Ver también [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1267 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md index cebe8650d05968..2f346fb9302b63 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET MAXIMUM VALUE** devuelve, en la variable valorMax, el valor máximo actual del objeto o de los objetos designados por los parámetros *objeto* y *\** . @@ -32,4 +29,13 @@ Si pasa el parámetro opcional *\** indica que el parámetro *objeto* es un nomb #### Ver también [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1245 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md index 363d4088b976d7..ed9d9ca4e536f6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET MINIMUM VALUE** devuelve, en la variable *valorMin*, el valor mínimo actual del objeto o de los objetos designado(s) por los parámetros *objeto* y *\**. @@ -29,4 +26,13 @@ Si pasa el parámetro opcional *\** indica que el parámetro *objeto* es un nomb #### Ver también [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1243 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md index 97f655f29b22c2..8e1a70ad6512fb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get multiline** devuelve el estado actual de la opción "Multilínea" del objeto o de los objetos designado(s) por los parámetros *objeto* y *\** . @@ -39,4 +36,13 @@ El valor devuelto corresponde a una de las siguientes constantes del tema "*Prop #### Ver también -[OBJECT SET MULTILINE](object-set-multiline.md) \ No newline at end of file +[OBJECT SET MULTILINE](object-set-multiline.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1254 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md index 1de0fa780289f7..938cda34d501bb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get name devuelve el nombre de un objeto de formulario. @@ -40,4 +37,13 @@ Después de la ejecución de este método objeto, la variable *$btnName* contien [OBJECT Get pointer](object-get-pointer.md) *Objetos (Formularios)* -*Objetos de formulario (Acceso)* \ No newline at end of file +*Objetos de formulario (Acceso)* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1087 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md index 171f534d14dfa6..69026c9331d3fa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get placeholder** devuelve el texto de ejemplo asociado al objeto o a los objetos designado(s) por los parámetros *objeto* y *\**. Si no hay ningún texto del marcador asociado con el objeto, el comando devuelve una cadena vacía. @@ -38,4 +35,13 @@ Si quiere recibir el texto del marcador de campo: #### Ver también -[OBJECT SET PLACEHOLDER](object-set-placeholder.md) \ No newline at end of file +[OBJECT SET PLACEHOLDER](object-set-placeholder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1296 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md index 2f3b4b0df7c43d..49b5651af5ed81 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get pointer** devuelve un puntero a la variable de un objeto de formulario. @@ -58,4 +55,13 @@ Dado un formulario "SF" utilizado dos veces como subformulario en el mismo formu [OBJECT Get subform container value](object-get-subform-container-value.md) *Objetos (Formularios)* *Objetos de formulario (Acceso)* -[Self](self.md) \ No newline at end of file +[Self](self.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1124 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md index 256b03a36ea997..af9a720c62f2c5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET PRINT VARIABLE FRAME** obtiene la configuración actual de las opciones de impresión en tamaño variable del objeto o de los objetos designado(s) por los parámetros *objeto* y *\** . @@ -37,4 +34,13 @@ Si el *objeto* es un subformulario y si la impresión en tamaño variable está #### Ver también -[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) \ No newline at end of file +[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1241 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md index 046012c6b9a83a..8465268d6ae271 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET RESIZING OPTIONS** devuelve las opciones de redimensionamiento actuales del o de los objetos designados por los parámetros *objeto* y *\**. @@ -45,4 +42,13 @@ El parámetro *vertical* devuelve un valor indicando la opción de redimensionam #### Ver también -[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) \ No newline at end of file +[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1176 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md index e46609b1b33cde..9c595be720d517 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT GET RGB COLORS devuelve los colores de fondo y primer plano del objeto o grupo de objetos designados por *objeto*. @@ -37,4 +34,13 @@ Para obtener más información acerca del formato de los parámetros *colorPrime #### Ver también -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1074 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md index efd050b821b264..5f06cd6c50c0c3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción OBJECT GET SCROLL POSITION devuelve, en los parámetros *posicionLinea* y *posicionH*, información relacionada con la posición de las barras de desplazamiento del objeto de formulario designado por los parámetros *\** y *objeto*. @@ -33,4 +30,13 @@ Si *objeto* designa una imagen (variable o campo), *posicionLinea* devuelve el d #### Ver también -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1114 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md index 099855e1696d5b..784ce24ae25e4b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT GET SCROLLBAR se utiliza para mostrar u ocultar las barras de desplazamiento horizontal y/o vertical en el objeto designado por los parámetros *objeto* y *\**. @@ -46,4 +43,13 @@ Para obtener más información, consulte la descripción del comando [OBJECT SET #### Ver también -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1076 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md index ac36cb11a091c6..1ad467dbf4df07 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET SHORTCUT** devuelve el atajo de teclado asociado al objeto o a los objetos designados por los parámetros *objeto* y *\** en el proceso actual. @@ -43,4 +40,13 @@ Si ninguna tecla de modificación se ha definido para el atajo, modificadores de #### Ver también -[OBJECT SET SHORTCUT](object-set-shortcut.md) \ No newline at end of file +[OBJECT SET SHORTCUT](object-set-shortcut.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1186 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md index 85f57ab43d4f2f..f0f2ee0d0711ef 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get style sheet** devuelve el nombre de la hoja de estilos asociada al objeto o a los objetos designado(s) por los parámetros *objeto* y *\** . @@ -48,4 +45,13 @@ En la **arquitectura proyecto**, este comando sólo soporta las tres hojas de es #### Ver también *Estilos de fuente* -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1258 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md index 26bdcd2c713c25..97548794ddc9f4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET SUBFORM CONTAINER SIZE** devuelve el *ancho* y el *alto* (en píxeles) de un objeto subformulario "actual", mostrado en el formulario padre. @@ -33,4 +30,13 @@ El evento On Resize se genera en el método formulario del subformulario si el o #### Ver también [OBJECT GET SUBFORM](object-get-subform.md) -[OBJECT SET SUBFORM](object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1148 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md index 0a1362e3c7be9b..fe1d2abd515b39 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción The **OBJECT Get subform container value** command returns the current value of the data source bound with the subform container displayed in the parent form. @@ -57,4 +54,13 @@ As a result, at runtime, updating the value of the main form's Input object also [Form](form.md) [OBJECT Get pointer](object-get-pointer.md) -[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) \ No newline at end of file +[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1785 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md index 43bc5c4dfc45f6..e28b3e215bf73f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT GET SUBFORM** obtiene los nombres del o de los formulario(s) asociado(s) al objeto subformulario designado por los parámetros *objeto* y *\**. @@ -41,4 +38,13 @@ Si no hay formulario listado, se devuelve una cadena vacía en el parámetro *su #### Ver también [OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) -[OBJECT SET SUBFORM](object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1139 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md index 212efe356132f7..2e49d13e3e79d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get text orientation** devuelve el valor de orientación actual aplicado al texto del objeto o de los objetos designado(s) por los parámetros *objeto* y *\**. @@ -57,4 +54,13 @@ Cuando se ejecuta el formulario, si se llama a la siguiente declaración: #### Ver también -[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) \ No newline at end of file +[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1283 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md index 02cca99c8690cd..d0d6c7874dcc30 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get three states checkbox** devuelve el estado actual de la propiedad "Tres estados" de la(s) casilla(s) de selección designada(s) por los parámetros *objeto* y *\** . @@ -26,4 +23,13 @@ La propiedad "Tres estados" se puede definir ya sea usando la lista de propiedad #### Ver también -[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) \ No newline at end of file +[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1250 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md index fef43a314e68d7..e05f4df10b8275 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get title devuelve el título (etiqueta) del objeto de formulario designado por *objeto* . @@ -34,4 +31,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom #### Ver también -[OBJECT SET TITLE](object-set-title.md) \ No newline at end of file +[OBJECT SET TITLE](object-set-title.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1068 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md index f1583b18dfb356..eef238e157768a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get type** devuelve el tipo del objeto designado por los parámetros *objeto* y *\** en el formulario actual . @@ -97,4 +94,13 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los #### Ver también [FORM LOAD](form-load.md) -[LISTBOX GET OBJECTS](listbox-get-objects.md) \ No newline at end of file +[LISTBOX GET OBJECTS](listbox-get-objects.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1300 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md index 2aba8bfb3b5288..c42cd8d6018c29 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get value** devuelve el valor actual de la fuente de datos para los objetos de formulario designados por el parámetro *nomObjeto*. @@ -40,4 +37,13 @@ Ver el ejemplo para el comando [OBJECT SET VALUE](object-set-value.md). #### Ver también -[OBJECT SET VALUE](object-set-value.md) \ No newline at end of file +[OBJECT SET VALUE](object-set-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1743 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md index d1a2a1a086e15f..b1fd6ebd118b8f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Get vertical alignment** devuelve un valor indicando el tipo de alineación vertical aplicada al objeto designado por los parámetros *objeto* y *\**. @@ -44,4 +41,13 @@ La alineación vertical puede aplicarse a los siguientes tipos de objetos de for [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1188 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md index 4743914ecbe643..93496d42c42cbd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT Get visible devuelve True si el objeto o grupo de objetos designado por *objeto* tiene el atributo visible y de lo contrario False. @@ -26,4 +23,13 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr #### Ver también -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1075 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md index e184c0ecf76d3f..dac8eac3d6d5fa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT Is styled text** devuelve **True** sila opción "Multiestilo" está seleccionada para el(los) objeto(s) designado(s) por los parámetros *objeto* y *\** . @@ -44,4 +41,13 @@ Un formulario contiene un campo representado por dos objetos diferentes, uno de #### Ver también -*Texto multiestilo* \ No newline at end of file +*Texto multiestilo* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1261 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md index 8a0f3753d9ffd9..9a205dec2ca3f3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT MOVE permite mover los objetos en el formulario actual, definido por los parámetros *\** y *objeto, moveH* píxeles horizontalmente y *moveV* píxeles verticalmente. @@ -68,4 +65,13 @@ La siguiente instrucción mueve el botón “boton\_1” a las siguientes coorde [OBJECT DUPLICATE](object-duplicate.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 664 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md index e1b62ae579317e..0c08b65cbe3c4e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET ACTION** modifica, para el proceso actual, la acción estándar asociada al objeto o a los objetos designado(s) por los parámetros *objeto* y *\** . @@ -43,4 +40,13 @@ Usted desea asociar la acción estándar **Validate** con un botón: #### Ver también -[OBJECT Get action](object-get-action.md) \ No newline at end of file +[OBJECT Get action](object-get-action.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1259 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md index 3e252457bad805..924c06786d96be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET AUTO SPELLCHECK** permite definir o modificar dinámicamente el estado de la opción **Corrección ortográfica** de los objetos designados por los parámetros *objeto* y *\** para el proceso actual. Esta opción activa o desactiva la corrección ortográfica automática durante la entrada para el objeto (objetos de tipo texto únicamente). @@ -28,4 +25,13 @@ Pase **True** en *correccionAuto* para activar esta función para objeto y **Fal #### Ver también -[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) \ No newline at end of file +[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1173 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md index a05ebcff28ffd7..dfecf8484ee98a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET BORDER STYLE** modifica el estilo de línea del borde del objeto(s) designada por los parámetros *objeto* y *\** . @@ -40,4 +37,13 @@ En el parámetro *estiloBorde*, pase el valor del estilo de la línea fronteriza #### Ver también -[OBJECT Get border style](object-get-border-style.md) \ No newline at end of file +[OBJECT Get border style](object-get-border-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1262 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md index c740de0a564455..0e01e1e378f1e5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET CONTEXT MENU** activa o desactiva, para el proceso actual, la asociación de un menú contextual por defecto al objeto o a los objetos designado(s) por los parámetros *objeto* y *\** . @@ -30,4 +27,13 @@ Pase **True** en el parámetro *menuContext* para activar el menú contextual, y #### Ver también -[OBJECT Get context menu](object-get-context-menu.md) \ No newline at end of file +[OBJECT Get context menu](object-get-context-menu.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1251 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md index ea03b7845c82bb..47579d832b55cf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET COORDINATES** modifica la ubicación y, opcionalmente, el tamaño del objeto o de los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -56,4 +53,13 @@ La siguiente declaración ubica el objeto "button\_1" en las coordenadas (10,20) [CONVERT COORDINATES](convert-coordinates.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1248 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md index 3009033ee42437..96c913f780db6a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET CORNER RADIUS** modifica el *radio* de las esquinas de los objetos pasados en el parámetro *objeto*. El nuevo radio sólo se define para el proceso y no se guarda en el formulario. @@ -67,4 +64,13 @@ Tenga en cuenta que para las áreas de texto (así como las entradas), a diferen #### Ver también -[OBJECT Get corner radius](object-get-corner-radius.md) \ No newline at end of file +[OBJECT Get corner radius](object-get-corner-radius.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1323 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md index 4a258b307e22f3..25b2f08dd5fd45 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET DATA SOURCE** modifica la fuente de datos de los objetos designados por los parámetros *objeto* y *\** . @@ -51,4 +48,13 @@ Cambio de la fuente de datos para un área de entrada: #### Ver también [LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) -[OBJECT Get data source](object-get-data-source.md) \ No newline at end of file +[OBJECT Get data source](object-get-data-source.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1264 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md index ada1060aca2e8e..5684be868a7a05 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET DRAG AND DROP OPTIONS** define o modifica dinámicamente las opciones de arrastrar y soltar para el objeto o los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -44,4 +41,13 @@ Definición de un área de texto en arrastrar y soltar auto: #### Ver también -[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) \ No newline at end of file +[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1183 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md index a01fc2b6685435..d41bb4cae5a91f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET ENABLED utilizado para activar o desactivar el objeto o grupo de objetos especificado por *objeto* en el formulario actual. @@ -40,4 +37,13 @@ Este comando se puede aplicar a los siguientes tipos de objetos: #### Ver también -[OBJECT Get enabled](object-get-enabled.md) \ No newline at end of file +[OBJECT Get enabled](object-get-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1123 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md index a807728402843a..607112100dd43e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET ENTERABLE** \]vuelve editables o no editables los objetos de formulario especificados por *objeto* y puede definir el atributo enfocable. @@ -74,4 +71,13 @@ Este es el método de objeto de una casilla de selección ubicada en el encabeza #### Ver también [OBJECT Get enterable](object-get-enterable.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 238 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md index 294ecfffdafd06..f851bde9b4e72e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET EVENTS** modifica, para el proceso actual, la configuración de los eventos formulario del formulario u objetos designados por los parámetros *objeto* y *\** . @@ -167,4 +164,13 @@ Desactivación de un solo evento del formulario sin modificar los otros: #### Ver también *Eventos formulario* -[OBJECT GET EVENTS](object-get-events.md) \ No newline at end of file +[OBJECT GET EVENTS](object-get-events.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1239 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md index 1779c6bc6625ac..db3d20cca161fe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción OBJECT SET FILTER reemplaza el filtro de entrada para los objetos especificados por *objeto* por *filtroEntrada*. @@ -57,4 +54,13 @@ El siguiente ejemplo permite únicamente la entrada de las letras “a,” “b, #### Ver también [OBJECT Get filter](object-get-filter.md) -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 235 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md index 21c5a2eddba215..9b8e3dc8dc9270 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET FOCUS RECTANGLE INVISIBLE** permite definir o modificar dinámicamente la opción invisibilidad del rectángulo de foco del objeto designado por los parámetros *objeto* y *\** para el proceso actual. Esta configuración corresponde a la opción **Ocultar rectángulo de foco** disponible para los objetos editables en la Lista de propiedades en modo Diseño. @@ -30,4 +27,13 @@ Pase **True** en el parámetro *invisible* para ocultar el rectángulo de foco y #### Ver también -[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1177 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md index ef06a7d9fab86a..ee5ac81ea73279 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **OBJECT SET FONT SIZE** define los objetos formulario especificados por *objeto* para mostrarse utilizando el tamaño de fuente que se pasa en *tamaño*. @@ -51,4 +48,13 @@ El siguiente ejemplo define el tamaño de fuente para todos los objetos de formu *Interacción de comandos genéricos con textos multiestilos* [OBJECT Get font size](object-get-font-size.md) [OBJECT SET FONT](object-set-font.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 165 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md index dd7ce8cc1e8e43..e092af131105ef 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción OBJECT SET FONT STYLE asigna el estilo de fuente de *estilos* a los objetos de formulario especificados por *objeto*. @@ -55,4 +52,13 @@ Este ejemplo define el estilo de fuente Plain para todos los objetos de formular [OBJECT Get font style](object-get-font-style.md) [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 166 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md index 2eb66cd6af61b5..837b53f75b2cf5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción OBJECT SET FONT muestra el *objeto* utilizando la fuente especificada en el parámetro *fuente*. El parámetro *fuente* debe contener un nombre de fuente válido. @@ -62,4 +59,13 @@ El siguiente ejemplo utiliza la opción especial *%password*, diseñada para la *Interacción de comandos genéricos con textos multiestilos* [OBJECT Get font](object-get-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 164 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md index 2777c6031d8c43..9478acfa9e637e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **OBJECT SET FORMAT** reemplaza el formato de salida para los objetos especificados por *objeto* por el formato que pasa en *formatSalida*. El nuevo formato se utiliza únicamente para la visualización actual, no se guarda con el formulario. @@ -360,4 +357,13 @@ Pase un termómetro a modo "Barber shop" [GET SYSTEM FORMAT](get-system-format.md) [OBJECT Get format](object-get-format.md) -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 236 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md index 96511eb55b2ce8..6baa2b5f00cf92 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET HELP TIP** permite definir o modificar dinámicamente el mensaje de ayuda asociado al objeto o los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -137,4 +134,13 @@ El resultado es... #### Ver también [OBJECT Get help tip](object-get-help-tip.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1181 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md index 436eb76593f848..7e49a4e388ddc8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET HORIZONTAL ALIGNMENT** permite determinar el tipo de alineación aplicado al objeto o a los objetos designados por los parámetros *objeto* y *\**. @@ -58,4 +55,13 @@ Los objetos de formulario a los cuales puede aplicar este comando son los siguie [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 706 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md index e11d3e26b91bed..ab2aa84cd9d5b0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET INDICATOR TYPE** modifica el tipo de indicador de progresión del o de los termómetro(s) designado(s) por los parámetros *objeto* y *\** en el proceso actual. @@ -36,4 +33,13 @@ En el parámetro *indicador*, pase el tipo de indicador a mostrar. Puede utiliza #### Ver también -[OBJECT Get indicator type](object-get-indicator-type.md) \ No newline at end of file +[OBJECT Get indicator type](object-get-indicator-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1246 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md index 65b69f02740359..c28eb0299cf921 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET KEYBOARD LAYOUT** permite definir o modificar dinámicamente la configuración de teclado asociada al objeto o los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -28,4 +25,13 @@ En *codigoLeng*, pase una cadena indicando el código del lenguaje a utilizar, b #### Ver también -[OBJECT Get keyboard layout](object-get-keyboard-layout.md) \ No newline at end of file +[OBJECT Get keyboard layout](object-get-keyboard-layout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1179 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md index 8527b7d7da0ba6..826880f0ad161b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET LIST BY NAME define, reemplaza o disocia la lista asociada al objeto o al grupo de objetos designado por *objeto.* La lista cuyo nombre se pasa en el parámetro *lista* debe haber sido creada en el editor de listas en el entorno Diseño*.* @@ -94,4 +91,13 @@ Usted quiere eliminar la lista de asociaciones: #### Ver también [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 237 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md index 5181154d843527..67a5400b77a7af 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET LIST BY REFERENCE** define o remplaza la lista asociada con el objeto u objetos definidos por los parámetros *objeto* y *\**, con la lista jerárquica definida en el parámetro *lista*. @@ -129,4 +126,13 @@ Con el fin de actualizar la lista asociada al pop-up gestionado por array, es ne #### Ver también [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1266 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md index bb63e8d2f3839a..db118d648f79b1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET MAXIMUM VALUE** modifica el valor máximo del objeto o de los objetos designado(s) por los parámetros *objeto* y *\** para el proceso actual. @@ -31,4 +28,13 @@ En *valorMax*, pase el nuevo valor máximo que desea asignar al objeto para el p #### Ver también [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1244 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md index 4d261be9afeec6..3dcae4208453f2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET MINIMUM VALUE** modifica el valor mínimo del objeto o de los objetos designado(s) por los parámetros *objeto* y *\** para el proceso actual. @@ -31,4 +28,13 @@ En *valorMinimo*, pase el nuevo valor mínimo a asignar al objeto para el proces #### Ver también [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1242 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md index d5f308a526ac4a..73d0a6be3c9c42 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET MULTILINE** modifica la propiedad "Multilínea" del objeto(s) designada por los parámetros *objeto* y *\** . @@ -44,4 +41,13 @@ Usted quiere prohibir varias líneas en un área de entrada: #### Ver también -[OBJECT Get multiline](object-get-multiline.md) \ No newline at end of file +[OBJECT Get multiline](object-get-multiline.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1253 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md index 4a0015d24199d9..fb7a4ed95a8952 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET PLACEHOLDER** asocia un texto de ejemplo al objeto o a los objetos designados por los parámetros *objeto* y *\** . @@ -46,4 +43,13 @@ Usted quiere mostrar el texto "Buscar" un combo box: #### Ver también -[OBJECT Get placeholder](object-get-placeholder.md) \ No newline at end of file +[OBJECT Get placeholder](object-get-placeholder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1295 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md index 6a196bb217c3c4..4b4fbdd3f03447 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET PRINT VARIABLE FRAME** modifica la propiedad de marco de impresión variable del objeto o de los objetos designados por los parámetros *objeto* y *\**. @@ -43,4 +40,13 @@ El parámetro opcional *subformFijo* le permite configurar una opción adicional #### Ver también -[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) \ No newline at end of file +[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1240 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md index 3e03b5193f265e..4c33f2e8a62a30 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET RESIZING OPTIONS** permite definir o modificar dinámicamente las opciones de redimensionamiento del objeto o de los objetos designados por los parámetros *objeto* y *\** para el proceso actual. Estas opciones definen la visualización del objeto en caso de redimensionamiento de la ventana del formulario. @@ -44,4 +41,13 @@ En el parámetro *vertical*, pase un valor que indique la opción de redimension #### Ver también -[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) \ No newline at end of file +[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1175 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md index cdd0c8375eb3dd..528d1a6ae354aa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET RGB COLORS** cambia los colores de fondo y primer plano de los objetos especificados por *objeto* y el parámetro opcional *\**. Cuando el comando se aplica a un objeto list box, un parámetro adicional le permite modificar el color alterno de las filas. @@ -105,4 +102,13 @@ Cambia a fondo transparente con un color de fuente claro: #### Ver también [OBJECT GET RGB COLORS](object-get-rgb-colors.md) -[Select RGB Color](select-rgb-color.md) \ No newline at end of file +[Select RGB Color](select-rgb-color.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 628 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md index d000bcacdb1237..98b6de833f049f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET SCROLL POSITION permite desplazar el contenido de varios tipos de objetos: líneas de un subformulario, de un formulario listado mostrado utilizando los comandos [MODIFY SELECTION](modify-selection.md), [DISPLAY SELECTION](display-selection.md) o de una lista jerárquica, líneas y columnas de un list box o incluso los píxeles de una imagen. @@ -91,4 +88,13 @@ Asegúrese de no omitir el segundo parámetro *\** en este caso, de lo contrario [HIGHLIGHT RECORDS](highlight-records.md) [LISTBOX SELECT ROW](listbox-select-row.md) -[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) \ No newline at end of file +[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 906 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md index 7cd55410635193..9fc8496165fe85 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET SCROLLBAR le permite mostrar u ocultar las barras de desplazamiento horizontal o vertical en el objeto designado por los parámetros *objeto* y *\**. @@ -46,4 +43,13 @@ Pase en los parámetros *horizontal* y *vertical* los valores indicando si las b [LISTBOX Get property](listbox-get-property.md) [LISTBOX SET GRID](listbox-set-grid.md) [OBJECT GET SCROLLBAR](object-get-scrollbar.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 843 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md index 6aef0e352ba1ed..aa215494618bc9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET SHORTCUT** permite definir o modificar dinámicamente el atajo de teclado asociado al objeto o a los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -90,4 +87,13 @@ Usted quiere asociar un atajo de teclado diferente en función del lenguaje actu #### Ver también -[OBJECT GET SHORTCUT](object-get-shortcut.md) \ No newline at end of file +[OBJECT GET SHORTCUT](object-get-shortcut.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1185 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md index 4a5695df2e3a12..f5fdb45c683bb1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET STYLE SHEET** modifica, para el proceso actual, la hoja de estilo asociada al objeto(s) designado(s) por los parámetros *objeto* y *\** . Una hoja de estilo modifica la fuente, el tamaño de fuente y (excepto para las hojas de estilo automáticas) el estilo de fuente. @@ -50,4 +47,13 @@ En la **arquitectura proyecto**, este comando sólo soporta las tres hojas de es *Estilos de fuente* [GET STYLE SHEET INFO](get-style-sheet-info.md) [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT Get style sheet](object-get-style-sheet.md) \ No newline at end of file +[OBJECT Get style sheet](object-get-style-sheet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1257 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md index f44b3f3bb4bdf8..3408eb3bc79f19 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción The **OBJECT SET SUBFORM CONTAINER VALUE** command sets the current value of the data source bound with the subform container displayed in the parent form. @@ -33,4 +30,13 @@ A detailed example is available in the [OBJECT Get subform container value](obje #### Ver también [Form](form.md) -[OBJECT Get subform container value](object-get-subform-container-value.md) \ No newline at end of file +[OBJECT Get subform container value](object-get-subform-container-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1784 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md index 034baf51e98a87..ef80e4e4e2cb01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET SUBFORM** permite modificar dinámicamente el formulario detallado así como también, opcionalmente, el formulario listado asociado al objeto subformulario designado por los parámetros *objeto* y *\**. @@ -45,4 +42,13 @@ Cuando modifica un subformulario página, el comando puede ejecutarse en cualqui #### Ver también [OBJECT GET SUBFORM](object-get-subform.md) -[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) \ No newline at end of file +[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1138 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md index a20be5c721ed95..71efaab4783d6a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET TEXT ORIENTATION** modifica la orientación del contenido del objeto o de los objetos designados por los parámetros *objeto* y *\** para el proceso actual. @@ -51,4 +48,13 @@ Desea aplicar una orientación de 270° a una variable en su formulario: #### Ver también -[OBJECT Get text orientation](object-get-text-orientation.md) \ No newline at end of file +[OBJECT Get text orientation](object-get-text-orientation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1284 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md index 5f294a2b4b1d5d..75dee825c4c2be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET THREE STATES CHECKBOX** modifica para el proceso actual, la propiedad de "Tres Estados" de la(s) casilla(s) de selección designada(s) por los parámetros *objeto* y *\** . @@ -32,4 +29,13 @@ En el parámetro *tresEst*, pase **True** para activar el modo "tres estados", o #### Ver también -[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) \ No newline at end of file +[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1249 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md index e587144be4eb50..5861c15550b0e5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET TITLE cambia el título de los objetos especificados por *objeto* y lo reemplaza por el valor pasado en *titulo* *.* @@ -69,4 +66,13 @@ Usted quiere insertar los títulos en dos líneas: #### Ver también -[OBJECT Get title](object-get-title.md) \ No newline at end of file +[OBJECT Get title](object-get-title.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 194 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md index f6ea343349e340..855541f88391ea 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Ejemplo 1 **OBJECT SET VALUE** define el *valor* de la fuente de datos actual para los objetos de formulario designados por el parámetro *nomObjeto*. @@ -41,4 +38,13 @@ Desea obtener el valor de la fuente de datos para un objeto de formulario, obten #### Ver también -[OBJECT Get value](object-get-value.md) \ No newline at end of file +[OBJECT Get value](object-get-value.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1742 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md index 37d36134279a02..1949feabd54f50 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OBJECT SET VERTICAL ALIGNMENT** modifica por programación el tipo de alineación vertical aplicada al objeto designado por los parámetros *objeto* y *\**. @@ -43,4 +40,13 @@ La alineación vertical puede aplicarse a los siguientes tipos de objetos de for [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) \ No newline at end of file +[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1187 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md index 74335106a2a540..9809195c47d64a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OBJECT SET VISIBLE muestra u oculta los objetos especificados por *objeto*. @@ -60,4 +57,13 @@ o: #### Ver también [OBJECT Get visible](object-get-visible.md) -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 603 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md index 58757c12571d9a..e0f2d38f0b8432 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md @@ -54,4 +54,13 @@ Queremos duplicar y cambiar el nombre de un archivo en su propia carpeta [File](file.md) [Folder ](folder.md) [Path to object ](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1548 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md index e16831e05ba21e..6a051d40af0bb5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md @@ -15,13 +15,22 @@ displayed_sidebar: docs #### Descripción -OLD RELATED MANY funciona de la misma forma que [RELATE MANY](relate-many.md "RELATE MANY"), excepto que OLD RELATED MANY utiliza el valor anterior del campo Uno para establecer la relación. - -**Nota:** OLD RELATED MANY utiliza el valor anterior del campo Muchos, tal como lo devuelve la función [Old](old.md "Old"). Para mayor información, consulte la descripción del comando [Old](old.md "Old"). +OLD RELATED MANY funciona de la misma forma que [RELATE MANY](relate-many.md "RELATE MANY"), excepto que OLD RELATED MANY utiliza el valor anterior del campo Uno para establecer la relación.OLD RELATED MANY utiliza el valor anterior del campo Muchos, tal como lo devuelve la función [Old](old.md "Old"). Para mayor información, consulte la descripción del comando [Old](old.md "Old"). OLD RELATED MANY cambia la selección de la tabla relacionada y selecciona el primer registro de la selección actual como registro actual. #### Ver también [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 263 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md index 2da4f661ce4502..0217ce61145ed7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción OLD RELATED ONE funciona de la misma forma que [RELATE ONE](relate-one.md "RELATE ONE"), con la diferencia de que OLD RELATED ONE utiliza el valor anterior de *campo* para establecer la relación. @@ -33,4 +30,14 @@ Si el comando se ejecuta correctamente y si los registros relacionados se han ca [Old](old.md) [OLD RELATED MANY](old-related-many.md) [RELATE ONE](relate-one.md) -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 44 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md index a7c054517ff437..2c8d179ae2643a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md @@ -38,4 +38,13 @@ Para restaurar el valor original de un campo, asígnele el valor devuelto por Ol #### Ver también -[Modified](modified.md) \ No newline at end of file +[Modified](modified.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 35 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md index 6a8831dc3f87fe..ea87ff1c2c3c2d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md @@ -183,4 +183,13 @@ El siguiente método de gestión de errores ignora las interrupciones del usuari [Last errors](last-errors.md) [Last errors](last-errors.md) [Method called on error](method-called-on-error.md) -*Variables sistema* \ No newline at end of file +*Variables sistema* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 155 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md index 157c7e659ed4fb..ac6a79fbd27df8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ON EVENT CALL** instala el método, cuyo nombre se pasa en *metodoEvento*, como método de gestión de eventos. @@ -116,4 +113,14 @@ Si imprime un informe utilizando [PRINT SELECTION](print-selection.md "PRINT SEL [FILTER EVENT](filter-event.md) [MOUSE POSITION](mouse-position.md) [Method called on event](method-called-on-event.md) -[Shift down](shift-down.md) \ No newline at end of file +[Shift down](shift-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 190 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md index 8e5b053680b073..d18f043b84d24f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md @@ -28,4 +28,15 @@ Este comando fue útil para “reponer” un registro que había sido apilado y [CREATE SELECTION FROM ARRAY](create-selection-from-array.md) *Selecciones temporales* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 189 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md index 9d9258413dd371..b0fba3b5b6602e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OPEN ADMINISTRATION WINDOW muestra la ventana de administración del servidor en el equipo que lo ejecuta. La ventana de administración de 4D Server permite visualizar los parámetros actuales y efectuar varias operaciones de mantenimiento (ver la Guía de referencia de 4D). A partir de la versión 11 de 4D Server, esta ventana puede mostrarse desde un equipo cliente: @@ -51,4 +48,14 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va #### Ver también -[OPEN SECURITY CENTER](open-security-center.md) \ No newline at end of file +[OPEN SECURITY CENTER](open-security-center.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1047 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md index f041d10329815c..ae20a2fd430a04 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OPEN COLOR PICKER** muestra la caja de diálogo de selección de color del sistema. @@ -30,4 +27,13 @@ Si el color se ha cambiado, el evento formulario On After Edit se genera para el #### Ver también -[OPEN FONT PICKER](open-font-picker.md) \ No newline at end of file +[OPEN FONT PICKER](open-font-picker.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1304 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md index f655856330ef3d..e47e919ca3a818 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md @@ -53,4 +53,13 @@ En el contexto del despliegue de una aplicación fusionada, usted desea abrir o #### Ver también -[CREATE DATA FILE](create-data-file.md) \ No newline at end of file +[CREATE DATA FILE](create-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 312 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md index ed615d7c1be603..32dadcc21ff291 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md @@ -69,3 +69,13 @@ Desea seleccionar un servidor al inicio desde una aplicación mono usuario. Pued     QUIT 4D  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1321 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md index 8b64e4ca2869bd..61a504c813604c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md @@ -86,4 +86,14 @@ Si pasa el valor 3 en *modo*, la función devuelve ?00:00:00? (sin referencia de #### Ver también [Append document](append-document.md) -[Create document](create-document.md) \ No newline at end of file +[Create document](create-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 264 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md index ffbc7d6570680b..93df2b64b52662 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OPEN FONT PICKER** muestra la caja de diálogo de selección de fuente del sistema. @@ -44,4 +41,13 @@ Este es el código del botón: #### Ver también -[OPEN COLOR PICKER](open-color-picker.md) \ No newline at end of file +[OPEN COLOR PICKER](open-color-picker.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1303 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md index 59034a0ffda228..b71b790f391c73 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Open form window abre una nueva ventana utilizando las propiedades de tamaño y de redimensionamiento del formulario *nomForm*. @@ -138,4 +135,13 @@ que devuelve: [FORM GET PROPERTIES](form-get-properties.md) [Open window](open-window.md) *Tipos de ventanas* -*Tipos de ventanas (Compatibilidad)* \ No newline at end of file +*Tipos de ventanas (Compatibilidad)* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 675 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md index 727c8048e42a6a..1f4792c15c263d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OPEN PRINTING JOB** abre una tarea de impresión y apila todas las órdenes de impresión ejecutadas hasta que se llame el comando [CLOSE PRINTING JOB](close-printing-job.md). Este comando le permite controlar los trabajos de impresión y, más particularmente, asegurar que ninguna tarea de impresión inesperada pueda ser insertada en una secuencia de impresión. @@ -38,4 +35,14 @@ La variable sistema OK toma el valor 1 si el trabajo de impresión se ha abierto #### Ver también -[CLOSE PRINTING JOB](close-printing-job.md) \ No newline at end of file +[CLOSE PRINTING JOB](close-printing-job.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 995 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md index 1a569b1500786e..bed2ccbe7a87ff 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Open resource file** abre el archivo de recursos cuyo nombre o ruta de acceso completa se pasa en *resNomArchivo*. @@ -99,4 +96,14 @@ Si el archivo de recursos no se pudo abrir por un problema del recurso o de E/S, #### Ver también [CLOSE RESOURCE FILE](close-resource-file.md) -*Recursos* \ No newline at end of file +*Recursos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 497 | +| Hilo seguro | ✗ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md index 8b9b429acd4306..afcb10617a56ae 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md @@ -15,3 +15,13 @@ displayed_sidebar: docs #### Descripción El comando OPEN RUNTIME EXPLORER muestra el explorador de ejecución en una ventana flotante. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1781 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md index dcc6fd99aabd2a..baba012528f1a7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando OPEN SECURITY CENTERmuestra la ventana del Centro de seguridad y mantenimiento (CSM).Para más información, consulte la página *Centro de seguridad y mantenimiento*. @@ -28,4 +25,13 @@ Dependiendo de los privilegios de acceso del usuario actual, ciertas funciones d #### Ver también -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1018 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md index 1dbe0d8c90cdc4..84b2ef5c2d048b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **OPEN SETTINGS WINDOW** abre la caja de diálogo de Preferencias 4D o las Propiedades de la base actual y muestra los parámetros o la página correspondiente a la llave pasada en el parámetro *selector*. @@ -141,3 +138,14 @@ Acceso a la página interfaz de las Propiedades de la base en modo "Propiedades #### Variables y conjuntos del sistema Si la caja de diálogo Preferencias/Propiedades se valida, la variable sistema OK devuelve 1; si se anula, OK devuelve 0. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 903 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md index 3809d7395c8f39..0b125a0b6432ba 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md @@ -80,4 +80,13 @@ Puede abrir un mismo archivo texto con diferentes aplicaciones utilizando el par #### Ver también -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 673 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md index b4919ba28f99f8..8b70c77dd0ada2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Open window** abre una nueva ventana cuyas dimensiones son definidas por los cuatro primeros parámetros: @@ -139,4 +136,13 @@ Este ejemplo ilustra el mecanismo de “retraso” de mostrar ventanas bajo Mac [CLOSE WINDOW](close-window.md) *Crear ventana* -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 153 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md index 8d63f82646cfd2..db695a5c945437 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md @@ -111,4 +111,13 @@ Los registros están en el siguiente orden: #### Ver también - \ No newline at end of file + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1407 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md index e5130584291e1b..1ef1742c10ce4b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md @@ -45,4 +45,15 @@ Este ejemplo ordena los registros de la tabla \[Personas\] en orden descendente, #### Ver también -[ORDER BY](order-by.md) \ No newline at end of file +[ORDER BY](order-by.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 300 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md index 4686ec725946ff..6c330c354f50f6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md @@ -199,4 +199,15 @@ Cada botón llama al método de proyecto MULTINIVEL con un puntero al campo de l #### Ver también -[ORDER BY FORMULA](order-by-formula.md) \ No newline at end of file +[ORDER BY FORMULA](order-by-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 49 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md index dab87419f84c15..45162a844ba756 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Outside call** devuelve True para el ciclo de ejecución After. @@ -27,4 +24,13 @@ Para que se genere el ciclo de ejecución **Outside call**, asegúrese de que la #### Ver también [Form event code](form-event-code.md) -[POST OUTSIDE CALL](post-outside-call.md) \ No newline at end of file +[POST OUTSIDE CALL](post-outside-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 328 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md index f978296a16faef..303f22f0ef6896 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción PAGE BREAK dispara la impresión de datos enviados a la impresora y provocar un salto de página. PAGE BREAK se utiliza conjuntamente con *form* (en el contexto del evento de formulario On Printing Detail) para forzar saltos de página e imprimir la última página creada en memoria. No utilice PAGE BREAK con el comando [PRINT SELECTION](print-selection.md "PRINT SELECTION"). Es mejor utilizar [Subtotal](subtotal.md "Subtotal") o [BREAK LEVEL](break-level.md "BREAK LEVEL") con el parámetro opcional para generar saltos de página. @@ -45,4 +42,14 @@ Consulte el ejemplo del comando [SET PRINT MARKER](set-print-marker.md "SET PRIN #### Ver también [CANCEL](cancel.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 6 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md index 1aab51cc26da6e..0827bd75e5242e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción La función **Parse formula** analiza la *formula* 4D, verifica su sintaxis y devuelve su formula normalizada. Esto permite que la fórmula siga siendo válida en el caso de que se cambie el nombre de un lenguaje 4D o elemento de estructura (comando, constante, tabla, campo o Plugin 4D). @@ -107,4 +104,13 @@ Utilizando las tablas del **Ejemplo 1**: [Formula from string](formula-from-string.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -*Utilizar tokens en fórmulas* \ No newline at end of file +*Utilizar tokens en fórmulas* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1576 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md index a8c027696724be..6487cb76ccc492 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Pasteboard data size permite probar si hay datos del tipo *tipoDatos* en el portapapeles. @@ -93,4 +90,14 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) [Get text from pasteboard](get-text-from-pasteboard.md) -*Portapapeles* \ No newline at end of file +*Portapapeles* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 400 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md index 89c535612de001..22d06ef2a664db 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md @@ -173,4 +173,13 @@ Desea saber la cantidad de subcarpetas en una ruta: [File](file.md) [Folder ](folder.md) [Object to path](object-to-path.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1547 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md index 691e312dcde4ae..f47c224a0e6322 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md @@ -45,4 +45,13 @@ Ejemplo de método de importación masivo de datos: #### Ver también [DELETE INDEX](delete-index.md) -[RESUME INDEXES](resume-indexes.md) \ No newline at end of file +[RESUME INDEXES](resume-indexes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1293 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md index a221c936f594c4..057b7515a27f7e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md @@ -30,4 +30,13 @@ Cuando se suspende la ejecución de un proceso, las ventanas que pertenecen a es [ABORT PROCESS BY ID](abort-process-by-id.md) [DELAY PROCESS](delay-process.md) [HIDE PROCESS](hide-process.md) -[RESUME PROCESS](resume-process.md) \ No newline at end of file +[RESUME PROCESS](resume-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 319 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md index 4f722bed0f718a..57763a7e1a1d3f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - :::info Compatibilidad **PHP es obsoleto en 4D**. Se recomienda utilizar la clase [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -279,4 +276,13 @@ Para obtener más información acerca de la función trim, por favor, consulte l *Ejecutar scripts PHP en 4D* [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1058 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md index 7e188151d77a64..9c0a7b3777d071 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - :::info Compatibilidad **PHP es obsoleto en 4D**. Se recomienda utilizar la clase [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Dado que los intercambios entre 4D y el intérprete PHP se efectúan a través d #### Ver también [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1061 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md index dc93ff30a8c3d0..46f462c90f7000 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - :::info Compatibilidad **PHP es obsoleto en 4D**. Se recomienda utilizar la clase [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -36,4 +33,13 @@ Pase en el parámetro *opcion* una constante del tema "*PHP*" para designar la o #### Ver también [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1060 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md index d56a09db196665..f8e5fa62933e3b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - :::info Compatibilidad **PHP es obsoleto en 4D**. Se recomienda utilizar la clase [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Por defecto, **PHP SET OPTION** define la opción para todas las llamadas poster #### Ver también [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1059 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md index e1bc8474027eb4..0f3867ebbd08d7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md @@ -31,4 +31,13 @@ Por defecto, si no pasa el parámetro *\**, el comando devuelve únicamente los #### Ver también *Imágenes* -[Is picture file](is-picture-file.md) \ No newline at end of file +[Is picture file](is-picture-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 992 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md index c96a3a2176c0fa..a0f55aa8b57604 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando PICTURE LIBRARY LIST devuelve los números de referencia y los nombres de las imágenes almacenadas en la librería de imágenes de la base de datos. @@ -94,4 +91,13 @@ El siguiente ejemplo exporta la librería de imágenes a un documento almacenado [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 564 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md index a3d8c5fac63172..4668aaef044ca6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md @@ -28,4 +28,13 @@ Los parámetros *hDesp*, *vDesp*, y *modo* devuelven las posiciones horizontal y #### Ver también -[Picture size](picture-size.md) \ No newline at end of file +[Picture size](picture-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 457 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md index 694a077914511b..a3b94739aa1342 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### Ver también -[PICTURE PROPERTIES](picture-properties.md) \ No newline at end of file +[PICTURE PROPERTIES](picture-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 356 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md index 4708d06856d212..e97f52f5ec0ed8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md @@ -50,4 +50,14 @@ Desea convertir una imagen de un formato propietario a formato GIF y mostrarlo e [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 692 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md index dd8b8ccf5a2a5c..d8265e96177282 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **PLAY** permite reproducir archivos de sonido o multimedia. Pase la ruta de acceso completa del archivo que quiere reproducir en *nombreObjeto*. En OS X, el comando también puede utilizarse para reproducir un sonido sistema. @@ -57,4 +54,13 @@ El siguiente código de ejemplo reproduce un sonido del sistema en OS X: #### Ver también -[BEEP](beep.md) \ No newline at end of file +[BEEP](beep.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 290 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md index 067ac6c0b45a30..ff5fdc622f6941 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md @@ -27,4 +27,13 @@ PLUGIN LIST tiene en cuenta todos los plug-ins, incluyendo aquellos que están i [COMPONENT LIST](component-list.md) [Get plugin access](get-plugin-access.md) [Is license available](is-license-available.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 847 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md index 992b07cca34d55..5a4a8ed9fee1a2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md @@ -32,4 +32,14 @@ El siguiente ejemplo recupera el registro de un cliente en la pila: #### Ver también [PUSH RECORD](push-record.md) -*Uso de la pila de registros* \ No newline at end of file +*Uso de la pila de registros* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 177 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md index 3b488ea88b0815..3d8e2e43d036e8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Pop up menu muestra un menú pop up en la ubicación actual del ratón. @@ -91,4 +88,13 @@ El siguiente es el menú pop-up tal como aparece en Windows (izquierda) y Macint #### Ver también [Dynamic pop up menu](dynamic-pop-up-menu.md) -[MOUSE POSITION](mouse-position.md) \ No newline at end of file +[MOUSE POSITION](mouse-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 542 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md index 81c1da62712435..9270e298af8998 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md @@ -117,4 +117,13 @@ En el siguiente ejemplo, usted quiere encontrar todas las instancias de una cade #### Ver también [Compare strings](compare-strings.md) -[Substring](substring.md) \ No newline at end of file +[Substring](substring.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 15 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md index fbb36903eee12a..76d6626e7acaeb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando POST CLICK simula un clic del ratón. Tiene el mismo efecto que cuando el usuario hace clic en el botón del ratón. @@ -30,4 +27,13 @@ Si especifica el parámetro proceso *proceso*, el clic se envía al proceso cuyo #### Ver también [POST EVENT](post-event.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 466 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md index 0b51b1befad497..802266ddabf372 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando POST EVENT simula un evento de teclado o de ratón. Tiene el mismo efecto que cuando el usuario actúa a través del teclado o del ratón. @@ -50,4 +47,13 @@ Si pasa el parámetro *proceso*, el evento se envía al proceso cuyo número se #### Ver también [POST CLICK](post-click.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 467 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md index 06de4240eb9bcd..b96113a51412ce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando POST KEY simula una tecla. Tiene el mismo efecto que cuando un usuario digita un carácter en el teclado. @@ -37,4 +34,13 @@ Ver el ejemplo del comando [Process number](process-number.md "Process number"). *Códigos ASCII* *Códigos de teclas de función* [POST CLICK](post-click.md) -[POST EVENT](post-event.md) \ No newline at end of file +[POST EVENT](post-event.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 465 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md index 4e537873796203..8f4b3207e44ded 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Compatibility Note This command was named **CALL PROCESS** in previous 4D releases. @@ -46,4 +43,14 @@ Ver el ejemplo de [On Exit Database Method](metodo-base-on-exit.md "On Exit Data [Form event code](form-event-code.md) [GET PROCESS VARIABLE](get-process-variable.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 329 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md index 47b987a9cbb7bf..6d8f020fd788e3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md @@ -25,4 +25,14 @@ Si PREVIOUS RECORD mueve el puntero del registro actual antes de la selección a [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[NEXT RECORD](next-record.md) \ No newline at end of file +[NEXT RECORD](next-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 110 | +| Hilo seguro | ✓ | +| Modifica el registro actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md index 043140975fddfd..77041b353b5ee0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Print form simplemente imprime *formulario* con los valores actuales de los campos y variables. Generalmente este comando se utiliza para imprimir informes muy complejos que necesiten un control total del proceso de impresión. Print form no procesa registros, ni rupturas o saltos de páginas. Estas operaciones son su responsabilidad. Print form imprime campos y variables en un marco de tamaño fijo únicamente. @@ -182,4 +179,13 @@ El código que llama al diálogo luego imprime su cuerpo: [CANCEL](cancel.md) [PAGE BREAK](page-break.md) [PRINT SETTINGS](print-settings.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 5 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md index 12958c8941f8ae..95d377cec08d04 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **PRINT LABEL** le permite imprimir etiquetas con los datos de la selección de *tabla*. @@ -108,4 +105,14 @@ El siguiente ejemplo le permite al usuario efectuar una búsqueda en la tabla \[ #### Ver también [PRINT SELECTION](print-selection.md) -[QR REPORT](qr-report.md) \ No newline at end of file +[QR REPORT](qr-report.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 39 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md index e4e794b6b8403b..1e29334b70fd7a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Print object** permite imprimir el o los objetos de formulario designado(s) por los parámetros *objeto* y *\**, en la ubicación definida por los parámetros *posX* y *posY*. @@ -97,4 +94,13 @@ Ejemplo de impresión de un list box completo: #### Ver también -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1095 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md index c8461a4ac5ed5f..e20ebb72d1780a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **PRINT OPTION VALUES** devuelve en *arrayNoms* una lista de nombres disponibles para la *opcion* de impresión definida. Opcionalmente, puede recuperar la información adicional para cada nombre en *info1Array* y *info2Array*. @@ -55,4 +52,13 @@ Toda la información devuelta por estos comandos es suministrada por el sistema #### Ver también [GET PRINT OPTION](get-print-option.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 785 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md index 4388941ad84b6b..2b82e4675f5589 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **PRINT RECORD** imprime el registro actual de *tabla*, sin modificar la selección actual. El formulario de salida actual se utiliza para la impresión. Si no hay registro actual para *tabla*, **PRINT RECORD** no hace nada. @@ -63,4 +60,13 @@ El siguiente ejemplo imprime el mismo registro actual en dos formularios diferen #### Ver también -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 71 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md index b492b8cdebc5ea..0d1f2940e9791f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción PRINT SELECTION imprime la selección actual de *tabla*. Los registros se imprimen en el formulario de salida actual de la tabla del proceso actual. PRINT SELECTION realiza la misma acción que el comando Imprimir del entorno Usuario. Si la selección está vacía, PRINT SELECTION no hace nada. @@ -63,4 +60,14 @@ El siguiente ejemplo selecciona todos los registros en la tabla \[Personas\]. El [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 60 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md index 509bce23c804ca..307a731d6f9cd2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Print settings to BLOB** guarda los ajustes de impresión 4D actuales en el BLOB *confImp*. El parámetro *confImp* almacena todos los valores utilizados para la impresión: @@ -55,4 +52,13 @@ Usted desea almacenar la configuración de impresión actual en el disco: #### Ver también -[BLOB to print settings](blob-to-print-settings.md) \ No newline at end of file +[BLOB to print settings](blob-to-print-settings.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1433 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md index 2d2707dde8b14a..818ce501088659 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción PRINT SETTINGS muestra una caja de diálogo de impresión. Este comando debe llamarse antes de una serie de comandos [Print form](print-form.md) o el comando [OPEN PRINTING JOB](open-printing-job.md). @@ -42,4 +39,14 @@ Si el usuario hace clic en OK en ambas cajas de diálogo, la variable sistema OK [OPEN PRINTING JOB](open-printing-job.md) [PAGE BREAK](page-break.md) [Print form](print-form.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 106 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md index 86457e9440aac1..0d8d0de5caca8e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **PRINTERS LIST** llena el (los) array(s) pasados como parámetro(s) con los nombres y opcionalmente con la ubicación o nombres personalizados y los modelos de impresión disponibles para el equipo. @@ -46,4 +43,14 @@ La variable sistema OK toma el valor 1 si el comando ha sido ejecutado correctam #### Ver también [Get current printer](get-current-printer.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 789 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md index f6f215f57af9c5..f3516f8c57dcab 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Printing page** devuelve el número de la página en impresión. Puede utilizarse sólo cuando esté imprimiendo con [PRINT SELECTION](print-selection.md) o con el menú Impresión en el entorno Diseño. @@ -39,4 +36,13 @@ El siguiente ejemplo cambia la posición de los números de página en un inform #### Ver también -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 275 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md index d9c6eb4de8d787..c0497362fa36b3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md @@ -71,4 +71,13 @@ Este ejemplo genera un texto utilizando los datos de los arrays: #### Ver también -*Etiquetas de transformación 4D* \ No newline at end of file +*Etiquetas de transformación 4D* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 816 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md index 6fd74051550045..e979afb21d0ab2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md @@ -21,4 +21,13 @@ Este estado ocurrirá muy raramente. Los procesos suelen detenerse antes de que #### Ver también -[Método base On Exit](metodo-base-on-exit.md) \ No newline at end of file +[Método base On Exit](metodo-base-on-exit.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 672 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md index 851c2c58a540fc..d7410d749732a9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md @@ -65,4 +65,13 @@ Con esta función, el método de proyecto listado pega el texto recibido como pa [GET PROCESS VARIABLE](get-process-variable.md) [Process info](../commands/process-info.md) [Process state](process-state.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 372 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md index 69f81e04103f73..7b0d0ba573c1e7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Process state devuelve el estado del proceso cuyo número se pasó en *proceso*. @@ -61,4 +58,13 @@ El siguiente ejemplo coloca el nombre y número de referencia para cada proceso #### Ver también [Count tasks](count-tasks.md) -[Process info](../commands/process-info.md) \ No newline at end of file +[Process info](../commands/process-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 330 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md index 9a67a3e06a274c..b1a4c672671f73 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md @@ -32,4 +32,13 @@ El siguiente ejemplo apila el registro de un cliente: #### Ver también [POP RECORD](pop-record.md) -*Uso de la pila de registros* \ No newline at end of file +*Uso de la pila de registros* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 176 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md index e9ff45ac96dcd7..b76e12cecc5e0e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR BLOB TO REPORT coloca el informe contenido en el *blob* en el área de informe rápido pasada en *area*. @@ -45,4 +42,14 @@ La siguiente instrucción recupera el informe rápido almacenado en Campo4 y lo #### Ver también -[QR REPORT TO BLOB](qr-report-to-blob.md) \ No newline at end of file +[QR REPORT TO BLOB](qr-report-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 771 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md index ef8814be1ec3a2..10614d4fd6e9ab 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Count columns devuelve el número de columnas presentes en el *area* del informe rápido. @@ -35,4 +32,14 @@ El siguiente código permite añadir una columna adicional a la derecha de la ú #### Ver también [QR DELETE COLUMN](qr-delete-column.md) -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 764 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md index 2feb8fbdc22f70..cf2bbb84951380 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR DELETE COLUMN borra del *area* la columna cuyo número se pasó en *numColumna*. Este comando no aplica a los informes de tablas cruzadas. @@ -36,4 +33,14 @@ El siguiente ejemplo se asegura de que el informe sea listado y borra la tercera #### Ver también -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 749 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md index 34630c83838d6d..0b4a9d1e132074 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR DELETE OFFSCREEN AREA borra de la memoria el área fuera de pantalla del informe rápido cuya referencia se pasa en el parámetro *area*. @@ -24,4 +21,14 @@ Si pasa un número de *area* incorrecto, se genera el error -9850. #### Ver también -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 754 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md index f2a64d4b1a4e7a..30e7851b57f21f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR EXECUTE COMMAND** ejecuta el comando de botón de la barra de herramientas cuya referencia se pasa en *comando*. Este comando se utiliza por lo general para ejecutar un comando seleccionado por el usuario e interceptado en su código a través del comando [QR ON COMMAND](qr-on-command.md). @@ -39,4 +36,14 @@ Si pasa un número de *comando* incorrecto, se genera el error -9852. #### Ver también [QR Get command status](qr-get-command-status.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 791 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md index 9c9f49ed49d875..785b133d4fcf5e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Find column devuelve el número de la primera columna cuyo contenido corresponde a la *expresion* pasada en parámetro. @@ -44,3 +41,14 @@ $NumColumn:=QR Find column (MiArea; "\[G.NQR Tests\]Trimestre")     QR DELETE COLUMN(MiArea;$NumColumn)  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 776 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md index 6ea5fbbad6427d..cc8b5244d801a1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR Get area property** devuelve 0 si no se muestra el elemento de interfaz pasado en *propiedad*; de lo contrario, devuelve 1. @@ -36,4 +33,14 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9852. #### Ver también -[QR SET AREA PROPERTY](qr-set-area-property.md) \ No newline at end of file +[QR SET AREA PROPERTY](qr-set-area-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 795 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md index f916f5230f435a..361c61d68667b0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET BORDERS permite recuperar el estilo del borde de una celda determinada. @@ -71,4 +68,14 @@ Si el parámetro *area* es incorrecto, se genera el error -9850. #### Ver también -[QR SET BORDERS](qr-set-borders.md) \ No newline at end of file +[QR SET BORDERS](qr-set-borders.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 798 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md index 10fe60f6b1e21d..1de03111f50485 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get command status devuelve 0 si el *comando* está inactivo ó 1 si está activo. @@ -38,4 +35,14 @@ Si el parámetro *comando* es incorrecto, se genera el error -9852. #### Ver también [QR EXECUTE COMMAND](qr-execute-command.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 792 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md index 0310ece9b92e5a..ab375f8318f30d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET DESTINATION recupera el *tipo* de salida del informe para el área cuya referencia se pasó en *area*. @@ -38,4 +35,14 @@ Si pasa un número de *area* incorrecto, se genera el error -9850. #### Ver también -[QR SET DESTINATION](qr-set-destination.md) \ No newline at end of file +[QR SET DESTINATION](qr-set-destination.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 756 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md index f5ad0746f477fb..380120e0f6ae48 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get document property permite recuperar el estado mostrado para la caja de diálogo de impresión o la unidad utilizada para el documento presente en *area*. @@ -47,4 +44,13 @@ Si pasa un valor incorrecto del parámetro *propiedad*, se genera el error -9852 #### Ver también -[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) \ No newline at end of file +[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 773 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md index 92eef87ea7391f..5c11d45a69cc58 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get drop column devuelve un valor dependiendo de dónde se efectúe una acción soltar: @@ -28,4 +25,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 747 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md index d50e3bf11c08c8..a04c54a540bfc0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET HEADER AND FOOTER permite recuperar el contenido y el tamaño del encabezado o pie de página. @@ -68,4 +65,14 @@ El siguiente código recupera el contenido y la altura del título del encabezad #### Ver también -[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) \ No newline at end of file +[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 775 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md index 1e936e104b3395..bf4615b989abd9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get HTML template devuelve la plantilla HTML utilizada actualmente por el área del informe rápido referenciada por *area*. El valor devuelto es de tipo texto e incluye la totalidad del código HTML utilizado como plantilla. @@ -27,4 +24,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR SET HTML TEMPLATE](qr-set-html-template.md) \ No newline at end of file +[QR SET HTML TEMPLATE](qr-set-html-template.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 751 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md index ea4ccfaa448ce9..2330644d8f93e0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción ##### Informes en lista @@ -117,4 +114,14 @@ Puede escribir: [QR Get info row](qr-get-info-row.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 766 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md index 72d787c2a8f7d4..aa80cced9a090e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get info row indica si *linea* se muestra o se oculta en *area*. @@ -40,4 +37,14 @@ Si el parámetro *linea* es incorrecto, se genera el error -9852. [QR GET INFO COLUMN](qr-get-info-column.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 769 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md index 63c8cd7650fc15..88e0bbf0dbc04a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get report kind devuelve el tipo del informe presente en *area*. @@ -36,4 +33,14 @@ Si pasa un número de *area* incorrecto, se genera el error -9850. #### Ver también -[QR SET REPORT KIND](qr-set-report-kind.md) \ No newline at end of file +[QR SET REPORT KIND](qr-set-report-kind.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 755 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md index 17a0b406e7f14c..a42f62437a7a88 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get report table devuelve el número de la tabla actual del informe designado por el parámetro *area*. @@ -25,4 +22,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR SET REPORT TABLE](qr-set-report-table.md) \ No newline at end of file +[QR SET REPORT TABLE](qr-set-report-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 758 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md index 42f6ceaa171344..b1e07d0bb95485 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET SELECTION devuelve las coordenadas de la selección actual de *area*. @@ -40,4 +37,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR SET SELECTION](qr-set-selection.md) \ No newline at end of file +[QR SET SELECTION](qr-set-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 793 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md index 1e71ca3cd6b169..81626127f79dc9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET SORTS llenas dos arrays: @@ -37,4 +34,14 @@ Si pasa un número de area inválido, se genera el error -9850. #### Ver también -[QR SET SORTS](qr-set-sorts.md) \ No newline at end of file +[QR SET SORTS](qr-set-sorts.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 753 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md index cad9cf7b09d2e4..c948573227d3b5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR Get text property devuelve el valor de la propiedad de los atributos texto en la celda determinada por *numColumna* y *numLinea*. @@ -67,4 +64,14 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9854 #### Ver también -[QR SET TEXT PROPERTY](qr-set-text-property.md) \ No newline at end of file +[QR SET TEXT PROPERTY](qr-set-text-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 760 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md index e0cbf613cc0acb..1888812e3c47a9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción ##### Informe en lista @@ -73,4 +70,14 @@ Si el parámetro *numRuptura* es incorrecto, se genera el error -9853. #### Ver también -[QR SET TOTALS DATA](qr-set-totals-data.md) \ No newline at end of file +[QR SET TOTALS DATA](qr-set-totals-data.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 768 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md index 31db51e059f1d8..4a521f3f0460eb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR GET TOTALS SPACING permite recuperar el valor del espacio añadido debajo de una línea de subtotal. Aplica únicamente en modo listado. @@ -38,4 +35,14 @@ Si el parámetro *subtotal* es incorrecto, se genera el error -9852. #### Ver también -[QR SET TOTALS SPACING](qr-set-totals-spacing.md) \ No newline at end of file +[QR SET TOTALS SPACING](qr-set-totals-spacing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 762 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md index d39ab9f2867ad7..d5af5399ecb9f2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR INSERT COLUMN inserta o crea una columna en una posición específica. Las columnas situadas a la derecha de la columna añadida serán desplazadas en consecuencia. @@ -40,4 +37,14 @@ La siguiente instrucción inserta (o crea) una primera columna en el área MiAre #### Ver también -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 748 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md index c6e77c67354556..8a5c4180dd0faa 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR MOVE COLUMN** mueve la columna que se encuentra actualmente en la posición *numColumna* a la posición *nuevaPosicion*. @@ -41,3 +38,13 @@ Si ejecuta: El resultado es: ![](../assets/en/commands/pict2569472.en.png) + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1325 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md index c3360d2ac8e17b..4d199864230c69 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md @@ -13,13 +13,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR NEW AREA** crea una nueva área de informe rápido y almacena su número de referencia en la variable de tipo Entero largo referenciada por el puntero *ptr*. #### Ver también -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1320 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md index a600a15ceaaf11..c4d386c4660742 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR New offscreen area crea un área de informe rápido fuera de pantalla y devuelve su número de referencia. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### Ver también [QR DELETE OFFSCREEN AREA](qr-delete-offscreen-area.md) -[QR NEW AREA](qr-new-area.md) \ No newline at end of file +[QR NEW AREA](qr-new-area.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 735 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md index e95f01d1dea4d6..d123097c7f5a0c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR ON COMMAND ejecuta el método proyecto 4D pasado en el parámetro *nomMetodo* cuando un comando del editor de informes rápidos es llamado por el usuario, seleccionando un comando de menú o haciendo clic en un botón. @@ -44,4 +41,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. *QR Comandos* [QR EXECUTE COMMAND](qr-execute-command.md) -[QR Get command status](qr-get-command-status.md) \ No newline at end of file +[QR Get command status](qr-get-command-status.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 790 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md index 8b40233be434b8..e365848b029fb9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR REPORT TO BLOB coloca el informe cuya referencia se pasó en *area* en un BLOB (variable o campo). @@ -33,4 +30,14 @@ La siguiente instrucción asigna el informe rápido almacenado en el área MiAre #### Ver también -[QR BLOB TO REPORT](qr-blob-to-report.md) \ No newline at end of file +[QR BLOB TO REPORT](qr-blob-to-report.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 770 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md index 680578c2ffcd23..549e194378bdd7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **QR REPORT** imprime un informe para *tabla*, con ayuda del editor de informes rápidos de 4D. Este editor permite a los usuarios crear sus propios informes. Para mayor información sobre la creación de informes rápidos con la ayuda del editor de informes rápidos, consulte la sección *Informes rápidos* en el *Manual de Diseño* de 4D. @@ -132,4 +129,14 @@ El método myCallbackMeth convierte el informe cuando se genera: [PRINT LABEL](print-label.md) [PRINT SELECTION](print-selection.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 197 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md index 371534ccf86265..0263419a27c2c3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR RUN provoca la ejecución del informe rápido designado por el parámetro *area.* El informe se genera con sus parámetros actuales, incluyendo su tipo de salida. Puede utilizar el comando [QR SET DESTINATION](qr-set-destination.md) para modificar el tipo de salida. @@ -25,3 +22,14 @@ El informe se ejecuta en la tabla a la que pertenece el área. Cuando *area* des Si pasa un número de *area* inválido, se genera el error -9850. **4D Server:** este comando puede ejecutarse en 4D Server como parte de un procedimiento almacenado. En este contexto, asegúrese de que no aparezca ninguna caja de diálogo en el equipo servidor (excepto para los requisitos específicos). Para ello, es necesario llamar al comando [QR SET DESTINATION](qr-set-destination.md) con el parámetro "\*". En caso de un problema de la impresora (sin papel, impresora desconectada, etc), no se genera ningún mensaje de error. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 746 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md index 9999649f6837da..e09d178b984c83 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR SET AREA PROPERTY** muestra u oculta el elemento de interfaz cuya referencia se pasa en *propiedad*. @@ -35,4 +32,14 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9852. #### Ver también -[QR Get area property](qr-get-area-property.md) \ No newline at end of file +[QR Get area property](qr-get-area-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 796 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md index fff66fa29806d5..492862b788f19d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET BORDERS permite definir el estilo del borde de una celda dada. @@ -74,4 +71,14 @@ Si el parámetro *ancho* es incorrecto, se genera el error -9855. #### Ver también -[QR GET BORDERS](qr-get-borders.md) \ No newline at end of file +[QR GET BORDERS](qr-get-borders.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 797 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md index b15e738bad4a11..6889fbfef2019b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET DESTINATION permite definir el *tipo* de salida del informe rápido en *area*. @@ -51,4 +48,14 @@ El siguiente código define el archivo texto Midoc.txt como tipo de destino del #### Ver también -[QR GET DESTINATION](qr-get-destination.md) \ No newline at end of file +[QR GET DESTINATION](qr-get-destination.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 745 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md index d95f45e6ea36de..e6bd1efae3419c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **QR SET DOCUMENT PROPERTY** permite mostrar la caja de diálogo de impresión o definir la unidad utilizada por el documento. @@ -47,4 +44,14 @@ Si pasa un valor incorrecto en *propiedad* o *valor*, se genera el error corresp #### Ver también -[QR Get document property](qr-get-document-property.md) \ No newline at end of file +[QR Get document property](qr-get-document-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 772 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md index ba9df2bd1bd619..9d18d9712fa108 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET HEADER AND FOOTER permite definir el contenido y el tamaño del encabezado y el pie de página de *area*. @@ -57,4 +54,14 @@ La siguiente instrucción coloca el título “Título del centro” en el encab #### Ver también -[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) \ No newline at end of file +[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 774 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md index 441553f5b1d22b..215fcafc85b4e2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET HTML TEMPLATE define la plantilla HTML a utilizar para el área de informe rápido referenciada por *area*. Esta plantilla se utilizará durante la creación del informe en formato HTML. @@ -75,4 +72,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR Get HTML template](qr-get-html-template.md) \ No newline at end of file +[QR Get HTML template](qr-get-html-template.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 750 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md index 77a60fe112e79e..56e483a007546b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción ##### Informes en lista @@ -111,4 +108,14 @@ Si el parámetro *numColumna* es incorrecto, se genera el error -9852. [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 765 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md index 284599348e4278..69f4db5a0c8b41 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET INFO ROW muestra/oculta la fila cuya referencia se pasa en *linea*. @@ -51,4 +48,14 @@ La siguiente instrucción oculta el contenido de la línea detalle: [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO COLUMN](qr-set-info-column.md) \ No newline at end of file +[QR SET INFO COLUMN](qr-set-info-column.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 763 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md index 3fb052959d6c94..39f21eea467eba 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET REPORT KIND define el *tipo* del informe presente en *area*. @@ -40,4 +37,14 @@ Si pasa un valor incorrecto del parámetro *propiedad*, se genera el error -9852 #### Ver también -[QR Get report kind](qr-get-report-kind.md) \ No newline at end of file +[QR Get report kind](qr-get-report-kind.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 738 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md index a90a9258cdd5de..0865206a6d43ff 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET REPORT TABLE define la tabla actual para el área del informe referenciada por el parámetro *area* a la tabla número *tabla*. @@ -28,4 +25,14 @@ Si el parámetro *tabla* es incorrecto, se genera el error -9852. #### Ver también -[QR Get report table](qr-get-report-table.md) \ No newline at end of file +[QR Get report table](qr-get-report-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 757 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md index 83dec4bbbaf23b..624ad225b22849 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET SELECTION permite seleccionar una celda, una fila, una columna o toda un *area* como lo haría con un ratón. Este comando también le permite deseleccionar la selección actual. @@ -37,4 +34,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR GET SELECTION](qr-get-selection.md) \ No newline at end of file +[QR GET SELECTION](qr-get-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 794 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md index 48885e46740e24..7bddd3d788ce9f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET SORTS permite definir el sentido de ordenación de cada columna del informe rápido cuya referencia se pasa en *area*. @@ -47,4 +44,14 @@ Si pasa un número de *area* inválido, se genera el error -9850. #### Ver también -[QR GET SORTS](qr-get-sorts.md) \ No newline at end of file +[QR GET SORTS](qr-get-sorts.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 752 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md index 6e0072b1779c34..634bf802b2027b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET TEXT PROPERTY permite definir las propiedades de texto de la celda determinada por los parámetros *numColumna* y *numLinea*. @@ -86,4 +83,14 @@ Este método define varios atributos para el título de la primera columna: #### Ver también -[QR Get text property](qr-get-text-property.md) \ No newline at end of file +[QR Get text property](qr-get-text-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 759 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md index 4813d2c7acad1e..911810c77f989e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota:** este comando no puede crear un subtotal. @@ -97,4 +94,14 @@ Si el parámetro *numRuptura* es incorrecto, se genera el error -9853. #### Ver también -[QR GET TOTALS DATA](qr-get-totals-data.md) \ No newline at end of file +[QR GET TOTALS DATA](qr-get-totals-data.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 767 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md index d93bfe5b72c0c3..3bc3ea2a5ba870 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QR SET TOTALS SPACING define un espacio debajo de la línea de subtotal. Aplica únicamente al modo listado. @@ -39,4 +36,14 @@ Si el parámetro *subtotal*, es incorrecto, se genera el error -9852. #### Ver también -[QR GET TOTALS SPACING](qr-get-totals-spacing.md) \ No newline at end of file +[QR GET TOTALS SPACING](qr-get-totals-spacing.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 761 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md index e9adbbaf52c49b..414ee7288ba871 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Descripción -**QUERY BY ATTRIBUTE** busca los registros que coincidan con la cadena de consulta definida utilizando los parámetros *campoObjeto*, *rutaAtributo*, *opBusq* y *valor*, y devuelve una selección de registros para *tabla*. - -**QUERY BY ATTRIBUTE** cambia la selección actual de *tabla* para el proceso actual y vuelve el primer registro de la nueva selección el registro actual. Si se omite el parámetro *tabla*, el comando se aplica a la tabla por defecto. Si no se ha definido ninguna tabla por defecto, se produce un error. +**QUERY BY ATTRIBUTE** busca los registros que coincidan con la cadena de consulta definida utilizando los parámetros *campoObjeto*, *rutaAtributo*, *opBusq* y *valor*, y devuelve una selección de registros para *tabla*.cambia la selección actual de *tabla* para el proceso actual y vuelve el primer registro de la nueva selección el registro actual. Si se omite el parámetro *tabla*, el comando se aplica a la tabla por defecto. Si no se ha definido ninguna tabla por defecto, se produce un error. El parámetro opcional *opC* *onj* se utilizar para combinar varias llamadas a **QUERY BY ATTRIBUTE** en caso de búsquedas múltiples. Los operadores de conjunción disponibles son los mismos que los del comando [QUERY](query.md): @@ -405,4 +403,16 @@ La variable OK toma el valor 0 si: - el usuario hace clic en Cancelar en la caja *Estructura de los objetos de lenguaje 4D* -[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) \ No newline at end of file +[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1331 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md index 48ab6d2b56676f..b47dbad1d3a9ac 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción QUERY BY EXAMPLE efectúa la misma acción que el comando de menú Búsqueda por formulario... en el entorno Diseño. Este comando muestra el formulario de entrada actual como ventana de búsqueda. QUERY BY EXAMPLE busca en *tabla* los datos que el usuario introduce en la ventana de búsqueda. El formulario debe contener los campos que usted quiere utilizar para efectuar la búsqueda. La búsqueda se optimiza; los campos indexados se utilizan automáticamente para optimizar la búsqueda. @@ -42,4 +39,17 @@ Si el usuario hace clic en el botón Aceptar o presionan la tecla Enter, la vari #### Ver también [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 292 | +| Hilo seguro | ✗ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md index b501127552527f..342acb63a4b461 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md @@ -77,4 +77,15 @@ Este ejemplo utiliza una unión para buscar todas las líneas de facturas de cli [QUERY](query.md) [QUERY BY SQL](query-by-sql.md) [QUERY SELECTION](query-selection.md) -[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) \ No newline at end of file +[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 48 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md index 4c0265896f42ed..e43bacad385eef 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando QUERY BY SQL permite aprovechar directamente el motor SQL integrado de 4D. Este comando puede ejecutar una petición SELECT simple que puede escribirse de esta forma: @@ -161,4 +158,16 @@ Si el formato de la condición de búsqueda es correcto, la variable sistema OK #### Ver también -[QUERY BY FORMULA](query-by-formula.md) \ No newline at end of file +[QUERY BY FORMULA](query-by-formula.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 942 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md index 42faf57a226a9f..f6cba73cc153c2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md @@ -46,4 +46,16 @@ Usted quiere encontrar personas con una edad entre 20 y 30, entre los registros #### Ver también -[QUERY BY ATTRIBUTE](query-by-attribute.md) \ No newline at end of file +[QUERY BY ATTRIBUTE](query-by-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1424 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md index 7590277b0af403..42e4cd47763f8c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md @@ -29,4 +29,15 @@ Para mayor información, consulte la descripción del comando [QUERY BY FORMULA] [QUERY](query.md) [QUERY BY FORMULA](query-by-formula.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 207 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md index 000ad79e3b2bcf..7f79be1b86f0fd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md @@ -27,4 +27,14 @@ Para mayor información, consulte la descripción del comando [QUERY WITH ARRAY] #### Ver también -[QUERY WITH ARRAY](query-with-array.md) \ No newline at end of file +[QUERY WITH ARRAY](query-with-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1050 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md index 45b23b880c6421..12e19e7a542f67 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md @@ -42,4 +42,16 @@ Va a encontrar todas las empresas ubicadas en la ciudad de Nueva York, con una a #### Ver también -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 341 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md index 430843347445e3..1c39d4c3c42d21 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md @@ -38,4 +38,14 @@ El siguiente ejemplo le permite recuperar los registros de clientes franceses y #### Ver también -[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) \ No newline at end of file +[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 644 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md index b8d3cdc4c74e02..f1b0fd07253c13 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md @@ -308,4 +308,16 @@ La variable OK toma el valor 0 si: - el usuario hace clic en Cancelar en la caja #### Ver también -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 277 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md index 2290893646ab8b..3ffa222ac399db 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md @@ -65,4 +65,13 @@ El método de proyecto siguiente está asociado al elemento de menú Salir en el #### Ver también -[Método base On Exit](metodo-base-on-exit.md) \ No newline at end of file +[Método base On Exit](metodo-base-on-exit.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 291 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md index 94c2470d736278..f87a4ba8071b3d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md @@ -32,3 +32,13 @@ El siguiente ejemplo asigna un valor aleatorio entre 10 y 30 a la variable *vlRe ```4d  vlResult:=(Random%21)+10 ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 100 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md index 26aa206601d61b..19cfe3b99fa1ba 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md @@ -35,4 +35,13 @@ El siguiente ejemplo prueba el estado de la tabla \[Facturas\]. Si el estado de [READ ONLY](read-only.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 362 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md index 66db8ccf446a47..b4d7cf45cb8c2a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md @@ -25,4 +25,13 @@ Utilice READ ONLY cuando no necesite modificar los registros. [Read only state](read-only-state.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 145 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md index 1c358448e7c693..06ae63dbd6ba8d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md @@ -40,4 +40,14 @@ Si la ejecución del comando es correcta, la variable sistema Document contiene [BLOB TO PICTURE](blob-to-picture.md) *Imágenes* [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 678 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md index 9f5975ec6c8abc..efda5b230eef89 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md @@ -29,4 +29,13 @@ Utilice READ WRITE cuando tenga que modificar un registro y guardar los cambios. [READ ONLY](read-only.md) [Read only state](read-only-state.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 146 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md index 59b5be78aa3115..6f0351b3b50275 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md @@ -131,4 +131,13 @@ Después de la ejecución de este código: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 552 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md index e2be5ca6c235ce..9f8284a4d609b6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md @@ -62,4 +62,14 @@ Note que el acceso a la variable interproceso *vtBuffer* debe estar protegido po [RECEIVE PACKET](receive-packet.md) [Semaphore](semaphore.md) [SET CHANNEL](set-channel.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 172 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md index 1dcf3ae19bf7aa..f049b7249b2b43 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md @@ -114,4 +114,14 @@ Después de un llamado a RECEIVE PACKET, la variable sistema OK toma el valor 1 [SEND PACKET](send-packet.md) [SET DOCUMENT POSITION](set-document-position.md) [SET TIMEOUT](set-timeout.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 104 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md index 0ad593f8b13a49..8e0ee638c276d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md @@ -150,4 +150,14 @@ La variable sistema OK toma el valor 1 si se recibe el registro. De lo contrario [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 79 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md index 4ad0dd07df7ba5..b7dab2510ae2d8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md @@ -40,4 +40,14 @@ La variable sistema OK toma el valor 1 si se recibe la variable. De lo contrario [ON ERR CALL](on-err-call.md) [RECEIVE RECORD](receive-record.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 81 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md index 12097c5f467b21..2e2ecef1b7a1be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md @@ -42,4 +42,13 @@ El siguiente ejemplo guarda el número del registro actual y luego busca en la t [GOTO RECORD](goto-record.md) [Is new record](is-new-record.md) [Selected record number](selected-record-number.md) -[Sequence number](sequence-number.md) \ No newline at end of file +[Sequence number](sequence-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 243 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md index 8e597992214f10..99cd4e018c51b6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md @@ -32,4 +32,13 @@ El siguiente ejemplo muestra una técnica de bucle actualmente utilizada para mo #### Ver también -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 76 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md index 046b9f21125fde..e2a0fc8335cd77 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md @@ -32,4 +32,13 @@ El siguiente ejemplo muestra una alerta indicando el porcentaje de clientes que #### Ver también [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 195 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md index e1c163132d17b0..bf7b26c3a54c53 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md @@ -28,4 +28,13 @@ El siguiente ejemplo muestra una alerta que indica el número de registros en la #### Ver también -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 83 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md index 38117deb9da512..96607d927cfe80 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando REDRAW WINDOW provoca una actualización del contenido de la ventana cuyo número de referencia se pasa en *ventana*. @@ -26,4 +23,13 @@ Si omite el parámetro *ventana*, REDRAW WINDOW aplica a la ventana del primer p #### Ver también -[ERASE WINDOW](erase-window.md) \ No newline at end of file +[ERASE WINDOW](erase-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 456 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md index 29a8d3498ed01e..3099ab08f85ec3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Cuando utiliza un método para modificar el contenido de un campo o subcampo mostrado en un subformulario, debe ejecutar REDRAW para asegurar que el formulario esté correctamente actualizado. . @@ -24,4 +21,13 @@ En el contexto de los list boxes en modo selección, la instrucción REDRAW apli #### Ver también -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 174 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md index 8e062427554b36..92200b1facdc5c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **REDUCE RESTORE WINDOW** reduce/expande la ventana cuyo número de referencia se pasó en *ventana* a/desde la barra de tareas en Windows o el dock en macOS. @@ -31,4 +28,13 @@ El comando cambia el estado de la ventana: [Is window reduced](is-window-reduced.md) [MAXIMIZE WINDOW](maximize-window.md) -[MINIMIZE WINDOW](minimize-window.md) \ No newline at end of file +[MINIMIZE WINDOW](minimize-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1829 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md index 2b641e96ea5b8f..e904b5d3a459d6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md @@ -56,4 +56,15 @@ El siguiente ejemplo busca las estadísticas correctas para una competencia mund *Conjuntos* [ORDER BY](order-by.md) [QUERY](query.md) -[SCAN INDEX](scan-index.md) \ No newline at end of file +[SCAN INDEX](scan-index.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 351 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md index 556086d17d88b6..13feaf3c57c174 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **Refresh license** actualiza la licencia actual del servidor 4D. Lo conecta con la base de datos de clientes 4D y activa automáticamente cualquier licencia nueva o actualizada (por ejemplo, clientes comprados adicionales) relacionada con la licencia actual. @@ -47,3 +44,13 @@ Desea actualizar su licencia y recibir un mensaje cuando se complete:     ALERT($res.statusText)  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1336 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md index 8a584b5a6a61ac..88bba8cb8f2936 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando REGENERATE MISSING TABLE reconstruye la tabla faltante cuyo nombre se pasa en el parámetro *nomTabla*. Cuando se reconstruye una tabla faltante, se vuelve visible en el editor de estructura y sus datos son accesibles nuevamente. @@ -61,4 +58,13 @@ Este método regenera todas las tablas faltantes eventualmente presentes en la b #### Ver también -[GET MISSING TABLE NAMES](get-missing-table-names.md) \ No newline at end of file +[GET MISSING TABLE NAMES](get-missing-table-names.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1126 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md index ba97db489de5f3..5d06482b6a92cd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando REGISTER CLIENT “registra” un equipo cliente 4D con el nombre especificado en *nomCliente* en 4D Server, con el fin de permitir a otros clientes o eventualmente 4D Server (utilizando procedimientos almacenados) ejecutar métodos utilizando el comando [EXECUTE ON CLIENT](execute-on-client.md "EXECUTE ON CLIENT"). Una vez registrado, un cliente 4D puede ejecutar uno o varios métodos para otros clientes. @@ -118,4 +115,14 @@ Si el cliente 4D está registrado correctamente, la variable sistema OK es igual [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 648 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md index 61d2675f33e620..efc0345e420687 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md @@ -47,4 +47,13 @@ En el primer parámetro, pase *curPassPhrase* o *curDataKey* que define la llave #### Ver también -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1638 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md index 38e20670c98e72..0e437807fa6940 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md @@ -38,4 +38,13 @@ Desea rechazar o aceptar las nuevas conexiones de clientes: [DROP REMOTE USER](drop-remote-user.md) [Application info](application-info.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1635 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md index d780eb85659ee2..6ca67c50ede99d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **REJECT** tiene dos sintaxis. La primera sintaxis no tiene parámetros. En este caso, el comando rechaza la totalidad de la entrada y obliga al usuario a permanecer en el formulario. La segunda sintaxis rechaza solamente el *campo* y obliga al usuario a permanecer en el campo. @@ -64,4 +61,13 @@ El siguiente ejemplo es parte de un método de objeto para un campo *\[Employees [ACCEPT](accept.md) [CANCEL](cancel.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 38 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md index 57a67c4661f151..3c1fe1daa817f6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -El comando RELATE MANY SELECTION crea una selección de registros en la tabla Muchos, basada en la selección actual de la tabla Uno. - -**Nota:** RELATE MANY SELECTION cambia el registro actual de la tabla Uno. +El comando RELATE MANY SELECTION crea una selección de registros en la tabla Muchos, basada en la selección actual de la tabla Uno.RELATE MANY SELECTION cambia el registro actual de la tabla Uno. #### Ejemplo @@ -34,4 +32,15 @@ Este ejemplo selecciona todas las facturas de clientes con crédito superior o i [QUERY](query.md) [RELATE ONE](relate-one.md) -[RELATE ONE SELECTION](relate-one-selection.md) \ No newline at end of file +[RELATE ONE SELECTION](relate-one-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 340 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md index 650870b0a5ee11..90695ac5875b87 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md @@ -64,4 +64,14 @@ Note que es necesario el comando RELATE MANY, aunque las relaciones sean automá #### Ver también [OLD RELATED MANY](old-related-many.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 262 | +| Hilo seguro | ✓ | +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md index e53ac6740db9f4..3e2a5749c116c7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md @@ -56,4 +56,15 @@ La siguiente técnica utiliza **RELATE ONE SELECTION** para obtener el mismo res *Conjuntos* [QUERY](query.md) [RELATE MANY SELECTION](relate-many-selection.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 349 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md index 7dc83dade1bf03..45e06a08360215 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción RELATE ONE acepta dos sintaxis. @@ -88,4 +85,16 @@ Si el comando se ejecuta correctamente y si los registros relacionados se han ca #### Ver también [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 42 | +| Hilo seguro | ✗ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md index 5f12902607478c..009e6ce337b0e2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando RELEASE MENU borra de la memoria el menú cuya referencia se pasa en *menu*.. La regla es la siguiente: a cada [Create menu](create-menu.md) debe corresponder un [RELEASE MENU](release-menu.md). @@ -56,4 +53,13 @@ Este ejemplo muestra las diferentes formas de utilizar este comando: #### Ver también -[Create menu](create-menu.md) \ No newline at end of file +[Create menu](create-menu.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 978 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md index 22bc6f2c564792..e2184daa3602bd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md @@ -25,4 +25,13 @@ A continuación debe recargar los datos utilizando el comando **RELOAD EXTERNAL #### Ver también -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1135 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md index 7099f502500754..72e5772a82d83e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **RELOAD PROJECT** recarga las definiciones del archivo fuente (métodos, formularios, etc.) desde el disco para el proyecto en ejecución en el entorno 4D actual. Solo se puede utilizar con proyectos 4D ejecutados en **modo interpretado**. La ejecución del comando es asíncrona. @@ -36,4 +33,13 @@ Cuando se llama al comando desde: #### Ver también - \ No newline at end of file + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1739 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md index 1996ad7ac4759c..56b15add3e0dad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver también -[ADD TO SET](add-to-set.md) \ No newline at end of file +[ADD TO SET](add-to-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 561 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md index 2ff877c0613967..af17f9cb1147d8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando REMOVE PICTURE FROM LIBRARY elimina de la librería de imágenes la imagen cuyo número de referencia se pasa en *refImag* o cuyo nombre se pasa en *nomImag*. @@ -51,4 +48,14 @@ El siguiente ejemplo borra de la librería de imágenes toda imagen cuyo nombre [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 567 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md index ceb27d2734c5ee..88b20e10270595 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md @@ -71,4 +71,13 @@ El siguiente ejemplo ilustra el uso del parámetro \* en el caso de una evaluaci [Change string](change-string.md) [Delete string](delete-string.md) -[Insert string](insert-string.md) \ No newline at end of file +[Insert string](insert-string.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 233 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md index a99a8f72e17ffa..511a7f0d42c15a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md @@ -77,4 +77,14 @@ Mostrará la siguiente caja de diálogo (en Windows): #### Ver también [ALERT](alert.md) -[CONFIRM](confirm.md) \ No newline at end of file +[CONFIRM](confirm.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 163 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md index a86f5ad81e890a..8bb2e48f7ef8d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando RESIZE FORM WINDOW permite modificar el tamaño de la ventana del formulario actual. @@ -48,4 +45,13 @@ Después de la ejecución de esta línea: [FORM GET PROPERTIES](form-get-properties.md) [FORM SET SIZE](form-set-size.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 890 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md index c007fdb72ba212..f7761525b17dc3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md @@ -30,4 +30,14 @@ Si *rutaAlias* especifica un alias/atajo, la variable sistema OK toma el valor 1 #### Ver también -[CREATE ALIAS](create-alias.md) \ No newline at end of file +[CREATE ALIAS](create-alias.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 695 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md index 564036a5ff895a..ab51e38511041b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md @@ -108,4 +108,13 @@ Este es un ejemplo de puntero a un array 2D: [Get pointer](get-pointer.md) [Is a variable](is-a-variable.md) [Is nil pointer](is-nil-pointer.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 394 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md index 5dbcb0b1b63367..98fd9b42dfd1dc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando RESOURCE LIST llena los arrays *resNums* y *resNoms* con los números y los nombres de los recursos cuyo tipo se pasa en *resTipo*. @@ -71,4 +68,13 @@ El siguiente ejemplo copia los recursos imagen presentes en todos los archivos d #### Ver también -[RESOURCE TYPE LIST](resource-type-list.md) \ No newline at end of file +[RESOURCE TYPE LIST](resource-type-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 500 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md index ef709ad0022f71..4f27e19a3a282e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando RESOURCE TYPE LIST llena el array *resTipos* con los tipos de recursos presentes en el (los) archivo(s) de recursos abierto(s). @@ -82,4 +79,13 @@ Una vez este método de proyecto se implementa en una base, puede escribir: #### Ver también -[RESOURCE LIST](resource-list.md) \ No newline at end of file +[RESOURCE LIST](resource-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 499 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md index 808a99615989e0..58ff06081952df 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md @@ -33,4 +33,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1, #### Ver también [Get last update log path](get-last-update-log-path.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1292 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md index 9a4ffa27d6d8f6..471d969a72df01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md @@ -34,4 +34,13 @@ El tipo y el contenido de los parámetros *info1* e *info2* dependen del valor d #### Ver también -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 889 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md index b92b58bee57851..70aa9272bef49b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando RESTORE permite restituir el o los archivos incluidos en un archivo 4D. Este comando es útil con interfaces personalizadas para la gestión de backups. @@ -35,4 +32,14 @@ El comando RESTORE modifica el valor de las variables *OK* y *Document*: si la r #### Ver también [BACKUP](backup.md) -[RESTORE INFO](restore-info.md) \ No newline at end of file +[RESTORE INFO](restore-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 918 | +| Hilo seguro | ✗ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md index 50a0701bbeeef1..bb8d334b971c64 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md @@ -26,4 +26,13 @@ El comando **RESUME INDEXES** sólo se puede llamar desde 4D Server o un 4D loca #### Ver también [CREATE INDEX](create-index.md) -[PAUSE INDEXES](pause-indexes.md) \ No newline at end of file +[PAUSE INDEXES](pause-indexes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1294 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md index 5de423402e7f0e..61794f960c16a5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md @@ -24,4 +24,14 @@ Si *proceso* ha sido retrasado anteriormente, consulte los comandos [PAUSE PROCE #### Ver también [DELAY PROCESS](delay-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 320 | +| Hilo seguro | ✓ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md index ecadda4fe8061b..d06bbb15f49d9f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md @@ -22,4 +22,13 @@ Para más información, consulte la sección *Suspender las transacciones*. [Active transaction](active-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspender las transacciones* \ No newline at end of file +*Suspender las transacciones* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1386 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md index 366f9eee7d6052..c4ce8df65f1f90 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Right click devuelve [True](true.md "True") si se hace clic en el botón derecho del ratón. @@ -25,4 +22,13 @@ Este comando debe utilizarse únicamente en el contexto del evento de formulario #### Ver también [Contextual click](contextual-click.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 712 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md index 4d2bb93774a1c6..88c8541dfdf7bd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md @@ -36,4 +36,13 @@ El siguiente ejemplo ilustra cómo Redondeo funciona con diferentes argumentos. #### Ver también -[Trunc](trunc.md) \ No newline at end of file +[Trunc](trunc.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 94 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md index 47a19ec9d65da9..38b0cf860839f7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SAVE LIST guarda la lista cuyo número de referencia pasó en *lista*, en el editor de listas en el entorno Diseño, bajo el nombre que pasó en *nomLista*. @@ -27,4 +24,13 @@ Su contenido se reemplazará si ya hay una lista con el mismo nombre. #### Ver también -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 384 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md index 595edfd63cc8d3..f6b348555683a2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md @@ -47,4 +47,13 @@ El siguiente ejemplo es parte de un método que lee registros de un documento. E [CREATE RECORD](create-record.md) [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 53 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md index 5f538a94e73567..93a7ec607d0dee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md @@ -24,4 +24,13 @@ SAVE RELATED ONE no guardará un registro bloqueado. Cuando utilice este comando [CREATE RELATED ONE](create-related-one.md) [Locked](locked.md) [RELATE ONE](relate-one.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 43 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md index 5322072913262c..f857b6fb09e2c6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md @@ -40,4 +40,14 @@ Si el usuario hace clic en el botón Cancelar en la caja de diálogo de guardar #### Ver también -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 184 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md index c288474dd183df..b0a7cfb08edb61 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md @@ -47,4 +47,14 @@ Si las variables se guardan correctamente, la variable sistema OK toma el valor [DOCUMENT TO BLOB](document-to-blob.md) [LOAD VARIABLES](load-variables.md) [VARIABLE TO BLOB](variable-to-blob.md) -*Variables sistema* \ No newline at end of file +*Variables sistema* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 75 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md index d5af8cdf92b369..22d5977fe7c7ec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md @@ -44,4 +44,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) \ No newline at end of file +[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 857 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md index e6d50031a3bc56..1402f7a69c821c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md @@ -73,4 +73,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[SAX GET XML CDATA](sax-get-xml-cdata.md) \ No newline at end of file +[SAX GET XML CDATA](sax-get-xml-cdata.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 856 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md index 1ae82d97fc23ae..e33db95e668c77 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md @@ -45,4 +45,14 @@ En caso de error, el comando devuelve un error que puede interceptarse utilizand #### Ver también -[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) \ No newline at end of file +[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 852 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md index fede7c59414848..4689874dc46f76 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md @@ -45,4 +45,14 @@ En caso de error, el comando devuelve un error que puede interceptarse utilizand #### Ver también -[SAX ADD XML COMMENT](sax-add-xml-comment.md) \ No newline at end of file +[SAX ADD XML COMMENT](sax-add-xml-comment.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 851 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md index 12900eff30bc9c..08846486996039 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md @@ -49,4 +49,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [SAX GET XML ELEMENT VALUE](sax-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 855 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md index ae024116bf00a1..d596d0dc4e2c45 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md @@ -36,4 +36,13 @@ Si el último elemento abierto es **, la siguiente instrucción: #### Ver también [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 854 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md index 3afe50713efc40..2aa04396531d7c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md @@ -48,4 +48,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [SAX ADD XML CDATA](sax-add-xml-cdata.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 878 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md index ff0dcf1999dfda..7f6121dc14572b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md @@ -25,4 +25,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [SAX ADD XML COMMENT](sax-add-xml-comment.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 874 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md index b38f0bfc2b1856..9500318a22b285 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md @@ -29,4 +29,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [SAX Get XML node](sax-get-xml-node.md) -[SAX SET XML DECLARATION](sax-set-xml-declaration.md) \ No newline at end of file +[SAX SET XML DECLARATION](sax-set-xml-declaration.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 873 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md index c61c7db540c827..4dab025b953206 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md @@ -43,4 +43,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 877 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md index fd7f06e67ce95b..47b98995d76b6b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md @@ -56,4 +56,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 876 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md index 207e08655fd28a..c9f334890a504b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md @@ -47,4 +47,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 879 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md index b3bb2d60e757c0..7e0e7fba511fdb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md @@ -55,3 +55,14 @@ El siguiente ejemplo procesa un evento: #### Variables y conjuntos del sistema Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. De lo contrario toma el valor 0 y se genera un error. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 860 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md index 6e2e93acabd075..45544c4db31393 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md @@ -39,4 +39,13 @@ La siguiente instrucción devolverá “PI” en *vNom* y “TextProcess” en * #### Ver también [SAX ADD PROCESSING INSTRUCTION](sax-add-processing-instruction.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 875 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md index 71eaf65b0ee4e8..eb7e7049792a37 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md @@ -53,4 +53,13 @@ El siguiente método: [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 921 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md index 5d0006b27bf629..20e3114157cae0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md @@ -51,4 +51,14 @@ Si se pasa en tag un carácter inválido, se genera un error. #### Ver también [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 853 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md index e29b72f4959ff8..f2a9dbede314ab 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md @@ -44,4 +44,13 @@ El siguiente código: #### Ver también -[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) \ No newline at end of file +[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 858 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md index eb686375c17833..adcb195c756a92 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md @@ -48,4 +48,15 @@ El siguiente ejemplo envía cartas a los 50 peores clientes y 50 a los mejores c [ORDER BY](order-by.md) [QUERY](query.md) -[REDUCE SELECTION](reduce-selection.md) \ No newline at end of file +[REDUCE SELECTION](reduce-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 350 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md index 229bfc528f4ef3..0cd7edc32ede0e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SCREEN COORDINATES devuelve en los parámetros *izquierda*, *arriba*, *derecha,* y *abajo* las coordenadas de la pantalla especificada por *IDpantalla*. @@ -47,4 +44,13 @@ Las siguientes imágenes demuestran las diferencias entre el tamaño de la panta [Count screens](count-screens.md) [Menu bar screen](menu-bar-screen.md) -[SCREEN DEPTH](screen-depth.md) \ No newline at end of file +[SCREEN DEPTH](screen-depth.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 438 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md index cb19cb463d0187..e5b5c0fb9f23e5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SCREEN DEPTH devuelve en los parámetros *profundidad* y *color* la información sobre el monitor. @@ -61,3 +58,13 @@ Su aplicación muestra varios gráficos a color. Puede escribir en alguna parte #### Ver también [Count screens](count-screens.md) + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 439 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md index e0afba9eda6763..d996da01cbefe6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción En Windows, Screen height devuelve la altura de la ventana de la aplicación 4D (ventana MDI). Si pasa el parámetro opcional *\**, Screen height devuelve la altura de la pantalla. @@ -26,4 +23,13 @@ En Mac OS, Screen height devuelve la altura de la pantalla principal, es decir l #### Ver también [SCREEN COORDINATES](screen-coordinates.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 188 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md index 338d8d2f3317a0..dee9b7bbf39043 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción En Windows, Screen width devuelve el largo de la ventana de la aplicación 4D (ventana MDI). Si pasa el parámetro opcional *\**, Screen width devuelve el largo de la pantalla. @@ -26,4 +23,13 @@ En Macintosh, Screen width devuelve el largo de la pantalla principal, es decir #### Ver también [SCREEN COORDINATES](screen-coordinates.md) -[Screen height](screen-height.md) \ No newline at end of file +[Screen height](screen-height.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 187 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md index 3bf0040a66e218..3dd2e69fcecd8c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md @@ -96,4 +96,14 @@ Si no se seleccionó ningún archivo (por ejemplo, si el usuario hace clic en el #### Ver también [Open document](open-document.md) -[Select folder](select-folder.md) \ No newline at end of file +[Select folder](select-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 905 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md index 233b3ec7a4c9fa..c41061eb4d5c47 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md @@ -86,4 +86,14 @@ El siguiente ejemplo le permite seleccionar la carpeta en la cual se almacenará [CREATE FOLDER](create-folder.md) [FOLDER LIST](folder-list.md) -[Select document](select-document.md) \ No newline at end of file +[Select document](select-document.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 670 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md index be92c665c49e54..8fe315669783a6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SELECT LIST ITEMS BY POSITION selecciona el(los) elemento(s) cuya posición se pasa en *posicionElem* y opcionalmente en *posicionArray* en la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -74,4 +71,13 @@ Se seleccionan los elementos segundo, tercero y quinto de la lista jerárquica [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 381 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md index e694ad615c4ba0..524897e2a106e4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SELECT LIST ITEMS BY REFERENCE selecciona el o los elementos cuyo número de referencia se pasa en *refElem* y opcionalmente en *refArray*, en la lista cuyo número de referencia se pasa en *lista*. @@ -51,4 +48,13 @@ Si trabaja con los números de referencia de los elementos, asegúrese de constr [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 630 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md index 0d97697d8fe7c3..ab8be4f200ec95 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SELECT LOG FILE** crea, o cierra el archivo historial de acuerdo al valor que se pase en *historial*. @@ -40,4 +37,14 @@ Se genera el error -4447 si no se puede realizar la operación porque la base de #### Ver también -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 345 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md index 7a26b84c2071b4..08396da828d5e0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Select RGB Color muestra la ventana sistema de selección de color y devuelve el valor RGB del color seleccionado por el usuario. @@ -41,4 +38,15 @@ El efecto de la validación de esta caja de diálogo difiere dependiendo de la p #### Ver también -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 956 | +| Hilo seguro | ✗ | +| Modifica variables | OK | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md index f195ad5f92cdc6..cc6e30bd21e634 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Selected list items devuelve la posición o referencia del elemento seleccionado en la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -86,4 +83,13 @@ Esta es una lista llamada *hList,* mostrada en el entorno Aplicación: #### Ver también [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 379 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md index 890ca10c77f9f1..8067fbfbd4fb01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md @@ -34,4 +34,13 @@ El siguiente ejemplo guarda el número del registro actual de la selección en u *Acerca de números de registros* [GOTO SELECTED RECORD](goto-selected-record.md) -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 246 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md index 251967a99bd161..6bd5670416b539 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md @@ -107,4 +107,13 @@ Uso de los 50 primeros registros actuales de la tabla \[Facturas\] para cargar v [ON ERR CALL](on-err-call.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 368 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md index 90abce0415f634..2c3e38dbe98218 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md @@ -78,4 +78,13 @@ El mismo ejemplo puede escribirse: [MULTI SORT ARRAY](multi-sort-array.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 260 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md index 4851e3cf774c60..f28af9847ac761 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md @@ -90,4 +90,13 @@ Puede utilizar la sintaxis *template* para exportar campos de tablas diferentes: #### Ver también -[JSON TO SELECTION](json-to-selection.md) \ No newline at end of file +[JSON TO SELECTION](json-to-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1234 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md index e8919eb216d02b..66d31ecf92ab34 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Nota de compatibilidad Este comando sólo se conserva por razones de compatibilidad. A partir de la versión 12 de 4D, se recomienda utilizar el comando OBJECT Get pointer. @@ -44,4 +41,13 @@ Ver el ejemplo del comando [RESOLVE POINTER](resolve-pointer.md "RESOLVE POINTER [OBJECT Get pointer](object-get-pointer.md) [RESOLVE POINTER](resolve-pointer.md) -[This ](this.md) \ No newline at end of file +[This ](this.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 308 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md index 272569b9f74d2f..8204eeb3079f2d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md @@ -146,4 +146,13 @@ Sintaxis: [CLEAR SEMAPHORE](clear-semaphore.md) *Semáforos y señales* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 143 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md index 0b44d7e800c647..c43b8c680986c4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md @@ -51,4 +51,13 @@ Desea enviar un mensaje a todos los usuarios y luego enviar un mensaje a un usua #### Ver también -[DROP REMOTE USER](drop-remote-user.md) \ No newline at end of file +[DROP REMOTE USER](drop-remote-user.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1632 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md index 5ab91fd41bed56..822435f9d32179 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md @@ -81,4 +81,13 @@ Este ejemplo ilustra el envío y recuperación de caracteres extendidos vía un [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 103 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md index 65ffe97099799f..d01793ffbf9378 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md @@ -33,4 +33,13 @@ Ver el ejemplo del comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD"). [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 78 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md index ad9fd2d42e5828..4c43ac0b917818 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md @@ -31,4 +31,13 @@ Ver el ejemplo del comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD"). [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 80 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md index 7433ab040bb954..59121c1f76e4b8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md @@ -58,4 +58,13 @@ El siguiente ejemplo es parte de un método de formulario. Estas líneas de cód *Acerca de números de registros* [Record number](record-number.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 244 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md index f372842f00c864..9a1e5f50f56a0c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md @@ -51,4 +51,13 @@ Este método modifica el valor de una propiedad "settings" almacenada en el obje #### Ver también -[Process activity](../commands/process-activity.md) \ No newline at end of file +[Process activity](../commands/process-activity.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1839 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md index cc06ccb634df0b..36b7034d0fa126 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET ABOUT** cambia el comando de menú **Acerca de 4D** del menú **Ayuda** (Windows) o del menú **Aplicación** (Mac OS X) por *textoElem*. @@ -45,4 +42,13 @@ El siguiente ejemplo reinicializa el comando de menú Acerca de 4D: #### Ver también -[SET HELP MENU](set-help-menu.md) \ No newline at end of file +[SET HELP MENU](set-help-menu.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 316 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md index 38781894f0a228..fd7cdf50a42cdb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET APPLICATION COLOR SCHEME** define el esquema de color a utilizar a nivel de la aplicación para la sesión actual. Este esquema se aplicará a los formularios que no declaren ya un esquema específico (un esquema de color definido a nivel de formulario tiene prioridad sobre el nivel de aplicación). @@ -38,4 +35,13 @@ En el parámetro *esquemaColor*, pase un esquema de color a aplicar: #### Ver también [FORM Get color scheme](form-get-color-scheme.md) -[Get application color scheme](get-application-color-scheme.md) \ No newline at end of file +[Get application color scheme](get-application-color-scheme.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1762 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md index 937f34862be3a4..30b0e7f045f12c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md @@ -37,4 +37,13 @@ Desactivación de aserciones: [ASSERT](assert.md) [Asserted](asserted.md) -[Get assert enabled](get-assert-enabled.md) \ No newline at end of file +[Get assert enabled](get-assert-enabled.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1131 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md index 8487c82c14c720..f759321085b8c2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md @@ -43,4 +43,13 @@ El siguiente ejemplo vuelve automáticas todas las relaciones Muchos a Uno y res *Relaciones* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 310 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md index faf7b724366f4e..555a8359d5bcfc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md @@ -49,4 +49,13 @@ El siguiente ejemplo crea un BLOB de 16K lleno de 0xFF: #### Ver también -[BLOB size](blob-size.md) \ No newline at end of file +[BLOB size](blob-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 606 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md index 032e124af4f8b3..49061d28fc390c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md @@ -47,4 +47,13 @@ En el , usted desea definir una prioridad alta para la tabla \[Customer\]: #### Ver también [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) -[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) \ No newline at end of file +[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1425 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md index 9496ab83490942..2339b617575e51 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md @@ -38,4 +38,13 @@ Usted quiere añadir 100 MB al tamaño de la caché de su base actual. Puede esc #### Ver también -[Get cache size](get-cache-size.md) \ No newline at end of file +[Get cache size](get-cache-size.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1399 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md index e52b712a937ae5..b7333b6f0fc421 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md @@ -167,4 +167,14 @@ Ver los ejemplos de los comandos [RECEIVE BUFFER](receive-buffer.md "RECEIVE BUF [SEND PACKET](send-packet.md) [SEND RECORD](send-record.md) [SEND VARIABLE](send-variable.md) -[SET TIMEOUT](set-timeout.md) \ No newline at end of file +[SET TIMEOUT](set-timeout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 77 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md index 8fb3b1e8224622..4612a600da3c70 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET CURRENT PRINTER** designa la impresora a utilizar para imprimir con la aplicación 4D actual. @@ -54,4 +51,14 @@ Creación de un documento PDF bajo Windows: #### Ver también [Get current printer](get-current-printer.md) -[PRINTERS LIST](printers-list.md) \ No newline at end of file +[PRINTERS LIST](printers-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 787 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md index 3e07d8ab614a19..240ace8d5e3f46 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET CURSOR cambia el puntero (gráfico) del ratón por el del sistema cuyo número de identificación se pasa en *cursor*. @@ -62,3 +59,13 @@ Usted quiere que se muestre el cursor ![](../assets/en/commands/pict2478692.en.p     SET CURSOR(9019)  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 469 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md index 4deb0ea8f0f3a7..ae7b5bb9ba564f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET DATABASE LOCALIZATION utilizado para modificar el lenguaje actual de la base para la sesión actual. @@ -71,4 +68,14 @@ La interfaz de su aplicación utiliza la cadena estática ":xliff:shopping". Los #### Ver también -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1104 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md index e9ce2f51a0e637..fdc19fe2f45f01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET DATABASE PARAMETER** permite modificar varios parámetros internos de la base de datos 4D. @@ -147,4 +144,13 @@ Usted quiere exportar datos en JSON que contienen una fecha 4D convertida. Note [Get database parameter](get-database-parameter.md) [LOG EVENT](log-event.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 642 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md index 6e5650435375e8..7957c67b6e1a1a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md @@ -64,3 +64,13 @@ En todos los casos: * 25/01/2007 significa enero 25, 2007 Este comando afecta sólo la entrada de datos. No tiene ningún efecto en el almacenamiento de datos, cálculos, etc. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 392 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md index 70341fc6ffd967..84785f2e634baf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md @@ -29,4 +29,13 @@ Dependiendo del ancla puede pasar valores positivos o negativos en *offset*. [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 482 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md index d31b455c92d0ce..330e1bd0289aa9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md @@ -34,4 +34,14 @@ Las fechas y horas de creación y última modificación son administradas por el #### Ver también -[GET DOCUMENT PROPERTIES](get-document-properties.md) \ No newline at end of file +[GET DOCUMENT PROPERTIES](get-document-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 478 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md index f011142f0ebac2..706e676a507d3e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md @@ -26,4 +26,13 @@ En Macintosh, se modifica el tamaño del data fork del documento. [Get document position](get-document-position.md) [Get document size](get-document-size.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 480 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md index 6dd0849d24842b..4964b61ce72408 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET DRAG ICON** asocia la imagen de icono al cursor durante las operaciones de arrastrar y soltar que se manejan por programación. @@ -59,4 +56,13 @@ Note que puede modificar la posición del cursor con respecto a la imagen: #### Ver también -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1272 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md index 81e075f5a0cc9e..3946c2374eea61 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md @@ -41,4 +41,13 @@ Consulte los ejemplos del comando [LAUNCH EXTERNAL PROCESS](launch-external-proc #### Ver también -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 812 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md index 27c63d1d23d8a5..d20e00df8799b2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md @@ -56,4 +56,13 @@ Usted desea guardar el contenido de un archivo existente en el campo imagen, alm #### Ver también [Get external data path](get-external-data-path.md) -[RELOAD EXTERNAL DATA](reload-external-data.md) \ No newline at end of file +[RELOAD EXTERNAL DATA](reload-external-data.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1134 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md index 35f870cca3ba61..de13cfa8b94b40 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md @@ -53,4 +53,14 @@ El siguiente código permite definir sólo las relaciones útiles como automáti [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 919 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md index 480485f3b142b5..b17fb5fb685b48 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **SET FIELD TITLES** permite ocultar, renombrar y reorganizar los campos de la tabla pasada en *tabla* cuando aparecen en las cajas de diálogo estándar de 4D, tal como el editor de búsquedas, en el entorno Aplicación(es decir, cuando el modo de inicio es **Aplicación**, o después de seleccionar **Probar aplicación** en el menú **Ejecutar**). @@ -62,4 +59,13 @@ Ver el ejemplo del comando [SET TABLE TITLES](set-table-titles.md "SET TABLE TIT [GET FIELD TITLES](get-field-titles.md) [Last field number](last-field-number.md) [Parse formula](parse-formula.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 602 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md index f06d604e0a7b91..703421f3f91054 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md @@ -27,4 +27,13 @@ El valor NULL es utilizado por el motor SQL de 4D. Para mayor información, cons #### Ver también [Is field value Null](is-field-value-null.md) -[Null](null.md) \ No newline at end of file +[Null](null.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 965 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md index 1d0e72034caece..b05ea26a4e0390 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET FILE TO PASTEBOARD añade al portapapeles la ruta de acceso completa del archivo pasada en el parámetro *archivo*. Este comando permite crear interfaces permitiendo arrastrar y soltar objetos 4D a los archivos en el escritorio por ejemplo. @@ -29,4 +26,13 @@ El comando admite el asterisco *\** como parámetro opcional. Por defecto, cuand #### Ver también -[Get file from pasteboard](get-file-from-pasteboard.md) \ No newline at end of file +[Get file from pasteboard](get-file-from-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 975 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md index c987faa3b2304a..b2d883daba3a54 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md @@ -43,4 +43,14 @@ Desea promocionar al usuario actual a los grupos "admin" y "plugins" para la ses [Get group access](get-group-access.md) [Get plugin access](get-plugin-access.md) [SET PLUGIN ACCESS](set-plugin-access.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1737 | +| Hilo seguro | ✓ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md index 5aec95650c7ca3..d38d25cca6c140 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Set group properties permite modificar y actualizar las propiedades de un grupo existente cuyo número de referencia único se pasa en *refGrupo*, o para añadir un nuevo grupo. @@ -58,4 +55,14 @@ Si no tiene privilegios de acceso para llamar al comando Set group properties o [GET GROUP LIST](get-group-list.md) [GET GROUP PROPERTIES](get-group-properties.md) -[GET USER LIST](get-user-list.md) \ No newline at end of file +[GET USER LIST](get-user-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 614 | +| Hilo seguro | ✗ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md index bc69dd288e9eb1..b00085c418a932 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET HELP MENU** le permite reemplazar el menú **Ayuda** por defecto de 4D por la colección de elementos del menù *menuCol* del modo aplicación. @@ -61,4 +58,13 @@ Desea personalizar el menú **Ayuda** de su aplicación: #### Ver también -[SET ABOUT](set-about.md) \ No newline at end of file +[SET ABOUT](set-about.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1801 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md index 775c7cbf50ba96..c8372be662b200 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md @@ -47,4 +47,13 @@ En el , usted desea definir una alta prioridad para los índices campo \[Cliente #### Ver también [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) -[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) \ No newline at end of file +[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1401 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md index 84c43369c8ca3b..ed1aca03be0a30 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md @@ -88,4 +88,13 @@ Creación de un índice de palabras claves: [DELETE INDEX](delete-index.md) [GET FIELD PROPERTIES](get-field-properties.md) [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 344 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md index 330c4262121866..be453334242568 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET LIST ITEM FONT modifica la fuente de caracteres del elemento especificado por el parámetro *refElem* de la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -44,4 +41,13 @@ Aplicar la fuente Times al elemento actual de la lista: [Get list item font](get-list-item-font.md) [OBJECT SET FONT](object-set-font.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 953 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md index 001f797a920a08..2b6a9c000ceef0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET LIST ITEM ICON permite modificar el icono asociado al elemento especificado por el parámetro *refElem* de la lista cuyo número de referencia o nombre de objeto se pasa en *lista* @@ -48,4 +45,13 @@ Queremos asignar la misma imagen a dos elementos diferentes. El siguiente códig [SET LIST ITEM](set-list-item.md) [SET LIST ITEM FONT](set-list-item-font.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 950 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md index 375b9d66be7552..bec6368994fd01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET LIST ITEM PARAMETER permite modificar el parámetro *selector* para el elemento *refElem* de la lista jerárquica cuya referencia o nombre de objeto se pasa en el parámetro *lista*. @@ -63,4 +60,13 @@ Usted desea definir como lista de opciones de un menú emergente jerárquico una [Action info](action-info.md) [GET LIST ITEM PARAMETER](get-list-item-parameter.md) [GET LIST ITEM PARAMETER ARRAYS](get-list-item-parameter-arrays.md) -[INSERT IN LIST](insert-in-list.md) \ No newline at end of file +[INSERT IN LIST](insert-in-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 986 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md index a49cd1cb237a14..9d4865fea73ee9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET LIST ITEM PROPERTIES** modifica el elemento designado por el parámetro *refElem* de la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -79,4 +76,13 @@ El siguiente ejemplo cambia el texto del elemento actual de *lista* a negrita y [GET LIST ITEM PROPERTIES](get-list-item-properties.md) *Listas jerárquicas* [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 386 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md index 9bea13f7bc8bd4..d2876196e77c01 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET LIST ITEM modifica el elemento designado por el parámetro *refElem* en la lista cuyo número de referencia o nombre de objeto se pasa en *lista*. @@ -79,4 +76,13 @@ Ver ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST"). [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [SET LIST ITEM FONT](set-list-item-font.md) [SET LIST ITEM ICON](set-list-item-icon.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 385 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md index 369b4acc7bd478..92f19c7180a053 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET LIST PROPERTIES** define el alto de línea y el funcionamiento de las lista jerárquica cuya referencia se pasa en el parámetro *lista*. @@ -67,4 +64,13 @@ Desea rechazar la sublista de expandir/contraer al hacer doble clic. Puede escri [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [GET LIST PROPERTIES](get-list-properties.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 387 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md index 9d8669f4998b06..20b64e7fe2da67 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MACRO PARAMETER inserta el texto *paramText* en el método desde el cual se llama. @@ -59,4 +56,13 @@ Esta macro crea un nuevo texto que será devuelto al método llamante: #### Ver también -[GET MACRO PARAMETER](get-macro-parameter.md) \ No newline at end of file +[GET MACRO PARAMETER](get-macro-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 998 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md index 286111a7402e42..cf1b72f51c504f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción MENU BAR reemplaza la barra de menús actual con la especificada por *barra* en el proceso actual únicamente. En el parámetro *barra*, puede pasar el número o nombre de la nueva barra. Igualmente puede pasar una referencia única de menú (tipo [MenuRef](# "Unique ID (16-character alphanumeric) of a menu"), cadena de 16 caracteres). Cuando trabaja con referencias, los menús pueden ser utilizados como barras de menú y viceversa (ver la sección *Gestión de menús*). @@ -120,4 +117,13 @@ En este ejemplo, crearemos por programación, una barra de menús incluyendo los #### Ver también -*Gestión de menús* \ No newline at end of file +*Gestión de menús* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 67 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md index ec6b1299cb7b68..f1623fcfb6ad40 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET MENU ITEM ICON** permite modificar el icono asociado a la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -45,4 +42,13 @@ Uso de una imagen ubicada en la carpeta Resources de la base: #### Ver también -[GET MENU ITEM ICON](get-menu-item-icon.md) \ No newline at end of file +[GET MENU ITEM ICON](get-menu-item-icon.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 984 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md index 1115180a2fcdcf..dad11fabc54ad5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MENU ITEM MARK cambia la marca del elemento de menú cuyo número o referencia de menú se pasa en *menu* y cuyo número de línea se pasa en *menuItem* al primer carácter de la cadena pasada en *marca*. Puede pasar -1 en *menuItem* para designar la última línea añadida al menú. @@ -38,4 +35,14 @@ Ver ejemplo para el comando [Get menu item mark](get-menu-item-mark.md "Get menu #### Ver también -[Get menu item mark](get-menu-item-mark.md) \ No newline at end of file +[Get menu item mark](get-menu-item-mark.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 208 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md index 3786228a67da2c..0bf2805dcc79c9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MENU ITEM METHOD puede utilizarse para modificar el método de proyecto 4D asociado a la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -37,4 +34,13 @@ Consulte el ejemplo del comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR"). #### Ver también -[Get menu item method](get-menu-item-method.md) \ No newline at end of file +[Get menu item method](get-menu-item-method.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 982 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md index 69fcbadd90e353..7ba75dd9a0269d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MENU ITEM PARAMETER permite asociar una cadena de caracteres personalizada con una línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -43,4 +40,13 @@ Este código ofrece un menú que incluye los nombres de las ventanas abiertas y [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[Get selected menu item parameter](get-selected-menu-item-parameter.md) \ No newline at end of file +[Get selected menu item parameter](get-selected-menu-item-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1004 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md index 8c60c0e7f8941c..2477bc70957f55 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET MENU ITEM PROPERTY** permite fijar el *valor* de la propiedad para la línea de menú designada por los parámetros *menu* y *lineaMenu*. @@ -47,4 +44,13 @@ En el caso de la propiedad Associated standard action, puede pasar en el paráme #### Ver también [Dynamic pop up menu](dynamic-pop-up-menu.md) -[GET MENU ITEM PROPERTY](get-menu-item-property.md) \ No newline at end of file +[GET MENU ITEM PROPERTY](get-menu-item-property.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 973 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md index 7cfc98c1f665d8..bb5b4ad2c01568 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET MENU ITEM SHORTCUT** asigna un nuevo acceso directo a un elemento del menú. @@ -79,4 +76,14 @@ Definición del atajo de teclado F4 para la opción de menú "Cerrar": #### Ver también [Get menu item key](get-menu-item-key.md) -[Get menu item modifiers](get-menu-item-modifiers.md) \ No newline at end of file +[Get menu item modifiers](get-menu-item-modifiers.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 423 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md index 85b80d14883b35..9cec5f5c6b2569 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MENU ITEM STYLE cambia el estilo de la fuente de la línea de menú cuyo número o referencia de menú se pasa en *menu* y cuyo número de elemento se pasa en *menuItem* de acuerdo al estilo de fuente pasado en *itemEstilo*. Puede pasa -1 en *menuItem* para indicar el último elemento añadido a *menu*. @@ -40,4 +37,14 @@ En el parámetro *itemEstilo* puede definir el estilo del elemento. Pase una com #### Ver también -[Get menu item style](get-menu-item-style.md) \ No newline at end of file +[Get menu item style](get-menu-item-style.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 425 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md index 13815238d92ad2..3026bde70097e9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET MENU ITEM cambia el texto de la línea de menú cuyo número o referencia de menú se pasa en *menu* y cuyo número de elemento se pasa en *menuItem*, para el texto que pasó en *itemText*. Puede pasar -1 en *menuItem* para designar el último elemento añadido a *menu*. @@ -34,4 +31,14 @@ Si omite el parámetro *proceso*, SET MENU ITEM se aplica a la barra de menús d [APPEND MENU ITEM](append-menu-item.md) [Get menu item](get-menu-item.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 348 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md index bb33611171f3b9..4ac3f550103b4b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md @@ -25,4 +25,13 @@ El nombre por defecto se utiliza como nombre de archivo cuando la imagen se expo #### Ver también [Get picture file name](get-picture-file-name.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1172 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md index dfe669e3aa0623..1004d1de12c731 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md @@ -81,4 +81,14 @@ Cuanto todos los metadatos se manipulan vía una referencia de elementos DOM, la [GET PICTURE KEYWORDS](get-picture-keywords.md) [GET PICTURE METADATA](get-picture-metadata.md) *Nombres de metadatos imágenes* -*Picture Metadata Values* \ No newline at end of file +*Picture Metadata Values* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1121 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md index e72babc0d9f7ed..4a33880f0fdb1d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET PICTURE TO LIBRARY crea una nueva imagen o reemplaza una imagen existente en la librería de imágenes. @@ -94,4 +91,15 @@ Si no hay suficiente memoria para añadir la imagen a la librería de imágenes, [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) \ No newline at end of file +[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 566 | +| Hilo seguro | ✗ | +| Modifica variables | error | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md index 49e38392d9d4b8..202a7265523ab1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción SET PICTURE TO PASTEBOARD limpia el portapapeles y coloca una copia de la imagen que usted pasó en *imagen* en el portapapeles. @@ -50,4 +47,14 @@ Si no hay suficiente memoria para colocar una copia de la imagen en el portapape #### Ver también [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) \ No newline at end of file +[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 521 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md index d3f1c900ebcd92..cebdca8a390a61 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET PLUGIN ACCESS permite especificar por programación el grupo de usuarios autorizado a utilizar cada plug-in “serializado” instalado en la base. Al hacer esto, puede administrar la repartición de las licencias de los plug-ins. @@ -45,4 +42,13 @@ Pase en el parámetro *grupo* el nombre del grupo cuyos usuarios están autoriza [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 845 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md index bcbd3e00312015..494711c9a85406 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET PRINT MARKER permite definir la posición de un marcador durante la impresión. Combinado con los comandos [Get print marker](get-print-marker.md "Get print marker"), [OBJECT MOVE](object-move.md "OBJECT MOVE") o [Print form](print-form.md "Print form"), este comando le permite ajustar el tamaño de las áreas de impresión. @@ -183,4 +180,13 @@ El método de formulario List\_Imp3 es el siguiente: [PAGE BREAK](page-break.md) [Print form](print-form.md) [PRINT RECORD](print-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 709 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md index 0f3111be316a5e..8fa679164439ff 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET PRINT OPTION** se utiliza para modificar por programación el valor de una opción de impresión. Cada opción definida utilizando este comando se aplica a los [parámetros de impresión actuales 4D](https://developer.4d.com/docs/settings/compatibility/) siempre que no se llame otro comando que modifique los parámetros de impresión ([PRINT SETTINGS](print-settings.md), [PRINT SELECTION](print-selection.md) sin el parámetro *\>* parámetro, etc.). Si se ha abierto un trabajo de impresión (por ejemplo con [OPEN PRINTING JOB](open-printing-job.md)), la opción se define para el trabajo y no puede modificarse mientras el trabajo no haya finalizado (excepto para Orientation option, ver más adelante). @@ -81,4 +78,14 @@ Si el valor pasado por una *opción* es incorrecto o si no está disponible en l *Opciones de impresión* [Print form](print-form.md) [PRINT OPTION VALUES](print-option-values.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 733 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md index d074744da313f7..864c28c5e598a1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **SET PRINT PREVIEW** le permite seleccionar o deseleccionar por programación la opción de previsualización en pantalla de la caja de diálogo de impresión. Si pasa TRUE en *vista previa*, se selecciona Previsualización en pantalla, si pasa FALSE, se deseleccionará. Este parámetro es local para un proceso y no afecta la impresión de otros procesos o usuarios. @@ -38,4 +35,13 @@ El siguiente ejemplo selecciona la opción Previsualización en pantalla para mo #### Ver también [Get print preview](get-print-preview.md) -[Is in print preview](is-in-print-preview.md) \ No newline at end of file +[Is in print preview](is-in-print-preview.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 364 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md index 67f6d7b46cf23f..5c7d6fd3fe6bbc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET PRINTABLE MARGIN \[#descv\]permite asignar los valores de varias márgenes de impresión utilizando los comandos [Print form](print-form.md), [PRINT SELECTION](print-selection.md) y [PRINT RECORD](print-record.md). @@ -59,4 +56,13 @@ El siguiente ejemplo le permite obtener el tamaño del papel: [GET PRINTABLE MARGIN](get-printable-margin.md) [Get printed height](get-printed-height.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 710 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md index b39a9c52b84571..dcf153ac969169 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET PROCESS VARIABLE escribe las variables proceso *dstVar* (*dstVar2*, etc.) del proceso de destino cuyo número se pasa en *proceso* utilizando los valores pasados en *expr1* (*expr2*, etc.). @@ -98,4 +95,13 @@ Este ejemplo escribe la instancia de las variables *v1*, *v2* y *v3* utilizando [GET PROCESS VARIABLE](get-process-variable.md) [POST OUTSIDE CALL](post-outside-call.md) *Procesos* -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 370 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md index 372e28c20e51f7..e8e11ff3f46bd0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md @@ -68,4 +68,14 @@ Si el comando no se llama en el contexto de una transacción, se genera un error #### Ver también -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 661 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md index 12c4880f81f1c2..14129ce1024d97 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md @@ -250,4 +250,13 @@ Después de implementar este método de proyecto en su aplicación, puede escrib [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 396 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md index ae490b0557231c..8379e5cc2eb783 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md @@ -62,4 +62,13 @@ Ver el segundo ejemplo del comando [SET QUERY DESTINATION](set-query-destination [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 395 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md index b259c377f3ddfa..819e9784a46d42 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET REAL COMPARISON LEVEL** define el valor epsilon utilizado por 4D para hacer comparaciones de igualdad de valores y expresiones de tipo real. @@ -37,3 +34,13 @@ Utilizando **SET REAL COMPARISON LEVEL**, puede aumentar o reducir el valor epsi **IMPORTANTE:** cambiar el epsilon sólo afecta la comparación de igualdad de reales. No tiene efecto en los otros cálculos y visualizaciones de valores reales. **Nota:** el comando **SET REAL COMPARISON LEVEL** no tiene efecto en las búsquedas y ordenaciones efectuadas con los campos de tipo real. Eso aplica únicamente al lenguaje de 4D. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 623 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md index 4ff35f510b4347..483e0e261865db 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET RECENT FONTS** modifica la lista de fuentes recientes que aparecen en el menú contextual de las "fuentes recientes" . @@ -43,4 +40,13 @@ Luego el menú contiene: #### Ver también -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1305 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md index 01ec86ffab76b2..cb3c9b7790a987 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md @@ -48,4 +48,13 @@ En el , usted desea definir una prioridad alta para el dato escalar \[Customer\] [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) -[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) \ No newline at end of file +[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1400 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md index 9166443030c0bf..25efeb2e28b624 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción SET TABLE TITLES permite ocultar, renombrar y reordenar las tablas de su base cuando aparecen en las cajas de diálogo estándar de 4D en el entorno Aplicación(es decir, cuando el modo de inicio es **Aplicación**, o después de seleccionar **Probar aplicación** en el menú **Ejecutar**). Por ejemplo, este comando puede modificar la visualización de tablas en el editor búsquedas en modo Aplicación. @@ -184,4 +181,13 @@ Desea eliminar todos los nombres de tablas y campos personalizados definidos: [GET TABLE TITLES](get-table-titles.md) [Parse formula](parse-formula.md) [SET FIELD TITLES](set-field-titles.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 601 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md index e7957db6824ab5..3519fd132252da 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción SET TEXT TO PASTEBOARD limpia el portapapeles y luego coloca una copia del texto en *texto* en el portapapeles. @@ -39,4 +36,14 @@ Si el texto se coloca correctamente en el portapapeles, la variable OK toma el v #### Ver también [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 523 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md index 23473022b80f43..8e6b5a431c800d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md @@ -48,4 +48,14 @@ El siguiente ejemplo fija el puerto serial para recibir datos y el timeout. Los [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) [RECEIVE RECORD](receive-record.md) -[RECEIVE VARIABLE](receive-variable.md) \ No newline at end of file +[RECEIVE VARIABLE](receive-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 268 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md index 869f077b92bfb6..0378cb51d09750 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET TIMER permite activar el evento de formulario On Timer y fijar, para el proceso y formulario actual, el número de tics (1 tic = 1/60 de segundo) entre cada evento de formulario On Timer. @@ -47,4 +44,13 @@ Imaginemos que usted quiere, cuando un formulario aparece en pantalla, que el or #### Ver también [Form event code](form-event-code.md) -[REDRAW](redraw.md) \ No newline at end of file +[REDRAW](redraw.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 645 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md index 25418d85b365df..0df5926bfe7e74 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET UPDATE FOLDER** especifica la carpeta que contiene la actualización de la aplicación 4D fusionada actual. Esta información se almacena en la sesión 4D hasta que se llama el método [RESTART 4D](restart-4d.md). Si se sale de la aplicación manualmente, esta información no se conserva. @@ -55,4 +52,14 @@ Usted creó una carpeta "MyUpdates" en su disco, en la cual ubicó una nueva ver #### Ver también [Get last update log path](get-last-update-log-path.md) -[RESTART 4D](restart-4d.md) \ No newline at end of file +[RESTART 4D](restart-4d.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1291 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md index cd8391cd75829e..c1ccb41541a589 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md @@ -39,4 +39,14 @@ Sus usuarios se administran a través de una tabla personalizada y utilizan la m [CHANGE CURRENT USER](change-current-user.md) [Current user](current-user.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1666 | +| Hilo seguro | ✓ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md index b42a2ca55d6f50..75616081648c58 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Set user properties permite modificar y actualizar las propiedades de una cuenta activa de usuario existente cuyo número de referencia se pasa en el parámetro *refUsuario* o para añadir un nuevo usuario. @@ -64,4 +61,13 @@ Si no tiene privilegios de acceso para llamar al comando Set user properties o s [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 612 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md index 12f068cd5c7cd4..d96282433bab09 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SET WINDOW RECT** cambia las coordenadas globales de la ventana cuyo número de referencia se pasa en *ventana*. Si la ventana no existe, el comando no hace nada. @@ -63,4 +60,13 @@ La ventana aparece de esta forma: [CONVERT COORDINATES](convert-coordinates.md) [DRAG WINDOW](drag-window.md) [GET WINDOW RECT](get-window-rect.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 444 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md index d27f283e7c75b1..2e1add9a268081 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SET WINDOW TITLE cambia el título de la ventana cuyo número de referencia se pasa en *ventana* para el texto pasado en *titulo* (longitud máxima 80 caracteres). @@ -51,4 +48,13 @@ Mientras efectúa una entrada de datos en un formulario, usted hace clic en un b #### Ver también -[Get window title](get-window-title.md) \ No newline at end of file +[Get window title](get-window-title.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 213 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md index eff9a8816edbe6..5dda87198c257a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md @@ -50,4 +50,13 @@ El siguiente método de objeto para el botón *bUnBoton* efectúa diferentes acc [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 543 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md index f471050fdb2498..adcc2a91144d23 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SHOW MENU BAR hace visible la barra de menús. @@ -29,4 +26,14 @@ Ver el ejemplo del comando [HIDE MENU BAR](hide-menu-bar.md "HIDE MENU BAR"). [HIDE MENU BAR](hide-menu-bar.md) [HIDE TOOL BAR](hide-tool-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 431 | +| Hilo seguro | ✗ | +| Prohibido en el servidor || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md index 388a0ee7b5b485..18bddd33587255 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md @@ -47,3 +47,14 @@ Los siguientes ejemplos ilustran el funcionamiento del comando: #### Variables y conjuntos del sistema La variable sistema OK toma el valor 1 si el comando se ejecuta correctamente, de lo contrario toma el valor 0\. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 922 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md index 04b44c6a18fdee..30576291c96e22 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción SHOW PROCESS muestra todas las ventanas que pertenecen a *proceso*. Este comando no trae las ventanas de *proceso* al primer plano. Para hacer esto, utilice el comando [BRING TO FRONT](bring-to-front.md "BRING TO FRONT"). @@ -33,4 +30,13 @@ El siguiente ejemplo muestra un proceso llamado Clientes, que se ha ocultado pre [BRING TO FRONT](bring-to-front.md) [HIDE PROCESS](hide-process.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 325 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md index 5cee6621653425..7da018c4dc8018 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SHOW TOOL BAR** maneja la visualización de las barras de herramientas personalizadas creadas por el comando [Open form window](open-form-window.md) para el proceso actual. @@ -27,4 +24,13 @@ Consulte el ejemplo del comando [HIDE TOOL BAR](hide-tool-bar.md). #### Ver también -[HIDE TOOL BAR](hide-tool-bar.md) \ No newline at end of file +[HIDE TOOL BAR](hide-tool-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 433 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md index 7c06af33711992..60d7d678c11f5d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SHOW WINDOW permite mostrar la ventana cuyo número se pasó en *ventana*. Si se omite este parámetro, se mostrará la ventana del primer plano del proceso actual. @@ -28,4 +25,13 @@ Consulte el ejemplo del comando [HIDE WINDOW](hide-window.md "HIDE WINDOW"). #### Ver también -[HIDE WINDOW](hide-window.md) \ No newline at end of file +[HIDE WINDOW](hide-window.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 435 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md index 5f0825a3bd2cbc..6170addc409a60 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descripción -Sin devuelve el seno del *número*, donde *número* se expresa en radianes. - -**Nota:** 4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). +Sin devuelve el seno del *número*, donde *número* se expresa en radianes.4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). #### Ver también [Arctan](arctan.md) [Cos](cos.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 17 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md index 448182199e1c88..0eb1c738d72eb4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md @@ -45,4 +45,13 @@ El siguiente ejemplo devuelve el número de columnas de una fila en un array bid #### Ver también [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 274 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md index 9f90f0a62f3fed..c7e9a902f6d703 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md @@ -197,4 +197,13 @@ Este ejemplo illustra los resultados de los diferentes tipos de declaraciones: [Is data file locked](is-data-file-locked.md) [SOAP get info](soap-get-info.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 782 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md index 9a7ffab41f946b..392090107f1c4d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md @@ -32,4 +32,13 @@ Pase en el parámetro *numInfo* el número del tipo de información SOAP que qui #### Ver también [SET DATABASE PARAMETER](set-database-parameter.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 784 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md index 21d79cdbf319d1..51fa9c3d9ea0fd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md @@ -37,4 +37,13 @@ Desea rechazar cualquier solicitud nueva a su servidor de servicios web: #### Ver también [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[WEB Get server info](web-get-server-info.md) \ No newline at end of file +[WEB Get server info](web-get-server-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1636 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md index 588a919762b731..99bb25236f8d05 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md @@ -42,4 +42,13 @@ Regresando al ejemplo del servicio Web “Raiz\_cuadrada” de la descripción d #### Ver también [SOAP DECLARATION](soap-declaration.md) -[SOAP get info](soap-get-info.md) \ No newline at end of file +[SOAP get info](soap-get-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 781 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md index 89575bb9b1db6d..b55c11724672d0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md @@ -18,8 +18,6 @@ displayed_sidebar: docs El comando SORT ARRAY ordena uno o más arrays en orden ascendente o descendente. -**Notas:** - * No es posible ordenar arrays de tipo [Puntero](# "A reference to another variable (including arrays and array elements), table, or field") o [Imagen](# "Can be any Windows or Macintosh picture"). Puede ordenar los elementos de un array bidimensional (es decir, *a2DArray{$vlEsteElem}*) pero no puede ordenar el array bidimensional en sí mismo (es decir, *a2DArray*). * Puede ordenar arrays [Objeto](# "Datos estructurados como forma de objeto nativo 4D"). Los elementos null se agrupan y los elementos del array se ordenan con un orden interno. @@ -81,4 +79,13 @@ Usted visualiza los nombres de una tabla *\[Personas\]* en una ventana flotante. [Find in sorted array](find-in-sorted-array.md) [MULTI SORT ARRAY](multi-sort-array.md) [ORDER BY](order-by.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 229 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md index 17ce5a1795cf4d..dfabfa670d6430 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SORT LIST ordena la lista cuyo número de referencia se pasa en *lista*. @@ -58,4 +55,13 @@ La lista se ve de esta forma: #### Ver también -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 391 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md index dd5521b2b08b02..483f10ee2e859e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL ADD TO USER DICTIONARY** añade una o más palabras al diccionario usuario actual. @@ -38,4 +35,13 @@ Adición de nombres propios al diccionario de usuario: #### Ver también -[SPELL CHECK TEXT](spell-check-text.md) \ No newline at end of file +[SPELL CHECK TEXT](spell-check-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1214 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md index 65c90cfff5f11b..afaa5efbd9a247 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL CHECK TEXT** verifica el contenido del parámetro *texto* a partir del carácter *posVerif* y devuelve la posición de la primera palabra desconocida encontrada (si la hay). @@ -54,4 +51,14 @@ Queremos contar el número posible de errores en un texto: #### Ver también [SPELL ADD TO USER DICTIONARY](spell-add-to-user-dictionary.md) -[SPELL CHECKING](spell-checking.md) \ No newline at end of file +[SPELL CHECKING](spell-checking.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1215 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md index 096e2e6a140d94..3de08a5f018638 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL CHECKING** activa la revisión ortográfica del campo o variable que tiene el foco en el formulario en pantalla. El objeto verificado debe ser de tipo Alfa o Texto. @@ -35,4 +32,13 @@ La verificación ortográfica comienza con la primera palabra del campo o variab #### Ver también [SPELL CHECK TEXT](spell-check-text.md) -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 900 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md index 42cfb943fc8a02..cb21338ac4a355 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL Get current dictionary** devuelve el número de ID del diccionario que está siendo utilizado. @@ -35,4 +32,13 @@ Queremos mostrar el lenguaje del diccionario actual: #### Ver también -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1205 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md index 3b03f6ec50b1e9..6226bbf0c1ba9a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL GET DICTIONARY LIST** devuelve en los arrays *lengID*, *lengArchivos* y *lengNoms*, los IDs, los nombres de archivos y los nombres de lenguajes correspondientes a los archivos de diccionarios Hunspell instalados en el equipo. @@ -53,4 +50,13 @@ Usted pone "fr-classic+reform1990.aff" y "fr-classic+reform1990.dic" como tambi #### Ver también -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1204 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md index 64a93117ff4788..f51d42aa269afd 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SPELL SET CURRENT DICTIONARY** reemplaza el diccionario actual por el especificado en el parámetro *diccionario*. El diccionario actual se utiliza para la corrección ortográfica integrada de 4D (para mayor información, consulte el *Manual de Diseño*) como también de 4D Write Pro. La modificación del diccionario actual repercute inmediatamente en todos los procesos de la base para la sesión, así como también en las áreas 4D Write Pro. @@ -52,4 +49,14 @@ Carga del diccionario "fr-classic" presente en la carpeta Hunspell: [SPELL CHECKING](spell-checking.md) [SPELL Get current dictionary](spell-get-current-dictionary.md) -[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) \ No newline at end of file +[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 904 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md index df6b85433f0452..39b0a30ff3b0f7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md @@ -56,4 +56,13 @@ El parámetro *separador* puede ser una cadena de múltiples caracteres: #### Ver también -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1554 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md index 793c3feda9efc6..0096f9ee9ac30c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL CANCEL LOAD finaliza la solicitud SELECT actual e inicializa los parámetros. @@ -53,4 +50,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\. #### Ver también [SQL LOAD RECORD](sql-load-record.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 824 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md index c86f935a3b8d61..4dc54cfcbeda23 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL End selection se utiliza para determinar si los límites del resultado obtenido se han alcanzado. @@ -40,3 +37,13 @@ El código a continuación se conecta a una fuente de datos externos (Oracle) ut ``` Este código devolverá en la variable 4D *vNombre* los nombres (ename) almacenados en la tabla emp. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 821 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md index c9c93c6e3aac1f..b9f451096844cc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL EXECUTE SCRIPT permite ejecutar una serie de instrucciones SQL ubicadas en el archivo de script designado por *rutaScript*. @@ -60,3 +57,14 @@ Si el script se ejecuta correctamente (no se encuentra ningún error), la variab * Si *errorAction* es SQL On error continue (valor 3), la variable *OK* siempre toma el valor 1\. **Nota:** si utiliza este comando para ejecutar acciones consumidoras de memoria tales como importación masiva de datos, puede considerar llamar al comando SQL ALTER DATABASE para desactivar temporalmente las opciones SQL. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1089 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md index 1e3c2e952ddfe9..a9249614e714b6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL EXECUTE se utiliza para ejecutar un comando SQL y asociar el resultado a objetos 4D (arrays, variables o campos). @@ -159,4 +156,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK devuelve 1, de lo #### Ver también -[SQL LOAD RECORD](sql-load-record.md) \ No newline at end of file +[SQL LOAD RECORD](sql-load-record.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 820 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md index 0619314477ca28..b9f8672f563df1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL EXPORT DATABASE exporta al formato SQL todos los registros de todas las tablas de la base. En SQL, esta operación de exportación global se llama "Dump". @@ -57,4 +54,14 @@ Si la exportación se realiza correctamente, la variable OK toma el valor 1\. De #### Ver también -[SQL EXPORT SELECTION](sql-export-selection.md) \ No newline at end of file +[SQL EXPORT SELECTION](sql-export-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1065 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md index b4ffab492c02e4..f78541a9b59a55 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL EXPORT SELECTION exporta al formato SQL los registros de la selección actual de la tabla 4D designada por el parámetro *Tabla*. @@ -38,4 +35,14 @@ Si la exportación se lleva a cabo correctamente, la variable *OK* toma el valor #### Ver también -[SQL EXPORT DATABASE](sql-export-database.md) \ No newline at end of file +[SQL EXPORT DATABASE](sql-export-database.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1064 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md index f00a270637c23d..550cf379a40490 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando *Get current data source* devuelve el nombre de la fuente de datos actual de la aplicación. La fuente de datos actual recibe las búsquedas SQL ejecutadas dentro de las estructuras [Begin SQL](begin-sql.md "Begin SQL")/[End SQL](end-sql.md "End SQL"). @@ -30,4 +27,13 @@ Este comando permite verificar la fuente de datos actual, generalmente antes de [End SQL](end-sql.md) [SQL GET DATA SOURCE LIST](sql-get-data-source-list.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 990 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md index ae84db2f71e7b7..4b9d6883df1c4d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando *GET DATA SOURCE LIST* devuelve en los arrays *arrayNomsFuentes* y *arrayDrivers*, los nombres y drivers de las fuentes de datos de tipo *tipoFuente* definidas en el administrador ODBC del sistema operativo. @@ -55,4 +52,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. [SQL Get current data source](sql-get-current-data-source.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 989 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md index ec88f256e48305..77bc41cdc0fa5d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL GET LAST ERROR devuelve la información relacionada con el último error encontrado durante la ejecución de un comando ODBC. El error puede venir de la aplicación 4D, la red, la fuente ODBC, etc. @@ -36,4 +33,13 @@ Los dos últimos parámetros sólo se llenan cuando el error viene de la fuente #### Ver también [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 825 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md index e69a35101f50eb..788bde5fc3d167 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL GET OPTION devuelve el *valor* actual de la opción pasada en el parámetro *opcion*. @@ -29,4 +26,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[SQL SET OPTION](sql-set-option.md) \ No newline at end of file +[SQL SET OPTION](sql-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 819 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md index d893607bb4bdfc..326e636d1f6e7b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL LOAD RECORD recupera en 4D uno o más registros de la fuente de datos abierta en la conexión actual. @@ -35,4 +32,14 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\. #### Ver también [SQL CANCEL LOAD](sql-cancel-load.md) -[SQL EXECUTE](sql-execute.md) \ No newline at end of file +[SQL EXECUTE](sql-execute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 822 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md index 6fedacc634b893..fbd3908c81102c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SQL LOGIN** permite conectarse a una fuente de datos SQL especificada en el parámetro *entradaDatos* y designa el objetivo de las búsquedas SQL ejecutadas posteriormente en el proceso actual: @@ -203,4 +200,14 @@ Si la conexión es exitosa, el variable sistema OK toma el valor 1; de lo contra [Begin SQL](begin-sql.md) [End SQL](end-sql.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 817 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md index 904af7c3e18dbb..66bfdbb39a2240 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL LOGOUT cierra la conexión con una fuente ODBC abierta en el proceso actual (si aplica). Si no hay conexión ODBC abierta, el comando no hace nada. @@ -25,4 +22,14 @@ Si la conexión se cierra correctamente, la variable sistema OK toma el valor 1; #### Ver también -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 872 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md index a9192eb983ed7e..000c7376d75e68 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **SQL SET OPTION** se utiliza para modificar el *valor* de la opción pasada en *opcion*. @@ -48,4 +45,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK devuelve 1\. De l #### Ver también -[SQL GET OPTION](sql-get-option.md) \ No newline at end of file +[SQL GET OPTION](sql-get-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 818 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md index 098423b8bd72d1..61429261abb826 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SQL SET PARAMETER permite el uso del valor de una variable, array o campo 4D en las peticiones SQL. @@ -78,3 +75,14 @@ El mismo ejemplo anterior, pero utilizando el comando SQL SET PARAMETER: #### Variables y conjuntos del sistema Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\. De lo contrario, devuelve 0. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 823 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md index 71304d9eaeb91e..22fff9c966d92b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md @@ -41,3 +41,13 @@ El siguiente método devuelve la hipotenusa del triángulo cuyos dos lados son p ``` Por ejemplo, Hipotenusa (4;3) devuelve 5. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 539 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md index 1925c4bcf0b442..77110f0ae12388 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST COMPUTE EXPRESSIONS** actualiza las expresiones dinámicas 4D encontradas en un campo o variable ya sea 4D Write Pro o multiestilo designado por el parámetro *objeto*. @@ -67,4 +64,14 @@ Usted desea actualizar las referencias incluidas en la selección de texto: #### Ver también [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1285 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md index f2042c5b5be04e..570c9e85782c4c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST FREEZE EXPRESSIONS** "congela" el contenido de las expresiones encontradas en un campo o variable ya sea 4D Write Pro o multiestilo designado por el parámetro *objeto*. Esta acción convierte expresiones dinámicas en texto estático o imágenes (áreas 4D Write Pro únicamente) y elimina las referencias asociadas al *objeto*. @@ -68,4 +65,13 @@ Usted quiere insertar la hora actual al inicio del texto y luego congelarla ante #### Ver también [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1282 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md index 3775e48489e826..23b0fc695f6336 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST GET ATTRIBUTES se utiliza para recuperar el valor actual de un atributo de estilo en una selección de texto del objeto de formulario designado por *objeto*. @@ -104,4 +101,14 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable #### Ver también -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1094 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md index 7cbab0e0e240de..70fa6f1aa9f96b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST Get content type** devuelve el tipo de contenido encontrado en el campo o la variable de texto multiestilo designada por el parámetro *objeto* . @@ -102,3 +99,14 @@ Usted desea mostrar los comandos de un menú contextual basado en el tipo de con        ...     End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1286 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md index 7de19a248179c8..230c6021aa0293 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST Get expression** devuelve la primera expresión que se encuentra en la selección actual del campo o de la variable de texto con estilo designada por el parámetro *objeto*. @@ -93,4 +90,14 @@ Usted quiere ejecutar un método 4D cuando se hace clic en un enlace de usuario: #### Ver también -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1287 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md index 1e7cdf9d9294a4..0baccc12b5a136 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST GET OPTIONS** obtiene el valor actual de una o varias opciones de funcionamiento del campo o de la variable de texto con estilo designada por el parámetro *objeto*. @@ -36,4 +33,13 @@ Pase el código de la opción a leer en el parámetro *opcion*. El comando devue #### Ver también -[ST SET OPTIONS](st-set-options.md) \ No newline at end of file +[ST SET OPTIONS](st-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1290 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md index 8eca75efed86c4..db24803e388d26 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST Get plain textremueve las etiquetas de estilo de la variable o campo de texto designado por los parámetros *\** y *objeto* y devuelve el texto plano. @@ -111,4 +108,14 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable [ST Get text](st-get-text.md) [ST SET PLAIN TEXT](st-set-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1092 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md index 747b97ffb0a397..dd61d3e73db788 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST Get text devuelve el texto con estilo encontrado en el campo o variable de texto designado por el parámetro *objeto*. @@ -62,4 +59,14 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable [ST Get plain text](st-get-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1116 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md index 5d94d56cff2482..7df737d9d234ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST GET URL** devuelve la etiqueta y la dirección de la primera URL detectada en el campo o la variable de texto multiestilo designado por el parámetro *objeto*. @@ -71,4 +68,13 @@ Cuando hay un evento de doble clic, se comprueba que no existe en realidad una U #### Ver también -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1288 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md index fac1b008eae39a..3bbac0c3483031 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST INSERT EXPRESSION** inserta una referencia a la expresión en el campo o la variable de texto multiestilo designada por el parámetro *objeto*. @@ -88,4 +85,14 @@ Desea reemplazar el texto seleccionado con el resultado de un método proyecto: [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) [ST Get expression](st-get-expression.md) -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1281 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md index a90aa48ecceef8..9ba0b4fa65231c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST INSERT URL** inserta un enlace URL en el campo o la variable de texto con estilo designada por el parámetro *objeto* . @@ -65,4 +62,14 @@ Usted desea insertar un enlace al sitio web de 4D para reemplazar el texto selec #### Ver también [ST GET URL](st-get-url.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1280 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md index 574816f73908fd..f2b1f504b4dc05 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST SET ATTRIBUTES permite modificar uno o más atributos de estilo en el(los) objeto(s) de formulario designado(s) por *objeto*. @@ -104,4 +101,14 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable #### Ver también [FONT LIST](font-list.md) -[ST GET ATTRIBUTES](st-get-attributes.md) \ No newline at end of file +[ST GET ATTRIBUTES](st-get-attributes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1093 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md index 67ff489d7b4a69..9a2cdf80fa64a6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **ST SET OPTIONS** modifica una o varias opciones de funcionamiento del campo o de la variable de texto con estilo designada por el parámetro *objeto* . @@ -63,4 +60,13 @@ El siguiente código permite cambiar el modo de visualización del área: #### Ver también -[ST GET OPTIONS](st-get-options.md) \ No newline at end of file +[ST GET OPTIONS](st-get-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1289 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md index b05bde2f15b021..a91a82fc82d87b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST SET PLAIN TEXT inserta el texto pasado en el parámetro *nuevTexto* en el campo o la variable de texto con estilo designado por el parámetro *objeto* . Este comando aplica únicamente al texto plano del parámetro *objeto*, sin modificar las posibles etiquetas de estilo que contiene. @@ -94,4 +91,14 @@ En caso de un error, la variable no cambia. Cuando se produce un error en una va #### Ver también [ST Get plain text](st-get-plain-text.md) -[ST SET TEXT](st-set-text.md) \ No newline at end of file +[ST SET TEXT](st-set-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1136 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md index 1db5755be1ed56..1a4d77fb1e2df0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando ST SET TEXT inserta el texto pasado en el parámetro *nuevText* en el campo o variable de texto con estilo designado por el parámetro *objeto*. Este comando sólo se aplica al texto sin formato del parámetro de *objeto*, sin modificar las etiquetas de estilo que contiene. Se puede utilizar para modificar por programación, texto con estilo en la pantalla. @@ -91,4 +88,14 @@ Consulte el ejemplo del comando [ST SET PLAIN TEXT](st-set-plain-text.md). [ST Get plain text](st-get-plain-text.md) [ST Get text](st-get-text.md) -[ST SET PLAIN TEXT](st-set-plain-text.md) \ No newline at end of file +[ST SET PLAIN TEXT](st-set-plain-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1115 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md index 7d9af4c41678f3..6daaf415318cc3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md @@ -91,4 +91,13 @@ Desea iniciar/detener la supervisión y revisión de los datos 4D y las activida #### Ver también [Monitored activity](monitored-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1712 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md index 4e9c5220a41b9b..c906ca7861c749 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando START SQL SERVER lanza el servidor SQL integrado de la aplicación 4D en la que se ejecuta. Una vez lanzado, el servidor SQL puede responder a las búsquedas SQL externas. @@ -27,4 +24,14 @@ Si el servidor SQL ha sido lanzado correctamente, la variable sistema OK toma el #### Ver también -[STOP SQL SERVER](stop-sql-server.md) \ No newline at end of file +[STOP SQL SERVER](stop-sql-server.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 962 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md index e9bc32426d65d0..7eb54f74056188 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md @@ -24,4 +24,13 @@ A partir de la versión 11 de 4D, puede anidar varias transacciones (subtransacc [In transaction](in-transaction.md) [Transaction level](transaction-level.md) *Utilización de transacciones* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 239 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md index c03a167aa88748..17f6644c28c0e3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md @@ -59,4 +59,13 @@ Este ejemplo obtiene la desviación estándar de una serie de valores ubicados e [Average](average.md) [Sum](sum.md) [Sum squares](sum-squares.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 26 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md index d111bebd8ffb94..85304b64ceebb7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md @@ -25,4 +25,13 @@ Ver ejemplo para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**. #### Ver también [Monitored activity](monitored-activity.md) -[START MONITORING ACTIVITY](start-monitoring-activity.md) \ No newline at end of file +[START MONITORING ACTIVITY](start-monitoring-activity.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1721 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md index 494a326b0e584d..ebcc486eb342a9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando STOP SQL SERVER detiene el servidor SQL integrado de la aplicación 4D en la cual ha sido ejecutado. @@ -25,4 +22,13 @@ Si el servidor SQL ha sido lanzado, todas las conexiones SQL se interrumpen y el #### Ver también -[START SQL SERVER](start-sql-server.md) \ No newline at end of file +[START SQL SERVER](start-sql-server.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 963 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md index 2922c60a554177..c4df9fb8231bdb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md @@ -81,4 +81,13 @@ Este ejemplo muestra una forma estándar de establecer valores de **Almacenamien #### Ver también -*Objetos y colecciones compartidos* \ No newline at end of file +*Objetos y colecciones compartidos* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1525 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md index 3ad329377e3ae9..0607c9743e87ef 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando STRING LIST TO ARRAY llena el array *cadenas* con: @@ -45,4 +42,14 @@ Si se encuentra el recurso, la variable sistema OK toma el valor 1, de lo contra [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[Get text resource](get-text-resource.md) \ No newline at end of file +[Get text resource](get-text-resource.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 511 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md index 9cd12b7221f566..4fc7ba06348b0e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md @@ -185,4 +185,13 @@ Si *expresion* se evalúa como Null, el comando devuelve la cadena "null". Esto [Date](date.md) [Num](num.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 10 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md index dbb50d7e29a295..b58aaa0fd80ec0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md @@ -66,4 +66,13 @@ El siguiente ejemplo puede utilizarse para saber si el método se llama desde un [Application file](application-file.md) [COMPONENT LIST](component-list.md) -[Data file](data-file.md) \ No newline at end of file +[Data file](data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 489 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md index 71523b227270be..26a4218152c1b2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md @@ -64,4 +64,13 @@ El siguiente método de proyecto añade los párrafos que se encuentran en el te #### Ver también -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 12 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md index c8d5845c51a5d1..ae733b227ea97e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Subtotal devuelve el subtotal de *valores* para el nivel de ruptura actual o anterior. Subtotal sólo funciona cuando una selección ordenada se imprime con [PRINT SELECTION](print-selection.md "PRINT SELECTION") o utilizando Imprimir en el entorno Diseño. El parámetro *valores* debe ser de tipo real, entero, o entero largo. Usted debe asignar el resultado de la función Subtotal a una variable ubicada en el área de ruptura del formulario. @@ -64,4 +61,13 @@ La función Subtotal es necesaria para mostrar valores en un formulario. [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 97 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md index 9d083dadd74b1b..59a6e7294b0b77 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md @@ -57,4 +57,13 @@ Este ejemplo permite obtener la suma de cuadrados de los valores ubicados en un [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 28 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md index cfba88b5939040..67ffb1efc875f6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md @@ -71,4 +71,14 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo [Min](min.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md index 6de486206473ea..7bae8e486b87df 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md @@ -22,4 +22,13 @@ Para más información, por favor consulte la sección *Suspender las transaccio [Active transaction](active-transaction.md) [RESUME TRANSACTION](resume-transaction.md) -*Suspender las transacciones* \ No newline at end of file +*Suspender las transacciones* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1385 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md index 5ce08b698b50b3..94fa4a51c64148 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **SVG EXPORT TO PICTURE** permite guardar en la variable o campo imagen indicado por el parámetro *VarImag* una imagen en formato SVG contenida en un árbol XML. - -**Nota:** para mayor información sobre el formato SVG, consulte la sección *Presentación de los comandos XML utilitarios* . +El comando **SVG EXPORT TO PICTURE** permite guardar en la variable o campo imagen indicado por el parámetro *VarImag* una imagen en formato SVG contenida en un árbol XML.para mayor información sobre el formato SVG, consulte la sección *Presentación de los comandos XML utilitarios* . Pase en *refElement* la referencia del elemento XML raíz que contiene la imagen SVG. @@ -52,4 +50,13 @@ El siguiente ejemplo puede utilizarse para mostrar “Hello World” en una imag #### Ver también [DOM EXPORT TO FILE](dom-export-to-file.md) -[DOM EXPORT TO VAR](dom-export-to-var.md) \ No newline at end of file +[DOM EXPORT TO VAR](dom-export-to-var.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1017 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md index 17360e9ed8c0a8..a16b72ac2e632a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SVG Find element ID by coordinates devuelve la identificación ("id" o atributo "xml:id") del elemento XML encontrado en la ubicación definida por las coordenadas (x,y) en la imagen SVG designada por el parámetro *objetoImagen*. Este comando puede utilizarse particularmente para crear interfaces gráficas interactivas utilizando objetos SVG. @@ -52,4 +49,14 @@ Si *objetoImagen* no contiene una imagen SVG válida, el comando devuelve una ca #### Ver también -[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) \ No newline at end of file +[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1054 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md index 8bea72cc405373..bb82745010a74a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SVG Find element IDs by rect llena el array texto *arrIDs* con los IDs (atributo "id" o "xml:id") de los elementos XML cuyo rectángulo circundante está en intersección con el rectángulo de selección en la ubicación definida por los parámetros *x* y *y*. @@ -43,4 +40,13 @@ Todos los elementos cuyo rectángulo circundante está en intersección con el r #### Ver también -[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) \ No newline at end of file +[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1109 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md index 7b3015c902f855..4fe3929840e502 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SVG GET ATTRIBUTE se utiliza para obtener el valor actual del atributo *nomAtrib* en un objeto o una imagen SVG. @@ -42,4 +39,13 @@ Para obtener más información acerca de los atributos SVG, consulte la descripc #### Ver también -[SVG SET ATTRIBUTE](svg-set-attribute.md) \ No newline at end of file +[SVG SET ATTRIBUTE](svg-set-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1056 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md index f753523461561b..27ecafb4f61dff 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md @@ -94,4 +94,14 @@ Modificación del contenido de un elemento de tipo texto: #### Ver también -[SVG GET ATTRIBUTE](svg-get-attribute.md) \ No newline at end of file +[SVG GET ATTRIBUTE](svg-get-attribute.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1055 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md index 2ba7ac849573bb..bee50479ac19a3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando SVG SHOW ELEMENT mueve el documento SVG *objetoImagen* para mostrar el elemento cuyo atributo "id" es especificado por el parámetro *id*. @@ -30,3 +27,14 @@ displayed_sidebar: docs Este comando sólo tiene efecto en modo de visualización "top left" (con barras de desplazamiento). Si este comando no se ejecuta en el contexto de un formulario o si se pasa un *objetoImagen* inválido, la variable OK toma el valor 0\. Si el comando se ejecuta correctamente, toma el valor 1. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1108 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md index 1248108fdb81e6..b4e1d0b56e7383 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md @@ -48,4 +48,13 @@ Si omite el parámetro *tipo*, la función devolverá la ruta a la carpeta siste #### Ver también [Get 4D folder](get-4d-folder.md) -[Temporary folder](temporary-folder.md) \ No newline at end of file +[Temporary folder](temporary-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 487 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md index dc122b2e6f9880..51e32d38a2a059 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md @@ -144,4 +144,13 @@ devuelve un objeto que contiene la siguiente información: [Application info](application-info.md) [Is macOS](is-macos.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1571 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md index 68b8776a67a405..3d8872c0ac3fa5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md @@ -40,4 +40,13 @@ Este método de mantenimiento permite solicitar la compactación del archivo de #### Ver también -[Compact data file](compact-data-file.md) \ No newline at end of file +[Compact data file](compact-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1127 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md index 8906e1f7341984..758f2f1d510bb7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md @@ -37,4 +37,13 @@ El siguiente es un ejemplo de un método genérico que muestra los registros de [Last table number](last-table-number.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 256 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md index d046a6e0666f96..0be51e162eb2f1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md @@ -58,4 +58,13 @@ Este ejemplo, la variable *numTabla* es igual al número de la tabla a la cual p [Field](field.md) [Last table number](last-table-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 252 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md index 9898dff96ad3f5..88b5290f809172 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descripción -Tan devuelve la tangente del *número*, donde *número* se expresa en radianes. - -**Nota:** 4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). +Tan devuelve la tangente del *número*, donde *número* se expresa en radianes.4D ofrece las constantes predefinidas *Pi*, Degree, y Radian. *Pi* devuelve el número Pi (3.14159...), Degree devuelve el valor en radianes de un grado (0.01745...), y Radian devuelve el valor en grados de un radián (57.29577...). #### Ver también [Arctan](arctan.md) [Cos](cos.md) -[Sin](sin.md) \ No newline at end of file +[Sin](sin.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 19 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md index 6ae6ace299bcfc..acb334a56d697b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md @@ -23,4 +23,13 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard #### Ver también -[System folder](system-folder.md) \ No newline at end of file +[System folder](system-folder.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 486 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md index 305cfeee7f00e7..3a43de63d2b4b7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md @@ -49,4 +49,13 @@ El siguiente ejemplo prueba la presencia del documento “Diario” en la carpet [Create document](create-document.md) [CREATE FOLDER](create-folder.md) [Object to path](object-to-path.md) -[Path to object ](path-to-object.md) \ No newline at end of file +[Path to object ](path-to-object.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 476 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md index 85dcd7a067b852..b6f7646c1bf3f1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md @@ -41,4 +41,13 @@ El siguiente ejemplo le permite conocer el estado de un proceso (en nuestro caso #### Ver también [CLEAR SEMAPHORE](clear-semaphore.md) -[Semaphore](semaphore.md) \ No newline at end of file +[Semaphore](semaphore.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 652 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md index 27a3678751dd22..e2719546bec3b4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **TEXT TO ARRAY** transforma una variable texto en un array texto. El texto original (con estilo o no) se divide y cada parte se convierte en un elemento del array *arrText* que es devuelto por el comando. Este comando se puede utilizar por ejemplo para llenar las páginas o las columnas con texto de un tamaño fijo. @@ -110,4 +107,13 @@ Debe imprimir en un área de 400 píxeles de largo un texto de un máximo de 80 [Split string](split-string.md) [ST Get plain text](st-get-plain-text.md) -[ST Get text](st-get-text.md) \ No newline at end of file +[ST Get text](st-get-text.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1149 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md index 4b136ff1f68cb0..ab536a6072cd83 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md @@ -105,4 +105,13 @@ Después de la ejecución este código: [CONVERT FROM TEXT](convert-from-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[REAL TO BLOB](real-to-blob.md) \ No newline at end of file +[REAL TO BLOB](real-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 554 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md index 5cbecdf131b6be..6427ac376756d4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md @@ -81,4 +81,13 @@ Ejemplo que permite al usuario indicar la ubicación del archivo a crear: #### Ver también [Document to text](document-to-text.md) -*Documentos sistema* \ No newline at end of file +*Documentos sistema* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1237 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md index ea6a10066c3937..a33f0db78c0a5a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **throw** crea un error que será lanzado inmediatamente o cuando el método que lo llama devuelva a su llamador (modo diferido). @@ -107,4 +104,13 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi [ASSERT](assert.md) [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1805 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md index 59760f8eb546c2..b7c82ac4417184 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Tickcount devuelve el número de tics (1 tic = 1 / 60avo de un segundo) pasados desde que se inició el equipo. - -**Nota:** Tickcount devuelve un valor de tipo Entero largo. +Tickcount devuelve el número de tics (1 tic = 1 / 60avo de un segundo) pasados desde que se inició el equipo.Tickcount devuelve un valor de tipo Entero largo. #### Ejemplo @@ -26,4 +24,13 @@ Ver el ejemplo del comando [Milliseconds](milliseconds.md "Milliseconds"). #### Ver también [Current time](current-time.md) -[Milliseconds](milliseconds.md) \ No newline at end of file +[Milliseconds](milliseconds.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 458 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md index 303894367d0264..02716b243436ec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md @@ -35,4 +35,13 @@ El siguiente muestra una caja de alerta con el mensaje, “46 800 segundos repre #### Ver también [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 180 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md index ec92351de2d261..d56ec6e47f7f2b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md @@ -50,4 +50,13 @@ Puede expresar todo valor numérico como una hora: [Bool](bool.md) [String](string.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 179 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md index 588572bd30cb7e..27b0c66e1ce66e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md @@ -41,4 +41,13 @@ Resultado: [Milliseconds](milliseconds.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1445 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md index 3a32b1b789439a..b4ff4f19a3d7d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Tool bar height devuelve la altura de la barra de herramientas visible actualmente, expresada en píxeles. Dependiendo del contexto, puede ser la barra de herramientas de modo Diseño 4D, o una barra de herramientas personalizada creada con [Open form window](open-form-window.md) (la barra de herramientas de modo Diseño se oculta automáticamente cuando se muestra una barra de herramientas personalizada). @@ -26,4 +23,13 @@ Si no se muestra ninguna barra de herramientas, el comando devuelve 0. [HIDE TOOL BAR](hide-tool-bar.md) [Menu bar height](menu-bar-height.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1016 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md index 849adb3ce1c535..c2a2bac2cf08af 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md @@ -59,3 +59,13 @@ El método de proyecto DEBUG se lista aquí:     End if  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 157 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md index 3ad637efcd3b46..341f0664c10fe7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md @@ -21,4 +21,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Utilización de transacciones* \ No newline at end of file +*Utilización de transacciones* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 961 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md index 8f1aacc4bcc3d9..33178f6f5fbcd8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Descripción -El comando TRANSFORM PICTURE permite aplicar una transformación de tipo *operador* a la imagen pasada en el parámetro *imagen*. - -**Nota:** este comando extiende las funcionalidades ofrecidas por los operadores convencionales de transformación de imágenes (+/, etc., ver la sección [C\_BOOLEAN](c-boolean.md)). Estos operadores permanecen totalmente utilizables en 4D. +El comando TRANSFORM PICTURE permite aplicar una transformación de tipo *operador* a la imagen pasada en el parámetro *imagen*.este comando extiende las funcionalidades ofrecidas por los operadores convencionales de transformación de imágenes (+/, etc., ver la sección [C\_BOOLEAN](c-boolean.md)). Estos operadores permanecen totalmente utilizables en 4D. La *imagen* fuente se modifica directamente después de la ejecución del comando. Tenga en cuenta que ciertas operaciones no son destructivas y pueden revertirse mediante la realización de la operación contraria o por medio de la operación "Reset". Por ejemplo, una imagen reducida a 1% retomará su tamaño original sin alteraciones si se agranda 100 veces. Las transformaciones no modifican el tipo original de la imagen: por ejemplo, una imagen vectorial permanecerá vectorial después de su transformación. @@ -73,4 +71,13 @@ Este es un ejemplo de corte de una imagen (la imagen se muestra en el formulario #### Ver también -[COMBINE PICTURES](combine-pictures.md) \ No newline at end of file +[COMBINE PICTURES](combine-pictures.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 988 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md index f17a8d00fbeb90..9dbcd5d1ade2d5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md @@ -52,4 +52,13 @@ Utilice el comando **Trigger event** para estructurar sus triggers de esta maner [In transaction](in-transaction.md) [Trigger level](trigger-level.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 369 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md index b454a5361d8a82..c537aea2ad2c6e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md @@ -23,4 +23,13 @@ Para mayor información sobre niveles de ejecución, consulte el tema *Triggers [Trigger event](trigger-event.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 398 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md index d39303b30b7968..d40264612c8fa6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md @@ -37,4 +37,13 @@ El número de tabla y de registro para el registro relacionado por el evento de *Acerca de números de registros* [Trigger event](trigger-event.md) [Trigger level](trigger-level.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 399 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md index 635249af7581ff..132fbf9ea6cafb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### Ver también [False](false.md) -[Not](not.md) \ No newline at end of file +[Not](not.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 214 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md index ecaf2170c65710..af06e993c912f0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md @@ -34,4 +34,13 @@ El siguiente ejemplo ilustra la manera cómo Trunc funciona con diferentes argum #### Ver también -[Round](round.md) \ No newline at end of file +[Round](round.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 95 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md index 0d435edb26f606..8ae153457ba3b0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md @@ -38,4 +38,16 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo #### Ver también -[DELETE SELECTION](delete-selection.md) \ No newline at end of file +[DELETE SELECTION](delete-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1051 | +| Hilo seguro | ✓ | +| Modifica variables | OK | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md index 3d37505be9b134..09fd93fd69b95e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md @@ -139,4 +139,13 @@ Ver ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md [Is a variable](is-a-variable.md) [Undefined](undefined.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 295 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md index 8fe2324886d5bb..db1570d9e340b3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md @@ -59,4 +59,13 @@ Aquí están los diferentes resultados del comando [Undefined](undefined.md) as #### Ver también -[CLEAR VARIABLE](clear-variable.md) \ No newline at end of file +[CLEAR VARIABLE](clear-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 82 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md index 316ac009b392f9..f64f042f7f01d7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md @@ -49,4 +49,13 @@ Este ejemplo añade registros al conjunto de mejores clientes. Los registros se #### Ver también [DIFFERENCE](difference.md) -[INTERSECTION](intersection.md) \ No newline at end of file +[INTERSECTION](intersection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 120 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md index 7b194e79d7e76c..d521773972d051 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md @@ -28,4 +28,13 @@ Si un registro tiene una cantidad importante de datos, de campos de imagen, o de #### Ver también [LOAD RECORD](load-record.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 212 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md index cc5ac12cb120c7..2479ff7ccfa7ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando UNREGISTER CLIENT da de baja un registro de un equipo 4D Client. El cliente debe haber sido registrado por el comando REGISTER CLIENT. @@ -37,4 +34,14 @@ Si el cliente es dado de baja correctamente, la variable sistema OK toma el valo [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[REGISTER CLIENT](register-client.md) \ No newline at end of file +[REGISTER CLIENT](register-client.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 649 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md index 2b8ce57eb33be5..fa51f7b88a3845 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md @@ -36,4 +36,13 @@ Ver el ejemplo para [Lowercase](lowercase.md "Lowercase"). #### Ver también -[Lowercase](lowercase.md) \ No newline at end of file +[Lowercase](lowercase.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 13 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md index 61aa87f26a9788..3097cd1bfef4ad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md @@ -50,4 +50,14 @@ La variable sistema OK toma el valor 1 si el mapa se carga correctamente, de lo [IMPORT TEXT](import-text.md) [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 205 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md index 9050db75fa44c6..36e0341b979fad 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md @@ -28,4 +28,15 @@ Recuerde que una selección temporal es una representación de una selección de [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[CUT NAMED SELECTION](cut-named-selection.md) \ No newline at end of file +[CUT NAMED SELECTION](cut-named-selection.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 332 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md index 09f5de4a999604..fec48dc80420e3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md @@ -34,4 +34,15 @@ El siguiente ejemplo utiliza [LOAD SET](load-set.md "LOAD SET") para cargar un c #### Ver también [CLEAR SET](clear-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 118 | +| Hilo seguro | ✓ | +| Modifica el registro actual || +| Modifica la selección actual || + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md index 6c1adb9967073f..51fae3b6cb078f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción User in group devuelve TRUE si *usuario* está en *grupo*. @@ -42,4 +39,13 @@ El siguiente ejemplo busca facturas específicas. Si el usuario actual está en #### Ver también -[Current user](current-user.md) \ No newline at end of file +[Current user](current-user.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 338 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md index fd6534eb5a5824..3fc6c604717fbc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción **Nota de compatibilidad*: este comando solo funciona en bases de datos binarias. Siempre devuelve un BLOB vacío en proyectos.* @@ -33,4 +30,14 @@ Este concepto permite conservar un backup de usuarios en la base e implementar u #### Ver también -[BLOB TO USERS](blob-to-users.md) \ No newline at end of file +[BLOB TO USERS](blob-to-users.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 849 | +| Hilo seguro | ✗ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md index c095173bbaa1d4..7a83a067c8bf46 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción Validate password devuelve True si la cadena pasada en *contraseña* es la contraseña para la cuenta de usuario cuyo número de referencia se pasa en *refUsuario*. @@ -62,4 +59,13 @@ En el [Método base On 4D Mobile Authentication](metodo-base-on-4d-mobile-authen [GET USER PROPERTIES](get-user-properties.md) [Set user properties](set-user-properties.md) -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 638 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md index 8d51f3548d7981..8331eca1eb9b6b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md @@ -29,4 +29,14 @@ Tenga en cuenta que cuando OK toma el valor 0, la transacción automáticamente [CANCEL TRANSACTION](cancel-transaction.md) [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Utilización de transacciones* \ No newline at end of file +*Utilización de transacciones* + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 240 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md index 52faff06c33a2c..03e9d780f4ae24 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md @@ -112,4 +112,13 @@ Desea obtener la suma de todos los valores numéricos en una colección: #### Ver también [OB Get type](ob-get-type.md) -[Type](type.md) \ No newline at end of file +[Type](type.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1509 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md index d239236fb585f5..99885722aa8353 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md @@ -137,4 +137,14 @@ Después de añadir estos métodos a su aplicación, puede escribir: [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 532 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md index dfefaf29646cd0..3c4d377c69d408 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando VARIABLE TO VARIABLE escribe las variables proceso *dstVar* (*dstVar2*, etc.) del proceso de destino cuyo número se pasa en *proceso* utilizando los valores de las variables *srcVar1* *srcVar2*, etc. @@ -60,4 +57,13 @@ El siguiente ejemplo lee un array proceso desde el proceso indicado por *$vlProc [GET PROCESS VARIABLE](get-process-variable.md) *Procesos* -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 635 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md index 7e5a7a464c130b..2ae6aa19cc1844 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md @@ -65,4 +65,13 @@ Este ejemplo permite obtener la varianza de valores ubicados en un array: [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Sum squares](sum-squares.md) \ No newline at end of file +[Sum squares](sum-squares.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 27 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md index bcda768e1aadb4..c6d723c0f04665 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md @@ -41,4 +41,14 @@ Si el método de retrollamada no existe, la verificación no se efectúa, se gen #### Ver también -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1008 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md index 37bc387a0d7f61..363dd58117002a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Descripción -El comando VERIFY DATA FILE efectúa una verificación estructural de los objetos contenidos en el archivo de datos 4D designado por *rutaEstructura* y *rutaDatos*. - -**Nota:** para mayor información sobre el proceso de verificación de datos, consulte el Manual de Diseño. *rutaEstructura* designa el archivo de estructura (compilado o no) asociado con el archivo de datos a verificar. Puede tratarse del archivo de estructura abierto o de cualquier otro archivo de estructura. Usted debe pasar un nombre de ruta completo, expresado con la sintaxis del sistema operativo. También puede pasar una cadena vacía, en este caso aparece una caja de diálogo estándar de apertura de archivos que permite al usuario designar el archivo de estructura a utilizar. +El comando VERIFY DATA FILE efectúa una verificación estructural de los objetos contenidos en el archivo de datos 4D designado por *rutaEstructura* y *rutaDatos*.para mayor información sobre el proceso de verificación de datos, consulte el Manual de Diseño. *rutaEstructura* designa el archivo de estructura (compilado o no) asociado con el archivo de datos a verificar. Puede tratarse del archivo de estructura abierto o de cualquier otro archivo de estructura. Usted debe pasar un nombre de ruta completo, expresado con la sintaxis del sistema operativo. También puede pasar una cadena vacía, en este caso aparece una caja de diálogo estándar de apertura de archivos que permite al usuario designar el archivo de estructura a utilizar. *rutaDatos* designa un archivo de datos 4D (.4DD). Debe corresponder al archivo de estructura definido por el parámetro *rutaEstructura*. Atención, usted puede designar el archivo de estructura actual pero el archivo de datos no debe ser el archivo actual (abierto). Para verificar el archivo de datos está abierto actualmente, utilice el comando [VERIFY CURRENT DATA FILE](verify-current-data-file.md). Si intenta verificar el archivo de datos actual con el comando VERIFY DATA FILE, se genera un error. @@ -169,4 +167,14 @@ Si el método de retrollamada no existe, la verificación no se efectúa, se gen #### Ver también -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 939 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md index 40fdd63835983e..62d3e00b63d363 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md @@ -52,4 +52,13 @@ Este ejemplo verifica un hash de contraseña creado previamente por [Generate pa #### Ver también -[Generate password hash](generate-password-hash.md) \ No newline at end of file +[Generate password hash](generate-password-hash.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1534 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md index b35f0dc69331b1..ce942be4e4ec1e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md @@ -42,4 +42,13 @@ Esta prueba permite ejecutar código diferente dependiendo de que versión es un #### Ver también [Application type](application-type.md) -[Application version](application-version.md) \ No newline at end of file +[Application version](application-version.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 495 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md index 865925290aab65..7bb029c6105d82 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descripción -El comando VOLUME ATTRIBUTES devuelve en bytes el tamaño, el espacio utilizado y el espacio libre del volumen cuyo nombre se pasa en *volumen*. - -**Nota:** si *volumen* indica un volumen remoto no montado, la variable OK toma el valor 0 y los tres parámetros devuelven -1\. +El comando VOLUME ATTRIBUTES devuelve en bytes el tamaño, el espacio utilizado y el espacio libre del volumen cuyo nombre se pasa en *volumen*.si *volumen* indica un volumen remoto no montado, la variable OK toma el valor 0 y los tres parámetros devuelven -1\. #### Ejemplo @@ -96,4 +94,14 @@ Una vez se añade este método de proyecto a su aplicación, puede escribir: #### Ver también -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 472 | +| Hilo seguro | ✓ | +| Modifica variables | OK, error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md index 9e859d53714810..c62cb02b1d1c79 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md @@ -38,4 +38,13 @@ Utilizando un área de desplazamiento llamada *atVolumenes,* usted quiere mostra [DOCUMENT LIST](document-list.md) [FOLDER LIST](folder-list.md) -[VOLUME ATTRIBUTES](volume-attributes.md) \ No newline at end of file +[VOLUME ATTRIBUTES](volume-attributes.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 471 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md index f28a6ed7b3c29f..6ec9a446b5c54b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Back URL available se utiliza para saber si existe un URL precedente disponible en la secuencia de URLs abiertos en el área web designada por los parámetros *\** y *objeto*. @@ -27,4 +24,13 @@ El comando devuelve [True](true.md "True") si existe un URL y de lo contrario [F #### Ver también [WA Forward URL available](wa-forward-url-available.md) -[WA OPEN BACK URL](wa-open-back-url.md) \ No newline at end of file +[WA OPEN BACK URL](wa-open-back-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1026 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md index 489f46df6c6c6e..a8e3513eac248f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **WA Create URL history menu** crea y llena un menú que puede utilizarse directamente para la navegación entre los URLs visitados durante la sesión en el área web designada por los parámetros *\** y *objeto*. Puede utilizarse para crear una interfaz de navegación personalizada. @@ -69,4 +66,13 @@ El siguiente código puede estar asociado con un botón 3D con menú pop up llam [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[WA GET URL HISTORY](wa-get-url-history.md) \ No newline at end of file +[WA GET URL HISTORY](wa-get-url-history.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1049 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md index 81bd799e8ce4ec..f0056c2bdfa37a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Evaluate JavaScript ejecuta en el área web designada por los parámetros *\** y *objeto* el código JavaScript pasado en *codeJS* y devuelve el resultado. Este comando debe ser llamado después de cargar la página (el evento de formulario On End URL Loading debe haber sido generado). @@ -104,4 +101,13 @@ Luego puede evaluar el código JavaScript desde 4D: #### Ver también -[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) \ No newline at end of file +[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1029 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md index 0d1b53af404659..911e89e4443a8e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA EXECUTE JAVASCRIPT FUNCTION ejecuta en el área Web designada por los parámetros *\** y *objeto*, la función JavaScript *funcionJS* y devuelve opcionalmente su resultado en el parámetro *resultado*. @@ -59,4 +56,13 @@ La función JavaScript "getCustomerInfo" recibe un número ID como parámetro y #### Ver también -[WA Evaluate JavaScript](wa-evaluate-javascript.md) \ No newline at end of file +[WA Evaluate JavaScript](wa-evaluate-javascript.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1043 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md index 390cbcab037399..050fea22e60128 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Forward URL available permite conocer si existe un URL siguiente disponible en la secuencia de URLs abiertos en el área web designada por los parámetros *\** y *objeto*. @@ -27,4 +24,13 @@ El comando devuelve [True](true.md "True") si existe un URL y de lo contrario [F #### Ver también [WA Back URL available](wa-back-url-available.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1027 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md index 6342abff59e519..3a0b45725c5e84 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Get current URL devuelve la dirección URL de la página mostrada en el área web designada por los parámetros *\** y *objeto*. @@ -37,4 +34,13 @@ La página mostrada es el URL "www.apple.com" y la página "www.4dhispano.com" e #### Ver también -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1025 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md index 51be68ce8a2617..cc0c15e129ec7c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA GET EXTERNAL FILTERS LINKS devuelve en los arrays *arrFiltros* y *arrAutorizRechazar*, los filtros de enlaces externos del área web designada por los parámetros *\** y *objeto*. Si ningún filtro está activo, los arrays se devuelven vacíos. @@ -28,4 +25,13 @@ Los filtros son instalados por el comando [WA SET EXTERNAL LINKS FILTERS](wa-set #### Ver también [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1033 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md index 1eb80d118e4a3c..9484d11f89ef9c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Get last filtered URL devuelve el último URL filtrado en el área web designada por los parámetros *\** y *objeto*. @@ -35,4 +32,13 @@ Es recomendable llamar este comando en el contexto de los eventos de formulario [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) [WA GET URL FILTERS](wa-get-url-filters.md) [WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1035 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md index 1bad13293cf0ee..ea50ccc8c1e640 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA GET LAST URL ERROR permite recuperar varios elementos de información relacionados con el último error ocurrido en el área Web designada por los parámetros *\** y *objeto*. @@ -40,4 +37,13 @@ Es recomendable llamar este comando dentro del marco del evento de formulario On #### Ver también -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1034 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md index 2dcbf46512aac4..81cf692ceca6fe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Get page content devuelve el código HTML de la página actual o en de la página que se va a mostrar en el área web designada por los parámetros *\** y *objeto*. @@ -26,4 +23,13 @@ Este comando devuelve una cadena vacía si el contenido de la página actual no #### Ver también -[WA SET PAGE CONTENT](wa-set-page-content.md) \ No newline at end of file +[WA SET PAGE CONTENT](wa-set-page-content.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1038 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md index bfd6a5a38a8109..666fbdab89a119 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA Get page title devuelve el título de la página actual o que va a ser mostrada en el área web designada por los parámetros *\** y *objeto*. El título corresponde a la etiqueta HTML "Title". @@ -26,4 +23,13 @@ Este comando devuelve una cadena vacía si no hay título disponible para el URL #### Ver también -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1036 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md index df5aca83307523..3085e0b2a73aab 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA GET PREFERENCE permite obtener el valor actual de una preferencia en el área web designada por los parámetros *\** y *objeto*. @@ -35,4 +32,13 @@ Pase en el parámetro *valor* una variable que recibirá el valor actual de la p #### Ver también -[WA SET PREFERENCE](wa-set-preference.md) \ No newline at end of file +[WA SET PREFERENCE](wa-set-preference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1042 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md index 4a913ca416113a..15f6f5f00277fe 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA GET URL FILTERS devuelve en los arrays *arrFiltros* y *arrAutorizRechazar*, los filtros activos en el área web designada por los parámetros *\** y *objeto* . Si ningún filtro está activo, los arrays se devuelven vacíos. @@ -28,4 +25,13 @@ Los filtros son instalados por el comando [WA SET URL FILTERS](wa-set-url-filter #### Ver también [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1031 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md index 3eedd4e1fe318e..1ca63f461068a8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA GET URL HISTORY devuelve uno o dos arrays que contienen los URLs visitados durante la sesión en el área web designada por los parámetros *\** y *objeto*. Permite construir una interfaz de navegación personalizada. @@ -45,4 +42,13 @@ Si se pasa, el parámetro *arrTitulos* contiene la lista de los nombres de venta #### Ver también -[WA Create URL history menu](wa-create-url-history-menu.md) \ No newline at end of file +[WA Create URL history menu](wa-create-url-history-menu.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1048 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md index 8bc600feef41b8..9dfa6e2c151ab5 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA OPEN BACK URL carga en el área web designada por los parámetros *\** y *objeto* el URL precedente en la secuencia de los URLs abiertos. @@ -26,4 +23,13 @@ Si no hay un URL precedente, el comando no hace nada. Puede probar la disponibil #### Ver también [WA OPEN FORWARD URL](wa-open-forward-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1021 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md index 25da98e877816a..6ea826d10bc633 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA OPEN FORWARD URL carga en el área web designada por los parámetros *\** y *objeto* el URL siguiente en la secuencia de los URLs abiertos. @@ -26,4 +23,13 @@ Si no hay un URL siguiente (es decir, si el usuario no ha regresado al URL anter #### Ver también [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1022 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md index 86770b8baf55e7..1693fbba1cbefb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **WA OPEN URL** carga en el área web designada por los parámetros *\** y *objeto* el URL pasado en el parámetro *url*. @@ -49,4 +46,13 @@ Es equivalente a: [OPEN URL](open-url.md) [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1020 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md index 69f026fa3ae768..7c0e2c5df39e49 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **WA OPEN WEB INSPECTOR** abre un inspector web para el área web designada por los parámetros *\** y *objeto*. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver también *Gestión programada de áreas web* -[WA Run offscreen area](wa-run-offscreen-area.md) \ No newline at end of file +[WA Run offscreen area](wa-run-offscreen-area.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1736 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md index 5c6da127ee4421..43e9d94cf7b7c8 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA REFRESH CURRENT URL recarga el URL actual mostrado en el área web designada por los parámetros *\** y *objeto*. #### Ver también -[WA STOP LOADING URL](wa-stop-loading-url.md) \ No newline at end of file +[WA STOP LOADING URL](wa-stop-loading-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1023 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md index 5319bb305785ba..3008bbe3254673 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando **WA Run offscreen area** crea un área web en memoria que se puede utilizar para cargar y analizar automáticamente las páginas web. @@ -98,4 +95,14 @@ La variable del sistema OK se define en 0 si se ha alcanzado el tiempo de espera [FORM Event](form-event.md) *Gestión programada de áreas web* -[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) \ No newline at end of file +[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1727 | +| Hilo seguro | ✗ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md index ecd14149930827..c2cb4ab7dfc733 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA SET EXTERNAL LINKS FILTERS permite establecer uno o más filtros de enlaces externos para la zona web designada por los parámetros *\** y *objeto*. Los filtros de enlaces externos determinan si un URL asociado a la página actual vía un enlace debe abrirse en el área web o en el navegador web por defecto del equipo. @@ -76,4 +73,13 @@ Este ejemplo combina los filtros de sitios y de enlaces externos: #### Ver también [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1032 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md index e98915a13c11a8..4a29ef2450a5f7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Nota de compatibilidad Este comando histórico ya no es realmente útil. A medida que se refuerza la seguridad en los navegadores modernos, hay cada vez más restricciones para modificar el contenido de las páginas "sobre la marcha". Un enfoque más confiable es crear un archivo local (por ejemplo, en la carpeta temporal) y utilizar [WA OPEN URL](wa-open-url.md) para cargarlo. Para borrar el contenido, basta con llamar a WA OPEN URL(myArea; "about:blank"). @@ -47,4 +44,13 @@ Mostrar la frase "¡Hola mundo!" y definición de un URL de base "file:///" base #### Ver también -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1037 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md index c22fbb2d39d282..537991cc740e93 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA SET PREFERENCE permite fijar diferentes preferencias para el área web designada por los parámetros *\** y *objeto*. @@ -51,4 +48,13 @@ Para activar la URL suéltela en el área web 'myarea': #### Ver también -[WA GET PREFERENCE](wa-get-preference.md) \ No newline at end of file +[WA GET PREFERENCE](wa-get-preference.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1041 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md index d3be87971718ad..eb0211ef56eef9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA SET URL FILTERS permite colocar uno o más filtros para el área Web designada por los parámetros *\** y *objeto*. @@ -157,4 +154,13 @@ Usted quiere negar el acceso a direcciones IP específicas: #### Ver también [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1030 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md index f4ad741a769be2..548d397fbf2f9f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA STOP LOADING URL detiene la carga de los recursos del URL actual de la zona web designada por los parámetros *\** y *objeto*. #### Ver también -[WA REFRESH CURRENT URL](wa-refresh-current-url.md) \ No newline at end of file +[WA REFRESH CURRENT URL](wa-refresh-current-url.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1024 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md index 15cd54fc1856de..5ed8ead2ee22b7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA ZOOM IN aumenta el tamaño del contenido mostrado en el área web designada por los parámetros *\** y *objeto*. @@ -27,4 +24,13 @@ Bajo Windows, el alcance de este comando es global: la configuración se conserv #### Ver también -[WA ZOOM OUT](wa-zoom-out.md) \ No newline at end of file +[WA ZOOM OUT](wa-zoom-out.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1039 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md index 40b2c2d6a251ab..3a57fbae38b8e1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WA ZOOM OUT reduce el tamaño del contenido mostrado en el área web designada por los parámetros \* y objeto. @@ -27,4 +24,13 @@ Bajo Windows, el alcance de este comando es global: la configuración se conserv #### Ver también -[WA ZOOM IN](wa-zoom-in.md) \ No newline at end of file +[WA ZOOM IN](wa-zoom-in.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1040 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md index de25507adce2a9..cd17bca9971639 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md @@ -23,4 +23,13 @@ Consulte el ejemplo del comando [WEB GET BODY PART](web-get-body-part.md). #### Ver también -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1211 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md index ff7f41fb7f2652..b6a37491f36ea7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md @@ -91,4 +91,13 @@ Este es el código del método GetFile: [WEB Get body part count](web-get-body-part-count.md) [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET VARIABLES](web-get-variables.md) \ No newline at end of file +[WEB GET VARIABLES](web-get-variables.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1212 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md index d3211cf0c3a928..be32990b21dc70 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md @@ -22,4 +22,13 @@ Si este comando se llama fuera del contexto de una sesión web, devuelve una cad #### Ver también *Gestión de las sesiones web (heredado)* -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1162 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md index cca8e8f467d8a7..8bcdbfd4901c7f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md @@ -47,4 +47,13 @@ Cuando el formulario se envia al servidor web, la variable $textoSolicitud recib #### Ver también [WEB GET BODY PART](web-get-body-part.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 814 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md index e29c5fcb2cb97d..dc7a1ab962b3ae 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md @@ -117,4 +117,13 @@ On Web Connection): #### Ver también [WEB GET HTTP BODY](web-get-http-body.md) -[WEB SET HTTP HEADER](web-set-http-header.md) \ No newline at end of file +[WEB SET HTTP HEADER](web-set-http-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 697 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md index 4f092ad26cdea1..a74a218477fcce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md @@ -62,4 +62,13 @@ Cuando utiliza el *selector* Web debug log, puede recibir una de las siguientes #### Ver también -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1209 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md index 41af0bc1910190..04d5a472e42138 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md @@ -127,4 +127,13 @@ Después de ejecutar el siguiente código: [License info](license-info.md) [Process activity](../commands/process-activity.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1531 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md index a0dd59fcd5b117..747ae7d19514be 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md @@ -59,3 +59,13 @@ En el método de proyecto STATS, escriba el siguiente código: ``` Puede enviar la página "stats.shtm" utilizando un enlace URL o utilizando el comando [WEB SEND FILE](web-send-file.md). + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 658 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md index fbdb0262abd03f..9b435e6d1e3c00 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md @@ -63,4 +63,13 @@ La variable vNOMBRE contiene ROBERTO y vCIUDAD contiene PARIS. #### Ver también -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 683 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md index e779a3428e74fe..39c17b0ea4fc84 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md @@ -26,4 +26,13 @@ Este comando permite, por ejemplo, rechazar los intentos de conexión en modo no #### Ver también -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 698 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md index 7ef08ce4582802..8486121cbec410 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md @@ -36,3 +36,13 @@ Usted quiere verificar que el servidor web se está ejecutando:     ... //hacer las acciones apropiadas  End if ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1313 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md index 826174cebec074..3976aa45efb744 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md @@ -34,4 +34,13 @@ Después de la ejecución de este comando, si un cliente web envía una petició #### Ver también *Gestión de las sesiones web (heredado)* -[Método base On Web Legacy Close Session](metodo-base-on-web-legacy-close-session.md) \ No newline at end of file +[Método base On Web Legacy Close Session](metodo-base-on-web-legacy-close-session.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1208 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md index 11ea34a7bf9e40..b0fad22cc21b8d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md @@ -37,4 +37,13 @@ El parámetro *fechaVenc* recibe la fecha de vencimiento y el parámetro *horaVe *Gestión de las sesiones web (heredado)* [WEB Get Current Session ID](web-get-current-session-id.md) -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1207 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md index 4c90c77b9c46a1..0732534bc027ce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md @@ -79,4 +79,13 @@ Consulte el ejemplo de la rutina [PICTURE TO BLOB](picture-to-blob.md). #### Ver también -[WEB SEND FILE](web-send-file.md) \ No newline at end of file +[WEB SEND FILE](web-send-file.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 654 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md index 4d0a1e7b2a2d92..5d8917162d2156 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md @@ -49,4 +49,14 @@ Si el archivo a enviar existe y si el timeout no ha pasado, OK toma el valor 1\. #### Ver también -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 619 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md index 6e1c4026e57a67..f178abeb59b84c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md @@ -55,3 +55,13 @@ En el [QR SET DESTINATION](qr-set-destination.md), inserte el siguiente código:        ... //Coloque el código de búsqueda aquí  End case ``` + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 659 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md index 5d42f5a63e21a5..2eba66d3e46b8c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md @@ -80,4 +80,13 @@ Este ejemplo ilustra el uso de la opción chunked con el comando **WEB SEND RAW #### Ver también [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 815 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md index a4361de3b82da3..d62120dd8c870b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md @@ -43,4 +43,13 @@ El siguiente método: #### Ver también -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 677 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md index f47c05b4dd411c..88d2b6c5e3c7c9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md @@ -51,4 +51,13 @@ Autenticación con un servicio web ubicado detrás de un proxy: #### Ver también [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE Get info](web-service-get-info.md) \ No newline at end of file +[WEB SERVICE Get info](web-service-get-info.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 786 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md index 1d281b1b8df73a..f18954163901d9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md @@ -165,4 +165,14 @@ Si la petición se enruta correctamente y el servicio web la acepta, la variable #### Ver también [WEB SERVICE GET RESULT](web-service-get-result.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 778 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md index 92984d8beaf7a6..03616c32aa4789 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md @@ -29,3 +29,13 @@ El parámetro *tipoInfo* le permite indicar el tipo de información que quiere o Se devuelve una cadena vacía cuando no hay información disponible, en particular si la última petición SOAP no generó errores. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 780 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md index 21e6ba1ab0b312..64450585f497d3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descripción -El comando **WEB SERVICE GET RESULT** permite recuperar un valor enviado por el servicio web como resultado del proceso realizado. - -**Nota:** este comando debe utilizarse únicamente después del comando [WEB SERVICE CALL](web-service-call.md). +El comando **WEB SERVICE GET RESULT** permite recuperar un valor enviado por el servicio web como resultado del proceso realizado.este comando debe utilizarse únicamente después del comando [WEB SERVICE CALL](web-service-call.md). El parámetro *valorDevuelto* recibe el valor reenviado por el servicio web. Pase en este parámetro una variable 4D. Esta variable es generalmente $0, que corresponde al valor devuelto por el método proxy. Sin embargo, es posible utilizar variables intermediarias (debe utilizar las variables de proceso únicamente). @@ -50,4 +48,13 @@ Imagine un servicio web que devuelve la hora actual en cualquier ciudad del mund #### Ver también [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 779 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md index feb7b872091ce1..7148fbf90882c9 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md @@ -61,4 +61,13 @@ Utilización de la versión 1.2 del protocolo SOAP: #### Ver también -[WEB SERVICE CALL](web-service-call.md) \ No newline at end of file +[WEB SERVICE CALL](web-service-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 901 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md index 71098786935f02..eab13b3b7ce541 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md @@ -72,4 +72,13 @@ Este ejemplo define dos parámetros: #### Ver también [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE GET RESULT](web-service-get-result.md) \ No newline at end of file +[WEB SERVICE GET RESULT](web-service-get-result.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 777 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md index 81a2d4c025529e..9f49a49e0691fc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md @@ -26,3 +26,13 @@ Pase en el parámetro *pagInicio* el nombre de la página HTML o de la ruta de a Para no enviar *pagInicio* como página de inicio para el proceso web actual, ejecute de nuevo el comando WEB SET HOME PAGE con una cadena vacía ("") pasada en *pagInicio*. **Nota:** la página de bienvenida por defecto del servidor web se define en las Propiedades de la base. + + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 639 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md index 753cd6afc7b9a5..a86b8f60f82188 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md @@ -64,4 +64,13 @@ Los campos **Date** y **Content-Length** siempre son definidos por defecto por 4 #### Ver también -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 660 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md index 4ab03a1afc73a0..a8eae897436af6 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md @@ -79,4 +79,13 @@ Una entrada registrada se ve así: #### Ver también [WEB GET OPTION](web-get-option.md) -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 5 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md index c86ff7075cf957..3b24eed02da151 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md @@ -37,4 +37,14 @@ Si especifica una ruta de acceso invalida, se generará un error del administrad #### Ver también [Get 4D folder](get-4d-folder.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 634 | +| Hilo seguro | ✓ | +| Modifica variables | error | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md index ee7437f5b60022..c122447d5a5b8b 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md @@ -24,4 +24,14 @@ Si el servidor web se inicia correctamente, OK toma el valor *1*; de lo contrari #### Ver también -[WEB STOP SERVER](web-stop-server.md) \ No newline at end of file +[WEB STOP SERVER](web-stop-server.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 617 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md index b8206ea06cb8d4..255e68267ac638 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md @@ -20,4 +20,13 @@ Si el servidor web no se ha iniciado, el comando no hace nada. #### Ver también -[WEB START SERVER](web-start-server.md) \ No newline at end of file +[WEB START SERVER](web-start-server.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 618 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md index 734ba4b738ae37..56553c1e184e2e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md @@ -55,4 +55,13 @@ Ejemplo de método de base On Web Authentication en modo Digest: #### Ver también [Generate digest](generate-digest.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 946 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md index b19cc5f4e61e73..986dfd02be4228 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Window kind devuelve el tipo de ventana 4D cuyo número de referencia se pasa en *ventana*. Si la ventana no existe, Window kind devuelve *0* (cero). @@ -40,4 +37,13 @@ Ver el ejemplo del comando [WINDOW LIST](window-list.md "WINDOW LIST"). [GET WINDOW RECT](get-window-rect.md) [Get window title](get-window-title.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 445 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md index 3a9da08c9e91c7..417e8bd2e5b1c3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando WINDOW LIST llena el array *ventanas* con los números de referencia de las ventanas abiertas actualmente en todos los procesos (procesos kernel o usuario). Sólo las ventanas "visibles" (ventanas no ocultas) se devuelven. @@ -52,4 +49,13 @@ El siguiente método de proyecto coloca en mosaico todas las ventanas abiertas a #### Ver también [Window kind](window-kind.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 442 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md index 180d5b22ea2cd6..f9dd7d8d9ccbd7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Este comando no es hilo seguro, no puede ser utilizado en código apropiativo.* - - #### Descripción El comando Window process devuelve el número de proceso que ejecuta la ventana cuyo número de referencia se pasa en *ventana*. Si la ventana no existe, el comando devuelve *0* (cero). @@ -25,4 +22,13 @@ Si omite el parámetro *ventana*, Window process devuelve el número del proceso #### Ver también -[Current process](current-process.md) \ No newline at end of file +[Current process](current-process.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 446 | +| Hilo seguro | ✗ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md index d1138f4d38ce38..044f5d66a09930 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Windows Alt down devuelve TRUE si la tecla Alt Windows está presionada. - -**Nota:** cuando se llama en una plataforma Macintosh, Windows Alt down devuelve TRUE si la tecla Macintosh Opción está presionada. +Windows Alt down devuelve TRUE si la tecla Alt Windows está presionada.cuando se llama en una plataforma Macintosh, Windows Alt down devuelve TRUE si la tecla Macintosh Opción está presionada. #### Ejemplo @@ -30,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 563 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md index 9f9c36b793a169..c15eeb6883b6c0 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descripción -Windows Ctrl down devuelve TRUE si la tecla Ctrl Windows está presionada. - -**Nota:** cuando se llama en una plataforma Macintosh, Windows Ctrl down devuelve TRUE si la tecla Macintosh Comando está presionada. +Windows Ctrl down devuelve TRUE si la tecla Ctrl Windows está presionada.cuando se llama en una plataforma Macintosh, Windows Ctrl down devuelve TRUE si la tecla Macintosh Comando está presionada. #### Ejemplo @@ -30,4 +28,13 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down"). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 562 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md index 330f4e77cbbaac..226e104649804f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md @@ -49,4 +49,14 @@ Si la ejecución del comando es correcta, la variable sistema Document contiene *Imágenes* [PICTURE TO BLOB](picture-to-blob.md) [READ PICTURE FILE](read-picture-file.md) -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 680 | +| Hilo seguro | ✓ | +| Modifica variables | OK, Document | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md index 081898cfe5a7c0..5c7e61edff2974 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md @@ -75,4 +75,13 @@ Ejemplo del documento XML: #### Ver también [BASE64 DECODE](base64-decode.md) -[BASE64 ENCODE](base64-encode.md) \ No newline at end of file +[BASE64 ENCODE](base64-encode.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1091 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md index a87c80a73ab858..06e74fd208c3b1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md @@ -28,4 +28,14 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\. #### Ver también -[DOM Get XML information](dom-get-xml-information.md) \ No newline at end of file +[DOM Get XML information](dom-get-xml-information.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 732 | +| Hilo seguro | ✓ | +| Modifica variables | OK | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md index 71da0b0049ab2a..e55a39b887a114 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md @@ -36,4 +36,13 @@ En *selector*, pase una de las constantes del tema *XML* indicando la opción a #### Ver también -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1096 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md index 9be8336623c2d1..fff1b38a7d1e54 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md @@ -68,4 +68,13 @@ Inserción de una imagen SVG: [DOM SET XML DECLARATION](dom-set-xml-declaration.md) [DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[XML GET OPTIONS](xml-get-options.md) \ No newline at end of file +[XML GET OPTIONS](xml-get-options.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 1090 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md index 369c350dccdb45..237e2e3ced8805 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md @@ -37,4 +37,13 @@ Ver el ejemplo del comando [Current date](current-date.md "Current date"). #### Ver también [Day of](day-of.md) -[Month of](month-of.md) \ No newline at end of file +[Month of](month-of.md) + +#### Propiedades + +| | | +| --- | --- | +| Número de comando | 25 | +| Hilo seguro | ✓ | + + diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md index f86d35609feafa..9e87c4b0834aee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md @@ -29,24 +29,24 @@ El comando `IMAP New transporter` ](../API/IMAPTransporterClass.md#acceptunsecureconnection)
| False | -| .**accessTokenOAuth2**: Text
.**accessTokenOAuth2**: Object
Cadena u objeto token que representa las credenciales de autorización OAuth2. Utilizado sólo con OAUTH2 `authationMode`. Si se utiliza `accessTokenOAuth2` pero se omite `authenticationMode`, se utiliza el protocolo OAuth 2 (si el servidor lo permite). Not returned in *[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)* object. | ninguno | -| [](../API/IMAPTransporterClass.md#authenticationmode)
| se utiliza el modo de autenticación más seguro soportado por el servidor | -| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
| 300 | -| [](../API/IMAPTransporterClass.md#connectiontimeout)
| 30 | -| [](../API/IMAPTransporterClass.md#host)
| *obligatorio* | -| [](../API/IMAPTransporterClass.md#logfile)
| ninguno | -| .**password** : Text
contraseña de usuario para la autenticación en el servidor. No se devuelve en el objeto *[IMAP transporter](#imap-transporter-object)*. | ninguno | -| [](../API/IMAPTransporterClass.md#port)
| 993 | -| [](../API/IMAPTransporterClass.md#user)
| ninguno | +| *server* | Valor por defecto (si se omite) | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | +| [](../API/IMAPTransporterClass.md#acceptunsecureconnection)
| False | +| .**accessTokenOAuth2**: Text
.**accessTokenOAuth2**: Object
Cadena u objeto token que representa las credenciales de autorización OAuth2. Utilizado sólo con OAUTH2 `authationMode`. Si se utiliza `accessTokenOAuth2` pero se omite `authenticationMode`, se utiliza el protocolo OAuth 2 (si el servidor lo permite). No se devuelve en el objeto *[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)*. | ninguno | +| [](../API/IMAPTransporterClass.md#authenticationmode)
| se utiliza el modo de autenticación más seguro soportado por el servidor | +| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
| 300 | +| [](../API/IMAPTransporterClass.md#connectiontimeout)
| 30 | +| [](../API/IMAPTransporterClass.md#host)
| *obligatorio* | +| [](../API/IMAPTransporterClass.md#logfile)
| ninguno | +| .**password** : Text
contraseña de usuario para la autenticación en el servidor. No se devuelve en el objeto *[IMAP transporter](#imap-transporter-object)*. | ninguno | +| [](../API/IMAPTransporterClass.md#port)
| 993 | +| [](../API/IMAPTransporterClass.md#user)
| ninguno | > **Atención**: asegúrese de que el tiempo de espera definido sea menor que el tiempo de espera del servidor, de lo contrario el tiempo de espera del cliente será inútil. #### Result -The function returns an [**IMAP transporter object**](../API/IMAPTransporterClass.md#imap-transporter-object). Todas las propiedades devueltas son de sólo lectura\*\*. +La función devuelve un [**objeto IMAP transporter**](../API/IMAPTransporterClass.md#imap-transporter-object). Todas las propiedades devueltas son de sólo lectura\*\*. > La conexión IMAP se cierra automáticamente cuando se destruye el objeto transportador. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-from-mime.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-from-mime.md index ee74188975b414..e3bccf11c10d60 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-from-mime.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-from-mime.md @@ -88,5 +88,5 @@ $transporter:=SMTP New transporter($server) $status:=$transporter.send($email) ``` -\| mime | BLOB, Text | → | Email in MIME | -\| Function result | Object | ← | Email object | +\| mime | BLOB, Texto | → | Email en MIME | +\| Resultado de función | Objeto | ← | Objeto Email | diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-to-mime.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-to-mime.md index 2764aebb2d28b9..9359011121325e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-to-mime.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-to-mime.md @@ -27,7 +27,7 @@ displayed_sidebar: docs #### Descripción -El comando `MAIL Convert to MIME` convierte un objeto email en texto MIME. This command is called internally by [SMTP_transporter.send()](../API/SMTPTransporterClass.md#send) to format the email object before sending it. Se puede utilizar para analizar el formato MIME del objeto. +El comando `MAIL Convert to MIME` convierte un objeto email en texto MIME. Este comando es llamado internamente por [SMTP_transporter.send()](API/SMTPTransporterClass.md#send) para formatear el objeto email antes de enviarlo. Se puede utilizar para analizar el formato MIME del objeto. En *mail*, pase el contenido y los detalles de la estructura del correo electrónico a convertir. Esto incluye información como las direcciones de correo electrónico (remitente y destinatario(s)), el propio mensaje y el tipo de visualización del mensaje. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-new-attachment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-new-attachment.md index 14960351401ae6..45b72d12a696e4 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-new-attachment.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/mail-new-attachment.md @@ -34,7 +34,7 @@ displayed_sidebar: docs #### Descripción -The `MAIL New attachment` command allows you to create an attachment object that you can add to an [Email object](../API/EmailObjectClass.md#email-object). +El comando `MAIL New attachment` le permite crear un objeto adjunto que puede agregar a un [objeto de Email](../API/EmailObjectClass.md#email-object). Para definir el adjunto, puede utilizar: diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/new-collection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/new-collection.md index 95f9dcc3e64cdb..b5e26d5dd25070 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/new-collection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/new-collection.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Descripción -The `New collection` command creates a new empty or prefilled collection and returns its reference. Collections can be handled using properties and functions of the [Collection class API](../API/CollectionClass.md). +El comando `New collection` crea una nueva colección vacía o prellenada y devuelve su referencia. Las colecciones pueden manejarse utilizando propiedades y funciones de la [API de la clase Collection](../API/CollectionClass.md). Si no se pasa ningún parámetro, `New collection` crea una colección vacía y devuelve su referencia. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/new-shared-collection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/new-shared-collection.md index c732901ac0dc1a..d4db2973c6a847 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/new-shared-collection.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/new-shared-collection.md @@ -19,7 +19,7 @@ displayed_sidebar: docs El comando `New shared collection` crea una nueva colección compartida vacía o precargada y devuelve su referencia. Collections can be handled using properties and functions of the [Collection class API](../API/CollectionClass.md). -Adding an element to this collection using the assignment operator must be surrounded by the [`Use...End use`](../Concepts/shared.md#useend-use) structure, otherwise an error is generated (this is not necessary when adding elements using functions such as [`push()`](../API/CollectionClass.md#push) or [`map()`](../API/CollectionClass.md#map) because they automatically trigger an internal *Use...End use*). Sin embargo, es posible leer un elemento sin una estructura *Use...End use*. +La adición de un elemento a esta colección utilizando el operador de asignación debe estar rodeada por la estructura [`Use...End use`](../Concepts/shared.md#useend-use), de lo contrario se genera un error (esto no es necesario cuando se añaden elementos utilizando funciones como [`push()`](../API/CollectionClass.md#push) o [`map()`](../API/CollectionClass.md#map) porque activan automáticamente una estructura interna *Use...End use*). Sin embargo, es posible leer un elemento sin una estructura *Use...End use*. :::info diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/pop3-new-transporter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/pop3-new-transporter.md index 335da459df3f01..97d02046ec84cc 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/pop3-new-transporter.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R7/commands/pop3-new-transporter.md @@ -11,7 +11,7 @@ displayed_sidebar: docs | Parámetros | Tipo | | Descripción | | ---------- | ---------------------------------- | - | --------------------------------------------------------------------------------- | | server | Object | → | Información del servidor de correo | -| Resultado | 4D.POP3Transporter | ← | [POP3 transporter object](../API/POP3TransporterClass.md#pop3-transporter-object) | +| Resultado | 4D.POP3Transporter | ← | [Objeto transporter POP3](../API/POP3TransporterClass.md#pop3-transporter-object) | @@ -25,7 +25,7 @@ displayed_sidebar: docs #### Descripción -The `POP3 New transporter` command configures a new POP3 connectionaccording to the *server* parameter and returns a new [POP3 transporter](../API/POP3TransporterClass.md#pop3-transporter-object) object. El objeto transportador devuelto se utilizará normalmente para recibir correos electrónicos. +El comando `POP3 New transporter` configura una nueva conexión POP3 en función del parámetro *server* y devuelve un nuevo objeto [transporter POP3](../API/POP3TransporterClass.md#pop3-transporter-object). El objeto transportador devuelto se utilizará normalmente para recibir correos electrónicos. En el parámetro *server*, pase un objeto que contenga las siguientes propiedades: diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md index 80d23e97819e62..45d0d5e6999666 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md @@ -1018,6 +1018,21 @@ No obtendrá el resultado esperado porque el valor null será evaluado por 4D co $vSingles:=ds.Person.query("spouse = null") // Sintaxis correcta ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + + #### No igual a en colecciones Al buscar dentro de atributos de objetos dataclass que contengan colecciones, el comparador "no igual a *valor*" (`#` o `!=`) encontrará elementos en los que TODAS las propiedades sean diferentes de *valor* (y no aquellos en los que AL MENOS una propiedad sea diferente de *valor*, que es como funcionan otros comparadores). Básicamente, equivale a buscar "Not(buscar elementos de la colección cuya propiedad sea igual a *value*"). Por ejemplo, con las siguientes entidades: diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20/API/EntityClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20/API/EntityClass.md index 7e068ca38b18c3..261c71879ce255 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20/API/EntityClass.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20/API/EntityClass.md @@ -95,7 +95,7 @@ El tipo de valor del atributo depende del tipo [kind](DataClassClass.md#attribut La función `.clone()` crea en memoria una nueva entidad que hace referencia al mismo registro que la entidad original. This function allows you to update entities separately. Note however that, for performance reasons, the new entity shares the same reference of object attributes as the cloned entity. -> Keep in mind that any modifications done to entities will be saved in the referenced record only when the [`.save()`](#save) function is executed. +> Tenga en cuenta que toda modificación realizada a las entidades se guardará en el registro referenciado solo cuando se ejecute la función [`.save()`](#save). Esta función sólo puede utilizarse con entidades ya guardadas en la base de datos. No se puede llamar a una entidad recién creada (para la que [`.isNew()`](#isnew) devuelve **True**). @@ -234,7 +234,7 @@ $diff2: vCompareResult3:=$e1.diff($e2;$e1.touchedAttributes()) ``` -vCompareResult3 (sólo se devuelven las diferencias en atributos tocados $e1) +vCompareResult1 (se devuelven todas las diferencias): ```4d [ @@ -283,7 +283,7 @@ vCompareResult2 (sólo se devuelven las diferencias en $attributesToInspect) ] ``` -vCompareResult1 (se devuelven todas las diferencias): +vCompareResult3 (sólo se devuelven las diferencias en atributos tocados $e1) ```4d [ @@ -1373,7 +1373,7 @@ Sin parámetro de filtro: employeeObject:=employeeSelected.toObject() ``` -Lanzamiento +Devuelve: ```4d { @@ -1404,7 +1404,7 @@ Extraer la llave primaria y el sello: employeeObject:=employeeSelected.toObject("";dk with primary key+dk with stamp) ``` -Lanzamiento +Devuelve: ```4d { @@ -1506,7 +1506,7 @@ Extracción de algunas propiedades de `relatedEntities`: employeeObject:=employeeSelected.toObject("firstName, directReports.lastName") ``` -Lanzamiento +Devuelve: ```4d { @@ -1534,7 +1534,7 @@ Obtenga una `relatedEntity` en un formulario simple: employeeObject:=employeeSelected.toObject($coll) ``` -Lanzamiento +Devuelve: ```4d { @@ -1553,7 +1553,7 @@ Extracción de todas las propiedades de una `Entidad relacionada`: employeeObject:=employeeSelected.toObject("employer.*") ``` -Devuelve: +Lanzamiento ```4d { @@ -1578,7 +1578,7 @@ Extracción de algunas propiedades de una `Entidad relacionada`: employeeObject:=employeeSelected.toObject($col) ``` -Devuelve: +Lanzamiento ```4d { diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20/FormObjects/text.md b/i18n/es/docusaurus-plugin-content-docs/version-20/FormObjects/text.md index 0aa2bb6a1702a4..63c240c135a354 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20/FormObjects/text.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20/FormObjects/text.md @@ -51,4 +51,4 @@ Una vez que un texto está rotado, puede seguir cambiando su tamaño o posición
-[Negrita](properties_Text.md#bold) - [Estilo de línea de borde](properties_BackgroundAndBorder.md#border-line-style) - [inferior](properties_CoordinatesAndSizing.md#bottom) - [Clase](properties_Object.md#css-class) - [Radio de esquina](properties_CoordinatesAndSizing.md#corner-radius) - Color de relleno - [Fuente](properties_Text.md#font) - [Color de fuente](properties_Text.md#font-color) - [Tamaño de fuente](properties_Text.md#font-size) - [Alto](properties_CoordinatesAndSizing.md#height) - [Alineación horizontal](properties_Text.md#horizontal-alignment) - [Tamaño horizontal](properties_ResizingOptions.md#horizontal-sizing) - [Itálica](properties_Text.md#italic) - [Izquierda](properties_CoordinatesAndSizing.md#left) - [Nombre del objeto](properties_Object.md#object-name) - [Orientación](properties_Text.md#orientation) - [Derecha](properties_CoordinatesAndSizing.md#right) - [Título](properties_Object.md#title) - [Superior](properties_CoordinatesAndSizing.md#top) - [Tipo](properties_Object.md#type) - [Subderline](properties_Text.md#underline) - [Dimensionamiento vertical](properties_ResizingOptions.md#vertical-sizing) - [Visibilidad](properties_Display.md#visibility) - [Ancho](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20/Project/documentation.md b/i18n/es/docusaurus-plugin-content-docs/version-20/Project/documentation.md index 43c8e9b96819c0..3549fc007e4522 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20/Project/documentation.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20/Project/documentation.md @@ -222,7 +222,7 @@ GetLogo (size) -> logo ## Description -This method returns a logo of a specific size, depending on the value of the *size* parameter. +Este método devuelve un logo de un tamaño específico, dependiendo del valor del parámetro *size*. 1 = tamaño más pequeño, 5 = tamaño más grande. ## Example diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md index c24eabddf9dece..b61a5ea5e36d07 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md @@ -320,25 +320,26 @@ Définition PEM d'une clé de chiffrement à charger. Si la clé est une clé pr
Historique -| Release | Modifications | -| ------- | ------------- | -| 18 R4 | Ajout | +| Release | Modifications | +| ------- | -------------------------- | +| 20 R8 | Support of message as Blob | +| 18 R4 | Ajout |
-.**sign** (*message* : Text ; *options* : Object) : Text +.**sign** (*message* : Text ; *options* : Object) : Text
.**sign** (*message* : Blob ; *options* : Object) : Text -| Paramètres | Type | | Description | -| ---------- | ------ | --------------------------- | -------------------------------------------------------------------------- | -| message | Text | -> | Chaîne message à signer | -| options | Object | -> | Options de signature | -| Résultat | Text | <- | Signature en représentation Base64 ou Base64URL, selon l'option "encoding" | +| Paramètres | Type | | Description | +| ---------- | ------------ | --------------------------- | -------------------------------------------------------------------------- | +| message | Text OR Blob | -> | Message to sign | +| options | Object | -> | Options de signature | +| Résultat | Text | <- | Signature en représentation Base64 ou Base64URL, selon l'option "encoding" | -La fonction `.sign()` signe la représentation utf8 d'une chaîne de *message* en utilisant les clés de l'objet `CryptoKey` et les *options* fournies. Elle retourne sa signature au format base64 ou base64URL, selon la valeur de l'attribut `options.encoding` que vous avez passé. +The `.sign()` function signs the utf8 representation of a *message* string or Blob using the `CryptoKey` object keys and provided *options*. Elle retourne sa signature au format base64 ou base64URL, selon la valeur de l'attribut `options.encoding` que vous avez passé. `CryptoKey` doit contenir une clé **privée** valide. @@ -349,11 +350,11 @@ La fonction `.sign()` signe la représenta | hash | text | Algorithme de hachage à utiliser. Par exemple : "SHA256", "SHA384" ou "SHA512". Lorsqu'elle est utilisée pour produire un JWT, la taille du hachage doit correspondre à la taille de l'algorithme PS@, ES@, RS@ ou PS@ | | encodingEncrypted | text | Chiffrement utilisé pour convertir le message chiffré binaire en chaîne de résultat. Peut être "Base64" ou "Base64URL". La valeur par défaut est "Base64". | | pss | boolean | Utilise le Probabilistic Signature Scheme (PSS). Ignoré si la clé n'est pas une clé RSA. Passez `true` lors de la production d'un JWT pour l'algorithme PS@ | -| encoding | text | Représentation à utiliser pour la signature. Valeurs possibles : "Base64" ou "Base64URL". La valeur par défaut est "Base64". | +| encoding | text | Representation to be used for result signature. Valeurs possibles : "Base64" ou "Base64URL". La valeur par défaut est "Base64". | #### *Result* -La représentation utf8 de la chaîne *message*. +The utf8 representation of the *message*. @@ -403,22 +404,23 @@ Contient le nom du type de clé - "RSA", "EC
Historique -| Release | Modifications | -| ------- | ------------- | -| 18 R4 | Ajout | +| Release | Modifications | +| ------- | -------------------------- | +| 20 R8 | Support of message as Blob | +| 18 R4 | Ajout |
-**.verify**( *message* : Text ; *signature* : Text ; *options* : Object) : Object +**.verify**( *message* : Text ; *signature* : Text ; *options* : Object) : Object
*.verify**( *message* : Blob ; *signature* : Text ; *options* : Object) : Object -| Paramètres | Type | | Description | -| ---------- | ------ | --------------------------- | ----------------------------------------------------------------------------------------------- | -| message | Text | -> | Chaîne message utilisée pour générer la signature | -| signature | Text | -> | Signature à vérifier, en représentation Base64 ou Base64URL, selon la valeur `options.encoding` | -| options | Object | -> | Options de signature | -| Résultat | Object | <- | Statut de la vérification | +| Paramètres | Type | | Description | +| ---------- | ------------ | --------------------------- | ----------------------------------------------------------------------------------------------- | +| message | Text OR Blob | -> | Message that was used to produce the signature | +| signature | Text | -> | Signature à vérifier, en représentation Base64 ou Base64URL, selon la valeur `options.encoding` | +| options | Object | -> | Options de signature | +| Résultat | Object | <- | Statut de la vérification | diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/DataClassClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/DataClassClass.md index a22640fda231f5..072df0095506bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/API/DataClassClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/DataClassClass.md @@ -1032,6 +1032,20 @@ Vous n'obtiendrez pas le résultat souhaité car la valeur null sera évaluée p $vSingles:=ds.Person.query("spouse = null") //syntaxe valide ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### Not equal to et les collections Lors d'une recherche dans les attributs d'objets de dataclass contenant des collections, le comparateur "not equal to *value*" (`#` ou `!=`) trouvera les éléments dont TOUTES les propriétés sont différentes de *value* (et non ceux dont AU MOINS une propriété est différente de *value*, ce qui est le cas des autres comparateurs). Fondamentalement, cela équivaut à rechercher "Not(chercher éléments de la collection pour lesquels la propriété vaut *value*"). Par exemple, avec les entités suivantes : diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/EntityClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/EntityClass.md index cc86e2bca36555..20a4822765ea49 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/API/EntityClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/EntityClass.md @@ -964,34 +964,34 @@ Sinon, vous pouvez passer l'option `dk reload if stamp changed` dans le paramèt L'objet retourné par `.lock()` contient les propriétés suivantes : -| Propriété | | Type | Description | -| --------------------------------- | ----------------------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| success | | boolean | vrai si l'action de verrouillage a été effectuée avec succès (ou si l'entité est déjà verrouillée dans le process courant), sinon faux. | -| | | | ***Disponible uniquement si l'option `dk reload if stamp changed` a été utilisée*** | -| **wasReloaded** | | boolean | vrai si l'entité a été correctement rechargée, sinon faux. | -| | | | ***Disponible uniquement en cas d'erreur :*** | -| status(\*) | | number | Code d'erreur, voir ci-dessous | -| statusText(\*) | | text | Description de l'erreur, voir ci-dessous | -| | | | ***Disponible uniquement en cas d'erreur de verrouillage pessimiste :*** | -| lockKindText | | text | "Locked by record" si verrouillage par un process 4D, "Locked by session" si verrouillage par une session REST | -| lockInfo | | object | Information sur l'origine du verrouillage. Les propriétés retournées dépendent de l'origine du verrouillage (process 4D ou session REST). | -| | | | ***Disponible uniquement pour un verrouillage par process 4D :*** | -| | task_id | number | ID du process | -| | user_name | text | Nom d'utilisateur de la session sur la machine | -| | user4d_alias | text | Nom ou alias de l'utilisateur 4D | -| | user4d_id | number | Identifiant utilisateur dans le répertoire de la base 4D | -| | host_name | text | Nom de la machine | -| | task_name | text | Nom du process | -| | client_version | text | Version du client | -| | | | ***Disponible uniquement pour le verrouillage d'une session REST :*** | -| | host | text | \| URL ayant verrouillé l'entité (ex : "www.myserver.com") \\ | -| | IPAddr | text | Adresse IP d'origine du verrouillage (ex. 127.0.0.1") | -| | userAgent | text | userAgent de l'origine du verouillage (ex : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | -| | | | ***Disponible uniquement en cas d'erreur critique*** (clé primaire dupliquée, disque plein...) : | -| errors | | collection of objects | | -| | message | text | Message d'erreur | -| | component signature | text | signature du composant interne (e.g. "dmbg" pour le composant de base de données) | -| | errCode | number | Code d'erreur | +| Propriété | | Type | Description | +| --------------------------------- | ----------------------------------- | --------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| success | | boolean | vrai si l'action de verrouillage a été effectuée avec succès (ou si l'entité est déjà verrouillée dans le process courant), sinon faux. | +| | | | ***Disponible uniquement si l'option `dk reload if stamp changed` a été utilisée*** | +| **wasReloaded** | | boolean | vrai si l'entité a été correctement rechargée, sinon faux. | +| | | | ***Disponible uniquement en cas d'erreur :*** | +| status(\*) | | number | Code d'erreur, voir ci-dessous | +| statusText(\*) | | text | Description de l'erreur, voir ci-dessous | +| | | | ***Disponible uniquement en cas d'erreur de verrouillage pessimiste :*** | +| lockKindText | | text | "Locked by record" si verrouillage par un process 4D, "Locked by session" si verrouillage par une session REST | +| lockInfo | | object | Information sur l'origine du verrouillage. Les propriétés retournées dépendent de l'origine du verrouillage (process 4D ou session REST). | +| | | | ***Disponible uniquement pour un verrouillage par process 4D :*** | +| | task_id | number | ID du process | +| | user_name | text | Nom d'utilisateur de la session sur la machine | +| | user4d_alias | text | Nom ou alias de l'utilisateur 4D | +| | user4d_id | number | Identifiant utilisateur dans le répertoire de la base 4D | +| | host_name | text | Nom de la machine | +| | task_name | text | Nom du process | +| | client_version | text | Version du client | +| | | | ***Disponible uniquement pour le verrouillage d'une session REST :*** | +| | host | text | \| \\| URL ayant verrouillé l'entité (ex : "www.myserver.com") \\ \| | +| | IPAddr | text | Adresse IP d'origine du verrouillage (ex. 127.0.0.1") | +| | userAgent | text | userAgent de l'origine du verouillage (ex : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | +| | | | ***Disponible uniquement en cas d'erreur critique*** (clé primaire dupliquée, disque plein...) : | +| errors | | collection of objects | | +| | message | text | Message d'erreur | +| | component signature | text | signature du composant interne (e.g. "dmbg" pour le composant de base de données) | +| | errCode | number | Code d'erreur | (\*) Les valeurs suivantes peuvent être retournées dans les propriétés *status* et *statusText* de l'objet *Résultat* en cas d'erreur : diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md index d433bfe939c390..79f83d2f70b999 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md @@ -127,10 +127,10 @@ If the body has not been given as a binary content, the function tries to conver -| Paramètres | Type | | Description | -| ---------- | ---- | --------------------------- | ---------------------------- | -| key | Text | -> | Header property to get | -| Résultat | Text | <- | Value of the header property | +| Paramètres | Type | | Description | +| ---------- | ---- | --------------------------- | -------------------------------- | +| key | Text | -> | Header property to get | +| Résultat | Text | <- | Valeur de la propriété de header | @@ -238,7 +238,7 @@ If the body has not been given as a string value, the function tries to convert The `.headers` property contains the current headers of the incoming message as key/value pairs (strings). -The `.headers` property is read-only. +La propriété `.headers` est en lecture seule. Header names (keys) are lowercased. Note header names are case sensitive. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md index 914580df7960cf..af93791b723964 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md @@ -3,11 +3,11 @@ id: OutgoingMessageClass title: OutgoingMessage --- -The `4D.OutgoingMessage` class allows you to build messages to be returned by your application functions in response to [REST requests](../REST/REST_requests.md). If the response is of type `4D.OutgoingMessage`, the REST server does not return an object but the object instance of the `OutgoingMessage` class. +La classe `4D.OutgoingMessage` vous permet de construire des messages qui seront renvoyés par les fonctions de votre application en réponse aux [requêtes REST](../REST/REST_requests.md). Lorsque la réponse est de type `4D.OutgoingMessage`, le serveur REST ne renvoie pas un objet mais une instance d'objet de la classe `OutgoingMessage`. -Typically, this class can be used in custom [HTTP request handler functions](../WebServer/http-request-handler.md#function-configuration) or in functions declared with the [`onHttpGet`](../ORDA/ordaClasses.md#onhttpget-keyword) keyword and designed to handle HTTP GET requests. Such requests are used, for example, to implement features such as download file, generate and download picture as well as receiving any content-type via a browser. +Typiquement, cette classe peut être utilisée dans des fonctions personnalisées de [HTTP request handler](../WebServer/http-request-handler.md#function-configuration) ou dans des fonctions déclarées avec le mot-clé [`onHttpGet`](../ORDA/ordaClasses.md#onhttpget-keyword) et conçues pour gérer des requêtes HTTP GET. Ces requêtes sont utilisées, par exemple, pour implémenter des fonctionnalités telles que le téléchargement de fichier, la génération et le téléchargement d'images ainsi que la réception de tout content-type via un navigateur. -An instance of this class is built on 4D Server and can be sent to the browser by the [4D REST Server](../REST/gettingStarted.md) only. This class allows to use other technologies than HTTP (e.g. mobile). +Une instance de cette classe est construite sur 4D Server et peut être envoyée au navigateur via le [serveur REST 4D](../REST/gettingStarted.md) uniquement. Cette classe permet d'utiliser d'autres technologies que HTTP (par exemple, mobile).
Historique @@ -19,7 +19,7 @@ An instance of this class is built on 4D Server and can be sent to the browser b ### Exemple -In this example, a `getFile()` function is implemented in the [Datastore class](../ORDA/ordaClasses.md#datastore-class) and [can be called](../ORDA/ordaClasses.md#onhttpget-keyword) by a REST request. The purpose is to return a **testFile.pdf** file as a response to the request: +Dans cet exemple, une fonction `getFile()` est implémentée dans la [Datastore class](../ORDA/ordaClasses.md#datastore-class) et peut être [appelée](../ORDA/ordaClasses.md#onhttpget-keyword) par une requête REST. Le but est de retourner un fichier **testFile.pdf** en réponse à la requête : ```4d Class extends DataStoreImplementation @@ -29,14 +29,14 @@ exposed onHTTPGet Function getFile() : 4D.OutgoingMessage var $result:=4D.OutgoingMessage.new() var $file:=File("/RESOURCES/testFile.pdf") - $result.setBody($file.getContent()) // This is binary content + $result.setBody($file.getContent()) // contenu binaire $result.setHeader("Content-Type"; "application/pdf") return $result ``` -### OutgoingMessage Object +### Objet OutgoingMessage -4D.OutgoingMessage objects provide the following properties and functions: +Les objets 4D.OutgoingMessage fournissent les propriétés et fonctions suivantes : | | | -------------------------------------------------------------------------------------------------------------------------------------- | @@ -49,7 +49,7 @@ exposed onHTTPGet Function getFile() : 4D.OutgoingMessage :::note -A 4D.OutgoingMessage object is a [non-sharable](../Concepts/shared.md) object. +Un objet 4D.OutgoingMessage est [non partageable](../Concepts/shared.md). ::: @@ -61,16 +61,16 @@ A 4D.OutgoingMessage object is a [non-sharable](../Concepts/shared.md) object. #### Description -The `.body` property contains the outgoing message body. The following data types are supported in the `.body` property: +La propriété `.body` contient le body du message sortant. Les types de données suivants sont pris en charge dans la propriété `.body` : - text - blob - object - image -The `.body` property is read-write. +La propriété `.body` est en lecture-écriture. -You can also set the `.body` property using the [`setBody()`](#setbody) function, in which case the `content-type` header is automatically set. +Vous pouvez également définir la propriété `.body` en utilisant la fonction [`setBody()`](#setbody), auquel cas l'en-tête `content-type` est automatiquement défini. @@ -82,9 +82,9 @@ You can also set the `.body` property using the [`setBody()`](#setbody) function #### Description -The `.headers` property contains the current headers of the outgoing message as key/value pairs. +La propriété `.headers` contient les headers courants du message sortant sous forme de paires clé/valeur. -The `.headers` property is read-only. To set a header, use the [`setHeader()`](#setheader) function. +La propriété `.headers` est en lecture seule. Pour définir un header, utilisez la fonction [`setHeader()`](#setheader). @@ -96,31 +96,31 @@ The `.headers` property is read-only. To set a header, use the [`setHeader()`](# -| Paramètres | Type | | Description | -| ---------- | ---- | -- | ---------------------------- | -| body | any | -> | Body of the outgoing message | +| Paramètres | Type | | Description | +| ---------- | ---- | -- | ----------------------- | +| body | any | -> | Body du message sortant | #### Description -The `.setBody()` function sets the outgoing message *body*. +La fonction `.setBody()` définit le *body* du message sortant. -The following data types are supported in the *body*: +Les types de données suivants sont pris en charge dans la propriété *body* : - Text - Blob - Object - Image -When this function is used, the content-type header is automatically set depending on the *body* type: +Lorsque cette fonction est utilisée, le header content-type est automatiquement défini en fonction du type de *body* : -- Content-Type:text/plain if the body is a Text -- Content-Type:application/octet-stream if body is a Blob -- Content-Type:application/json if body is an Object -- Content-Type:image/jpeg, image/gif... if body is an Image +- Content-Type:text/plain si le body est un texte +- Content-Type:application/octet-stream si le body est un Blob +- Content-Type:application/json si le body est un objet +- Content-Type:image/jpeg, image/gif... si le body est une image -If *body* is not of a supported value type, an error is returned. +Si *body* n'est pas un type de valeur pris en charge, une erreur est renvoyée. @@ -132,22 +132,22 @@ If *body* is not of a supported value type, an error is returned. -| Paramètres | Type | | Description | -| ---------- | ---- | -- | ---------------------------- | -| key | Text | -> | Header property to set | -| value | Text | -> | Value of the header property | +| Paramètres | Type | | Description | +| ---------- | ---- | -- | -------------------------------- | +| key | Text | -> | Propriété de header à définir | +| value | Text | -> | Valeur de la propriété de header | #### Description -The `.setHeader()` function sets the outgoing message header *key* with the provided *value*. If both parameters are not Text values, an error is raised. +La fonction `.setHeader()` fixe la clé *key* du header du message sortant avec la *value* fournie. Si les deux paramètres ne sont pas des valeurs texte, une erreur est générée. -When returning a 4D.OutgoingMessage object instance, 4D automatically sets some headers (e.g. `Set-Cookie` with `WASID4D=...` and `4DSID__ProjectName_=....`). +Lorsqu'il renvoie une instance d'objet 4D.OutgoingMessage, 4D définit automatiquement certains headers (par exemple `Set-Cookie` avec `WASID4D=...` et `4DSID__ProjectName_=....`). :::note -If you set a *value* for the "Content-Type" header *key*, make sure you call this function after the call to [`setBody()`](#setbody), because `setBody()` automatically fills this header. For a list of "Content-Type" header values, please refer to the [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md) documentation. +Si vous définissez une *value* pour la *key* du header "Content-Type", assurez-vous d'appeler cette fonction après l'appel à [`setBody()`](#setbody), car `setBody()` remplit automatiquement ce header. Pour une liste des valeurs du header "Content-Type", veuillez vous référer à la documentation de [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md). ::: @@ -161,19 +161,19 @@ If you set a *value* for the "Content-Type" header *key*, make sure you call thi -| Paramètres | Type | | Description | -| ---------- | ------- | -- | ------------- | -| status | Integer | -> | Status to set | +| Paramètres | Type | | Description | +| ---------- | ------- | -- | ---------------- | +| status | Integer | -> | Statut à définir | #### Description -The `.setStatus()` function sets the `status` property with the given *status*. +La fonction `.setStatus()` définit la propriété `status` à la valeur *status* passée. -If *status* is not an integer value, an error is raised. +Si *status* n'est pas un nombre entier, une erreur est générée. -For a list of HTTP status codes, please refer the [HTTP status code list on Wikipedia](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes). +Pour une liste des codes de statut HTTP, veuillez consulter la [liste des codes de statut HTTP](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes) sur Wikipedia. @@ -185,6 +185,6 @@ For a list of HTTP status codes, please refer the [HTTP status code list on Wiki #### Description -The `.status` property contains the current status of the outgoing message. This property can be set using the [`setStatus()`](setstatus) function. +La propriété `.status` contient le statut courant du message sortant. Cette propriété peut être définie à l'aide de la fonction [`setStatus()`](setstatus). diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/basics.md b/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/basics.md index 4820821a90195d..7ed049c0250231 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/basics.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/basics.md @@ -70,27 +70,31 @@ La fenêtre d'erreur de syntaxe propose plusieurs options : - **Continuer** : L'exécution se poursuit. La ligne contenant l'erreur peut être partiellement exécutée, selon l'endroit où se trouve l'erreur. Continuez avec prudence : l'erreur peut empêcher le reste de votre méthode de s'exécuter correctement. Nous vous recommandons de cliquer sur **Continuer** uniquement si l'erreur se trouve dans un appel trivial (tel que `SET WINDOW TITLE`) qui n'empêche pas d'exécuter et de tester le reste de votre code. -> Astuce : pour ignorer une erreur qui se répète (par exemple, dans les boucles), vous pouvez transformer le bouton **Continuer** en bouton **Ignorer**. Maintenez la touche **Alt** (Windows) ou **Option** (macOS) enfoncée et cliquez sur le bouton **Continuer** la première fois qu'il apparaît. L'étiquette du bouton devient **Ignorer** si la boîte de dialogue est appelée à nouveau pour la même erreur. +:::tip -- **Abandonner** : Stoppe l'exécution de la méthode et revient à l'état antérieur au début de l'exécution de la méthode : +To ignore an error that occurs repeatedly (for example, in loops), you can turn the **Continue** button into an **Ignore** button. Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. + +::: + +- **Abort**: Stops method execution and returns to the state before the method started executing: - Si une méthode formulaire ou méthode objet s'exécute en réponse à un événement, elle est arrêtée et vous revenez au formulaire. - Si la méthode est exécutée à partir de l'environnement de l'application, vous revenez à cet environnement. -- **Copier** : Copie les informations de débogage dans le presse-papiers. L'info décrit l'environnement interne de l'erreur (numéro, composant interne, etc.). Elles sont formatées sous forme de texte tabulé. +- **Copy**: Copies the debugging information into the clipboard. L'info décrit l'environnement interne de l'erreur (numéro, composant interne, etc.). Elles sont formatées sous forme de texte tabulé. -- **Enregistrer...** : Enregistre le contenu de la fenêtre d'erreur syntaxique et de la chaîne d'appel dans un fichier `.txt`. +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## Débogueur -Une erreur courante des débutants en matière de détection des erreurs consiste à cliquer sur **Abandonner** dans la fenêtre d'erreur de syntaxe, à revenir à l'éditeur de code et à essayer de comprendre ce qui se passe en regardant le code. Ne faites pas ça ! Vous économiserez beaucoup de temps et d'énergie en utilisant toujours le **Débogueur**. +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. Ne faites pas ça ! You will save plenty of time and energy by always using the [**Debugger**](debugger.md). Le débogueur vous permet d'avancer lentement dans les méthodes. Il affiche toutes les informations dont vous avez besoin pour comprendre pourquoi une erreur s'est produite. Une fois que vous avez ces informations, vous savez comment corriger l'erreur. -Une autre raison d'utiliser le débogueur est le développement du code. Il peut arriver que vous écriviez un algorithme plus complexe que d'habitude. Malgré tous les sentiments d'accomplissement, vous ne pouvez pas être totalement sûr que votre codage est 100% correct. Au lieu de l'exécuter "à l'aveugle", vous pouvez utiliser la commande `TRACE` au début de votre code, puis l'exécuter pas à pas pour garder un œil sur ce qui se passe. +Une autre raison d'utiliser le débogueur est le développement du code. Il peut arriver que vous écriviez un algorithme plus complexe que d'habitude. Malgré tous les sentiments d'accomplissement, vous ne pouvez pas être totalement sûr que votre codage est 100% correct. Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## Ruptures/sauts -Dans le processus de débogage, vous pouvez avoir besoin de sauter le traçage de certaines parties du code jusqu'à une certaine ligne. Ou bien, vous pouvez vouloir tracer le code lorsqu'une expression donnée a une certaine valeur (par exemple "$myVar > 1000"), ou chaque fois qu'une commande 4D spécifique est appelée. +Dans le processus de débogage, vous pouvez avoir besoin de sauter le traçage de certaines parties du code jusqu'à une certaine ligne. Or, you may want to trace the code when a given expression has a certain value (e.g. `$myVar > 1000`), or every time a specific 4D command is called. -Ces besoins sont couverts par les fonctions **points d'arrêt** et **points d'arrêt sur commande**. Ils peuvent être configurés à partir de l'éditeur de code, du débogueur ou de l'explorateur d'exécution. +These needs are covered by **breakpoints** and **command catching** features. Ils peuvent être configurés à partir de l'éditeur de code, du débogueur ou de l'explorateur d'exécution. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md b/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md index f87c9526e9a540..8abe2a01da77fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md @@ -15,7 +15,7 @@ Les points d'arrêt sur commande vous permettent de commencer à tracer l'exécu Pour créer un point d'arrêt, cliquez dans la marge gauche de la fenêtre d'évaluation du code du débogueur ou dans l'éditeur de code. -Dans l'exemple suivant, un point d'arrêt (la puce rouge) a été défini dans le débogueur, sur la ligne `If ($in.dataClass#Null)` : +In the following example, a break point (the red bullet) has been set, in the debugger, on the line `If (Value type(request.reponse.headers...`: ![break-point](../assets/en/Debugging/break.png) diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugger.md b/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugger.md index b2b0ac4d3aad44..aaccb84763d525 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugger.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugger.md @@ -18,7 +18,7 @@ If you are used to coding with **VS Code**, you can also use this editor to debu Il existe plusieurs façons d'afficher le débogueur : - En cliquant sur le bouton **Trace** dans [la fenêtre des erreurs de syntaxe](basics.md#syntax-error-window) -- En utilisant la commande [`TRACE`](https://doc.4d.com/4dv19/help/command/fr/page157.html) +- Using the [`TRACE`](../commands-legacy/trace.md) command - En cliquant sur le bouton **Debug** dans la fenêtre d'exécution de méthode ou en sélectionnant le bouton **Run and debug...** dans l'éditeur de code - En utilisant **Alt+Shift+Clic** droit (Windows) ou **Ctrl+Option+Cmd+Clic (macOS)** pendant l'exécution d'une méthode, puis en sélectionnant le processus à suivre dans le menu contextuel : @@ -29,8 +29,8 @@ Il existe plusieurs façons d'afficher le débogueur : Lorsqu'il est appelé, la fenêtre du débogueur fournit le nom de la méthode ou de la fonction de classe que vous êtes en train de tracer, ainsi que l'action qui a provoqué l'apparition initiale de la fenêtre du débogueur. Par exemple, dans la fenêtre du débogueur ci-dessus : -- _Clients_BuildLogo_ est la méthode en cours de traçage -- La fenêtre du débogueur s'est affichée parce qu'elle a détecté un appel à la commande `C_PICTURE`, qui faisait partie des commandes à identifier +- _drop_ is the method being traced +- The debugger window appeared because of a break point. L'affichage d'une nouvelle fenêtre de débogage utilise la même configuration que la dernière fenêtre affichée dans la même session. Si vous exécutez plusieurs process utilisateur, vous pouvez les tracer indépendamment et avoir une fenêtre de débogage ouverte pour chaque process. @@ -52,39 +52,43 @@ La barre d'outils du débogueur comprend plusieurs boutons, associés aux raccou ![execution-control-toolbar-buttons](../assets/en/Debugging/executionToolbarButtons.png) -> Les raccourcis par défaut peuvent être personnalisés dans la page Raccourcis de la boîte de dialogue Préférences. +:::note + +Default shortcuts can be customized in the [Shortcuts Page](../Preferences/shortcuts.md) of the Preferences dialog box. + +::: #### Reprendre exécution Arrêt du mode Trace et reprise du cours normal de l’exécution de la méthode. -> La combinaison **Maj**+**F5** ou **Maj**+clic sur le bouton **Reprendre exécution** provoque la reprise de l’exécution avec désactivation de tous les appels à TRACE suivants dans le process courant. avec désactivation de tous les appels à TRACE suivants dans le process courant. +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. avec désactivation de tous les appels à TRACE suivants dans le process courant. #### Exécuter pas à pas Exécute la ligne de méthode en cours, indiquée par le compteur de programme (la flèche jaune). Le débogueur passe à la ligne suivante. -Le bouton Exécuter pas à pas ne passe pas dans les sous-routines et les fonctions. Il reste au niveau de la méthode que vous êtes en train de tracer. Si vous souhaitez également tracer les appels aux sous-routines et aux fonctions, utilisez le bouton **Pas à pas détaillé**. +Le bouton Exécuter pas à pas ne passe pas dans les sous-routines et les fonctions. Il reste au niveau de la méthode que vous êtes en train de tracer. If you want to also trace subroutines and functions calls, use the **Step Into** button. -Dans le débogage distant, lors de l'exécution de la méthode sur le serveur, la méthode parente est appelée après l'exécution de la dernière ligne de méthode enfant. Si la méthode parente est exécutée du côté distant, le bouton agit de la même manière que le bouton **Reprendre exécution**. +Dans le débogage distant, lors de l'exécution de la méthode sur le serveur, la méthode parente est appelée après l'exécution de la dernière ligne de méthode enfant. If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### Exécuter pas à pas détaillé Lors de l’exécution d’une ligne qui appelle une autre méthode (sous-routine ou fonction), ce bouton provoque l’affichage de la méthode appelée dans la fenêtre du débogueur, et permet au développeur de passer pas à pas dans cette méthode. -La nouvelle méthode devient la méthode courante (en haut) dans la sous-fenêtre Fenêtre de [chaîne d'appel](#call-chain-pane) de la fenêtre du débogueur. +The new method becomes the current (top) method in the [Call Chain Pane](#call-chain-pane) of the Debugger window. -Lors de l’exécution d’une ligne qui n’appelle pas une autre méthode, ce bouton se comporte comme le bouton **Exécuter pas à pas**. +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. -#### Exécuter et sortir +#### Step Out -Si vous tracez des sous-routines et des fonctions, cliquer sur ce bouton vous permet d'exécuter l’intégralité de la méthode qui est en train d'être tracée, et de revenir à la méthode appelante. La fenêtre du débogueur retourne à la méthode précédente dans la chaîne d’appel. Si la méthode courante est la dernière méthode de la chaîne d’appel, la fenêtre du débogueur se referme. +If you are tracing subroutines and functions, clicking on this button allows you to execute the entire method currently being traced and to step back to the caller method. The Debugger window is brought back to the previous method in the call chain. If the current method is the last method in the call chain, the Debugger window is closed. -Dans le débogage distant, lors de l'exécution de la dernière ligne de la méthode, si la méthode est exécutée sur le serveur, la méthode parente est appelée. Si la méthode parente est exécutée du côté distant, le bouton agit de la même manière que le bouton Reprendre exécution. +In remote debugging, on execution of the last line of the method, if the method is executed on the server, the parent method is called. If the parent method is executed on the remote side, the button acts in the same manner as the No Trace button. -#### Pas à pas nouveau process +#### Step Into Process -Lors de l’exécution d’une ligne qui crée un nouveau process (par exemple qui appelle la commande New process), ce bouton ouvre une nouvelle fenêtre du débogueur qui vous permet de tracer la méthode de gestion du process que vous venez de créer. Lors de l’exécution d’une ligne qui ne crée pas de nouveau process, ce bouton se comporte comme le bouton Exécuter pas à pas. +On execution of a line that creates a new process (i.e., calling the New process command), this button opens a new Debugger window that allows you to trace the process method of the newly created process. On execution of a line that does not creates a new process, this button acts in the same manner as the Step Over button. #### Stopper exécution @@ -95,9 +99,9 @@ La méthode s’arrête et vous retournez là où vous étiez avant son exécuti #### Stopper et éditer -La méthode qui s'exécute lorsque vous cliquez sur ce bouton s'ouvre dans l'éditeur de code. +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Conseil** : Utilisez ce bouton lorsque vous connaissez les modifications à apporter à votre code, et le moment où elles doivent être effectuées pour pouvoir poursuivre le test de vos méthodes. Une fois vos modifications effectuées, ré-exécutez la méthode. +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. Une fois vos modifications effectuées, ré-exécutez la méthode. #### Editer méthode @@ -105,18 +109,20 @@ La méthode qui s'exécute au moment où vous cliquez sur le bouton Éditer s'ou Si vous utilisez ce bouton pour modifier une méthode, les modifications ne seront effectives que la prochaine fois qu'elle sera exécutée. -> **Astuce :** Utilisez ce bouton lorsque vous savez quels changements sont requis dans votre code et quand ils n'interfèrent pas avec le reste du code à exécuter ou à tracer. +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. -#### Enregistrer paramètres +## Auto-saving -Ce bouton permet de sauvegarder la configuration courante de la fenêtre du débogueur (taille et position de la fenêtre, emplacement des lignes de division et contenu de la zone d’évaluation des expressions). Elle sera alors utilisée par défaut à chaque ouverture de la base. Cela inclut : +The current state of the debugger window is automatically saved in the project. Cela inclut : -- la taille et la position de la fenêtre -- la position des lignes de division et le contenu de la zone qui évalue les expressions +- the size and position of the window, +- the position of the division lines, +- the [display mode](#display-mode), +- the expressions currently displayed in the custom watch pane expressions. By default, expressions are saved with the current method or function. You can [**pin an expression**](#pin-an-expression) to keep it displayed in all contexts. -Ces paramétrages sont stockés dans le projet. +The **Default window configuration** button restores the default position and size of the current window (including the division lines and the window itself). -Cette action n'est pas disponible en mode débogueur distant (voir [Débogage depuis des machines distantes](./debugging-remote)). +![factory-settings-button](../assets/en/Debugging/debugger-factory.png) ## Fenêtre d'expression @@ -134,9 +140,9 @@ La colonne **Expression** affiche les noms des objets et des expressions. La col ### Liste Expression -#### Objets courants +#### Line Expressions -Ce thème vous permet de garder une trace des valeurs des objets ou des expressions : +This theme lets you keep track of the values of expressions: - utilisé(e) s dans la ligne de code à exécuter (celle qui est indiquée par le compteur de programme — la flèche jaune dans la [Fenêtre d'évaluation du code](#fenetre-devaluation-du-code)), - utilisé(e) s dans la ligne de code précédente @@ -294,8 +300,9 @@ You can also use the [Call chain](https://doc.4d.com/4dv19/help/command/en/page1 Le fenêtre d'évaluation sert à évaluer les expressions. Elle est similaire au [fenêtre Expression](#fenetre-dexpression), sauf que vous décidez quelles expressions sont affichées. Tout type d'expression peut être évalué : -- champ - variable +- object and object property +- champ - pointer - calcul - commande 4D @@ -304,39 +311,70 @@ Le fenêtre d'évaluation sert à évaluer les expressions. Elle est similaire a ![custom-Watch-pane](../assets/en/Debugging/custom-watch-pane.png) -Vous pouvez évaluer toute expression qui peut être affichée sous forme de texte. Ceci n'inclut pas les champs et les variables image et BLOB. Pour afficher le contenu du BLOB, vous pouvez utiliser les commandes BLOB, telles que [BLOB to text](https://doc.4d.com/4dv20/help/command/fr/page555.html). +Vous pouvez évaluer toute expression qui peut être affichée sous forme de texte. Ceci n'inclut pas les champs et les variables image et BLOB. To display BLOB contents, you can use BLOB commands, such as [BLOB to text](../commands-legacy/blob-to-text.md). + +### Display mode + +You select the display mode to be used for all debugger windows using the **Display** option of the Custom Watch pane's [contextual menu](#contextual-menu). + +![custom-Watch-pane](../assets/en/Debugging/custom-watch-pane-display-menu.png) + +Les options suivantes sont disponibles : + +- **Local variables**: Displays and evaluates automatically local variables as soon as they are initialized in the running source code. +- **Line Expressions**: Displays and evaluates automatically the same contents as the [Line Expressions](#line-expressions) item of the Expression List. +- **Expressions**: Only displays custom expressions that you have entered manually. Custom expressions have a specific blue icon ![custom-expression-icon](../assets/en/Debugging/custom-expression-icon.png). + +:::note + +Whatever the display mode, you can add custom expressions at any moment. + +::: ### Gestion des expressions +You can enter any expression to evaluate. A custom expression is only displayed in the current debugger window, except if you [pin it](#pin-an-expression). + Il y a plusieurs façons d'ajouter des expressions à la liste : - Glisser et déposer un objet ou une expression depuis la fenêtre d'expression ou la fenêtre de chaîne d'appel - Sélectionner une expression dans le volet [source](#source-code-pane) et appuyer sur **ctrl+D** (Windows) ou **cmd+D** (macOS) - Double-cliquer quelque part dans l'espace vide du volet (ajoute une expression avec un nom de paramètre fictif que vous pouvez modifier) - -Vous pouvez entrer n'importe quelle formule qui renvoie un résultat. +- Select a [display option](#display-mode) that automatically inserts expressions. +- Select **New Expression...** in the Custom Watch pane's [contextual menu](#contextual-menu) to add an expression using the **Formula Editor**. Vous pouvez entrer n'importe quelle formule qui renvoie un résultat. Pour modifier une expression, cliquez dessus pour la sélectionner, puis cliquez à nouveau ou appuyez sur **Enter** sur votre clavier. -Pour supprimer une expression, cliquez dessus pour la sélectionner, puis appuyez sur **Backspace** ou **Delete** sur votre clavier. +To delete a custom expression, click on it to select it, then press **Backspace** or **Delete** on your keyboard, or click on the **x** icon. -> **Attention :** Soyez prudent lorsque vous évaluez une expression 4D modifiant la valeur d'une des variables système (par exemple, la variable OK) car l'exécution du reste de la méthode peut être altérée. +:::warning -### Menu contextuel +Be careful when you evaluate a 4D expression modifying the value of one of the System Variables (for instance, the OK variable) because the execution of the rest of the method may be altered. -Le menu contextuel de la fenêtre vous donne accès à l'éditeur de formule 4D et à d'autres options : +::: -![custom-watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-context-menu.png) +### Pinning an expression + +You can click on the pushpin icon to pin an expression: + +![pinning-expression](../assets/en/Debugging/pin-expression.png) -**Nouvelle expression**: insère une nouvelle expression et affiche l'Éditeur de formules 4D. +The expression will then be displayed in all debugger windows. -![custom-Watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-formula-editor.png) +### Menu contextuel + +The Custom Watch Pane’s menu is available on a contextual click or using the ![menu](../assets/en/Debugging/custom-watch-pane-menu.png) icon: + +![custom-watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-context-menu.png) -Pour plus d'informations sur l'Éditeur de formules, consultez le [manuel Mode Développement](https://doc.4d.com/4Dv19/4D/19/4D-Design-Reference.100-5416591.en.html). +- **Display**: Selects the [display mode](#display-mode) to be used for all debugger windows. +- **New Expression...**: Inserts a new expression and displays the 4D Formula Editor. + ![custom-Watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-formula-editor.png) + For more information on the Formula Editor, see the [4D Design Reference manual](https://doc.4d.com/4Dv20/4D/20.2/Description-of-formula-editor.300-6750169.en.html). -- **Insérer commande** : Raccourci pour insérer une commande 4D en tant qu'expression. -- **Supprimer tout** : Supprime toutes les expressions de la fenêtre d"évaluation. -- **Expressions par défaut** : Copie la liste des expressions de la fenêtre d'expression. +* **Insert Command...**: Displays a menu allowing to insert a 4D command as a new expression. +* **Supprimer tout** : Supprime toutes les expressions de la fenêtre d"évaluation. +* **Standard Expressions**: Copies the Watch Pane's list of expressions as custom expressions. > Cette option n'est pas disponible en [mode débogueur distant](debugging-remote.md). @@ -353,6 +391,12 @@ Ce panneau affiche le code source de la méthode ou de la fonction en cours de t Cette zone vous permet également d'ajouter ou de supprimer des [**points d'arrêt**](breakpoints.md). +### Prototype + +The prototype of the currently executed method or function in the Call chain is displayed on the top of the pane: + +![prototype](../assets/en/Debugging/prototype.png) + ### Infobulle Passez votre pointeur sur une expression pour afficher une info-bulle qui indique : @@ -410,12 +454,9 @@ Le menu contextuel de la Fenêtre d'évaluation du code donne accès à plusieur ![source-code-pane-context-window](../assets/en/Debugging/sourceCodePaneContext.png) -- **Aller à définition** : permet d’accéder à la définition de l’objet sélectionné. Cette commande est disponible avec les objets suivants : - - _Méthode projet :_ affiche le contenu de la méthode dans une nouvelle fenêtre de l'éditeur de code - - _Champ_ : affiche les propriétés du champ dans l’inspecteur de la fenêtre de structure - - _table_ : affiche les propriétés de la table dans l’inspecteur de la fenêtre de structure - - _formulaire_ : affiche le formulaire dans l’éditeur de formulaires - - _variable_ (locale, process, interprocess ou paramètre $n) : affiche la ligne de déclaration de la variable dans la méthode courante ou parmi les méthodes compilateur +- **Show documentation**: Opens the documentation for the target element. Cette commande est disponible avec les objets suivants : + - _Project methods_, _user classes_: Selects the method in the Explorer and switches to the documentation tab + - _4D commands, functions, class names:_ Displays the online documentation. - **Chercher les références** (cette fonction est également accessible depuis l’Editeur de code) : rechercher tous le projet (méthodes et formulaires) dans lesquels l’élément courant de la méthode est référencé. L’élément courant est l’élément sélectionné ou l’élément dans lequel se trouve le curseur. Il peut s’agir d’un nom de champ, de variable, de commande, d’une chaîne, etc. Le résultat de la recherche est affiché dans une nouvelle fenêtre de résultat standard. - **Copier** : copie standard de l'expression sélectionnée dans le conteneur de données. - **Copier dans la fenêtre d'expression** : copie l'expression sélectionnée dans la Fenêtre d'évaluation. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md b/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md index 6d3924989290ef..0187c1f42bda1f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md @@ -20,14 +20,12 @@ Un seul débogueur peut déboguer une application 4D Server à un moment donné. - le débogueur local de 4D Server (par défaut) - si le serveur ne tourne pas en mode headless. - le débogueur d'un client 4D distant - si la session distante a accès au mode Développement. - the [Qodly debugger](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server) on 4D Server - if the server allows access to Qodly Studio. -- the VS Code debugger, provided you installed the [4D-Debugger](https://github.com/4d/4D-Debugger-VSCode) extension. - -::: +- the **VS Code** debugger, provided you installed the [4D-Debugger](https://github.com/4d/4D-Debugger-VSCode) extension. Le débogueur associé est appelé chaque fois que 4D Server rencontre : - un point d'arrêt -- une commande `TRACE` +- a `TRACE` command - un point d'arrêt sur commande - une erreur @@ -35,7 +33,7 @@ A noter que les messages d'erreur sont envoyés à la machine du débogueur asso A noter que : -- Le code exécuté dans la méthode base `On Server Startup Database` ne peut pas être débogué à distance. Il ne peut être débogué que du côté serveur +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. Il ne peut être débogué que du côté serveur - Si aucun débogueur n'est associé, le code en cours d'exécution n'est pas arrêté par les commandes de débogage ## Associer le débogueur @@ -51,20 +49,20 @@ Vous pouvez associer le débogueur à tout client 4D distant autorisé à se con Pour associer le débogueur à un client 4D distant : -1. Dans la barre de menus de 4D Server, sélectionnez **Edition** > **Détacher le débogueur** afin que le débogueur devienne disponible pour les machines distantes (cette étape est inutile si le 4D Server tourne en mode headless). -2. Dans un client 4D distant connecté au serveur, sélectionnez **Exécuter** > **Attacher le débogueur distant** +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -Si le rattachement est accepté (voir [Demandes d'association rejetées](#demandes-dassociation-rejetees)), la commande de menu devient **Détacher le débogueur distant**. +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. Le débogueur est alors attaché au client 4D distant : - jusqu'à la fin de la session utilisateur -- jusqu'à ce que vous sélectionniez `Détacher le débogueur distant` +- until you select `Detach Remote Debugger` Pour rattacher le débogueur au serveur : -1. Sur le client 4D distant qui est associé au débogueur, sélectionnez **Exécution** > **Détacher le débogueur distant**. -2. Dans la barre de menus de 4D Server, sélectionnez **Édition** > **Attacher le débogueur**. +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > Lorsque le débogueur est attaché au serveur (par défaut), tous les process du serveur sont automatiquement exécutés en mode coopératif pour permettre le débogage. Cela peut avoir un impact significatif sur les performances. Lorsque vous n'avez pas besoin de déboguer sur la machine du serveur, il est recommandé de détacher le débogueur et de l'attacher à une machine distante si nécessaire. @@ -72,13 +70,13 @@ Pour rattacher le débogueur au serveur : 4D vous permet d'associer le débogueur à un client 4D distant ou au serveur automatiquement au démarrage : -- Sur le serveur (s'il n'est pas headless), cette option s'appelle **Attacher le débogueur au démarrage**. Lorsque le serveur est démarré, il associe automatiquement le débogueur (par défaut). +- On the server (if not headless), this option is named **Attach Debugger At Startup**. Lorsque le serveur est démarré, il associe automatiquement le débogueur (par défaut). -> **Avertissement** : Si cette option est sélectionnée pour un serveur qui est ensuite lancé en mode headless, le débogueur ne sera pas disponible pour ce serveur. +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- Sur un client 4D distant, cette option s'appelle **Attacher le débogueur distant au démarrage**. Lorsqu'elle est sélectionnée, le client 4D distant tente automatiquement d'attacher le débogueur distant à chaque connexion ultérieure à la même base de données 4D Server. Si l'association est acceptée (voir [Demandes d'association rejetées](#demandes-dassociation-rejetees)), le débogueur distant est automatiquement attaché au client 4D distant et l'option **Détacher le débogueur distant** s'affiche. +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. Lorsqu'elle est sélectionnée, le client 4D distant tente automatiquement d'attacher le débogueur distant à chaque connexion ultérieure à la même base de données 4D Server. If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. -> Ce paramètre est appliqué par projet et est stocké localement dans le fichier [`.4DPreferences`](Project/architecture.md#userpreferencesusername). +> This setting is applied per project and is stored locally in the [`.4DPreferences`](Project/architecture.md#userpreferencesusername) file. ## Demandes d'association rejetées @@ -92,5 +90,5 @@ Si une machine tente d'attacher le débogueur alors qu'il est déjà attaché, l L'attachement du débogueur dans ce cas nécessite que : -- le débogueur attaché soit détaché du serveur ou du client distant 4D en utilisant respectivement la commande de menu **Détacher le débogueur** ou **Détacher le débogueur distant** +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - la session du client distant 4D associée soit fermée. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/FormObjects/text.md b/i18n/fr/docusaurus-plugin-content-docs/current/FormObjects/text.md index 895ccdb74c67be..73b289da3e7c02 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/FormObjects/text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/FormObjects/text.md @@ -47,4 +47,4 @@ Une fois qu’un texte a été orienté, il reste possible de modifier sa taille
-[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color(properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Notes/updates.md b/i18n/fr/docusaurus-plugin-content-docs/current/Notes/updates.md index bd0a8e87df439c..ac619c8423c036 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/Notes/updates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/Notes/updates.md @@ -13,9 +13,12 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R - Expressions used in [form object properties](../FormObjects/properties_Reference.md) now benefit from syntax checking in the [Property list](../FormEditor/formEditor.md#property-list) and in the [Compiler](../Project/compiler.md#check-syntax). - You can [associate a class to a form](../FormEditor/properties_FormProperties.md#form-class) to enable code type-ahead and automatic instantiation of form data when using the [`Form`](../commands/form.md) command. - Support of [standalone sessions](../API/SessionClass.md) to simplify local coding for client/server applications. +- [4D debugger](../Debugging/debugger.md): new design and auto-save, display mode features. - [New built component architecture](../Desktop/building.md#build-component) for a better compliance with Apple notarization guidelines. +- Dependencies: Use the Dependency manager to [check for new versions](../Project/components.md#checking-for-new-versions) and [update](../Project/components.md#updating-dependencies) GitHub components. - Langage 4D : - Modified commands: [`FORM EDIT`](../commands/form-edit.md) + - [`.sign()`](../API/CryptoKeyClass.md#sign) and [`.verify()`](../API/CryptoKeyClass.md#verify) functions of the [4D.CryptoKey class](../API/CryptoKeyClass.md) support Blob in the _message_ parameter. - [**Fixed bug list**](https://bugs.4d.fr/fixedbugslist?version=20_R8): list of all bugs that have been fixed in 4D 20 R8. #### Changements de comportement @@ -50,6 +53,7 @@ Lisez [**Les nouveautés de 4D 20 R7**](https://blog.4d.com/fr-whats-new-in-4d-2 - Les documentations du [Langage 4D](../commands/command-index.md) et du [Langage 4D Write Pro](../WritePro/commands/command-index.md) sont maintenant entièrement disponibles sur developer.4d.com. Découvrez toutes les nouvelles fonctionnalités et les modifications concernant ces documentations dans cette release note. - The [`File`](../commands/file.md) command (as well as [`4D.File.new()`](../API/FileClass.md#4dfilenew)) is stricter when it comes to checking the syntax of the _path_ supplied as a parameter. +- The **describe** action [permission](../ORDA/privileges.md#permission-actions) has been removed from available actions. Access to [`/rest/$catalog`](../REST/$catalog.md) urls is no longer controlled. Session _describe_ privileges are now ignored. ## 4D 20 R6 diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/glossary.md b/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/glossary.md index 9e1fedd3971b43..85aa8089985a8b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/glossary.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/glossary.md @@ -9,7 +9,7 @@ title: Glossaire ## Action -Chaque action qui peut être effectuée sur une [ressource](#resource). Les actions disponibles sont : create, read, update, drop, execute, promote, et describe. +Chaque action qui peut être effectuée sur une [ressource](#resource). Available actions are: create, read, update, drop, execute, and promote. ## Attribut @@ -18,7 +18,7 @@ Un attribut est la plus petite cellule de stockage dans une base de données rel - Dans un objet dataclass, chaque propriété est un attribut de dataclass qui correspond à un champ dans la table correspondante (même nom et même type). - Dans un objet entity, les attributs d'entités sont des propriétés qui contiennent les valeurs pour les attributs du datastore correspondants. -> Les _attributs_ et les _propriétés_ sont des concepts similaires. "Attribut" est utilisé pour désigner les propriétés de la dataclass qui stockent les données, tandis que "propriété" est plus générique et définit une donnée stockée dans un objet. +> \> Attributes and properties are similar concepts. "Attribut" est utilisé pour désigner les propriétés de la dataclass qui stockent les données, tandis que "propriété" est plus générique et définit une donnée stockée dans un objet. ## AttributePath @@ -156,7 +156,7 @@ La possibilité de lancer une ou plusieurs [actions](#actions) sur des [ressourc Voir [Attribut](#attribute). -> \> Attributes and properties are similar concepts. "Attribut" est utilisé pour désigner les propriétés de la dataclass qui stockent les données, tandis que "propriété" est plus générique et définit une donnée stockée dans un objet. +> Les _attributs_ et les _propriétés_ sont des concepts similaires. "Attribut" est utilisé pour désigner les propriétés de la dataclass qui stockent les données, tandis que "propriété" est plus générique et définit une donnée stockée dans un objet. ## PropertyPath diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/privileges.md b/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/privileges.md index ff4773add713d4..cbb05f87be0a30 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/privileges.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/privileges.md @@ -49,15 +49,14 @@ Les permissions contrôlent l'accès aux objets ou fonctions du datastore. Si vo Les actions disponibles sont liées à la ressource cible. -| Actions | datastore | dataclass | attribut | fonction du modèle de données ou fonction singleton | -| ------------ | ---------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **create** | Créer une entité dans n'importe quelle dataclass | Créer une entité dans cette dataclass | Créer une entité avec une valeur différente de la valeur par défaut autorisée pour cet attribut (ignoré pour les attributs alias). | n/a | -| **read** | Lire les attributs de n'importe quelle dataclass | Lire les attributs de cette dataclass | Lire ce contenu d'attribut | n/a | -| **update** | Mettre à jour les attributs dans n'importe quelle dataclass. | Mettre à jour les attributs de cette dataclass. | Mettre à jour le contenu de cet attribut (ignoré pour les attributs alias). | n/a | -| **drop** | Supprimer des données dans n'importe quelle dataclass. | Supprimer des données dans cette dataclass. | Supprimer une valeur non nulle pour cet attribut (sauf pour les attributs alias et calculés). | n/a | -| **execute** | Exécuter n'importe quelle fonction du projet (datastore, dataclass, entity selection, entity) | Exécuter n'importe quelle fonction de dataclass. Les fonctions de dataclass, d'entité et d'entity selection sont considérées comme des fonctions de dataclass | n/a | Exécuter cette fonction | -| **describe** | Toutes les dataclass sont disponibles dans l'API /rest/$catalog | Cette dataclass est disponible dans l'API /rest/$catalog | Cet attribut est disponible dans l'API /rest/$catalog. | Cette fonction de dataclass est disponible dans l'API /rest/$catalog (non disponible avec les singletons) | -| **promote** | n/a | n/a | n/a | Associe un privilège donné lors de l'exécution de la fonction. Le privilège est temporairement ajouté à la session et supprimé à la fin de l'exécution de la fonction. Par mesure de sécurité, seul le process exécutant la fonction reçoit le privilège, et non toute la session. | +| Actions | datastore | dataclass | attribut | fonction du modèle de données ou fonction singleton | +| ----------- | ---------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **create** | Créer une entité dans n'importe quelle dataclass | Créer une entité dans cette dataclass | Créer une entité avec une valeur différente de la valeur par défaut autorisée pour cet attribut (ignoré pour les attributs alias). | n/a | +| **read** | Lire les attributs de n'importe quelle dataclass | Lire les attributs de cette dataclass | Lire ce contenu d'attribut | n/a | +| **update** | Mettre à jour les attributs dans n'importe quelle dataclass. | Mettre à jour les attributs de cette dataclass. | Mettre à jour le contenu de cet attribut (ignoré pour les attributs alias). | n/a | +| **drop** | Supprimer des données dans n'importe quelle dataclass. | Supprimer des données dans cette dataclass. | Supprimer une valeur non nulle pour cet attribut (sauf pour les attributs alias et calculés). | n/a | +| **execute** | Exécuter n'importe quelle fonction du projet (datastore, dataclass, entity selection, entity) | Exécuter n'importe quelle fonction de dataclass. Les fonctions de dataclass, d'entité et d'entity selection sont considérées comme des fonctions de dataclass | n/a | Exécuter cette fonction | +| **promote** | n/a | n/a | n/a | Associe un privilège donné lors de l'exécution de la fonction. Le privilège est temporairement ajouté à la session et supprimé à la fin de l'exécution de la fonction. Par mesure de sécurité, seul le process exécutant la fonction reçoit le privilège, et non toute la session. | **Notes :** @@ -67,10 +66,7 @@ Les actions disponibles sont liées à la ressource cible. - Valeurs par défaut : dans l'implémentation actuelle, seul _Null_ est disponible en tant que valeur par défaut. - En mode REST [force login](../REST/authUsers.md/#force-login-mode), la fonction [`authentify()`](../REST/authUsers.md#function-authentify) est toujours exécutable par les utilisateurs guest, quelle que soit la configuration des permissions. -Le paramétrage des permissions nécessite d'être cohérent, en particulier : - -- Les permissions **update** et **drop** ont également besoin d'une permission **read** (mais **create** n'en a pas besoin) -- Pour les fonctions du modèle de données, la permission **promote** a également besoin de la permission **describe**. +Setting permissions requires to be consistent, in particular **update** and **drop** permissions also need **read** permission (but **create** does not need it). ## Privilèges et Rôles @@ -139,7 +135,6 @@ Le fichier par défaut a le contenu suivant : "create": ["none"], "update": ["none"], "drop": ["none"], - "describe": ["none"], "execute": ["none"], "promote": ["none"] } @@ -175,26 +170,25 @@ Dans Qodly Studio for 4D, le mode peut être défini en utilisant l'option [**Fo La syntaxe du fichier `roles.json` est la suivante: -| Nom de propriété | | | Type | Obligatoire | Description | -| ---------------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -------------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------- | -| privileges | | | Collection d'objets `privilege` | X | Liste de privilèges définis | -| | \[].privilege | | Text | | Nom de privilège | -| | \[].includes | | Collection de chaînes | | Liste de noms de privilèges inclus | -| roles | | | Collection d'objets `role` | | Liste de rôles définis | -| | \[].role | | Text | | Nom de rôle | -| | \[].privileges | | Collection de chaînes | | Liste de noms de privilèges inclus | -| permissions | | | Object | X | Liste d'actions autorisées | -| | allowed | | Collection d'objets `permission` | | Liste de permissions autorisées | -| | | \[].applyTo | Text | X | Nom de [ressource](#resources) cible | -| | | \[].type | Text | X | Type de [ressource](#ressources) : "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | -| | | \[].read | Collection de chaînes | | Liste de privilèges | -| | | \[].create | Collection de chaînes | | Liste de privilèges | -| | | \[].update | Collection de chaînes | | Liste de privilèges | -| | | \[].drop | Collection de chaînes | | Liste de privilèges | -| | | \[].describe | Collection de chaînes | | Liste de privilèges | -| | | \[].execute | Collection de chaînes | | Liste de privilèges | -| | | \[].promote | Collection de chaînes | | Liste de privilèges | -| forceLogin | | | Boolean | | True pour activer le [mode "forceLogin"](../REST/authUsers.md#force-login-mode) | +| Nom de propriété | | | Type | Obligatoire | Description | +| ---------------- | ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------- | +| privileges | | | Collection d'objets `privilege` | X | Liste de privilèges définis | +| | \[].privilege | | Text | | Nom de privilège | +| | \[].includes | | Collection de chaînes | | Liste de noms de privilèges inclus | +| roles | | | Collection d'objets `role` | | Liste de rôles définis | +| | \[].role | | Text | | Nom de rôle | +| | \[].privileges | | Collection de chaînes | | Liste de noms de privilèges inclus | +| permissions | | | Object | X | Liste d'actions autorisées | +| | allowed | | Collection d'objets `permission` | | Liste de permissions autorisées | +| | | \[].applyTo | Text | X | Nom de [ressource](#resources) cible | +| | | \[].type | Text | X | Type de [ressource](#ressources) : "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | +| | | \[].read | Collection de chaînes | | Liste de privilèges | +| | | \[].create | Collection de chaînes | | Liste de privilèges | +| | | \[].update | Collection de chaînes | | Liste de privilèges | +| | | \[].drop | Collection de chaînes | | Liste de privilèges | +| | | \[].execute | Collection de chaînes | | Liste de privilèges | +| | | \[].promote | Collection de chaînes | | Liste de privilèges | +| forceLogin | | | Boolean | | True pour activer le [mode "forceLogin"](../REST/authUsers.md#force-login-mode) | :::caution Rappel @@ -254,9 +248,6 @@ La bonne pratique est de garder verrouillés tous les accès aux données par d "execute": [ "none" ], - "describe": [ - "none" - ], "promote": [ "none" ] diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md b/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md index 04e6317b2961fa..780c4a8b9fd767 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md @@ -49,7 +49,7 @@ Les fonctionnalités ORDA relatives au verrouillage d'entité et aux transaction - Si un process verrouille une entité à partir d'un datastore distant, l'entité est verrouillée pour tous les autres process, même lorsque ces process partagent la même session (voir [Verrouillage d'entités](entities.md#entity-locking)). Si plusieurs entités pointant vers le même enregistrement ont été verrouillées dans un process, elles doivent toutes être déverrouillées dans le process pour supprimer le verrou. Si un verrou a été mis sur une entité, il est supprimé lorsqu'il n'existe plus de référence à cette entité en mémoire. - Les transactions peuvent être lancées, validées ou annulées séparément sur chaque datastore distant à l'aide des méthodes `dataStore.startTransaction( )`, `dataStore.cancelTransaction( )`, et `dataStore.validateTransaction( )`. Elles n’ont pas d’incidences sur les autres datastore. -- Les commandes classiques du langage 4D (`START TRANSACTION`, `VALIDATE TRANSACTION`, `CANCEL TRANSACTION`) s'appliquent uniquement au datastore principal (renvoyé par `ds`). +- Classic 4D language commands ([`START TRANSACTION`](../commands-legacy/start-transaction.md), [`VALIDATE TRANSACTION`](../commands-legacy/validate-transaction.md), [`CANCEL TRANSACTION`](../commands-legacy/cancel-transaction.md)) only apply to the main datastore (returned by `ds`). Si une entité d'un datastore distant est verrouillée par une transaction dans un process, les autres process ne peuvent pas la mettre à jour, même si ces process partagent la même session. - Les verrous sur les entités sont supprimés et les transactions sont annulées : - lorsque le process est tué. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Project/components.md b/i18n/fr/docusaurus-plugin-content-docs/current/Project/components.md index e4929368118b0a..0d4f9b999ae20a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/Project/components.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/Project/components.md @@ -5,7 +5,7 @@ title: Composants A 4D component is a set of 4D code and/or 4D forms representing one or more functionalities that you can add and use in your projects. For example, the [4D SVG](https://github.com/4d/4D-SVG) component adds advanced commands and an integrated rendering engine that can be used to display SVG files. -You can [develop](../Extensions/develop-components.md) and [build](../Desktop/building.md) your own 4D components, or download public components shared by the 4D community that [can be found on GitHub](https://github.com/search?q=4d-component\&type=Repositories). +You can [develop](../Extensions/develop-components.md) and [build](../Desktop/building.md) your own 4D components, or download public components shared by the 4D community that [can be found on GitHub](https://github.com/search?q=4d-component\\&type=Repositories). When developing in 4D, the component files can be transparently stored in your computer or on a Github repository. @@ -47,7 +47,7 @@ This page describes how to work with components in the **4D** and **4D Server** To load a component in your 4D project, you can either: - copy the component files in the [**Components** folder of your project](architecture.md#components), -- or, declare the component in the **dependencies.json** file of your project; this is done automatically for local files when you [**add a dependency using the Dependency manager interface**](#adding-a-dependency). +- or, declare the component in the **dependencies.json** file of your project; this is done automatically for local files when you [**add a dependency using the Dependency manager interface**](#adding-a-github-dependency). Components declared in the **dependencies.json** file can be stored at different locations: @@ -95,14 +95,16 @@ Since components can be installed in different ways, a priority order is applied ```mermaid flowchart TB - id1("1\nComponents from project's Components folder")~~~ - id2("2\nComponents listed in dependencies.json")~~~ - id2 -- environment4d.json gives path --> id4("Load component\nbased on path declared\nin environment4d.json") + id1("1
Components from project's Components folder") + ~~~ + id2("2
Components listed in dependencies.json") + ~~~ + id2 -- environment4d.json gives path --> id4("Load component based on path declared in environment4d.json") ~~~ - id3("3\nUser 4D components") - id2 -- environment4d.json doesn't give path --> id5("Load component\nnext to\npackage folder") + id3("3
User 4D components") + id2 -- environment4d.json doesn't give path --> id5("Load component next to package folder") ~~~ - id3("3\nUser 4D components") + id3("3
User 4D components") ``` When a component cannot be loaded because of another instance of the same component located at a higher priority level, both get a specific [status](#dependency-status): the non-loaded component is given the _Overloaded_ status, while the loaded component has the _Overloading_ status. @@ -173,7 +175,7 @@ Absolute paths should only be used for components that are specific to one machi ### Components stored on GitHub -4D components available as GitHub releases can be referenced and automatically loaded in your 4D projects. +4D components available as GitHub releases can be referenced and automatically loaded and updated in your 4D projects. :::note @@ -222,7 +224,7 @@ You declare a component stored on GitHub in the [**dependencies.json** file](#de #### Tags and versions -When you create a release in GitHub, you specify a **tag** and a **version**. +When a release is created in GitHub, it is associated to a **tag** and a **version**. The Dependency manager uses these information to handle automatic availability of components. - **Tags** are texts that uniquely reference a release. In the [**dependencies.json** file](#dependencyjson) and [**environment4d.json**](#environment4djson) files, you can indicate the release tag you want to use in your project. For example : @@ -237,7 +239,7 @@ When you create a release in GitHub, you specify a **tag** and a **version**. } ``` -- A release is also identified by a **version**. The versioning system used is based on the _Semantic Versioning_ concept, which is the most commonly used. Each version number is identified as follows: `majorNumber.minorNumber.pathNumber`. In the same way as for tags, you can indicate the version of the component you wish to use in your project, as in this example: +- A release is also identified by a **version**. The versioning system used is based on the [_Semantic Versioning_](https://regex101.com/r/Ly7O1x/3/) concept, which is the most commonly used. Each version number is identified as follows: `majorNumber.minorNumber.pathNumber`. In the same way as for tags, you can indicate the version of the component you wish to use in your project, as in this example: ```json { @@ -250,7 +252,7 @@ When you create a release in GitHub, you specify a **tag** and a **version**. } ``` -The version is used to define which versions can be used. A [standard semantic version](https://regex101.com/r/Ly7O1x/3/) is used. A range is defined by two semantic versions, a min and a max, with operators '\< | > | >= | <= | ='. The `*` can be used as a placeholder for all versions. ~ and ^ prefixes define versions starting at a number, and up to respectively the next major and minor version. +A range is defined by two semantic versions, a min and a max, with operators '\< | > | >= | <= | ='. The `*` can be used as a placeholder for all versions. ~ and ^ prefixes define versions starting at a number, and up to respectively the next major and minor version. Here are a few examples: @@ -268,6 +270,8 @@ Here are a few examples: If you do not specify a tag or a version, 4D automatically retrieves the "latest" version. +The Dependency manager checks periodically if component updates are available on Github. If a new version is available for a component, an update indicator is then displayed for the component in the dependency list, [depending on your settings](#defining-a-github-dependency-version-range). + #### Private repositories If you want to integrate a component located in a private repository, you need to tell 4D to use a connection token to access it. @@ -280,21 +284,7 @@ For more information, please refer to the [GitHub token interface](https://githu ::: -Then insert the "github" key in your [**environment4d.json**](#environment4djson) file: - -```json -{ - "github": { - "token": "ghpXXXXXXXXXXXXUvW8x9yZ" - }, - "dependencies": { - - "mySecondGitHubComponent": { - "github": "JohnSmith/mySecondGitHubComponent" - } - } -} -``` +You then need to [provide your connection token](#providing-your-github-access-token) to the Dependency manager. #### Local cache for dependencies @@ -305,7 +295,7 @@ Referenced GitHub components are downloaded in a local cache folder then loaded ...where `` can be "4D", "4D Server", or "tool4D". -#### dependency-lock.json +### dependency-lock.json A `dependency-lock.json` file is created in the [`userPreferences` folder](architecture.md#userpreferencesusername) of your project. @@ -313,7 +303,7 @@ This file logs information such as the state of dependencies, paths, urls, loadi ## Monitoring Project Dependencies -In an opened project, you can add, remove, and get information about dependencies and their current loading status in the **Dependencies** panel. +In an opened project, you can add, remove, update, and get information about dependencies and their current loading status in the **Dependencies** panel. To display the Dependencies panel: @@ -327,7 +317,72 @@ The Dependencies panel is then displayed. Dependencies are sorted by name in alp ![dependency](../assets/en/Project/dependency.png) -The Dependencies panel interface allows you to manage dependencies (on 4D single-user and 4D Server). You can add or remove **local** and **GitHub** dependencies. +The Dependencies panel interface allows you to manage dependencies (on 4D single-user and 4D Server). + +### Filtering dependencies + +By default, all dependencies identified by the Dependency manager are listed, whatever their [status](#dependency-status). You can filter the displayed dependencies according to their status by selecting the appropriate tab at the top of the Dependencies panel: + +![dependency-tabs](../assets/en/Project/dependency-tabs.png) + +- **Active**: Dependencies that are loaded and can be used in the project. It includes _overloading_ dependencies, which are actually loaded. _Overloaded_ dependencies are listed in the **Conflicts** panel, along with all conflicting dependencies. +- **Inactive**: Dependencies that are not loaded in the project and are not available. There are many possible reasons for this status: missing files, version incompatibility... +- **Conflict**: Dependencies that are loaded but that overloads at least one other dependency at lower [priority level](#priority). Overloaded dependencies are also displayed so that you can check the origin of the conflict and take appropriate actions. + +### Dependency status + +Dependencies requiring the developer's attention are indicated by a **status label** at the right side of the line and a specific background color: + +![dependency-status](../assets/en/Project/dependency-conflict2.png) + +The following status labels are available: + +- **Overloaded**: The dependency is not loaded because it is overloaded by another dependency with the same name at a higher [priority level](#priority). +- **Overloading**: The dependency is loaded and is overloading one or more other dependencies with the same name at a lower [priority level](#priority). +- **Not found**: The dependency is declared in the dependencies.json file but is not found. +- **Inactive**: The dependency is not loaded because it is not compatible with the project (e.g. the component is not compiled for the current platform). +- **Duplicated**: The dependency is not loaded because another dependency with the same name exists at the same location (and is loaded). +- **Available after restart**: The dependency reference has just been added or updated [using the interface](#monitoring-project-dependencies), it will be loaded once the application restarts. +- **Unloaded after restart**: The dependency reference has just been removed [using the interface](#removing-a-dependency), it will be unloaded once the application restarts. +- **Update available \**: A new version of the GitHub dependency matching your [component version configuration](#defining-a-github-dependency-version-range) has been detected. +- **Refreshed after restart**: The [component version configuration](#defining-a-github-dependency-version-range) of the GitHub dependency has been modified, it will be adjusted the next startup. +- **Recent update**: A new version of the GitHub dependency has been loaded at startup. + +A tooltip is displayed when you hover over the dependency line, provding additional information about the status: + +![dependency-tips](../assets/en/Project/dependency-tip1.png) + +### Dependency origin + +The Dependencies panel lists all project dependencies, whatever their origin, i.e. wherever they come from. The dependency origin is provided by the tag under its name: + +![dependency-origin](../assets/en/Project/dependency-origin.png) + +The following origins are possible: + +| Origin tag | Description | +| --------------------------------- | ------------------------------------------------------------------------------ | +| 4D Component | Built-in 4D component, stored in the `Components` folder of the 4D application | +| dependencies.json | Component declared in the [`dependencies.json`](#dependenciesjson) file | +| Environment | Component declared in the [`environnement4d.json`](#environment4djson) file | +| Project Component | Component located in the [`Components`](architecture.md#components) folder | + +**Right-click** in a dependency line and select **Show on disk** to reveal the location of a dependency: + +![dependency-show](../assets/en/Project/dependency-show.png) + +:::note + +This item is not displayed if the dependency is inactive because its files are not found. + +::: + +Component icon and location logo provide additional information: + +- The component logo indicates if it is provided by 4D or a third-party developer. +- Local components can be differentiated from GitHub components by a small icon. + +![dependency-origin](../assets/en/Project/dependency-github.png) ### Adding a local dependency @@ -374,7 +429,15 @@ If the component is stored on a [private GitHub repository](#private-repositorie ::: -You can then define the [tag or version](#tags-and-versions) option for the dependency: +Define the [dependency version range](#tags-and-versions) to use for this project. By defaut, "Latest" is selected, which means that the lastest version will be automatically used. + +Click on the **Add** button to add the dependency to the project. + +The GitHub dependency declared in the [**dependencies.json**](#dependenciesjson) file and added to the [inactive dependency list](#dependency-status) with the **Available at restart** status. It will be loaded once the application restarts. + +#### Defining a GitHub dependency version range + +You can define the [tag or version](#tags-and-versions) option for a dependency: ![dependency-git-tag](../assets/en/Project/dependency-git-tag.png) @@ -383,99 +446,116 @@ You can then define the [tag or version](#tags-and-versions) option for the depe - **Up to Next Minor Version**: Similarly, restrict updates to the next minor version. - **Exact Version (Tag)**: Select or manually enter a [specific tag](#tags-and-versions) from the available list. -Click on the **Add** button to add the dependency to the project. +The current GitHub dependency version is displayed on the right side of the dependency item: -The GitHub dependency declared in the [**dependencies.json**](#dependenciesjson) file and added to the [inactive dependency list](#dependency-status) with the **Available at restart** status. It will be loaded once the application restarts. +![dependency-origin](../assets/en/Project/dependency-version.png) -#### Providing your GitHub access token +#### Modifying the GitHub dependency version range -If the component is stored on a [private GitHub repository](#private-repositories), you need to provide your personal access token to the Dependency manager. To do this, you can either: +You can modify the [version setting](#defining-a-github-dependency-version-range) for a listed GitHub dependency: select the dependency to modify and select **Modify the dependency...** from the contextual menu. In the "Modify the dependency" dialog box, edit the Dependency Rule menu and click **Apply**. -- click on **Add a personal access token...** button that is displayed in the "Add a dependency" dialog box after you entered a private GitHub repository path. -- or, select **Add a GitHub personal access token...** in the Dependency manager menu at any moment. +Modifying the version range is useful for example if you use the automatic update feature and want to lock a dependency to a specific version number. -![dependency-add-token](../assets/en/Project/dependency-add-token.png) +### Updating GitHub dependencies -You can then enter your personal access token: +The Dependency manager provides an integrated handling of updates on GitHub. The following features are supported: -![dependency-add-token-2](../assets/en/Project/dependency-add-token-2.png) +- Automatic and manual checking of available versions +- Automatic and manual updating of components -You can only enter one personal access token. Once a token has been entered, you can edit it. +Manual operations can be done **per dependency** or **for all dependencies**. -### Removing a dependency +#### Checking for new versions -To remove a dependency from the Dependencies panel, select the dependency to remove and click on the **-** button of the panel or select **Remove the dependency...** from the contextual menu. You can select several dependencies, in which case the action is applied to all selected dependencies. +Dependencies are regularly checked for updates on GitHub. This checking is done transparently in background. :::note -Only dependencies declared in the [**dependencies.json**](#dependenciesjson) file can be removed using the Dependencies panel. If a selected dependency cannot be removed, the **-** button is disabled and the **Remove the dependency...** menu item is hidden. +If you provide an [access token](#providing-your-github-access-token), checks are performed more frequently, as GitHub then allows a higher frequency of requests to repositories. ::: -Une boîte de dialogue de confirmation s'affiche. If the dependency was declared in the **environment4d.json** file, an option allows you to remove it: +In addition, you can check for updates at any moment, for a single dependency or for all dependencies: -![dependency-remove](../assets/en/Project/remove-comp.png) +- To check for updates of a single dependency, right-click on the dependency and select **Check for updates** in the contextual menu. -If you confirm the dialog box, the removed dependency [status](#dependency-status) is automatically flagged "Unload after restart". It will be unloaded once the application restarts. +![check component](../assets/en/Project/check-component-one.png) -### Dependency Origin +- To check for updates of all dependencies, click on the **options** menu at the bottom of the Dependency manager window and select **Check for updates**. -The Dependencies panel lists all project dependencies, whatever their origin, i.e. wherever they come from. The dependency origin is provided by the tag under its name: +![check components](../assets/en/Project/check-component-all.png) -![dependency-origin](../assets/en/Project/dependency-origin.png) +If a new component version matching your [component versioning configuration](#defining-a-github-dependency-version-range) is detected on GitHub, a specific dependency status is displayed: -The following origins are possible: +![dependency-new-version](../assets/en/Project/dependency-available.png) -| Origin tag | Description | -| --------------------------------- | ------------------------------------------------------------------------------ | -| 4D Component | Built-in 4D component, stored in the `Components` folder of the 4D application | -| dependencies.json | Component declared in the [`dependencies.json`](#dependenciesjson) file | -| Environment | Component declared in the [`environnement4d.json`](#environment4djson) file | -| Project Component | Component located in the [`Components`](architecture.md#components) folder | +You can decide to [update the component](#updating-dependencies) or not. -**Right-click** in a dependency line and select **Show on disk** to reveal the location of a dependency: +If you do not want to use a component update (for example you want to stay with a specific version), just let the current status (make sure the [**Automatic update**](#automatic-update) feature is not checked). -![dependency-show](../assets/en/Project/dependency-show.png) +#### Updating dependencies -:::note +**Updating a dependency** means downloading a new version of the dependency from GitHub and keeping it ready to be loaded the next time the project is started. -This item is not displayed if the dependency is inactive because its files are not found. +You can update dependencies at any moment, for a single dependency or for all dependencies: -::: +- To update a single dependency, right-click on the dependency and select **Update \ on next startup** in the contextual menu or in the **options** menu at the bottom of the Dependency manager window: -Component icon and location logo provide additional information: +![check component](../assets/en/Project/update-component-one.png) -- The component logo indicates if it is provided by 4D or a third-party developer. -- Local components can be differentiated from GitHub components by a small icon. +- To update all dependencies at once, click on the **options** menu at the bottom of the Dependency manager window and select **Update all remote dependencies on next startup**: -![dependency-origin](../assets/en/Project/dependency-github.png) +![check components](../assets/en/Project/update-component-all.png) -### Filtering Dependencies +In any cases, whatever the current dependency status, an automatic checking is done on GitHub before updating the dependency, to make sure the most recent version is retrieved, [according to your component versioning configuration](#defining-a-github-dependency-version-range). -By default, all dependencies identified by the Dependency manager are listed, whatever their [status](#dependency-status). You can filter the displayed dependencies according to their status by selecting the appropriate tab at the top of the Dependencies panel: +When you select an update command: -![dependency-tabs](../assets/en/Project/dependency-tabs.png) +- a dialog box is displayed and proposes to **restart the project**, so that the updated dependencies are immediately available. It is usually recommended to restart the project to evaluate updated dependencies. +- if you click Later, the update command is no longer available in the menu, meaning the action has been planned for the next startup. -- **Active**: Dependencies that are loaded and can be used in the project. It includes _overloading_ dependencies, which are actually loaded. _Overloaded_ dependencies are listed in the **Conflicts** panel, along with all conflicting dependencies. -- **Inactive**: Dependencies that are not loaded in the project and are not available. There are many possible reasons for this status: missing files, version incompatibility... -- **Conflict**: Dependencies that are loaded but that overloads at least one other dependency at lower [priority level](#priority). Overloaded dependencies are also displayed so that you can check the origin of the conflict and take appropriate actions. +#### Automatic update -### Dependency Status +The **Automatic update** option is available in the **options** menu at the bottom of the Dependency manager window. -Dependencies requiring the developer's attention are indicated by a **status label** at the right side of the line and a specific background color: +When this option is checked (default), new GitHub component versions matching your [component versioning configuration](#defining-a-github-dependency-version-range) are automatically updated for the next project startup. This option facilitates the day-to-day management of dependency updates, by eliminating the need to manually select updates. -![dependency-status](../assets/en/Project/dependency-conflict2.png) +When this option is unchecked, a new component version matching your [component versioning configuration](#defining-a-github-dependency-version-range) is only indicated as available and will require a [manual updating](#updating-dependencies). Unselect the **Automatic update** option if you want to monitor dependency updates precisely. -The following status labels are available: +### Providing your GitHub access token -- **Overloaded**: The dependency is not loaded because it is overloaded by another dependency with the same name at a higher [priority level](#priority). -- **Overloading**: The dependency is loaded and is overloading one or more other dependencies with the same name at a lower [priority level](#priority). -- **Not found**: The dependency is declared in the dependencies.json file but is not found. -- **Inactive**: The dependency is not loaded because it is not compatible with the project (e.g. the component is not compiled for the current platform). -- **Duplicated**: The dependency is not loaded because another dependency with the same name exists at the same location (and is loaded). -- **Available after restart**: The dependency reference has just been added [using the interface](#monitoring-project-dependencies), it will be loaded once the application restarts. -- **Unloaded after restart**: The dependency reference has just been removed [using the interface](#removing-a-dependency), it will be unloaded once the application restarts. +Registering your personal access token in the Dependency manager is: -A tooltip is displayed when you hover over the dependency line, provding additional information about the status: +- mandatory if the component is stored on a [private GitHub repository](#private-repositories), +- recommended for a more frequent [checking of dependency updates](#updating-github-dependencies). -![dependency-tips](../assets/en/Project/dependency-tip1.png) +To provide your GitHub access token, you can either: + +- click on **Add a personal access token...** button that is displayed in the "Add a dependency" dialog box after you entered a private GitHub repository path. +- or, select **Add a GitHub personal access token...** in the Dependency manager menu at any moment. + +![dependency-add-token](../assets/en/Project/dependency-add-token.png) + +You can then enter your personal access token: + +![dependency-add-token-2](../assets/en/Project/dependency-add-token-2.png) + +You can only enter one personal access token. Once a token has been entered, you can edit it. + +The provided token is stored in a **github.json** file in the [active 4D folder](../commands-legacy/get-4d-folder.md#active-4d-folder). + +### Removing a dependency + +To remove a dependency from the Dependencies panel, select the dependency to remove and click on the **-** button of the panel or select **Remove the dependency...** from the contextual menu. You can select several dependencies, in which case the action is applied to all selected dependencies. + +:::note + +Only dependencies declared in the [**dependencies.json**](#dependenciesjson) file can be removed using the Dependencies panel. If a selected dependency cannot be removed, the **-** button is disabled and the **Remove the dependency...** menu item is hidden. + +::: + +Une boîte de dialogue de confirmation s'affiche. If the dependency was declared in the **environment4d.json** file, an option allows you to remove it: + +![dependency-remove](../assets/en/Project/remove-comp.png) + +If you confirm the dialog box, the removed dependency [status](#dependency-status) is automatically flagged "Unload after restart". It will be unloaded once the application restarts. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png index 87f2c7ec6cc15d..f350cb995a59fd 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png index 35222f97254a0d..cba6de249cf77a 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png new file mode 100644 index 00000000000000..723465a0e2af57 Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png index f4372b543ee6b7..8718fded2a0b4c 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png new file mode 100644 index 00000000000000..21e28b40a2becf Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png new file mode 100644 index 00000000000000..97e0485cac6531 Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png index 282eef4ee9e9f9..e3c0e17dd9d02b 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png new file mode 100644 index 00000000000000..723465a0e2af57 Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png new file mode 100644 index 00000000000000..34e97fb3ae5556 Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png index cf71bd2d50e871..ddc56eac8963bd 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png index 5790890448635f..a2bf8c9b7a7bce 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png index 3ebacf28c5868d..ba0f3543b2a69a 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png new file mode 100644 index 00000000000000..f2e18d4d1ae84c Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png new file mode 100644 index 00000000000000..ef983192ecd1c3 Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png index 704002e1efdbe2..62e449d25b5084 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png index b70d73b8d2d592..69183c18d0472b 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png new file mode 100644 index 00000000000000..e69c0a944123d4 Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png new file mode 100644 index 00000000000000..a28b341c2f5711 Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png new file mode 100644 index 00000000000000..7d703a9fdb9d0a Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png index aca6352b6228e0..894064ff9c279c 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png index 3a8dde7cb02f1d..560e17bb42a38e 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png index 9d43fe6bd4f506..3b750ab5dbaf05 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png index ed358b57e41768..d862bd91343a59 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png index 05788609ab8a91..50830ff5e6adcb 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png new file mode 100644 index 00000000000000..b37014fd85bc8b Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png index 34127bf5a3d063..2515791f19c790 100644 Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png new file mode 100644 index 00000000000000..8c88840165538b Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png new file mode 100644 index 00000000000000..3494e7faee10c5 Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png new file mode 100644 index 00000000000000..0c734b11774382 Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png differ diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md index 82aa73fb04fda8..6706545abcaf0b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md @@ -41,4 +41,13 @@ Vous souhaitez stopper le process sélectionné parmi la collection de process a #### Voir aussi -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1634 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort.md index 317f3934e7860d..5fc85696b59005 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort.md @@ -32,4 +32,13 @@ Bien que la commande **ABORT** soit destinée à une utilisation au sein d'une m #### Voir aussi -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 156 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abs.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abs.md index eb80632c82a884..2810a04fe366b4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abs.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abs.md @@ -25,3 +25,13 @@ L'exemple suivant retourne la valeur absolue de -10,3, qui est 10,3 : ```4d  vVector:=Abs(-10,3) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 99 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accept.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accept.md index c7660f113e3121..ce9d8d45292613 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accept.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accept.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ACCEPT** doit être employée dans une méthode objet ou formulaire (ou une sous-routine) pour : @@ -37,4 +34,14 @@ La commande **ACCEPT** est autorisée en mode headless, dans le contexte des zon #### Voir aussi -[CANCEL](cancel.md) \ No newline at end of file +[CANCEL](cancel.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 269 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md index 340158121a40f6..31afb9d579f087 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **ACCUMULATE** désigne les champ(s) ou variable(s) à cumuler dans un état créé à l'aide de la commande [PRINT SELECTION](print-selection.md). @@ -37,4 +34,13 @@ Reportez-vous à l'exemple de la commande [BREAK LEVEL](break-level.md). [BREAK LEVEL](break-level.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 303 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md index 6ea7ebf89658ba..93163218f4999c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md @@ -64,4 +64,13 @@ Vous voulez savoir si l'action standard **Copier** est disponible (c'est-à-dire #### Voir aussi [INVOKE ACTION](invoke-action.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1442 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activated.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activated.md index 85031445a4e8b1..ca07182884774b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activated.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Activated** retourne Vrai dans une méthode formulaire lorsque la fenêtre contenant le formulaire passe au premier plan. @@ -29,4 +26,13 @@ displayed_sidebar: docs #### Voir aussi [Deactivated](deactivated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 346 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md index 184aa0d3ca748a..670f2e408a86cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md @@ -42,4 +42,13 @@ Vous voulez connaître le statut courant de transaction : [In transaction](in-transaction.md) [RESUME TRANSACTION](resume-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspendre des transactions* \ No newline at end of file +*Suspendre des transactions* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1387 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md index de1bed9a0957ea..22b61898638873 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md @@ -103,3 +103,13 @@ Cette méthode, exécutée dans un process séparé sous 4D ou 4D Server, permet Vous obtenez des tableaux du type : ![](../assets/en/commands/pict1213741.fr.png) + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1277 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md index fb7e5e466f3ee5..e11f21dc7abdfc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Compatibilité *Cette commande est apparue dans les premières versions de 4D et reste toujours utile pour créer des prototypes ou effectuer des développements simples. Toutefois, pour construire des interfaces modernes et personnalisées, il est désormais recommandé d'utiliser des formulaires génériques basés sur la commande [DIALOG](../commands/dialog.md) qui fournit des fonctionnalités avancées et un meilleur contrôle du flux de données.* @@ -91,4 +88,17 @@ La variable système OK prend la valeur 1 si l'enregistrement est validé et 0 s [CANCEL](cancel.md) [CREATE RECORD](create-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 56 | +| Thread safe | ✗ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md index 5e3df0545950e0..76b478ca8e86ec 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md @@ -35,3 +35,13 @@ Alors que les [Self](self.md) vous permettent d'ajouter des jours à une date, *   //Cette ligne fait la même chose que '$vdDemain:=Date du jour+1'  $vdDemain:=Add to date(Current date;0;0;1) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 393 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md index 57f86fa5b84814..f28fa53dec88e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Voir aussi -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 119 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md index de8909e7a6d695..65ec607bd7ebcd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md @@ -51,4 +51,13 @@ Vous souhaitez modifier temporairement la priorité des champs Texte de la table #### Voir aussi [Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1431 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md index f8bfef1478a508..5e846f6a13aa79 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md @@ -51,4 +51,13 @@ Vous souhaitez modifier temporairement la priorité des index du champ \[Docs\]C #### Voir aussi [Get adjusted index cache priority](get-adjusted-index-cache-priority.md) -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1430 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md index 32fde04a233341..22620c2427ad70 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md @@ -49,4 +49,13 @@ Vous souhaitez modifier temporairement la priorité des champs scalaires de la t #### Voir aussi [Get adjusted table cache priority](get-adjusted-table-cache-priority.md) -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1429 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/after.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/after.md index 8ea691e4c24a54..c2d40800f0c540 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/after.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/after.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **After** retourne Vrai pour le cycle d'exécution Après. @@ -26,4 +23,13 @@ Si vous souhaitez que la phase **After** du cycle d'exécution soit générée, #### Voir aussi -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 31 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/alert.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/alert.md index a4b5d76f6fa095..75d60a66b883a4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/alert.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/alert.md @@ -66,4 +66,13 @@ Ce code affiche la boîte de dialogue d'alerte suivante : [CONFIRM](confirm.md) [DISPLAY NOTIFICATION](display-notification.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 41 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md index faf0f4e36c4038..af6e2485e09e8a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md @@ -15,7 +15,7 @@ displayed_sidebar: docs #### Description -La commande **ALL RECORDS** sélectionne tous les enregistrements de *laTable* pour le process courant. **ALL RECORDS** fait du premier enregistrement de la sélection l'enregistrement courant et le charge en mémoire. **ALL RECORDS** retourne les enregistrements dans l'ordre par défaut, qui est l'ordre dans lequel ils ont été stockés sur le disque. +La commande **ALL RECORDS** sélectionne tous les enregistrements de *laTable* pour le process courant.fait du premier enregistrement de la sélection l'enregistrement courant et le charge en mémoire. **ALL RECORDS** retourne les enregistrements dans l'ordre par défaut, qui est l'ordre dans lequel ils ont été stockés sur le disque. #### Exemple @@ -33,4 +33,15 @@ L'exemple suivant affiche tous les enregistrements de la table \[Personnes\] : [ORDER BY](order-by.md) [QUERY](query.md) [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 47 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md index b783e484dd6546..e13affc9dcf6b4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **APPEND DATA TO PASTEBOARD** ajoute dans le conteneur les données du type spécifié dans *typeDonnées* présentes dans le BLOB *données*. @@ -211,4 +208,14 @@ Si les données dans le BLOB sont correctement ajoutées au conteneur, la variab [CLEAR PASTEBOARD](clear-pasteboard.md) [SET PICTURE TO PASTEBOARD](set-picture-to-pasteboard.md) -[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) \ No newline at end of file +[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 403 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md index c9633be2a0950d..9806dfe3e59a7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md @@ -37,4 +37,14 @@ L'exemple suivant ouvre un document existant qui s'appelle “Note”, ajoute à #### Voir aussi [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 265 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md index 563a0ffdad99e2..cd5c965729576a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **APPEND MENU ITEM** ajoute une ou plusieurs ligne(s) au menu dont vous avez passé le numéro ou la référence dans *menu.* @@ -78,4 +75,14 @@ Ensuite, dans toute méthode formulaire ou projet, vous pouvez écrire : [DELETE MENU ITEM](delete-menu-item.md) [INSERT MENU ITEM](insert-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 411 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md index 669653091f55db..d1387f5c183197 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md @@ -43,4 +43,13 @@ Le code suivant : #### Voir aussi [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 911 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md index 9c4ef247203f04..b9bac7e4f8bf72 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **APPEND TO LIST** ajoute un nouvel élément à la liste hiérarchique dont vous avez passé le numéro de référence dans le paramètre *liste*. @@ -149,4 +146,13 @@ Dans le formulaire en exécution, la liste apparaîtra ainsi : [INSERT IN LIST](insert-in-list.md) [SET LIST ITEM](set-list-item.md) [SET LIST ITEM PARAMETER](set-list-item-parameter.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 376 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md index 0604dd5d1ac4b3..83bd4f2d64d5cd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -La fonction **Application file** retourne le nom long (c'est-à-dire le chemin d'accès complet au fichier, y compris son nom) du fichier exécutable ou de l'application 4D que vous utilisez. - -*Sous Windows* +La fonction **Application file** retourne le nom long (c'est-à-dire le chemin d'accès complet au fichier, y compris son nom) du fichier exécutable ou de l'application 4D que vous utilisez. Si, par exemple, vous utilisez 4D qui se trouve dans le répertoire \\PROGRAMMES\\4D sur le volume E, **Application file** renvoie E:\\PROGRAMMES\\4D\\4D.EXE. *Sous Mac OS* @@ -40,4 +38,13 @@ Lorsque vous démarrez votre base sous Windows, vous souhaitez vérifier qu'une #### Voir aussi [Data file](data-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 491 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md index 537f4d67dbc2c1..a71bf3d59779d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md @@ -130,4 +130,13 @@ Si le code est exécuté sur 4D Server, l'objet contient (par exemple) : [Execute on server](execute-on-server.md) [Get database parameter](get-database-parameter.md) [System info](system-info.md) -[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) \ No newline at end of file +[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1599 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md index cb5ea0ac61f19b..55d9f62bafb2f4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md @@ -41,4 +41,13 @@ Quelque part dans votre code, ailleurs que dans la *On Server Startup Database M #### Voir aussi [Application version](application-version.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 494 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md index f16d23ac7b7bdc..f8281403a35034 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md @@ -117,4 +117,13 @@ Le code suivant reconstitue le numéro de version de l'application et permet de #### Voir aussi [Application type](application-type.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 493 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md index e0baaea96cae64..aae83072444f05 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md @@ -62,4 +62,14 @@ Si l'utilisateur clique sur le bouton Stop dans le thermomètre de progression, #### Voir aussi [EDIT FORMULA](edit-formula.md) -*Présentation des ensembles* \ No newline at end of file +*Présentation des ensembles* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 70 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md index e10132f872a132..66485bb38f66a1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -**Arctan** retourne en radians la valeur de l'angle dont la tangente est spécifiée par *nombre*. - -**Note :** 4D fournit les constantes prédéfinies Pi, Degree et Radian. Pi retourne le nombre Pi (3,14159...), Degree retourne la valeur en radians d'un degré (0,01745...) et Radian retourne la valeur en degrés d'un radian (57,29577...). +**Arctan** retourne en radians la valeur de l'angle dont la tangente est spécifiée par *nombre*.4D fournit les constantes prédéfinies Pi, Degree et Radian. Pi retourne le nombre Pi (3,14159...), Degree retourne la valeur en radians d'un degré (0,01745...) et Radian retourne la valeur en degrés d'un radian (57,29577...). #### Exemple @@ -32,4 +30,13 @@ Cet exemple permet d'afficher la valeur de Pi : [Cos](cos.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 20 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md index 62f9e6df3bf386..2fe901a6c4ac33 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md @@ -59,4 +59,13 @@ Cet exemple crée un tableau local de 100 lignes contenant chacune 50 éléments #### Voir aussi -*Créer des tableaux* \ No newline at end of file +*Créer des tableaux* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1222 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md index e4863b58e424d4..8b790ff6161ace 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY BOOLEAN** crée et/ou redimensionne un tableau d'éléments de type [Booléen](# "Peut être VRAI ou FAUX") en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY BOOLEAN** crée et/ou redimensionne un tableau d'éléments de type [Booléen](# "Peut être VRAI ou FAUX") en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -59,4 +57,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type Booléen et a #### Voir aussi -[ARRAY INTEGER](array-integer.md) \ No newline at end of file +[ARRAY INTEGER](array-integer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 223 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md index 28cb9aa2b020f2..4eb91cc8c5b608 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY DATE** crée et/ou redimensionne un tableau d'éléments de type [Date](# "Date dans l'intervalle 1/1/100 à 12/31/32767") en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY DATE** crée et/ou redimensionne un tableau d'éléments de type [Date](# "Date dans l'intervalle 1/1/100 à 12/31/32767") en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -54,3 +52,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type Date et affec     ◊tabDates{$vElem}:=Current date+$vElem  End for ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 224 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md index 1bba85e2ce199e..8c5d713f3145d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY INTEGER** crée et/ou redimensionne un tableau d'éléments de type [Entier](# "Nombre entre -32 768 et +32 767 (2^15 et (2^15)-1) (Entier sur deux octets)") (2 octets) en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY INTEGER** crée et/ou redimensionne un tableau d'éléments de type [Entier](# "Nombre entre -32 768 et +32 767 (2^15 et (2^15)-1) (Entier sur deux octets)") (2 octets) en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -58,4 +56,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Entier](# "N #### Voir aussi [ARRAY LONGINT](array-longint.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 220 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md index c9a76f977c6447..ffff71502a1e4c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY LONGINT** crée et/ou redimensionne un tableau d'éléments de type [Entier long](# "Entre -2 Milliard et +2 Milliard") (4 octets) en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY LONGINT** crée et/ou redimensionne un tableau d'éléments de type [Entier long](# "Entre -2 Milliard et +2 Milliard") (4 octets) en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -58,4 +56,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Entier long] #### Voir aussi [ARRAY INTEGER](array-integer.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 221 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md index 0148bd94e6339e..e013364b665d3e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md @@ -68,4 +68,13 @@ Création et remplissage d’un tableau local d’objets : [C\_OBJECT](c-object.md) *Créer des tableaux* -*Objets (Langage)* \ No newline at end of file +*Objets (Langage)* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1221 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md index 7184ab98f836cf..dab21659528c59 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY PICTURE** crée et/ou redimensionne un tableau d'éléments de type [Image](# "Can be any Windows or Macintosh picture") en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY PICTURE** crée et/ou redimensionne un tableau d'éléments de type [Image](# "Can be any Windows or Macintosh picture") en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -61,3 +59,13 @@ Cet exemple crée un tableau interprocess d'éléments de type [Image](# "Can be  End for  ARRAY PICTURE(◊tabImages;$vlPictElem) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 279 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md index 04b3a3618acf8c..4e208ea5ab59e7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY POINTER** crée ou redimensionne un tableau d'éléments de type [Pointeur](# "A reference to another variable (including arrays and array elements), table, or field") en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY POINTER** crée ou redimensionne un tableau d'éléments de type [Pointeur](# "A reference to another variable (including arrays and array elements), table, or field") en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -56,3 +54,13 @@ Cet exemple crée un tableau interprocess d'éléments de type [Pointeur](# "A r     End if  End for ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 280 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md index 4d5087b19da998..e949dadaae4be5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY REAL** crée et/ou redimensionne un tableau d'éléments de type Réel en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY REAL** crée et/ou redimensionne un tableau d'éléments de type Réel en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, taille spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -58,4 +56,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Réel](# "Nu #### Voir aussi [ARRAY INTEGER](array-integer.md) -[ARRAY LONGINT](array-longint.md) \ No newline at end of file +[ARRAY LONGINT](array-longint.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 219 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md index cca38081865f11..506c929a59816f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY TEXT** crée et/ou redimensionne un tableau d'éléments de type [Texte](# "Une chaine de caractères jusqu'à 2 Go") en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY TEXT** crée et/ou redimensionne un tableau d'éléments de type [Texte](# "Une chaine de caractères jusqu'à 2 Go") en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -54,3 +52,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Texte](# "Un     ◊tabTexte{$vElem}:="Elément n°"+String($vElem)  End for ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 222 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md index 04290e5da36fa1..d857c074b607d4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY TIME** crée et/ou redimensionne un tableau d’éléments de type Heure en mémoire. - -**Rappel :** Dans 4D, les heures peuvent être traitées en tant que valeurs numériques. Dans les versions de 4D antérieures à la v14, il était nécessaire de combiner un tableau d’entiers longs et un format d’affichage pour gérer un tableau d’heures. +La commande **ARRAY TIME** crée et/ou redimensionne un tableau d’éléments de type Heure en mémoire.Dans 4D, les heures peuvent être traitées en tant que valeurs numériques. Dans les versions de 4D antérieures à la v14, il était nécessaire de combiner un tableau d’entiers longs et un format d’affichage pour gérer un tableau d’heures. Le paramètre *nomTableau* est le nom du tableau. @@ -64,4 +62,13 @@ Comme les tableaux d’heures acceptent des valeurs numériques, le code suivant #### Voir aussi *Créer des tableaux* -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1223 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md index f9fe148204d6bb..9f3c77d4ff8f1f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md @@ -81,4 +81,13 @@ Vous souhaiter copier un tableau texte dans une collection partagée : #### Voir aussi [COLLECTION TO ARRAY](collection-to-array.md) -*Conversions de type entre les collections et les tableaux 4D* \ No newline at end of file +*Conversions de type entre les collections et les tableaux 4D* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1563 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md index 8792f7b8228bd6..b91c0536df9e54 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ARRAY TO LIST** crée ou remplace la liste hiérarchique ou l'énumération *liste* en utilisant les éléments du tableau *tableau*. @@ -62,4 +59,14 @@ La commande **ARRAY TO LIST** génère l'erreur *\-9957* lorsqu'elle est appliqu [LIST TO ARRAY](list-to-array.md) [Load list](load-list.md) [ON ERR CALL](on-err-call.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 287 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md index a5a2b86450e5b7..ac0f77bdf24db5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md @@ -77,4 +77,14 @@ Vous souhaitez recopier la sélection d'enregistrements vers une table d'archive #### Voir aussi [SELECTION TO ARRAY](selection-to-array.md) -*Variables système* \ No newline at end of file +*Variables système* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 261 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/assert.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/assert.md index a50fe695f55cb3..911bab9ba505bb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/assert.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/assert.md @@ -51,4 +51,14 @@ Une assertion peut permettre de tester les paramètres passés à une méthode p [Asserted](asserted.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1129 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md index 3d563a40aee392..1e33c902ce3e57 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md @@ -40,4 +40,14 @@ Insertion d’une assertion dans l’évaluation d’une expression : [ASSERT](assert.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1132 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/average.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/average.md index 480d5297d68796..7c7aa2ea142ef5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/average.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/average.md @@ -88,4 +88,14 @@ Vous pouvez effectuer les calculs suivants : [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) [Subtotal](subtotal.md) -[Sum](sum.md) \ No newline at end of file +[Sum](sum.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 2 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md index f3b18bf37b675f..cc412f4a42e783 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md @@ -30,4 +30,13 @@ Passez dans le paramètre *sélecteur* le type d’information à récupérer. L #### Voir aussi -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 888 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup.md index 0ee2917cb8d9fb..65f6639e1fa4ba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **BACKUP** déclenche la sauvegarde de la base de données avec les paramétrages de sauvegarde courants. Aucune boîte de dialogue de confirmation n’est affichée. Une fenêtre de progression apparaît à l’écran. @@ -39,4 +36,14 @@ En cas d’incident au cours de la sauvegarde, les informations relatives à l'i [BACKUP INFO](backup-info.md) *Méthode base Sur démarrage sauvegarde* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 887 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md index 5410c448ebf3b0..e30a5b18f163d1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md @@ -54,4 +54,13 @@ Cet exemple permet de transférer une image via un BLOB : [BASE64 ENCODE](base64-encode.md) [Generate digest](generate-digest.md) *Présentation des commandes XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 896 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md index 0ae8bc545ef2cc..863d6f3af95f13 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md @@ -38,4 +38,13 @@ Par défaut, si le paramètre *\** est omis, la commande utilise un encodage Bas [BASE64 DECODE](base64-decode.md) [Generate digest](generate-digest.md) *Présentation des commandes XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 895 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/beep.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/beep.md index 5c18492512dec9..eb3bd907d630f6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/beep.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/beep.md @@ -32,4 +32,13 @@ Dans l'exemple suivant, un bip est émis et une alerte affichée lorsqu'aucun en #### Voir aussi -[PLAY](play.md) \ No newline at end of file +[PLAY](play.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 151 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md index 2af9dfd39b690b..ad8a78ca96b398 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -La fonction **Before selection** retourne Vrai lorsque le pointeur d'enregistrement courant se trouve avant le premier enregistrement de la sélection courante de *laTable*. **Before selection** est généralement utilisée pour vérifier si la commande [PREVIOUS RECORD](previous-record.md) a déplacé le pointeur d'enregistrement courant avant le premier enregistrement. Si la sélection courante est vide, **Before selection** retourne Vrai. +La fonction **Before selection** retourne Vrai lorsque le pointeur d'enregistrement courant se trouve avant le premier enregistrement de la sélection courante de *laTable*.est généralement utilisée pour vérifier si la commande [PREVIOUS RECORD](previous-record.md) a déplacé le pointeur d'enregistrement courant avant le premier enregistrement. Si la sélection courante est vide, **Before selection** retourne Vrai. Pour replacer le pointeur d'enregistrement courant dans la sélection courante, utilisez les commandes [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) ou [GOTO SELECTED RECORD](goto-selected-record.md). [NEXT RECORD](next-record.md) ne replace pas le pointeur d'enregistrement courant dans la sélection courante. @@ -62,4 +62,13 @@ La méthode formulaire suivante est utilisée pendant l'impression d'un état. E [FIRST RECORD](first-record.md) [Form event code](../commands/form-event-code.md) [PREVIOUS RECORD](previous-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 198 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before.md index 56db43b93135a5..209f1dbf84a00e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Before** retourne Vrai pour le cycle d'exécution Avant. @@ -26,4 +23,13 @@ Si vous souhaitez que la phase **Before** du cycle d'exécution soit générée, #### Voir aussi -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 29 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md index 0e878da9b3465f..995b300b05393d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md @@ -42,4 +42,13 @@ A noter que le *Débogueur* de 4D évaluera le code SQL ligne par ligne. Dans ce [End SQL](end-sql.md) [SQL Get current data source](sql-get-current-data-source.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 948 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md index 2fe89861a89253..65886ad4d51677 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md @@ -76,4 +76,13 @@ Lorsque cette méthode est placée dans votre application, vous pouvez écrire : #### Voir aussi [COMPRESS BLOB](compress-blob.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 536 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md index e35f4a9c052eb7..f9d1766a0c998a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md @@ -28,4 +28,13 @@ La ligne de code suivante ajoute 100 octets au BLOB *monBlob* : #### Voir aussi -[SET BLOB SIZE](set-blob-size.md) \ No newline at end of file +[SET BLOB SIZE](set-blob-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 605 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md index 44029accc8ef28..ba7cf54420e418 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md @@ -50,4 +50,14 @@ Dans tous les cas, vous pouvez gérer les erreurs en utilisant la commande [ON E [Create document](create-document.md) [DOCUMENT TO BLOB](document-to-blob.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 526 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md index ebd1b83de79bcd..f13a4057328955 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md @@ -77,4 +77,13 @@ L'exemple suivant lit 20 valeurs entières d'un BLOB à partir de l'offset 0x200 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 549 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md index 3bb7821df819f2..10aa42e5654767 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **BLOB to list** crée une nouvelle liste hiérarchique avec les données stockées dans le BLOB *blob* à l'offset d'octet (à partir de zéro) spécifié par *offset* et retourne un numéro de référence de liste hiérarchique pour cette nouvelle liste. @@ -61,4 +58,14 @@ La variable OK prend la valeur 1 si la liste a été correctement créée, sinon #### Voir aussi -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 557 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md index d36bb9a1fa82a4..7181f3f6dfb7bf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md @@ -59,4 +59,13 @@ L'exemple suivant lit 20 valeurs de type Entier long dans un BLOB, à partir de [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 551 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md index db53d0cb42622e..7111dea25de76d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md @@ -47,4 +47,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la [PICTURE CODEC LIST](picture-codec-list.md) [PICTURE TO BLOB](picture-to-blob.md) -[READ PICTURE FILE](read-picture-file.md) \ No newline at end of file +[READ PICTURE FILE](read-picture-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 682 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md index 88946c74cd1946..a32b696b869433 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **BLOB to print settings** remplace les paramètres d’impression courants de 4D par les paramètres stockés dans le BLOB *paramImpression*. Ce BLOB doit avoir été généré par la commande [Print settings to BLOB](print-settings-to-blob.md) ou par la commande de 4D Pack (voir ci-dessous). @@ -77,4 +74,13 @@ Vous voulez appliquer des paramètres d'impression précédemment stockés sur d #### Voir aussi -[Print settings to BLOB](print-settings-to-blob.md) \ No newline at end of file +[Print settings to BLOB](print-settings-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1434 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md index 6ef7ccbed10eb2..daa29839657e3a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md @@ -61,4 +61,13 @@ L'exemple suivant lit 20 valeurs réelles dans un BLOB à partir de l'offset 0x2 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 553 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md index 8e07975971add9..fd02ef0812a0ce 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md @@ -60,4 +60,13 @@ Après l'exécution de la commande, la variable *offset* est incrémentée du no [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 555 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md index 9b255f3c0d1cd3..17ff500ab6a75f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **BLOB TO USERS** remplace les comptes utilisateurs et les groupes présents dans le BLOB *utilisateurs* dans la base courante. Le BLOB *utilisateurs* est crypté et doit impérativement avoir été créé par la commande [USERS TO BLOB](users-to-blob.md). @@ -48,4 +45,14 @@ Si la commande est exécutée correctement, la variable système OK prend la val #### Voir aussi -[USERS TO BLOB](users-to-blob.md) \ No newline at end of file +[USERS TO BLOB](users-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 850 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md index d484df1d134aae..62e72eddcb908c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md @@ -40,4 +40,14 @@ La variable OK prend la valeur 1 si la variable a été correctement réécrite, #### Voir aussi -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 533 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bool.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bool.md index 91897885666c75..8c2b8e2d1be83f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bool.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bool.md @@ -46,4 +46,13 @@ Vous sélectionnez une valeur en fonction d'un attribut de champ objet, en antic [Date](date.md) [Num](num.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1537 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md index 10f1da58159078..3f6bb07ee802be 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md @@ -31,4 +31,13 @@ Si vous ne passez pas le paramètre *ensemble*, la commande utilisera l’ensemb #### Voir aussi -[CREATE SET FROM ARRAY](create-set-from-array.md) \ No newline at end of file +[CREATE SET FROM ARRAY](create-set-from-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 646 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md index ff9ea8bdb161bb..9663113519b45f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **BREAK LEVEL** spécifie le nombre de niveaux de rupture dans un état créé à l'aide de la commande [PRINT SELECTION](print-selection.md). @@ -46,4 +43,13 @@ L'exemple suivant imprime un état avec deux niveaux de rupture. La sélection e [ACCUMULATE](accumulate.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 302 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md index b66c67a166d865..5fb5f5c8bcef44 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **BRING TO FRONT** passe les fenêtres du process de numéro *process* au premier plan. Toutes les fenêtres appartenant à *process* passent au premier plan. Si le process est déjà au premier plan, la commande ne fait rien. Si le process est caché, il faut utiliser la commande [SHOW PROCESS](show-process.md) pour faire d'abord apparaître le process, sinon **BRING TO FRONT** ne fait rien. @@ -38,4 +35,13 @@ L'exemple suivant est une méthode qui peut être exécutée à partir d'une com [HIDE PROCESS](hide-process.md) [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 326 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md index 4c362d7e32020b..a09d0cf03e0594 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **BUILD APPLICATION** lance le processus de génération d’application en prenant en compte les paramètres définis dans le fichier de configuration d’application courant ou le fichier de configuration défini dans le paramètre *buildAppSettings*. @@ -51,4 +48,15 @@ Si la commande échoue, une erreur est générée, que vous pouvez intercepter #### Voir aussi -[Compile project](../commands/compile-project.md) \ No newline at end of file +[Compile project](../commands/compile-project.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 871 | +| Thread safe | ✗ | +| Modifie les variables | OK, Document, error | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md index 38080d4211860a..29b8702248dad4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md @@ -52,4 +52,13 @@ Vous souhaitez obtenir des informations sur la base courante et tous les composa #### Voir aussi -[MEMORY STATISTICS](memory-statistics.md) \ No newline at end of file +[MEMORY STATISTICS](memory-statistics.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1402 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md index a429be18fb63a4..dae1a58fbce4e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md @@ -48,3 +48,13 @@ Si une méthode formulaire est exécutée, la chaîne d'appel peut contenir (par ```json [   {    "type":"formObjectMethod",    "name":"detailForm.Button",    "line":1,    "database":"myDatabase"   },   {    "type":"formMethod",    "name”:"detailForm",    "line":2,    "database":"myDatabase"   },   {    "type":"projectMethod",    "name”:"showDetailForm",    "line":2,    "database":"myDatabase”   }] ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1662 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md index 894f1802c5a9da..ae95543f9c6be1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md @@ -100,4 +100,13 @@ Vous pouvez alors ajouter d'autres messages en exécutant à nouveau la commande [CALL WORKER](call-worker.md) -[DIALOG](../commands/dialog.md) \ No newline at end of file +[DIALOG](../commands/dialog.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1391 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md index 82b5bccc67eb8a..9bcc8e9e7bb5a7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CALL SUBFORM CONTAINER** permet à une instance de sous-formulaire d’envoyer l’*événement* à l’objet sous-formulaire qui la contient. L’objet sous-formulaire peut alors traiter l’*événement* dans le contexte du formulaire parent. @@ -31,4 +28,13 @@ Vous pouvez passer dans *événement* tout événement formulaire prédéfini de #### Voir aussi [Form event code](../commands/form-event-code.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1086 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md index b6716d2659c6ec..d58523e78d4aba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md @@ -73,6 +73,15 @@ Voici le code de *méthodeWorker* : #### Voir aussi *A propos des workers* -[CALL FORM](../commands/call-form.md) +[CALL FORM](call-form.md) [Current process name](current-process-name.md) -[KILL WORKER](kill-worker.md) \ No newline at end of file +[KILL WORKER](kill-worker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1389 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md index 846dd370e0ef20..695b3d2c798538 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md @@ -14,7 +14,7 @@ displayed_sidebar: docs #### Description -**CANCEL TRANSACTION** annule la transaction ouverte par la commande [START TRANSACTION](start-transaction.md) de niveau correspondant dans le process courant. **CANCEL TRANSACTION** annule toutes les opérations exécutées sur les données et stockées pendant la transaction. +**CANCEL TRANSACTION** annule la transaction ouverte par la commande [START TRANSACTION](start-transaction.md) de niveau correspondant dans le process courant.annule toutes les opérations exécutées sur les données et stockées pendant la transaction. **Note :** **CANCEL TRANSACTION** est sans effet sur les modifications éventuellement effectuées dans les enregistrements courants mais non stockées - elles restent affichées après l'exécution de la commande. @@ -24,4 +24,13 @@ displayed_sidebar: docs [START TRANSACTION](start-transaction.md) [Transaction level](transaction-level.md) *Utiliser des transactions* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 241 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md index df6eefc4a94829..4c88a84023ac81 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CANCEL** doit être employée dans une méthode objet ou formulaire (ou une sous-routine) pour : @@ -50,4 +47,14 @@ Lorsque la commande [CANCEL](cancel.md) est exécutée (formulaire annulé ou an [ACCEPT](accept.md) [PAGE BREAK](page-break.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 270 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md index 57c6bc8e47f81b..1969485d60d84b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md @@ -28,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 547 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md index 32f83c53a8b4c7..8f7bb34176fbef 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **CHANGE CURRENT USER** permet de changer l'identité de l'utilisateur courant dans la base, sans devoir la quitter. Le changement d'identité peut être effectué par l'utilisateur lui-même via la boîte de dialogue de connexion à la base (lorsque la commande est appelée sans paramètres) ou directement par la commande. Lorsqu'il change d'identité, l'utilisateur abandonne ses anciens privilèges au profit de ceux de l'utilisateur choisi. @@ -68,4 +65,13 @@ L'exemple suivant affiche simplement la boîte de dialogue de connexion : #### Voir aussi [CHANGE PASSWORD](change-password.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 289 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md index d922477ba05e84..6c8ca43decb130 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CHANGE LICENSES** affiche la boîte de dialogue du Gestionnaire de licences 4D. @@ -41,4 +38,14 @@ Vous permettrez ainsi à un utilisateur d‘activer des licences sans avoir à m #### Voir aussi [License info](license-info.md) -[Is license available](is-license-available.md) \ No newline at end of file +[Is license available](is-license-available.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 637 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md index bb8adf60dbd019..9852ed540738d1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **CHANGE PASSWORD** permet de changer le mot de passe de l'utilisateur courant. Cette commande remplace le mot de passe courant par le nouveau mot de passe que vous passez dans *motDePasse*. @@ -44,4 +41,13 @@ L'exemple suivant permet à l'utilisateur de modifier son mot de passe : #### Voir aussi [CHANGE CURRENT USER](change-current-user.md) -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 186 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md index fff2a1fb098382..e8e75c1f0f41b5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md @@ -37,4 +37,13 @@ L'exemple suivant illustre l'utilisation de **Change string**. Les résultats so [Delete string](delete-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 234 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/char.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/char.md index 3e49821bcd9b90..592b6425882109 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/char.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/char.md @@ -34,4 +34,13 @@ L'exemple suivant utilise la fonction **Char** pour insérer un retour chariot d [Character code](character-code.md) *Codes Unicode* -*Symboles d'indice de chaîne* \ No newline at end of file +*Symboles d'indice de chaîne* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 90 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md index c71dac30559e73..da8a7f5c8601a4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md @@ -83,4 +83,13 @@ Le code suivant : #### Voir aussi [Char](char.md) -*Symboles d'indice de chaîne* \ No newline at end of file +*Symboles d'indice de chaîne* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 91 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md index ec3e1d11cde375..a539397cee9e1c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CHECK LOG FILE** affiche la boîte de dialogue de visualisation du fichier d’historique courant de la base (également accessible via la fenêtre du Centre de sécurité et de maintenance) : @@ -36,4 +33,14 @@ Vous pouvez intercepter ces erreurs à l’aide d’une méthode de gestion d’ #### Voir aussi *Erreurs du gestionnaire de sauvegarde (1401 -> 1421)* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 799 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/choose.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/choose.md index ded34d05e25569..5ec6a33ff121f6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/choose.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/choose.md @@ -78,3 +78,13 @@ Ce code est strictement équivalent à :        vStatut:="Divorcé"  End case ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 955 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md index 200ee7c2296974..e25c42f62857d3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CLEAR LIST** efface de la mémoire la liste hiérarchique dont vous avez passé le numéro de référence dans le paramètre *liste*. @@ -53,4 +50,13 @@ Reportez-vous à l'exemple de la fonction [BLOB to list](blob-to-list.md). [BLOB to list](blob-to-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 377 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md index 0148bdbb69099e..5aa9f2e8cbdbaf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md @@ -15,7 +15,7 @@ displayed_sidebar: docs #### Description -**CLEAR NAMED SELECTION** efface *nom* de la mémoire et donc libère la mémoire qu'elle utilisait. **CLEAR NAMED SELECTION** n'affecte pas les tables, sélections courantes ou enregistrements. Comme les sélections temporaires utilisent de la mémoire, il est conseillé de les effacer si vous n'en avez plus besoin. +**CLEAR NAMED SELECTION** efface *nom* de la mémoire et donc libère la mémoire qu'elle utilisait.n'affecte pas les tables, sélections courantes ou enregistrements. Comme les sélections temporaires utilisent de la mémoire, il est conseillé de les effacer si vous n'en avez plus besoin. Si *nom* a été créée par la commande [CUT NAMED SELECTION](cut-named-selection.md) puis traitée à l'aide de la commande [USE NAMED SELECTION](use-named-selection.md), elle n'existe plus en mémoire. Dans ce cas, vous n'avez pas besoin d'utiliser **CLEAR NAMED SELECTION**. @@ -23,4 +23,13 @@ Si *nom* a été créée par la commande [CUT NAMED SELECTION](cut-named-selecti [COPY NAMED SELECTION](copy-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 333 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md index 1a0b89f9aea5b4..4ca364c7524c99 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **CLEAR PASTEBOARD** efface entièrement le conteneur de données. Si le conteneur contient plusieurs instances des mêmes données, toutes les instances sont effacées. Après un appel à **CLEAR PASTEBOARD**, le conteneur de données est vide. @@ -41,4 +38,13 @@ Reportez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-dat #### Voir aussi -[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) \ No newline at end of file +[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 402 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md index 1c6a52a40d3cd4..0e1890a1b59aa6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md @@ -30,4 +30,13 @@ Reportez-vous à l'exemple de la fonction [Semaphore](semaphore.md "Semaphore"). [Semaphore](semaphore.md) *Sémaphores et signaux* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 144 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md index 2074dcc0f662d4..56816cb56324d3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md @@ -15,7 +15,7 @@ displayed_sidebar: docs #### Description -**CLEAR SET** efface *ensemble* de la mémoire et la libère ainsi pour d'autres utilisations. **CLEAR SET** n'a aucune conséquence sur les tables, sélections ou enregistrements. Pour sauvegarder un ensemble avant de l'effacer, utiliser la commande [SAVE SET](save-set.md). Comme les ensembles consomment de la mémoire, pensez à les effacer dès qu'ils ne sont plus nécessaires. +**CLEAR SET** efface *ensemble* de la mémoire et la libère ainsi pour d'autres utilisations.n'a aucune conséquence sur les tables, sélections ou enregistrements. Pour sauvegarder un ensemble avant de l'effacer, utiliser la commande [SAVE SET](save-set.md). Comme les ensembles consomment de la mémoire, pensez à les effacer dès qu'ils ne sont plus nécessaires. #### Exemple @@ -25,4 +25,13 @@ Reportez-vous à l'exemple de la commande [USE SET](use-set.md). [CREATE EMPTY SET](create-empty-set.md) [CREATE SET](create-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 117 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md index daa6e6b0102baf..ef45b6dac9227e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md @@ -43,4 +43,13 @@ Dans un formulaire, vous utilisez une liste déroulante appelée *asMalListeD* n #### Voir aussi -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 89 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md index b12456fd94af2a..9391330fdada60 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Clickcount** retourne, dans le contexte d'un événement clic, le nombre de fois que l'utilisateur a cliqué de manière répétée avec le même bouton de la souris. Typiquement, la commande retourne 2 pour un double-clic. @@ -61,3 +58,13 @@ Les libellés ne sont pas saisissables mais ils peuvent le devenir après un tri     End case  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1332 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md index cc4c810ab3f132..733db397eb9dde 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md @@ -36,4 +36,13 @@ L'exemple suivant permet à l'utilisateur de créer un nouveau document, écrit [Append document](append-document.md) [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 267 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md index 07cfe5d0519efe..2cee44e52554fa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CLOSE PRINTING JOB** permet de refermer la tâche d’impression préalablement ouverte par la commande [OPEN PRINTING JOB](open-printing-job.md) et d’envoyer à l’imprimante courante le document d’impression éventuellement construit. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### Voir aussi -[OPEN PRINTING JOB](open-printing-job.md) \ No newline at end of file +[OPEN PRINTING JOB](open-printing-job.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 996 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md index ba19ea672f41ea..18470602f82046 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CLOSE RESOURCE FILE** referme le fichier de ressources dont vous avez passé le numéro de référence dans *resFichier*. @@ -30,4 +27,13 @@ N'oubliez pas d'appeler finalement **CLOSE RESOURCE FILE** pour un fichier de re #### Voir aussi -[Open resource file](open-resource-file.md) \ No newline at end of file +[Open resource file](open-resource-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 498 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md index 3313ac53d2a1b2..e1f855df727d90 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **CLOSE WINDOW** referme la dernière fenêtre créée à l'aide de la commande [Open window](open-window.md) ou [Open form window](open-form-window.md) dans le process courant. S'il n'y a pas de fenêtre personnalisée ouverte, **CLOSE WINDOW** ne fait rien ; la commande ne ferme pas les fenêtres système. Si **CLOSE WINDOW** est appelée alors qu'un formulaire est actif dans la fenêtre, elle n'a pas d'effet non plus. Vous devez appeler **CLOSE WINDOW** lorsque vous avez fini d'utiliser une fenêtre ouverte avec [Open window](open-window.md) ou [Open form window](open-form-window.md). @@ -40,4 +37,13 @@ L'exemple suivant ouvre une fenêtre formulaire et crée des enregistrements à #### Voir aussi [Open form window](open-form-window.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 154 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md index 775301f692c0e1..49eee0475af832 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md @@ -64,4 +64,13 @@ Vous voulez copier différentes valeurs de propriété d'une collection d'objets #### Voir aussi [ARRAY TO COLLECTION](array-to-collection.md) -*Conversions de type entre les collections et les tableaux 4D* \ No newline at end of file +*Conversions de type entre les collections et les tableaux 4D* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1562 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md index 9cec8e5a354ab3..9d59956377a302 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md @@ -49,4 +49,13 @@ Résultat : #### Voir aussi -[TRANSFORM PICTURE](transform-picture.md) \ No newline at end of file +[TRANSFORM PICTURE](transform-picture.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 987 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md index 54bbfc9f47554d..937ee98d3e30f4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -La fonction **Command name** retourne le nom ainsi que (optionnellement) les propriétés de la commande dont le numéro a été passé dans *commande*. - -**Note :** Le numéro de chaque commande est indiqué dans l'Explorateur ainsi que dans la zone Propriétés de cette documentation. +La fonction **Command name** retourne le nom ainsi que (optionnellement) les propriétés de la commande dont le numéro a été passé dans *commande*.Le numéro de chaque commande est indiqué dans l'Explorateur ainsi que dans la zone Propriétés de cette documentation. **Note de compatibilité :** Le nom d'une commande pouvant varier au fil des versions de 4D (commandes renommées) ou en fonction de la langue de l'application, cette commande était utilisée dans les versions précédentes du programme pour désigner une commande directement via son numéro, en particulier dans les parties de code non tokenisées. Ce besoin a diminué au fil des évolutions de 4D, car pour les instructions non tokenisées (formules), 4D propose désormais une *syntaxe tokenisée* permettant de s'affranchir des variations des noms de commandes mais aussi des autres éléments comme les tables, tout en permettant de les saisir de façon lisible (pour plus d'informations sur ce point, reportez-vous à la section *Utiliser des tokens dans les formules*). Par ailleurs, par défaut la version anglaise du langage est utilisée à compter de 4D v15 (toutefois l'option "Utiliser langage français et paramètres régionaux système" de la [Is a list](is-a-list.md) des Préférences permet de continuer à utiliser la version française dans un 4D français). @@ -103,4 +101,14 @@ Par exemple, pour la commande "STOCKER ENREGISTREMENT", numéro 53, vous pouvez #### Voir aussi [EXECUTE FORMULA](execute-formula.md) -*Process 4D préemptifs* \ No newline at end of file +*Process 4D préemptifs* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 538 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md index fea7ba89fbc040..277290db9eee72 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md @@ -67,4 +67,14 @@ Si l’opération de compactage s’est déroulée correctement, la variable sys #### Voir aussi [Table fragmentation](table-fragmentation.md) -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 937 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md index 5578aff3948f05..941ac1d9113627 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md @@ -104,4 +104,13 @@ Les exemples suivants illustrent l'incidence des options dans le **contexte de l #### Voir aussi -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1756 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md index 63ef596e42e3b4..696b295fd4329d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md @@ -32,4 +32,13 @@ Pour plus d'informations sur les composants 4D, reportez-vous au manuel *Mode D #### Voir aussi -[PLUGIN LIST](plugin-list.md) \ No newline at end of file +[PLUGIN LIST](plugin-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1001 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md index da4f2c39b5e9cb..c2d68a728550e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md @@ -92,4 +92,14 @@ La variable OK prend la valeur 1 si le BLOB a été correctement compressé, sin #### Voir aussi [BLOB PROPERTIES](blob-properties.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 534 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md index 0b1bf7247d3369..10e73e6975d5d8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md @@ -90,4 +90,14 @@ La ligne : #### Voir aussi [ALERT](alert.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 162 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md index 12c65cc0f4f22e..a8bd145d277664 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Contextual click** retourne Vrai si un clic de type contextuel a été effectué : @@ -42,4 +39,13 @@ Cette méthode, associée à une zone de défilement, permet de changer la valeu #### Voir aussi [Form event code](../commands/form-event-code.md) -[Right click](right-click.md) \ No newline at end of file +[Right click](right-click.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 713 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md index 5488572a281884..b15bd3028b4dee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CONVERT COORDINATES** permet de convertir les coordonnées (x;y) d'un point depuis un système de coordonnées vers un autre système de coordonnées. Les systèmes de coordonnées pris en charge sont les formulaires (ainsi que les sous-formulaires), les fenêtres et l'écran. Par exemple, vous pouvez utiliser cette commande pour obtenir les coordonnées, dans le formulaire principal, d'un objet appartenant à un sous-formulaire. Ce principe facilite notamment la création de menus contextuels à des emplacements personnalisés. @@ -88,4 +85,13 @@ Vous souhaitez créer une fenêtre pop up à l'emplacement du curseur de la sour [GET WINDOW RECT](get-window-rect.md) [OBJECT GET COORDINATES](object-get-coordinates.md) [OBJECT SET COORDINATES](object-set-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1365 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md index ca837f65b2eaff..8b8aa9cb2223d9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md @@ -184,4 +184,14 @@ Si la commande a été correctement exécutée, la variable OK prend la valeur 1 #### Voir aussi -[Convert to text](convert-to-text.md) \ No newline at end of file +[Convert to text](convert-to-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1011 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md index 05afd10a5e5c41..698be3c5e8687f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md @@ -48,4 +48,13 @@ Exemples sous Windows : [Convert path system to POSIX](convert-path-system-to-posix.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1107 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md index 36187ce2c268f4..c0ed82e2c4028b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md @@ -60,4 +60,13 @@ Exemple sous Windows [Convert path POSIX to system](convert-path-posix-to-system.md) [Object to path](object-to-path.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1106 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md index bc4a2930930f07..d2a8c17c2c48d2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md @@ -48,4 +48,13 @@ Conversion d’une image avec une qualité de 60 % : #### Voir aussi -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1002 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md index 162948a735ddd1..5e025a25b554b1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md @@ -29,4 +29,14 @@ Si la commande a été correctement exécutée, la variable OK prend la valeur 1 #### Voir aussi -[CONVERT FROM TEXT](convert-from-text.md) \ No newline at end of file +[CONVERT FROM TEXT](convert-from-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1012 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md index 37fcb0e6c77775..a9bb3661825c1b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **COPY ARRAY** crée ou remplace le tableau *destination* avec les mêmes contenu, taille et type que le tableau *source*. - -**Note** : Pour les tableaux numériques de différents types, le type du tableau de destination est conservé. +La commande **COPY ARRAY** crée ou remplace le tableau *destination* avec les mêmes contenu, taille et type que le tableau *source*.: Pour les tableaux numériques de différents types, le type du tableau de destination est conservé. Les tableaux *source* et *destination* peuvent être des tableaux locaux, process ou interprocess. La portée du tableau n'a pas d'importance lors de la duplication des tableaux. @@ -36,3 +34,13 @@ L'exemple suivant remplit un tableau C. Un nouveau tableau, "D", est ensuite cr  SELECTION TO ARRAY([Contacts]Société;C) // Remplir le tableau C avec les données du champ  COPY ARRAY(C;D) // Copier le tableau C dans le tableau D ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 226 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md index 368437a9b40153..f170afdaebad1c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md @@ -28,4 +28,13 @@ Notez que le BLOB de destination peut être redimensionné si nécessaire. #### Voir aussi [DELETE FROM BLOB](delete-from-blob.md) -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 558 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md index 2f53097a72ab72..8be14064455cdd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md @@ -19,8 +19,6 @@ displayed_sidebar: docs #### Description La commande **COPY DOCUMENT** copie le fichier ou dossier désigné par *nomSource* à l'emplacement désigné par *nomDest* et le renomme optionnellement. - -* **Copie de fichier** Dans ce cas, le paramètre *nomSource* peut contenir : * soit un chemin d'accès complet de fichier, exprimé par rapport à la racine du volume, * soit un chemin d'accès relatif au dossier de la base. @@ -122,4 +120,14 @@ Les exemples suivants créent différents fichiers et dossiers dans le dossier d #### Voir aussi [MOVE DOCUMENT](move-document.md) -*Présentation des documents système* \ No newline at end of file +*Présentation des documents système* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 541 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md index c38af7197eacf2..ed3dc4e725fe37 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Copy list** duplique la liste dont vous passez le numéro de référence dans le paramètre *liste* et retourne le numéro de référence de la nouvelle liste. @@ -27,4 +24,13 @@ Le contenu de la liste copiée est entièrement dupliqué. Une fois que vous en [CLEAR LIST](clear-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 626 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md index 86eb223dbd9506..4bd452efa96a8c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md @@ -51,4 +51,13 @@ L'exemple suivant permet de vérifier s'il y a des factures impayées dans la ta [CLEAR NAMED SELECTION](clear-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 331 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md index 6fb07c80807add..f10fb402d2e771 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md @@ -79,4 +79,13 @@ Puisque la commande retourne une collection, elle peut être utilisée avec **.j #### Voir aussi -[Count parameters](count-parameters.md) \ No newline at end of file +[Count parameters](count-parameters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1790 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md index d1278914183a05..c07bf319ebb874 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md @@ -38,4 +38,13 @@ L'exemple suivant, en client/serveur, copie l'ensemble process "*SetA*", conserv #### Voir aussi -*Présentation des ensembles* \ No newline at end of file +*Présentation des ensembles* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 600 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cos.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cos.md index 75715e06b21474..115050b12c65c8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cos.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cos.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 18 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md index 582930de01f6e7..5d08a7af65a7cf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md @@ -56,4 +56,13 @@ Vous voulez compter les références d'objets dans un tableau d'objets : #### Voir aussi [Find in array](find-in-array.md) -[Find in sorted array](find-in-sorted-array.md) \ No newline at end of file +[Find in sorted array](find-in-sorted-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 907 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md index e1a234b0dfd010..989d8788f8b527 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **Count list items** retourne soit le nombre d'éléments visibles soit le nombre total d'éléments dans la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -60,4 +57,13 @@ Voici la liste *hList* affichée en mode Application : #### Voir aussi [List item position](list-item-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 380 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md index f72c4634503b09..8edc2c94aa88bd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Count menu items** retourne le nombre de lignes (commandes) de menus présentes dans le menu dont vous avez passé le numéro ou la référence dans *menu.* @@ -28,4 +25,14 @@ Si vous omettez le paramètre *process*, **Count menu items** s'applique à la b #### Voir aussi -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 405 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md index ef257e96d274fc..7f8628749dacc0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Count menus** retourne le nombre de menus présents dans la barre de menus. @@ -25,4 +22,14 @@ Si vous omettez le paramètre *process*, **Count menus** s'applique à la barre #### Voir aussi -[Count menu items](count-menu-items.md) \ No newline at end of file +[Count menu items](count-menu-items.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 404 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md index 891325c945bae3..b66a37b521ddd7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Count parameters** retourne le nombre de paramètres passés à une méthode projet. - -**ATTENTION :** **Count parameters** n'a d'intérêt que dans une méthode projet appelée par une autre méthode (projet ou non). Si la méthode projet qui appelle **Count parameters** est associée à une commande de menu, la fonction retourne 0. +**Count parameters** retourne le nombre de paramètres passés à une méthode projet.**Count parameters** n'a d'intérêt que dans une méthode projet appelée par une autre méthode (projet ou non). Si la méthode projet qui appelle **Count parameters** est associée à une commande de menu, la fonction retourne 0. #### Exemple 1 @@ -93,4 +91,13 @@ ou : #### Voir aussi *Commandes du thème Compilateur* -[Copy parameters](copy-parameters.md) \ No newline at end of file +[Copy parameters](copy-parameters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 259 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md index f0dc4247ea3635..b8c1503626d5ed 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Count screens** retourne le nombre de moniteurs qui sont connectés à votre machine. @@ -26,4 +23,13 @@ displayed_sidebar: docs [SCREEN COORDINATES](screen-coordinates.md) [SCREEN DEPTH](screen-depth.md) [Screen height](screen-height.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 437 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md index f1f4cdf1f751e3..d8b145c55077b4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md @@ -28,4 +28,13 @@ Référez-vous à l'exemple de [Process state](process-state.md) et [Semaphore]( [Count user processes](count-user-processes.md) [Count users](count-users.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 335 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md index dd9274659d8668..121599e0228674 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md @@ -22,4 +22,13 @@ displayed_sidebar: docs #### Voir aussi [Count tasks](count-tasks.md) -[Count users](count-users.md) \ No newline at end of file +[Count users](count-users.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 343 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md index 49fe607b09302a..a216267984e8ff 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md @@ -22,4 +22,13 @@ Dans le cas d'une version monoposte de 4D, **Count users** retourne 1. #### Voir aussi [Count tasks](count-tasks.md) -[Count user processes](count-user-processes.md) \ No newline at end of file +[Count user processes](count-user-processes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 342 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md index a452eea31930b6..f520127ad8b8a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md @@ -66,4 +66,14 @@ La variable système OK prend la valeur 1 si la commande a été correctement ex #### Voir aussi -[RESOLVE ALIAS](resolve-alias.md) \ No newline at end of file +[RESOLVE ALIAS](resolve-alias.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 694 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md index 1b4e0e9310ad79..289a6ae945d33b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md @@ -25,4 +25,13 @@ Avant de lancer l’opération, la commande vérifie que le chemin spécifié ne #### Voir aussi -[OPEN DATA FILE](open-data-file.md) \ No newline at end of file +[OPEN DATA FILE](open-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 313 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md index 110b71622977a4..f13de363c0dc94 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Create deployment license** crée un fichier de licence intégré dans le dossier Licences de l'application construite par la *mergedApp*. Si le dossier Licences n'existe pas dans la *mergedApp*, il est créé par la commande. @@ -60,4 +57,13 @@ La commande renvoie un objet *status* contenant les propriétés suivantes : #### Voir aussi - \ No newline at end of file + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1811 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md index e68cffc41762ce..5be4bf1e30e2eb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md @@ -67,4 +67,14 @@ Si le document est correctement créé, la variable système OK prend la valeur #### Voir aussi [Append document](append-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 266 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md index 61055f942ad357..64b8e9d71c8b62 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md @@ -27,4 +27,13 @@ Reportez-vous à l'exemple proposé dans la section *Présentation des ensembles #### Voir aussi [CLEAR SET](clear-set.md) -[CREATE SET](create-set.md) \ No newline at end of file +[CREATE SET](create-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 140 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md index f724fe103a7601..588b02f681c5ae 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md @@ -70,4 +70,14 @@ Création du sous-dossier "\\February\\" dans le dossier existant "C:\\Archives\ #### Voir aussi [FOLDER LIST](folder-list.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 475 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md index 31d5ab7010d849..25ee5d27d3840e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md @@ -86,4 +86,13 @@ Création d’un index composite sur les champs “CodePostal” et “Ville” [DELETE INDEX](delete-index.md) [RESUME INDEXES](resume-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 966 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md index b966d2141ef332..682bb03d09391e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Create menu** permet de créer un nouveau menu en mémoire. Ce menu n’existera qu’en mémoire et ne sera pas ajouté dans l’éditeur de menus en mode Développement. Toute modification effectuée sur ce menu durant la session sera immédiatement répercutée à l’ensemble des instances de ce menu et ce, dans tous les process de la base. @@ -42,4 +39,13 @@ Reportez-vous à l'exemple de la commande [SET MENU BAR](set-menu-bar.md). [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 408 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md index 96a90d500cc305..779aadfb8ee6b3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md @@ -45,4 +45,14 @@ L'exemple suivant archive les enregistrements datant de plus de 30 jours. Cette [ADD RECORD](add-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 68 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md index c1ba3402b47f27..ad408af0334b6b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md @@ -21,4 +21,13 @@ Si un enregistrement lié existe déjà, la commande **CREATE RELATED ONE** a al #### Voir aussi -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 65 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md index 1e5a44b023c918..dc78d6662aadcb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md @@ -20,9 +20,7 @@ displayed_sidebar: docs La commande **CREATE SELECTION FROM ARRAY** construit la sélection temporaire *nom* à partir : * soit du tableau de numéros d’enregistrements absolus *tabEnrg* de *laTable*, -* soit du tableau de booléens *tabEnrg* ; dans ce cas, les valeurs du tableau indiquent l’appartenance (Vrai) ou non (Faux) de chaque enregistrement de *laTable* à la sélection *nom*. - -**Attention** : Une sélection nommée est créée et chargée en mémoire. Par conséquent, assurez-vous que vous disposez de suffisamment de mémoire avant d'exécuter cette commande. +* soit du tableau de booléens *tabEnrg* ; dans ce cas, les valeurs du tableau indiquent l’appartenance (Vrai) ou non (Faux) de chaque enregistrement de *laTable* à la sélection *nom*.: Une sélection nommée est créée et chargée en mémoire. Par conséquent, assurez-vous que vous disposez de suffisamment de mémoire avant d'exécuter cette commande. Si vous ne passez pas le paramètre *nom* ou si vous passez une chaîne vide, la commande s’appliquera à la sélection courante de *laTable*, qui sera donc mise à jour. @@ -47,4 +45,15 @@ Si un numéro d'enregistrement est invalide (enregistrement non créé), l’err [CREATE SET FROM ARRAY](create-set-from-array.md) [LONGINT ARRAY FROM SELECTION](longint-array-from-selection.md) [SELECTION TO ARRAY](selection-to-array.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 640 | +| Thread safe | ✓ | +| Modifie les variables | error | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md index eabc756fb7040c..4dc47fd05dbe1e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md @@ -37,4 +37,14 @@ Dans un tableau d'entier longs, si un numéro d'enregistrement est invalide (enr #### Voir aussi [BOOLEAN ARRAY FROM SET](boolean-array-from-set.md) -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 641 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md index 05334d5493f2da..c87a35d2f17464 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md @@ -31,4 +31,13 @@ L'exemple suivant crée un ensemble après qu'une recherche ait été effectuée #### Voir aussi [CLEAR SET](clear-set.md) -[CREATE EMPTY SET](create-empty-set.md) \ No newline at end of file +[CREATE EMPTY SET](create-empty-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 116 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md index 810024ce33bc5d..af8875438c597d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md @@ -53,3 +53,13 @@ Imagettes résultantes (48x48) **Note :** Avec les modes “Proportionnelle” et “Proportionnelle centrée”, les espaces vides apparaîtront blancs dans les imagettes — lorsque ces modes sont appliqués aux champs ou variables images dans les formulaires 4D, les espaces vides sont transparents. Le paramètre *profondeur* est ignoré et doit être omis. La commande utilise toujours la profondeur écran (nombre de couleurs) courante. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 679 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md index 1f3245eb763756..d28554e21b3d5a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md @@ -72,3 +72,13 @@ Avec ce paramétrage, aucune boîte de dialogue d'identification n'est affichée * réplication de l'Active Directory dans les noms d'utilisateurs et groupes de 4D, permettant une correspondance automatique, * utilisation d'une table \[Utilisateurs\] personnalisée, * utilisation des fonctions LDAP afin de récupérer les droits d'accès de l'utilisateur. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1355 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md index f60ad9d3d9a3b1..bc84edf873a31d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -**Current date** retourne la date courante telle que définie dans l'horloge système de la machine. - -**4D Server** **:** Si vous passez le paramètre astérisque (\*) — lors d'une exécution sur un poste 4D Client —, la fonction retourne la date du jour telle que définie dans l'horloge du poste serveur. +**Current date** retourne la date courante telle que définie dans l'horloge système de la machine.**:** Si vous passez le paramètre astérisque (\*) — lors d'une exécution sur un poste 4D Client —, la fonction retourne la date du jour telle que définie dans l'horloge du poste serveur. #### Exemple 1 @@ -97,4 +95,13 @@ La méthode projet suivante vous permet de traiter cette question : [Day of](day-of.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 33 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md index c8e04d0637b628..f1122675d79d96 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md @@ -29,4 +29,13 @@ La ligne de code suivante inscrit le nom de la table courante par défaut dans l [DEFAULT TABLE](default-table.md) [Table](table.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 363 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md index 5485350fd91ee7..1fa45202784afe 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Current form name** retourne le nom du formulaire courant défini pour le process. Le formulaire courant peut être un formulaire projet ou un formulaire table. @@ -59,4 +56,13 @@ Vous souhaitez obtenir le formulaire courant si c’est un formulaire projet : #### Voir aussi -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1298 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md index d5f6837e2cbbf0..127def8f34a2ab 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **Current form table** retourne un pointeur vers la table à laquelle appartient le formulaire affiché à l'écran ou imprimé dans le process courant. @@ -61,4 +58,13 @@ Dans votre application, vous utilisez la convention suivante : au moment de l'af [DIALOG](../commands/dialog.md) [FORM SET INPUT](form-set-input.md) [FORM SET OUTPUT](form-set-output.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 627 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md index 5ad66a09e69042..eb98d80e7e5251 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Current form window** retourne la référence de la fenêtre du formulaire courant. S’il n’y a pas de fenêtre définie pour le formulaire courant, la commande retourne 0. @@ -26,4 +23,13 @@ La fenêtre du formulaire courant peut avoir été générée automatiquement pa [Open form window](open-form-window.md) [Open window](open-window.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 827 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md index 200b1feb588f89..c92ee47cc2378d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md @@ -29,4 +29,13 @@ Même si vous n'utilisez pas la version client/serveur de 4D, votre application #### Voir aussi -[Current system user](current-system-user.md) \ No newline at end of file +[Current system user](current-system-user.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 483 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md index 93b1d389ad21f2..d8ec99a5d4f144 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md @@ -37,3 +37,13 @@ En fonction du type de méthode d’appel, la chaîne retournée peut prendre l Cette commande ne doit pas être appelée depuis une formule 4D. **Note :** Pour que cette commande fonctionne en mode compilé, elle ne doit pas figurer dans le code dont le contrôle d'exécution a été désactivé. Voir *Contrôle d’exécution*. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 684 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md index 60b03bbbb4f83d..affd775dbc230c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md @@ -15,11 +15,18 @@ displayed_sidebar: docs #### Description -La commande **Current method path** retourne le chemin d’accès interne de la méthode base, du trigger, de la méthode projet, méthode formulaire ou méthode objet en cours d’exécution. - -**Note :** Dans le contexte des macro-commandes 4D, la balise ** est remplacée par le chemin d’accès complet du code en cours d’édition. +La commande **Current method path** retourne le chemin d’accès interne de la méthode base, du trigger, de la méthode projet, méthode formulaire ou méthode objet en cours d’exécution.Dans le contexte des macro-commandes 4D, la balise ** est remplacée par le chemin d’accès complet du code en cours d’édition. #### Voir aussi [METHOD Get path](method-get-path.md) -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1201 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md index 88e4ed947d59e4..4646c1ddc4eba4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md @@ -31,4 +31,13 @@ Vous voulez appeler un process worker et lui passer comme paramètre le nom du p *A propos des workers* [CALL WORKER](call-worker.md) -[KILL WORKER](kill-worker.md) \ No newline at end of file +[KILL WORKER](kill-worker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1392 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md index 709a2a06ac8c45..0ab8dc632d7f73 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md @@ -25,4 +25,13 @@ Référez-vous aux exemples de [DELAY PROCESS](delay-process.md) et [Process inf [Process number](process-number.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 322 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md index ebd30d5032ffc3..d0b182cfadd25d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md @@ -23,4 +23,13 @@ Reportez-vous à l'exemple de la commande [Current machine](current-machine.md). #### Voir aussi -[Current machine](current-machine.md) \ No newline at end of file +[Current machine](current-machine.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 484 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md index d0eb656cbf5b24..e5c2ad938ae6f0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md @@ -48,4 +48,13 @@ L'exemple suivant extrait les heures, minutes et secondes de l'heure courante : [Milliseconds](milliseconds.md) [String](string.md) -[Tickcount](tickcount.md) \ No newline at end of file +[Tickcount](tickcount.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 178 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md index decb7b41521ad5..49882fbe11dce5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md @@ -37,4 +37,13 @@ Reportez-vous à l'exemple de la commande [User in group](user-in-group.md). [CHANGE CURRENT USER](change-current-user.md) [CHANGE PASSWORD](change-password.md) [SET USER ALIAS](set-user-alias.md) -[User in group](user-in-group.md) \ No newline at end of file +[User in group](user-in-group.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 182 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md index 57ede039b8ab07..cf6b8ac81128b7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md @@ -35,4 +35,14 @@ La méthode suivante vide la sélection courante de la table *\[Clients\]* : [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 334 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md index 25829e06b6b0f7..c8f12645a8a371 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md @@ -67,4 +67,13 @@ Vous souhaitez connaitre le statut de chiffrement d'un fichier de données corre #### Voir aussi -[Encrypt data file](encrypt-data-file.md) \ No newline at end of file +[Encrypt data file](encrypt-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1609 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md index 2b760ffa61e7ba..fef0bc56a977fc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md @@ -31,4 +31,13 @@ Si, par exemple, vous travaillez avec la base MesCDs qui se trouve dans le dossi #### Voir aussi [Application file](application-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 490 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md index f06be126872e4c..9cc346c67707ab 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md @@ -326,3 +326,13 @@ Vous souhaitez obtenir les mesures d'octets lus dans le cache au cours des deux  OB SET($oParams;"historyLength";2*60)  $measures:=Database measures($oParams) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1314 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/date.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/date.md index 2bf900775fc1ca..44b4e4c47b5553 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/date.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/date.md @@ -93,4 +93,13 @@ Vous souhaitez lire une date depuis un attribut d'objet, quelle que soit l'optio #### Voir aussi [Bool](bool.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 102 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md index 25b06bd9e23d19..0ea06fdd0627d6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La fonction **Day number** retourne un numéro représentant le jour de la semaine auquel *laDate* correspond. - -**Note :** Si une date nulle est passée à **Day number**, la fonction retourne 2\. +La fonction **Day number** retourne un numéro représentant le jour de la semaine auquel *laDate* correspond.Si une date nulle est passée à **Day number**, la fonction retourne 2\. 4D fournit les constantes prédéfines suivantes, placées dans le thème "*Jours et mois*" : @@ -60,4 +58,13 @@ L'exemple suivant est une fonction qui retourne le jour d'aujourd'hui sous forme #### Voir aussi -[Day of](day-of.md) \ No newline at end of file +[Day of](day-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 114 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md index 971bb36a98ae12..076a42819ad0f7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -**Day of** retourne le jour du mois de *laDate*. - -**Note :** **Day of** retourne une valeur entre 1 et 31\. Pour obtenir le numéro du jour de la semaine pour une date, vous devez utiliser la commande [Day number](day-number.md). +**Day of** retourne le jour du mois de *laDate*.**Day of** retourne une valeur entre 1 et 31\. Pour obtenir le numéro du jour de la semaine pour une date, vous devez utiliser la commande [Day number](day-number.md). #### Exemple 1 @@ -37,4 +35,13 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md). [Day number](day-number.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 23 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md index bc699b4504bb11..9d9933bb7099bb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Deactivated** retourne Vrai dans une méthode formulaire ou méthode objet lorsque la fenêtre appartenant au process du premier plan, contenant le formulaire, passe à l'arrière-plan. @@ -27,4 +24,13 @@ Si vous voulez que le cycle d'exécution **Deactivated** soit généré, vérifi #### Voir aussi [Activated](activated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 347 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dec.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dec.md index ca6a7a603c3eae..e23cde963a20e5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dec.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dec.md @@ -29,4 +29,13 @@ L'exemple suivant utilise une valeur monétaire exprimée sous forme numérique #### Voir aussi -[Int](int.md) \ No newline at end of file +[Int](int.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 9 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md index 0f00b43ea4b29c..11dabd306d0af1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md @@ -34,4 +34,13 @@ Reportez-vous aux exemples de la commande [ENCRYPT BLOB](encrypt-blob.md). #### Voir aussi [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 690 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md index fd8010e4650c6c..fcea11dbef4ed8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md @@ -57,4 +57,13 @@ Les paramètres *passPhrase* et le *salt* utilisés pour le déchiffrement sont [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1774 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md index 3a4017f3dbe2cc..cb54d855c42db8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md @@ -76,4 +76,13 @@ Voici le résultat lorsqu'une table par défaut est définie : #### Voir aussi [Current default table](current-default-table.md) -[NO DEFAULT TABLE](no-default-table.md) \ No newline at end of file +[NO DEFAULT TABLE](no-default-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 46 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md index c2960a87bf5722..378e27a8f20fd2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md @@ -37,4 +37,13 @@ Reportez-vous à l'exemple de la fonction [Process number](process-number.md). #### Voir aussi [HIDE PROCESS](hide-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 323 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md index c87e44fa8bcc64..5adb07c8b27d92 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md @@ -46,4 +46,14 @@ La suppression d'un document met la variable système OK à 1\. Si **DELETE DOCU #### Voir aussi -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 159 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md index 2d2a9ee0b24735..a487b92088c5fe 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md @@ -41,4 +41,14 @@ Vous pouvez intercepter ces erreurs à l’aide d’une méthode installée par #### Voir aussi -[DELETE DOCUMENT](delete-document.md) \ No newline at end of file +[DELETE DOCUMENT](delete-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 693 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md index 8eaa64b9e316fc..8e95ae7cd9ffc3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md @@ -43,4 +43,13 @@ L'exemple suivant supprime le dernier élément d'un tableau, s'il existe : #### Voir aussi [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 228 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md index 0e01734dc4658c..ed441bdfc656d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### Voir aussi -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 560 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md index 99cfc7998566dd..b9517a9487bd0f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **DELETE FROM LIST** supprime l'élément désigné par le paramètre *réfElément* de la liste dont le numéro de référence ou le nom d'objet est passé dans *liste*. @@ -43,4 +40,13 @@ L'exemple suivant supprime l'élément sélectionné de la liste *hList*. Si une #### Voir aussi [CLEAR LIST](clear-list.md) -[GET LIST ITEM](get-list-item.md) \ No newline at end of file +[GET LIST ITEM](get-list-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 624 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md index 2be3fd5a6ed4ce..02563dc9b4d54c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md @@ -44,4 +44,13 @@ Cet exemple illustre les deux syntaxes de la commande : [CREATE INDEX](create-index.md) [PAUSE INDEXES](pause-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 967 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md index 8f3afd64b73f48..8d28694d9be757 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **DELETE MENU ITEM** supprime la ligne de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -34,4 +31,14 @@ Si vous omettez le paramètre *process*, **DELETE MENU ITEM** s'applique à la b #### Voir aussi [APPEND MENU ITEM](append-menu-item.md) -[INSERT MENU ITEM](insert-menu-item.md) \ No newline at end of file +[INSERT MENU ITEM](insert-menu-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 413 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md index 18efb5706b1c39..a78d4eadbf3ba1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md @@ -41,4 +41,14 @@ L'exemple suivant permet de supprimer l'enregistrement d'un employé. La méthod #### Voir aussi [Locked](locked.md) -*Présentation des triggers* \ No newline at end of file +*Présentation des triggers* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 58 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md index 6448e588c8dd95..d71515c21d1df7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md @@ -63,4 +63,14 @@ Lorsqu'un **DELETE SELECTION** rencontre un enregistrement verrouillé, celui-ci [MODIFY SELECTION](modify-selection.md) *Présentation des ensembles* [TRUNCATE TABLE](truncate-table.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 66 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md index f568a9b3b8ca14..962d1d66d4ca71 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -**Delete string** supprime *nbCars* dans *source* à partir de *positionDépart* et retourne la chaîne résultante. - -**Delete string** retourne la même chaîne que *source* dans les cas suivants : +**Delete string** supprime *nbCars* dans *source* à partir de *positionDépart* et retourne la chaîne résultante.retourne la même chaîne que *source* dans les cas suivants : * *source* est une chaîne vide, * *positionDépart* est supérieur à la longueur de *source*, @@ -44,4 +42,13 @@ L'exemple suivant illustre l'utilisation de **Delete string**. Les résultats so [Change string](change-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 232 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md index 086632c4145e69..91fe6d9ffa093e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **DELETE USER** supprime l'utilisateur dont le numéro est passé dans *réfUtilisateur*. Vous devez passer un numéro valide d'utilisateur, retourné par la commande [GET USER LIST](get-user-list.md). @@ -35,4 +32,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler **DELETE USER** ou si u [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 615 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md index 2b6c192bf69556..1ef67ae00c45e3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md @@ -66,4 +66,13 @@ $vResultPath : #### Voir aussi [Last query path](last-query-path.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1044 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/difference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/difference.md index 6f17826a64a294..d86281063ec128 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/difference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/difference.md @@ -54,4 +54,13 @@ Un bouton associé à une méthode objet est placé en bas de la liste. La méth #### Voir aussi [INTERSECTION](intersection.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 122 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md index 18f6e47497fd8b..d9a6c499ebc348 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **DISABLE MENU ITEM** désactive la commande de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -32,4 +29,14 @@ Si vous omettez le paramètre *process*, **DISABLE MENU ITEM** s'applique à la #### Voir aussi -[ENABLE MENU ITEM](enable-menu-item.md) \ No newline at end of file +[ENABLE MENU ITEM](enable-menu-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 150 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md index 506aab842ced72..2a9ae90221292c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md @@ -48,4 +48,13 @@ Les fichiers de clés (fichiers d'extension ".4DKeyChain") doivent être stocké #### Voir aussi -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1639 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md index 2ce0f001072434..130c19c4cf6ef1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **DISPLAY NOTIFICATION** provoque l’affichage d’un message de notification à destination de l'utilisateur. @@ -42,4 +39,13 @@ Sous Windows, la fenêtre du message reste affichée tant qu'aucune activité n' #### Voir aussi -[ALERT](alert.md) \ No newline at end of file +[ALERT](alert.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 910 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md index b72bed80ac1eb4..4c2e4be4c86cbe 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **DISPLAY RECORD** affiche l'enregistrement courant de *laTable* dans le formulaire entrée courant. L'enregistrement reste affiché jusqu'à ce qu'un événement provoque un redessinement de la fenêtre. Cet événement peut être l'exécution d'un [ADD RECORD](add-record.md), le retour au formulaire entrée ou à la barre de menus. **DISPLAY RECORD** ne fait rien s'il n'y a pas d'enregistrement courant. @@ -40,4 +37,13 @@ L'exemple suivant affiche une série d'enregistrements sous forme de slide show #### Voir aussi -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 105 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md index a70c13ca21e00e..2dfbe2651c525e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **DISPLAY SELECTION** affiche, pour le process en cours, la sélection courante de *laTable* dans le formulaire sortie courant. Les enregistrements sont affichés sous la forme d'une liste que l'on peut faire défiler, semblable à celle du mode Développement. Lorsque l'utilisateur double-clique sur un enregistrement, par défaut celui-ci s'affiche dans le formulaire entrée courant. La liste est placée dans la fenêtre de premier plan. @@ -94,4 +91,14 @@ Vous pouvez aussi utiliser d'autres commandes telles que [PRINT SELECTION](print [Form event code](../commands/form-event-code.md) [MODIFY SELECTION](modify-selection.md) -*Présentation des ensembles* \ No newline at end of file +*Présentation des ensembles* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 59 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md index c9a4c4b8a9f8e1..1b1661277702cf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Displayed line number** fonctionne uniquement dans le contexte de l’événement formulaire On Display Detail. Elle retourne le numéro de la ligne en cours de traitement durant l’affichage à l’écran d’une liste d’enregistrements ou des lignes d'une list box. Si **Displayed line number** est appelée en-dehors de l’affichage d’une liste ou d'une listbox, elle retourne 0. @@ -46,4 +43,13 @@ Cet exemple permet d’appliquer une couleur alternée à un formulaire liste af #### Voir aussi [Form event code](../commands/form-event-code.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 897 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md index 9eaf5b7c52fc8c..dc6a4a0760293b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md @@ -68,4 +68,13 @@ Le tableau *aTPaths* reçoit les éléments suivants : #### Voir aussi -[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) \ No newline at end of file +[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1395 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md index b15c45fbb4eb16..21652db2942702 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md @@ -94,4 +94,13 @@ Le tableau *aLChildNum* reçoit les éléments suivants : #### Voir aussi -[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) \ No newline at end of file +[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1397 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md index f383d8e8041740..c667415106ce15 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md @@ -79,4 +79,13 @@ Pour calculer des statistiques, vous voulez trier le nombre de valeurs distincte [GET TEXT KEYWORDS](get-text-keywords.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 339 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md index 10945b4fff5062..421e50f5ad7511 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **DOCUMENT LIST** remplit le tableau de type Texte *documents* avec les noms des documents situés à l'endroit que vous avez indiqué avec le paramètre *cheminAccès*. - -**Note :** Vous devez passer un chemin d'accès absolu dans le paramètre *cheminAccès*. +La commande **DOCUMENT LIST** remplit le tableau de type Texte *documents* avec les noms des documents situés à l'endroit que vous avez indiqué avec le paramètre *cheminAccès*.Vous devez passer un chemin d'accès absolu dans le paramètre *cheminAccès*. Par défaut, si vous omettez le paramètre *options*, seuls les noms des documents sont retournés dans le tableau *documents*. Vous pouvez modifier ce fonctionnement en passant dans le paramètre *options* une ou plusieurs des constantes suivantes, placées dans le thème *Documents système* : @@ -114,4 +112,14 @@ Liste de tous les documents en mode récursif POSIX (relatif) : #### Voir aussi [FOLDER LIST](folder-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 474 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md index c6eb38ecd275e3..04a672938cb146 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md @@ -49,4 +49,14 @@ Dans tous les cas, vous pouvez gérer les erreurs en utilisant la commande [ON E #### Voir aussi [BLOB TO DOCUMENT](blob-to-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 525 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md index 3988f813043715..ae34e14064ae5d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md @@ -76,4 +76,13 @@ Si vous exécutez ce code : #### Voir aussi *Documents système* -[TEXT TO DOCUMENT](text-to-document.md) \ No newline at end of file +[TEXT TO DOCUMENT](text-to-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1236 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md index d3fda650e827c5..575a4e90f69ace 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md @@ -144,4 +144,13 @@ Si le contenu de *valeurEnfant* est invalide, une erreur est retournée. #### Voir aussi [DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1080 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md index 72947486167de2..6f72c6cd9431a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md @@ -27,4 +27,13 @@ Voir l’exemple de la commande [DOM Insert XML element](dom-insert-xml-element. #### Voir aussi -[DOM Insert XML element](dom-insert-xml-element.md) \ No newline at end of file +[DOM Insert XML element](dom-insert-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1082 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md index 9a03928149c140..b399d738d23a2f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md @@ -26,4 +26,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM Parse XML source](dom-parse-xml-source.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 722 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md index fd31deaf7232cd..d4bb0091d10373 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md @@ -51,4 +51,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi -[DOM Count XML elements](dom-count-xml-elements.md) \ No newline at end of file +[DOM Count XML elements](dom-count-xml-elements.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 727 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md index c667f2680819c0..7f70ad7380f662 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **DOM Count XML elements** retourne le nombre d’éléments “enfants” dépendants de l’élément parent *refElément* et nommés *nomElément*. - -**Note :** Par défaut, **DOM Count XML elements** tient compte de la casse des caractères lors de l'évaluation du paramètre *nomElément* (par conformité avec le xml). Vous pouvez contrôler la sensibilité à la casse de cette commande à l'aide du sélecteur XML DOM case sensitivity de la commande [XML SET OPTIONS](xml-set-options.md). +La commande **DOM Count XML elements** retourne le nombre d’éléments “enfants” dépendants de l’élément parent *refElément* et nommés *nomElément*.Par défaut, **DOM Count XML elements** tient compte de la casse des caractères lors de l'évaluation du paramètre *nomElément* (par conformité avec le xml). Vous pouvez contrôler la sensibilité à la casse de cette commande à l'aide du sélecteur XML DOM case sensitivity de la commande [XML SET OPTIONS](xml-set-options.md). #### Variables et ensembles système @@ -28,4 +26,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM Get XML element](dom-get-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 726 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md index 77cdf979cfad3d..7283402977911f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md @@ -60,4 +60,13 @@ Pour cela, il suffit d'écrire : #### Voir aussi -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1097 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md index ff7443649627dd..a1f0bee18d04ce 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md @@ -150,4 +150,14 @@ Une erreur est générée lorsque : [DOM Create XML element arrays](dom-create-xml-element-arrays.md) [DOM Get XML element](dom-get-xml-element.md) -[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) \ No newline at end of file +[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 865 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md index abddf03770512b..edad40fbb4cbd0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md @@ -96,4 +96,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [DOM CLOSE XML](dom-close-xml.md) -[DOM SET XML DECLARATION](dom-set-xml-declaration.md) \ No newline at end of file +[DOM SET XML DECLARATION](dom-set-xml-declaration.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 861 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md index b7f7f00f72d66e..957ab2f9c925bb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md @@ -60,4 +60,14 @@ Une erreur est générée lorsque : #### Voir aussi [DOM EXPORT TO VAR](dom-export-to-var.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 862 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md index b0b7832414c4d8..5111cc3724b44f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md @@ -56,4 +56,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [DOM EXPORT TO FILE](dom-export-to-file.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 863 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md index 0b8219adcdb268..ec1eee2dc2c159 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md @@ -27,4 +27,14 @@ La commande retourne en résultat la référence XML de l’élément trouvé. #### Voir aussi -[DOM Find XML element](dom-find-xml-element.md) \ No newline at end of file +[DOM Find XML element](dom-find-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1010 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md index f5223d2fddee0a..7b8a6ced26aa02 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md @@ -115,4 +115,14 @@ Une erreur est générée lorsque : #### Voir aussi [DOM Count XML elements](dom-count-xml-elements.md) -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 864 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md index 83f9217414daa2..1978c043af8cab 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md @@ -57,4 +57,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 723 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md index eb6c1bfee03ac7..cab8ce836c4e3f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md @@ -42,4 +42,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 925 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md index 5a9d141f7c9119..27560849d8e7eb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md @@ -60,4 +60,14 @@ Si la commande a été correctement exécutée et si l’élément analysé n’ #### Voir aussi -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 724 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md index 672128f2391da9..d2f653c416c7e7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md @@ -33,4 +33,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la [DOM Get first child XML element](dom-get-first-child-xml-element.md) [DOM Get last child XML element](dom-get-last-child-xml-element.md) -[DOM Get Root XML element](dom-get-root-xml-element.md) \ No newline at end of file +[DOM Get Root XML element](dom-get-root-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 923 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md index fcaa932fe373ee..a895ecedf00f4e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md @@ -32,4 +32,14 @@ Si la commande a été correctement exécutée et si l’élément référencé #### Voir aussi -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 924 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md index 9a1a18c947fc61..fcb7a0389be8d4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Voir aussi -[DOM Get parent XML element](dom-get-parent-xml-element.md) \ No newline at end of file +[DOM Get parent XML element](dom-get-parent-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1053 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md index 2031eed4ae84c9..3fb47b710e3a69 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md @@ -37,4 +37,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 729 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md index 780c749d7f9467..758cd1ded4626f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md @@ -48,4 +48,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 728 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md index 64be1ceb476475..a5332e823d7529 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md @@ -61,4 +61,13 @@ Après l’exécution de ces instructions : #### Voir aussi [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1081 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md index b1149b0c8639d3..648079cfbb8c3b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md @@ -52,4 +52,13 @@ Dans cet exemple nous cherchons à retrouver la déclaration de DTD du document #### Voir aussi [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) \ No newline at end of file +[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1088 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md index e57592658ccb1d..cf61427eb24aa8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md @@ -39,4 +39,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) \ No newline at end of file +[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 730 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md index d72f7b5c53ced5..91dfbf439c8ef6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md @@ -42,4 +42,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) -[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) \ No newline at end of file +[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 731 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md index 0537c60e6119f1..5e4182896416d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md @@ -32,4 +32,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 725 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md index ebef8d96c3c692..03b2795ef72eca 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md @@ -32,4 +32,13 @@ Passez dans *infoXML* un code indiquant le type d’information à récupérer. #### Voir aussi -[XML GET ERROR](xml-get-error.md) \ No newline at end of file +[XML GET ERROR](xml-get-error.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 721 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md index 6ec7fa0122a95d..b8b41c527a4026 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md @@ -73,4 +73,13 @@ Pour cela, il suffit d’exécuter le code suivant : #### Voir aussi -[DOM Append XML element](dom-append-xml-element.md) \ No newline at end of file +[DOM Append XML element](dom-append-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1083 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md index c2e8829c0fe9a0..2fd4d23c12c597 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md @@ -92,4 +92,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 719 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md index 958668a390e263..fc1fee95009e8e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md @@ -82,4 +82,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML source](dom-parse-xml-source.md) \ No newline at end of file +[DOM Parse XML source](dom-parse-xml-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 720 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md index a5ae6f07515a9c..28274ff6b4df16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md @@ -43,4 +43,14 @@ Le code suivant permet de supprimer le premier attribut "N=1" : [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) -[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) \ No newline at end of file +[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1084 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md index 67701066badf75..817b1f3f977526 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md @@ -25,4 +25,14 @@ Une erreur est générée lorsque la référence de l’élément n’est pas va #### Voir aussi [DOM Create XML element](dom-create-xml-element.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 869 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md index 94f4fcbee735e2..f20c5016a7a595 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md @@ -65,4 +65,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 866 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md index e2b9442d486871..f72b231c5f7bc0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md @@ -37,4 +37,13 @@ Cet exemple définit l’encodage et l’option standalone de l’élément *ref #### Voir aussi [DOM Create XML Ref](dom-create-xml-ref.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 859 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md index 626496d7dfb4e3..dcd5581bd4f6ac 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md @@ -57,4 +57,14 @@ Une erreur est générée lorsque : #### Voir aussi -[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) \ No newline at end of file +[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 867 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md index 27581d59065086..fc7b62643682cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md @@ -115,4 +115,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 868 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md index 877cdc854b5398..0dd8d0d617ade8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **DRAG WINDOW** permet de faire glisser la fenêtre dans laquelle l'utilisateur a cliqué puis de la déplacer en fonction des mouvements de la souris. Généralement, cette commande est appelée depuis la méthode d'un objet capable de répondre instantanément aux clics souris (par exemple un bouton invisible). @@ -48,4 +45,13 @@ Vous pouvez la déplacer en cliquant sur les bordures. #### Voir aussi [GET WINDOW RECT](get-window-rect.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 452 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md index 8c7fe13040641d..ebbb33922ed227 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Drop position** permet de connaître l'emplacement, dans un objet de destination “complexe”, auquel un objet a été (glissé et) déposé. Généralement, vous utiliserez **Drop position** pendant le traitement d'un événement glisser-déposer qui s'est produit dans un tableau, une list box, une liste hiérarchique, un champ texte ou une image. @@ -93,4 +90,13 @@ La méthode objet de la list box de gauche (destination) contient le code suivan #### Voir aussi -*Présentation du Glisser-Déposer* \ No newline at end of file +*Présentation du Glisser-Déposer* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 608 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md index 00d34a5f48dbe5..420a2249480fb7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md @@ -40,4 +40,13 @@ Vous souhaitez supprimer un utilisateur distant spécifique : #### Voir aussi [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) \ No newline at end of file +[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1633 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md index 3a3132795905b3..43e70871ee59a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md @@ -23,4 +23,14 @@ displayed_sidebar: docs #### Voir aussi -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 225 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md index f71bb01ad459db..9616375f93dae6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Dynamic pop up menu** fait apparaître un pop up menu hiérarchique à l’emplacement courant de la souris ou à l’emplacement défini par les paramètres facultatifs *coordX* et *coordY*. @@ -92,4 +89,13 @@ Ce code permet de créer un pop up menu dynamique hiérarchique, construit sur l [Get selected menu item parameter](get-selected-menu-item-parameter.md) [Pop up menu](pop-up-menu.md) [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1006 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md index d1f0b4053f0d58..b41eeefa177eff 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **EDIT ACCESS** permet de modifier le système de mots de passe. Lorsque cette commande est exécutée, la fenêtre de la boîte à outils de 4D contenant les pages Utilisateurs et Groupes est appelée pour modifier les privilèges. @@ -36,4 +33,14 @@ L'exemple suivant affiche la fenêtre de gestion des utilisateur et des groupes #### Voir aussi [CHANGE CURRENT USER](change-current-user.md) -[CHANGE PASSWORD](change-password.md) \ No newline at end of file +[CHANGE PASSWORD](change-password.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 281 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md index e6d6750ec48e34..0fef0767208f79 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EDIT FORMULA** affiche l’éditeur de formules afin de permettre à l’utilisateur d’écrire ou de modifier une formule. L’éditeur contient à l'ouverture : @@ -56,4 +53,14 @@ Si l’utilisateur valide la boîte de dialogue, la variable système OK prend l [APPLY TO SELECTION](apply-to-selection.md) [EXECUTE FORMULA](execute-formula.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 806 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md index 6ac7aab90044f0..3b3e01aa7af977 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EDIT ITEM** permet de passer en “mode édition” l’élément courant ou l’élément de numéro *élément* du tableau ou de la liste désigné(e) par le paramètre *objet*. @@ -74,4 +71,13 @@ Soient deux colonnes d’une list box dont les noms de variables associées sont [GOTO OBJECT](goto-object.md) [INSERT IN LIST](insert-in-list.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 870 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md index ed1938e333984e..fe8c8000a0a17b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **ENABLE MENU ITEM** active la commande de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -32,4 +29,14 @@ Si vous omettez le paramètre *process*, **ENABLE MENU ITEM** s'applique à la b #### Voir aussi -[DISABLE MENU ITEM](disable-menu-item.md) \ No newline at end of file +[DISABLE MENU ITEM](disable-menu-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 149 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md index a86a631c9cbb56..b365a7b60e885d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md @@ -188,4 +188,13 @@ Dans le cas contraire, pour des raisons de sécurité, le mode synchrone est uti [DECRYPT BLOB](decrypt-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 689 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md index 5e405e10271911..5677f94154665c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md @@ -58,4 +58,13 @@ Cryptez un fichier texte situé dans le dossier RESSOURCES de la base de donnée [Decrypt data BLOB](decrypt-data-blob.md) [ENCRYPT BLOB](encrypt-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1773 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md index 1ccff7bb939600..41cc7a6bcf0cd6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Encrypt data file** est utilisée pour chiffrer ou déchiffrer le fichier de données indiqué par le paramètre *cheminDonnées* associé au paramètre *cheminStructure*. Elle peut également être utilisée pour enlever le chiffrement de la base. La commande ne modifie pas les fichiers originaux, elle retourne le nom du chemin d'accès complet au dossier qui a été créé pour la sauvegarde du fichier de données original. @@ -138,4 +135,13 @@ $folder:=Encrypt data file(Structure file;"myData.4DD") [Data file encryption status](data-file-encryption-status.md) [Decrypt data BLOB](decrypt-data-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1610 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md index bf5458fea5534c..c747023431988c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -La fonction **End selection** retourne Vrai lorsque le pointeur de l'enregistrement courant se trouve après le dernier enregistrement de la sélection courante de *laTable*. **End selection** est généralement utilisée pour tester si l'appel à la commande [NEXT RECORD](next-record.md) place ou non le pointeur d'enregistrement courant derrière le dernier enregistrement de la sélection. Si la sélection courante est vide, **End selection** retourne Vrai. +La fonction **End selection** retourne Vrai lorsque le pointeur de l'enregistrement courant se trouve après le dernier enregistrement de la sélection courante de *laTable*.est généralement utilisée pour tester si l'appel à la commande [NEXT RECORD](next-record.md) place ou non le pointeur d'enregistrement courant derrière le dernier enregistrement de la sélection. Si la sélection courante est vide, **End selection** retourne Vrai. Pour replacer le pointeur d'enregistrement courant dans la sélection, utilisez les commandes [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) ou [GOTO SELECTED RECORD](goto-selected-record.md). [PREVIOUS RECORD](previous-record.md) ne replace pas le pointeur dans la sélection. @@ -60,4 +60,13 @@ La méthode formulaire de l'exemple suivant est utilisée lors de l'impression d [Form event code](../commands/form-event-code.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 36 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md index 2a4e327f6d916b..f4bde321f3daa6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md @@ -20,4 +20,13 @@ Une séquence d'instructions SQL doit être encadrée par les mot-clés [Begin S #### Voir aussi -[Begin SQL](begin-sql.md) \ No newline at end of file +[Begin SQL](begin-sql.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 949 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md index 324443cb36378a..edb11f004afb29 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md @@ -41,3 +41,14 @@ Le code du bouton **Compare** est le suivant : ```4d  $equal :=Equal pictures($pict1;$pict2;$mask) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1196 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md index e1b7d74fd2c20b..03778ea2ca32ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ERASE WINDOW** efface le contenu de la fenêtre dont vous avez passé la référence dans *fenêtre*. @@ -29,4 +26,13 @@ Ne confondez pas **ERASE WINDOW**, qui efface le contenu d'une fenêtre, et [GOT #### Voir aussi [GOTO XY](goto-xy.md) -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 160 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md index e9cde353f1918b..cddfd60c9bc6df 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md @@ -114,3 +114,13 @@ Voici différents types de conversion pouvant être obtenus à l’aide de cette   //Convertir la valeur en lires italiennes  $EnLires:=Euro converter($valeur;French Franc;Italian Lira) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 676 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md index fbcdc1bdc0d99a..e1d41201ce1a39 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md @@ -61,4 +61,13 @@ Vous voulez exécuter une formule incluant des appels à des commandes et des ta [Command name](command-name.md) [EDIT FORMULA](edit-formula.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 63 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md index 4f2079e85de5a2..9942d186998f2e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXECUTE METHOD IN SUBFORM** permet d’exécuter le code désigné dans *formule* dans le contexte de l’objet de sous-formulaire *objetSousForm*. @@ -75,3 +72,14 @@ Si cette méthode était utilisée directement dans la méthode du formulaire Ca #### Variables et ensembles système Si cette commande est exécutée correctement, la variable système OK prend la valeur 1, sinon elle prend la valeur 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1085 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md index 999a6c0e8d2b86..e70e6d599bbcb8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md @@ -31,4 +31,14 @@ Si cette commande est exécutée correctement, la variable système OK prend la #### Voir aussi -[EXECUTE FORMULA](execute-formula.md) \ No newline at end of file +[EXECUTE FORMULA](execute-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1007 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md index 73917bc2960b14..e7ea4fba87fc06 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXECUTE ON CLIENT** provoque l’exécution de la méthode *nomMéthode*, avec, éventuellement, le(s) paramètre(s) *param1... paramN*, sur le ou les 4D Client inscrit(s) sous le nom *nomClient*. Le nom d’inscription du ou des 4D Client est défini par la commande [REGISTER CLIENT](register-client.md). @@ -62,4 +59,14 @@ La variable système OK prend la valeur 1 si 4D Server a correctement reçu la r [Execute on server](execute-on-server.md) [GET REGISTERED CLIENTS](get-registered-clients.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 651 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md index 691d3b807c0dc9..8ae37e658c6106 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Execute on server** lance un nouveau process sur la machine serveur (lorsqu'elle est appelée en environnement client/serveur) et retourne le numéro de ce process. @@ -190,4 +187,13 @@ Reportez-vous à la section *Services basés sur les procédures stockées (exem #### Voir aussi [EXECUTE ON CLIENT](execute-on-client.md) -[New process](new-process.md) \ No newline at end of file +[New process](new-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 373 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/exp.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/exp.md index 4d4d20192aa572..f49c88204ade8e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/exp.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/exp.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**Exp** retourne l'exponentielle (e=2,71828...) de *nombre*. **Exp** est la fonction inverse de [Log](log.md). +**Exp** retourne l'exponentielle (e=2,71828...) de *nombre*.est la fonction inverse de [Log](log.md). **Note :** La fonction exponentielle, qui au nombre réel x fait correspondre le nombre réel y, est notée y = ex. 4D fournit la constante prédéfinie e number (2,71828...). @@ -30,4 +30,13 @@ L'exemple suivant assigne l'exponentielle de 1 à *vrE* (le logarithme de *vrE* #### Voir aussi -[Log](log.md) \ No newline at end of file +[Log](log.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 21 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md index 356e1a8a512e19..f0250e2e2e8241 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md @@ -64,4 +64,14 @@ La variable OK prend la valeur 1 si le BLOB a été correctement décompressé, #### Voir aussi [BLOB PROPERTIES](blob-properties.md) -[COMPRESS BLOB](compress-blob.md) \ No newline at end of file +[COMPRESS BLOB](compress-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 535 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md index 65c0c95751a2c2..107c09150b011d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXPORT DATA** permet d’exporter des données dans le fichier *nomFichier*. 4D peut exporter des données au format Texte, Texte de longueur fixe, XML, SYLK, DIF, DBF (dBase), et 4D. @@ -99,4 +96,14 @@ Si l'utilisateur clique sur **Annuler** dans une des boîtes de dialogue (d'enre [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) -[IMPORT DATA](import-data.md) \ No newline at end of file +[IMPORT DATA](import-data.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 666 | +| Thread safe | ✗ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md index 5e45ea00e8dd7b..6b085c4ce325b4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXPORT DIF** écrit dans *document* (document DIF Windows ou Mac OS) les données des enregistrements de la sélection courante de la table *laTable* du process courant. @@ -51,4 +48,14 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 84 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md index 41b390a9c33884..13debedfc259bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Export structure file** décompose la structure de la base de données 4D courante en un ensemble de fichiers de type texte ou de fichiers natifs de type image et les stocke dans le *cheminDossier* spécifié. Par défaut, la structure de la base (méthodes, formulaires, catalogues, etc.) est intégralement exportée. Vous pouvez filtrer les contenus à exporter à l'aide du paramètre *options* (voir ci-dessous). @@ -116,4 +113,13 @@ Vous souhaitez exporter uniquement les méthodes projet et les méthodes base, a #### Voir aussi -[FORM Convert to dynamic](form-convert-to-dynamic.md) \ No newline at end of file +[FORM Convert to dynamic](form-convert-to-dynamic.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1565 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md index 4f29af77ba60af..40838c5aa1fba5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md @@ -55,4 +55,13 @@ Vous voulez exporter la structure de la base courante au format html : #### Voir aussi -[IMPORT STRUCTURE](import-structure.md) \ No newline at end of file +[IMPORT STRUCTURE](import-structure.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1311 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md index e6bd9872d93727..3a7e56858fb39d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXPORT SYLK** écrit dans *document* (document SYLK Windows ou Mac OS) les données des enregistrements de la sélection courante de la table *laTable* du process courant. @@ -51,4 +48,14 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend [EXPORT DIF](export-dif.md) [EXPORT TEXT](export-text.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 85 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md index 8b212317193a51..03c78febacdb70 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXPORT TEXT** écrit dans *document* (document texte Windows ou Mac OS) les données des enregistrements de la sélection courante de la table *laTable* du process courant. @@ -53,4 +50,14 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 167 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/false.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/false.md index c8af570a7dd383..eb94b54347e910 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/false.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/false.md @@ -28,4 +28,13 @@ L'exemple suivant met la variable *vbOptions* à Faux : #### Voir aussi [Not](not.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 215 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md index 0ecaa3c995c23b..b80b4bd8743cf7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md @@ -47,4 +47,13 @@ L'exemple suivant affiche une boîte de dialogue d'alerte. Nous passons à cette [Field](field.md) [Last field number](last-field-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 257 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field.md index a194996c26c169..03f751984a6da1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field.md @@ -24,8 +24,7 @@ displayed_sidebar: docs La commande **Field** a deux syntaxes : -* Si vous passez un numéro de table dans *numTable* et un numéro de champ dans *numChamp*, **Field** retourne un pointeur vers le champ. -* Si vous passez un pointeur vers un champ dans *ptrChamp*, **Field** retourne le numéro du champ. +* Si vous passez un numéro de table dans *numTable* et un numéro de champ dans *numChamp*, **Field** retourne un pointeur vers le champ.retourne le numéro du champ. #### Exemple 1 @@ -56,4 +55,13 @@ Dans l'exemple, la variable *champNum* est égale au numéro de champ de \[Table [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last field number](last-field-number.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 253 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md index 4d3d462fcd8f37..c8c7d90abf9556 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FILTER EVENT** doit être appelée à l'intérieur d'une méthode de gestion d'événements installée par [ON EVENT CALL](on-event-call.md). @@ -41,4 +38,14 @@ Référez-vous à l'exemple d'[ON EVENT CALL](on-event-call.md). #### Voir aussi -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 321 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md index 779d94e78b6850..d44ebe647177bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FILTER KEYSTROKE** vous permet de remplacer le caractère saisi par l'utilisateur dans un champ ou une zone saisissable par le premier caractère de la chaîne *carFiltré*. @@ -242,4 +239,13 @@ La méthode obtenirTexteSelectionne est la suivante : [Form event code](../commands/form-event-code.md) [Get edited text](get-edited-text.md) [Is editing text](is-editing-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 389 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md index c7d32ad1b0ce57..11721f767bb9a9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -**Find in array** retourne le numéro du premier élément de *tableau* qui correspond à *valeur*. - -**Find in array** peut être utilisé avec des tableaux de type Texte, Numérique, Date, Pointeur, Objet et Booléen. Les paramètres *tableau* et *valeur* doivent être du même type. +**Find in array** retourne le numéro du premier élément de *tableau* qui correspond à *valeur*.peut être utilisé avec des tableaux de type Texte, Numérique, Date, Pointeur, Objet et Booléen. Les paramètres *tableau* et *valeur* doivent être du même type. *valeur* doit correspondre exactement à l'élément recherché (les mêmes règles que pour l'opérateur d'égalité sont mises en oeuvre, voir [Opérateurs basiques](https://developer.4d.com/docs/fr/Concepts/operators/#op%C3%A9rateurs-basiques)). Si aucun élément n'est trouvé, **Find in array** renvoie -1. @@ -107,4 +105,13 @@ Vous voulez trouver une référence d'objet : [DELETE FROM ARRAY](delete-from-array.md) [Find in sorted array](find-in-sorted-array.md) [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 230 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md index 519915f5613e9c..87543297a7c9e9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md @@ -62,3 +62,13 @@ Voici un exemple permettant de vérifier l'existence d'une valeur : ``` Remarquez le >= qui permet de couvrir tous les cas. En effet, la fonction retourne un numéro d'enregistrement et le premier enregistrement porte le numéro 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 653 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md index ffe3cd0ba3b8de..0e6de8a8e1c074 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Find in list** retourne la position ou la référence du premier élément de *liste* qui équivaut à la chaîne passée dans *valeur*. Si plusieurs éléments sont trouvés, la fonction peut également remplir le tableau *tabEléments* avec la position ou la référence de chaque élément. @@ -64,3 +61,13 @@ Soit la liste hiérarchique suivante :  $vlItemPos:=Find in list(hList;"Date";0;*)   //$vlItemPos vaut 0` ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 952 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md index 8434ee11708298..f0e4b77d7d9303 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md @@ -70,4 +70,13 @@ Vous souhaitez trouver le nombre d'occurrences de chaînes débutant par "test" [Count in array](count-in-array.md) [Find in array](find-in-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1333 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md index 5e14ce33cfee90..f541b721261d22 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Find window** retourne (s'il existe) le numéro de référence de la première fenêtre "touchée" par le point dont vous passez les coordonnées dans *gauche* et *haut*. @@ -30,4 +27,13 @@ Le paramètre *partieFenêtre* retourne 3 si une fenêtre est touchée, et 0 sin #### Voir aussi [Frontmost window](frontmost-window.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 449 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md index 18cac651fc9435..44ce809de90fdd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md @@ -33,4 +33,14 @@ L'exemple suivant charge le premier enregistrement de la table \[Clients\] : [End selection](end-selection.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 50 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md index 338d834a148755..caebc2eecc80b9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md @@ -29,4 +29,13 @@ En temps normal, vous n'avez pas à appeler cette commande, car 4D sauvegarde r #### Voir aussi [Get database parameter](get-database-parameter.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 297 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md index b9492fab5b376b..ba71d2ab864abb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Note de compatibilité Cette commande est conservée pour des raisons de compatibilité uniquement. A compter de la version 12 de 4D, il est conseillé d'utiliser la commande [OBJECT Get pointer](object-get-pointer.md). @@ -47,4 +44,13 @@ L'exemple suivant est une méthode objet pour un bouton. Cette méthode passe le #### Voir aussi -[OBJECT Get pointer](object-get-pointer.md) \ No newline at end of file +[OBJECT Get pointer](object-get-pointer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 278 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md index de29a780e63740..531ffa2ec37be1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md @@ -16,13 +16,21 @@ displayed_sidebar: docs #### Description -La commande **FOLDER LIST** remplit le tableau de type Texte ou Alpha *dossiers* avec les noms des dossiers (répertoires sous Windows) situés à l'endroit que vous avez indiqué avec le paramètre *cheminAccès*. - -**Note :** Vous devez passer un chemin d'accès absolu dans le paramètre *cheminAccès*. +La commande **FOLDER LIST** remplit le tableau de type Texte ou Alpha *dossiers* avec les noms des dossiers (répertoires sous Windows) situés à l'endroit que vous avez indiqué avec le paramètre *cheminAccès*.Vous devez passer un chemin d'accès absolu dans le paramètre *cheminAccès*. S'il n'y pas de dossier à cet endroit, la commande retourne un tableau vide. Si le chemin d'accès que vous avez passé dans *cheminAccès* est invalide, **FOLDER LIST** génère une erreur de gestionnaire de fichiers que vous pouvez intercepter à l'aide d'une méthode installée par [ON ERR CALL](on-err-call.md). #### Voir aussi [DOCUMENT LIST](document-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 473 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md index d08b32dce4251a..995af1542c2b0d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md @@ -48,4 +48,13 @@ Vous souhaitez vérifier que la police utilisée dans une zone de texte est int #### Voir aussi -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1700 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md index eefd0bed0a9e7d..f1fc241936eb17 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md @@ -71,4 +71,13 @@ Vous souhaitez obtenir la liste des polices récentes : [OBJECT SET FONT](object-set-font.md) [SET RECENT FONTS](set-recent-fonts.md) [ST SET ATTRIBUTES](st-set-attributes.md) -*Type de liste des polices* \ No newline at end of file +*Type de liste des polices* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 460 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md index c36e74bdcf052a..d6e603e2e29119 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md @@ -57,4 +57,13 @@ Vous voulez sélectionner les styles de la famille de police "Verdana" (si elle #### Voir aussi -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1362 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md index d87affd19a3ffb..6ae452a42fe482 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM Convert to dynamic** convertit le formulaire classique *nomFormulaire* en formulaire dynamique et le retourne sous forme d'objet. @@ -62,4 +59,13 @@ Si vous exécutez le code : #### Voir aussi [DIALOG](../commands/dialog.md) -[Export structure file](export-structure-file.md) \ No newline at end of file +[Export structure file](export-structure-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1570 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md index 48372b72ad3d87..d007407701a6a3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM FIRST PAGE** change la page courante d'un formulaire pour afficher la première page du formulaire. Si aucun formulaire n'est affiché ou chargé via la commande [FORM LOAD](../commands/form-load.md), ou si la première page du formulaire est déjà affichée, **FORM FIRST PAGE** ne fait rien. @@ -33,4 +30,13 @@ Cet exemple est une méthode appelée par une commande de menu. Elle affiche la [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 250 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md index c6a52f6e8aea27..7b8cc38accc857 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM Get color scheme** retourne le nom du schéma de couleurs du formulaire actuellement affiché . S'il n'existe pas de formulaire courant, la commande retourne une chaîne vide. @@ -45,4 +42,13 @@ Vous souhaitez charger une image en fonction du schéma courant du formulaire : #### Voir aussi [Get application color scheme](get-application-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1761 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md index 921ac90a227f27..79a7b2a102c84e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM Get current page** retourne le numéro de la page courante du formulaire actuellement affiché ou du formulaire courant chargé via la commande [FORM LOAD](../commands/form-load.md). @@ -69,4 +66,13 @@ Alors que vous êtes en train d'utiliser un formulaire, si vous choisissez une c [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 276 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md index a5c0dbe40000a0..63ba13109c1e08 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET ENTRY ORDER** retourne dans *nomsObjets* les noms des objets dans l'ordre de saisie du formulaire courant. @@ -52,4 +49,13 @@ Vous voulez exclure certains objets de l'ordre de saisie : #### Voir aussi -[FORM SET ENTRY ORDER](form-set-entry-order.md) \ No newline at end of file +[FORM SET ENTRY ORDER](form-set-entry-order.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1469 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md index 6888d6ec3b43e0..e331939f12902e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET HORIZONTAL RESIZING** retourne dans les variables *redimension*, *largeurMini* et *largeurMaxi* les propriétés de redimensionnement horizontal du formulaire courant. Ces propriétés peuvent avoir été définies pour le formulaire dans l’éditeur de formulaires en mode Développement ou pour le process courant via la commande [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md). #### Voir aussi -[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) \ No newline at end of file +[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1077 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md index 722f7729a677bd..670ed921e20c5f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET NAMES** remplit le tableau *tabNoms* avec les noms des formulaires de l’application. @@ -65,4 +62,13 @@ Exemples d’utilisations type : #### Voir aussi *Formulaires* -[METHOD GET PATHS FORM](../commands/method-get-paths-form.md) \ No newline at end of file +[METHOD GET PATHS FORM](method-get-paths-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1167 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md index 26acf915cafd8a..147b9e2085d378 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET OBJECTS** retourne sous forme de tableau(x) la liste de tous les objets présents dans le formulaire courant. Cette liste peut être restreinte à la page courante du formulaire et peut exclure les objets des formulaires hérités. La commande peut être utilisée avec les formulaires entrée et sortie. @@ -121,4 +118,13 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des [FORM GET PROPERTIES](form-get-properties.md) *Objets (Formulaires)* -*Objets de formulaire (Accès)* \ No newline at end of file +*Objets de formulaire (Accès)* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 898 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md index 57b38ea3335986..dca81a70c681cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET PROPERTIES** retourne des propriétés du formulaire *nomForm*. @@ -43,4 +40,13 @@ Le paramètre *titre* retourne le nom de la fenêtre du formulaire, tel qu’il [FORM GET OBJECTS](form-get-objects.md) [FORM SET SIZE](form-set-size.md) -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 674 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md index c97d2fc2ba6c93..b69ba7d6a68c3e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET VERTICAL RESIZING** retourne dans les variables *redimension*, *hauteurMini* et *hauteurMaxi* les propriétés de redimensionnement vertical du formulaire courant. Ces propriétés peuvent avoir été définies pour le formulaire dans l’éditeur de formulaires en mode Développement ou pour le process courant via la commande [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md). #### Voir aussi -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1078 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md index 4818ac64a8b22d..70418d8439fef2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM GOTO PAGE** change la page courante du formulaire pour afficher la page désignée par *numéroPage*. @@ -49,4 +46,13 @@ L'exemple suivant est la méthode objet d'un bouton affichant la page 3 du formu [FORM Get current page](form-get-current-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 247 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md index 262bc5d1bd5500..72140ec701e71e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM LAST PAGE** change la page courante d'un formulaire pour afficher la dernière page du formulaire. Si aucun formulaire n'est affiché ou chargé via la commande [FORM LOAD](../commands/form-load.md), ou si la dernière page du formulaire est déjà affichée, **FORM LAST PAGE** ne fait rien. @@ -33,4 +30,13 @@ Cet exemple est une méthode appelée par une commande de menu. Elle affiche la [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 251 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md index 0934f73ecb0f95..025b564b17c720 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM NEXT PAGE** change la page courante d'un formulaire pour afficher la page suivante. Si aucun formulaire n'est affiché ou chargé via la commande [FORM LOAD](../commands/form-load.md), ou si la page affichée est la dernière page du formulaire, **FORM NEXT PAGE** ne fait rien. @@ -33,4 +30,13 @@ Cet exemple est une méthode appelée par une commande de menu. Elle provoque l' [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 248 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md index 5c36c704b10332..d9a5df1de5e29b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM PREVIOUS PAGE** change la page courante d'un formulaire pour afficher la page précédente. Si aucun formulaire n'est affiché ou chargé via la commande [FORM LOAD](../commands/form-load.md), ou si la page affichée est la première page du formulaire, **FORM PREVIOUS PAGE** ne fait rien. @@ -33,4 +30,13 @@ Cet exemple est une méthode appelée par une commande de menu. Elle provoque l' [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM NEXT PAGE](form-next-page.md) \ No newline at end of file +[FORM NEXT PAGE](form-next-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 249 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md index fce106e1695893..5b26df49713661 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM SCREENSHOT** retourne un formulaire sous forme d'image. Cette commande admet deux syntaxes différentes : en fonction de la syntaxe utilisée, vous pouvez obtenir soit l'image d'un formulaire exécuté, soit l'image du formulaire dans l'éditeur de formulaires. @@ -38,4 +35,13 @@ Par défaut, la commande capture la page 1 du formulaire. Si vous souhaitez capt #### Voir aussi -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 940 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md index aa46b76f34a7eb..d469f399c9eb27 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM SET ENTRY ORDER** permet de fixer dynamiquement l'ordre de saisie du formulaire courant pour le process en cours, basé sur le tableau *nomsObjets*. @@ -54,4 +51,13 @@ Vous souhaitez fixer l'ordre de saisie des objets du formulaire en vous basant s #### Voir aussi -[FORM GET ENTRY ORDER](form-get-entry-order.md) \ No newline at end of file +[FORM GET ENTRY ORDER](form-get-entry-order.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1468 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md index 3ff10920efe579..4bba337922b9b6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM SET HORIZONTAL RESIZING** permet de modifier par programmation les propriétés de redimensionnement horizontal du formulaire courant. Par défaut, ces propriétés sont définies dans l’éditeur de formulaires en mode Développement. Les nouvelles propriétés sont fixées pour le process courant, elles ne sont pas stockées avec le formulaire. @@ -38,4 +35,13 @@ Reportez-vous à l'exemple de la commande [FORM SET SIZE](form-set-size.md). [FORM GET HORIZONTAL RESIZING](form-get-horizontal-resizing.md) [FORM SET SIZE](form-set-size.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 892 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md index 6654cb67beeb86..f12bb30cf94769 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM SET INPUT** désigne *formulaire* ou *formUtilisateur* comme formulaire entrée courant de *laTable* pour le process courant. *formulaire* doit appartenir à *laTable*. @@ -104,4 +101,13 @@ Résultat : [MODIFY RECORD](modify-record.md) [MODIFY SELECTION](modify-selection.md) [Open window](open-window.md) -[QUERY BY EXAMPLE](query-by-example.md) \ No newline at end of file +[QUERY BY EXAMPLE](query-by-example.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 55 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md index 6669cee41b318d..1bc02d2fd9b420 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM SET OUTPUT** vous permet de définir *formulaire* ou *formUtilisateur* comme formulaire sortie courant de *laTable* pour le process courant. *formulaire* doit appartenir à *laTable*. @@ -87,4 +84,13 @@ L'exemple suivant utilise un formulaire décrit dans un fichier .json : [FORM SET INPUT](form-set-input.md) [MODIFY SELECTION](modify-selection.md) [PRINT LABEL](print-label.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 54 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md index 8c4ffe04d4f989..1e04af20e8771b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM SET SIZE** permet de modifier par programmation la taille du formulaire courant. La nouvelle taille est définie pour le process courant, elle n’est pas stockée avec le formulaire. @@ -126,4 +123,13 @@ La méthode objet associée à ce bouton est la suivante : #### Voir aussi [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 891 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md index acf24b1f8a2f3a..b5ebadbd6b172c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM SET VERTICAL RESIZING** permet de modifier par programmation les propriétés de redimensionnement vertical du formulaire courant. Par défaut, ces propriétés sont définies dans l’éditeur de formulaires en mode Développement. Les nouvelles propriétés sont fixées pour le process courant, elles ne sont pas stockées avec le formulaire. @@ -38,4 +35,13 @@ Reportez-vous à l'exemple de la commande [FORM SET SIZE](form-set-size.md). [FORM GET VERTICAL RESIZING](form-get-vertical-resizing.md) [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET SIZE](form-set-size.md) \ No newline at end of file +[FORM SET SIZE](form-set-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 893 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md index eb91efb56bcb07..75de5d3aa38c50 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM UNLOAD** permet de décharger de la mémoire le formulaire courant désigné via la commande [FORM LOAD](../commands/form-load.md). @@ -23,4 +20,13 @@ L’appel de cette commande est nécessaire lors de l’utilisation de la comman #### Voir aussi -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1299 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md index 927ee5d34da5f7..4452ed11f20057 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Frontmost process** retourne le numéro du process dont la ou les fenêtre(s) est (sont) au premier plan. @@ -35,4 +32,13 @@ Référez-vous à l'exemple de [BRING TO FRONT](bring-to-front.md). #### Voir aussi [BRING TO FRONT](bring-to-front.md) -[WINDOW LIST](window-list.md) \ No newline at end of file +[WINDOW LIST](window-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 327 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md index 762d9fbe87f618..831977ffd93a07 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Frontmost window** retourne le numéro de référence de la fenêtre actuellement située au premier plan. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Voir aussi [Frontmost process](frontmost-process.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 447 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md index e4d0affcfdd06a..4e5e534da9822f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md @@ -81,4 +81,13 @@ Un formulaire “Demande de certificat” comporte les six champs nécessaires #### Voir aussi [GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 691 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md index 1871f1e36345c3..1b599c93c73fa4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md @@ -81,4 +81,13 @@ Ces exemples illustrent comment récupérer la clé digest d’un texte : [BASE64 ENCODE](base64-encode.md) [Generate password hash](generate-password-hash.md) *Protocole sécurisé* -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1147 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md index dd3e3985d17854..9dd623f876adf0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md @@ -47,4 +47,13 @@ Reportez-vous à l’exemple de la commande [ENCRYPT BLOB](encrypt-blob.md). [DECRYPT BLOB](decrypt-blob.md) [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 688 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md index f60d6085c8c948..988bd3d7195bb0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md @@ -66,4 +66,13 @@ Cet exemple génère un hash de mot de passe à l'aide de bcrypt avec un coût d [Generate digest](generate-digest.md) -[Verify password hash](verify-password-hash.md) \ No newline at end of file +[Verify password hash](verify-password-hash.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1533 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md index 1330cdcb85ec64..24cd8734b9e663 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md @@ -29,3 +29,13 @@ Génération d’un UUID dans une variable :  var MonUUID : Text  MonUUID:=Generate UUID ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1066 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md index 6116e2426ee01f..795cb542e3959c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md @@ -68,4 +68,13 @@ Vous voulez obtenir le chemin d'accès du fichier de sauvegarde le plus récent #### Voir aussi -[File](file.md) \ No newline at end of file +[File](file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1418 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md index b1215d809492da..645d114f873c4a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md @@ -52,8 +52,9 @@ Les applications de l'environnement 4D utilisent un dossier spécifique pour sto Le dossier 4D actif se trouve par défaut à l'emplacement suivant : -* Sous Windows : *{Disque}:\\Users\\* *\\AppData\\Roaming\\* ** -* Sous macOS : *{Disque}:Users:* *:Library:Application Support:* ** +* Sous Windows: *{Disk}:\\Users\\{userName}\\AppData\\Roaming\\{applicationName}* +* Sous macOS: *{Disk}:Users:{userName}:Library:Application Support:{applicationName}* + ##### Dossier Licenses @@ -205,4 +206,14 @@ Si le paramètre *dossier* est invalide ou si le chemin d'accès retourné est v [System folder](system-folder.md) [Temporary folder](temporary-folder.md) [Test path name](test-path-name.md) -[WEB SET ROOT FOLDER](web-set-root-folder.md) \ No newline at end of file +[WEB SET ROOT FOLDER](web-set-root-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 485 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md index 2d569466178a50..d99eb9735aa7bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) *Gestion des priorités dans le cache de la base* -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1428 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md index 33a55be003e16e..d5379e9f71f2a8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) *Gestion des priorités dans le cache de la base* -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1427 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md index 375493dab69f8b..c26b28a6d3833c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md @@ -26,4 +26,13 @@ Les types de données scalaires incluent les types date/heure, numériques et al [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) *Gestion des priorités dans le cache de la base* -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1426 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md index 40fb359f396d41..7deeb1979b923a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET ALLOWED METHODS** retourne dans le tableau *tabMéthodes* le nom des méthodes “autorisées” dans l’éditeur de formules, c’est-à-dire pouvant être utilisées lors de l’écriture d’une formule — ces méthodes sont listées à la fin de la liste des commandes dans l’éditeur. @@ -45,4 +42,13 @@ Cet exemple permet d’autoriser ponctuellement un ensemble de méthodes spécif #### Voir aussi -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 908 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md index d33b20d47ec655..e08cdc40107f8c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get application color scheme** retourne le nom du schéma de couleur utilisé dans l'application. @@ -45,4 +42,13 @@ Pour plus de détails sur les noms des schémas de couleur, veuillez vous report #### Voir aussi [FORM Get color scheme](form-get-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1763 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md index 3684448e89ebe0..b51c69ddab16fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md @@ -23,4 +23,13 @@ Par défaut, les assertions sont actives mais elles peuvent avoir été désacti [ASSERT](assert.md) [Asserted](asserted.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1130 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md index c2d4837cec7457..10c63de33d1d0d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **GET AUTOMATIC RELATIONS** permet de savoir si le statut automatique/manuel de tous les liens manuels N vers 1 et 1 vers N de la base a été modifié dans le process courant. - -* *aller* : ce paramètre retourne Vrai si un appel antérieur de la commande [SET AUTOMATIC RELATIONS](set-automatic-relations.md) a rendu automatiques tous les liens manuels N vers 1 — par exemple [SET AUTOMATIC RELATIONS](set-automatic-relations.md)(Vrai;Faux). +La commande **GET AUTOMATIC RELATIONS** permet de savoir si le statut automatique/manuel de tous les liens manuels N vers 1 et 1 vers N de la base a été modifié dans le process courant.: ce paramètre retourne Vrai si un appel antérieur de la commande [SET AUTOMATIC RELATIONS](set-automatic-relations.md) a rendu automatiques tous les liens manuels N vers 1 — par exemple [SET AUTOMATIC RELATIONS](set-automatic-relations.md)(Vrai;Faux). Ce paramètre retourne Faux si la commande [SET AUTOMATIC RELATIONS](set-automatic-relations.md) n’a pas été appelée ou si sa précédente exécution n’a pas modifié les liens manuels N vers 1 — par exemple [SET AUTOMATIC RELATIONS](set-automatic-relations.md)(Faux;Faux). * *retour* : ce paramètre retourne Vrai si l’appel précédent de la commande [SET AUTOMATIC RELATIONS](set-automatic-relations.md) a rendu automatiques tous les liens manuels 1 vers N — par exemple [SET AUTOMATIC RELATIONS](set-automatic-relations.md)(Vrai;Vrai). Ce paramètre retourne Faux si la commande [SET AUTOMATIC RELATIONS](set-automatic-relations.md) n’a pas été appelée ou si sa précédente exécution n’a pas modifié les liens manuels 1 vers N — par exemple [SET AUTOMATIC RELATIONS](set-automatic-relations.md)(Vrai;Faux). @@ -31,4 +29,13 @@ Reportez-vous à l'exemple de la commande [GET FIELD RELATION](get-field-relatio [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 899 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md index bc8a5df36edf5d..3a8c0702ccca8f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -La commande **Get cache size** retourne, en octets, la taille courante du cache de la base de données. - -**Note :** Cette commande fonctionne uniquement en mode local (4D Server et 4D) ; elle ne doit pas être utilisée avec 4D en mode accès distant. +La commande **Get cache size** retourne, en octets, la taille courante du cache de la base de données.Cette commande fonctionne uniquement en mode local (4D Server et 4D) ; elle ne doit pas être utilisée avec 4D en mode accès distant. #### Exemple @@ -25,4 +23,13 @@ Voir l'exemple de la commande [SET CACHE SIZE](set-cache-size.md). #### Voir aussi -[SET CACHE SIZE](set-cache-size.md) \ No newline at end of file +[SET CACHE SIZE](set-cache-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1432 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md index c5844be02134d4..a17d0cdac92af0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get current printer** retourne le nom de l’imprimante courante définie dans l’application 4D. Par défaut au lancement de 4D, l’imprimante courante est l’imprimante définie dans le système. @@ -33,4 +30,13 @@ Si aucune imprimante n'est installée, une erreur est générée. #### Voir aussi [PRINTERS LIST](printers-list.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 788 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md index 18629016da4125..da1a2ca84f2a3d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md @@ -49,4 +49,13 @@ La langue courante de la base définit le dossier .lproj dans lequel le programm #### Voir aussi [Localized document path](localized-document-path.md) -[SET DATABASE LOCALIZATION](set-database-localization.md) \ No newline at end of file +[SET DATABASE LOCALIZATION](set-database-localization.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1009 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md index 73e88e74445b60..eba18d87138e16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get database parameter** permet de lire la valeur courante d'un paramètre de la base 4D. Lorsque la valeur du paramètre est une chaîne de caractères, elle est retournée dans le paramètre *valeurAlpha*. @@ -134,4 +131,13 @@ Dans la [On Startup database method](on-startup-database-method.md), vous pouvez [DISTINCT VALUES](distinct-values.md) [Application info](application-info.md) [QUERY SELECTION](query-selection.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 643 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md index 73b8870acb499c..b7510a48d1f5c5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get default user** retourne le numéro de référence unique de l’utilisateur désigné comme “Utilisateur par défaut” dans la boîte de dialogue des Propriétés de la base : @@ -23,3 +20,13 @@ displayed_sidebar: docs ![](../assets/en/commands/pict36789.fr.png) Si aucun utilisateur par défaut n’est défini, la commande retourne 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 826 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md index f54a81f10e3dd3..6bba531b65ab89 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -La commande **GET DOCUMENT ICON** retourne dans le champ ou la variable image 4D *icône*, l’icône du document dont vous avez passé le nom ou le chemin d’accès complet dans *cheminDoc*. *cheminDoc* peut désigner un fichier de tout type (document, exécutable, raccourci ou alias...) ou un dossier. +La commande **GET DOCUMENT ICON** retourne dans le champ ou la variable image 4D *icône*, l’icône du document dont vous avez passé le nom ou le chemin d’accès complet dans *cheminDoc*.peut désigner un fichier de tout type (document, exécutable, raccourci ou alias...) ou un dossier. Passez dans *cheminDoc* le chemin d’accès absolu du document dont vous souhaitez récupérer l’icône. Vous pouvez passer uniquement le nom du document ou un chemin d’accès relatif, dans ce cas il doit se trouver dans le dossier courant de la base (généralement, le dossier contenant le fichier de structure de la base). Si vous passez une chaîne vide dans *cheminDoc*, la boîte de dialogue standard d’ouverture de fichiers apparaît, permettant à l’utilisateur de désigner un fichier. Une fois la boîte de dialogue validée, la variable système Document contient le chemin d’accès complet du fichier sélectionné. @@ -25,3 +25,14 @@ Si vous passez une chaîne vide dans *cheminDoc*, la boîte de dialogue standard Passez dans le paramètre *icône* un champ ou une variable image 4D. Après l’exécution de la commande, ce paramètre contient l’icône du fichier (au format PICT). Le paramètre optionnel *taille* vous permet d’indiquer les dimensions de l’image que vous souhaitez obtenir. La valeur du paramètre correspond à la longueur d’un côté du carré dans lequel l’image sera incluse. Généralement, les icônes sont définies en 32x32 pixels (“grande icône”) ou 16x16 pixels (“petite icône”). Si vous passez 0 ou omettez le paramètre, la commande retourne l’icône dans sa plus grande taille disponible. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 700 | +| Thread safe | ✓ | +| Modifie les variables | Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md index 800040e2e9c313..2e478676a59884 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Description -Cette commande ne fonctionne qu'avec un document déjà ouvert, dont vous avez passé le numéro de référence dans le paramètre *docRef*. - -**Get document position** retourne la position, à partir du début du document, à laquelle la prochaine lecture ([RECEIVE PACKET](receive-packet.md)) ou écriture ([SEND PACKET](send-packet.md)) aura lieu. +Cette commande ne fonctionne qu'avec un document déjà ouvert, dont vous avez passé le numéro de référence dans le paramètre *docRef*.retourne la position, à partir du début du document, à laquelle la prochaine lecture ([RECEIVE PACKET](receive-packet.md)) ou écriture ([SEND PACKET](send-packet.md)) aura lieu. #### Voir aussi [RECEIVE PACKET](receive-packet.md) [SEND PACKET](send-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 481 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md index 4a1121a2ad2511..f4e758ccf71658 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md @@ -207,4 +207,14 @@ Une fois que cela est implémenté dans votre base, il suffit d'écrire la méth #### Voir aussi -[SET DOCUMENT PROPERTIES](set-document-properties.md) \ No newline at end of file +[SET DOCUMENT PROPERTIES](set-document-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 477 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md index ad435d526fe7ba..a8647410986b52 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md @@ -28,4 +28,14 @@ Sous Mac OS, si vous ne passez pas le paramètre optionnel *\**, la taille de la [Get document position](get-document-position.md) [SET DOCUMENT POSITION](set-document-position.md) -[SET DOCUMENT SIZE](set-document-size.md) \ No newline at end of file +[SET DOCUMENT SIZE](set-document-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 479 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md index db910a58724db6..5b2b8a00779380 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get edited text** retourne le texte en cours de saisie dans un objet de formulaire. @@ -68,4 +65,13 @@ Voici un exemple de traitement à la volée des caractères saisis dans un champ #### Voir aussi [Form event code](../commands/form-event-code.md) -[Is editing text](is-editing-text.md) \ No newline at end of file +[Is editing text](is-editing-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 655 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md index de2fdca1914155..294a8b913630b2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md @@ -30,4 +30,13 @@ Cette commande vous permet notamment de recopier le fichier externe. #### Voir aussi -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1133 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md index 35e08b22118d61..622e2acb8448c9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET FIELD ENTRY PROPERTIES** retourne les propriétés relatives à la saisie de données du champ désigné par *numTable* et *numChamp* ou par *ptrChp*. @@ -43,4 +40,13 @@ Si aucune énumération n’est associée au champ, ou si son type n’admet pas [GET FIELD PROPERTIES](get-field-properties.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[GET TABLE PROPERTIES](get-table-properties.md) \ No newline at end of file +[GET TABLE PROPERTIES](get-table-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 685 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md index 45ce484c57e411..6fb6779db8251d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md @@ -73,4 +73,13 @@ L'exemple suivant récupère dans les variables *vType*, *vLong*, *vIndex*, *vUn [Field](field.md) [Field name](field-name.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 258 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md index 8642530d055b19..cf507117f9ad9e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md @@ -83,4 +83,13 @@ Le code ci-dessous illustre les différentes possibilités offertes par les comm [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET RELATION PROPERTIES](get-relation-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 920 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md index 2a5be313b7a7ba..e726dfc03c82bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET FIELD TITLES** remplit les tableaux *titresChamps* et *numChamps* avec les noms et les numéros des champs de *laTable* désignée. Le contenu des deux tableaux est synchronisé. @@ -29,4 +26,13 @@ Dans les deux cas, la commande ne retourne pas les champs déclarés invisibles. #### Voir aussi [GET TABLE TITLES](get-table-titles.md) -[SET FIELD TITLES](set-field-titles.md) \ No newline at end of file +[SET FIELD TITLES](set-field-titles.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 804 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md index 00f853c4d31152..0ae20be26da483 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get file from pasteboard** retourne le chemin d’accès absolu d’un fichier inclus dans une opération de glisser-déposer. Plusieurs fichiers pouvant être sélectionnés et déplacés simulanément, le paramètre *indiceN* permet de désigner un fichier parmi l’ensemble des fichiers sélectionnés. @@ -43,4 +40,13 @@ L’exemple suivant permet de récupérer dans un tableau tous les chemins d’a #### Voir aussi -[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) \ No newline at end of file +[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 976 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md index ed0d172e18abf3..26c9ce0957adfb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md @@ -34,4 +34,13 @@ Vous souhaitez vérifier si l'utilisateur courant appartient au groupe "plugins" #### Voir aussi -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1738 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md index e2852732f87bb9..e19c7550729cf3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **GET GROUP LIST** remplit les tableaux *nomsGroupes* et *numérosGroupes* avec les noms et les numéros de référence uniques des groupes tels qu'ils apparaissent dans l'éditeur de Mots de passe. @@ -34,4 +31,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET GROUP [GET GROUP PROPERTIES](get-group-properties.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 610 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md index d59c85d2c83a1c..8350507b2ae5ae 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **GET GROUP PROPERTIES** retourne les propriétés du groupe dont le numéro de référence est passé dans *réfGroupe*. Vous passez le numéro de référence du groupe retourné par la commande [GET GROUP LIST](get-group-list.md). @@ -41,4 +38,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET GROUP [GET GROUP LIST](get-group-list.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 613 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md index 834d0dcbff4269..dd05f4cc74491b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET HIGHLIGHT** vous permet de déterminer précisément le texte actuellement sélectionné dans *objet*. @@ -64,4 +61,13 @@ Modification du style du texte sélectionné : [FILTER KEYSTROKE](filter-keystroke.md) [HIGHLIGHT TEXT](highlight-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 209 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md index 3486051fd601d4..55ee5823caed19 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET HIGHLIGHTED RECORDS** stocke dans l’ensemble désigné par le paramètre *nomEnsemble* les enregistrements marqués (c'est-à-dire, les enregistrements “surlignés” par l'utilisateur dans le formulaire liste) de *laTable* passée en paramètre. Si le paramètre *laTable* est omis, la table du formulaire ou du sous-formulaire courant est utilisée. @@ -44,4 +41,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[HIGHLIGHT RECORDS](highlight-records.md) \ No newline at end of file +[HIGHLIGHT RECORDS](highlight-records.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 902 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md index 7020d032a6276a..247544bf830304 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get indexed string** retourne : @@ -46,4 +43,14 @@ OK prend la valeur 1 si la ressource est trouvée, sinon elle prend la valeur 0 [Get string resource](get-string-resource.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 510 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md index b93b9b26589c9d..c62f04745fb78b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md @@ -24,4 +24,13 @@ Cette commande est destinée à être utilisée dans un processus de mise à jou #### Voir aussi [RESTART 4D](restart-4d.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1301 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md index 49e778f5fb87c4..0cd21ac36ea312 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get list item font** retourne le nom de la police de caractères courante de l’élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d’objet dans *liste*. @@ -32,4 +29,13 @@ Vous pouvez enfin passer *\** dans *réfElément* : dans ce cas, la commande s #### Voir aussi -[SET LIST ITEM FONT](set-list-item-font.md) \ No newline at end of file +[SET LIST ITEM FONT](set-list-item-font.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 954 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md index 5d27b542f7adb5..9e207ceb8e169e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST ITEM ICON** retourne dans *icône* l’icône associée à l’élément dont vous avez passé le numéro de référence dans *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d’objet dans *liste*. @@ -39,4 +36,13 @@ Si aucune icône n’est associée à l’élément, la variable icône est reto #### Voir aussi [GET LIST ITEM PROPERTIES](get-list-item-properties.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 951 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md index aea5648be48a4b..9af7dca3433b6e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST ITEM PARAMETER ARRAYS** permet de récupérer en un seul appel l’ensemble des paramètres (ainsi que, optionnellement, leurs valeurs) associés à l’élément *refElément* de la liste hiérarchique dont vous avez passé la référence ou le nom d’objet dans le paramètre *liste*. @@ -76,4 +73,13 @@ Si on souhaite récupérer également les valeurs des paramètres, on peut écri #### Voir aussi -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1195 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md index f1eca87bba995c..5f89515bc6406a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST ITEM PARAMETER** permet de connaître la *valeur* courante du paramètre *sélecteur* pour l’élément *réfElément* de la liste hiérarchique dont vous avez passé la référence ou le nom d’objet dans le paramètre *liste*. @@ -36,4 +33,13 @@ Vous pouvez passer dans *sélecteur* la constante Additional text ou Associated #### Voir aussi *Listes hiérarchiques* -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 985 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md index a7aad0423fa66d..2e160ba5ac9cf9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST ITEM PROPERTIES** retourne les propriétés de l'élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -53,4 +50,13 @@ Pour plus d'informations sur ces propriétés, reportez-vous à la description d [GET LIST ITEM](get-list-item.md) [GET LIST ITEM ICON](get-list-item-icon.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 631 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md index a7518653bed3cc..7de5dabce1e685 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST ITEM** retourne des informations sur l'élément désigné par le paramètre *positionElém* de la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -73,4 +70,13 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md). [List item position](list-item-position.md) [Selected list items](selected-list-items.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 378 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md index 56abb62b6b301e..fe5f82b88843a0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST PROPERTIES** retourne des informations sur la liste hiérarchique dont vous avez passé le numéro de référence dans le paramètre *liste*. @@ -39,4 +36,13 @@ Pour une description complète de ces propriétés d'apparence et de comportemen #### Voir aussi -[SET LIST PROPERTIES](set-list-properties.md) \ No newline at end of file +[SET LIST PROPERTIES](set-list-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 632 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md index 6534d9667e8746..bf066909babc72 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET MACRO PARAMETER** retourne dans *paramTexte* une partie ou la totalité du texte de la méthode depuis laquelle elle a été appelée. @@ -36,4 +33,13 @@ Reportez-vous à l'exemple de [SET MACRO PARAMETER](set-macro-parameter.md). #### Voir aussi -[SET MACRO PARAMETER](set-macro-parameter.md) \ No newline at end of file +[SET MACRO PARAMETER](set-macro-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 997 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md index 3b57462f5646ed..79a070c845132b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu bar reference** renvoie l’identifiant unique de la barre de menus courante ou de la barre de menus d’un process spécifique. @@ -41,4 +38,13 @@ Reportez-vous à l'exemple de la commande [GET MENU ITEMS](get-menu-items.md). #### Voir aussi -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 979 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md index b7a0251433853a..648e0f6174bdc0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET MENU ITEM ICON** retourne dans la variable *refIcône* la référence de l’icône éventuellement associée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. Cette référence est le chemin d'accès ou le numéro de l’image. @@ -35,4 +32,13 @@ Si aucune icône n’est associée à la ligne, la commande retourne une valeur #### Voir aussi -[SET MENU ITEM ICON](set-menu-item-icon.md) \ No newline at end of file +[SET MENU ITEM ICON](set-menu-item-icon.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 983 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md index a168a04aa07d41..6c6a6466c93487 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item key** retourne le code de la touche **Ctrl** (sous Windows) ou **Commande** (Mac OS) utilisée comme raccourci clavier pour la commande de menu dont le numéro ou la référence de menu et le numéro de ligne ont été passés dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -50,4 +47,14 @@ Pour obtenir le raccourci clavier associé à une ligne de menu, il est utile de #### Voir aussi [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 424 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md index ea99965cf0b61d..55954a6e2d50ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item mark** retourne la marque (ou "coche") de la ligne de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -41,4 +38,14 @@ L'exemple suivant inverse l'état marqué d'une ligne de menu : #### Voir aussi -[SET MENU ITEM MARK](set-menu-item-mark.md) \ No newline at end of file +[SET MENU ITEM MARK](set-menu-item-mark.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 428 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md index 71e63733e7bc40..e9ff47927fd871 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item method** retourne le nom de la méthode projet 4D associée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -30,4 +27,13 @@ La commande retourne le nom de la méthode 4D sous la forme d’une chaîne de c #### Voir aussi -[SET MENU ITEM METHOD](set-menu-item-method.md) \ No newline at end of file +[SET MENU ITEM METHOD](set-menu-item-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 981 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md index cc845aa094bfc2..375363cdf3b2bb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item modifiers** retourne le ou les modificateur(s) additionnel(s) associé(s) au raccourci standard de la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -48,4 +45,13 @@ Reportez-vous à l'exemple de la commande [Get menu item key](get-menu-item-key. #### Voir aussi [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 980 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md index 029d9c3acf58b3..ee47de7e3ef325 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item parameter** retourne la chaîne de caractères personnalisée associée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. Cette chaîne doit avoir été préalablement définie à l’aide de la commande [SET MENU ITEM PARAMETER](set-menu-item-parameter.md). @@ -26,4 +23,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get selected menu item parameter](get-selected-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1003 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md index 0dbf9abc19aa6b..89fa670d3b7cc0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET MENU ITEM PROPERTY** retourne dans le paramètre *valeur* la valeur courante de la propriété de la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -33,4 +30,13 @@ Passez dans le paramètre *propriété* la propriété dont vous souhaitez obten #### Voir aussi -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 972 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md index d81062226372bf..ae16cad28ec6f2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item style** retourne le style de police de la ligne de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -48,4 +45,14 @@ Si, par exemple, vous voulez tester si une ligne de menu est affichée en gras, #### Voir aussi -[SET MENU ITEM STYLE](set-menu-item-style.md) \ No newline at end of file +[SET MENU ITEM STYLE](set-menu-item-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 426 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md index 608f1e47589157..340702c2363e9c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item** retourne le libellé de la commande de menu dont le numéro ou la référence de menu et le numéro de commande ont été passés dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -30,4 +27,14 @@ Si vous ne passez pas le paramètre *process*, **Get menu item** est appliquée #### Voir aussi [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM](set-menu-item.md) \ No newline at end of file +[SET MENU ITEM](set-menu-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 422 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md index e19ed180861c3e..a6ddb7fa97f827 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET MENU ITEMS** retourne dans les tableaux *tabTitresMenu* et *tabRefsMenu* les libellés et les identifiants de toutes les lignes du menu ou de la barre de menus désigné(e) par le paramètre *menu*. @@ -36,3 +33,13 @@ Vous souhaitez connaître le contenu de la barre de menus du process courant :  RefBarreMenu:=Get menu bar reference(Frontmost process)  GET MENU ITEMS(RefBarreMenu;tabTitresMenu;tabRefsMenu) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 977 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md index 5de36cf53d99f2..248caa485160e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu title** retourne le titre du menu dont vous avez passé le numéro ou la référence dans *menu*. @@ -28,4 +25,14 @@ Si vous omettez le paramètre *process*, **Get menu title** s'applique à la bar #### Voir aussi -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 430 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md index 9b16e71f00c190..d4007cc267cf05 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md @@ -32,4 +32,13 @@ Une fois que vous avez identifié les tables manquantes de la base, vous pouvez #### Voir aussi -[REGENERATE MISSING TABLE](regenerate-missing-table.md) \ No newline at end of file +[REGENERATE MISSING TABLE](regenerate-missing-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1125 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md index 70748b3e45b097..db0afde7f5ba7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PASTEBOARD DATA TYPE** permet d’obtenir la liste des types de données présents dans le conteneur. Cette commande doit généralement être utilisée dans le contexte d'un glisser-déposer, dans le cadre des événements formulaire On Drop ou On Drag Over de l’objet de destination. Elle permet notamment de vérifier la présence d’un type de données spécifique dans le conteneur. @@ -35,4 +32,13 @@ Pour plus d’informations sur les types de données pris en charge, reportez-vo #### Voir aussi -*Gestion du conteneur de données* \ No newline at end of file +*Gestion du conteneur de données* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 958 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md index 90b980c293c5a6..9679ca859023ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **GET PASTEBOARD DATA** retourne dans le champ ou la variable de type BLOB *données* les données qui se trouvent dans le conteneur de données et dont le type est passé dans *typeDonnées*. (Si le conteneur de données contient du texte copié depuis 4D, le jeu de caractères du BLOB sera probablement UTF-16.) @@ -55,4 +52,14 @@ Si les données sont extraites correctement, la variable OK prend la valeur 1\. [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 401 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md index a24e31d517e387..65c6d52ce9e000 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md @@ -24,4 +24,13 @@ Si l’image n’a pas de nom par défaut, la commande retourne une chaîne vide #### Voir aussi -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1171 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md index d56740470712ca..2efb455198d5e2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md @@ -45,4 +45,13 @@ Vous souhaitez connaître les formats de l'image stockée dans un champ Image de #### Voir aussi - \ No newline at end of file + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1406 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md index c55de633147db9..03131d40f49d34 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PICTURE FROM LIBRARY** retourne dans *image* l'image de la bibliothèque dont vous avez passé le numéro de référence dans *refImage* ou le nom dans *nomImage*. @@ -55,4 +52,14 @@ S'il n'y a pas assez de mémoire pour retourner l’image, l'erreur –108 est g [PICTURE LIBRARY LIST](picture-library-list.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 565 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md index 80df17d3edf353..c3d53b9d1aef07 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **GET PICTURE FROM PASTEBOARD** retourne l'image présente dans le conteneur de données dans le champ ou la variable *image*. @@ -42,4 +39,14 @@ Si l'image est correctement extraite, OK prend la valeur 1\. Sinon, OK prend la [GET PASTEBOARD DATA](get-pasteboard-data.md) [Get text from pasteboard](get-text-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 522 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md index 9ac9177fbebaf8..836027c944f219 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md @@ -32,4 +32,13 @@ Si l’image ne contient pas de mots-clés ou de métadonnées IPTC/Keywords, la #### Voir aussi [GET PICTURE METADATA](get-picture-metadata.md) -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1142 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md index ecab2611da8405..b37726128693d9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md @@ -97,4 +97,14 @@ La variable système OK retourne 1 si la récupération des métadonnées s’es [GET PICTURE KEYWORDS](get-picture-keywords.md) *Noms des métadonnées images* [SET PICTURE METADATA](set-picture-metadata.md) -*Valeurs des métadonnées images* \ No newline at end of file +*Valeurs des métadonnées images* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1122 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md index c52999d1a31826..7603d72aace130 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PICTURE RESOURCE** retourne dans le champ ou la variable image désigné(e) par *resDonnées* l'image stockée dans la ressource image ("PICT") dont vous passé le numéro dans *resNum*. @@ -43,4 +40,14 @@ S'il n'y a pas assez de mémoire disponible pour charger l'image, une erreur est #### Voir aussi -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 502 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md index 397986730b0bcb..4174c979702e67 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get plugin access** retourne le nom du groupe d’utilisateurs autorisé à utiliser le plug-in dont le numéro a été passé dans le paramètre *plugIn*. Si aucun groupe n’est associé au plug-in, la commande retourne une chaîne vide (""). @@ -35,4 +32,13 @@ Passez dans le paramètre *plugIn* le numéro du plug-in duquel vous souhaitez c #### Voir aussi [SET GROUP ACCESS](set-group-access.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 846 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md index edda3e31fca53a..2ec24be674dad3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md @@ -49,4 +49,13 @@ Utilisation de pointeurs vers des éléments de tableaux à deux dimensions : #### Voir aussi [Field](field.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 304 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md index c8e33ff5f63b8d..93e3212409339c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get print marker** permet de récupérer la position courante d’un taquet lors d’une impression. Les coordonnées sont retournées en pixels (1 pixel = 1/72 pouce). @@ -61,4 +58,13 @@ Reportez-vous à l’exemple de la commande [SET PRINT MARKER](set-print-marker. #### Voir aussi [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 708 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md index 5920a1b1077ced..9db868c40351d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PRINT OPTION** retourne la ou les valeur(s) courante(s) d’une option d’impression. @@ -68,4 +65,14 @@ La variable système OK prend la valeur 1 si la commande a été exécutée corr #### Voir aussi [PRINT OPTION VALUES](print-option-values.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 734 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md index b7a538ed7432a1..b8f42ccee431e5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get print preview** retourne Vrai si l’instruction [SET PRINT PREVIEW](set-print-preview.md) a été appelée avec la valeur **Vrai** dans le process courant. @@ -25,4 +22,13 @@ A noter que l’utilisateur peut modifier cette option avant de valider la boît #### Voir aussi [Is in print preview](is-in-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1197 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md index 20283739b747f4..cae36dfda17aae 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PRINTABLE AREA** retourne dans les paramètres *hauteur* et *largeur* la taille en pixels de la zone d’impression. Cette taille dépend des paramètres d’impression courants, de l’orientation du papier, etc. @@ -40,4 +37,13 @@ Pour connaître la taille totale de la page, vous pouvez : #### Voir aussi [GET PRINTABLE MARGIN](get-printable-margin.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 703 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md index ecae696cfb1d61..82250af73fda85 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PRINTABLE MARGIN** retourne les valeurs courantes des différentes marges définies lors de l’utilisation des commandes [Print form](../commands/print-form.md), [PRINT SELECTION](print-selection.md) et [PRINT RECORD](print-record.md). @@ -44,4 +41,13 @@ Il est possible de baser l’impression des formulaires effectuée à l’aide d [GET PRINTABLE AREA](get-printable-area.md) [Print form](../commands/print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 711 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md index 8c353b7850dd0f..d4c62203d727d8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get printed height** retourne la hauteur globale (en pixels) de la section imprimée par la commande [Print form](../commands/print-form.md). @@ -30,4 +27,13 @@ Les marges d’impression gauche et droite n’influent pas sur la valeur retour [GET PRINTABLE AREA](get-printable-area.md) [Print form](../commands/print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 702 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md index 4fd35f6ba770f7..ccebb45d023674 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PROCESS VARIABLE** lit la valeur de la ou des variable(s) process *varSource* (*varSource2*, etc.) depuis le process source dont le numéro est passé dans *process* et la retourne dans la ou les variables(s) *varDestination* ( *varDestination2*, etc.) du process courant. @@ -118,4 +115,13 @@ Reportez-vous à l'exemple de la commande *\_o\_DRAG AND DROP PROPERTIES*. [POST OUTSIDE CALL](post-outside-call.md) *Présentation du Glisser-Déposer* [SET PROCESS VARIABLE](set-process-variable.md) -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 371 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md index e40ebeeab7b6cc..4989aa186d97ad 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md @@ -55,4 +55,13 @@ Nous souhaitons modifier temporairement la destination de recherche, et rétabli #### Voir aussi -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1155 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md index c23d2c6529c03f..7a7827513623be 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md @@ -23,4 +23,13 @@ Par défaut, si aucune limite n’a été définie, la commande retourne 0. #### Voir aussi -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1156 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md index 7af5ab1326b1bb..cad110e2921802 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET REGISTERED CLIENTS** remplit deux tableaux : @@ -46,4 +43,14 @@ Si l’opération se déroule correctement, la variable système OK prend la val [EXECUTE ON CLIENT](execute-on-client.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 650 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md index 7f8fb6bfd0ccd6..e2e2be5473399b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md @@ -41,4 +41,13 @@ Après l’exécution de la commande : [GET FIELD PROPERTIES](get-field-properties.md) [GET TABLE PROPERTIES](get-table-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 686 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md index dde4c30e59d7d7..4457482b2064ff 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Get resource name** retourne le nom de la ressource dont le type est passé dans *resType* et le numéro de référence (ID) dans *resNum*. @@ -26,3 +23,13 @@ displayed_sidebar: docs Si vous ne passez pas le paramètre *resFichier*, la ressource est recherchée dans tous les fichiers de ressources ouverts. Si vous passez un numéro de référence de fichier de ressource dans le paramètre *resFichier*, la ressource n'est recherchée que dans ce fichier. Si la ressource n'existe pas, **Get resource name** retourne une chaîne vide. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 513 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md index 3670fc9f976b2f..ec7490f26e6af6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Get resource properties** retourne les attributs de la ressource dont le type est passé dans le paramètre *resType* et le numéro de référence dans *resNum*. @@ -36,3 +33,14 @@ Référez-vous à l'exemple de la commande [Get resource name](get-resource-name #### Variables et ensembles système La variable OK prend la valeur 0 si la ressource n'existe pas, sinon elle prend la valeur 1. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 515 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md index 677a1928406bb0..b75677292ced06 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET RESOURCE** retourne dans le champ ou la variable BLOB *resDonnées* le contenu de la ressource dont le type et le numéro sont passés dans *resType* et *resNum*. @@ -50,4 +47,14 @@ S'il n'y a pas assez de mémoire disponible pour charger l'image, une erreur est #### Voir aussi -*Ressources* \ No newline at end of file +*Ressources* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 508 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md index dbc91bd107c3b7..c00756d2e5b838 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get selected menu item parameter** retourne la chaîne de caractères personnalisée associée à la ligne de menu sélectionnée. Ce paramètre doit avoir été préalablement défini à l’aide de la commande [SET MENU ITEM PARAMETER](set-menu-item-parameter.md). @@ -25,4 +22,13 @@ Si aucune ligne de menu n’a été sélectionnée, la commande retourne une cha [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1005 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md index 5b12838e4581f7..64562b5c1ca04e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md @@ -48,4 +48,13 @@ Cette méthode projet permet d'adresser le même port série (sans protocole), q #### Voir aussi -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 909 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md index 903731fd703270..301c2c8e04fb1b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get string resource** retourne la chaîne stockée dans la ressource chaîne ("STR ") dont vous avez passé le numéro d'ID dans *resNum*. @@ -44,4 +41,14 @@ La variable système OK prend la valeur 1 si la ressource est trouvée, sinon el [Get indexed string](get-indexed-string.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 506 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md index eab4eb44e2d1f8..c08569f5028ee2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET STYLE SHEET INFO** retourne la configuration courante de la feuille de style *nomFeuilleStyle*. @@ -66,4 +63,14 @@ Vous souhaitez connaître la configuration actuelle de la feuille de style "Auto #### Voir aussi [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1256 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md index a6ea6f4672bcd5..c8080500382f52 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **Get subrecord key** est destinée à faciliter la migration du code 4D utilisant des sous-tables converties vers le code standard de manipulation des tables. - -**Rappel :** Les sous-tables ne sont plus prises en charge à compter de la version 11 de 4D. Lors de la conversion d’une ancienne base, les sous-tables existantes sont automatiquement transformées en tables standard reliées aux tables d’origine par un lien automatique. La sous-table devient une table “N” et la table d’origine la table “1”. Dans la table 1, l’ex-champ de type sous-table est transformé en champ spécial de type “Lien sous-table” et dans la table N, un champ spécial, également de type “Lien sous-table” est ajouté. Il est nommé “id\_added\_by\_converter”. +La commande **Get subrecord key** est destinée à faciliter la migration du code 4D utilisant des sous-tables converties vers le code standard de manipulation des tables.Les sous-tables ne sont plus prises en charge à compter de la version 11 de 4D. Lors de la conversion d’une ancienne base, les sous-tables existantes sont automatiquement transformées en tables standard reliées aux tables d’origine par un lien automatique. La sous-table devient une table “N” et la table d’origine la table “1”. Dans la table 1, l’ex-champ de type sous-table est transformé en champ spécial de type “Lien sous-table” et dans la table N, un champ spécial, également de type “Lien sous-table” est ajouté. Il est nommé “id\_added\_by\_converter”. Ce principe permet de préserver le fonctionnement des bases de données converties, mais il est fortement conseillé de remplacer les mécanismes des sous-tables par ceux des tables standard. @@ -80,3 +78,13 @@ Par exemple, vous pouvez écrire avec la structure précédente : ``` Ce code fonctionnera indifféremment avec un lien spécial ou standard. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1137 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md index 60d6b415d4cc72..02cb1445596929 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md @@ -41,4 +41,13 @@ Passez dans le paramètre *format* le type de paramètre dont vous souhaitez con #### Voir aussi -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 994 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md index 0f1633618f91ce..160f8967059797 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md @@ -33,4 +33,13 @@ Après l’exécution de la commande : [GET FIELD ENTRY PROPERTIES](get-field-entry-properties.md) [GET FIELD PROPERTIES](get-field-properties.md) -[GET RELATION PROPERTIES](get-relation-properties.md) \ No newline at end of file +[GET RELATION PROPERTIES](get-relation-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 687 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md index e935fcfa96a344..6798620a8aecef 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET TABLE TITLES** remplit les tableaux *titresTables* et *numTables* avec les noms et les numéros des tables de la base définis dans la fenêtre de Structure ou via la commande [SET TABLE TITLES](set-table-titles.md). Le contenu des deux tableaux est synchronisé. @@ -28,4 +25,13 @@ Dans les deux cas, la commande ne retourne pas les tables déclarées invisibles #### Voir aussi [GET FIELD TITLES](get-field-titles.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 803 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md index ee564d52d53833..d9aa02f8e52f79 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Get text from pasteboard** retourne le texte présent dans le conteneur de données. @@ -34,4 +31,14 @@ Si le texte est correctement extrait, la variable système OK prend la valeur 1, [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 524 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md index 0d292efd6d9648..929c4150c8948a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md @@ -82,4 +82,13 @@ Pour compter les mots d’un texte : #### Voir aussi -[DISTINCT VALUES](distinct-values.md) \ No newline at end of file +[DISTINCT VALUES](distinct-values.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1141 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md index bc63ee4d4d73e3..43cb76480d3dc5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get text resource** retourne le texte stocké dans la ressource texte ("TEXT") dont vous avez passé le numéro d'ID dans *resNum*. @@ -44,4 +41,14 @@ OK prend la valeur 1 si la ressource est trouvée, sinon elle prend la valeur 0 [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 504 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md index 1fb045384021b0..ad7564eae3ea61 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET USER LIST** remplit les tableaux *nomsUtil* et *réfsUtil* avec les noms et les numéros de référence uniques des utilisateurs tels qu'ils apparaissent dans la fenêtre des Mots de passe de 4D. @@ -37,4 +34,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET USER [GET GROUP LIST](get-group-list.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 609 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md index 8e8bb4630d8b16..bf5f9982f79755 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **GET USER PROPERTIES** retourne les informations concernant l'utilisateur dont le numéro de référence est passé dans le paramètre *réfUtilisateur*. Vous devez passer le numéro de référence retourné par la commande [GET USER LIST](get-user-list.md). @@ -54,4 +51,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET USER [GET USER LIST](get-user-list.md) [Is user deleted](is-user-deleted.md) [Set user properties](set-user-properties.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 611 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md index 14215e46461ee5..e77f055e04b260 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET WINDOW RECT** retourne les coordonnées globales de la fenêtre dont vous avez passé le numéro de référence dans le paramètre *fenêtre*. Si la fenêtre n'existe pas, les variables des paramètres sont inchangées. @@ -37,4 +34,13 @@ Reportez-vous à l'exemple de la commande [WINDOW LIST](window-list.md). #### Voir aussi [CONVERT COORDINATES](convert-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 443 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md index 218ab74121de2f..e21fe8f8f15fa9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get window title** retourne le titre de la fenêtre dont le numéro de référence est passé dans *fenêtre*. Si la fenêtre n'existe pas, une chaîne vide est retournée. @@ -29,4 +26,13 @@ Reportez-vous à l'exemple de la commande [SET WINDOW TITLE](set-window-title.md #### Voir aussi -[SET WINDOW TITLE](set-window-title.md) \ No newline at end of file +[SET WINDOW TITLE](set-window-title.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 450 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md index 254e35eb5ccd8c..f65e2b19b442e8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GOTO OBJECT** permet de sélectionner l'objet saisissable *objet* (variable ou champ) en tant que zone active du formulaire. C'est l'équivalent d'un clic de l'utilisateur dans la zone ou de l'utilisation de la touche **Tabulation** pour sélectionner le champ ou la variable. @@ -51,4 +48,13 @@ Reportez-vous à l'exemple de la commande [REJECT](reject.md). #### Voir aussi [CALL SUBFORM CONTAINER](call-subform-container.md) -[REJECT](reject.md) \ No newline at end of file +[REJECT](reject.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 206 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md index 42a0c8b63d1a64..e04601c8b9bdfa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md @@ -27,4 +27,15 @@ Référez-vous à l'exemple de la commande [Record number](record-number.md). #### Voir aussi *A propos des numéros d'enregistrements* -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 242 | +| Thread safe | ✓ | +| Modifie les variables | error | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md index 48e97b8a2a97aa..616b79247137b8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md @@ -60,4 +60,14 @@ La méthode objet de la zone de défilement *taNoms* suivante sélectionne le bo #### Voir aussi -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 245 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md index 7e2184838dd50a..ecdc4569cec8a8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GOTO XY** est destinée à être utilisée conjointement avec la commande [MESSAGE](message.md) lorsque vous affichez des messages dans une fenêtre ouverte par la commande [Open window](open-window.md). @@ -60,4 +57,13 @@ L'exemple ci-dessous : #### Voir aussi -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 161 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md index 7baaded93a2b1e..f5913cb5ffa029 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GRAPH SETTINGS** permet de paramétrer les échelles et les grilles d'un graphe placé dans un formulaire. Le graphe doit déjà avoir été défini à l'aide de la commande [GRAPH](graph.md). **GRAPH SETTINGS** ne fait rien s'il s'agit d'un graphe de type secteurs. Cette commande doit impérativement être appelée dans le même process que le formulaire. @@ -43,4 +40,13 @@ Reportez-vous à l'exemple de la commande GRAPHE. #### Voir aussi -[GRAPH](graph.md) \ No newline at end of file +[GRAPH](graph.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 298 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph.md index 33f21b2fafeb0f..7366c0a450eaf2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph.md @@ -275,4 +275,13 @@ Dans cet exemple, on personnalise divers paramètres : [GRAPH SETTINGS](graph-settings.md) *Paramètre des graphes* -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 169 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md index 09c3e4cf168a4e..460d0b1a4fe026 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **HIDE MENU BAR** rend invisible la barre de menus. @@ -45,4 +42,14 @@ La méthode suivante passe un enregistrement en plein écran (sous Mac OS) jusqu [HIDE TOOL BAR](hide-tool-bar.md) [SHOW MENU BAR](show-menu-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 432 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md index 87e458e6537bc8..dd2627326a1bbc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **HIDE PROCESS** masque toutes les fenêtres appartenant au process dont le numéro est *process*. Tous les éléments d'interface de *process* sont cachés jusqu'au [SHOW PROCESS](show-process.md) suivant. La barre de menus du process est aussi cachée. L'ouverture d'une fenêtre alors que le process est caché ne provoquera aucun redessinement d'écran. Si le process est déjà caché, cette commande ne fait rien. @@ -39,4 +36,13 @@ L'exemple suivant cachera toutes les fenêtres appartenant au process courant : #### Voir aussi [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 324 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md index 9d4dbad1a4d1fc..ba00cd2e3d1c4e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **HIDE TOOL BAR** permet de gérer l'affichage des barres d'outils personnalisées créées par la commande [Open form window](open-form-window.md) pour le process courant. @@ -41,4 +38,13 @@ Pour cela, dans l'événement On Resize du formulaire de la fenêtre standard, i #### Voir aussi -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 434 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md index 7ada63d3e99b10..a36ff3094e991b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **HIDE WINDOW** permet de masquer la fenêtre dont vous avez passé le numéro de référence dans *fenêtre* ou, si ce paramètre est omis, la fenêtre de premier plan du process courant. Cette commande vous permet, par exemple, dans un process comportant plusieurs fenêtres, de ne conserver à l'écran que la fenêtre active. @@ -47,4 +44,13 @@ Cet exemple est la méthode d'un bouton placé dans un formulaire entrée. Ce bo #### Voir aussi -[SHOW WINDOW](show-window.md) \ No newline at end of file +[SHOW WINDOW](show-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 436 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md index fe96ced3d55a81..ea3b14f45c3150 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **HIGHLIGHT RECORDS** permet de “surligner” des enregistrements dans un formulaire en liste. Cette opération est identique à la sélection en mode liste, par l’utilisateur, d’enregistrement(s) à l’aide des combinaisons **Maj+clic** ou **Ctrl+clic** (Windows) ou **Commande+clic** (Mac OS). La sélection courante n’est pas modifiée. @@ -49,4 +46,13 @@ Lorsque l’utilisateur clique sur le bouton, la boîte de dialogue standard de #### Voir aussi [GET HIGHLIGHTED RECORDS](get-highlighted-records.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 656 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md index e118c9483d576b..eff20974fbcae3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **HIGHLIGHT TEXT** sélectionne une partie du texte dans *objet*. @@ -64,4 +61,13 @@ Reportez-vous à l'exemple de la commande [FILTER KEYSTROKE](filter-keystroke.md #### Voir aussi -[GET HIGHLIGHT](get-highlight.md) \ No newline at end of file +[GET HIGHLIGHT](get-highlight.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 210 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md index 98be37da9525d3..eee725242f190f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md @@ -55,4 +55,13 @@ Exemples de requêtes avec authentification : #### Voir aussi -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1161 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md index 38d7d238b20255..33058d92fec540 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md @@ -39,4 +39,13 @@ Vous souhaitez changer temporairement de dossier de certificats : #### Voir aussi -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1307 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md index e8970c62b3c424..0c921dcf9bced3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md @@ -42,4 +42,13 @@ Passez dans le paramètre *valeur* une variable qui recevra la valeur courante d #### Voir aussi -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1159 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md index 228077edad6e4b..7385d067ca15b2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md @@ -103,4 +103,14 @@ Récupération d’une vidéo : #### Voir aussi -[HTTP Request](http-request.md) \ No newline at end of file +[HTTP Request](http-request.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1157 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md index 172a086fadf669..c64902dda51504 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md @@ -14,9 +14,16 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La documentation de cette commande est disponible sur [developer.4d.com.](https://developer.4d.com/docs/fr/API/HTTPRequestClass#http-parse-messege) + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1824 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md index 9fb82f0ca24dbb..f0fda6b1b4cb0b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md @@ -124,4 +124,13 @@ Demande d’ajout d’enregistrement en JSON dans une base distante : #### Voir aussi -[HTTP Get](http-get.md) \ No newline at end of file +[HTTP Get](http-get.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1158 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md index b794926cc19401..2ef253155f3bdb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md @@ -55,4 +55,13 @@ Vous souhaitez changer temporairement de dossier de certificats : #### Voir aussi [GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) -[HTTP Get certificates folder](http-get-certificates-folder.md) \ No newline at end of file +[HTTP Get certificates folder](http-get-certificates-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1306 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md index 4c31956911e1fd..fdfe983364e7dd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md @@ -43,4 +43,13 @@ L’ordre d’appel des options n’a pas d’importance. Si une même option es #### Voir aussi [HTTP AUTHENTICATE](http-authenticate.md) -[HTTP GET OPTION](http-get-option.md) \ No newline at end of file +[HTTP GET OPTION](http-get-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1160 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/idle.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/idle.md index 6ba7b2b66a399b..dd787403b86de4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/idle.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/idle.md @@ -51,4 +51,13 @@ La méthode METHODE EVENEMENT : #### Voir aussi *Commandes du thème Compilateur* -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 311 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md index 34ea87a4a6a0bf..2fd07a785ad7d8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md @@ -44,4 +44,14 @@ Si l'utilisateur clique sur **Annuler** dans une des boîtes de dialogue (de sé [EXPORT DATA](export-data.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[IMPORT TEXT](import-text.md) \ No newline at end of file +[IMPORT TEXT](import-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 665 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md index 235042043709d7..f705964e406ff8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **IMPORT DIF** lit les données de *document* (document DIF Windows ou Mac OS) et les écrit dans la table *laTable* en créant de nouveaux enregistrements. @@ -53,4 +50,14 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend [EXPORT DIF](export-dif.md) [IMPORT SYLK](import-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 86 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md index 8342811c67209e..11ad4b397d5845 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **IMPORT STRUCTURE** vous permet d'importer, dans la base courante, la définition XML de la structure de la base 4D passée dans le paramètre *structureXML*. @@ -49,4 +46,13 @@ Vous souhaitez importer une définiton de structure stockée sur disque dans la #### Voir aussi -[EXPORT STRUCTURE](export-structure.md) \ No newline at end of file +[EXPORT STRUCTURE](export-structure.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1310 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md index 13ebb0a3243e9b..b19be1db5a8405 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **IMPORT SYLK** lit les données de *document* (document SYLK Windows ou Mac OS) et les écrit dans la table *laTable* en créant de nouveaux enregistrements. @@ -53,4 +50,14 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend [EXPORT SYLK](export-sylk.md) [IMPORT DIF](import-dif.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 87 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md index af65f6fea73d32..852dc289db6397 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **IMPORT TEXT** lit les données de *document* (document texte Windows ou Mac OS) et les écrit dans la table *laTable* en créant de nouveaux enregistrements. @@ -55,4 +52,14 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 168 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md index 3e29eca765370f..b62f19451c726e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **In break** retourne Vrai pour le cycle d'exécution En rupture. @@ -27,4 +24,13 @@ Si vous souhaitez que le cycle d'exécution **In break** soit généré, assurez #### Voir aussi [In footer](in-footer.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 113 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md index 4b7f0e2adcb982..f30b70842b13ca 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **In footer** retourne Vrai pour le cycle d'exécution En pied. @@ -27,4 +24,13 @@ Si vous voulez que le cycle d'exécution **In footer** soit généré, vérifiez #### Voir aussi [In break](in-break.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 191 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md index a83e5b3f3f11a8..c358685bee0c21 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **In header** retourne Vrai pour le cycle d'exécution En entête. @@ -27,4 +24,13 @@ Si vous souhaitez que le cycle d'exécution **In header** soit généré, assure #### Voir aussi [In break](in-break.md) -[In footer](in-footer.md) \ No newline at end of file +[In footer](in-footer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 112 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md index b8fc652db66c3f..d2262f396d7876 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md @@ -29,4 +29,13 @@ Si vous effectuez l'opération depuis un trigger ou une sous-routine pouvant êt [CANCEL TRANSACTION](cancel-transaction.md) *Présentation des triggers* [START TRANSACTION](start-transaction.md) -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 397 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md index 718046cef848f1..6069150ffbf4e0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md @@ -44,4 +44,13 @@ L'exemple suivant ajoute un élément à un tableau : #### Voir aussi [DELETE FROM ARRAY](delete-from-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 227 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md index a56f1e133503fc..97f5c8c8477c24 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md @@ -30,4 +30,13 @@ Vous passez dans le paramètre *décalage* la position (relative à l'origine du #### Voir aussi -[DELETE FROM BLOB](delete-from-blob.md) \ No newline at end of file +[DELETE FROM BLOB](delete-from-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 559 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md index e378da6148eb5b..5a40e9079bcebd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **INSERT IN LIST** insère l'élément désigné par le paramètre *réfElément* dans la liste dont le numéro de référence ou le nom d'objet est passé dans *liste*. @@ -52,4 +49,13 @@ L'exemple suivant insère un élément (associé à aucune sous-liste) juste dev #### Voir aussi [APPEND TO LIST](append-to-list.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 625 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md index 49261a54dd632d..b7d34884595be8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **INSERT MENU ITEM** insère de nouvelles lignes dans le menu dont vous avez passé le numéro ou la référence dans *menu* et les place après la ligne de menu dont le numéro est passé dans *aprèsLigne*. @@ -56,4 +53,14 @@ L’exemple suivant crée un menu constitué de deux commandes auxquelles il aff #### Voir aussi [APPEND MENU ITEM](append-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 412 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md index 9ad88684f22af5..132518ceb0e38f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md @@ -40,4 +40,13 @@ L'exemple suivant illustre l'utilisation de **Insert string**. Les résultats so [Change string](change-string.md) [Delete string](delete-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 231 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/int.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/int.md index 580ea2f9ade951..b93689caf74075 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/int.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/int.md @@ -29,4 +29,13 @@ L'exemple suivant illustre le fonctionnement de **Int** pour les nombres positif #### Voir aussi -[Dec](dec.md) \ No newline at end of file +[Dec](dec.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 8 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md index c1360ce80f38ec..497143cedc94ba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md @@ -113,4 +113,13 @@ Après l'exécution de ce code : [BLOB to text](blob-to-text.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 548 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md index f95d997f726e3b..00fd286bedfcb9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md @@ -98,4 +98,14 @@ Si l'intégration s'effectue correctement, la variable système OK prend la vale #### Voir aussi -[LOG FILE TO JSON](log-file-to-json.md) \ No newline at end of file +[LOG FILE TO JSON](log-file-to-json.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1312 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md index c99aff4db7a329..2f2ca184cfe2b6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md @@ -48,4 +48,13 @@ L'exemple suivant recherche les clients en contact avec deux représentants, Jea #### Voir aussi [DIFFERENCE](difference.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 121 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md index 9ff7c9923198dc..9773382498f7d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **INVOKE ACTION** déclenche l'action standard définie par le paramètre *action*, optionnellement dans le contexte de la *cible*. @@ -65,4 +62,13 @@ Vous souhaitez exécuter l'action standard **Aller a page** (page 3) dans le for #### Voir aussi -[Action info](action-info.md) \ No newline at end of file +[Action info](action-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1439 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md index 98ea88db4d1f16..32a2637c390b4c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **Is a list** retourne VRAI si la valeur passée dans le paramètre *liste* est une référence valide à une liste hiérarchique. Dans les autres cas, elle retourne FAUX. @@ -31,3 +28,13 @@ Reportez-vous aux exemples de la commande *\_o\_DRAG AND DROP PROPERTIES*. #### Voir aussi + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 621 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md index ab2fdf2865dae1..212f5a0729a01a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md @@ -23,4 +23,13 @@ Si vous souhaitez connaître le nom de la variable pointée ou le numéro du cha #### Voir aussi [Is nil pointer](is-nil-pointer.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 294 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md index c924ba8813c115..4c5b6e7c2357c4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md @@ -40,4 +40,13 @@ Dans une de vos méthodes, vous avez placé du code pour déboguer la base lorsq #### Voir aussi [IDLE](idle.md) -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 492 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md index 89b8d229aa7456..848847465d8a0a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md @@ -29,3 +29,13 @@ Cette méthode empêchera l’ouverture de la base si le fichier de données est     QUIT 4D  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 716 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md index 589fdeff33183a..5fb2d06eade6d6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is editing text** retourne **Vrai** si l'utilisateur saisit des valeurs dans un objet de formulaire d'entrée, et **Faux** dans tous les autres cas. @@ -60,4 +57,13 @@ Pour permettre à l'utilisateur de sélectionner une ligne commençant par la le [FILTER KEYSTROKE](filter-keystroke.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1744 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md index 20f40681680d0d..949dde404db7c1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md @@ -24,4 +24,13 @@ Cette commande permet de détecter d’éventuelles suppressions de champs, ce q #### Voir aussi [Last table number](last-table-number.md) -[Is table number valid](is-table-number-valid.md) \ No newline at end of file +[Is table number valid](is-table-number-valid.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1000 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md index c7784462df4d14..d4f433161d7b16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md @@ -27,4 +27,13 @@ La valeur retournée par cette commande n'a de sens que si l'option "*Traduire l #### Voir aussi [Null](null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 964 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md index 568c963309fc2a..05cfb2af1125bb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is in print preview** retourne Vrai si l’option **Aperçu avant impression** est cochée dans la boîte de dialogue d’impression, et Faux sinon. Ce paramétrage est local au process. @@ -46,4 +43,13 @@ Cet exemple permet de prendre en compte tous les types d’impressions : #### Voir aussi [Get print preview](get-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1198 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md index c34d4a29358063..d9dfbaac604303 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md @@ -33,4 +33,13 @@ L'exemple suivant est la méthode objet d'un bouton testant si l'enregistrement #### Voir aussi [ADD TO SET](add-to-set.md) -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 273 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md index e34abe93faa1ac..3585e685f00428 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is license available** permet de connaître la disponibilité d’un plug-in. Elle est utile, par exemple, pour afficher ou masquer des fonctions nécessitant la présence d’un plug-in. @@ -48,4 +45,13 @@ Dans ce cas, la commande retourne Vrai si le plug-in correspondant dispose d’u [License info](license-info.md) [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 714 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md index 810407bb5819b0..ae4566dabbb8c6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md @@ -32,4 +32,13 @@ Vous voulez déterminer si le système d'exploitation courant est macOS : #### Voir aussi [System info](system-info.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1572 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md index 042ad03132b1c6..e38a3a6ec9a211 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **Is new record** retourne Vrai lorsque l’enregistrement courant de *laTable* est en cours de création et n’a pas encore été sauvegardé dans le process courant. - -**Note de compatibilité :** Il est possible d’obtenir la même information avec la commande existante [Record number](record-number.md), en testant si elle retourne -3\. Toutefois, il est vivement conseillé d’utiliser dans ce cas **Is new record** plutôt que [Record number](record-number.md). En effet, la commande **Is new record** assure une meilleure compatibilité avec les futures versions de 4D. +La commande **Is new record** retourne Vrai lorsque l’enregistrement courant de *laTable* est en cours de création et n’a pas encore été sauvegardé dans le process courant.Il est possible d’obtenir la même information avec la commande existante [Record number](record-number.md), en testant si elle retourne -3\. Toutefois, il est vivement conseillé d’utiliser dans ce cas **Is new record** plutôt que [Record number](record-number.md). En effet, la commande **Is new record** assure une meilleure compatibilité avec les futures versions de 4D. **4D Server :** Cette commande retourne un résultat différent dans le contexte de l'événement formulaire On Validate suivant qu'elle est exécutée sur 4D en mode local ou 4D en mode distant. En mode local, la commande retourne Faux (l'enregistrement est considéré comme déjà créé). En mode distant, la commande retourne Vrai car dans ce cas, l'enregistrement est également déjà créé sur le serveur mais l'information n'a pas encore été envoyée au client. @@ -39,4 +37,13 @@ Les deux instructions suivantes sont identiques, la seconde est conseillée pour #### Voir aussi [Modified record](modified-record.md) -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 668 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md index fffe8287eb1278..6506a7f51795a8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md @@ -35,4 +35,13 @@ Si vous souhaitez connaître le nom de la variable pointée ou le numéro du cha #### Voir aussi [Is a variable](is-a-variable.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 315 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md index efa30bb40abad4..a2fef6f4142b3e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md @@ -27,4 +27,13 @@ Si vous ne passez pas le paramètre *\**, la commande teste le fichier en recher #### Voir aussi -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1113 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md index d2aa138b6f54da..432e8cd285c4a4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **Is record loaded** retourne Vrai si l’enregistrement courant de *laTable* est chargé dans le process en cours. - -**4D Server** : En principe, lorsque des tables sont liées par des liens automatiques, les enregistrements courants des tables liées sont automatiquement chargés (cf. *Présentation des liens*). Toutefois, pour des raisons d'optimisation, 4D Server ne charge ces enregistrements qu'au moment où c'est nécessaire, par exemple lors de la lecture ou de l'affectation d'un champ de l'enregistrement lié. Par conséquent, dans ce contexte la commande **Is record loaded** retournera Faux en mode distant (elle retourne Vrai en mode local). +La commande **Is record loaded** retourne Vrai si l’enregistrement courant de *laTable* est chargé dans le process en cours.: En principe, lorsque des tables sont liées par des liens automatiques, les enregistrements courants des tables liées sont automatiquement chargés (cf. *Présentation des liens*). Toutefois, pour des raisons d'optimisation, 4D Server ne charge ces enregistrements qu'au moment où c'est nécessaire, par exemple lors de la lecture ou de l'affectation d'un champ de l'enregistrement lié. Par conséquent, dans ce contexte la commande **Is record loaded** retournera Faux en mode distant (elle retourne Vrai en mode local). #### Exemple @@ -42,3 +40,13 @@ Au lieu d’utiliser les actions automatiques “Enregistrement suivant” ou     End if  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 669 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md index bf01036a2b9d31..55d9f05c441190 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md @@ -23,4 +23,13 @@ Cette commande permet de détecter d’éventuelles suppressions de tables, ce q #### Voir aussi [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 999 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md index 97d8c0cba2ecf6..4c61b2a843e908 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is user deleted** teste le compte de l'utilisateur dont le numéro d'identification unique est passé dans *réfUtilisateur*. @@ -31,4 +28,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler **Is user deleted** ou [DELETE USER](delete-user.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 616 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md index 1faf800423d7a3..f93aa30b999aef 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is waiting mouse up** retourne **Vrai** si l'objet courant a été cliqué et que le bouton de la souris n'a pas été relâché, alors que la fenêtre contenant l'objet a le focus. Sinon la commande retourne **Faux**, en particulier si la fenêtre contenant l'objet a perdu le focus avant que le bouton soit relâché. @@ -52,4 +49,13 @@ Le code suivant peut être utilisé pour gérer le suivi de la souris dans un ob #### Voir aussi -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1422 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md index c15c795f884a29..00092a279ce29c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is window maximized** retourne **Vrai** si la fenêtre dont le numéro de référence est passé dans *window* est actuellement maximisée, et **Faux** dans le cas contraire. @@ -36,4 +33,13 @@ Vous souhaitez passer entre l'état maximisé et l'état précédent : #### Voir aussi [Is window reduced](is-window-reduced.md) -[MAXIMIZE WINDOW](maximize-window.md) \ No newline at end of file +[MAXIMIZE WINDOW](maximize-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1830 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md index 04296456598a0b..3995e80131d6ab 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is window reduced** retourne **Vrai** si la fenêtre dont le numéro de référence est passé dans *window* est actuellement réduite dans la barre des tâches (Windows) ou dans le dock (macOS), et **Faux** dans le cas contraire. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Voir aussi [Is window maximized](is-window-maximized.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1831 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md index a390230f0ac7ff..dcf736a5db6b1b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md @@ -32,4 +32,13 @@ Vous voulez savoir si le système d'exploitation courant est Windows : #### Voir aussi [System info](system-info.md) -[Is macOS](is-macos.md) \ No newline at end of file +[Is macOS](is-macos.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1573 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md index 5dab7d8eee1298..74f72902c3554c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md @@ -57,4 +57,13 @@ Dans cet exemple, les données des champs des enregistrements d’une table sont #### Voir aussi [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1219 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md index b24613532c8b05..808cb82c5710d2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md @@ -188,4 +188,13 @@ beta[1].golf:{line:10,offset:12}}} [JSON PARSE ARRAY](json-parse-array.md) [JSON Stringify](json-stringify.md) [JSON Validate](json-validate.md) -*Types champs et variables* \ No newline at end of file +*Types champs et variables* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1218 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md index 5d65b44b03aaf3..bc3424edc4eabc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md @@ -230,4 +230,13 @@ Si vous exécutez : #### Voir aussi - \ No newline at end of file + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1478 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md index 7ab1df09f73592..b6420c9390ee9a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md @@ -107,4 +107,13 @@ Conversion d’une sélection 4D dans un tableau objet : #### Voir aussi [JSON PARSE ARRAY](json-parse-array.md) -[JSON Stringify](json-stringify.md) \ No newline at end of file +[JSON Stringify](json-stringify.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1228 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md index d61839858fd551..6385e7ce48d46d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md @@ -173,4 +173,13 @@ $myTxtCol="[33,"mike","2017-08-28",false]" #### Voir aussi [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1217 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md index cf729ec2cd771c..78cc7ed249ec96 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md @@ -67,4 +67,13 @@ Utilisation de la commande **JSON TO SELECTION** pour ajouter des enregistrement #### Voir aussi -[Selection to JSON](selection-to-json.md) \ No newline at end of file +[Selection to JSON](selection-to-json.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1235 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md index c4ccf5442fd220..aa146b0a2dc3ba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md @@ -103,4 +103,13 @@ Vous souhaitez valider un objet JSON avec un schéma et obtenir la liste des err -[JSON Parse](json-parse.md) \ No newline at end of file +[JSON Parse](json-parse.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1456 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md index 2bf92bb97a9e32..0b117f51a18703 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Keystroke** retourne le caractère tapé par l'utilisateur dans un champ ou une zone saisissable. @@ -166,4 +163,13 @@ A l'aide des possibilités de communication interprocess de 4D, vous pouvez cons [FILTER KEYSTROKE](filter-keystroke.md) [Form event code](../commands/form-event-code.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 390 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md index ff473befc1de1e..5dce753ae57723 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md @@ -52,4 +52,13 @@ Dans la méthode du process worker (*leWorker*), vous ajoutez du code pour gére *A propos des workers* [CALL WORKER](call-worker.md) -[Current process name](current-process-name.md) \ No newline at end of file +[Current process name](current-process-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1390 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md index b2881242501be5..8869c1b063c5fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md @@ -31,4 +31,13 @@ Cette commande doit être appelée depuis une méthode d'appel sur erreur instal #### Voir aussi [ON ERR CALL](on-err-call.md) -[throw](throw.md) \ No newline at end of file +[throw](throw.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1799 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md index 3d3448a0d235da..9e32eb0dc026e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md @@ -41,4 +41,13 @@ La méthode projet suivante crée le tableau *taChamps* avec les noms des champs [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 255 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md index 8eff0de759d093..95fa73a2e074c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md @@ -32,4 +32,13 @@ La description du chemin de la dernière recherche peut être comparée à la de #### Voir aussi [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1045 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md index 911cb9ae041ccc..153169db7ce973 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md @@ -31,4 +31,13 @@ La description du plan de la dernière recherche peut être comparée à la desc #### Voir aussi [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query path](last-query-path.md) \ No newline at end of file +[Last query path](last-query-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1046 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md index 075299bca8c05a..e4d5ef62dc8933 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md @@ -31,4 +31,14 @@ L'exemple suivant désigne le dernier enregistrement de la table \[Contacts\] co [End selection](end-selection.md) [FIRST RECORD](first-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 200 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md index 25cc6a8785e31b..e8dad352aebf31 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md @@ -39,4 +39,13 @@ L’exemple suivant initialise les éléments du tableau tabTables. Ce tableau p [Last field number](last-field-number.md) [Is table number valid](is-table-number-valid.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 254 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md index ea6cd08e87672e..f2cfb629ea33e0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md @@ -147,4 +147,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [OPEN URL](open-url.md) -[SET ENVIRONMENT VARIABLE](set-environment-variable.md) \ No newline at end of file +[SET ENVIRONMENT VARIABLE](set-environment-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 811 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md index a84dd9ad3e83f7..276e1359233559 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LDAP LOGIN** ouvre une connexion en lecture seule sur le serveur LDAP désigné par le paramètre *url* avec les identifiants *login* et *motDePasse* fournis. Si elle est acceptée par le serveur, cette connexion sera utilisée pour toutes les recherches LDAP effectuées par la suite dans le process courant, jusqu'à ce que la commande [LDAP LOGOUT](ldap-logout.md) soit exécutée (ou que le process soit terminé). @@ -97,4 +94,13 @@ Cet exemple tente de se connecter à une application : #### Voir aussi *LDAP* -[LDAP LOGOUT](ldap-logout.md) \ No newline at end of file +[LDAP LOGOUT](ldap-logout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1326 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md index e7413b4c4c0dec..a9a0375e33259d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md @@ -12,13 +12,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LDAP LOGOUT** referme la connexion LDAP active dans le process courant (le cas échéant). S'il n'y a pas de connexion avec un server LDAP, l'erreur 1003 indiquant que vous n'êtes pas connecté est retournée. #### Voir aussi -[LDAP LOGIN](ldap-login.md) \ No newline at end of file +[LDAP LOGIN](ldap-login.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1327 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md index af35d6c776f8f0..0958b4338a3f1b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LDAP SEARCH ALL** recherche sur le server LDAP cible toutes les occurrences correspondant aux critères définis. Cette commande doit être exécutée dans le contexte d'une connexion serveur LDAP ouverte par la commande [LDAP LOGIN](ldap-login.md) dans le process courant ; sinon une erreur 1003 est retournée. @@ -117,4 +114,13 @@ Ces exemples illustrent plus particulièrement l'utilisation du paramètre *attr #### Voir aussi *LDAP* -[LDAP Search](ldap-search.md) \ No newline at end of file +[LDAP Search](ldap-search.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1329 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md index 572a05267aa880..72756dcf4872ba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LDAP Search** recherche sur le serveur LDAP cible la première occurrence correspondant aux critères définis. Cette commande doit être exécutée dans le contexte d'une connexion serveur LDAP ouverte par la commande [LDAP LOGIN](ldap-login.md) dans le process courant ; sinon une erreur 1003 est retournée. @@ -85,4 +82,13 @@ Vous voulez obtenir un tableau de toutes les entrées trouvées pour l'attribut #### Voir aussi *LDAP* -[LDAP SEARCH ALL](ldap-search-all.md) \ No newline at end of file +[LDAP SEARCH ALL](ldap-search-all.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1328 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/length.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/length.md index fe49d06154b07c..f7d5701cb3ad1c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/length.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/length.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**Length** vous permet d'obtenir la longueur de *laChaîne*. **Length** retourne le nombre de caractères alphanumériques contenus dans *laChaîne*. +**Length** vous permet d'obtenir la longueur de *laChaîne*.retourne le nombre de caractères alphanumériques contenus dans *laChaîne*. **Note :** En mode Unicode, si vous souhaitez vérifier qu'une chaîne ne contient aucun caractère, y compris des caractères ignorables, vous devez utiliser le test Si(Longueur(vTexte)=0) plutôt que Si(vTexte=""). En effet, si la chaîne contient par exemple Caractere(1) qui est un caractère ignorable, Longueur(vTexte) retourne bien 1 mais vTexte="" retourne Vrai. @@ -28,3 +28,13 @@ L'exemple suivant illustre l'utilisation de **Length**. Les valeurs retournées  vRésultat:=Length("Topaze") // vRésultat prend la valeur 6  vRésultat:=Length("Citoyen") // vRésultat prend la valeur 7 ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 16 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/level.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/level.md index 980419afcefa83..a0da0cd1607a87 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/level.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **Level** sert à déterminer le niveau de rupture ou d'en-tête courant. Elle retourne le numéro du niveau de rupture pendant les événements On Header et On Printing Break. @@ -68,4 +65,13 @@ Cet exemple est une maquette de méthode formulaire. Il traite chaque événemen [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Form event code](../commands/form-event-code.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 101 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md index 8468074a6f78c7..d77b073fe0e143 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md @@ -71,3 +71,13 @@ Ce tableau détaille le contenu de l'objet session des sessions REST : | sessionID | Texte | ID sessions REST | | IPAddress | Texte | ID du client ayant initié la session REST | | isDatastore | Booléen | Vrai si la requête REST provient d'un datastore | + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1782 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md index 73e3b4d7845a72..19278ff77974bd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **List item parent** retourne le numéro de référence de l'élément parent. @@ -71,4 +68,13 @@ Voici les numéros de référence des éléments de cette liste : [GET LIST ITEM](get-list-item.md) [List item position](list-item-position.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 633 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md index eec5044e4cc970..87d7b9651d7816 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **List item position** retourne la position de l'élément dont vous avez passé le numéro de référence dans *réfElément* parmi la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -40,4 +37,13 @@ Si l'élément n'existe pas, **List item position** retourne *0*. #### Voir aussi [Count list items](count-list-items.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 629 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md index 9df25c835e193e..76a9258b5793dd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md @@ -14,11 +14,18 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LIST OF CHOICE LISTS** retourne dans les tableaux synchronisés *tabNums* et *tabNoms* les numéros et les noms des énumérations définies dans l’éditeur d’énumérations en mode Développement. Les numéros des énumérations correspondent à leur ordre de création. Dans l’éditeur d’énumérations, les énumérations sont affichées par ordre alphabétique. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 957 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md index 36fd6b8ddbf3cd..a6edbf2929567b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LIST OF STYLE SHEETS** retourne la liste des feuilles de style de l’application dans le tableau *tabFeuillesStyle*. @@ -51,4 +48,13 @@ Si vous exécutez le code suivant : #### Voir aussi [GET STYLE SHEET INFO](get-style-sheet-info.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1255 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md index fa33cf3c2fc544..aa191062e88767 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LIST TO ARRAY** crée ou remplace le tableau *tableau* avec les éléments du premier niveau de la liste ou de l'énumération *liste*. @@ -86,4 +83,13 @@ Si vous exécutez l’instruction : [ARRAY TO LIST](array-to-list.md) [Load list](load-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 288 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md index 961eb64ad88618..4bc33ba2668e4d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LIST TO BLOB** stocke la liste hiérarchique *liste* dans le BLOB *blob*. @@ -47,4 +44,14 @@ Reportez-vous à l'exemple de la fonction [BLOB to list](blob-to-list.md). [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) [SAVE LIST](save-list.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 556 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md index 9bc54e91d2830e..705d75acf817dd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX COLLAPSE** vous permet de provoquer la contraction des lignes de rupture de l’objet list box désigné par les paramètres *objet* et *\**. @@ -52,4 +49,13 @@ Cet exemple contracte le premier niveau de lignes de rupture de la sélection de #### Voir aussi -[LISTBOX EXPAND](listbox-expand.md) \ No newline at end of file +[LISTBOX EXPAND](listbox-expand.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1101 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md index d040c713e19295..515176f8b9e2ec 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX DELETE COLUMN** supprime une ou plusieurs colonne(s) (visibles ou non) dans la list box désignée par les paramètres *objet* et *\**. @@ -35,4 +32,13 @@ Si le paramètre *positionCol* est supérieur au nombre de colonnes de la list b #### Voir aussi [LISTBOX Get number of columns](listbox-get-number-of-columns.md) -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 830 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md index 5600975614fd2d..3ce97c35076a41 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX DELETE ROWS** supprime une ou plusieurs ligne(s) à partir de la ligne numéro *positionLigne* (visible ou non) de la list box désignée par les paramètres *objet* et *\**. @@ -37,4 +34,14 @@ Si le paramètre *positionLigne* est supérieur au nombre de lignes des tableaux #### Voir aussi [LISTBOX Get number of rows](listbox-get-number-of-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 914 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md index 0d91523318afd4..080ce42723a2de 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX DUPLICATE COLUMN** permet de dupliquer la colonne désignée par le(s) paramètre(s) *objet* et *\** dans le contexte du formulaire en cours d’exécution (mode Application). Le formulaire d’origine, généré en mode Développement, n’est pas modifié. @@ -94,4 +91,13 @@ Vous souhaitez dupliquer dynamiquement une colonne booléenne et modifier son ti #### Voir aussi -[LISTBOX MOVE COLUMN](listbox-move-column.md) \ No newline at end of file +[LISTBOX MOVE COLUMN](listbox-move-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1273 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md index 32a36e3b1d052a..1437b829e8ab9b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX EXPAND** vous permet de provoquer le déploiement des lignes de rupture de l’objet list box affiché en mode hiérarchique désigné par les paramètres *objet* et *\**. @@ -81,4 +78,13 @@ Cet exemple illustre différents modes d’utilisation de la commande. Soient le #### Voir aussi -[LISTBOX COLLAPSE](listbox-collapse.md) \ No newline at end of file +[LISTBOX COLLAPSE](listbox-collapse.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1100 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md index a2cf7f51406a24..ff868f9c415ab1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -62,4 +59,13 @@ Exemples type d’utilisation : #### Voir aussi [LISTBOX GET ARRAYS](listbox-get-arrays.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1278 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md index c5b7ba3d4269c6..7f7fdc6c224cbd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET ARRAYS** retourne un ensemble de tableaux synchronisés fournissant diverses informations sur chaque colonne (visible ou non) de la list box désignée par les paramètres *objet* et *\**. @@ -51,4 +48,13 @@ Pour une list box de type sélection, collection ou entity selection, *tabStyles [LISTBOX Get array](listbox-get-array.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 832 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md index 91ac650a227d14..bcd1cc4f1a9b4d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get auto row height** retourne la limite minimum ou maximum de hauteur de ligne automatique définie pour l'objet list box désigné par les paramètres *objet* et *\**. @@ -57,4 +54,13 @@ Vous voulez connaître le nombre de lignes maximum pouvant être affichées dans [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) \ No newline at end of file +[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1502 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md index 274958a011d6c5..016734b2faeebf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET CELL COORDINATES** retourne dans les variables ou champs *gauche*, *haut*, *droite* et *bas* les coordonnées (en points) de la cellule désignée par les paramètres *colonne* et *ligne* dans la list box définie par *\** et *objet*. @@ -55,4 +52,13 @@ Vous souhaitez afficher un rectangle rouge autour de la cellule sélectionnée d #### Voir aussi [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[OBJECT GET COORDINATES](object-get-coordinates.md) \ No newline at end of file +[OBJECT GET COORDINATES](object-get-coordinates.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1330 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md index b85e04917b6154..0e91cc2881dbe5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET CELL POSITION** retourne les numéros de la *colonne* et de la *ligne* correspondant à l’emplacement du dernier clic ou de la dernière action de sélection effectuée dans la list box désignée par *\** et objet. @@ -54,4 +51,13 @@ Les valeurs retournées par la commande ne sont pas mises à jour dans le cas d #### Voir aussi [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) -[LISTBOX SELECT BREAK](listbox-select-break.md) \ No newline at end of file +[LISTBOX SELECT BREAK](listbox-select-break.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 971 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md index 429454da8e2fa0..8d99d1c2b32da3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get column formula** retourne la formule associée à la colonne de list box désignée par les paramètres *objet* et *\**. Les formules ne peuvent être utilisées que lorsque la propriété “Source de données” de la list box est **Sélection courante**, **Sélection temporaire** ou **Collection ou entity selection**. Si aucune formule n’est associée à la colonne, la commande retourne une chaîne vide. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) \ No newline at end of file +[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1202 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md index 64d1225d4b1366..6320709e8046cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get column width** retourne la largeur (en pixels) de la colonne de list box désignée par les paramètres *objet* et *\** . Vous pouvez passer indifféremment une colonne ou un en-tête de colonne de list box dans le paramètre *objet*. @@ -30,4 +27,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) \ No newline at end of file +[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 834 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md index 62ef4b4beecbbd..4a42e431eb0648 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get footer calculation** retourne le type de calcul associé à la zone de pied de list box désignée par les paramètres *objet* et *\**. @@ -33,4 +30,13 @@ Vous pouvez comparer la valeur retournée aux constantes du thème *List box pie #### Voir aussi -[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) \ No newline at end of file +[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1150 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md index a150b1b098855d..4c8fee912f1378 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get footers height** retourne la hauteur de la ligne de pied de la list box désignée par les paramètres *objet* et *\**. @@ -36,4 +33,13 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn #### Voir aussi -[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) \ No newline at end of file +[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1146 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md index 9d64d78f684ff5..d3a70cee724023 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET GRID COLORS** retourne la couleur des lignes horizontales et verticales composant la grille de l’objet list box désigné par les paramètres *objet* et *\**. @@ -32,4 +29,13 @@ La commande retourne dans les paramètres *couleurH* et *couleurV* des valeurs d #### Voir aussi -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1200 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md index 5aecaf05f9d425..e92a8fa72a540f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET GRID** retourne le statut affiché/masqué des lignes horizontales et/ou verticales composant la grille de l’objet list box désigné par les paramètres *objet* et *\**. @@ -29,4 +26,13 @@ La commande retourne dans les paramètres *horizontal* et *vertical* la valeur * #### Voir aussi -[LISTBOX SET GRID](listbox-set-grid.md) \ No newline at end of file +[LISTBOX SET GRID](listbox-set-grid.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1199 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md index 4b9cfc4b41cb1b..fddac2b04cc639 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get headers height** retourne la hauteur de la ligne d’en-tête de la list box désignée par les paramètres *objet* et *\**. @@ -36,4 +33,13 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn #### Voir aussi -[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) \ No newline at end of file +[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1144 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md index 3bf8291947f7cd..6c76d4e588a8c8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET HIERARCHY** vous permet de connaître les propriétés hiérarchiques de l’objet list box désigné par les paramètres *objet* et *\**. @@ -36,4 +33,13 @@ Si la list box est en mode hiérarchique, la commande remplit le tableau *hiéra #### Voir aussi -[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) \ No newline at end of file +[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1099 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md index 73c6865de53afa..3866ec8ae587ac 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get locked columns** retourne le nombre de colonnes verrouillées dans la list box désignée par les paramètres *objet* et *\**. @@ -32,4 +29,13 @@ En revanche, la commande ne tient pas compte du statut visible/invisible des col #### Voir aussi -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1152 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md index 642f427e0e8423..11c4deb2a6c933 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get number of columns** retourne le nombre total de colonnes (visibles ou non) présentes dans la list box désignée par les paramètres *objet* et *\**. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[LISTBOX DELETE COLUMN](listbox-delete-column.md) \ No newline at end of file +[LISTBOX DELETE COLUMN](listbox-delete-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 831 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md index b7f88ca61ccec1..a69d807ea146fa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get number of rows** retourne le nombre de lignes présentes dans la list box désignée par les paramètres *objet* et *\**. @@ -31,4 +28,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi [LISTBOX DELETE ROWS](listbox-delete-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 915 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md index 2e82dca1f58cf3..eaf1a211e28fc6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET OBJECTS** retourne un tableau contenant les noms de chaque objet composant la list box désignée par les paramètres *objet* et *\**. @@ -61,4 +58,13 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des #### Voir aussi [FORM LOAD](../commands/form-load.md) -[OBJECT Get type](object-get-type.md) \ No newline at end of file +[OBJECT Get type](object-get-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1302 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md index bd4fccd54a92fc..13cff053c8975d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande [LISTBOX GET PRINT INFORMATION](listbox-get-print-information.md) retourne des informations courantes relatives à l’impression de l’objet list box désigné par les paramètres *objet* et *\**. Cette commande permet de contrôler l’impression du contenu de la list box. @@ -69,3 +66,13 @@ Impression d’au moins 500 lignes de la list box, sachant que certaines lignes     PAGE BREAK  Until($GlobalPrinted>=500) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1110 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md index 2e6a7cb1c7601e..25910dbaf01a13 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get property** retourne la valeur courante de la *propriété* de list box ou de colonne de list box désignée par les paramètres *objet* et *\**. @@ -103,4 +100,13 @@ Si, par exemple, $déf retourne 200, vous pouvez en déduire que la 11e ligne es [LISTBOX SET GRID](listbox-set-grid.md) [LISTBOX SET PROPERTY](listbox-set-property.md) -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 917 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md index 803f66173868cf..075a3ad25a90de 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -58,4 +55,13 @@ Soit la list box suivante : *List box* [LISTBOX Get row color](listbox-get-row-color.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1271 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md index 3d78754b8f9683..bf5bb8ef0794f4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande ne fonctionne qu'avec les list box de type tableau. @@ -59,4 +56,13 @@ Considérons la list box suivante : #### Voir aussi -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1658 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md index d3307c6bff5025..56caf54a9d6b4c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -51,4 +48,13 @@ Soit la list box suivante : #### Voir aussi -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1269 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md index d867be3fce62f7..2c2cadd670c104 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get row height** retourne la hauteur de la *ligne* spécifiée dans l'objet List box désigné en utilisant les paramètres *objet* et éventuellement *\**. La hauteur des lignes peut être définie globalement via la Liste des propriétés ou la commande [LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md), ou individuellement à l'aide de la commande [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md). @@ -36,4 +33,13 @@ La hauteur de ligne retournée est exprimée: [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1408 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md index c895ebc93b20f2..040d86d7b649b6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get rows height** retourne la hauteur courante des lignes de l’objet list box désigné par les paramètres *objet* et *\**. La valeur retournée correspond à la hauteur d'une seule ligne. @@ -38,4 +35,13 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get row height](listbox-get-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 836 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md index 42437df4d06811..134024bbb34613 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get static columns** retourne le nombre de colonnes statiques dans la list box désignée par les paramètres *objet* et *\**. @@ -32,4 +29,13 @@ Si une colonne a été insérée ou supprimée par programmation à l’intérie #### Voir aussi -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1154 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md index 63758775e56268..e2877b89b347da 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET TABLE SOURCE** permet de connaître la source courante des données affichées dans la list box désignée par les paramètres *\** et *objet*. @@ -33,4 +30,13 @@ Si la list box est associée à des tableaux, *numTable* retourne -1 et *nom*, s #### Voir aussi -[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) \ No newline at end of file +[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1014 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md index b8860b4a1e22e5..82552647bb8de5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX INSERT COLUMN FORMULA** insère une colonne dans la list box désignée par les paramètres *objet* et *\** . @@ -118,4 +115,13 @@ La colonne est ajoutée à la list box : #### Voir aussi -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 970 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md index 6a1184c8aa2f28..d8527260d0430f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX INSERT COLUMN** insère une colonne dans la list box désignée par les paramètres *objet* et *\**. @@ -98,4 +95,13 @@ Vous souhaitez insérer dynamiquement une colonne dans une list box de type tabl #### Voir aussi [LISTBOX DELETE COLUMN](listbox-delete-column.md) -[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) \ No newline at end of file +[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 829 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md index 12a5d06b33ede4..3ddc3599ef397b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX INSERT ROWS** insère une ou plusieurs nouvelle(s) ligne(s) dans l’objet list box désigné par les paramètres *objet* et *\**. @@ -35,4 +32,14 @@ Si le paramètre *positionLigne* est supérieur au nombre de lignes des tableaux #### Voir aussi -[LISTBOX DELETE ROWS](listbox-delete-rows.md) \ No newline at end of file +[LISTBOX DELETE ROWS](listbox-delete-rows.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 913 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md index 6c110219ff8a11..bb9ba2ea13d9f9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX MOVE COLUMN** permet de déplacer par programmation la colonne désignée par le(s) paramètre(s) *objet* et *\** dans le contexte du formulaire en cours d’exécution (mode Application). Le formulaire d’origine, généré en mode Développement, n’est pas modifié. @@ -42,4 +39,13 @@ Vous souhaitez intervertir les 2e et 3e colonnes de la list box : #### Voir aussi -[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) \ No newline at end of file +[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1274 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md index 757357bf673540..f679406a0db164 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX MOVED COLUMN NUMBER** retourne dans les paramètres *ancPosition* et *nouvPosition* des numéros indiquant respectivement la précédente position et la nouvelle position de la colonne déplacée dans la list box désignée par les paramètres *objet* et *\**. @@ -32,4 +29,13 @@ Cette commande doit être utilisée en combinaison avec l’événement formulai #### Voir aussi [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) \ No newline at end of file +[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 844 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md index 2a6cdc48c94c04..aa1688b7c2fd06 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX MOVED ROW NUMBER** retourne dans les paramètres *ancPosition* et *nouvPosition* des numéros indiquant respectivement la précédente position et la nouvelle position de la ligne déplacée dans la list box désignée par les paramètres *objet* et *\**. @@ -34,4 +31,13 @@ Cette commande doit être utilisée en combinaison avec l’événement formulai #### Voir aussi [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) \ No newline at end of file +[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 837 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md index a2bc6ebde31218..c0bfc5b8640e8a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SELECT BREAK** permet de sélectionner des lignes de rupture dans l’objet list box désigné par les paramètres *objet* et *\**. La list box doit être affichée en mode hiérarchique. @@ -63,4 +60,13 @@ Voici le résultat : #### Voir aussi [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1117 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md index d22e3374373536..42849c0ab608cf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SELECT ROW** provoque la sélection de la ligne de numéro *positionLigne* dans l’objet list box désigné par les paramètres *objet* et *\**. @@ -54,4 +51,13 @@ A l’issue de l’exécution de la méthode, les tableaux sont synchronisés : [LISTBOX INSERT ROWS](listbox-insert-rows.md) [LISTBOX SELECT BREAK](listbox-select-break.md) [LISTBOX SELECT ROWS](listbox-select-rows.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 912 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md index c77a24d5d83f37..0cbf9395ee773c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SELECT ROWS** provoque la sélection des lignes d'une list box entity selection ou une list box collection correspondant aux entités ou objets contenus dans le paramètre *sélection*. @@ -86,4 +83,13 @@ Exemple avec une collection d'objets : #### Voir aussi -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1715 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md index e7bb8fc45e9873..b187e40c580ad8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -68,4 +65,13 @@ Vous voulez associer un tableau de hauteurs de ligne à une list box : #### Voir aussi [LISTBOX Get array](listbox-get-array.md) -[LISTBOX GET ARRAYS](listbox-get-arrays.md) \ No newline at end of file +[LISTBOX GET ARRAYS](listbox-get-arrays.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1279 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md index 56fba66f0f706e..f46dda0387783f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET AUTO ROW HEIGHT** vous permet de définir une *valeur* de hauteur minimum ou maximum dans l'objet list box désigné par les paramètres *objet* et *\**. @@ -59,4 +56,13 @@ Dans une list box où les hauteurs de lignes sont automatiques, vous voulez déf [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1501 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md index ac12b6be933c31..a25e2e21e1f443 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET COLUMN FORMULA** permet de modifier la *formule* associée à la colonne de list box désignée par les paramètres *objet* et *\**. Les formules ne peuvent être utilisées que lorsque la propriété “Source de données” de la list box est **Sélection courante**, **Sélection temporaire** ou **Collection ou entity selection**. @@ -43,4 +40,13 @@ Le paramètre *typeDonnées* permet de désigner le type des données issues de #### Voir aussi [LISTBOX Get column formula](listbox-get-column-formula.md) -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1203 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md index 4141aeb1d9ede6..a3fbd2e698c3b9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET COLUMN WIDTH** permet de modifier par programmation la largeur d’une ou de toutes les colonne(s) de l’objet (list box, colonne ou en-tête) désigné par les paramètres *objet* et *\**. @@ -35,4 +32,13 @@ Les paramètres optionnels *largeurMini* et *largeurMaxi* permettent de fixer de #### Voir aussi -[LISTBOX Get column width](listbox-get-column-width.md) \ No newline at end of file +[LISTBOX Get column width](listbox-get-column-width.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 833 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md index e8ed70293bd07f..7ffc2b2a07ef77 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET FOOTER CALCULATION** permet de définir le calcul automatique associé à la zone de pied de list box désignée par les paramètres *objet* et *\**. @@ -51,4 +48,13 @@ Si le type de données de la colonne ou d’au moins une colonne de la list box #### Voir aussi -[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) \ No newline at end of file +[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1140 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md index f39088d7ffd2a6..3d17d83d72c7d8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET FOOTERS HEIGHT** permet de modifier par programmation la hauteur de la ligne de pied de la list box désignée par les paramètres *objet* et *\**. @@ -36,4 +33,13 @@ Passez dans le paramètre *hauteur* la hauteur à définir. Par défaut, si vous #### Voir aussi -[LISTBOX Get footers height](listbox-get-footers-height.md) \ No newline at end of file +[LISTBOX Get footers height](listbox-get-footers-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1145 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md index c45d14e0b1691d..ae85184bb73769 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET GRID COLOR** permet de modifier la couleur de la grille de l’objet list box désigné par les paramètres *objet* et *\**. @@ -37,4 +34,13 @@ Les paramètres *horizontal* et *vertical* vous permettent de spécifier les tra [LISTBOX GET GRID COLORS](listbox-get-grid-colors.md) [LISTBOX SET GRID](listbox-set-grid.md) -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 842 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md index 32b5843546f46a..4967e3af204132 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET GRID** permet d’afficher ou de masquer les traits horizontaux et/ou verticaux composant la grille de l’objet list box désigné par les paramètres *objet* et *\**. @@ -31,4 +28,13 @@ Passez dans les paramètres *horizontal* et *vertical* des valeurs booléennes i [LISTBOX GET GRID](listbox-get-grid.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 841 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md index 4d9b7174679803..7a9dd2bc48438f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET HEADERS HEIGHT** permet de modifier par programmation la hauteur de la ligne d’en-tête de la list box désignée par les paramètres *objet* et *\**. @@ -40,4 +37,13 @@ Les en-têtes doivent respecter une hauteur minimale, définie par le système d #### Voir aussi -[LISTBOX Get headers height](listbox-get-headers-height.md) \ No newline at end of file +[LISTBOX Get headers height](listbox-get-headers-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1143 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md index 6ce3c9bf1b9187..1c8bd55fe631e2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET HIERARCHY** vous permet de configurer l'objet list box désigné par les paramètres *objet* et *\** en mode hiérarchique ou non. @@ -55,4 +52,13 @@ Définition des tableaux tPays, tRegion et tVille comme hiérarchie d’une list #### Voir aussi -[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) \ No newline at end of file +[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1098 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md index e5971d5cb23eac..c5a9a89b90b616 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET LOCKED COLUMNS** permet de verrouiller les *nbColonnes* premières colonnes gauches de la list box désignée par les paramètres *objet* et *\**. @@ -33,4 +30,13 @@ Si vous passez 0 ou une valeur négative dans *nbColonnes*, le verrouillage des #### Voir aussi [LISTBOX Get locked columns](listbox-get-locked-columns.md) -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1151 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md index 204d017be972fa..408b9ac4d66bf5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET PROPERTY** permet de définir la *valeur* de la *propriété* de list box ou de colonne de list box désignée par les paramètres *objet* et *\**. @@ -86,4 +83,13 @@ Vous souhaitez modifier la largeur maximale de la colonne nommée "ProductNumber *List box* -[LISTBOX Get property](listbox-get-property.md) \ No newline at end of file +[LISTBOX Get property](listbox-get-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1440 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md index 2f5821e2a29c5f..100287cdc8c3e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -65,4 +62,13 @@ Dans une list box tableau, on souhaite définir des paramétrages de couleur pou *List box* [LISTBOX Get row color](listbox-get-row-color.md) [LISTBOX Get row color as number](listbox-get-row-color-as-number.md) -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1270 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md index d694fb53b8be57..fe2fa68f6ca65a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -79,4 +76,13 @@ Après la deuxième instruction, toutes les cellules de la troisième ligne pass #### Voir aussi [LISTBOX Get row font style](listbox-get-row-font-style.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1268 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md index 46c18b77704556..d57f2546f8bed6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET ROW HEIGHT** permet de modifier la hauteur de la ligne spécifiée dans le paramètre *ligne* dans la List box désignée par les paramètres *objet* et éventuellement *\**. @@ -84,4 +81,13 @@ En revanche, si le code suivant est exécuté : [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1409 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md index e6a410eb4bdab2..018c0dcd00ca6f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET ROWS HEIGHT** permet de modifier par programmation la hauteur des lignes de l’objet list box désigné par les paramètres *objet* et *\**. @@ -38,4 +35,13 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur est exprimée en [LISTBOX Get rows height](listbox-get-rows-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 835 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md index 2c35629249f048..e60a5f2ff68357 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET STATIC COLUMNS** permet de rendre statiques les *nbColonnes* premières colonnes gauches de la list box désignée par les paramètres *objet* et *\**. @@ -29,4 +26,13 @@ Les colonnes statiques (ou colonnes fixes) ne peuvent pas être déplacées dans #### Voir aussi [LISTBOX Get static columns](listbox-get-static-columns.md) -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1153 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md index 693fa834f763ab..000888751db7ab 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET TABLE SOURCE** vous permet de modifier la source des données affichées dans la list box désignée par les paramètres *\** et *objet*. @@ -38,4 +35,13 @@ Si la list box contenait déjà des colonnes, leur contenu est mis à jour à l #### Voir aussi -[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) \ No newline at end of file +[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1013 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md index ea0e3346454a9b..d021f626390b05 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SORT COLUMNS** permet de trier (réordonner) toutes les lignes de la list box définie dans les paramètres *objet* et *\** sur la base des valeurs d’une ou plusieurs colonne(s). @@ -34,3 +31,13 @@ Vous pouvez définir des tris multi-niveaux : pour cela, passez autant de paires Conformément au principe de fonctionnement des list box, les colonnes sont synchronisées, ce qui signifie que le tri d’une colonne est automatiquement répercuté sur toutes les colonnes de l’objet. **Note** : La commande **LISTBOX SORT COLUMNS** ne tient pas compte de la propriété *Sortable* de la listbox. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 916 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md index ecf2f4cf33dca5..3af31eedfba9ae 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md @@ -194,3 +194,13 @@ Vous obtenez le résultat suivant (objet stringifié) : ``` **Note :** Pour plus d'informations sur le format de l'[objet](# "Données structurées sous forme d'objet natif 4D") retourné, veuillez contacter les services techniques de 4D. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1528 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md index 1a35a3070cd437..83ab4bb23f9c64 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Load list** crée une liste hiérarchique dont le contenu est copié depuis la liste *nomListe* créée en mode Développement, dans l'éditeur d'énumérations. La fonction retourne le numéro de référence de la liste nouvellement créée. @@ -50,4 +47,13 @@ Imaginons que vous créez une base pour le marché international. Vous voulez po [CLEAR LIST](clear-list.md) [Is a list](is-a-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 383 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md index 3f67d0f1801b2b..678654a5175eb9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md @@ -35,4 +35,13 @@ En environnements multi-utilisateurs et multi-process, lorsque vous devez modifi [Locked](locked.md) [UNLOAD RECORD](unload-record.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 52 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md index 99f20512c78011..8fb4255fdf3345 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md @@ -42,4 +42,14 @@ Si l'utilisateur clique sur Annuler dans la boîte de dialogue d'ouverture de fi #### Voir aussi -[SAVE SET](save-set.md) \ No newline at end of file +[SAVE SET](save-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 185 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md index 0c33a5aa924cce..c6baded31bfcc6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md @@ -44,4 +44,14 @@ La variable système OK prend la valeur 1 si les variables ont été correctemen [BLOB TO VARIABLE](blob-to-variable.md) [DOCUMENT TO BLOB](document-to-blob.md) [RECEIVE VARIABLE](receive-variable.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 74 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md index 673c4c1fc63c3a..eb5036687e2c89 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md @@ -65,4 +65,13 @@ Si la langue courante est, par exemple, le français canadien (fr-ca), la comman #### Voir aussi -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1105 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md index 0bf2f23736dbf1..065e8c7f6ab51a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md @@ -53,4 +53,14 @@ Si la commande a été exécutée correctement, la variable OK prend la valeur 1 #### Voir aussi -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 991 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md index e6694b49b0b400..a1f1221892474c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md @@ -39,4 +39,13 @@ Si l'enregistrement a été verrouillé par une *requête REST $lock*: #### Voir aussi [Locked](locked.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 353 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md index a794d7b709fa3f..24a153c90c3984 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **Locked records info** retourne un [objet](# "Données structurées sous forme d'objet natif 4D") décrivant le ou les enregistrement(s) actuellement verrouillé(s) dans *laTable*. - -**Note :** Cette commande fonctionne uniquement avec 4D et 4D Server. Elle retourne toujours un objet invalide lorsqu'elle est appelée depuis un 4D distant. Elle peut toutefois être appelée depuis un 4D distant si la méthode d'appel dispose de l'option "Exécuter sur serveur" ; elle retourne dans ce cas les informations relatives au serveur. Lorsqu'elle est appelée depuis un composant, elle s'applique à la base hôte. +La commande **Locked records info** retourne un [objet](# "Données structurées sous forme d'objet natif 4D") décrivant le ou les enregistrement(s) actuellement verrouillé(s) dans *laTable*.Cette commande fonctionne uniquement avec 4D et 4D Server. Elle retourne toujours un objet invalide lorsqu'elle est appelée depuis un 4D distant. Elle peut toutefois être appelée depuis un 4D distant si la méthode d'appel dispose de l'option "Exécuter sur serveur" ; elle retourne dans ce cas les informations relatives au serveur. Lorsqu'elle est appelée depuis un composant, elle s'applique à la base hôte. L'objet retourné contient une propriété "records" qui est une collection d'objets : @@ -89,4 +87,13 @@ Si le code est exécuté sur 4D Server et que le verrouillage est causé par un #### Voir aussi -[Locked](locked.md) \ No newline at end of file +[Locked](locked.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1316 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked.md index 5aed7b65252731..9200089485f268 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked.md @@ -33,4 +33,13 @@ Au cours d'une transaction, [LOAD RECORD](load-record.md) et **Locked** sont sou [Locked records info](locked-records-info.md) [LOAD RECORD](load-record.md) [LOCKED BY](locked-by.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 147 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md index dad1c4d4baf530..8728e16046a945 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md @@ -62,4 +62,13 @@ A chaque ouverture de la base, cette information sera inscrite dans l’Observat #### Voir aussi -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 667 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md index 04a037db0f21ea..c6d9f6972efc32 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md @@ -94,4 +94,14 @@ La commande **LOG FILE TO JSON** modifie la valeur des variables système OK et #### Voir aussi -[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) \ No newline at end of file +[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1352 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md index c8d2dd03312b66..5aeb83cb36ca64 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md @@ -30,4 +30,14 @@ Si la base fonctionne avec un fichier d’historique, la variable système OK pr #### Voir aussi -[SELECT LOG FILE](select-log-file.md) \ No newline at end of file +[SELECT LOG FILE](select-log-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 928 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log.md index ea9c9d8c4cff61..6788c23d395b16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**Log** retourne le logarithme népérien de *nombre*. **Log** est la fonction inverse de [Exp](exp.md). +**Log** retourne le logarithme népérien de *nombre*.est la fonction inverse de [Exp](exp.md). **Note :** 4D fournit la constante prédéfinie e number (2,71828...). @@ -30,4 +30,13 @@ L'exemple suivant affiche 1 : #### Voir aussi -[Exp](exp.md) \ No newline at end of file +[Exp](exp.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 22 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md index 35996fbcca3857..2e80cf5e5d778b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md @@ -34,4 +34,13 @@ Vous voulez récupérer les numéros des enregistrements de la sélection couran #### Voir aussi -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 647 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md index d8048b9a341a3d..e21bf5e80eb0fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md @@ -113,4 +113,13 @@ Après l'exécution de ce code : [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 550 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md index ef57946104ecd8..f01520cdd00d55 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md @@ -47,4 +47,13 @@ Cet exemple compare les résultats obtenus suivant que le paramètre *\** a ét #### Voir aussi -[Uppercase](uppercase.md) \ No newline at end of file +[Uppercase](uppercase.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 14 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md index 4e31a5fcc6b43d..71df0da321c554 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh command down** retourne Vrai si la touche **Commande** Macintosh est enfoncée. - -**Note :** Lorsqu'elle est appelée sous Windows, la fonction **Macintosh command down** retourne Vrai si la touche **Ctrl** Windows est enfoncée. +**Macintosh command down** retourne Vrai si la touche **Commande** Macintosh est enfoncée.Lorsqu'elle est appelée sous Windows, la fonction **Macintosh command down** retourne Vrai si la touche **Ctrl** Windows est enfoncée. #### Exemple @@ -30,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 546 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md index bbad2d85bbbcbb..49ac534cdc13c2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh control down** retourne Vrai si la touche **Control** du Macintosh est enfoncée. - -**Note :** Lorsqu'elle est appelée sous Windows, la fonction **Macintosh control down** retourne toujours Faux. Cette touche Macintosh n'a pas d'équivalent sous Windows. +**Macintosh control down** retourne Vrai si la touche **Control** du Macintosh est enfoncée.Lorsqu'elle est appelée sous Windows, la fonction **Macintosh control down** retourne toujours Faux. Cette touche Macintosh n'a pas d'équivalent sous Windows. #### Exemple @@ -30,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 544 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md index f7c127f3ba9877..f4bc92743d9ecd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh option down** retourne Vrai si la touche **Option** Macintosh est enfoncée. - -**Note :** Lorsqu'elle est appelée sous Windows, la fonction **Macintosh option down** retourne Vrai si la touche **Alt** Windows est enfoncée. +**Macintosh option down** retourne Vrai si la touche **Option** Macintosh est enfoncée.Lorsqu'elle est appelée sous Windows, la fonction **Macintosh option down** retourne Vrai si la touche **Alt** Windows est enfoncée. #### Exemple @@ -30,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh control down](macintosh-control-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 545 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md index 141471684bfb2f..db402e6186161e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md @@ -107,3 +107,14 @@ Rajouter une étoile à la fin d’une des deux syntaxes précédentes. #### Gestion des erreurs En cas d’erreur, la commande génère une erreur que vous pouvez intercepter via une méthode installée par la commande APPELER SUR ERREUR. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1019 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/max.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/max.md index 8fbeeb6b856f74..67ca4d8c94bb8a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/max.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/max.md @@ -70,4 +70,14 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re #### Voir aussi -[Min](min.md) \ No newline at end of file +[Min](min.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 3 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md index 2ce1573eb2cad4..526ea41145f059 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **MAXIMIZE WINDOW** provoque le zoom de la fenêtre dont vous avez passé le numéro de référence dans *fenêtre* ou, si ce paramètre est omis, de toutes les fenêtres de l'application (sous Windows) ou de la fenêtre de premier plan du process courant (sous Mac OS). @@ -82,4 +79,13 @@ Dans le contexte suivant, si l'utilisateur clique sur le bouton : [Is window maximized](is-window-maximized.md) [MINIMIZE WINDOW](minimize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 453 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md index a3c030bf84ec4f..71484ce0839818 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md @@ -26,4 +26,13 @@ A l’issue de l’exécution de la commande, les statistiques demandées sont f #### Voir aussi -[Cache info](cache-info.md) \ No newline at end of file +[Cache info](cache-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1118 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md index be45dc25841b37..25c95dfb1833b0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Menu bar height** retourne la hauteur de la barre de menus, exprimée en pixels. @@ -31,4 +28,13 @@ La commande retourne 0 : [HIDE MENU BAR](hide-menu-bar.md) [Menu bar screen](menu-bar-screen.md) -[SHOW MENU BAR](show-menu-bar.md) \ No newline at end of file +[SHOW MENU BAR](show-menu-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 440 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md index 34378c1727f2a2..faf6474db5dac7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Menu bar screen** retourne le numéro de l'écran dans lequel se trouve la barre de menus. @@ -25,4 +22,13 @@ displayed_sidebar: docs #### Voir aussi [Count screens](count-screens.md) -[Menu bar height](menu-bar-height.md) \ No newline at end of file +[Menu bar height](menu-bar-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 441 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md index d96de71049ee75..a3d8e2d4dd3540 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Menu selected** ne s'utilise que lorsqu'un formulaire est affiché. Cette fonction détecte la commande de menu choisie dans un menu et, dans le cas d'un sous-menu hiérarchique, retourne la référence du sous-menu. @@ -61,4 +58,14 @@ La méthode formulaire suivante utilise la fonction **Menu selected** pour fourn #### Voir aussi -*Gestion des menus* \ No newline at end of file +*Gestion des menus* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 152 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/message.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/message.md index 7ea281e008eaf6..3619c8855a360a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/message.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/message.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **MESSAGE** affiche *message* à l'écran dans une fenêtre spéciale de message qui est ouverte et refermée à chaque fois que vous l'appelez (à moins que vous ne travailliez dans une fenêtre préalablement ouverte par la commande [Open window](open-window.md), cf. ci-dessous). Le message est temporaire et est effacé dès qu'un formulaire est affiché ou dès que l'exécution de la méthode est stoppée. Si une autre commande **MESSAGE** est exécutée, le précédent message est effacé. @@ -116,4 +113,13 @@ Voici le résultat (sous Windows) : [CLOSE WINDOW](close-window.md) [ERASE WINDOW](erase-window.md) [GOTO XY](goto-xy.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 88 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md index 5c41dfb0f6f22d..d673b8ac484f68 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md @@ -61,4 +61,13 @@ L'exemple suivant supprime les thermomètres de progression avant d'effectuer un #### Voir aussi -[MESSAGES ON](messages-on.md) \ No newline at end of file +[MESSAGES ON](messages-on.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 175 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md index 7d0af7791835f0..94f5563a364886 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md @@ -18,4 +18,13 @@ displayed_sidebar: docs #### Voir aussi -[MESSAGES OFF](messages-off.md) \ No newline at end of file +[MESSAGES OFF](messages-off.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 181 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md index f957f2052be4d4..77805c549b4b35 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md @@ -44,4 +44,13 @@ Cette commande est particulièrement utile dans le cadre des composants, car ell #### Voir aussi *Gestionnaire d'erreur* -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 704 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md index f24bb1e699fc8f..6e76b8214e2829 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Method called on event** retourne le nom de la méthode installée par la commande [ON EVENT CALL](on-event-call.md). @@ -24,4 +21,13 @@ Si aucune méthode d’appel sur événement n’a été installée, une chaîne #### Voir aussi -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 705 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md index 02387dca38d1f4..c85f25f18c79f6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD Get attribute** retourne la valeur de l’attribut *typeAttribut* pour la méthode projet désignée par le paramètre *chemin*. Cette commande ne fonctionne qu’avec les méthodes projet. Si vous passez un *chemin* invalide, une erreur est générée. @@ -41,4 +38,13 @@ La commande retourne **Vrai** si un attribut est sélectionné et **Faux** s’i #### Voir aussi -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1169 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md index 9da4e9e5b3403d..07625191d99cc6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md @@ -59,4 +59,13 @@ A l'issue de l'exécution, $att contient, par exemple : #### Voir aussi -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1334 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md index ac9b3bdf7e191e..49dc31becdc8ba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET CODE** retourne dans le paramètre *code* le contenu de la ou des méthode(s) désignée(s) par le paramètre *chemin*. La commande peut retourner le code de tous les types de méthodes : méthodes base, définitions de classes, triggers, méthodes projet, méthodes formulaire et méthodes objet. @@ -120,4 +117,13 @@ Le document résultant contient alors : #### Voir aussi [METHOD SET CODE](method-set-code.md) -*Utiliser des tokens dans les formules* \ No newline at end of file +*Utiliser des tokens dans les formules* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1190 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md index fc24c60d482185..255e84d8d3d953 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET COMMENTS** retourne dans le paramètre *commentaires* la documentation de la ou des méthode(s) désignée(s) par le paramètre *chemin*. @@ -55,4 +52,13 @@ Si la commande est exécutée depuis un composant, elle s’applique par défaut #### Voir aussi -[METHOD SET COMMENTS](method-set-comments.md) \ No newline at end of file +[METHOD SET COMMENTS](method-set-comments.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1189 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md index 0a1fc716a1034f..f775e3c20265c5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET FOLDERS** retourne dans le tableau *tabNoms* les noms des dossiers créés dans la page Démarrage de l’Explorateur de 4D : @@ -32,4 +29,13 @@ Si la commande est exécutée depuis un composant, elle retourne par défaut les #### Voir aussi -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1206 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md index 8eb0d09462e96b..848794e3957814 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET MODIFICATION DATE** retourne dans les paramètres *dateMod* et *heureMod* les dates et heures de dernière modification de la ou des méthode(s) désignée(s) par le paramètre *chemin*. @@ -70,3 +67,13 @@ Vous souhaitez obtenir les dates de modification des méthodes d'un module, pré ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1170 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md index 133890d4e1f1f0..24844e98fe45af 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md @@ -39,3 +39,13 @@ Exemples d’utilisations types :   // Liste des méthodes projet de la base hôte débutant par une chaîne spécifique  METHOD GET NAMES(t_Noms;"web_@";*) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1166 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md index ccc9faa1e8834e..d9ba32a69be7aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD Get path** retourne le chemin d’accès interne complet d’une méthode. @@ -66,4 +63,13 @@ Si la commande est exécutée depuis un composant, elle retourne par défaut les [Current method path](current-method-path.md) [METHOD OPEN PATH](method-open-path.md) -[METHOD RESOLVE PATH](method-resolve-path.md) \ No newline at end of file +[METHOD RESOLVE PATH](method-resolve-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1164 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md index 95526cd38da63c..5722abb0a4073e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET PATHS FORM** remplit le tableau *tabChemins* avec les chemins d’accès internes et les noms des méthodes de tous les objets des formulaires, ainsi que des méthodes formulaire. Les méthodes formulaire sont libellées {formMethod}. @@ -70,4 +67,13 @@ Liste de tous les objets des formulaires "input" de la table \[Emp\] à partir d #### Voir aussi -[FORM GET NAMES](form-get-names.md) \ No newline at end of file +[FORM GET NAMES](form-get-names.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1168 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md index ac04182f44304b..aaa5dbea694cf0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET PATHS** remplit le tableau *tabChemins* avec les chemins d’accès internes et les noms des méthodes de l’application du type défini par le paramètre *typeMéthode*. @@ -86,4 +83,13 @@ Reportez-vous à l'exemple de la commande [METHOD SET CODE](method-set-code.md). #### Voir aussi [Current method path](current-method-path.md) -[METHOD GET FOLDERS](method-get-folders.md) \ No newline at end of file +[METHOD GET FOLDERS](method-get-folders.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1163 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md index 8493c42729e423..4a69be00a94e87 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD OPEN PATH** ouvre, dans l’éditeur de méthodes de 4D, la méthode dont vous avez passé le chemin d’accès interne dans le paramètre *chemin*. @@ -31,4 +28,13 @@ Vous pouvez exécuter cette commande depuis un composant, mais dans ce cas vous #### Voir aussi *Commandes du thème Accès objets développement* -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1213 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md index 30204bbdf6bd99..3dc46d261544fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD RESOLVE PATH** analyse le chemin d’accès interne passé dans le paramètre *chemin* et retourne ses différentes composantes dans les paramètres *typeMéthode*, *ptrTable*, *nomObjet* et *nomObjetForm*. @@ -84,4 +81,13 @@ Résolution d’un chemin d’objet de méthode formulaire table : #### Voir aussi -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1165 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md index dbb65eb1c731a0..f6ab6d202d0f4c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD SET ACCESS MODE** vous permet de définir le comportement de 4D lorsque vous tentez d’accéder en écriture à un objet déjà chargé en modification par un autre utilisateur ou process.La portée de cette commande est la session. @@ -27,3 +24,13 @@ Passez dans *mode* une des constantes suivantes du thème *Accès objets dévelo | On object locked abort | Entier long | 0 | Le chargement de l’objet est abandonné (fonctionnement par défaut) | | On object locked confirm | Entier long | 2 | 4D affiche une boîte de dialogue vous permettant de choisir de réessayer ou d’abandonner. En mode distant, cette option n’est pas prise en charge (le chargement est abandonné) | | On object locked retry | Entier long | 1 | 4D tente de charger l’objet jusqu’à ce qu’il soit libéré | + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1191 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md index 227d3ac7c83300..517845abcdce94 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD SET ATTRIBUTE** permet de définir la valeur d'un ou plusieurs attribut(s) *typeAttribut* pour la méthode projet désignée par le paramètre *chemin*. Cette commande ne fonctionne qu’avec les méthodes projet. Si vous passez un *chemin* invalide, une erreur est générée. @@ -69,4 +66,13 @@ Définition de plusieurs paires attribut/valeur : *Accès objets développement* [METHOD Get attribute](method-get-attribute.md) -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1192 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md index 9c32c2a0816759..a23a6e0c0d76fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD SET ATTRIBUTES** vous permet de définir les valeurs des *attributs* pour la ou les méthode(s) spécifiée(s) dans le paramètre *chemin*. @@ -64,4 +61,13 @@ Vous souhaiter modifier un seul attribut : #### Voir aussi [METHOD GET ATTRIBUTES](method-get-attributes.md) -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1335 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md index d770455dbd1c80..fbcb5438cd2d89 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD SET CODE** modifie le code de la ou des méthode(s) désignée(s) par le paramètre *chemin* avec le contenu passé dans le paramètre *code*. @@ -99,4 +96,13 @@ Cet exemple permet d’exporter et d’importer la totalité des méthodes proje #### Voir aussi -[METHOD GET CODE](method-get-code.md) \ No newline at end of file +[METHOD GET CODE](method-get-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1194 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md index 1680536b3c5e2f..f66041d8ae0deb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD SET COMMENTS** remplace la documentation de la ou des méthode(s) désignée(s) par le paramètre *chemin* par ceux définis dans le paramètre *commentaires*. @@ -63,4 +60,13 @@ Ajout d’une date de modification à une documentation de trigger existante : #### Voir aussi -[METHOD GET COMMENTS](method-get-comments.md) \ No newline at end of file +[METHOD GET COMMENTS](method-get-comments.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1193 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md index f8d3983345e905..886a1ddd4f8946 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md @@ -46,4 +46,13 @@ Le code suivant attend jusqu'à 5 secondes qu'un enregistrement soit déverrouil [Current time](current-time.md) [Tickcount](tickcount.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 459 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/min.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/min.md index 0f2db6b9e0f682..9ae295252181ff 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/min.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/min.md @@ -76,4 +76,14 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re #### Voir aussi -[Max](max.md) \ No newline at end of file +[Max](max.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 4 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md index 6866e246e24350..6ae9ce481dc558 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **MINIMIZE WINDOW** provoque un zoom arrière de la fenêtre dont vous avez passé le numéro de référence dans *fenêtre* ou, si ce paramètre est omis, de toutes les fenêtres de l'application (sous Windows) ou de la fenêtre de premier plan du process courant (sous Mac OS). @@ -49,4 +46,13 @@ Mac OS #### Voir aussi [MAXIMIZE WINDOW](maximize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 454 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md index 58a8037fcd82b5..6c0d6c68c91614 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md @@ -44,4 +44,13 @@ Vous souhaitez réinitialiser toutes les sessions en cours pour toutes les appli #### Voir aussi -[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) \ No newline at end of file +[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1596 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mod.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mod.md index cd3848cf28af45..0a9fceeb48bd44 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mod.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mod.md @@ -18,9 +18,6 @@ displayed_sidebar: docs #### Description La fonction **Mod** divise *nombre1* par *nombre2* et retourne le reste sous forme d'un nombre entier. - -**Notes :** - * **Mod** accepte des expressions de type Entier, Entier long et Réel (numérique). Cependant, si *nombre1* et/ou *nombre2* sont des nombres réels, ils sont arrondis avant le calcul du **Mod**. * La fonction **Mod** est à utiliser avec précaution avec des nombres réels de grande taille (au-delà de 2^31). Dans ce cas en effet, son fonctionnement peut se heurter aux limites des capacités de calcul des processeurs standard. @@ -35,3 +32,13 @@ L'exemple suivant illustre le fonctionnement de **Mod** dans différents cas de  vRésultat:=Mod(4;2) // vRésultat prend la valeur 0  vRésultat:=Mod(3,5;2) // vRésultat prend la valeur 0 ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 98 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md index 7146785dd2d40c..15805bcdf1506b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md @@ -41,4 +41,13 @@ L'exemple suivant montre une utilisation typique de **Modified record** : [Modified](modified.md) [Old](old.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 314 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified.md index 64315ef103eeae..366aab1b43dff2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Modified** retourne **Vrai** si une valeur a été assignée par programmation au champ *leChamp* ou s'il a été modifié lors de la saisie de données. La commande **Modified** ne fonctionne que lorsqu'elle est appelée dans le cadre d'une méthode formulaire (ou d'une sous-méthode appelée par la méthode formulaire). @@ -67,4 +64,13 @@ Vous sélectionnez un enregistrement de la table *\[uneTable\]*, puis vous appel #### Voir aussi [Form event code](../commands/form-event-code.md) -[Old](old.md) \ No newline at end of file +[Old](old.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 32 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md index 79dcab010cb116..c9d1c1d920ee71 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **MODIFY RECORD** permet à l'utilisateur de modifier l'enregistrement courant de *laTable*, ou de la table par défaut si ce paramètre est omis. **MODIFY RECORD** charge depuis le disque l'enregistrement courant pour le process en cours (s'il n'est pas déjà chargé par un autre utilisateur/process) et l'affiche dans le formulaire entrée courant. S'il n'y a pas d'enregistrement courant, **MODIFY RECORD** ne fait rien. **MODIFY RECORD** ne change pas la sélection courante. @@ -51,4 +48,15 @@ La variable système OK prend la valeur 1 lorsque l'enregistrement est validé e [Locked](locked.md) [Modified record](modified-record.md) [READ WRITE](read-write.md) -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 57 | +| Thread safe | ✗ | +| Modifie les variables | OK | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md index 399907ea99c9d9..72d8b62c2a3a17 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **MODIFY SELECTION** est quasiment identique à la commande [DISPLAY SELECTION](display-selection.md). Reportez-vous à la commande [DISPLAY SELECTION](display-selection.md) pour une description détaillée. @@ -33,4 +30,14 @@ Les seules différences entre ces deux commandes sont les suivantes : [DISPLAY SELECTION](display-selection.md) [Form event code](../commands/form-event-code.md) -*Présentation des ensembles* \ No newline at end of file +*Présentation des ensembles* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 204 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md index 6126c03bdb3b52..c7df0fb3c64775 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md @@ -138,4 +138,13 @@ Voir l'exemple de **[START MONITORING ACTIVITY](start-monitoring-activity.md).** #### Voir aussi [START MONITORING ACTIVITY](start-monitoring-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1713 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md index b46b5efde1ab68..55d4af28c2d954 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -**Month of** retourne un nombre représentant le numéro du mois de *laDate*. - -**Note :** C'est le numéro du mois est retourné, et non son nom (reportez-vous à l'exemple ci-dessous). +**Month of** retourne un nombre représentant le numéro du mois de *laDate*.C'est le numéro du mois est retourné, et non son nom (reportez-vous à l'exemple ci-dessous). Pour comparer la valeur retournée par cette fonction, 4D fournit les constantes prédéfinies suivantes, placées dans le thème "*Jours et mois*" : @@ -53,4 +51,13 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md). #### Voir aussi [Day of](day-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 24 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md index 192bd79b63c379..2c3a3790f515db 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md @@ -39,4 +39,13 @@ Reportez-vous à l'exemple de la commande [Pop up menu](pop-up-menu.md). [ON EVENT CALL](on-event-call.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 468 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md index c847220da23b7c..868758617a3efe 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md @@ -50,4 +50,14 @@ L'exemple suivant déplace le document DocNom : #### Voir aussi -[COPY DOCUMENT](copy-document.md) \ No newline at end of file +[COPY DOCUMENT](copy-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 540 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md index 124b2dc3ea3eed..bf1a43da0b840c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md @@ -108,4 +108,13 @@ Si vous souhaitez que le tableau des noms soit utilisé comme troisième critèr [ORDER BY](order-by.md) [SELECTION TO ARRAY](selection-to-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 718 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md index 09fec74a5fb8f6..02f222e9842928 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md @@ -54,4 +54,13 @@ Vous souhaitez sauvegarder une clé de chiffrement dans un fichier .4DKeyChain : [Discover data key](discover-data-key.md) [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[Register data key](register-data-key.md) \ No newline at end of file +[Register data key](register-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1611 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md index 7f1021ab2a8f66..4112a0a17aeddb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **New list** crée une nouvelle liste hiérarchique vide en mémoire et retourne son numéro de référence unique. @@ -46,4 +43,13 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md). [DELETE FROM LIST](delete-from-list.md) [INSERT IN LIST](insert-in-list.md) [LIST TO BLOB](list-to-blob.md) -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 375 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md index bdd2be543a37ba..f2c50965969476 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md @@ -30,3 +30,14 @@ Le fichier est renommé avec les numéros de sauvegarde courants de la base et d En cas d'anomalie, la commande génère une erreur que vous pouvez intercepter à l’aide de la commande [ON ERR CALL](on-err-call.md). + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 926 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md index df26aa11c81e79..161c404dca2b81 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md @@ -105,4 +105,13 @@ Avec cette commande, vous pouvez aisément gérer des objets en boucle : #### Voir aussi -[New shared object](new-shared-object.md) \ No newline at end of file +[New shared object](new-shared-object.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1471 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md index c42f1821e904e5..bfec4aa846aa61 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md @@ -105,4 +105,13 @@ Dans l'éditeur de barres de menus, vous remplacez AJOUT CLIENTS par la méthode [Execute on server](execute-on-server.md) *Introduction aux process* -*Process 4D préemptifs* \ No newline at end of file +*Process 4D préemptifs* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 317 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md index 9cbfb3128a24a4..fff04a57a3f1b8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md @@ -66,4 +66,13 @@ Vous souhaitez créer et modifier un objet partagé. La structure *Utiliser...Fi [New object](new-object.md) [New shared collection](new-shared-collection.md) -*Objets partagés et collections partagées* \ No newline at end of file +*Objets partagés et collections partagées* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1526 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md index 5e47a25f22b8a6..11b4d47b06b476 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md @@ -29,4 +29,14 @@ Reportez-vous à l'exemple de la commande [DISPLAY RECORD](display-record.md). [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 51 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md index 6400c30bfd8425..f309a1e575c784 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Next window** retourne le numéro de référence de la fenêtre située “derrière” la fenêtre dont vous avez passé le numéro de référence dans *fenêtre* (en fonction de l'ordre des fenêtres). #### Voir aussi -[Frontmost window](frontmost-window.md) \ No newline at end of file +[Frontmost window](frontmost-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 448 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md index a953c1620b8d98..bf734f37cf83c1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md @@ -40,4 +40,13 @@ Dans une base contenant un formulaire projet nommé “LeForm” et un formulair #### Voir aussi -[DEFAULT TABLE](default-table.md) \ No newline at end of file +[DEFAULT TABLE](default-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 993 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/not.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/not.md index fb061c1f737d11..9e2e78d40d76cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/not.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/not.md @@ -31,4 +31,13 @@ Dans l'exemple suivant, la valeur [True](true.md) est assignée à une variable. #### Voir aussi [False](false.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 34 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md index 72d2a45bd1927c..b6732b34f1d1ef 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **NOTIFY RESOURCES FOLDER MODIFICATION** permet de "forcer" l’envoi par 4D Server d’une notification indiquant à tous les postes 4D connectés que le contenu du dossier **Resources** de la base a été modifié, afin de leur permettre de synchroniser leur dossier **Resources** local. Cette commande permet en particulier de gérer la synchronisation des dossiers **Resources** téléchargés sur les postes distants lorsque le dossier **Resources** de la base est modifié via une procédure stockée sur le serveur. @@ -33,4 +30,13 @@ Le paramétrage courant peut être défini soit : #### Voir aussi -[Get 4D folder](get-4d-folder.md) \ No newline at end of file +[Get 4D folder](get-4d-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1052 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/null.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/null.md index f05567ba1366fe..ad864442930113 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/null.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/null.md @@ -131,4 +131,13 @@ Cet exemple compare les différents résultats de la commande [Undefined](undefi [Is field value Null](is-field-value-null.md) [OB SET NULL](ob-set-null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1517 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/num.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/num.md index 843f0423974256..3e065c61193738 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/num.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/num.md @@ -81,4 +81,13 @@ Cet exemple compare les résultats obtenus en fonction du séparateur “courant [Bool](bool.md) [GET SYSTEM FORMAT](get-system-format.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 11 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md index 6c7f492f21439e..7e1a0b56d23948 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md @@ -39,4 +39,13 @@ Puis, dans une méthode, vous pouvez saisir : #### Voir aussi -[OB Instance of](ob-instance-of.md) \ No newline at end of file +[OB Instance of](ob-instance-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1730 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md index e30468a845744e..a8618a1981613f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md @@ -20,9 +20,6 @@ displayed_sidebar: docs #### Description La commande **OB Copy** retourne un objet contenant une copie complète des propriétés, sous-objets et valeurs de *objet*. - -* Première syntaxe : **OB Copy(objet{; resoudrePtrs})** - Si *objet* contient des valeurs de type pointeur, par défaut la copie contient également les pointeurs. Vous pouvez cependant résoudre les pointeurs au moment de la copie : pour cela, passez **Vrai** dans le paramètre *résoudrePtrs*. Dans ce cas, chaque pointeur présent comme valeur dans *objet* sera évalué au moment de la copie et sa valeur dépointée sera utilisée. **Note :** Si les propriétés de *objet* sont des objets partagés ou des collections partagées, elles sont transformées en objets ou collections standard (non partagés) dans la copie. Utilisez la deuxième syntaxe si vous souhaitez retourner des éléments partagés (voir ci-dessous). @@ -166,4 +163,13 @@ Nous souhaitons copier *$sharedObj* dans *$sharedColl.* Etant donné qu'ils appa #### Voir aussi [OB Get](ob-get.md) -*Objets partagés et collections partagées* \ No newline at end of file +*Objets partagés et collections partagées* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1225 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md index c077bad39a363c..57e44a03be5939 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OB Entries** retourne une collection d'objets dont le contenu correspond à l'*objet* comme une paire de propriétés key/value. @@ -56,4 +53,13 @@ L'utilisation d'un objet comme une hashmap (système clé/valeur) permet d'accé #### Voir aussi [OB Keys](ob-keys.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1720 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md index 1ebd69786f6482..8fe8e320b8c6aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB GET ARRAY** récupère dans *tableau* le tableau de valeurs stocké dans la *propriété* de l’objet de langage désigné par le paramètre *objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB GET ARRAY** récupère dans *tableau* le tableau de valeurs stocké dans la *propriété* de l’objet de langage désigné par le paramètre *objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Passez dans le paramètre *propriété* le libellé de la propriété à lire. Attention, le paramètre *propriété* tient compte des majuscules/minuscules. @@ -52,4 +50,13 @@ On souhaite changer une valeur dans le premier élément du tableau : #### Voir aussi *Conversions de type entre les collections et les tableaux 4D* -[OB SET ARRAY](ob-set-array.md) \ No newline at end of file +[OB SET ARRAY](ob-set-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1229 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md index 9d5a3d020a6094..fc35c5b5d09233 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB GET PROPERTY NAMES** retourne dans *tabPropriétés* les noms des propriétés contenues dans l’objet de langage désigné par le paramètre *objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB GET PROPERTY NAMES** retourne dans *tabPropriétés* les noms des propriétés contenues dans l’objet de langage désigné par le paramètre *objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Passez dans le paramètre *tabPropriétés* un tableau texte. Si le tableau n’existe pas, la commande le crée et le dimensionne automatiquement. @@ -97,4 +95,13 @@ Utilisation d’un élément de tableau d’objets : #### Voir aussi [OB Get type](ob-get-type.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1232 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md index 1df006043d5df6..252e7a2b7a5008 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB Get type** retourne le type de la valeur associée à la *propriété* de l'*objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB Get type** retourne le type de la valeur associée à la *propriété* de l'*objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Passez dans le paramètre *propriété* le libellé de la propriété dont vous souhaitez connaître le type. Attention, le paramètre *propriété* tient compte des majuscules/minuscules. @@ -52,4 +50,13 @@ On souhaite obtenir le type de valeurs standard : #### Voir aussi [OB GET PROPERTY NAMES](ob-get-property-names.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1230 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md index f51770d4e84cc3..7dcd3b64f730b4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -La commande **OB Get** retourne la valeur courante de la *propriété* de l’*objet*, convertie optionnellement dans le *type* défini. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB Get** retourne la valeur courante de la *propriété* de l’*objet*, convertie optionnellement dans le *type* défini.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. **Note :** Cette commande prend en charge les définitions d'attributs dans les *objets* 4D Write Pro, comme la commande *WP GET ATTRIBUTES* (cf. exemple 9). Toutefois, à la différence de *WP GET ATTRIBUTES*, **OB Get** ne permet pas de manipuler directement une variable ou un champ image comme valeur d'attribut. @@ -212,4 +210,13 @@ Vous voulez connaître la taille d'une image stockée dans un objet : [OB Copy](ob-copy.md) [OB SET](ob-set.md) -*Types champs et variables* \ No newline at end of file +*Types champs et variables* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1224 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md index e86d0aed3928af..5b57e5d13bef72 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md @@ -45,4 +45,13 @@ Puis, dans une méthode, vous pouvez saisir : #### Voir aussi -[OB Class](ob-class.md) \ No newline at end of file +[OB Class](ob-class.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1731 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md index e95c9897b04c2d..9431e1b64c002b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB Is defined** retourne **Vrai** si *objet* ou *propriété* est défini, et **Faux** sinon. - -*objet* doit avoir été créé via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB Is defined** retourne **Vrai** si *objet* ou *propriété* est défini, et **Faux** sinon.doit avoir été créé via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Par défaut, si vous omettez le paramètre *propriété*, la commande vérifie que *objet* est défini. Un objet est défini si son contenu a été initialisé. @@ -61,4 +59,13 @@ Ce test équivaut à : #### Voir aussi -[OB Is empty](ob-is-empty.md) \ No newline at end of file +[OB Is empty](ob-is-empty.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1231 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md index 3f367fb398c5aa..44ae8c996ce2ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **OB Is empty** retourne **Vrai** si *objet* est indéfini ou vide, et **Faux** si *objet* est défini (initialisé) et contient au moins une propriété. - -*objet* doit avoir été créé via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB Is empty** retourne **Vrai** si *objet* est indéfini ou vide, et **Faux** si *objet* est défini (initialisé) et contient au moins une propriété.doit avoir été créé via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. #### Exemple @@ -42,4 +40,13 @@ Voici les différents résultats de la commande ainsi que de la commande [OB Is #### Voir aussi -[OB Is defined](ob-is-defined.md) \ No newline at end of file +[OB Is defined](ob-is-defined.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1297 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md index 7b415307dd0da3..fa4ea91588748a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md @@ -19,3 +19,13 @@ displayed_sidebar: docs La commande **OB Is shared** retourne **Vrai** si l'objet ou la collection *toCheck* est partagé , sinon **Faux** (voir *Objets partagés et collections partagées*). Cette commande retourne **Vrai** si vous passez une sélection d'entité partageable dans *toCheck* (voir ). + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1759 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md index fa7cec951bc11e..97357bf9aca0aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OB Keys** retourne une collection de chaînes contenant tous les noms des propriétés énumérables de l'*objet*. @@ -46,4 +43,13 @@ Vous souhaitez une collection avec tous les noms de propriétés de premier nive #### Voir aussi [OB Entries](ob-entries.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1719 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md index 8c05cd6ebbb9b3..7b501a1f55b59c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md @@ -36,4 +36,13 @@ Vous souhaitez supprimer la propriété "age" d’un objet : #### Voir aussi -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1226 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md index ac478f28bfacdd..b2d75f13fcea12 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB SET ARRAY** permet de définir le *tableau* à associer à la *propriété* dans l’objet de langage désigné par le paramètre *objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB SET ARRAY** permet de définir le *tableau* à associer à la *propriété* dans l’objet de langage désigné par le paramètre *objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Passez dans le paramètre *propriété* le libellé de la propriété à créer ou à modifier. Si la propriété existe déjà dans *objet*, sa valeur sera mise à jour. Si elle n’existe pas, elle est créée. Attention, le paramètre *propriété* tient compte des majuscules/minuscules. @@ -121,4 +119,13 @@ Utilisation d'un champ objet : *Conversions de type entre les collections et les tableaux 4D* [OB GET ARRAY](ob-get-array.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1227 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md index 7b264c7a19ea26..c7ceced3c36649 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **OB SET NULL** permet de stocker la valeur **null** dans l’objet de langage désigné par le paramètre *objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB SET NULL** permet de stocker la valeur **null** dans l’objet de langage désigné par le paramètre *objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Passez dans le paramètre *propriété* le libellé de la propriété dans laquelle stocker la valeur **null**. Si la propriété existe déjà dans *objet*, sa valeur sera mise à jour. Si elle n’existe pas, elle est créée. Attention, le paramètre *propriété* tient compte des majuscules/minuscules. @@ -39,4 +37,13 @@ On souhaite mettre la valeur null dans la propriété "âge" de Léa : [Null](null.md) [OB GET PROPERTY NAMES](ob-get-property-names.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1233 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md index 9bf9d2998504f3..ba5bf7b09e95c1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB SET** permet de créer ou de modifier une ou plusieurs paires propriété/valeur dans l’objet de langage désigné par le paramètre *objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB SET** permet de créer ou de modifier une ou plusieurs paires propriété/valeur dans l’objet de langage désigné par le paramètre *objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. **Note :** Cette commande prend en charge les définitions d'attributs dans les *objets* 4D Write Pro, comme la commande *WP SET ATTRIBUTES* (cf. exemple 11). Toutefois, à la différence de *WP SET ATTRIBUTES*, **OB SET** ne permet pas de manipuler directement une variable ou un champ image comme valeur d'attribut. @@ -197,4 +195,13 @@ Vous souhaitez stocker une image dans un champ objet. Vous pouvez écrire : [OB Get](ob-get.md) [OB REMOVE](ob-remove.md) [OB SET ARRAY](ob-set-array.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1220 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md index a9877f8d07674e..fb1581508e4b9f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OB Values** retourne une collection de variants contenant toutes les valeurs des propriétés énumérables de l'*objet*. @@ -46,4 +43,13 @@ Vous souhaitez une collection avec toutes les valeurs des propriétés d'un obje #### Voir aussi [OB Entries](ob-entries.md) -[OB Keys](ob-keys.md) \ No newline at end of file +[OB Keys](ob-keys.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1718 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md index 8209deac32e757..939ff3f7a2fdb7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT DUPLICATE** permet de créer une copie de l’objet désigné par le paramètre *objet* dans le contexte du formulaire en cours d’exécution (mode Application). Le formulaire d’origine, généré en mode Développement, n’est pas modifié. @@ -104,4 +101,14 @@ Création d’un nouveau bouton radio "bRadio6" basé sur le bouton radio exista [OBJECT Get pointer](object-get-pointer.md) [OBJECT MOVE](object-move.md) -*Objets de formulaire (Accès)* \ No newline at end of file +*Objets de formulaire (Accès)* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1111 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md index 35b5caba510648..362fe551799858 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get action** retourne le nom et (s'il existe), le paramètre de l'action standard associée à l'objet désigné par les paramètres *objet* et *\**. @@ -45,4 +42,13 @@ Vous souhaitez associer l'action "Annuler" à tous les objets du formulaire qui #### Voir aussi -[OBJECT SET ACTION](object-set-action.md) \ No newline at end of file +[OBJECT SET ACTION](object-set-action.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1457 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md index bfef4931cc31f8..22be588dc84330 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get auto spellcheck** retourne le statut de l’option **Correction orthographique** du ou des objet(s) désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -28,4 +25,13 @@ La commande retourne **Vrai** si la correction automatique est activée pour l #### Voir aussi -[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) \ No newline at end of file +[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1174 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md index 6709627ba23b79..7acada46281e9f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET BEST SIZE** retourne dans les paramètres *largeurOpti* et *hauteurOpti* la largeur et la hauteur “optimales” de l’objet de formulaire désigné par les paramètres *\** et *objet*. Ces valeurs sont exprimées en pixels. Cette commande est particulièrement utile dans le cadre de l’affichage ou de l’impression d’états complexes, associée à la commande [OBJECT MOVE](object-move.md). @@ -50,4 +47,13 @@ Reportez-vous à l’exemple de la routine [SET PRINT MARKER](set-print-marker.m #### Voir aussi [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 717 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md index aaf88201eba508..c9d3c3ed871bbf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get border style** retourne le style de ligne de bordure de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -40,4 +37,13 @@ La commande retourne une valeur correspondant au style de la bordure. Vous pouve #### Voir aussi -[OBJECT SET BORDER STYLE](object-set-border-style.md) \ No newline at end of file +[OBJECT SET BORDER STYLE](object-set-border-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1263 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md index ed2bc718f77bbf..ed73280c62825b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get context menu** retourne le statut courant de l’option "Menu contextuel" de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -30,4 +27,13 @@ La commande retourne **Vrai** si le menu contextuel est activé pour l’objet e #### Voir aussi -[OBJECT SET CONTEXT MENU](object-set-context-menu.md) \ No newline at end of file +[OBJECT SET CONTEXT MENU](object-set-context-menu.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1252 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md index 3f8878f5ed2224..e619f2e5289d50 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET COORDINATES** retourne dans les variables ou champs *gauche*, *haut*, *droite* et *bas* les coordonnées (en points) du ou des objet(s) du formulaire courant défini(s) par les paramètres *\** et *objet*. @@ -86,4 +83,13 @@ La méthode retourne les coordonnées théoriques. Si la list box est redimensio [CONVERT COORDINATES](convert-coordinates.md) [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) [OBJECT MOVE](object-move.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 663 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md index 0fb0ee4242f213..285d03cb451f29 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get corner radius** retourne la valeur courante du rayon d'angles pour l'objet désigné par le paramètre *objet*. Cette valeur peut avoir été définie au niveau du formulaire en utilisant la propriété (cf. *Rayon d'arrondi (rectangles)*), ou via la commande [OBJECT SET CORNER RADIUS](object-set-corner-radius.md) pour le process courant. @@ -48,4 +45,13 @@ Le code suivant peut être associé à la méthode d'un bouton : #### Voir aussi -[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) \ No newline at end of file +[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1324 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md index 2e2ad587edbefd..b5802b006d8669 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get data source** retourne la source de données courante de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -41,4 +38,13 @@ Vous exécutez le code suivant : #### Voir aussi -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1265 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md index dc9a4349996d67..6624504c62242f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET DRAG AND DROP OPTIONS** retourne les options de glisser-déposer pour l’objet ou les objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -38,4 +35,13 @@ Chaque paramètre retourne Vrai ou Faux suivant que l’option correspondante es #### Voir aussi -[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) \ No newline at end of file +[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1184 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md index 5dbf1977836bf4..b0dcba8f391054 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get enabled** retourne Vrai si l'objet ou le groupe d'objets désigné par *objet* est activé dans le formulaire et Faux s’il est inactivé. @@ -36,4 +33,13 @@ Cette commande peut être appliquée aux types d'objets suivants : #### Voir aussi -[OBJECT SET ENABLED](object-set-enabled.md) \ No newline at end of file +[OBJECT SET ENABLED](object-set-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1079 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md index cf2f3de67faea7..0c8ebafb049b9c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get enterable** retourne Vrai si l'objet ou le groupe d'objets désigné par *objet* dispose de l’attribut **saisissable** et Faux sinon. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1067 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md index 49a950d1836e6a..c8c000961c442f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET EVENTS** vous permet de d’obtenir la configuration courante des événements formulaire du formulaire, de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -48,4 +45,13 @@ Vous souhaitez activer deux événements et obtenir la liste des événements po #### Voir aussi -[OBJECT SET EVENTS](object-set-events.md) \ No newline at end of file +[OBJECT SET EVENTS](object-set-events.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1238 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md index 09aedaf844046c..5090256fb6e964 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get filter** retourne le nom du filtre de saisie éventuellement associé à l'objet ou au groupe d'objets désigné par *objet*. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel \*, vous indiquez que le paramètre *obje #### Voir aussi -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1073 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md index 8a759d553b9d8c..d56b1c040964a1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get focus rectangle invisible** retourne le statut de l’option d’invisibilité du rectangle de focus de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. Ce paramétrage correspond à l’option **Cacher rectangle de focus** disponible pour les objets saisissables dans la Liste des propriétés en mode Développement. La commande retourne le statut courant de l’option, qu’elle ait été définie en mode Développement ou à l’aide de la commande [OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md). @@ -30,4 +27,13 @@ La commande retourne **Vrai** si le rectangle de focus est masqué et **Faux** s #### Voir aussi -[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1178 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md index 0c6272895f18fd..f92fde957dfa43 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get font size** retourne la taille (en points) de la police de caractères utilisée par le ou les objet(s) de formulaire désigné(s) par *objet*. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[OBJECT SET FONT SIZE](object-set-font-size.md) \ No newline at end of file +[OBJECT SET FONT SIZE](object-set-font-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1070 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md index 387e69db78b8bb..9b723ebb3d0c10 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get font style** retourne le style courant de la police de caractères utilisée par le ou les objet(s) de formulaire désigné(s) par *objet*. @@ -35,4 +32,13 @@ Vous pouvez comparer la valeur retournée par la commande à la valeur d’une o #### Voir aussi -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1071 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md index fa3107aea66590..59b9e4883c56a2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get font** retourne le nom de la police de caractères utilisée par le ou les objet(s) de formulaire désigné(s) par *objet*. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1069 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md index a943418fd19837..8d57db1c70708c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get format** retourne le format d’affichage courant appliqué à l’objet spécifié par le paramètre *objet*. @@ -65,4 +62,13 @@ Les formats personnalisés sont retournés inchangés : #### Voir aussi -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 894 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md index 9a3148ae1c505d..d45571bc98c932 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get help tip** retourne le message d’aide associé à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\** dans le process courant. @@ -38,4 +35,13 @@ Le libellé d’un bouton image est stocké sous forme de message d’aide. Ce l #### Voir aussi -[OBJECT SET HELP TIP](object-set-help-tip.md) \ No newline at end of file +[OBJECT SET HELP TIP](object-set-help-tip.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1182 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md index 5360af33052464..14bfa77cbe4780 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get horizontal alignment** retourne un code indiquant le type d’alignement horizontal appliqué à l’objet désigné par les paramètres *objet* et *\**. @@ -58,4 +55,13 @@ Les objets de formulaire auxquels un alignement peut être appliqué sont les su [OBJECT Get vertical alignment](object-get-vertical-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 707 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md index f9b6406b9e6575..ecc5e7edca97db 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get indicator type** retourne le type d’indicateur courant affecté au(x) thermomètre(s) désigné(s) par le(s) paramètre(s) *objet* et *\**. @@ -36,4 +33,13 @@ Vous pouvez comparer la valeur retournée par la commande aux constantes suivant #### Voir aussi -[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) \ No newline at end of file +[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1247 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md index a9f1769f2d2cad..aaa05763b7eff7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get keyboard layout** retourne la configuration clavier courante associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -28,4 +25,13 @@ La commande retourne une chaîne indiquant le code de langue utilisé, basé sur #### Voir aussi -[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) \ No newline at end of file +[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1180 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md index 8827c81b30f64d..a047853bff667a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get list name** retourne le nom de l’énumération associée à l'objet ou au groupe d'objets désigné par *objet*. 4D vous permet d'associer une énumération (créée avec l'éditeur d'énumérations en mode Développement) aux objets de formulaire via l'éditeur de formulaires ou la commande [OBJECT SET LIST BY NAME](object-set-list-by-name.md). @@ -38,4 +35,13 @@ Si aucune liste du type défini n’est associée à l’*objet*, la commande re #### Voir aussi [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1072 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md index 01c262bd7491d8..a5f1abcaff3783 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get list reference** retourne le numéro de référence (*RefListe*) de la liste hiérarchique associée à l’objet ou au groupe d'objets désigné par *objet* et *\**. @@ -38,4 +35,13 @@ Si aucune liste hiérarchique n’est associée à l’objet pour le *typeListe* #### Voir aussi [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1267 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md index 3fd0411348f259..63a6d38ca44607 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET MAXIMUM VALUE** retourne dans la variable *valeurMaxi* la valeur maximum actuelle de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -29,4 +26,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1245 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md index 9ce8ed2e1dac0e..6253002e67df1e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET MINIMUM VALUE** retourne dans la variable *valeurMini* la valeur minimum courante de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -29,4 +26,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1243 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md index fca6c7a98a49ff..5a549c62d72c54 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get multiline** retourne le statut courant de l’option "Multilignes" de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -38,4 +35,13 @@ La valeur retournée correspond à l’une des constantes suivantes du thème "* #### Voir aussi -[OBJECT SET MULTILINE](object-set-multiline.md) \ No newline at end of file +[OBJECT SET MULTILINE](object-set-multiline.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1254 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md index 3c72101528825d..7a22ca5c203233 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get name** retourne le nom d’un objet de formulaire. @@ -40,4 +37,13 @@ Après l’exécution de cette méthode objet, la variable *$nomBtn* contient la [OBJECT Get pointer](object-get-pointer.md) *Objets (Formulaires)* -*Objets de formulaire (Accès)* \ No newline at end of file +*Objets de formulaire (Accès)* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1087 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md index baac4f3f032de0..25892b2410a4cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get placeholder** retourne le texte d’exemple associé à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. Si aucun texte d’exemple n’est associé à l’objet, la commande retourne une chaîne vide. @@ -38,4 +35,13 @@ Vous souhaitez lire le texte exemple d’un champ : #### Voir aussi -[OBJECT SET PLACEHOLDER](object-set-placeholder.md) \ No newline at end of file +[OBJECT SET PLACEHOLDER](object-set-placeholder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1296 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md index 2424106df2d26a..847a157764ba95 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get pointer** retourne un pointeur vers la variable d’un objet de formulaire. @@ -55,4 +52,13 @@ Soit un formulaire "SF" utilisé deux fois comme sous-formulaire dans le même f [OBJECT Get subform container value](object-get-subform-container-value.md) *Objets (Formulaires)* *Objets de formulaire (Accès)* -[Self](self.md) \ No newline at end of file +[Self](self.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1124 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md index c2a2a59b996c41..bb24e2fb428951 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET PRINT VARIABLE FRAME** vous permet de d’obtenir la configuration courante des options d’impression en taille variable de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -38,4 +35,13 @@ Si l’*objet* est un sous-formulaire et si l’impression en taille variable es #### Voir aussi -[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) \ No newline at end of file +[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1241 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md index 8830771e39b2a7..62e26259613b4e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET RESIZING OPTIONS** retourne les options de redimensionnement courantes de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -45,4 +42,13 @@ Le paramètre *vertical* retourne une valeur indiquant l’option de redimension #### Voir aussi -[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) \ No newline at end of file +[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1176 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md index bc72e4386f008b..76808906bc8d62 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET RGB COLORS** retourne les couleurs d’avant-plan et d’arrière-plan de l'objet ou du groupe d'objets désigné(s) par *objet*. @@ -37,4 +34,13 @@ Pour plus d’informations sur le format des paramètres *couleurAvantPlan*, *co #### Voir aussi -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1074 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md index 1562a613ae5fee..a436c5b04ef53a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET SCROLL POSITION** retourne dans les paramètres *positionLigne* et *positionH* des informations relatives à la position des barres de défilement de l’objet de formulaire désigné par les paramètres *\** et *objet*. @@ -33,4 +30,13 @@ Si *objet* désigne une image (variable ou champ), *positionLigne* retourne le d #### Voir aussi -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1114 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md index 52ce7f04944c73..8bd724d8f751ca 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET SCROLLBAR** permet de connaître le statut affiché/masqué des barres de défilement horizontale et verticale de l'objet ou du groupe d'objets désigné par *objet*. @@ -47,4 +44,13 @@ Pour plus d'informations, reportez-vous à la description de la commande [OBJECT #### Voir aussi -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1076 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md index 5b8d450ea9d419..e2b90c9d285ea5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET SHORTCUT** retourne l’équivalent clavier associé à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -42,4 +39,13 @@ Si aucune touche de modification n’a été définie dans l’équivalent clavi #### Voir aussi -[OBJECT SET SHORTCUT](object-set-shortcut.md) \ No newline at end of file +[OBJECT SET SHORTCUT](object-set-shortcut.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1186 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md index e0a38327d32c29..8b5aea9027586c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get style sheet** retourne le nom de la feuille de style associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -47,4 +44,13 @@ Dans **l'architecture Projet**, seules les trois feuilles de style automatiques #### Voir aussi [OBJECT SET STYLE SHEET](object-set-style-sheet.md) -*Styles de caractères* \ No newline at end of file +*Styles de caractères* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1258 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md index 20197c57f9dd44..3490630964611e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET SUBFORM CONTAINER SIZE** retourne la *largeur* et la *hauteur* (en pixels) d’un objet sous-formulaire "courant", affiché dans le formulaire parent. @@ -30,5 +27,14 @@ Cette commande est utile par exemple dans le cas où des objets du sous-formulai #### Voir aussi -[OBJECT GET SUBFORM](../commands/object-get-subform.md) -[OBJECT SET SUBFORM](../commands/object-set-subform.md) \ No newline at end of file +[OBJECT GET SUBFORM](object-get-subform.md) +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1148 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md index 3f8e91c6334098..92f0aa4f056c1f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description @@ -26,4 +23,13 @@ displayed_sidebar: docs [Form](../commands/form.md) [OBJECT Get pointer](object-get-pointer.md) -[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) \ No newline at end of file +[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1785 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md index 60069b2e3f4f82..d40fc474e7b166 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET SUBFORM** vous permet d’obtenir les noms du ou des formulaire(s) associé(s) à l’objet sous-formulaire désigné par les paramètres *objet* et *\**. @@ -41,4 +38,13 @@ S’il n’y a pas de formulaire liste, une chaîne vide est retournée dans le #### Voir aussi [OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) -[OBJECT SET SUBFORM](../commands/object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1139 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md index e12fde1d3ec38e..f4f9f173fa9233 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get text orientation** retourne la valeur d’orientation courante appliquée au texte de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -57,4 +54,13 @@ Si, à l’exécution du formulaire, vous appelez l’instruction suivante : #### Voir aussi -[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) \ No newline at end of file +[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1283 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md index d7777ed98ce494..6be38bab1bb663 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get three states checkbox** retourne l’état courant de la propriété "Trois états" de la ou des case(s) à cocher désignée(s) par les paramètres *objet* et *\**. @@ -26,4 +23,13 @@ La propriété "Trois états" peut avoir été définie soit via la Liste des pr #### Voir aussi -[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) \ No newline at end of file +[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1250 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md index d96f522d082060..700fe8990c75cd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get title** retourne le titre (libellé) du ou des objet(s) de formulaire désigné(s) par *objet*. @@ -34,4 +31,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[OBJECT SET TITLE](object-set-title.md) \ No newline at end of file +[OBJECT SET TITLE](object-set-title.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1068 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md index 41f75bbe05cf23..7e0c5c67027402 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get type** retourne le type de l’objet désigné par le(s) paramètre(s) *objet* et *\** dans le formulaire courant. @@ -97,4 +94,13 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des #### Voir aussi [FORM LOAD](../commands/form-load.md) -[LISTBOX GET OBJECTS](listbox-get-objects.md) \ No newline at end of file +[LISTBOX GET OBJECTS](listbox-get-objects.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1300 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md index c9f99e62aa6f0e..6680d0350eadb6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get value** retourne la valeur courante des sources de données des objets formulaire désignés par le paramètre nomObjet. @@ -40,4 +37,13 @@ Voir l'exemple de la commande [OBJECT SET VALUE](object-set-value.md). #### Voir aussi -[OBJECT SET VALUE](object-set-value.md) \ No newline at end of file +[OBJECT SET VALUE](object-set-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1743 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md index 99e3339d00d7b3..aac9b117fb3c74 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get vertical alignment** retourne une valeur indiquant le type d’alignement vertical appliqué à l’objet désigné par les paramètres *objet* et *\**. @@ -44,4 +41,13 @@ Les objets de formulaire auxquels un alignement vertical peut être appliqué so [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1188 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md index 5297f2c184e639..c41211627b8e67 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get visible** retourne Vrai si l'objet ou le groupe d'objets désigné(s) par *objet* dispose de l’attribut visible et Faux sinon. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1075 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md index 0aeac6ff1fb4f3..ff32c36e505642 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Is styled text** retourne **Vrai** si l’option "Multistyle" est cochée pour l’objet ou les objets désigné(s) par les paramètres *objet* et *\**. @@ -44,4 +41,13 @@ Un formulaire comporte un champ représenté par deux objets différents, l’un #### Voir aussi -*Texte multistyle* \ No newline at end of file +*Texte multistyle* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1261 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md index eb452da9aaf72f..b98287d884a1dd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT MOVE** permet de déplacer le ou les objet(s) du formulaire courant, défini(s) par les paramètres *\** et *objet*, de *dépH* pixels horizontalement et de *dépV* pixels verticalement. Il est également possible (optionnellement) de redimensionner le ou les objet(s) de *redimH* pixels horizontalement et de *redimV* pixels verticalement. @@ -63,4 +60,13 @@ L’instruction suivante place le bouton “Bouton\_1” aux coordonnées (10;20 [OBJECT DUPLICATE](object-duplicate.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 664 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md index 88888715bec7d3..ce8d8c1c97dbd5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET ACTION** vous permet de modifier l’action standard associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -40,4 +37,13 @@ Vous souhaitez associer l’action standard de validation à un bouton : #### Voir aussi -[OBJECT Get action](object-get-action.md) \ No newline at end of file +[OBJECT Get action](object-get-action.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1259 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md index d0a4f06b1e1728..0b41f41fc48a51 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET AUTO SPELLCHECK** permet de définir ou de modifier dynamiquement le statut de l’option **Correction orthographique** du ou des objet(s) désigné(s) par les paramètres *objet* et *\** pour le process courant. Cette option permet d’activer ou non la correction orthographique automatique lors de la saisie pour l’objet (objets de type texte uniquement). @@ -28,4 +25,13 @@ Passez **Vrai** dans *correctionAuto* pour activer la correction automatique pou #### Voir aussi -[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) \ No newline at end of file +[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1173 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md index a42b1e7d4863ba..0be0270f7b5441 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET BORDER STYLE** vous permet de modifier le style de la ligne de bordure de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -40,4 +37,13 @@ Passez dans le paramètre *styleBordure* la valeur de style de ligne que vous so #### Voir aussi -[OBJECT Get border style](object-get-border-style.md) \ No newline at end of file +[OBJECT Get border style](object-get-border-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1262 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md index 7f9438ee84e131..3edd0eb29d96eb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET CONTEXT MENU** vous permet d’activer ou de désactiver, pour le process courant, l’association d’un menu contextuel par défaut à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -30,4 +27,13 @@ Passez **Vrai** dans le paramètre *menuContext* pour activer le menu contextuel #### Voir aussi -[OBJECT Get context menu](object-get-context-menu.md) \ No newline at end of file +[OBJECT Get context menu](object-get-context-menu.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1251 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md index aae88fa5ea8adb..aef922e91851d8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET COORDINATES** permet de modifier l’emplacement et, optionnellement, la taille de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -56,4 +53,13 @@ L’instruction suivante place l’objet "bouton\_1" aux coordonnées (10,20) (3 [CONVERT COORDINATES](convert-coordinates.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1248 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md index f5e030a11bfdff..9910bf631e158b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET CORNER RADIUS** vous permet de modifier le rayon des angles du ou des objet(s) que vous avez passés dans le paramètre *objet*. Le nouveau rayon est défini pour le process uniquement, il n'est pas stocké dans le formulaire. @@ -68,4 +65,13 @@ Notez que pour les zones de texte (ainsi que pour les zones de saisie), contrair #### Voir aussi -[OBJECT Get corner radius](object-get-corner-radius.md) \ No newline at end of file +[OBJECT Get corner radius](object-get-corner-radius.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1323 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md index db0da6a122b349..dce1cab0ed1aa9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET DATA SOURCE** vous permet de modifier la source de données de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -51,4 +48,13 @@ Modification de la source de données d’une zone de saisie : #### Voir aussi [LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) -[OBJECT Get data source](object-get-data-source.md) \ No newline at end of file +[OBJECT Get data source](object-get-data-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1264 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md index 302012883fd5a5..dd5f60b87dd07e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET DRAG AND DROP OPTIONS** permet de définir ou de modifier dynamiquement les options de glisser-déposer pour l’objet ou les objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -44,4 +41,13 @@ Définition d’une zone de texte en glisser-déposer auto : #### Voir aussi -[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) \ No newline at end of file +[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1183 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md index cd01c0fd1343ee..1f7c1211b77cd5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET ENABLED** permet d’activer ou d’inactiver l’objet ou le groupe d’objets désigné par *objet* dans le formulaire courant. @@ -40,4 +37,13 @@ Cette commande peut être appliquée aux types d'objets suivants : #### Voir aussi -[OBJECT Get enabled](object-get-enabled.md) \ No newline at end of file +[OBJECT Get enabled](object-get-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1123 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md index f66c94f0d02f18..8adcd1e4a32759 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET ENTERABLE** rend saisissable ou non saisissable le ou les objet(s) de formulaire désigné(s) par *objet* et peut fixer l'attribut saisissable. @@ -74,4 +71,13 @@ Voici la méthode objet d’une case à cocher placée dans l’en-tête d’une #### Voir aussi [OBJECT Get enterable](object-get-enterable.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 238 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md index 9a2362597f0bbb..9cb76cbcecc2d3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET EVENTS** vous permet de modifier, pour le process courant, la configuration des événements formulaire du formulaire, de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -165,4 +162,13 @@ Désactivation d’un seul événement du formulaire sans modifier les autres : #### Voir aussi *Evénements formulaire* -[OBJECT GET EVENTS](object-get-events.md) \ No newline at end of file +[OBJECT GET EVENTS](object-get-events.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1239 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md index ac5f7b9f75f37c..e2441872a6bee1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET FILTER** remplace le filtre de saisie pour *objet* par *filtreSaisie* dans le formulaire courant affiché à l'écran. @@ -57,4 +54,13 @@ L'exemple suivant autorise uniquement la saisie des lettres “a”, “b”, #### Voir aussi [OBJECT Get filter](object-get-filter.md) -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 235 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md index 56171b1b128eb8..1359b3ead437f5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET FOCUS RECTANGLE INVISIBLE** permet de définir ou de modifier dynamiquement l’option d’invisibilité du rectangle de focus de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. Ce paramétrage correspond à l’option **Cacher rectangle de focus** disponible pour les objets saisissables dans la Liste des propriétés en mode Développement. @@ -30,4 +27,13 @@ Passez **Vrai** dans le paramètre *invisible* pour cacher le rectangle de focus #### Voir aussi -[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1177 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md index 6bc8f5479e5bc9..331ac99cef967b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET FONT SIZE** définit la taille de la police du ou des objet(s) de formulaire spécifié(s) par *objet*. @@ -51,4 +48,13 @@ L'exemple suivant définit la taille de police de tous les objets de formulaire *Notes de programmation* [OBJECT Get font size](object-get-font-size.md) [OBJECT SET FONT](object-set-font.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 165 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md index ff9cd0172ce196..c964cec0053582 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET FONT STYLE** assigne le style de police *style* à ou aux objet(s) de formulaire désigné(s) par *objet*. @@ -57,4 +54,13 @@ L'exemple suivant définit le style de police Normal pour tous les objets de for [OBJECT Get font style](object-get-font-style.md) [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 166 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md index f0dee9c440fb27..3444a9bc179ac2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET FONT** affiche *objet* avec la police définie dans le paramètre *police*. Le paramètre *police* doit contenir un nom de police valide. @@ -62,4 +59,13 @@ L'exemple suivant utilise l'option spéciale *%password*, destinée à la saisie *Notes de programmation* [OBJECT Get font](object-get-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 164 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md index 137799c04ed6c2..69a243b7fb20cf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET FORMAT** remplace le format d'affichage du ou des objet(s) spécifié(s) par *objet* avec le format que vous avez passé dans *formatAffich*. Le nouveau format est utilisé uniquement pour l'affichage courant, il n'est pas stocké avec le formulaire. @@ -360,4 +357,13 @@ Passage d'un thermomètre en mode "Barber shop" : [GET SYSTEM FORMAT](get-system-format.md) [OBJECT Get format](object-get-format.md) -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 236 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md index e1b3b991ff5762..95cd97b8fc145a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET HELP TIP** permet de définir ou de modifier dynamiquement le message d’aide associé à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -125,4 +122,13 @@ Résultat : #### Voir aussi [OBJECT Get help tip](object-get-help-tip.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1181 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md index cc3bcc29b280a4..140cb0fff730d9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET HORIZONTAL ALIGNMENT** vous permet de fixer le type d’alignement horizontal appliqué à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -58,4 +55,13 @@ Les objets de formulaire auxquels vous pouvez appliquer cette commande sont les [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 706 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md index a759622aa65021..53d5ab45812817 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET INDICATOR TYPE** vous permet de modifier le type d’indicateur de progression du ou des thermomètre(s) désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -36,4 +33,13 @@ Passez dans le paramètre *indicateur* le type d’indicateur à afficher. Vous #### Voir aussi -[OBJECT Get indicator type](object-get-indicator-type.md) \ No newline at end of file +[OBJECT Get indicator type](object-get-indicator-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1246 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md index 07bd68c1f12b86..2d69154b48897b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET KEYBOARD LAYOUT** vous permet de définir ou de modifier dynamiquement la configuration clavier associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -28,4 +25,13 @@ Passez dans le paramètre *codeLangue* une chaîne indiquant le code de langue #### Voir aussi -[OBJECT Get keyboard layout](object-get-keyboard-layout.md) \ No newline at end of file +[OBJECT Get keyboard layout](object-get-keyboard-layout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1179 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md index de34ad096520df..72474515213aaf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET LIST BY NAME** définit, remplace ou dissocie l'*énumération* associée à l'objet ou au groupe d'objets désigné(s) par *objet*. L'énumération dont le nom est passé dans le paramètre *énumération* doit avoir été créée dans l'éditeur d'énumérations, en mode Développement. @@ -91,4 +88,13 @@ Vous souhaitez supprimer des associations de listes : #### Voir aussi [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 237 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md index d0f667c89be8d4..db0a096d49a178 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET LIST BY REFERENCE** définit ou remplace l’énumération associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**, avec la liste hiérarchique référencée dans le paramètre *liste*. @@ -129,4 +126,13 @@ Pour pouvoir mettre à jour la liste associée au pop up géré par tableau, il #### Voir aussi [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1266 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md index 4da3af5dd96031..706293e04d63d9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET MAXIMUM VALUE** permet de modifier la valeur maximum de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -31,4 +28,13 @@ Passez dans *valeurMaxi* la nouvelle valeur maximum à affecter à l’*objet* p #### Voir aussi [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1244 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md index ee7bb831f12878..3adc6f415a112a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET MINIMUM VALUE** permet de modifier la valeur minimum de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -31,4 +28,13 @@ Passez dans *valeurMini* la nouvelle valeur minimum à affecter à l’objet pou #### Voir aussi [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1242 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md index 0bfd82fb1ad1ac..cd953b27fd3798 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET MULTILINE** vous permet de modifier la propriété "Multilignes" de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -45,4 +42,13 @@ Vous souhaitez interdire le multiligne dans une zone de saisie : #### Voir aussi -[OBJECT Get multiline](object-get-multiline.md) \ No newline at end of file +[OBJECT Get multiline](object-get-multiline.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1253 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md index e41f4cbb15b4cf..d9c9a05e4481e4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET PLACEHOLDER** vous permet d’associer un texte d’exemple à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -46,4 +43,13 @@ Vous souhaitez afficher le texte exemple "Recherche" dans une combo box : #### Voir aussi -[OBJECT Get placeholder](object-get-placeholder.md) \ No newline at end of file +[OBJECT Get placeholder](object-get-placeholder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1295 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md index 7f238501c16cfa..89418e3b6c756e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET PRINT VARIABLE FRAME** vous permet de modifier la propriété d’impression en taille variable de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -44,4 +41,13 @@ Le paramètre optionnel *fixeSousForm* vous permet de définir une option suppl #### Voir aussi -[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) \ No newline at end of file +[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1240 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md index fd75daeb774487..b9be6cabb8d97a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET RESIZING OPTIONS** permet de définir ou de modifier dynamiquement les options de redimensionnement de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. Ces options définissent l’affichage de l’objet en cas de redimensionnement de la fenêtre du formulaire. @@ -43,4 +40,13 @@ Passez dans le paramètre *vertical* une valeur indiquant l’option de redimens #### Voir aussi -[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) \ No newline at end of file +[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1175 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md index 61da8be421f8db..cce5f59f15dc8e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET RGB COLORS** modifie les couleurs d'avant-plan et d'arrière-plan du ou des objet(s) défini(s) par le paramètre *objet* et le paramètre optionnel *\**. Lorsque la commande est appliquée à un objet de type list box, un paramètre supplémentaire permet de modifier la couleur alternée des lignes. @@ -106,4 +103,13 @@ Passage du fond en transparent avec couleur de police claire : #### Voir aussi [OBJECT GET RGB COLORS](object-get-rgb-colors.md) -[Select RGB Color](select-rgb-color.md) \ No newline at end of file +[Select RGB Color](select-rgb-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 628 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md index c4c2be87b98fee..2a3b8db4991de5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET SCROLL POSITION** permet de faire défiler le contenu de plusieurs types d'objets : lignes d’un sous-formulaire, d’un formulaire liste affiché via la commande [MODIFY SELECTION](modify-selection.md) ou [DISPLAY SELECTION](display-selection.md), ou d'une liste hiérarchique, lignes et colonnes d'une List box ou encore pixels d'une image. @@ -92,4 +89,13 @@ Attention dans ce cas, si vous omettez le second paramètre \*, l'image ne défi [HIGHLIGHT RECORDS](highlight-records.md) [LISTBOX SELECT ROW](listbox-select-row.md) -[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) \ No newline at end of file +[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 906 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md index 0987c0ef053b10..a98a7ead678c27 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET SCROLLBAR** permet d’afficher ou de masquer les barres de défilement horizontale et/ou verticale dans l’objet désigné par les paramètres *objet* et *\**. @@ -46,4 +43,13 @@ Le tableau suivant indique les valeurs que vous pouvez passer dans les paramètr [LISTBOX Get property](listbox-get-property.md) [LISTBOX SET GRID](listbox-set-grid.md) [OBJECT GET SCROLLBAR](object-get-scrollbar.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 843 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md index 3f91ab8530434d..2a615fcb1f7937 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET SHORTCUT** permet de définir ou de modifier dynamiquement l’équivalent clavier associé à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -91,4 +88,13 @@ Vous voulez associer un équivalent clavier différent en fonction de la langue #### Voir aussi -[OBJECT GET SHORTCUT](object-get-shortcut.md) \ No newline at end of file +[OBJECT GET SHORTCUT](object-get-shortcut.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1185 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md index 361dbc55d0b21a..6c40f39694f594 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET STYLE SHEET** vous permet de modifier, pour le process courant, la feuille de style associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. Une feuille de style modifie la police, la taille de police et (hormis pour les feuilles de style automatique) le style de police. @@ -49,4 +46,13 @@ Dans **l'architecture Projet**, seules les trois feuilles de style automatiques [GET STYLE SHEET INFO](get-style-sheet-info.md) [LIST OF STYLE SHEETS](list-of-style-sheets.md) [OBJECT Get style sheet](object-get-style-sheet.md) -*Styles de caractères* \ No newline at end of file +*Styles de caractères* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1257 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md index 69c875cd1cba9c..1bb3e2a9261f14 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description @@ -25,4 +22,13 @@ displayed_sidebar: docs #### Voir aussi [Form](../commands/form.md) -[OBJECT Get subform container value](object-get-subform-container-value.md) \ No newline at end of file +[OBJECT Get subform container value](object-get-subform-container-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1784 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md index f592186c5a6112..9ac4133d4f1ca4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET SUBFORM** vous permet de modifier dynamiquement le formulaire détaillé ainsi que, optionnellement, le formulaire liste écran associé à l’objet sous-formulaire désigné par les paramètres *objet* et *\**. @@ -44,5 +41,14 @@ Lorsque vous modifiez un sous-formulaire en page, la commande peut être exécut #### Voir aussi -[OBJECT GET SUBFORM](../commands/object-get-subform.md) -[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) \ No newline at end of file +[OBJECT GET SUBFORM](object-get-subform.md) +[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1138 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md index eda58c5384176f..890f3d6966798d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET TEXT ORIENTATION** vous permet de modifier l’orientation du contenu de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -50,4 +47,13 @@ Vous souhaitez appliquer une orientation de 270° à une variable de votre formu #### Voir aussi -[OBJECT Get text orientation](object-get-text-orientation.md) \ No newline at end of file +[OBJECT Get text orientation](object-get-text-orientation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1284 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md index ed27312cab5d07..4cfcfa7f44bc32 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET THREE STATES CHECKBOX** vous permet de modifier, pour le process courant, la propriété "Trois états" de la ou des case(s) à cocher désignée(s) par les paramètres *objet* et *\**. @@ -32,4 +29,13 @@ Passez **Vrai** dans le paramètre *troisEtat* pour activer le mode "trois état #### Voir aussi -[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) \ No newline at end of file +[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1249 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md index 4fc6c8add26e8b..0561516457ca8c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET TITLE** change le libellé du ou des objets(s) spécifié(s) dans le paramètre *objet* et le remplace par la valeur définie dans le paramètre *libellé* *.* @@ -73,4 +70,13 @@ Vous souhaitez insérer des libellés sur deux lignes : #### Voir aussi -[OBJECT Get title](object-get-title.md) \ No newline at end of file +[OBJECT Get title](object-get-title.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 194 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md index 843c6616fde021..bac7816d8e47b1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Exemple 1 **OBJECT SET VALUE** fixe la *valeur* des sources de données courantes pour les objets formulaires désignés par le paramètre *nomObjet*. @@ -41,4 +38,13 @@ Vous souhaitez lire la valeur des sources de données d'un objet formulaire, lir #### Voir aussi -[OBJECT Get value](object-get-value.md) \ No newline at end of file +[OBJECT Get value](object-get-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1742 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md index f64b5d5a72c3b2..80e6cccd11c833 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET VERTICAL ALIGNMENT** vous permet de modifier par programmation le type d’alignement vertical appliqué à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -43,4 +40,13 @@ Les objets de formulaire auxquels un alignement vertical peut être appliqué so [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) \ No newline at end of file +[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1187 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md index b09f7b429e17a9..111a95b080d6ed 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET VISIBLE** affiche ou masque le ou les objet(s) défini(s) par les paramètres *objet* et *\**. @@ -59,4 +56,13 @@ ou ainsi : #### Voir aussi [OBJECT Get visible](object-get-visible.md) -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 603 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md index af4abcb54e7724..fefaab1cf85f2a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md @@ -54,4 +54,13 @@ Nous voulons dupliquer et renommer un fichier dans son dossier actuel : [File](file.md) [Folder](folder.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1548 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md index 9f7dce77b93b1d..580a335f1e1834 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md @@ -15,13 +15,22 @@ displayed_sidebar: docs #### Description -**OLD RELATED MANY** fonctionne comme la commande [RELATE MANY](relate-many.md), à la différence près que **OLD RELATED MANY** utilise l'ancienne valeur du champ pour activer le lien. - -**Note :** **OLD RELATED MANY** utilise l'ancienne valeur du champ N, telle qu'elle est retournée par la fonction [Old](old.md). Reportez-vous à la description de cette fonction pour plus d'informations. +**OLD RELATED MANY** fonctionne comme la commande [RELATE MANY](relate-many.md), à la différence près que **OLD RELATED MANY** utilise l'ancienne valeur du champ pour activer le lien.**OLD RELATED MANY** utilise l'ancienne valeur du champ N, telle qu'elle est retournée par la fonction [Old](old.md). Reportez-vous à la description de cette fonction pour plus d'informations. **OLD RELATED MANY** modifie la sélection de la table liée. La commande sélectionne le premier enregistrement de la sélection courante et en fait l'enregistrement courant. #### Voir aussi [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 263 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md index e53f89c785040f..40e15d01daff2a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OLD RELATED ONE** fonctionne de la même manière que [RELATE ONE](relate-one.md), à la différence près que **OLD RELATED ONE** utilise la valeur précédente de *leChamp* pour établir la relation. @@ -33,4 +30,14 @@ Si la commande a été correctement exécutée et si les enregistrements liés o [Old](old.md) [OLD RELATED MANY](old-related-many.md) [RELATE ONE](relate-one.md) -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 44 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old.md index c90d4b39a444f0..3bf8b4d85c8361 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old.md @@ -41,4 +41,13 @@ Pour restaurer la valeur originale d'un champ, assignez-lui la valeur retournée #### Voir aussi -[Modified](modified.md) \ No newline at end of file +[Modified](modified.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 35 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md index c0605e6fe8780f..099970f698bf30 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Backup Shutdown database method** est appelée à chaque fois qu’une sauvegarde de la base vient de se terminer. Les causes de l’arrêt de la sauvegarde peuvent être la fin de la copie, l’interruption par l’utilisateur ou une erreur. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md index d6b137c0b2a4c8..5269066528d3b1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Backup Startup database method** est appelée à chaque fois qu’une sauvegarde de la base est sur le point d’avoir lieu (sauvegarde manuelle, sauvegarde automatique périodique ou via la commande [BACKUP](backup.md)). diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md index e2d545769f2792..df73578f288654 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Drop database method** est disponible dans les applications 4D en mode local ou distant. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md index a4133206d0e692..69017557f0cbd9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md @@ -178,4 +178,13 @@ La méthode de gestion d'erreurs suivante ignore les interruptions de l'utilisat [Last errors](last-errors.md) [Last errors](last-errors.md) [Method called on error](method-called-on-error.md) -*Variables système* \ No newline at end of file +*Variables système* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 155 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md index b8dcab7553e3be..71abbeab47b1c6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **ON EVENT CALL** installe la méthode dont le nom est passé dans *méthodeEvén* comme méthode de gestion des événements. @@ -117,4 +114,14 @@ Lorsque vous imprimez un état à l'aide la commande [PRINT SELECTION](print-sel [FILTER EVENT](filter-event.md) [MOUSE POSITION](mouse-position.md) [Method called on event](method-called-on-event.md) -[Shift down](shift-down.md) \ No newline at end of file +[Shift down](shift-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 190 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md index d2789f8d48e338..94fbb62ff340aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La méthode base **On Exit** est appelée une fois lorsque vous quittez la base. @@ -110,4 +107,13 @@ L'exemple suivant illustre un cas typique où vous lancez un ou plusieurs proces #### Voir aussi [On Startup database method](on-startup-database-method.md) -[QUIT 4D](quit-4d.md) \ No newline at end of file +[QUIT 4D](quit-4d.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 905252 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md index 631f363b686b1a..c5dee3d2fe5a0c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La **On Host Database Event database method** permet aux composants 4D d’exécuter du code lors de l’ouverture et de la fermeture de la base hôte. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md index 550f0fb7bfaecb..88e7535e43e039 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Documentation déplacée** diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md index 7bdd6f86b7adb5..b375b718a31a00 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Documentation déplacée** diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md index e5854d3686f953..6d7803946bae7b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md @@ -17,11 +17,18 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La **On REST Authentication database method** est obsolète dans les projets à partir de 4D 20 R6. L'[authentification Force login](https://developer.4d.com/docs/fr/REST/authUsers/) est désormais fortement recommandée. Dans les projets convertis, vous pouvez mettre à jour votre configuration en cliquant sur le bouton de paramètres [Activer l'authentification REST via la fonction ds.authentify()](https://developer.4d.com/docs/fr/settings/web/#acc%C3%A8s). Consultez également [cet article de blog](https://blog.4d.com/fr/force-login-now-is-the-default-mode-for-all-rest-authentications) pour savoir comment migrer votre code si nécessaire. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 3367 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md index f2c9eabf77d610..1e51579de43e34 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La **On Server Close Connection database method** est exécutée sur le poste serveur à chaque fois qu'un process 4D Client est refermé. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md index 00d984168f6fd7..666305eadf106a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Quand la Méthode base Sur ouverture connexion serveur est-elle appelée ? La **On Server Open Connection database method** est appelée une fois sur la machine serveur chaque fois qu’un poste 4D distant démarre un process de connexion. La **On Server Open Connection database method** n’est appelée que par 4D Server, à l’exclusion de tout autre environnement 4D. @@ -133,3 +130,13 @@ L’exemple suivant interdit toute nouvelle connexion entre 2 et 4 heures du mat    If((?02:00:00?<=Current time)&(Current time ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 16001 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md index d37bb39cb86a3c..3e9b658c678c53 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Server Shutdown database method** est appelée une fois sur le poste serveur lorsque la base courante est refermée sur 4D Server. La **On Server Shutdown database method** n'est appelée dans aucun environnement 4D autre que 4D Server. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md index d8c448b2b973df..33021318f33892 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La méthode base Sur démarrage serveur est appelée une fois sur le poste serveur lorsque vous ouvrez une base avec 4D Server. La méthode base Sur démarrage serveur n'est jamais exécutée dans un environnement autre que 4D Server. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md index a14ddc3a1a29e4..dbcadac665cd02 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On SQL Authentication database method** permet de filtrer les requêtes adressées au serveur SQL intégré de 4D. Le filtrage peut être effectué sur la base du nom, du mot de passe ainsi que (facultativement) de l’adresse IP de l’utilisateur. Le développeur peut utiliser sa propre table d’utilisateurs ou celle des utilisateurs 4D pour évaluer les identifiants de connexion. Une fois la connexion authentifiée, la commande [CHANGE CURRENT USER](change-current-user.md) doit être appelée afin de contrôler les accès de la requête au sein de la base 4D. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md index b66d3c436fbe25..1b00f357871123 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Startup database method** est exécutée une seule fois, au moment de l'ouverture de la base. @@ -47,4 +44,13 @@ Reportez-vous à l'exemple de la section [On Exit database method](on-exit-datab [On Exit database method](on-exit-database-method.md) *Présentation des méthodes base* -[QUIT 4D](quit-4d.md) \ No newline at end of file +[QUIT 4D](quit-4d.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 905263 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-system-event-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-system-event-database-method.md index a5e2f4b579d09c..fd541cc8bfca24 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-system-event-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-system-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La **On System Event database method** est appelée à chaque fois qu’un événement système se produit. Tous les environnements 4D sont concernés : 4D (tous modes), 4D Server ainsi que les applications 4D compilées et fusionnées avec 4D Volume Desktop. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md index 51a0bf8fe58875..4448184f48ca1f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Web Connection database method** peut être appelée dans les cas suivants : diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md index a44b35e50f755c..b7a84294efe885 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Note de compatibilité Cette méthode base peut être utilisée uniquement avec d'**anciennes sessions Web**, disponibles dans les bases de données converties à partir de versions antérieures à 4D v18 R6\. Elle n'est jamais appelée lorsque le mode **sessions Web extensibles** est activé (recommandé sous 4D v18 R6 et versions plus récentes). Pour plus d'informations, reportez-vous à la section *Gestion des sessions Web*. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md index a71ca732f5f4b0..af2789ae5a74ca 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md @@ -28,4 +28,15 @@ A l'origine, cette commande était utile pour "replacer" dans la sélection cour [CREATE SELECTION FROM ARRAY](create-selection-from-array.md) *Présentation des Sélections Temporaires* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 189 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md index 4bec39c8b6aa10..fa54f945c1345c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN ADMINISTRATION WINDOW** affiche la fenêtre d’administration du serveur sur le poste qui l’exécute. La fenêtre d’administration de 4D Server permet de visualiser les paramètres courants et d’effectuer diverses opérations de maintenance (cf. Guide de référence de 4D Server). A compter de la version 11 de 4D Server, cette fenêtre peut être affichée depuis un poste client : @@ -51,4 +48,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[OPEN SECURITY CENTER](open-security-center.md) \ No newline at end of file +[OPEN SECURITY CENTER](open-security-center.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1047 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md index 8248bfe5b76298..9d74a2116bc674 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN COLOR PICKER** affiche la boîte de dialogue de sélection de couleur du système. @@ -30,4 +27,13 @@ Si la couleur a été modifiée, l’événement formulaire On After Edit est g #### Voir aussi -[OPEN FONT PICKER](open-font-picker.md) \ No newline at end of file +[OPEN FONT PICKER](open-font-picker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1304 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md index c14eb982b1409c..8fb8096a96fe92 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md @@ -53,4 +53,13 @@ Dans le contexte du déploiement d'une application fusionnée, vous souhaitez ou #### Voir aussi -[CREATE DATA FILE](create-data-file.md) \ No newline at end of file +[CREATE DATA FILE](create-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 312 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md index 937c4a335ca19d..8622f4e0744e6d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md @@ -69,3 +69,13 @@ Vous souhaitez sélectionner un serveur au démarrage, à partir d'une applicati     QUIT 4D  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1321 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md index 06806c5506c706..5645b1d705813e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md @@ -85,4 +85,14 @@ Si vous passez la valeur 3 dans *mode*, la fonction retourne ?00:00:00? (pas de #### Voir aussi [Append document](append-document.md) -[Create document](create-document.md) \ No newline at end of file +[Create document](create-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 264 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md index 5b11d6042c412d..8977b1c91f5517 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN FONT PICKER** affiche la boîte de dialogue de sélection de police du système. @@ -44,4 +41,13 @@ Le code du bouton est le suivant : #### Voir aussi -[OPEN COLOR PICKER](open-color-picker.md) \ No newline at end of file +[OPEN COLOR PICKER](open-color-picker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1303 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md index 0566fbd32cc776..a9fd66f66bc8e7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Open form window** crée une nouvelle fenêtre utilisant les propriétés de taille et de redimensionnement du formulaire *nomForm*, passé en paramètre. @@ -134,4 +131,13 @@ Résultat : [FORM GET PROPERTIES](form-get-properties.md) [Open window](open-window.md) *Types de fenêtres* -*Types de fenêtres (compatibilité)* \ No newline at end of file +*Types de fenêtres (compatibilité)* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 675 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md index b9003fe0cd81ff..c0a563ec2d1985 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN PRINTING JOB** ouvre une tâche d’impression (print job) et y empile tous les ordres d’impression exécutés par la suite, tant que la commande [CLOSE PRINTING JOB](close-printing-job.md) n’est pas appelée. Cette commande vous permet de contrôler les tâches d’impression, et notamment de vous assurer qu’aucune tâche d’impression “parasite” ne puisse s’intercaler dans une séquence d’impressions. @@ -38,4 +35,14 @@ La variable système OK est définie sur 1 si la tâche d'impression a été ouv #### Voir aussi -[CLOSE PRINTING JOB](close-printing-job.md) \ No newline at end of file +[CLOSE PRINTING JOB](close-printing-job.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 995 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md index 79ca7e314a8a55..14c3a8edb44a10 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Open resource file** ouvre le fichier de ressources dont vous avez passé le nom ou le chemin d'accès complet dans le paramètre *resNomFichier*. @@ -99,4 +96,14 @@ Si le fichier de ressources n'a pas pu être ouvert à la suite d'un problème d #### Voir aussi [CLOSE RESOURCE FILE](close-resource-file.md) -*Ressources* \ No newline at end of file +*Ressources* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 497 | +| Thread safe | ✗ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md index dcf189566667cf..d89260d0cd56e5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md @@ -15,3 +15,13 @@ displayed_sidebar: docs #### Description La commande OPEN RUNTIME EXPLORER affiche l'Explorateur d'exécution dans une fenêtre flottante. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1781 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md index 474d29d5b44b95..336e5c5d0c98cf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN SECURITY CENTER** provoque l’affichage de la fenêtre du Centre de sécurité et de maintenance (CSM). Pour plus d'informations, veuillez consulter la page *Centre de Sécurité et de Maintenance*. @@ -26,4 +23,13 @@ displayed_sidebar: docs #### Voir aussi -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1018 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md index 1b1cda7ee4125c..86f10c63656c10 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN SETTINGS WINDOW** provoque l’ouverture de la boîte de dialogue des Préférences 4D ou des Propriétés de la base courante et l’affichage des paramètres ou de la page correspondant à la clé passée dans le paramètre *sélecteur*. @@ -140,3 +137,14 @@ Accès à la page Interface des Propriétés de la base en mode "Propriétés ut #### Variables et ensembles système Si la boîte de dialogue des préférences/propriétés est validée, la variable système OK retourne 1 ; si elle est annulée, OK retourne 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 903 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md index 641285d06b74f6..364cd3efffe7dd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md @@ -79,4 +79,13 @@ Vous pouvez ouvrir un même fichier texte avec différentes applications en util #### Voir aussi -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 673 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md index 4b5d2d80105bd2..c6fb00b7e41151 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Open window** ouvre une nouvelle fenêtre dont les dimensions sont définies par les quatre premiers paramètres : @@ -137,4 +134,13 @@ Cet exemple illustre le mécanisme de “retard” d’affichage des fenêtres f [CLOSE WINDOW](close-window.md) *Creer fenetre* -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 153 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md index 9afdcdc580c4d8..b0b5510749f709 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md @@ -111,4 +111,13 @@ Les enregistrements sont dans l'ordre suivant : #### Voir aussi - \ No newline at end of file + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1407 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md index d8db201e032a3b..bb440547f0210c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md @@ -44,4 +44,15 @@ L'exemple suivant trie les enregistrements de la table \[Personnes\] dans l'ordr #### Voir aussi -[ORDER BY](order-by.md) \ No newline at end of file +[ORDER BY](order-by.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 300 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md index b4b544c273ce0f..cb1404d2941345 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md @@ -200,4 +200,15 @@ Quelle que soit la manière dont le tri est défini, si l'opération risque de p #### Voir aussi -[ORDER BY FORMULA](order-by-formula.md) \ No newline at end of file +[ORDER BY FORMULA](order-by-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 49 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md index 68f7814596c5ee..4ff472b32e8bd3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Outside call** retourne Vrai pour le cycle d'exécution Appel extérieur. @@ -27,4 +24,13 @@ Si vous voulez que le cycle d'exécution **Outside call** soit généré, vérif #### Voir aussi [Form event code](../commands/form-event-code.md) -[POST OUTSIDE CALL](post-outside-call.md) \ No newline at end of file +[POST OUTSIDE CALL](post-outside-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 328 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md index ca15c1c881aeee..d887b422df4166 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PAGE BREAK** déclenche l'impression des données envoyées à l'imprimante et provoque un saut de page. **PAGE BREAK** s'utilise conjointement avec [Print form](../commands/print-form.md) (dans le cadre de l'événement formulaire On Printing Detail) pour forcer des sauts de page et imprimer la dernière page créée en mémoire. @@ -46,4 +43,14 @@ Reportez-vous à l'exemple de la commande [SET PRINT MARKER](set-print-marker.md #### Voir aussi [CANCEL](cancel.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 6 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md index 5c60a187bba493..a20ae3cec411c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Parse formula** inspecte le contenu de la *formule* 4D, vérifie sa syntaxe, et la retourne sous une forme normalisée. Cette opération permet à la formule de rester valide dans le cas où un élément du langage 4D ou de la structure est renommé (commande, constante, table, champ ou plug-in 4D). @@ -104,4 +101,13 @@ Si une erreur de syntaxe est détectée dans la *formule*, un message d'erreur e [Formula from string](formula-from-string.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -*Utiliser des tokens dans les formules* \ No newline at end of file +*Utiliser des tokens dans les formules* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1576 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md index c17e7a16cd86e9..d72b4a3862cddf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Pasteboard data size** vous permet de savoir s'il y a des données du type *typeDonnées* dans le conteneur de données. @@ -96,4 +93,14 @@ Référez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-da *Conteneur de données* [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 400 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md index dbb35c842907c9..69de59243afc89 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md @@ -175,4 +175,13 @@ Vous voulez connaître le nombre de sous-dossiers contenus dans un chemin : [File](file.md) [Folder](folder.md) [Object to path](object-to-path.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1547 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md index 5de96fea0f9f62..cdb06ed5890b74 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md @@ -45,4 +45,13 @@ Exemple de méthode d’import massif de données : #### Voir aussi [DELETE INDEX](delete-index.md) -[RESUME INDEXES](resume-indexes.md) \ No newline at end of file +[RESUME INDEXES](resume-indexes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1293 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md index 95f5cedd3795cc..e7c1e72ad1567b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md @@ -30,4 +30,13 @@ Lorsqu'un process est suspendu, les fenêtres qui lui appartiennent ne sont pas [ABORT PROCESS BY ID](abort-process-by-id.md) [DELAY PROCESS](delay-process.md) [HIDE PROCESS](hide-process.md) -[RESUME PROCESS](resume-process.md) \ No newline at end of file +[RESUME PROCESS](resume-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 319 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md index 5a3d091e06eada..0c38685ddeec6b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - :::info Compatibilité **PHP est obsolète dans 4D**. Il est désormais recommandé d'utiliser la classe [`4D.SystemWorker`](../API/SystemWorkerClass.md). @@ -278,4 +275,13 @@ Pour plus d'informations sur la fonction *trim*, veuillez vous reporter à la do *Exécuter des scripts PHP dans 4D* [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1058 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md index f7139f9f628951..42a2e449f3089d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - :::info Compatibilité **PHP est obsolète dans 4D**. Il est désormais recommandé d'utiliser la classe [`4D.SystemWorker`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Comme les échanges entre 4D et l’interpréteur PHP s’effectuent via FastCGI #### Voir aussi [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1061 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md index f4b21587325d43..8171a9657bef25 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - :::info Compatibilité **PHP est obsolète dans 4D**. Il est désormais recommandé d'utiliser la classe [`4D.SystemWorker`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Passez dans le paramètre *option* une constante du thème *PHP* désignant l’ #### Voir aussi [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1060 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md index 0e3727177b10c5..a6f43a3e0c0433 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - :::info Compatibilité **PHP est obsolète dans 4D**. Il est désormais recommandé d'utiliser la classe [`4D.SystemWorker`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Par défaut, **PHP SET OPTION** définit l’option pour tous les appels à [PHP #### Voir aussi [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1059 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md index d2973aa54ac2e9..46fcefbcef2456 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md @@ -34,4 +34,13 @@ Par défaut, si vous ne passez pas le paramètre *\**, la commande retourne uniq #### Voir aussi *Introduction aux images* -[Is picture file](is-picture-file.md) \ No newline at end of file +[Is picture file](is-picture-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 992 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md index 5937313902305f..f2c06cdf927df9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PICTURE LIBRARY LIST** retourne les numéros de référence et le nom des images stockées dans la bibliothèque d’images de la base de données. @@ -94,4 +91,13 @@ L'exemple suivant exporte la Bibliothèque d’Images vers un document stocké s [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 564 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md index c3b47984cd5d7b..e228377b5a2ce3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md @@ -28,4 +28,13 @@ Les paramètres *hOffset*, *vOffset* et *mode* reçoivent la position et le mode #### Voir aussi -[Picture size](picture-size.md) \ No newline at end of file +[Picture size](picture-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 457 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md index daa7275a18b3f2..26b0ece428a58d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### Voir aussi -[PICTURE PROPERTIES](picture-properties.md) \ No newline at end of file +[PICTURE PROPERTIES](picture-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 356 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md index 1e5d59f47d4cec..a0d8b28f4aaf76 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md @@ -48,4 +48,14 @@ Vous voulez convertir une image depuis un format propriétaire vers le format GI [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 692 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/play.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/play.md index 5a380e6eb2cd60..2bed10be23b400 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/play.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/play.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PLAY** vous permet de jouer des fichiers de son ou multimedia. Sous OS X, la commande permet également de jouer un son système. @@ -58,4 +55,13 @@ Exemple de son système sous OS X : #### Voir aussi -[BEEP](beep.md) \ No newline at end of file +[BEEP](beep.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 290 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md index e9b42ab057f016..77e143a59b0138 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md @@ -27,4 +27,13 @@ displayed_sidebar: docs [COMPONENT LIST](component-list.md) [Get plugin access](get-plugin-access.md) [Is license available](is-license-available.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 847 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md index 1bcbc31af61707..873aef55b50b22 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md @@ -31,4 +31,14 @@ L'exemple suivant récupère l'enregistrement d'un client dans la pile : #### Voir aussi [PUSH RECORD](push-record.md) -*Utiliser la pile d'enregistrements* \ No newline at end of file +*Utiliser la pile d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 177 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md index 1c16cd51b5908f..f01e5e3ca68f81 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Pop up menu** fait apparaître un pop up à l'emplacement courant du curseur de la souris ou à l'emplacement défini par les paramètres facultatifs *coordX* et *coordY*. @@ -89,4 +86,13 @@ Voici le pop up menu tel qu'il s'affiche sous Windows (à gauche) et sous Mac OS #### Voir aussi [Dynamic pop up menu](dynamic-pop-up-menu.md) -[MOUSE POSITION](mouse-position.md) \ No newline at end of file +[MOUSE POSITION](mouse-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 542 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/position.md index a6c20a6c039778..dfff9407a6d7a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/position.md @@ -117,4 +117,13 @@ Dans l'exemple suivant, vous souhaitez recherchez toutes les instances d'une cha #### Voir aussi [Compare strings](compare-strings.md) -[Substring](substring.md) \ No newline at end of file +[Substring](substring.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 15 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md index b4953694d2f8fe..161646b7627572 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **POST CLICK** simule un clic souris. Elle produit les mêmes effets que lorsque l'utilisateur clique réellement avec le bouton de la souris. @@ -30,4 +27,13 @@ Si vous passez le paramètre *process*, le clic est envoyé au process dont vous #### Voir aussi [POST EVENT](post-event.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 466 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md index 5cdf919b1e231e..8be51b5df58c53 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **POST EVENT** simule un événement (clavier ou souris). Elle produit les mêmes effets que lorsque l'utilisateur agit réellement par l'intermédiaire du clavier ou de la souris. @@ -74,4 +71,13 @@ Si vous passez le paramètre *process*, l'événement est envoyé au process don #### Voir aussi [POST CLICK](post-click.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 467 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md index 09b637472e68e5..9e3ce255642a1e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **POST KEY** simule la frappe d'une touche sur le clavier. Elle produit les mêmes effets que lorsque l'utilisateur tape réellement un caractère au clavier. @@ -62,4 +59,13 @@ Reportez-vous à l'exemple de la fonction [Process number](process-number.md). *Codes ASCII* *Codes des touches de fonction* [POST CLICK](post-click.md) -[POST EVENT](post-event.md) \ No newline at end of file +[POST EVENT](post-event.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 465 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md index e135f755ae98ca..9e813f2de5e217 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Note de compatibilité Cette commande était nommée **CALL PROCESS** dans les versions précédentes de 4D. @@ -46,4 +43,14 @@ Reportez-vous à l'exemple de la section [Semaphore](semaphore.md). [Form event code](../commands/form-event-code.md) [GET PROCESS VARIABLE](get-process-variable.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 329 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md index eac628be5df1d2..d1f167046d100c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md @@ -25,4 +25,14 @@ Si **PREVIOUS RECORD** place le pointeur d'enregistrement courant avant la séle [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[NEXT RECORD](next-record.md) \ No newline at end of file +[NEXT RECORD](next-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 110 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md index 48d015af09467c..d49d00a6a57acd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **PRINT LABEL** vous permet d'imprimer des étiquettes à partir des données de la sélection de *laTable*. @@ -111,4 +108,14 @@ L'exemple suivant permet à l'utilisateur d'effectuer une recherche sur la table #### Voir aussi [PRINT SELECTION](print-selection.md) -[QR REPORT](qr-report.md) \ No newline at end of file +[QR REPORT](qr-report.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 39 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md index cadcfbb53fe167..a362f46b84cdfc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Print object** vous permet d’imprimer le ou les objet(s) de formulaire désigné(s) par les paramètres *objet* et *\**, à l’emplacement défini par les paramètres *posX* et *posY*. @@ -98,4 +95,13 @@ Exemple d’impression d’une list box complète : #### Voir aussi -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1095 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md index fc05ad9b9320bb..9cfa7f6cb03f84 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PRINT OPTION VALUES** retourne dans le tableau *tabNoms* la liste des noms de valeurs disponibles pour l’*option* d’impression définie. Facultativement, vous pouvez récupérer des informations sur chaque valeur dans les tableaux *tabInfo1* et *tabInfo2*. @@ -56,4 +53,13 @@ Toutes les informations retournées par ces commandes sont fournies par le syst #### Voir aussi [GET PRINT OPTION](get-print-option.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 785 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md index fd8d25c6ac2d8e..bc77350483e1e0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description Cette commande provoque l'impression de l'enregistrement courant de *laTable*, sans modifier la sélection courante. Le formulaire sortie courant est utilisé pour l'impression. S’il n’y a pas d’enregistrement courant dans *laTable*, **PRINT RECORD** ne fait rien. @@ -67,4 +64,13 @@ L'exemple suivant imprime le même enregistrement courant dans deux formulaires #### Voir aussi -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 71 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md index 2fe760ec612318..748a3618e90e56 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PRINT SELECTION** imprime la sélection courante de *laTable*. Les enregistrements sont imprimés dans le formulaire sortie courant de la table du process en cours. **PRINT SELECTION** a le même effet que la commande **Imprimer...** du mode Développement. Si la sélection courante est vide, **PRINT SELECTION** ne fait rien. @@ -66,4 +63,14 @@ L'exemple suivant sélectionne la totalité des enregistrements de la table \[Pe [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 60 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md index 0d4fcf40e9b6e9..90650d4389cf8e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Print settings to BLOB** sauvegarde les paramètres d'impression courants de 4D dans le BLOB *paramImpression*. Le paramètre *paramImpression* stocke tous les paramètres utilisés pour l'impression : @@ -56,4 +53,13 @@ Vous voulez sauvegarder les paramètres d'impression courants sur disque : #### Voir aussi -[BLOB to print settings](blob-to-print-settings.md) \ No newline at end of file +[BLOB to print settings](blob-to-print-settings.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1433 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md index 9e81f3dae46e59..59420957790b76 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PRINT SETTINGS** provoque l'affichage d'une boîte de dialogue d'impression. Cette commande doit être appelée avant une série de commandes [Print form](../commands/print-form.md) ou la commande [OPEN PRINTING JOB](open-printing-job.md). @@ -42,4 +39,14 @@ Si l'utilisateur clique sur le bouton OK dans chaque boîte de dialogue, la vari [OPEN PRINTING JOB](open-printing-job.md) [PAGE BREAK](page-break.md) [Print form](../commands/print-form.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 106 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md index 60c7382bdd6f91..c8cf05eb3691c0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PRINTERS LIST** remplit le ou les tableau(x) passé(s) en paramètre(s) avec les noms ainsi que, facultativement, les emplacements ou les noms personnalisés et les modèles des imprimantes disponibles pour le poste. @@ -45,4 +42,14 @@ La variable système OK prend la valeur 1 si la commande a été exécutée corr #### Voir aussi [Get current printer](get-current-printer.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 789 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md index 29870570e9a1b2..7385e94fe2b7af 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Printing page** retourne le numéro de la page en cours d'impression. Cette fonction vous permet de numéroter automatiquement les pages d'une impression en cours à l'aide de [PRINT SELECTION](print-selection.md) ou du menu Impression dans le mode Développement. @@ -39,4 +36,13 @@ L'exemple suivant change la position des numéros de page sur un état pour que #### Voir aussi -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 275 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md index ea6132cf2a2ea6..e42284c30356c5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md @@ -71,4 +71,13 @@ Cet exemple permet de générer un texte à l'aide de données dans des tableaux #### Voir aussi -*Balises de transformation 4D* \ No newline at end of file +*Balises de transformation 4D* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 816 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md index 1701208ce2c64b..892e33e3e8bd99 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md @@ -21,4 +21,13 @@ Ce statut se produira très rarement. Les process sont généralement arrêtés #### Voir aussi -[On Exit database method](on-exit-database-method.md) \ No newline at end of file +[On Exit database method](on-exit-database-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 672 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md index 247e89cd325b5d..e17a5b4588b8ad 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md @@ -64,4 +64,13 @@ Avec cette fonction, la méthode projet listée ci-dessous colle le texte reçu [GET PROCESS VARIABLE](get-process-variable.md) [Process info](../commands/process-info.md) [Process state](process-state.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 372 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md index 451175f29eec2d..41be24451b97f2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Process state** retourne le statut du process dont le numéro est passé dans *process*. @@ -61,4 +58,13 @@ L'exemple suivant retourne le nom et le numéro de référence de chaque process #### Voir aussi [Count tasks](count-tasks.md) -[Process info](../commands/process-info.md) \ No newline at end of file +[Process info](../commands/process-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 330 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md index fe88d2d06408af..4e7264aada383f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md @@ -15,7 +15,7 @@ displayed_sidebar: docs #### Description -**PUSH RECORD** "empile" une copie de l'enregistrement courant de *laTable* dans la pile d'enregistrements de la table. **PUSH RECORD** peut être exécuté avant qu'un enregistrement soit sauvegardé. +**PUSH RECORD** "empile" une copie de l'enregistrement courant de *laTable* dans la pile d'enregistrements de la table.peut être exécuté avant qu'un enregistrement soit sauvegardé. Si vous empilez un enregistrement non verrouillé, il sera verrouillé pour tous les autres process et utilisateurs jusqu'à ce que vous le "dépiliez" (c'est-à-dire que vous le déchargiez de la pile). @@ -32,4 +32,13 @@ L'exemple suivant empile l'enregistrement d'un client : #### Voir aussi [POP RECORD](pop-record.md) -*Utiliser la pile d'enregistrements* \ No newline at end of file +*Utiliser la pile d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 176 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md index bc99e19c977544..3154d0e3f19bfa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR BLOB TO REPORT** place l’état contenu dans le paramètre *blob* dans la zone d'état rapide désignée par le paramètre *zone*. @@ -45,4 +42,14 @@ L'instruction suivante affiche l'état stocké dans le champ ChampBlob dans la z #### Voir aussi -[QR REPORT TO BLOB](qr-report-to-blob.md) \ No newline at end of file +[QR REPORT TO BLOB](qr-report-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 771 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md index 2bdeded66b03da..98137a44a8cb29 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Count columns** retourne le nombre de colonnes présentes dans l'état rapide désigné par le paramètre *zone*. @@ -35,4 +32,14 @@ L'exemple suivant permet d'ajouter une colonne supplémentaire à droite de la d #### Voir aussi [QR DELETE COLUMN](qr-delete-column.md) -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 764 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md index 5e4d1f2eb5bdaa..dee81b6be32354 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR DELETE COLUMN** supprime de la *zone* la colonne dont le numéro a été passé dans *numColonne*. Cette commande ne peut pas être utilisée avec les états en tableau croisé. @@ -36,4 +33,14 @@ Cet exemple supprime la troisième colonne de l'état : #### Voir aussi -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 749 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md index a4db97cb9834e9..6eaf1c95e3ee87 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR DELETE OFFSCREEN AREA** efface de la mémoire la zone hors écran dont la référence a été passée dans le paramètre *zone*. @@ -24,4 +21,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 754 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md index d0969fa141a14c..8431a356821379 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR EXECUTE COMMAND** exécute la commande de bouton de la barre d'outils dont la référence est passée dans le paramètre *numCommande*. En général, cette commande est utilisée pour exécuter une commande de menu sélectionnée par l'utilisateur et interceptée dans votre code via la commande [QR ON COMMAND](qr-on-command.md). @@ -39,4 +36,14 @@ Si le paramètre *numCommande* est incorrect, l’erreur -9852 est générée. #### Voir aussi [QR Get command status](qr-get-command-status.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 791 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md index 74951d1cd25bd9..dca3101f4b5183 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Find column** retourne le numéro de la première colonne de la *zone* dont le contenu correspond à l'*expression* passée en paramètre. @@ -49,3 +46,14 @@ suivi de :     QR DELETE COLUMN(MaZone;$NumColonne)  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 776 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md index 84aa00772c6f00..7b1dd9d8fa07d2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get area property** retourne 0 si l'élément d'interface dont la référence est passée dans le paramètre *propriété* est masqué dans la *zone*, sinon elle retourne 1\. @@ -36,4 +33,14 @@ Si le paramètre *propriété* est incorrect, l’erreur -9852 est générée. #### Voir aussi -[QR SET AREA PROPERTY](qr-set-area-property.md) \ No newline at end of file +[QR SET AREA PROPERTY](qr-set-area-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 795 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md index a54389c28c7aff..239310a1cd99da 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET BORDERS** retourne les attributs d'encadrement d'une cellule spécifique de *zone*. @@ -70,4 +67,14 @@ Si le paramètre *encadrement* est incorrect, l’erreur -9854 est générée. #### Voir aussi -[QR SET BORDERS](qr-set-borders.md) \ No newline at end of file +[QR SET BORDERS](qr-set-borders.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 798 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md index 67b1a9111bd78f..22d632030a7bbc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get command status** retourne 0 si la commande désignée par le paramètre *numCommande* est inactivée et 1 si elle est activée. @@ -92,4 +89,14 @@ Si le paramètre *numCommande* est incorrect, l’erreur -9852 est générée. #### Voir aussi [QR EXECUTE COMMAND](qr-execute-command.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 792 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md index 6e0a3d31d41fb8..dc800655334c45 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET DESTINATION** retourne le *type* de destination de l'état rapide contenu dans la *zone*. @@ -36,4 +33,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET DESTINATION](qr-set-destination.md) \ No newline at end of file +[QR SET DESTINATION](qr-set-destination.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 756 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md index 1a0dd331c167f9..9b9c066042b136 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get document property** vous permet de connaître la valeur courante de la *propriété* d'affichage de la boîte de dialogue d'impression ou de l'unité du document présent dans la *zone*. @@ -36,4 +33,13 @@ Si la valeur du paramètre *propriété* est incorrecte, l’erreur -9852 est g #### Voir aussi -[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) \ No newline at end of file +[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 773 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md index 31e61858a62731..fea9a15c0c7514 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get drop column** retourne une valeur indiquant l'emplacement auquel un “déposer” a été effectué dans *zone* : @@ -28,4 +25,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 747 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md index fb5a8365a0e6e3..96a709e69cb012 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET HEADER AND FOOTER** vous permet de récupérer le contenu et la taille de l'en-tête et du pied de page de la *zone*. @@ -67,4 +64,14 @@ La méthode suivante affiche le contenu et la hauteur des libellés des en-tête #### Voir aussi -[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) \ No newline at end of file +[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 775 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md index 8196786cf582ef..bf14307ad2503f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get HTML template** retourne le modèle HTML utilisé pour la zone d'état rapide référencée par *zone*. La valeur retournée, de type texte, contient la totalité du code HTML utilisé comme modèle. @@ -28,4 +25,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET HTML TEMPLATE](qr-set-html-template.md) \ No newline at end of file +[QR SET HTML TEMPLATE](qr-set-html-template.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 751 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md index b805a1044034ae..ef2f051a8b5251 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description ##### Etats en liste @@ -106,4 +103,14 @@ Vous pouvez écrire : [QR Get info row](qr-get-info-row.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 766 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md index 92fb4df151bef5..dd32ba565330a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get info row** indique si la ligne désignée par le paramètre *ligne* est affichée ou masquée dans la *zone*. @@ -41,4 +38,14 @@ Si le paramètre *ligne* est incorrect, l’erreur -9852 est générée. [QR GET INFO COLUMN](qr-get-info-column.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 769 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md index 05f10359d4ea92..80d5d5c18e994b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get report kind** retourne le *type* d'état présent dans la *zone*. @@ -32,4 +29,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET REPORT KIND](qr-set-report-kind.md) \ No newline at end of file +[QR SET REPORT KIND](qr-set-report-kind.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 755 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md index 9a3ef40b196226..2bca35d3e94dd8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get report table** retourne le numéro de la table courante de l'état désigné par le paramètre *zone*. @@ -25,4 +22,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET REPORT TABLE](qr-set-report-table.md) \ No newline at end of file +[QR SET REPORT TABLE](qr-set-report-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 758 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md index a69daf7a330014..3b88e01927071e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET SELECTION** retourne les coordonnées de la sélection courante de la *zone*. @@ -38,4 +35,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET SELECTION](qr-set-selection.md) \ No newline at end of file +[QR SET SELECTION](qr-set-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 793 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md index 79066dbce3d6d8..7a8cb03242802c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET SORTS** remplit deux tableaux réels : @@ -37,4 +34,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET SORTS](qr-set-sorts.md) \ No newline at end of file +[QR SET SORTS](qr-set-sorts.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 753 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md index 23746c08cb63eb..ffd9d5d72992bf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get text property** retourne la valeur courante de la *propriété* de texte dans la cellule de *zone* désignée par *numColonne* et *numLigne*. @@ -67,4 +64,14 @@ Si le paramètre *propriété* est incorrect, l’erreur -9854 est générée. #### Voir aussi -[QR SET TEXT PROPERTY](qr-set-text-property.md) \ No newline at end of file +[QR SET TEXT PROPERTY](qr-set-text-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 760 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md index 94803972c5351e..e7fc94f0f0d390 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description ##### Etat en liste @@ -70,4 +67,14 @@ Si le paramètre *numRupture* est incorrect, l’erreur -9853 est générée. #### Voir aussi -[QR SET TOTALS DATA](qr-set-totals-data.md) \ No newline at end of file +[QR SET TOTALS DATA](qr-set-totals-data.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 768 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md index 75e93d43dfcce2..9a8eaaa1331f90 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET TOTALS SPACING** permet de récupérer la valeur de l'espacement ajouté au-dessous d'une ligne de sous-total. Elle ne peut être utilisée qu'avec des états en liste. @@ -37,4 +34,14 @@ Si le paramètre *sousTotal* est incorrect, l’erreur -9852 est générée. #### Voir aussi -[QR SET TOTALS SPACING](qr-set-totals-spacing.md) \ No newline at end of file +[QR SET TOTALS SPACING](qr-set-totals-spacing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 762 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md index 5918e362719b79..6b03d8b8d5a50f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR INSERT COLUMN** insère ou crée dans *zone* une colonne à un emplacement spécifique. Les colonnes situées à droite de la colonne ajoutée seront décalées en conséquence. @@ -40,4 +37,14 @@ La ligne suivante insère (ou crée) une première colonne dans la zone MaZone e #### Voir aussi -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 748 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md index 8fdadfb3064e8c..78d86b29376e90 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR MOVE COLUMN** déplace la colonne *numColonne* de sa position courante à la position *nouvPosition*. @@ -41,3 +38,13 @@ Si vous exécutez : Vous obtenez : ![](../assets/en/commands/pict2569472.fr.png) + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1325 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md index e2bd056962f277..5a6d5bbaa10ab1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md @@ -13,13 +13,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR NEW AREA** crée une nouvelle zone d'état rapide et stocke son numéro de référence dans la variable de type Entier long référencée par le pointeur *ptr*. #### Voir aussi -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1320 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md index 395770dc824971..5526c152118b66 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR New offscreen area** crée une zone d'Etat rapide hors écran et retourne son numéro de référence. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### Voir aussi [QR DELETE OFFSCREEN AREA](qr-delete-offscreen-area.md) -[QR NEW AREA](qr-new-area.md) \ No newline at end of file +[QR NEW AREA](qr-new-area.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 735 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md index 79b5e6cc1aecf7..7166da7087b2b0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR ON COMMAND** exécute la méthode projet 4D dont le nom est passé dans le paramètre *nomMéthode* lorsqu'une commande de l'éditeur d'états rapides est appelée via la sélection d'un menu ou le clic sur un bouton. @@ -44,4 +41,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. *QR Commandes* [QR EXECUTE COMMAND](qr-execute-command.md) -[QR Get command status](qr-get-command-status.md) \ No newline at end of file +[QR Get command status](qr-get-command-status.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 790 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md index 54431b6fff5c40..78d740876aeff1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR REPORT TO BLOB** place dans le BLOB *blob* (variable ou champ) l’état dont la référence a été passée dans le paramètre *zone*. @@ -33,4 +30,14 @@ L'instruction suivante affecte l'état rapide stocké dans la zone MaZone à un #### Voir aussi -[QR BLOB TO REPORT](qr-blob-to-report.md) \ No newline at end of file +[QR BLOB TO REPORT](qr-blob-to-report.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 770 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md index e7d7de4477f75a..a012f984b2c9a6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR REPORT** imprime un état pour *laTable*, à l'aide de l'Editeur d'états rapides de 4D. Cet éditeur permet à l'utilisateur de construire en totalité son propre état. Pour plus d'informations sur la création d'états à l'aide de l'Editeur d'états rapides, reportez-vous à la section *Etats rapides* dans le manuel *Mode Développement* de 4D. @@ -132,4 +129,14 @@ La méthode maCallbackMeth convertit l’état lorsqu’il est généré : [PRINT LABEL](print-label.md) [PRINT SELECTION](print-selection.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 197 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md index 6c843f3f583c34..49dac03190a884 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR RUN** provoque l'exécution de l'état rapide désigné par le paramètre *zone*. L'état est généré avec ses paramétrages courants, notamment son type de sortie. Vous pouvez utiliser la commande [QR SET DESTINATION](qr-set-destination.md) pour modifier le type de sortie. @@ -25,3 +22,14 @@ L'état est exécuté sur la table à laquelle appartient la zone. Lorsque *zone Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. **4D Server :** Cette commande peut être exécutée sur 4D Server dans le cadre d'une procédure stockée. Dans ce contexte, veillez à ce qu’aucune boîte de dialogue n’apparaisse sur le poste serveur (sauf besoin spécifique). Pour cela, il est nécessaire d’appeler la commande [QR SET DESTINATION](qr-set-destination.md) avec le paramètre "\*". En cas de problème sur l’imprimante (plus de papier, imprimante déconnectée, etc.), aucun message d'erreur n'est généré. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 746 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md index 53bba30aaac3ff..d778f5d6a0bd14 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET AREA PROPERTY** vous permet d'afficher ou de masquer l'élément d'interface dont la référence est passée dans le paramètre *propriété*. @@ -35,4 +32,14 @@ Si le paramètre *propriété* est incorrect, l’erreur -9852 est générée. #### Voir aussi -[QR Get area property](qr-get-area-property.md) \ No newline at end of file +[QR Get area property](qr-get-area-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 796 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md index e2e610950c5046..fec8f826f23078 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET BORDERS** permet de définir le style d'encadrement d'une cellule spécifique. @@ -77,4 +74,14 @@ Si le paramètre *épaisseur* est incorrect, l’erreur -9855 est générée. #### Voir aussi -[QR GET BORDERS](qr-get-borders.md) \ No newline at end of file +[QR GET BORDERS](qr-get-borders.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 797 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md index 52c00215568f70..d2f48c08c1ed01 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET DESTINATION** permet de définir le *type* de destination de sortie de l'état rapide contenu dans la *zone*. @@ -55,4 +52,14 @@ L'exemple suivant définit le fichier texte "MonDoc.txt" comme type de destinati #### Voir aussi -[QR GET DESTINATION](qr-get-destination.md) \ No newline at end of file +[QR GET DESTINATION](qr-get-destination.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 745 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md index f2d57c0ed76202..6e57160e606555 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET DOCUMENT PROPERTY** permet d'afficher la boîte de dialogue d'impression ou de définir l'unité du document présent dans la *zone*. @@ -36,4 +33,14 @@ Si la valeur du paramètre *propriété* ou *valeur* est incorrecte, l’erreur #### Voir aussi -[QR Get document property](qr-get-document-property.md) \ No newline at end of file +[QR Get document property](qr-get-document-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 772 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md index 85c1d05c83163f..25eaf3864496a0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET HEADER AND FOOTER** vous permet de définir le contenu et la taille de l'en-tête et du pied de page de la *zone*. @@ -56,4 +53,14 @@ L'instruction suivante place le libellé “Titre du centre” dans l'en-tête d #### Voir aussi -[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) \ No newline at end of file +[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 774 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md index 8d04a8e482e087..55e0cba36564c3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET HTML TEMPLATE** permet de définir le *modèle* HTML à utiliser pour la zone d'état rapide référencée par *zone*. Ce modèle sera utilisé lors de l'exécution des états au format HTML. @@ -70,4 +67,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR Get HTML template](qr-get-html-template.md) \ No newline at end of file +[QR Get HTML template](qr-get-html-template.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 750 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md index 1b8c195fa0649d..16c44f56edab9a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description ##### Etats en liste @@ -106,4 +103,14 @@ Si le paramètre *numColonne* est incorrect, l’erreur -9852 est générée. [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 765 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md index 3ca3be3493a08b..aee165ee43758f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET INFO ROW** permet d'afficher ou de masquer la ligne dont la référence est passée dans le paramètre *ligne*. @@ -53,4 +50,14 @@ L'instruction suivante masque le contenu de la ligne Détail : [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO COLUMN](qr-set-info-column.md) \ No newline at end of file +[QR SET INFO COLUMN](qr-set-info-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 763 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md index cc77df152699d7..41a51e49a85b01 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET REPORT KIND** permet de définir le *type* de l'état rapide présent dans la *zone*. @@ -35,4 +32,14 @@ Si la valeur de *type* est incorrecte, l’erreur -9852 est générée. #### Voir aussi -[QR Get report kind](qr-get-report-kind.md) \ No newline at end of file +[QR Get report kind](qr-get-report-kind.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 738 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md index d3e547ee6398fe..83563967fcf847 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET REPORT TABLE** désigne via le paramètre *numTable* le numéro de la table courante de l'état rapide dont la référence est passée dans le paramètre *zone*. @@ -28,4 +25,14 @@ Si le paramètre *numTable* est incorrect, l’erreur -9852 est générée. #### Voir aussi -[QR Get report table](qr-get-report-table.md) \ No newline at end of file +[QR Get report table](qr-get-report-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 757 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md index 0dc57cfcbe33b1..dcb05c635301be 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET SELECTION** permet de sélectionner une cellule, une ligne, une colonne ou encore la totalité de la *zone*, comme vous le feriez à l'aide de la souris. Cette commande permet également de désélectionner la sélection courante. @@ -38,4 +35,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR GET SELECTION](qr-get-selection.md) \ No newline at end of file +[QR GET SELECTION](qr-get-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 794 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md index e21ce9a5e27430..24ef76aac16ad9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET SORTS** vous permet de définir l'ordre de tri de chaque colonne de l'état rapide dont la référence est passée dans *zone*. @@ -47,4 +44,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR GET SORTS](qr-get-sorts.md) \ No newline at end of file +[QR GET SORTS](qr-get-sorts.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 752 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md index 1987ccd15afeb0..4f34a32d2b8f47 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET TEXT PROPERTY** permet de définir les propriétés de texte de la cellule désignée par les paramètres *numColonne* et *numLigne*. @@ -86,4 +83,14 @@ Cette méthode définit plusieurs attributs pour l'intitulé de la première col #### Voir aussi -[QR Get text property](qr-get-text-property.md) \ No newline at end of file +[QR Get text property](qr-get-text-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 759 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md index 727e89c583f006..9272f57b1367dd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande ne crée pas de sous-total. @@ -97,4 +94,14 @@ Si le paramètre *numRupture* est incorrect, l’erreur -9853 est générée. #### Voir aussi -[QR GET TOTALS DATA](qr-get-totals-data.md) \ No newline at end of file +[QR GET TOTALS DATA](qr-get-totals-data.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 767 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md index d1e225737cfe74..31545cd6a3f827 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET TOTALS SPACING** permet de définir l'espacement ajouté au-dessous d'une ligne de sous-total. Elle ne peut être utilisée qu'avec des états en liste. @@ -39,4 +36,14 @@ Si le paramètre *sousTotal* est incorrect, l’erreur -9852 est générée. #### Voir aussi -[QR GET TOTALS SPACING](qr-get-totals-spacing.md) \ No newline at end of file +[QR GET TOTALS SPACING](qr-get-totals-spacing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 761 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md index 2ba7ead7e93160..257f1308ab8293 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -La commande **QUERY BY ATTRIBUTE** recherche les enregistrements répondant au(x) critère(s) de recherche spécifié(s) à l'aide des paramètres *champObjet*, *cheminAttribut*, *opRech* et *valeur* et retourne une sélection d'enregistrements de *laTable*. - -**QUERY BY ATTRIBUTE** modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. Si vous omettez le paramètre *laTable*, la commande s'applique à la table par défaut. Si aucune table par défaut n'a été définie, une erreur est générée. +La commande **QUERY BY ATTRIBUTE** recherche les enregistrements répondant au(x) critère(s) de recherche spécifié(s) à l'aide des paramètres *champObjet*, *cheminAttribut*, *opRech* et *valeur* et retourne une sélection d'enregistrements de *laTable*.modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. Si vous omettez le paramètre *laTable*, la commande s'applique à la table par défaut. Si aucune table par défaut n'a été définie, une erreur est générée. Le paramètre optionnel *opConj* est utilisé pour combiner plusieurs appels à **QUERY BY ATTRIBUTE** en cas de recherche multiple. Les opérateurs de conjonction utilisables sont les mêmes que ceux de la commande [QUERY](query.md) : @@ -410,4 +408,16 @@ La variable OK prend la valeur 0 si : [QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) -*Structure des objets de langage 4D* \ No newline at end of file +*Structure des objets de langage 4D* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1331 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md index 1356322c014b2e..f38696f79f22e0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QUERY BY EXAMPLE** effectue la même action que la commande de menu **Recherche par formulaire**... en mode Développement. Cette commande affiche le formulaire entrée courant comme fenêtre de recherche. **QUERY BY EXAMPLE** cherche dans *laTable* les données que l'utilisateur a saisies dans cette fenêtre. Le formulaire doit contenir les champs sur lesquels vous voulez que l'utilisateur puisse effectuer la recherche. La recherche est optimisée : les champs indexés sont automatiquement utilisés. @@ -43,4 +40,17 @@ Si l'utilisateur clique sur le bouton Valider ou appuie sur la touche Entrée, l #### Voir aussi [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 292 | +| Thread safe | ✗ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md index dd5a6628f088f6..d09e51ddc66738 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**QUERY BY FORMULA** effectue une recherche d'enregistrements dans *laTable*. **QUERY BY FORMULA** modifie la sélection courante de *laTable* pour le process courant et fait du premier enregistrement le nouvel enregistrement courant. +**QUERY BY FORMULA** effectue une recherche d'enregistrements dans *laTable*.modifie la sélection courante de *laTable* pour le process courant et fait du premier enregistrement le nouvel enregistrement courant. **QUERY BY FORMULA** et la commande [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) fonctionnent exactement de la même manière, à la différence près que **QUERY BY FORMULA** effectue sa recherche parmi la totalité des enregistrements de la table alors que [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) se cantonne aux enregistrements de la sélection courante. @@ -79,4 +79,15 @@ Dans cet exemple, on utilise une jointure pour rechercher toutes les lignes de f [QUERY](query.md) [QUERY BY SQL](query-by-sql.md) [QUERY SELECTION](query-selection.md) -[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) \ No newline at end of file +[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 48 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md index 8c67e5a931748c..5a7c8c40a93a68 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QUERY BY SQL** permet de tirer directement parti du moteur SQL intégré de 4D. Elle exécute une requête SELECT simple qui peut être écrite ainsi : @@ -159,4 +156,16 @@ Si le format de la condition de recherche est correct, la variable système OK p #### Voir aussi -[QUERY BY FORMULA](query-by-formula.md) \ No newline at end of file +[QUERY BY FORMULA](query-by-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 942 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md index 985b22f63ce21c..8e9f5af7314444 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md @@ -44,4 +44,16 @@ Vous souhaitez trouver les personnes âgées entre 20 et 30 ans parmi les enregi #### Voir aussi -[QUERY BY ATTRIBUTE](query-by-attribute.md) \ No newline at end of file +[QUERY BY ATTRIBUTE](query-by-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1424 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md index 5c98d46c461080..6d9be2eb812620 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -La commande **QUERY SELECTION BY FORMULA** vous permet de rechercher des enregistrements dans *laTable*. **QUERY SELECTION BY FORMULA** modifie la sélection courante de *laTable* pour le process courant et fait du premier enregistrement le nouvel enregistrement courant. +La commande **QUERY SELECTION BY FORMULA** vous permet de rechercher des enregistrements dans *laTable*.modifie la sélection courante de *laTable* pour le process courant et fait du premier enregistrement le nouvel enregistrement courant. **QUERY SELECTION BY FORMULA** fonctionne de la même manière que [QUERY BY FORMULA](query-by-formula.md). La différence entre ces deux commandes se situe au niveau de la portée de la recherche : @@ -29,4 +29,15 @@ Pour plus d'informations, reportez-vous à la description de la commande [QUERY [QUERY](query.md) [QUERY BY FORMULA](query-by-formula.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 207 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md index 1ae0fa87eaacae..71619ba61b51fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md @@ -27,4 +27,14 @@ Pour plus d’informations, reportez-vous à la description de la commande [QUER #### Voir aussi -[QUERY WITH ARRAY](query-with-array.md) \ No newline at end of file +[QUERY WITH ARRAY](query-with-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1050 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md index 69e430216c9116..edab85f6bb00d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -**QUERY SELECTION** recherche des enregistrements dans *laTable*. **QUERY SELECTION** modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. +**QUERY SELECTION** recherche des enregistrements dans *laTable*.modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. **QUERY SELECTION** a un fonctionnement et des effets proches de ceux de [QUERY](query.md). La différence entre ces deux commandes est la portée de la recherche : @@ -42,4 +42,16 @@ Vous trouvez donc toutes les sociétés basées à Paris, dont l'activité est b #### Voir aussi -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 341 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md index cae3f054d5dd66..01c3331ca3036f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md @@ -38,4 +38,14 @@ Cet exemple permet de récupérer les enregistrements des clients français et a #### Voir aussi -[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) \ No newline at end of file +[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 644 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query.md index 09e9bf39e5e53c..5783a54f7b44ce 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -La commande **QUERY** recherche les enregistrements répondant au(x) critère(s) de recherche spécifié(s) dans *critère* et retourne une sélection d'enregistrements de *laTable*. **QUERY** modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. +La commande **QUERY** recherche les enregistrements répondant au(x) critère(s) de recherche spécifié(s) dans *critère* et retourne une sélection d'enregistrements de *laTable*.modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. Si vous omettez le paramètre *laTable*, la commande s'applique à la table par défaut. Si aucune table par défaut n'a été définie, une erreur est générée. @@ -307,4 +307,16 @@ La variable OK prend la valeur 0 si : #### Voir aussi -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 277 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md index 787d4f25b606d2..870e716cbb7d12 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md @@ -63,4 +63,13 @@ La méthode projet suivante est associée à la commande **Quitter** du menu **F #### Voir aussi -[On Exit database method](on-exit-database-method.md) \ No newline at end of file +[On Exit database method](on-exit-database-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 291 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/random.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/random.md index 1c93ae01f6a0f3..e5393afb534a6e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/random.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/random.md @@ -32,3 +32,13 @@ L'exemple suivant assigne une valeur entière aléatoire entre 10 et 30 à la va ```4d  vRésultat:=(Random% 21)+10 ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 100 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md index 64799ad32d8718..dd456b61074b54 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -La fonction **Read only state** est utilisé pour tester si *laTable* est en mode lecture seulement dans le process où la fonction est appelée. **Read only state** retourne Vrai si *laTable* est en lecture seulement, et Faux si *laTable* est en lecture-écriture. +La fonction **Read only state** est utilisé pour tester si *laTable* est en mode lecture seulement dans le process où la fonction est appelée.retourne Vrai si *laTable* est en lecture seulement, et Faux si *laTable* est en lecture-écriture. #### Exemple @@ -35,4 +35,13 @@ L'exemple suivant teste le statut de la table \[Factures\]. Si elle est en lectu [READ ONLY](read-only.md) [READ WRITE](read-write.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 362 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md index 49f05ac3069427..3850c45d3afa03 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md @@ -25,4 +25,13 @@ Vous pouvez utiliser **READ ONLY** lorsqu'il n'est pas utile de modifier les enr [Read only state](read-only-state.md) [READ WRITE](read-write.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 145 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md index a1ca8369621a22..a34f954cc3a67e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md @@ -39,4 +39,14 @@ Si l’exécution de la commande est correcte, la variable système Document con [BLOB TO PICTURE](blob-to-picture.md) *Introduction aux images* [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 678 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md index d8cfe978862411..1b9f18c49421a4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md @@ -29,4 +29,13 @@ Utilisez **READ WRITE** lorsque vous devez modifier un enregistrement et sauvega [READ ONLY](read-only.md) [Read only state](read-only-state.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 146 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md index 3037f32e993134..f21a1552226b74 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md @@ -132,4 +132,13 @@ Après l'exécution de ce code : [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 552 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md index 1f592c222fe516..2cf3800f72509b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md @@ -63,4 +63,14 @@ Notez que l'accès à la variable interprocess *◊vtBuffer* doit être protég [RECEIVE PACKET](receive-packet.md) [Semaphore](semaphore.md) [SET CHANNEL](set-channel.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 172 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md index bad52d2d8255e8..5b5e7abd2ab42f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md @@ -111,4 +111,14 @@ Après un appel à **RECEIVE PACKET**, la variable système OK prend la valeur 1 [SEND PACKET](send-packet.md) [SET DOCUMENT POSITION](set-document-position.md) [SET TIMEOUT](set-timeout.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 104 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md index eb1fb2c6a9caca..53640e94df8d71 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md @@ -151,4 +151,14 @@ La variable système OK prend la valeur 1 si l'enregistrement est correctement r [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 79 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md index 43f8831fe59b1e..e8159965d87389 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md @@ -38,4 +38,14 @@ La variable système OK prend la valeur 1 si la variable est correctement reçue [ON ERR CALL](on-err-call.md) [RECEIVE RECORD](receive-record.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 81 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md index a56a0b4c6347f9..ac68c475d2dcb4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md @@ -43,4 +43,13 @@ L'exemple suivant sauvegarde le numéro d'enregistrement courant puis cherche da [GOTO RECORD](goto-record.md) [Is new record](is-new-record.md) [Selected record number](selected-record-number.md) -[Sequence number](sequence-number.md) \ No newline at end of file +[Sequence number](sequence-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 243 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md index aab67cc1629ecd..8f0f379a60b716 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md @@ -32,4 +32,13 @@ L'exemple suivant propose une technique de boucle couramment utilisée pour se d #### Voir aussi -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 76 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md index a256f3d4d0c81a..4953ae0839beb7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md @@ -32,4 +32,13 @@ L'exemple suivant affiche une boîte de dialogue d'alerte qui indique le pourcen #### Voir aussi [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 195 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md index 9d45b6b6bacbde..deeda21ab33f2d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md @@ -28,4 +28,13 @@ L'exemple suivant affiche une alerte indiquant le nombre d'enregistrements de la #### Voir aussi -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 83 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md index 296abffddadf53..82850fbe8a01b2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **REDRAW WINDOW** provoque une mise à jour du contenu de la fenêtre dont le numéro de référence est passé dans *fenêtre*. @@ -26,4 +23,13 @@ Si vous omettez le paramètre *fenêtre*, **REDRAW WINDOW** s'appliquera à la f #### Voir aussi -[ERASE WINDOW](erase-window.md) \ No newline at end of file +[ERASE WINDOW](erase-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 456 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md index 57a84b7533812b..b863d7cb73df81 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description Lorsque vous modifiez par programmation le contenu d'un champ affiché dans un sous-formulaire, vous devez exécuter la commande **REDRAW** pour vous assurer que le formulaire est correctement mis à jour. @@ -24,4 +21,13 @@ Dans le contexte des list box en mode sélection, l’instruction **REDRAW** app #### Voir aussi -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 174 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md index 856809161edb3a..6892b81b1af645 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **REDUCE RESTORE WINDOW** réduit/agrandit la fenêtre dont le numéro de référence a été transmis dans la fenêtre vers/depuis la barre des tâches sous Windows ou le dock sous macOS. @@ -31,4 +28,13 @@ La commande permet de basculer l'état de la fenêtre : [Is window reduced](is-window-reduced.md) [MAXIMIZE WINDOW](maximize-window.md) -[MINIMIZE WINDOW](minimize-window.md) \ No newline at end of file +[MINIMIZE WINDOW](minimize-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1829 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md index deb14dfb14cdd6..18cdbe661e0746 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md @@ -57,4 +57,15 @@ L'exemple suivant établit des statistiques pour une compétition mondiale parmi [ORDER BY](order-by.md) *Présentation des ensembles* [QUERY](query.md) -[SCAN INDEX](scan-index.md) \ No newline at end of file +[SCAN INDEX](scan-index.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 351 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md index f0d9ad02ee0da3..b1ea4ba87e4b88 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Refresh license** met à jour la licence 4D Server courante. Elle vous connecte à la base cliente de 4D et active automatiquement les nouvelles licences ou les mises à jour (*ex:* suite à l'achat de nouveaux clients). @@ -47,3 +44,13 @@ Vous souhaitez mettre à jour votre licence et recevoir un message à la fin de     ALERT($res.statusText)  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1336 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md index 052e3bb08b4b2c..3778bf34aff144 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **REGENERATE MISSING TABLE** reconstruit la table manquante dont vous avez passé le nom dans le paramètre *nomTable*. Lorsqu’une table manquante est reconstruite, elle devient visible dans l’éditeur de Structure et ses données sont de nouveau accessibles. @@ -61,4 +58,13 @@ Cette méthode regénère toutes les tables manquantes éventuellement présente #### Voir aussi -[GET MISSING TABLE NAMES](get-missing-table-names.md) \ No newline at end of file +[GET MISSING TABLE NAMES](get-missing-table-names.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1126 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md index 3e86891cce8353..aee8d1f0a3034b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **REGISTER CLIENT** “inscrit” un poste client 4D sous le nom *nomClient* auprès de 4D Server, afin de permettre que d’autres clients ou éventuellement 4D Server (par l’intermédiaire de procédures stockées) puissent y exécuter des méthodes à l’aide de la commande [EXECUTE ON CLIENT](execute-on-client.md). Une fois inscrit, un client 4D peut donc exécuter une ou plusieurs méthodes pour le compte d’autres clients. @@ -120,4 +117,14 @@ Si le poste client est correctement inscrit, la variable système OK prend la va [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 648 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md index e93e7fafa151d5..7c9c8faa4b0d7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md @@ -47,4 +47,13 @@ Passez le paramètre *phraseSecrèteCour* ou *cléDonnéesCour*, qui définit la #### Voir aussi -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1638 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md index 96506164923ef3..47821bb2c40964 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md @@ -38,4 +38,13 @@ Vous souhaitez rejeter puis accepter les nouvelles connexions distantes : [DROP REMOTE USER](drop-remote-user.md) [Application info](application-info.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1635 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject.md index 2a1df0fa594f3b..4be099fb5103fc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **REJECT** accepte deux syntaxes. Dans la première syntaxe, **REJECT** n'a pas de paramètre. Dans ce cas, la commande rejette la totalité de la saisie et force l'utilisateur à rester dans le formulaire. La seconde syntaxe permet de ne refuser que *leChamp* et force l'utilisateur à rester dans le champ. @@ -64,4 +61,13 @@ L'exemple suivant est une partie de la méthode objet d'un champ *\[Employés\]S [ACCEPT](accept.md) [CANCEL](cancel.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 38 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md index 7fd05059359f74..960ecae9e097af 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -La commande **RELATE MANY SELECTION** crée une sélection d'enregistrements dans la table N basée sur la sélection courante de la table 1, et charge le premier enregistrement de la table N comme enregistrement courant. - -**Note :** **RELATE MANY SELECTION** modifie l'enregistrement courant de la table 1. +La commande **RELATE MANY SELECTION** crée une sélection d'enregistrements dans la table N basée sur la sélection courante de la table 1, et charge le premier enregistrement de la table N comme enregistrement courant.**RELATE MANY SELECTION** modifie l'enregistrement courant de la table 1. #### Exemple @@ -34,4 +32,15 @@ Prenons l'exemple d'une base de données comportant une table *\[Factures\]* don [QUERY](query.md) [RELATE ONE](relate-one.md) -[RELATE ONE SELECTION](relate-one-selection.md) \ No newline at end of file +[RELATE ONE SELECTION](relate-one-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 340 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md index 878b0141f2dfcd..901fb91c0d8d6e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md @@ -59,4 +59,14 @@ Par exemple, la méthode suivante effectue une boucle sur chaque enregistrement #### Voir aussi [OLD RELATED MANY](old-related-many.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 262 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md index 62b40288bcee3f..e05221622734e1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md @@ -55,4 +55,15 @@ L'exemple suivant parvient au même résultat que le précédent : *Présentation des ensembles* [QUERY](query.md) [RELATE MANY SELECTION](relate-many-selection.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 349 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md index 1d36996c054431..746b60fdccc7a1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **RELATE ONE** accepte deux syntaxes. @@ -86,4 +83,16 @@ Si la commande a été correctement exécutée et si les enregistrements liés o #### Voir aussi [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 42 | +| Thread safe | ✗ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md index bcf4703d3396cb..c9374d610f1537 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RELEASE MENU** efface de la mémoire le menu dont vous avez passé l’identifiant dans *menu*. Ce menu doit avoir été créé par la commande [Create menu](create-menu.md). La règle est la suivante : à chaque [Create menu](create-menu.md) doit correspondre un [RELEASE MENU](release-menu.md). @@ -56,4 +53,13 @@ Cet exemple illustre les cas d'utilisation de cette commande : #### Voir aussi -[Create menu](create-menu.md) \ No newline at end of file +[Create menu](create-menu.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 978 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md index d231282eb0d31b..b371f117328ecb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md @@ -25,4 +25,13 @@ Il est alors nécessaire de demander le rechargement des données à l'aide de l #### Voir aussi -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1135 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md index ca4e6a47160b89..bfb3830dc819a8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RELOAD PROJECT** recharge les définitions du fichier source (méthodes, formulaires, etc.) à partir du disque, pour exécuter le projet dans l'environnement 4D courant. Elle peut être utilisée uniquement avec des projets 4D exécutés en **mode** **interprété**. L'exécution de la commande est asynchrone. @@ -36,4 +33,13 @@ Lorsque la commande est appelée depuis : #### Voir aussi - \ No newline at end of file + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1739 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md index 2c7f666d4af256..ad16f75792f70b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Voir aussi -[ADD TO SET](add-to-set.md) \ No newline at end of file +[ADD TO SET](add-to-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 561 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md index a0cd815b94bd5d..bac1603108ae49 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **REMOVE PICTURE FROM LIBRARY** supprime de la bibliothèque d’images l’image dont vous avez passé le numéro de référence dans *refImage* ou le nom dans *nomImage*. @@ -50,4 +47,14 @@ L’exemple suivant supprime de la bibliothèque d’images celles dont le nom c [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 567 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md index 01e6c4e690d4d1..8d1a9f320064f9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md @@ -68,4 +68,13 @@ L'exemple suivant illustre le rôle du paramètre \* dans le cadre d'une évalua [Change string](change-string.md) [Delete string](delete-string.md) -[Insert string](insert-string.md) \ No newline at end of file +[Insert string](insert-string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 233 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/request.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/request.md index cefb0a30723405..ccedf342894f28 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/request.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/request.md @@ -77,4 +77,14 @@ La ligne de code : #### Voir aussi [ALERT](alert.md) -[CONFIRM](confirm.md) \ No newline at end of file +[CONFIRM](confirm.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 163 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md index 45251776f5f0d4..fa5a8cb7eeadc4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RESIZE FORM WINDOW** permet de modifier la taille de la fenêtre du formulaire courant. @@ -49,4 +46,13 @@ Après l'exécution de cette ligne : [FORM GET PROPERTIES](form-get-properties.md) [FORM SET SIZE](form-set-size.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 890 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md index b93047aabb6448..71e4dea3113d88 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md @@ -31,4 +31,14 @@ Si *cheminAlias* désigne bien un alias/raccourci, la variable système OK prend #### Voir aussi -[CREATE ALIAS](create-alias.md) \ No newline at end of file +[CREATE ALIAS](create-alias.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 695 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md index bb4578ff63bce0..14b5db4bd103f2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md @@ -104,4 +104,13 @@ Voici un exemple de pointeur vers un tableau 2D : [Get pointer](get-pointer.md) [Is a variable](is-a-variable.md) [Is nil pointer](is-nil-pointer.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 394 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md index 2bae74cf7ff9d0..941c97c4b276f5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RESOURCE LIST** remplit les tableaux *resNums* et *resNoms* avec les numéros et les noms des ressources dont vous avez passé le type dans *resType*. @@ -71,4 +68,13 @@ L'exemple suivant copie dans la bibliothèque d'images de la base les ressources #### Voir aussi -[RESOURCE TYPE LIST](resource-type-list.md) \ No newline at end of file +[RESOURCE TYPE LIST](resource-type-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 500 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md index 6021b50e628551..2beda015923861 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RESOURCE TYPE LIST** remplit le tableau *resTypes* avec les types des ressources présentes dans le(s) fichier(s) de resources ouvert(s). @@ -83,4 +80,13 @@ Une fois que cette méthode est implémentée dans votre base, vous pouvez écri #### Voir aussi -[RESOURCE LIST](resource-list.md) \ No newline at end of file +[RESOURCE LIST](resource-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 499 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md index 059fab653506a5..2c405ab74b9749 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md @@ -33,4 +33,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [Get last update log path](get-last-update-log-path.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1292 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md index 698d386a29847f..64020f6d6dbaa0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md @@ -35,4 +35,13 @@ Le type et le contenu des paramètres *info1* et *info2* dépendent de la valeur #### Voir aussi -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 889 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore.md index 95623f92f59f35..20c4058cf74def 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RESTORE** permet restituer le ou les fichier(s) inclus dans une archive 4D. Cette commande est utile dans le cadre d’interfaces personnalisées pour la gestion des sauvegardes. @@ -35,4 +32,14 @@ La commande **RESTORE** modifie la valeur des variables *OK* et *Document* : si #### Voir aussi [BACKUP](backup.md) -[RESTORE INFO](restore-info.md) \ No newline at end of file +[RESTORE INFO](restore-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 918 | +| Thread safe | ✗ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md index a3cc2e0e8c0c9f..0514db29a11184 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md @@ -26,4 +26,13 @@ La commande **RESUME INDEXES** ne peut être appelée que depuis 4D Server ou un #### Voir aussi [CREATE INDEX](create-index.md) -[PAUSE INDEXES](pause-indexes.md) \ No newline at end of file +[PAUSE INDEXES](pause-indexes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1294 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md index 9fd96206a678f8..d922b5edff2282 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md @@ -24,4 +24,14 @@ Si *process* a été suspendu, référez-vous aux commandes [PAUSE PROCESS](paus #### Voir aussi [DELAY PROCESS](delay-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 320 | +| Thread safe | ✓ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md index 6da6638e4dab5f..fbbeaccb66b167 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md @@ -22,4 +22,13 @@ Pour plus d'informations, veuillez vous référer à la section *Suspendre des t [Active transaction](active-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspendre des transactions* \ No newline at end of file +*Suspendre des transactions* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1386 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md index c637dee9836d8c..0a436197479cf3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Right click** retourne Vrai si un clic effectué avec le bouton droit de la souris a été effectué. @@ -25,4 +22,13 @@ Cette commande doit être appelée uniquement dans le cadre de l’événement f #### Voir aussi [Contextual click](contextual-click.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 712 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/round.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/round.md index 471eb04f0af493..a717eaaaa804ec 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/round.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/round.md @@ -36,4 +36,13 @@ L'exemple suivant illustre la manière dont Arrondi fonctionne dans différents #### Voir aussi -[Trunc](trunc.md) \ No newline at end of file +[Trunc](trunc.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 94 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md index 1be6b57db7809d..6e8644023f11a0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SAVE LIST** sauvegarde la liste dont vous avez passé le numéro de référence dans *liste*, sous le nom que vous avez passé dans *nomListe*. La liste est stockée en tant qu'énumération dans l'éditeur d'énumérations du mode Développement. @@ -27,4 +24,13 @@ Si une énumération de même nom existe déjà, son contenu est remplacé. #### Voir aussi -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 384 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md index 7362505e17d170..68acbdb0ef008b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md @@ -47,4 +47,13 @@ L'exemple suivant est une partie d'une méthode récupérant des enregistrements [CREATE RECORD](create-record.md) [Locked](locked.md) -*Présentation des triggers* \ No newline at end of file +*Présentation des triggers* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 53 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md index 9d0f48fb53dd73..99cd2ff693a2aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [CREATE RELATED ONE](create-related-one.md) [Locked](locked.md) *Présentation des triggers* -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 43 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md index 5ed840a1d28eaf..f535a608c4dd9b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md @@ -40,4 +40,14 @@ Si l'utilisateur clique sur le bouton Annuler dans la boîte de dialogue standar #### Voir aussi -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 184 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md index 1414f7236fbe7d..2acf0e1625f17a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md @@ -47,4 +47,14 @@ Si l'opération s'est correctement déroulée, la variable OK prend la valeur 1, [DOCUMENT TO BLOB](document-to-blob.md) [LOAD VARIABLES](load-variables.md) [VARIABLE TO BLOB](variable-to-blob.md) -*Variables système* \ No newline at end of file +*Variables système* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 75 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md index 677fa1995be494..74b26fda988586 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md @@ -46,4 +46,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) \ No newline at end of file +[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 857 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md index 1a83e616b3371c..47abc0dc0ba4e2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md @@ -73,4 +73,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[SAX GET XML CDATA](sax-get-xml-cdata.md) \ No newline at end of file +[SAX GET XML CDATA](sax-get-xml-cdata.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 856 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md index bb7a52ee645006..6dc738eef9ed1e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md @@ -45,4 +45,14 @@ En cas d’erreur, la commande retourne une erreur qui peut être interceptée v #### Voir aussi -[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) \ No newline at end of file +[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 852 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md index ed0149c5532772..4cfd26e90ca4cd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md @@ -45,4 +45,14 @@ En cas d’erreur, la commande retourne une erreur qui peut être interceptée v #### Voir aussi -[SAX ADD XML COMMENT](sax-add-xml-comment.md) \ No newline at end of file +[SAX ADD XML COMMENT](sax-add-xml-comment.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 851 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md index 912e967036b058..65af31a47307e7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md @@ -50,4 +50,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [SAX GET XML ELEMENT VALUE](sax-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 855 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md index 3479903d747b66..d06d9bda3eff40 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md @@ -36,4 +36,13 @@ Si le dernier élément ouvert est **, l’instruction suivante : #### Voir aussi [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 854 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md index 6a87f1a30fc895..94db0cf722d9fd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md @@ -48,4 +48,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [SAX ADD XML CDATA](sax-add-xml-cdata.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 878 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md index 9ce12ab702895f..f12581ad1742c6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md @@ -25,4 +25,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [SAX ADD XML COMMENT](sax-add-xml-comment.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 874 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md index 6facf1c056fd26..53e4661c880228 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md @@ -29,4 +29,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [SAX Get XML node](sax-get-xml-node.md) -[SAX SET XML DECLARATION](sax-set-xml-declaration.md) \ No newline at end of file +[SAX SET XML DECLARATION](sax-set-xml-declaration.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 873 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md index 63ebf2e555cfa2..74e19408630b7a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md @@ -43,4 +43,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 877 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md index 9db3c87cb15f51..99980349283971 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md @@ -56,4 +56,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 876 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md index 4f8f17c09e0803..33e501c8d802ff 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md @@ -47,4 +47,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 879 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md index 295b5b33d68bb6..104099eebf925a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md @@ -55,3 +55,14 @@ Exemple de traitement des événements : #### Variables et ensembles système Si la commande a été exécutée correctement, la variable système OK prend la valeur 1, sinon elle prend la valeur 0 et une erreur est générée. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 860 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md index 21931a96296b08..d0be67e53dccbe 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md @@ -39,4 +39,13 @@ L’instruction suivante retournera “PI” dans *vNom* et “TextProcess” da #### Voir aussi [SAX ADD PROCESSING INSTRUCTION](sax-add-processing-instruction.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 875 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md index 61aa8a4c24f8c6..01d533a575c4c3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md @@ -52,4 +52,13 @@ La méthode suivante : [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 921 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md index c7dc267bfd9c29..1a6c6ba8f3d48a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md @@ -51,4 +51,14 @@ Si un caractère invalide est passé dans *balise*, une erreur est générée. #### Voir aussi [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 853 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md index 6e10ad1611d1cd..f89c34c6d7fe79 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md @@ -43,4 +43,13 @@ Le code suivant : #### Voir aussi -[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) \ No newline at end of file +[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 858 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md index 6bac540e432825..b045c6a597f899 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md @@ -49,4 +49,15 @@ L'exemple suivant envoie des lettres aux 50 plus mauvais clients puis aux 50 mei [ORDER BY](order-by.md) [QUERY](query.md) -[REDUCE SELECTION](reduce-selection.md) \ No newline at end of file +[REDUCE SELECTION](reduce-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 350 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md index 62296cc17b5f2e..deb6c3dac84f16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SCREEN COORDINATES** retourne dans les paramètres *gauche*, *haut*, *droite* et *bas* les coordonnées de l'écran spécifié dans le paramètre *idEcran*. @@ -47,4 +44,13 @@ Les images suivantes illustrent les différences entre la zone de l'écran et la [Count screens](count-screens.md) [Menu bar screen](menu-bar-screen.md) -[SCREEN DEPTH](screen-depth.md) \ No newline at end of file +[SCREEN DEPTH](screen-depth.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 438 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md index 5e27b35e6b1c63..bc0115cd32920f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SCREEN DEPTH** retourne dans les paramètres *profondeur* et *couleur* les caractéristiques du moniteur utilisé. @@ -57,3 +54,13 @@ Votre application affiche de nombreux graphiques en couleurs. Vous pouvez écrir #### Voir aussi [Count screens](count-screens.md) + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 439 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md index aa5b1575d1b823..14dcab8c367043 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description Sous Windows, **Screen height** retourne la hauteur de la fenêtre d'application 4D (fenêtre MDI). Si vous passez le paramètre optionnel *\**, **Screen height** retourne la hauteur de l'écran. @@ -26,4 +23,13 @@ Sous Mac OS, **Screen height** retourne la hauteur de l'écran principal, c'est- #### Voir aussi [SCREEN COORDINATES](screen-coordinates.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 188 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md index f75bdf52051a4b..af116df51abdcd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description Sous Windows, **Screen width** retourne la largeur de la fenêtre d'application 4D (fenêtre MDI). Si vous passez le paramètre optionnel \*, **Screen width** retourne la largeur de l'écran. @@ -26,4 +23,13 @@ Sous Mac OS, **Screen width** retourne la largeur de l'écran principal, c'est- #### Voir aussi [SCREEN COORDINATES](screen-coordinates.md) -[Screen height](screen-height.md) \ No newline at end of file +[Screen height](screen-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 187 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md index dfd2d84c4f6366..6cf51d24500c3c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md @@ -95,4 +95,14 @@ Si aucun fichier n’a été sélectionné (par exemple si l’utilisateur a cli #### Voir aussi [Open document](open-document.md) -[Select folder](select-folder.md) \ No newline at end of file +[Select folder](select-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 905 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md index d1f7423b941f16..63d54595454c84 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md @@ -82,4 +82,14 @@ L’exemple suivant permet de sélectionner le dossier dans lequel toutes les im [CREATE FOLDER](create-folder.md) [FOLDER LIST](folder-list.md) -[Select document](select-document.md) \ No newline at end of file +[Select document](select-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 670 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md index 54822f50cbd012..67b99f5ea8af2f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SELECT LIST ITEMS BY POSITION** sélectionne le ou les élément(s) dont vous avez passé la position dans *positionElém* et, facultativement, dans *tabPositions*, à l'intérieur de la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -73,4 +70,13 @@ Après l'exécution des lignes de code suivantes : [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 381 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md index b46ffd751df9b8..9ce438dca53a4d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SELECT LIST ITEMS BY REFERENCE** sélectionne le ou les élément(s) dont vous avez passé le numéro de référence dans *réfElément* et, facultativement, dans *tabRéfs*, parmi la liste dont vous avez passé la référence dans *liste*. @@ -51,4 +48,13 @@ En supposant que *hList* est une liste dont les éléments ont des numéros de r [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 630 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md index d88c45310a7a36..212319ce21e820 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SELECT LOG FILE** crée ou ferme le fichier d'historique de la base de données, suivant la valeur que vous passez dans *historique*. @@ -38,4 +35,14 @@ L'erreur -4447 est générée si l'opération ne peut pas être réalisée car l #### Voir aussi -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 345 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md index 90f2073c4f448c..7101d3346a9643 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Select RGB Color** affiche la fenêtre système de sélection de couleur et retourne la valeur RVB de la couleur sélectionnée par l’utilisateur. @@ -41,4 +38,15 @@ La prise en compte de la validation de la boîte de dialogue diffère selon la p #### Voir aussi -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 956 | +| Thread safe | ✗ | +| Modifie les variables | OK | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md index 33999cf1f82d82..aa123a846f29f2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **Selected list items** retourne la **position** ou la **référence** de l'élément sélectionné dans la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -85,4 +82,13 @@ Voici la liste *hList* telle qu'elle apparaît en mode Application : #### Voir aussi [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 379 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md index c6fc6789a55d94..3aefed4fb2c6c0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md @@ -37,4 +37,13 @@ L'exemple suivant stocke le numéro de l'enregistrement courant de la sélection *A propos des numéros d'enregistrements* [GOTO SELECTED RECORD](goto-selected-record.md) -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 246 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md index de3ea37448b25b..c2bbf46fc431d5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md @@ -105,4 +105,13 @@ Utilisation des 50 premiers enregistrements courants de la table \[Factures\] po [ON ERR CALL](on-err-call.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 368 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md index a643aaf2d3d30e..70e71dc849d623 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md @@ -19,9 +19,7 @@ displayed_sidebar: docs #### Description -La commande **SELECTION TO ARRAY** crée un ou plusieurs tableau(x) et y copie les valeurs des champ(s) ou les numéros d'enregistrement(s) de la sélection courante. - -**SELECTION TO ARRAY** s'applique à la sélection courante de la table désignée par le premier paramètre (nom de table ou nom de champ). La commande peut réaliser les opérations suivantes : +La commande **SELECTION TO ARRAY** crée un ou plusieurs tableau(x) et y copie les valeurs des champ(s) ou les numéros d'enregistrement(s) de la sélection courante.s'applique à la sélection courante de la table désignée par le premier paramètre (nom de table ou nom de champ). La commande peut réaliser les opérations suivantes : * Charger les valeurs d'un ou plusieurs champs, * Charger les numéros des enregistrements de la table, à l'aide de la syntaxe *\[table\];tableau* @@ -78,4 +76,13 @@ Le même exemple peut être écrit : [MULTI SORT ARRAY](multi-sort-array.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 260 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md index e6ac630af847b1..33627a20fae6ef 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md @@ -88,4 +88,13 @@ Vous utilisez la syntaxe avec *template* afin d'exporter des champs de différen #### Voir aussi -[JSON TO SELECTION](json-to-selection.md) \ No newline at end of file +[JSON TO SELECTION](json-to-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1234 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/self.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/self.md index 10d2f6338378c1..76207b80bf855c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/self.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/self.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Note de compatibilité Cette commande est conservée pour des raisons de compatibilité uniquement. A compter de la version 12 de 4D, il est conseillé d'utiliser la commande [OBJECT Get pointer](object-get-pointer.md). @@ -40,4 +37,13 @@ Référez-vous à l'exemple de la commande [RESOLVE POINTER](resolve-pointer.md) [OBJECT Get pointer](object-get-pointer.md) [RESOLVE POINTER](resolve-pointer.md) -[This](this.md) \ No newline at end of file +[This](this.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 308 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md index 0703c7fa43cd20..8197f3d0db8901 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md @@ -147,4 +147,13 @@ Syntaxe : [CLEAR SEMAPHORE](clear-semaphore.md) *Sémaphores et signaux* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 143 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md index 7d04e1dca9571b..dfb31191d977c5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md @@ -51,4 +51,13 @@ Vous souhaitez envoyer un message à tous les utilisateurs, puis à un utilisate #### Voir aussi -[DROP REMOTE USER](drop-remote-user.md) \ No newline at end of file +[DROP REMOTE USER](drop-remote-user.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1632 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md index 56c7d4fb9e73f0..a4d35b0f176a34 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md @@ -80,4 +80,13 @@ Cet exemple illustre l’envoi et la récupération de caractères étendus via [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 103 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md index 3b040578e422ed..fe73eb0e2c2825 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md @@ -33,4 +33,13 @@ Reportez-vous à l'exemple de la commande [RECEIVE RECORD](receive-record.md). [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 78 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md index ea1a75a663e447..3aa230f62634cb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md @@ -31,4 +31,13 @@ Reportez-vous à l'exemple de la commande [RECEIVE RECORD](receive-record.md). [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 80 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md index 29c276cbb7c34e..bb543c34a8af3a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md @@ -55,4 +55,13 @@ L'exemple suivant fait partie d'une méthode formulaire. Ces lignes de code test *A propos des numéros d'enregistrements* [Record number](record-number.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 244 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md index 28f672bbd78947..5c51fc2c142e64 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET ABOUT** remplace la ligne de menu **A propos de 4D...** du menu **Aide** (sous Windows) ou du menu **application** (Mac OS X) par *libelléLigne*. @@ -45,4 +42,13 @@ L'exemple suivant réinitialise la commande de menu d'A propos de 4D : #### Voir aussi -[SET HELP MENU](set-help-menu.md) \ No newline at end of file +[SET HELP MENU](set-help-menu.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 316 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md index 685fd0168a5758..ba93b6d2fda3d0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET APPLICATION COLOR SCHEME** définit le schéma de couleurs à utiliser au niveau de l'application pour la session courante. Ce schéma sera appliqué aux formulaires qui ne déclarent pas déjà un schéma spécifique (un schéma de couleurs défini au niveau du formulaire est prioritaire sur le niveau de l'application). @@ -38,4 +35,13 @@ displayed_sidebar: docs #### Voir aussi [FORM Get color scheme](form-get-color-scheme.md) -[Get application color scheme](get-application-color-scheme.md) \ No newline at end of file +[Get application color scheme](get-application-color-scheme.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1762 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md index b837e85cc41db2..dc7cd18130a408 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md @@ -37,4 +37,13 @@ Désactivation globale des assertions : [ASSERT](assert.md) [Asserted](asserted.md) -[Get assert enabled](get-assert-enabled.md) \ No newline at end of file +[Get assert enabled](get-assert-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1131 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md index d6fdda773c789a..2e499edb070a68 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md @@ -43,4 +43,13 @@ L'exemple suivant rend tous les liens N vers 1 automatiques et rétablit en manu *Présentation des liens* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 310 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md index 4422a258552d8f..359c84ff74ea3f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md @@ -49,4 +49,13 @@ L'exemple suivant crée un BLOB de 16 Ko et remplit chaque octet avec la valeur #### Voir aussi -[BLOB size](blob-size.md) \ No newline at end of file +[BLOB size](blob-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 606 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md index 551bacc65f2eb9..a3aa91f2ae16c4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md @@ -47,4 +47,13 @@ Dans la , vous souhaitez fixer une priorité très haute pour les "blobs" de la #### Voir aussi [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) -[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) \ No newline at end of file +[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1425 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md index 6b639098d9bb92..ea49c7587bb242 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md @@ -38,4 +38,13 @@ Vous voulez ajouter 100 Mo à la taille du cache de votre base. Vous pouvez écr #### Voir aussi -[Get cache size](get-cache-size.md) \ No newline at end of file +[Get cache size](get-cache-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1399 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md index 608eb4f88e73bc..579037d955a572 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md @@ -170,4 +170,14 @@ Reportez-vous aux exemples des commandes [RECEIVE BUFFER](receive-buffer.md), [S [SEND PACKET](send-packet.md) [SEND RECORD](send-record.md) [SEND VARIABLE](send-variable.md) -[SET TIMEOUT](set-timeout.md) \ No newline at end of file +[SET TIMEOUT](set-timeout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 77 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md index 8150dc46412328..92fb1553399b46 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET CURRENT PRINTER** permet de désigner l’imprimante à utiliser pour les impressions avec l’application 4D courante. @@ -66,4 +63,14 @@ Création d'un document PDF sous Windows : #### Voir aussi [Get current printer](get-current-printer.md) -[PRINTERS LIST](printers-list.md) \ No newline at end of file +[PRINTERS LIST](printers-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 787 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md index f93dafcff80759..98a9c9ab4d6abb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET CURSOR** remplace le pointeur (graphique) de la souris par le pointeur système dont vous avez passé le numéro d'ID dans le paramètre *curseur*. @@ -62,3 +59,13 @@ Vous souhaitez que le curseur se transforme en ![](../assets/en/commands/pict247     SET CURSOR(9019)  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 469 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md index 7835b6fb9a76b3..8fd4f915d877da 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET DATABASE LOCALIZATION** permet de modifier la langue courante de la base pour la session courante. @@ -71,4 +68,14 @@ L’interface de votre application utilise la chaîne statique ":xliff:shopping" #### Voir aussi -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1104 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md index 4a0496baf219bd..22d35ac3028a82 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET DATABASE PARAMETER** permet de modifier divers paramètres internes de la base de données 4D. @@ -149,4 +146,13 @@ Vous souhaitez exporter des données en JSON contenant une date 4D convertie. A [Get database parameter](get-database-parameter.md) [LOG EVENT](log-event.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 642 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md index 7480b782db4361..630395cddb0d2f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md @@ -61,3 +61,13 @@ Notez que cette commande n'affecte que l'interprétation des dates lorsque les a * Si vous saisissez la date 25/01/2007, 4D considère que vous voulez indiquer le 25 janvier 2007 Cette commande affecte uniquement la saisie des données. Elle n'influe pas sur le stockage des données, les calculs, etc. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 392 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md index c63183188365cb..831a79009ab03e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -Cette commande ne fonctionne qu'avec un document déjà ouvert, dont vous avez passé le numéro de référence dans le paramètre *docRef*. - -**SET DOCUMENT POSITION** définit la position que vous passez dans *offset* comme étant celle à laquelle la prochaine lecture ([RECEIVE PACKET](receive-packet.md)) ou écriture ([SEND PACKET](send-packet.md)) aura lieu. +Cette commande ne fonctionne qu'avec un document déjà ouvert, dont vous avez passé le numéro de référence dans le paramètre *docRef*.définit la position que vous passez dans *offset* comme étant celle à laquelle la prochaine lecture ([RECEIVE PACKET](receive-packet.md)) ou écriture ([SEND PACKET](send-packet.md)) aura lieu. Si vous omettez le paramètre optionnel *ancre*, la position est définie par rapport au début du document. Sinon, vous pouvez passer dans le paramètre *ancre* une des valeurs listées ci-dessus. @@ -29,4 +27,13 @@ En fonction de l'*ancre* définie, vous pouvez passer des valeurs positives ou n [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 482 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md index 6211ff5209679e..4478dfee465df2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md @@ -34,4 +34,14 @@ L'heure et la date de création et de dernière modification sont gérées par l #### Voir aussi -[GET DOCUMENT PROPERTIES](get-document-properties.md) \ No newline at end of file +[GET DOCUMENT PROPERTIES](get-document-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 478 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md index 9e89ac04c4503f..547e76bddb50a9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md @@ -26,4 +26,13 @@ Sous Mac OS, c'est la taille de la data fork du document qui est modifiée. [Get document position](get-document-position.md) [Get document size](get-document-size.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 480 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md index 83ae457425bd0e..e5ea368c402b8a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET DRAG ICON** vous permet d’associer l’image *icône* au curseur lors des glisser-déposer gérés par programmation. @@ -59,4 +56,13 @@ A noter que vous pouvez modifier la position du curseur par rapport à l’image #### Voir aussi -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1272 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md index a5a24b5f4b2e44..e50b55537aa1ac 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md @@ -41,4 +41,13 @@ Reportez-vous aux exemples de la commande [LAUNCH EXTERNAL PROCESS](launch-exter #### Voir aussi -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 812 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md index 63f3493e1e78a4..195565bd4de4b6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md @@ -57,4 +57,13 @@ Vous souhaitez enregistrer dans le champ image un fichier existant, stocké à l #### Voir aussi [Get external data path](get-external-data-path.md) -[RELOAD EXTERNAL DATA](reload-external-data.md) \ No newline at end of file +[RELOAD EXTERNAL DATA](reload-external-data.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1134 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md index 4a84a3a9e9e302..57d09a8ad936c2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md @@ -53,4 +53,14 @@ Le code suivant vous permet uniquement de configurer ls liens utiles comme autom [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 919 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md index ad8b813832ab13..fee1a5c6ef26bf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **SET FIELD TITLES** vous permet de masquer, renommer et réordonner les champs d'une table de votre base lorsqu'ils apparaissent dans les éditeurs standard de 4D en mode Application (lorsque le mode de lancement est le mode **Application**, ou après avoir sélectionné "**Tester l'application**" dans le menu **Exécution**). @@ -59,4 +56,13 @@ Reportez-vous à l'exemple de la commande [SET TABLE TITLES](set-table-titles.md [GET FIELD TITLES](get-field-titles.md) [Last field number](last-field-number.md) [Parse formula](parse-formula.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 602 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md index 3975eb287d08ee..32af5bf8a13557 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md @@ -27,4 +27,13 @@ La valeur NULL est exploitée par le moteur SQL de 4D. Pour plus d’information #### Voir aussi [Is field value Null](is-field-value-null.md) -[Null](null.md) \ No newline at end of file +[Null](null.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 965 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md index 0d705efa80ae3a..44a73dda26b856 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET FILE TO PASTEBOARD** ajoute dans le conteneur de données le chemin d’accès complet du fichier passé dans le paramètre *fichier*. Cette commande permet de mettre en place des interfaces autorisant le glisser-déposer d’objets 4D vers des fichiers sur le bureau par exemple. @@ -29,4 +26,13 @@ La commande admet l’étoile *\** en paramètre optionnel. Par défaut, lorsque #### Voir aussi -[Get file from pasteboard](get-file-from-pasteboard.md) \ No newline at end of file +[Get file from pasteboard](get-file-from-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 975 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md index 149dd229f3567f..eb08f6166f2786 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md @@ -42,4 +42,14 @@ Vous souhaitez ajouter l'utilisateur courant aux groupes "admin" et "plugins" da [Get group access](get-group-access.md) [Get plugin access](get-plugin-access.md) [SET PLUGIN ACCESS](set-plugin-access.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1737 | +| Thread safe | ✓ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md index 49bcf2dc0e3251..9aabd5809fcf2c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Set group properties** vous permet de modifier et de mettre à jour les propriétés d'un groupe existant dont vous passez le numéro de référence unique dans *réfGroupe*, ou d'ajouter un nouveau groupe. @@ -58,4 +55,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **Set group [GET GROUP LIST](get-group-list.md) [GET GROUP PROPERTIES](get-group-properties.md) -[GET USER LIST](get-user-list.md) \ No newline at end of file +[GET USER LIST](get-user-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 614 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md index 659b232e399391..5d6cc080efb8bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET HELP MENU** vous permet de remplacer le menu **Aide** par défaut de 4D par la collection d'éléments de menu MenuCol dans le mode d'application. @@ -33,7 +30,7 @@ Dans *menuCol*, passez une collection d'objets de menu définissant tous les él | ------------- | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | title | Texte | Nom de l'élément de menu | | method | Texte \| [4D.Function](https://developer.4d.com/docs/API/FunctionClass#about-4dfunction-objects) | Nom de la méthode du projet ou de l'objet de formule 4D à exécuter lorsque l'élément de menu est sélectionné. Lorsque cette propriété est utilisée, la propriété "action" ne doit pas être transmise (sinon la "method" est ignorée). | -| worker | Texte \| Nombre | Nom du worker ou Numéro du processus qui doit gérer l'exécution du code de la "method". Plusieurs configurations sont possibles, en fonction de la valeur de la propriété "worker" :
s'il s'agit d'un nom du worker (Texte), 4D utilise ou crée ce worker pour exécuter la "method" (équivalent à [CALL WORKER](call-worker.md)) si c'est un numéro de processus, 4D utilise ce processus s'il existe, sinon rien ne se passe (équivalent à [CALL WORKER](call-worker.md)) s'il est indéfini et que l'application affiche un dialogue courant (dialogue le plus en avant), 4D utilise le processus de ce dialogue (équivalent à [CALL FORM](../commands/call-form.md)) s'il est indéfini et que l'application n'affiche pas de dialogue en cours, 4D appelle et utilise le worker 1 (4D distant/mono) ou le worker 4D\_server\_interface (4D Server). | +| worker | Texte \| Nombre | Nom du worker ou Numéro du processus qui doit gérer l'exécution du code de la "method". Plusieurs configurations sont possibles, en fonction de la valeur de la propriété "worker" :
s'il s'agit d'un nom du worker (Texte), 4D utilise ou crée ce worker pour exécuter la "method" (équivalent à [CALL WORKER](call-worker.md)) si c'est un numéro de processus, 4D utilise ce processus s'il existe, sinon rien ne se passe (équivalent à [CALL WORKER](call-worker.md)) s'il est indéfini et que l'application affiche un dialogue courant (dialogue le plus en avant), 4D utilise le processus de ce dialogue (équivalent à [CALL FORM](call-form.md)) s'il est indéfini et que l'application n'affiche pas de dialogue en cours, 4D appelle et utilise le worker 1 (4D distant/mono) ou le worker 4D\_server\_interface (4D Server). | | action | Texte | *Action standard* à exécuter lorsque l'élément de menu est sélectionné. Lorsque cette propriété est utilisée, la propriété "method" est ignorée si elle est transmise. | | shortcutKey | Texte | Touche de raccourci de l'élément (à appeler avec la touche Ctrl/Commande) | | shortcutShift | Booléen | Vrai pour ajouter la touche **Shift** au raccourci de l'élément | @@ -61,4 +58,13 @@ Vous souhaitez personnaliser le menu **Aide** de votre application : #### Voir aussi -[SET ABOUT](set-about.md) \ No newline at end of file +[SET ABOUT](set-about.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1801 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md index 077273870629fe..cc716ebdac45a2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md @@ -47,4 +47,13 @@ Dans la , vous souhaitez définir une priorité très haute pour les index du ch #### Voir aussi [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) -[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) \ No newline at end of file +[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1401 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md index efed56f0e80426..eb322bd7b539c8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md @@ -87,4 +87,13 @@ Création d'un index de mots-clés : [DELETE INDEX](delete-index.md) [GET FIELD PROPERTIES](get-field-properties.md) [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 344 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md index 399e5eacdf25c3..ae1782215208d5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST ITEM FONT** modifie la police de caractères de l’élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d’objet dans *liste*. @@ -43,4 +40,13 @@ Appliquer la police Times à l’élément courant de la liste : [Get list item font](get-list-item-font.md) [OBJECT SET FONT](object-set-font.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 953 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md index e033ade53b6052..65f054993d79aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST ITEM ICON** permet de modifier l’icône associée à l’élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d’objet dans *liste*. @@ -47,4 +44,13 @@ Affectation d'une même image à deux éléments différents. Ce code est optimi [SET LIST ITEM](set-list-item.md) [SET LIST ITEM FONT](set-list-item-font.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 950 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md index 2eb7e457eadfde..2b5d7919acae7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST ITEM PARAMETER** permet de modifier le paramètre *sélecteur* pour l’élément *réfElément* de la liste hiérarchique dont vous avez passé la référence ou le nom d’objet dans le paramètre *liste*. @@ -62,4 +59,13 @@ Vous souhaitez définir comme énumération d'un pop up menu hiérarchique une l [Action info](action-info.md) [GET LIST ITEM PARAMETER](get-list-item-parameter.md) [GET LIST ITEM PARAMETER ARRAYS](get-list-item-parameter-arrays.md) -[INSERT IN LIST](insert-in-list.md) \ No newline at end of file +[INSERT IN LIST](insert-in-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 986 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md index 9ec0a0e4adea0a..238f5a28492a66 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST ITEM PROPERTIES** modifie l'élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -79,4 +76,13 @@ L’exemple suivant passe le texte de l’élément courant de *liste* en gras e [GET LIST ITEM PROPERTIES](get-list-item-properties.md) *Listes hiérarchiques* [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 386 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md index cda0ef2153c394..2b668892f29ca3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST ITEM** modifie l'élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -77,4 +74,13 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md). [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [SET LIST ITEM FONT](set-list-item-font.md) [SET LIST ITEM ICON](set-list-item-icon.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 385 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md index 5ed46b3cf429cc..0dfc6da872deda 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST PROPERTIES** définit la hauteur de ligne et le fonctionnement de la liste hiérarchique dont la référence est passée dans le paramètre *liste*. @@ -61,4 +58,13 @@ Vous souhaitez interdire le déploiement/contraction sur double-clic. Vous pouve [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [GET LIST PROPERTIES](get-list-properties.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 387 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md index 8b725b10822caa..603e486cca71c8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MACRO PARAMETER** insère le texte *paramTexte* dans la méthode depuis laquelle elle a été appelée. @@ -58,4 +55,13 @@ Cette macro construit un nouveau texte qui sera retourné à la méthode appelan #### Voir aussi -[GET MACRO PARAMETER](get-macro-parameter.md) \ No newline at end of file +[GET MACRO PARAMETER](get-macro-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 998 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md index 5476f18deec694..bff09406a766d5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU BAR** remplace la barre de menus courante par la barre de menus *barre*, pour le process en cours uniquement. Vous pouvez passer dans le paramètre *barre* soit le numéro soit le nom de la nouvelle barre. Vous pouvez également passer une référence unique de menu (type [RefMenu](# "Référence unique de menu (16 caractères alphanumériques)"), chaîne de 16 caractères). Lorsque vous travaillez avec des références, les menus peuvent être utilisés comme barres de menus et inversement (cf. section *Gestion des menus*). @@ -117,4 +114,13 @@ Dans cet exemple complet, nous allons créer par programmation une barre comport #### Voir aussi -*Gestion des menus* \ No newline at end of file +*Gestion des menus* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 67 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md index 6ee37c1d717866..9858df28ab4018 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM ICON** permet de modifier l’icône associée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -46,4 +43,13 @@ Utilisation d'une image se trouvant dans le dossier Resources de la base : #### Voir aussi -[GET MENU ITEM ICON](get-menu-item-icon.md) \ No newline at end of file +[GET MENU ITEM ICON](get-menu-item-icon.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 984 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md index de8a52b1a36993..a0b6a7db9e1714 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM MARK** remplace la marque (ou "coche") de la ligne de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu* par le premier caractère de la chaîne que vous avez passée dans *marque* (sous Mac OS) ou par la coche standard (sous Windows). Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -39,4 +36,14 @@ Reportez-vous à l'exemple de la commande [Get menu item mark](get-menu-item-mar #### Voir aussi -[Get menu item mark](get-menu-item-mark.md) \ No newline at end of file +[Get menu item mark](get-menu-item-mark.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 208 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md index 72340d6f38dee8..add9cb5200f185 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM METHOD** permet de modifier la méthode projet 4D associée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -36,4 +33,13 @@ Reportez-vous aux exemple de la commande [SET MENU BAR](set-menu-bar.md). #### Voir aussi -[Get menu item method](get-menu-item-method.md) \ No newline at end of file +[Get menu item method](get-menu-item-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 982 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md index d870dbcd52767a..b8ffc26b1d155e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM PARAMETER** vous permet d’associer une chaîne de caractères personnalisée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -43,4 +40,13 @@ Ce code permet de proposer un menu comportant le libellé des fenêtres ouvertes [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[Get selected menu item parameter](get-selected-menu-item-parameter.md) \ No newline at end of file +[Get selected menu item parameter](get-selected-menu-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1004 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md index 3f9556ddeac4cb..ae58f06e338ba4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM PROPERTY** permet de fixer la *valeur* de la *propriété* pour la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -52,4 +49,13 @@ Pour plus d’informations sur les propriétés standard des lignes de menus, re #### Voir aussi [Dynamic pop up menu](dynamic-pop-up-menu.md) -[GET MENU ITEM PROPERTY](get-menu-item-property.md) \ No newline at end of file +[GET MENU ITEM PROPERTY](get-menu-item-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 973 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md index b5c5781fa64cf3..6c7d7bb547b1c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM SHORTCUT** remplace la touche du raccourci clavier associé à la ligne de menu désignée par *menu* et *ligneMenu*, par le caractère dont vous avez passé le code de caractère ou le texte dans *touche*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. La touche définie sera combinée à la touche **Ctrl** (Windows) ou **Commande** (Macintosh) pour définir le nouveau raccourci clavier. @@ -81,4 +78,14 @@ Définition du raccourci F4 pour l'élément de menu "Fermer" : #### Voir aussi [Get menu item key](get-menu-item-key.md) -[Get menu item modifiers](get-menu-item-modifiers.md) \ No newline at end of file +[Get menu item modifiers](get-menu-item-modifiers.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 423 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md index e9963475750584..01cebc99cb47f7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM STYLE** remplace le style de police de la ligne de menu, dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*, par le style de police que vous avez passé dans *styleLigne*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -38,4 +35,14 @@ Vous pouvez définir le style de l'élément dans le paramètre *styleLigne*. Vo #### Voir aussi -[Get menu item style](get-menu-item-style.md) \ No newline at end of file +[Get menu item style](get-menu-item-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 425 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md index 257d7b2e875a13..6375f3e400b700 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM** remplace le libellé de la ligne de menu, dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*, par le libellé que vous avez passé dans *texteLigne*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -34,4 +31,14 @@ Si vous omettez le paramètre *process*, **SET MENU ITEM** s'applique à la barr [APPEND MENU ITEM](append-menu-item.md) [Get menu item](get-menu-item.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 348 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md index be748fceeb803d..f5e7edc083dfae 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md @@ -25,4 +25,13 @@ Le nom par défaut est utilisé comme nom de fichier en cas d’exportation de l #### Voir aussi [Get picture file name](get-picture-file-name.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1172 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md index d3a11249721506..e4dc71e93367d4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md @@ -79,4 +79,14 @@ Lorsque toutes les métadonnées sont manipulées via une référence d’élém [GET PICTURE KEYWORDS](get-picture-keywords.md) [GET PICTURE METADATA](get-picture-metadata.md) *Noms des métadonnées images* -*Valeurs des métadonnées images* \ No newline at end of file +*Valeurs des métadonnées images* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1121 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md index 3d7aac847634d2..7ff67c7bd5a36d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PICTURE TO LIBRARY** crée une nouvelle image ou remplace une image existante dans la bibliothèque d’images. @@ -94,4 +91,15 @@ S'il n'y a pas assez de mémoire pour retourner l’image, l'erreur –108 est g [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) \ No newline at end of file +[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 566 | +| Thread safe | ✗ | +| Modifie les variables | error | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md index ad85062f8132d3..72db2643c9fac7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **SET PICTURE TO PASTEBOARD** place dans le conteneur de données une copie de l'image que vous avez passée dans *image*. Les données éventuellement présentes dans le conteneur sont préalablement effacées. @@ -48,4 +45,14 @@ Si une copie de l'image est correctement collée dans le conteneur, la variable #### Voir aussi [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) \ No newline at end of file +[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 521 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md index f45b2f4b7b2443..018f640ea98393 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PLUGIN ACCESS** permet de spécifier par programmation le groupe d’utilisateurs autorisé à utiliser chaque plug-in “sérialisé” installé dans la base. Cette définition permet de gérer la répartition des licences des plug-ins. @@ -45,4 +42,13 @@ Passez dans le paramètre *groupe* le nom du groupe dont les utilisateurs seront [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 845 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md index 9b74d69b0619f6..05fb94dc7f017b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PRINT MARKER** permet de définir la position d’un taquet au moment de l’impression. Combinée aux commandes [Get print marker](get-print-marker.md), [OBJECT MOVE](object-move.md) ou [Print form](../commands/print-form.md), cette commande permet d’ajuster la taille des zones d’impression. @@ -182,4 +179,13 @@ La méthode du formulaire Print\_List3 est la suivante : [PAGE BREAK](page-break.md) [Print form](../commands/print-form.md) [PRINT RECORD](print-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 709 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md index fc3769b203120a..19d4baed08f2a4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PRINT OPTION** permet de modifier par programmation la valeur d’une option d’impression. Chaque option définie à l’aide de cette commande est appliquée aux [paramètres courants de l'impression 4D](https://developer.4d.com/docs/fr/settings/compatibility/) tant qu’aucune autre commande modifiant les paramètres d’impression ([PRINT SETTINGS](print-settings.md), [PRINT SELECTION](print-selection.md) sans le paramètre *\>*, etc.) n’est appelée. Si une tâche d'impression a été ouverte (ex : avec [OPEN PRINTING JOB](open-printing-job.md)), l'option est définie pour la tâche et n'est pas modifiable tant que la tâche n'est pas terminée (à l'exception de Orientation option, voir ci-dessous) . @@ -80,4 +77,14 @@ Si la valeur passée pour une *option* est invalide ou si elle n'est pas disponi *Options d'impression* [Print form](../commands/print-form.md) [PRINT OPTION VALUES](print-option-values.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 733 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md index 9bb7e3e74b7fe0..3acfb6e9a1624b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PRINT PREVIEW** vous permet de sélectionner ou de désélectionner l'option d'**aperçu** dans la boîte de dialogue standard d'impression. Si vous passez Vrai dans *aperçu*, l'option "à l'écran" sera cochée. Si vous passez Faux, elle ne sera pas cochée. Ce paramétrage est local au process et n'affecte pas les autres process ou utilisateurs. @@ -38,4 +35,13 @@ L'exemple suivant sélectionne l'option **A l'écran** pour afficher le résulta #### Voir aussi [Get print preview](get-print-preview.md) -[Is in print preview](is-in-print-preview.md) \ No newline at end of file +[Is in print preview](is-in-print-preview.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 364 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md index d42c12cb17441d..efd90262ec45da 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PRINTABLE MARGIN** permet de fixer les valeurs des différentes marges d’impression lors de l’utilisation des commandes [Print form](../commands/print-form.md), [PRINT SELECTION](print-selection.md) et [PRINT RECORD](print-record.md). @@ -59,4 +56,13 @@ L’exemple suivant permet d’obtenir la taille du papier : [GET PRINTABLE MARGIN](get-printable-margin.md) [Get printed height](get-printed-height.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 710 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md index bc740bae765f65..b303c73ac0a87b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PROCESS VARIABLE** écrit la ou les valeur(s) de *exprSource* (*exprSource2*, etc.) dans la ou les variable(s) process *varDestination* (*varDestination2*, etc.) du process de destination dont le numéro est passé dans *process*. @@ -99,4 +96,13 @@ L'exemple suivant écrit l'instance des variables *v1*, *v2*, *v3* dans le proce [GET PROCESS VARIABLE](get-process-variable.md) *Introduction aux process* [POST OUTSIDE CALL](post-outside-call.md) -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 370 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md index e9954ee50802fa..845f8625fe5c84 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md @@ -68,4 +68,14 @@ Si la commande est appelée hors du contexte d’une transaction, une erreur est #### Voir aussi -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 661 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md index d7f4c103457746..0d732df877d3de 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md @@ -250,4 +250,13 @@ Lorsque cette méthode est implémentée dans votre application, vous pouvez éc [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 396 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md index 68a0be06815719..d7b374b3f66d3d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md @@ -62,4 +62,13 @@ Référez-vous au deuxième exemple de la commande [SET QUERY DESTINATION](set-q [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 395 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md index d61ca07600483e..853a26734bf040 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET REAL COMPARISON LEVEL** définit la valeur *epsilon* utilisée par 4D lors d'une comparaison d'égalité des valeurs et expressions de type Réel. @@ -37,3 +34,13 @@ Modifier l'epsilon affecte seulement la comparaison d'égalité des réels. Cela **ATTENTION :** Cette commande doit être utilisée dans des cas spécifiques, comme par exemple un tri sur un champ dont les valeurs sont inférieures à 10^-6\. En général, vous n'avez pas besoin de modifier la valeur par défaut d'epsilon. **Note :** La commande **SET REAL COMPARISON LEVEL** n'a pas d'effet sur les recherches et les tris effectués avec les champs de type réel. Elle s'applique uniquement au langage de 4D. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 623 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md index 07e2ba1396d121..15a8dd4fd0a362 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET RECENT FONTS** permet de modifier la liste des polices récentes affichées dans le menu contextuel des "polices récentes". @@ -43,4 +40,13 @@ Le menu contient alors : #### Voir aussi -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1305 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md index edd88add5f1ae7..f62d9dcda91ee5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md @@ -48,4 +48,13 @@ Dans la , vous souhaitez fixer une priorité très haute pour les données scala [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) -[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) \ No newline at end of file +[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1400 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md index 6554b8132c79b5..da0b0bab8546ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **SET TABLE TITLES** vous permet de masquer, renommer et réordonner les tables de votre base qui apparaissent dans les éditeurs standard de 4D en mode Application (lorsque le mode de lancement est le mode **Application**, ou après avoir sélectionné "**Tester l'application**" dans le menu **Exécution**) . @@ -181,4 +178,13 @@ Vous voulez supprimer tous les noms de tables et de champs personnalisés défin [GET TABLE TITLES](get-table-titles.md) [Parse formula](parse-formula.md) [SET FIELD TITLES](set-field-titles.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 601 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md index 7faa492df9d92f..e95572144f4644 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **SET TEXT TO PASTEBOARD** place une copie du texte que vous avez passé dans *texte* dans le conteneur de données. Les données éventuellement présentes dans le conteneur sont auparavant effacées. @@ -39,4 +36,14 @@ Si la copie du texte est correctement placée dans le conteneur de données, la #### Voir aussi [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 523 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md index 95235d2c75d913..e18eddd550bf9d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md @@ -48,4 +48,14 @@ L'exemple suivant fixe le port série devant recevoir des données et le timeout [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) [RECEIVE RECORD](receive-record.md) -[RECEIVE VARIABLE](receive-variable.md) \ No newline at end of file +[RECEIVE VARIABLE](receive-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 268 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md index db08401de9262a..f7d471746331ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET TIMER** permet d’activer l’événement formulaire On Timer et de fixer, pour le process et le formulaire courants, le nombre de ticks (1 tick = 1/60ème de seconde) entre chaque événement formulaire On Timer. @@ -47,4 +44,13 @@ Vous souhaitez que, lorsqu’un formulaire est affiché à l’écran, un bip so #### Voir aussi [Form event code](../commands/form-event-code.md) -[REDRAW](redraw.md) \ No newline at end of file +[REDRAW](redraw.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 645 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md index e39159af46e79b..861463d7b3936b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET UPDATE FOLDER** permet de définir le dossier contenant la mise à jour de l’application 4D fusionnée courante. Cette information est mémorisée durant la session 4D jusqu’à l’appel de la commande [RESTART 4D](restart-4d.md). Si l’application est quittée manuellement, cette information n'est pas conservée. @@ -57,4 +54,14 @@ Vous avez créé un dossier "MesMisesAJour" sur votre disque, dans lequel vous a #### Voir aussi [Get last update log path](get-last-update-log-path.md) -[RESTART 4D](restart-4d.md) \ No newline at end of file +[RESTART 4D](restart-4d.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1291 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md index c7107610380cd9..fe28ff2d406cf0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md @@ -39,4 +39,14 @@ Vos utilisateurs sont gérés via une table personnalisée et utilisent le même [CHANGE CURRENT USER](change-current-user.md) [Current user](current-user.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1666 | +| Thread safe | ✓ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md index a76092fe68403a..0cf348075e51aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Set user properties** vous permet de modifier et de mettre à jour les propriétés d'un compte actif d'utilisateur existant dont le numéro de référence est passé dans le paramètre *réfUtilisateur*, ou d'ajouter un nouvel utilisateur. @@ -62,4 +59,13 @@ Si vous n'avez pas les privilèges d'accès pour appeler **Set user properties** [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 612 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md index 56e0ad6520fc15..eecfc9e6b2bea3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET WINDOW RECT** modifie les coordonnées globales de la fenêtre dont vous avez passé le numéro de référence [RefFen](# "Expression de type Entier long identifiant de façon unique une fenêtre ouverte") dans le paramètre *fenêtre*. Si la fenêtre n'existe pas, la commande ne fait rien. @@ -60,4 +57,13 @@ La fenêtre apparaît ainsi : [CONVERT COORDINATES](convert-coordinates.md) [DRAG WINDOW](drag-window.md) [GET WINDOW RECT](get-window-rect.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 444 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md index 7148b9e6a3bf62..b2c5361e74d1aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET WINDOW TITLE** remplace le titre de la fenêtre dont le numéro de référence est passé dans *fenêtre* par le texte passé dans *titre* (longueur maximale 80 caractères). @@ -51,4 +48,13 @@ Vous effectuez une saisie dans un formulaire et vous cliquez sur un bouton qui d #### Voir aussi -[Get window title](get-window-title.md) \ No newline at end of file +[Get window title](get-window-title.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 213 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md index 10f9112d824a3a..6d8a899dd6ab49 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md @@ -50,4 +50,13 @@ La méthode objet du bouton *bUnBouton* effectue des actions différentes en fon [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 543 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md index 7d3a7b5546038d..b9e08cbdc34914 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SHOW MENU BAR** rend visible la barre de menus. @@ -29,4 +26,14 @@ Reportez-vous à l'exemple de la commande [HIDE MENU BAR](hide-menu-bar.md). [HIDE MENU BAR](hide-menu-bar.md) [HIDE TOOL BAR](hide-tool-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 431 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md index 542574a6672f3f..117b39d62302e1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md @@ -46,3 +46,14 @@ Ces exemples illustrent le fonctionnement de la commande. #### Variables et ensembles système La variable système OK prend la valeur 1 si la commande est correctement exécutée, sinon elle prend la valeur 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 922 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md index cd46262a2b43fe..640d6b7b9a2a47 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **SHOW PROCESS** fait apparaître l'ensemble des fenêtres appartenant à *process*. Cette commande ne passe pas les fenêtres de *process* au premier plan, utilisez pour cela la commande [BRING TO FRONT](bring-to-front.md). @@ -34,4 +31,13 @@ L'exemple suivant affiche le process "Clients", s'il était caché auparavant. L [BRING TO FRONT](bring-to-front.md) [HIDE PROCESS](hide-process.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 325 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md index f71a836ec1c3e8..ca74cb34f8c849 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SHOW TOOL BAR** permet de gérer l'affichage des barres d'outils personnalisées créées par la commande [Open form window](open-form-window.md) pour le process courant. @@ -27,4 +24,13 @@ Reportez-vous à l'exemple de la commande [HIDE TOOL BAR](hide-tool-bar.md). #### Voir aussi -[HIDE TOOL BAR](hide-tool-bar.md) \ No newline at end of file +[HIDE TOOL BAR](hide-tool-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 433 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md index cde1a2391f0a43..624964694dca6b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SHOW WINDOW** permet d'afficher la fenêtre dont vous avez passé le numéro de référence dans *fenêtre* ou, si ce paramètre est omis, la fenêtre de premier plan du process courant. @@ -28,4 +25,13 @@ Voir l'exemple de la commande [HIDE WINDOW](hide-window.md). #### Voir aussi -[HIDE WINDOW](hide-window.md) \ No newline at end of file +[HIDE WINDOW](hide-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 435 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sin.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sin.md index 7a1b1396c3a7f0..27770323ef89e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sin.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sin.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Cos](cos.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 17 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md index f913064cb84032..de866a3cb137c1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md @@ -45,4 +45,13 @@ L'exemple suivant retourne le nombre de colonnes d'une ligne d'un tableau à deu #### Voir aussi [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 274 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md index 5f092990c26779..8d0fb1da39b888 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md @@ -189,4 +189,13 @@ Cet exemple illustre l'effet des différents types de déclarations : [Is data file locked](is-data-file-locked.md) [SOAP Get info](soap-get-info.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 782 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md index eb5005c6633152..a62fe16685c0ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md @@ -32,4 +32,13 @@ Passez dans le paramètre *numInfo* le numéro du type d’information SOAP à c #### Voir aussi [SET DATABASE PARAMETER](set-database-parameter.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 784 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md index 0cd1f4e1683c18..7c6525a38e0504 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md @@ -35,4 +35,13 @@ Vous souhaitez rejeter les nouvelles requêtes reçues par votre serveur Web Ser #### Voir aussi [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[WEB Get server info](web-get-server-info.md) \ No newline at end of file +[WEB Get server info](web-get-server-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1636 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md index 1665a17c2cb87c..0c932dab9d72b9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md @@ -21,4 +21,13 @@ Cette commande peut être utilisée pour des raisons de sécurité dans la *Mét #### Voir aussi -[SOAP DECLARATION](soap-declaration.md) \ No newline at end of file +[SOAP DECLARATION](soap-declaration.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 783 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md index 002d868fec8f79..94b1802f6472b3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md @@ -42,4 +42,13 @@ Pour reprendre l’exemple du Web Service “Racine\_carree” fourni dans la de #### Voir aussi [SOAP DECLARATION](soap-declaration.md) -[SOAP Get info](soap-get-info.md) \ No newline at end of file +[SOAP Get info](soap-get-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 781 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md index 3f623c5fc7f2a8..5f84fae5c8aed0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md @@ -18,8 +18,6 @@ displayed_sidebar: docs La commande **SORT ARRAY** trie un ou plusieurs tableau(x) par ordre croissant ou décroissant. -**Notes :** - * Vous ne pouvez pas trier de tableaux de type [Pointeur](# "A reference to another variable (including arrays and array elements), table, or field") ou [Image](# "Can be any Windows or Macintosh picture"). Vous pouvez trier un élément d'un tableau à deux dimensions (c'est-à-dire *t2DTableau{$vlCetElément}*), mais vous ne pouvez pas trier le tableau 2D lui-même (c'est-à-dire *t2DTableau*). * Vous pouvez trier les tableaux de type Object. Les éléments Null sont regroupés et les éléments du tableau sont triés selon un ordre interne. @@ -81,4 +79,13 @@ Vous affichez les noms d'une table \[Personnes\] dans une fenêtre flottante. Ce [Find in sorted array](find-in-sorted-array.md) [MULTI SORT ARRAY](multi-sort-array.md) [ORDER BY](order-by.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 229 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md index 1b0f67aee9c182..28e40eb8870bdc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SORT LIST** effectue un tri sur la liste dont vous avez passé le numéro de référence dans le paramètre *liste*. @@ -57,4 +54,13 @@ Après l'exécution du code suivant : #### Voir aussi -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 391 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md index a13eea5c2073cc..cf87f17df4e6df 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL ADD TO USER DICTIONARY** permet d’ajouter un ou plusieurs mot(s) au dictionnaire utilisateur courant. @@ -38,4 +35,13 @@ Ajout de noms propres au dictionnaire utilisateur : #### Voir aussi -[SPELL CHECK TEXT](spell-check-text.md) \ No newline at end of file +[SPELL CHECK TEXT](spell-check-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1214 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md index 8d82a2d6b6adcb..e5e462c4fec627 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL CHECK TEXT** vérifie le contenu du paramètre *leTexte* à partir du caractère *posVérif* et retourne la position du premier mot inconnu rencontré (le cas échéant). @@ -55,4 +52,14 @@ On souhaite compter le nombre de fautes potentielles dans un texte : #### Voir aussi [SPELL ADD TO USER DICTIONARY](spell-add-to-user-dictionary.md) -[SPELL CHECKING](spell-checking.md) \ No newline at end of file +[SPELL CHECKING](spell-checking.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1215 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md index 381ed0010622d1..4d2fc17d46ed67 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL CHECKING** déclenche la vérification de l’orthographe du champ ou de la variable ayant le focus dans le formulaire affiché à l’écran. L’objet vérifié doit être de type Alpha ou Texte. @@ -35,4 +32,13 @@ La vérification débute par le premier mot du champ ou de la variable. Si un mo #### Voir aussi [SPELL CHECK TEXT](spell-check-text.md) -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 900 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md index f1fb3d0e7812b1..00cd19c4ce10b8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL Get current dictionary** retourne le numéro d’ID du dictionnaire en cours d’utilisation. @@ -35,4 +32,13 @@ On souhaite afficher la langue du dictionnaire courant : #### Voir aussi -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1205 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md index 97d9960f92a9f3..baebe9c2d1db32 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL GET DICTIONARY LIST** retourne dans les tableaux *langID*, *langFichiers* et *langNoms* les IDs, les noms de fichiers et les noms des langues correspondant aux fichiers de dictionnaires Hunspell installés sur la machine. @@ -53,4 +50,13 @@ Vous avez placé "fr-classique+reforme1990.aff" et "fr-classique+reforme1990.dic #### Voir aussi -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1204 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md index bb6fb0704af3bd..1e41b0d8894e15 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL SET CURRENT DICTIONARY** provoque le remplacement du dictionnaire courant par celui spécifié par le paramètre *dictionnaire*. Le dictionnaire courant est utilisé pour la correction orthographique intégrée de 4D (pour plus d’informations, reportez-vous au manuel *Mode Développement*) ainsi qu'à celle de 4D Write Pro. La modification du dictionnaire courant est immédiatement répercutée dans tous les process de la base pour la session, ainsi que dans les zones 4D Write Pro. @@ -52,4 +49,14 @@ Chargement du dictionnaire "fr-classique" présent dans le dossier Hunspell : [SPELL CHECKING](spell-checking.md) [SPELL Get current dictionary](spell-get-current-dictionary.md) -[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) \ No newline at end of file +[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 904 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md index 864a7c471c9e22..63ec0270fae2d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md @@ -56,4 +56,13 @@ Le paramètre *séparateur* peut être une chaîne de plusieurs caractères : #### Voir aussi -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1554 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md index eed04962f5b8d6..85a8098514374d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL CANCEL LOAD** met fin à la requête SELECT courante et initialise les paramètres du curseur. @@ -53,4 +50,14 @@ Si la commande a été correctement exécutée, la variable système OK retourne #### Voir aussi [SQL LOAD RECORD](sql-load-record.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 824 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md index 9c591bd111c4a2..fa7084db16ed4e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL End selection** indique si les limites de l’ensemble résultat ont été atteintes. @@ -40,3 +37,13 @@ Le code ci-dessous se connecte à une source de données externe (Oracle) à l ``` Cet exemple retournera dans la variable 4D *vName* les noms (ename) stockés dans la table nommée emp. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 821 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md index 79dea5b4747cb2..698027875a45f6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL EXECUTE SCRIPT** vous permet d’exécuter une suite d’instructions SQL placées dans le fichier de script désigné par *cheminScript*. Cette commande ne peut être exécutée que sur un poste local (4D local ou procédure stockée sur 4D Server). Elle fonctionne avec la base courante (base interne ou base externe). @@ -59,3 +56,14 @@ Si le script est correctement exécuté (aucune erreur rencontrée), la variable * Si *actionErreur* vaut SQL On error continue (valeur 3), la variable *OK* vaut toujours 1\. **Note :** Si vous utilisez cette commande pour exécuter des actions consommatrices de mémoire telles que l’importation massive de données, vous pouvez envisager de faire appel à la nouvelle commande SQL *ALTER DATABASE* afin de désactiver temporairement des options SQL. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1089 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md index 2609160bc71b5b..38ee3db4a20705 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL EXECUTE** permet d’exécuter une commande SQL et d’associer le résultat à des objets 4D (tableaux, variables ou champs) liés. @@ -160,4 +157,14 @@ Si la commande a été correctement exécutée, la variable système OK retourne #### Voir aussi -[SQL LOAD RECORD](sql-load-record.md) \ No newline at end of file +[SQL LOAD RECORD](sql-load-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 820 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md index 097ff85ab19c28..16b6786ef496be 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL EXPORT DATABASE** exporte au format SQL tous les enregistrements de toutes les tables de la base. En SQL, cette opération d’exportation globale est appelée "Dump". @@ -57,4 +54,14 @@ Si l’export s’est déroulé correctement, la variable *OK* prend la valeur 1 #### Voir aussi -[SQL EXPORT SELECTION](sql-export-selection.md) \ No newline at end of file +[SQL EXPORT SELECTION](sql-export-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1065 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md index 3f8d42c756fe16..e88461b21b4e0a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL EXPORT SELECTION** exporte au format SQL les enregistrements de la sélection courante de la table 4D désignée par le paramètre *laTable*. @@ -38,4 +35,14 @@ Si l’export s’est déroulé correctement, la variable *OK* prend la valeur 1 #### Voir aussi -[SQL EXPORT DATABASE](sql-export-database.md) \ No newline at end of file +[SQL EXPORT DATABASE](sql-export-database.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1064 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md index 55960a8b3bcde6..c44b6b5cfad8b8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL Get current data source** retourne le nom de la source de données courante de l’application. La source de données courante reçoit les requêtes SQL exécutées au sein de structures [Begin SQL](begin-sql.md)/[End SQL](end-sql.md). @@ -28,4 +25,13 @@ Cette commande vous permet de contrôler la source de données courante, génér [End SQL](end-sql.md) [SQL GET DATA SOURCE LIST](sql-get-data-source-list.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 990 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md index 7efeb154482d4b..1b23dbf1424527 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL GET DATA SOURCE LIST** retourne dans les tableaux *tabNomsSources* et *tabPilotes* les noms et les pilotes des sources de données de type *typeSource* définies dans le gestionnaire ODBC du système d’exploitation. @@ -55,4 +52,14 @@ Si la commande est correctement exécutée, la variable système OK prend la val [SQL Get current data source](sql-get-current-data-source.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 989 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md index e0060eaec76ae0..b451e5a507fb04 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL GET LAST ERROR** retourne des informations relatives à la dernière erreur rencontrée lors de l’exécution d’une commande ODBC. L’erreur peut provenir de l’application 4D, du réseau, de la source ODBC, etc. @@ -36,4 +33,13 @@ Les deux derniers paramètres ne sont remplis que si l’erreur provient de la s #### Voir aussi [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 825 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md index 83bc3c74954be2..dd24ebf15c7f28 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL GET OPTION** retourne la *valeur* courante de l’option passée dans le paramètre *option*. @@ -29,4 +26,14 @@ Si la commande a été correctement exécutée, la variable système OK retourne #### Voir aussi -[SQL SET OPTION](sql-set-option.md) \ No newline at end of file +[SQL SET OPTION](sql-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 819 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md index a0248cf6351905..84f601d9953d7c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL LOAD RECORD** récupère dans 4D un ou plusieurs enregistrement(s) provenant de la source de données ouverte dans la connexion courante. @@ -35,4 +32,14 @@ Si la commande a été correctement exécutée, la variable système OK retourne #### Voir aussi [SQL CANCEL LOAD](sql-cancel-load.md) -[SQL EXECUTE](sql-execute.md) \ No newline at end of file +[SQL EXECUTE](sql-execute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 822 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md index dbcc38b650819d..bf14680bc274c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL LOGIN** vous permet d’ouvrir une connexion avec une source de données SQL, définie dans le paramètre *source*. Elle désigne la cible des requêtes SQL exécutées ultérieurement dans le process courant : @@ -205,4 +202,14 @@ Si la connexion est correctement établie, la variable système OK prend la vale [Begin SQL](begin-sql.md) [End SQL](end-sql.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 817 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md index c5f7f4c84b69fb..efce3e5721034c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL LOGOUT** referme la connexion avec une source ODBC ouverte dans le process courant (le cas échéant). S’il n’y a pas de connexion ODBC ouverte, la commande ne fait rien. @@ -25,4 +22,14 @@ Si la connexion a été correctement refermée, la variable système OK prend la #### Voir aussi -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 872 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md index 1aa7725ab8eb64..a6030548f7d2a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL SET OPTION** permet de modifier la *valeur* de l’option passée dans le paramètre *option*. @@ -46,4 +43,14 @@ Si la commande a été correctement exécutée, la variable système OK retourne #### Voir aussi -[SQL GET OPTION](sql-get-option.md) \ No newline at end of file +[SQL GET OPTION](sql-get-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 818 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md index 45486b4d6cb08c..9e4b70ffc0adfa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL SET PARAMETER** permet d’utiliser la valeur d’une variable, d’un tableau ou d’un champ 4D dans les requêtes SQL. @@ -79,3 +76,14 @@ Même exemple que le précédent, mais en utilisant la commande **SQL SET PARAME #### Variables et ensembles système Si la commande a été correctement exécutée, la variable système OK retourne 1, sinon elle retourne 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 823 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md index f44b19ffcf7b03..180aecd05fcba4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md @@ -41,3 +41,13 @@ La méthode listée ci-dessous retourne l'hypoténuse du triangle rectangle dont ``` Par exemple, Hypoténuse (4;3) retourne 5. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 539 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md index a14df840fbafa8..02c289be96e7bd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST COMPUTE EXPRESSIONS** met à jour les expressions 4D dynamiques situées dans le champ ou la variable de texte multistyle ou de 4D Write Pro désigné(e) par le paramètre *objet*. @@ -69,4 +66,14 @@ Vous souhaitez mettre à jour les références incluses dans la sélection de te #### Voir aussi [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1285 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md index f800a14a857670..fc910392b5351d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST FREEZE EXPRESSIONS** "gèle" le contenu des expressions situées dans le champ ou la variable texte multistyle ou 4D Write Pro désigné(e) par le paramètre *objet*. Cette action convertit les expressions dynamiques en textes statiques ou (zones 4D Write Pro uniquement) en images et supprime de l’*objet* les références associées. @@ -67,4 +64,13 @@ Vous souhaitez insérer l’heure courante au début du texte et la figer avant #### Voir aussi [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1282 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md index bed4c90ed5d29f..d68f83a3e94c2e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST GET ATTRIBUTES** permet de récupérer la valeur courante d’un attribut de style dans une sélection de texte du ou des objet(s) de formulaire désigné(s) par *objet*. @@ -100,4 +97,14 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une #### Voir aussi -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1094 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md index 60be6d5d9a5b9c..72a630e4e16c5a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST Get content type** retourne le type de contenu présent dans le champ ou la variable de texte multistyle désigné(e) par le paramètre *objet*. @@ -103,3 +100,14 @@ Vous souhaitez afficher des commandes d’un menu contextuel en fonction du type        ...  End case ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1286 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md index 6bf07f1a506a49..c5224c98ed5bc6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST Get expression** retourne la première expression présente dans la sélection courante du champ ou de la variable de texte multistyle désigné(e) par le paramètre *objet*. @@ -93,4 +90,14 @@ Vous souhaitez exécuter une méthode 4D en réponse à un clic sur un lien util #### Voir aussi -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1287 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md index 1732c9078daca0..fe674091285a10 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST GET OPTIONS** permet d’obtenir la valeur courante d’une ou plusieurs options de fonctionnement du champ ou de la variable de texte multistyle désigné(e) par le paramètre *objet*. @@ -36,4 +33,13 @@ Passez dans *option* le code de l’option à lire. La commande retourne dans *v #### Voir aussi -[ST SET OPTIONS](st-set-options.md) \ No newline at end of file +[ST SET OPTIONS](st-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1290 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md index 6f332a22db0de0..b61354b4e63f3b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST Get plain text** supprime toute balise de style du champ ou de la variable texte désigné(e) par les paramètres *\** et *objet*, et retourne le texte brut. @@ -109,4 +106,14 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une [ST Get text](st-get-text.md) [ST SET PLAIN TEXT](st-set-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1092 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md index 71b175f4ab0b3c..babada2f37e18b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST Get text** retourne le texte multistyle présent dans le champ ou la variable de texte désigné(e) par le paramètre *objet*. @@ -61,4 +58,14 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une [ST Get plain text](st-get-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1116 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md index 75e3eada2fca56..f1bffdf037fa16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST GET URL** retourne le libellé et l’adresse du premier URL détecté dans le champ ou la variable de texte multistyle désigné(e) par le paramètre *objet*. @@ -72,4 +69,13 @@ Sur un événement double-clic, vous vérifiez que vous êtes bien en présence #### Voir aussi -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1288 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md index 13b82efaede722..32beeb1cad7422 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST INSERT EXPRESSION** insère une référence à l’*expression* dans le champ ou la variable de texte multistyle désigné(e) par le paramètre *objet*. @@ -86,4 +83,14 @@ Vous souhaitez remplacer le texte sélectionné par la valeur d'un champ : [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) [ST Get expression](st-get-expression.md) -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1281 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md index dc8996619011d6..3d10a091b4e74e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST INSERT URL** insère un lien URL dans le champ ou la variable de texte stylé désigné(e) par le paramètre *objet*. @@ -65,4 +62,14 @@ Vous souhaitez insérer un lien vers le site Web de 4D à la place de la sélect #### Voir aussi [ST GET URL](st-get-url.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1280 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md index 7ae49e511026b4..4be641eb30568e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST SET ATTRIBUTES** permet de modifier un ou plusieurs attribut(s) de style dans le ou les objet(s) de formulaire désigné(s) par *objet*. @@ -102,4 +99,14 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une #### Voir aussi [FONT LIST](font-list.md) -[ST GET ATTRIBUTES](st-get-attributes.md) \ No newline at end of file +[ST GET ATTRIBUTES](st-get-attributes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1093 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md index 638489e17188ad..3131cbebf29ecf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST SET OPTIONS** vous permet de modifier une ou plusieurs options de fonctionnement du champ ou de la variable de texte stylé désigné(e) par le paramètre *objet*. @@ -63,4 +60,13 @@ Le code suivant vous permet de basculer le mode d’affichage de la zone : #### Voir aussi -[ST GET OPTIONS](st-get-options.md) \ No newline at end of file +[ST GET OPTIONS](st-get-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1289 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md index 1a62ca88834dc3..ef17c7846995be 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST SET PLAIN TEXT** insère le texte passé dans le paramètre *nouvTexte* dans le champ ou la variable de texte multistyle désigné(e) par le paramètre *objet*. Cette commande s’applique uniquement au texte brut du paramètre *objet*, sans modifier les éventuelles balises de style qu’il contient. @@ -94,4 +91,14 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une #### Voir aussi [ST Get plain text](st-get-plain-text.md) -[ST SET TEXT](st-set-text.md) \ No newline at end of file +[ST SET TEXT](st-set-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1136 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md index ae690288be5a59..24be5fb97acbde 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST SET TEXT** insère le texte passé dans le paramètre *nouvTexte* dans le champ ou la variable de texte multistyle désigné(e) par le paramètre *objet*. Cette commande s’applique uniquement au texte brut du paramètre *objet*, sans modifier les éventuelles balises de style qu’il contient. Elle permet de modifier par programmation du texte multistyle affiché à l’écran. @@ -91,4 +88,14 @@ Reportez-vous à l'exemple de la commande [ST SET PLAIN TEXT](st-set-plain-text. [ST Get plain text](st-get-plain-text.md) [ST Get text](st-get-text.md) -[ST SET PLAIN TEXT](st-set-plain-text.md) \ No newline at end of file +[ST SET PLAIN TEXT](st-set-plain-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1115 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md index 7103d494a532dd..6fe66b54124414 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md @@ -91,4 +91,13 @@ Vous souhaitez lancer/arrêter le suivi et revoir les activités de données 4D #### Voir aussi [Monitored activity](monitored-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1712 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md index 877a43442de9e7..1e19d78b2db39b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **START SQL SERVER** démarre le serveur SQL intégré de l’application 4D sur laquelle elle a été exécutée. Une fois lancé, le serveur SQL peut répondre aux requêtes SQL externes. @@ -27,4 +24,14 @@ Si le serveur SQL a été correctement lancé, la variable système OK prend la #### Voir aussi -[STOP SQL SERVER](stop-sql-server.md) \ No newline at end of file +[STOP SQL SERVER](stop-sql-server.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 962 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md index c6aa93bbe8d290..767d5f86a3889e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md @@ -24,4 +24,13 @@ A compter de la version 11 de 4D, vous pouvez imbriquer plusieurs transactions ( [In transaction](in-transaction.md) [Transaction level](transaction-level.md) *Utiliser des transactions* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 239 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md index eb8ae34a412813..26358c071eee06 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md @@ -59,4 +59,13 @@ Cet exemple vous permet d’obtenir l’écart type d’une série de valeurs pl [Average](average.md) [Sum](sum.md) [Sum squares](sum-squares.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 26 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md index 9ab83d792e740c..4db4adc0d04c97 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md @@ -25,4 +25,13 @@ Voir l'exemple de **[START MONITORING ACTIVITY](start-monitoring-activity.md)**. #### Voir aussi [Monitored activity](monitored-activity.md) -[START MONITORING ACTIVITY](start-monitoring-activity.md) \ No newline at end of file +[START MONITORING ACTIVITY](start-monitoring-activity.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1721 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md index 3db1c7b666b7ed..98ee04c9a2152b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **STOP SQL SERVER** stoppe le serveur SQL intégré de l’application 4D sur laquelle elle a été exécutée. Si le serveur SQL était lancé, toutes les connexions SQL sont interrompues et le serveur n’accepte plus aucune requête SQL externe. Si le serveur SQL n’était pas lancé, la commande ne fait rien. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### Voir aussi -[START SQL SERVER](start-sql-server.md) \ No newline at end of file +[START SQL SERVER](start-sql-server.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 963 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/storage.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/storage.md index 801aaaca5a2ac4..5c73aff1da7d04 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/storage.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/storage.md @@ -81,4 +81,13 @@ Cet exemple montre la manière standard de définir les valeurs de **Storage** : #### Voir aussi -*Objets partagés et collections partagées* \ No newline at end of file +*Objets partagés et collections partagées* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1525 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md index 9b3938d0c18458..a9b230f263587c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **STRING LIST TO ARRAY** remplit le tableau *chaînes* avec : @@ -48,4 +45,14 @@ La variable système OK prend la valeur 1 si la ressource est trouvée, sinon el [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[Get text resource](get-text-resource.md) \ No newline at end of file +[Get text resource](get-text-resource.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 511 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string.md index 291cd66cc1bcb1..531af947f1f147 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string.md @@ -159,4 +159,13 @@ Dans ce cas, le paramètre *format*, s'il est passé, est ignoré. [Date](date.md) [Num](num.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 10 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md index c58ab1bcda4119..536a508fc72df8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md @@ -16,10 +16,7 @@ displayed_sidebar: docs #### Description -La fonction **Structure file** retourne le chemin d'accès du fichier de structure de la base en cours d'utilisation. - -* Avec les bases binaires, la commande retourne le chemin d'accès du fichier **.4db.** -* Avec les bases projets, la commande retourne le chemin d'accès du fichier **.4dproject.** +La fonction **Structure file** retourne le chemin d'accès du fichier de structure de la base en cours d'utilisation.* Avec les bases projets, la commande retourne le chemin d'accès du fichier **.4dproject.** **Note :** Dans le cas particulier d'une base compilée et fusionnée avec 4D Volume Desktop, cette commande retourne le chemin d'accès du fichier de l'application (fichier exécutable) sous Windows et macOS. Sous macOS, ce fichier est situé à l’intérieur du progiciel, dans le dossier \[Contents:MacOS\]. Ce fonctionnement provient d’un ancien mécanisme, conservé pour des raisons de compatibilité. Si vous souhaitez obtenir le nom long du progiciel lui-même, il est préférable d’utiliser la commande [Application file](application-file.md). L’astuce consiste à tester l’application à l’aide de la commande [Application type](application-type.md) puis à exécuter **Structure file** ou [Application file](application-file.md) en fonction du contexte. @@ -66,4 +63,13 @@ L’exemple suivant permet de savoir si la méthode est appelée depuis un compo [Application file](application-file.md) [COMPONENT LIST](component-list.md) -[Data file](data-file.md) \ No newline at end of file +[Data file](data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 489 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/substring.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/substring.md index e0fbc8804b6a31..93691fa237614a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/substring.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/substring.md @@ -64,4 +64,13 @@ La méthode projet suivante ajoute au tableau de type texte ou alpha, dont le po #### Voir aussi -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 12 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md index 5c4f425b0e898a..45efc3aca74468 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Subtotal** retourne le sous-total de *valeurs* pour le niveau de rupture courant ou précédent. **Subtotal** ne fonctionne que dans le cadre d'une sélection triée imprimée par l'intermédiaire de la commande [PRINT SELECTION](print-selection.md) ou de la commande de menu **Imprimer** du mode Développement. Le paramètre *valeurs* doit être de type numérique, entier ou entier long. Vous devez assigner le résultat de la fonction **Subtotal** à une variable placée dans la zone de rupture du formulaire. @@ -58,4 +55,13 @@ La commande **Subtotal** permet d'afficher des calculs de sous-totaux dans des f [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 97 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md index 47a0c650db69d0..e644e761105291 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md @@ -57,4 +57,13 @@ Cet exemple vous permet d’obtenir la somme des carrés des valeurs placées da [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 28 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum.md index c070c9e67419d5..41d0a0061afc4c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum.md @@ -71,4 +71,14 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re [Min](min.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md index 5ccb2053bdaea5..9baed943f7b6a7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md @@ -22,4 +22,13 @@ Pour plus d'informations, veuillez vous référer à la section *Suspendre des t [Active transaction](active-transaction.md) [RESUME TRANSACTION](resume-transaction.md) -*Suspendre des transactions* \ No newline at end of file +*Suspendre des transactions* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1385 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md index b5c8d0b9a63792..7eefaea32ccb7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **SVG EXPORT TO PICTURE** permet de sauvegarder dans la variable ou le champ image désigné(e) par le paramètre *vVarImage* une image au format SVG contenue dans un arbre XML. - -**Note :** Pour plus d'informations sur le format SVG, reportez-vous à la section *Présentation des commandes XML génériques*. +La commande **SVG EXPORT TO PICTURE** permet de sauvegarder dans la variable ou le champ image désigné(e) par le paramètre *vVarImage* une image au format SVG contenue dans un arbre XML.Pour plus d'informations sur le format SVG, reportez-vous à la section *Présentation des commandes XML génériques*. Passez dans *refElément* la référence de l’élément XML racine contenant l’image SVG. @@ -53,4 +51,13 @@ L’exemple suivant permet d’afficher “Hello World” dans une image 4D : #### Voir aussi [DOM EXPORT TO FILE](dom-export-to-file.md) -[DOM EXPORT TO VAR](dom-export-to-var.md) \ No newline at end of file +[DOM EXPORT TO VAR](dom-export-to-var.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1017 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md index 3724055a946da7..3174ba944c8d58 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SVG Find element ID by coordinates** retourne l’ID (attribut "id" ou "xml:id") de l’élément XML situé à l’emplacement défini par les coordonnées (*x*,*y*) dans l’image SVG désignée par le paramètre *objetImage*. Cette commande permet notamment de créer des interfaces graphiques interactives utilisant des objets SVG. @@ -54,4 +51,14 @@ Si *objetImage* ne contient pas une image SVG valide, la commande retourne une c #### Voir aussi -[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) \ No newline at end of file +[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1054 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md index 8d0de91ef7a9c6..2f772d146b4989 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SVG Find element IDs by rect** remplit le tableau texte *tabIds* avec les IDs (attribut "id" ou "xml:id") des éléments XML dont le rectangle englobant est en intersection avec le rectangle de sélection à l’emplacement défini par les paramètres *x* et *y*. @@ -42,4 +39,13 @@ Tous les ID d’éléments dont le rectangle englobant est en intersection avec #### Voir aussi -[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) \ No newline at end of file +[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1109 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md index 0b987f6347b93d..b98bfff5f92666 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SVG GET ATTRIBUTE** permet de lire la valeur courante de l’attribut *nomAttribut* dans un objet ou une image SVG. @@ -42,4 +39,13 @@ Pour plus d’informations sur les attributs SVG, reportez-vous à la descriptio #### Voir aussi -[SVG SET ATTRIBUTE](svg-set-attribute.md) \ No newline at end of file +[SVG SET ATTRIBUTE](svg-set-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1056 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md index 352448992dc8ca..0ae7971880704a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md @@ -93,4 +93,14 @@ Modification du contenu d’un élément de type texte : #### Voir aussi -[SVG GET ATTRIBUTE](svg-get-attribute.md) \ No newline at end of file +[SVG GET ATTRIBUTE](svg-get-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1055 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md index 26706a471508e3..d04d4883d318b0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SVG SHOW ELEMENT** déplace le document SVG *objetImage* de façon à rendre visible l’élement dont l’attribut "id" est désigné par le paramètre *id*. @@ -30,3 +27,14 @@ La commande déplace le document SVG de manière à ce que la totalité de l’o Cette commande n’a d’effet qu’en mode d’affichage "top left" (avec barres de défilement). Si la commande est exécutée en-dehors du contexte d'un formulaire ou si un *objetImage* invalide est passé, la variable OK prend la valeur 0\. Si la commande a été exécutée correctement, elle prend la valeur 1\. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1108 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md index 629f709bbd4c06..44a49de4709457 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md @@ -47,4 +47,13 @@ Vous passez dans *type* un code représentant le type de dossier. 4D fournit les #### Voir aussi [Get 4D folder](get-4d-folder.md) -[Temporary folder](temporary-folder.md) \ No newline at end of file +[Temporary folder](temporary-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 487 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md index fa03e777be9d99..da6096c80526af 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md @@ -145,4 +145,13 @@ retourne un objet contenant les informations suivantes : [Application info](application-info.md) [Is macOS](is-macos.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1571 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md index f7ae0e7e6f8367..46426e2e9dcde1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md @@ -40,4 +40,13 @@ Cette méthode de maintenance permet de demander le compactage du fichier de don #### Voir aussi -[Compact data file](compact-data-file.md) \ No newline at end of file +[Compact data file](compact-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1127 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md index 6de4cd7d435644..172379d347c4ce 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md @@ -37,4 +37,13 @@ La méthode suivante est un exemple de méthode générique qui affiche les enre [Last table number](last-table-number.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 256 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table.md index dfae8bf6b40a41..32cb53249e5cc6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -**Table** a trois syntaxes différentes. - -* Si vous passez un numéro de table dans *numTable*, **Table** retourne un pointeur sur la table. +**Table** a trois syntaxes différentes.retourne un pointeur sur la table. * Si vous passez un pointeur de table dans *unPtr*, **Table** retourne le numéro de la table. * Si vous passez un pointeur de champ dans *unPtr*, **Table** retourne le numéro de table du champ. @@ -58,4 +56,13 @@ Dans l'exemple suivant, la variable *numTable* est égale au numéro de la table [Field](field.md) [Last table number](last-table-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 252 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tan.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tan.md index 56c521a7ea54b8..63791d8580bae3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tan.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tan.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Cos](cos.md) -[Sin](sin.md) \ No newline at end of file +[Sin](sin.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 19 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md index 0a22b7458b33e3..def5401bf78044 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md @@ -23,4 +23,13 @@ Reportez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-dat #### Voir aussi -[System folder](system-folder.md) \ No newline at end of file +[System folder](system-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 486 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md index e58892e8e43a2f..b2e9ee4afae68a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md @@ -48,4 +48,13 @@ L'exemple suivant teste la présence du document “Journal” dans le dossier d [Create document](create-document.md) [CREATE FOLDER](create-folder.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 476 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md index 9b78598b5852ae..b47de914a770bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md @@ -44,4 +44,13 @@ Cet exemple permet de connaître l’état d’un traitement (en l’occurrence, #### Voir aussi [CLEAR SEMAPHORE](clear-semaphore.md) -[Semaphore](semaphore.md) \ No newline at end of file +[Semaphore](semaphore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 652 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md index 0107b8334367f3..6d42864d688ac6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **TEXT TO ARRAY** permet de transformer une variable texte en tableau texte. Le texte d’origine (stylé ou non) est découpé et chaque morceau devient un élément du tableau *tabTexte* qui est retourné par la commande. Cette commande peut être utilisée par exemple pour remplir des pages ou des colonnes de texte de taille fixe. @@ -109,4 +106,13 @@ Vous devez imprimer dans une zone de 400 pixels de large un texte d’un maximum [Split string](split-string.md) [ST Get plain text](st-get-plain-text.md) -[ST Get text](st-get-text.md) \ No newline at end of file +[ST Get text](st-get-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1149 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md index 35cd9d1100c5f2..c8c4fb878eeaa1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md @@ -104,4 +104,13 @@ Après l'exécution de ce code : [CONVERT FROM TEXT](convert-from-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[REAL TO BLOB](real-to-blob.md) \ No newline at end of file +[REAL TO BLOB](real-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 554 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md index 4845a4707a406f..2ecd016e993e6d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md @@ -79,4 +79,13 @@ Exemple permettant à l’utilisateur de désigner l’emplacement du fichier à #### Voir aussi [Document to text](document-to-text.md) -*Documents système* \ No newline at end of file +*Documents système* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1237 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/throw.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/throw.md index a8ed09b8ffbfe1..4cc5f220b33a1e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/throw.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/throw.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **throw** crée une erreur qui sera levée soit immédiatement, soit lorsque la méthode appelante retournera à l'appelant (mode différé). @@ -109,4 +106,13 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi [ASSERT](assert.md) [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1805 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md index 37b2a38fe86ee1..aa7c5c54111ac9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Tickcount** retourne le nombre de ticks (1 tick = 1/60ème de seconde) écoulés depuis le démarrage de la machine. - -**Note :** **Tickcount** retourne une valeur de type Entier long. +**Tickcount** retourne le nombre de ticks (1 tick = 1/60ème de seconde) écoulés depuis le démarrage de la machine.**Tickcount** retourne une valeur de type Entier long. #### Exemple @@ -26,4 +24,13 @@ Référez-vous à l'exemple de la fonction [Milliseconds](milliseconds.md). #### Voir aussi [Current time](current-time.md) -[Milliseconds](milliseconds.md) \ No newline at end of file +[Milliseconds](milliseconds.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 458 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md index 6df8edaf787993..129e261e3a9e97 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md @@ -35,4 +35,13 @@ L'exemple suivant affiche une boîte de dialogue d'alerte avec le message “468 #### Voir aussi [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 180 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time.md index 286e49efe36425..1690be09bf72d6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time.md @@ -50,4 +50,13 @@ Vous pouvez exprimer toute valeur numérique sous forme d’heure : [Bool](bool.md) [String](string.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 179 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md index e960a27038ce6a..3f27a7810b4d99 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md @@ -41,4 +41,13 @@ Résultat : [Milliseconds](milliseconds.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1445 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md index 7485ba47beefea..abe4ba8f23c8ed 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Tool bar height** retourne la hauteur de la barre d'outils visible courante, exprimée en pixels. Suivant le contexte, il peut s'agir soit de la barre d'outils du mode Développement de 4D, soit d'une barre d'outils personnalisée créée avec [Open form window](open-form-window.md) (la barre d'outils du mode Développement est automatiquement masquée lorsqu'une barre d'outils personnalisée est affichée). @@ -26,4 +23,13 @@ displayed_sidebar: docs [HIDE TOOL BAR](hide-tool-bar.md) [Menu bar height](menu-bar-height.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1016 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trace.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trace.md index ad691207d12e64..ee9e771c7693a8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trace.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trace.md @@ -60,3 +60,13 @@ La méthode projet DEBUG est listée ci-dessous :     End if  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 157 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md index d818e66f468bb0..95c22fb62a87c3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md @@ -21,4 +21,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Utiliser des transactions* \ No newline at end of file +*Utiliser des transactions* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 961 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md index 7883bbf6284dbd..789b36767e7f7a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -La commande **TRANSFORM PICTURE** permet d’appliquer une transformation de type *opérateur* à l’image passée dans le paramètre *image*. - -**Note :** Cette commande reprend et étend les fonctionnalités proposées par les opérateurs “classiques” de transformation d’images (+/, etc., cf. section [C\_BOOLEAN](c-boolean.md)). Ces opérateurs restent parfaitement utilisables dans 4D. +La commande **TRANSFORM PICTURE** permet d’appliquer une transformation de type *opérateur* à l’image passée dans le paramètre *image*.Cette commande reprend et étend les fonctionnalités proposées par les opérateurs “classiques” de transformation d’images (+/, etc., cf. section [C\_BOOLEAN](c-boolean.md)). Ces opérateurs restent parfaitement utilisables dans 4D. L’*image* source est modifiée directement à l’issue de l’exécution de la commande. A noter cependant que certaines opérations ne sont pas destructives et peuvent être annulées via l’opération inverse ou l’opération “Réinitialisation”. Par exemple, une image réduite à 1 % retrouvera sa taille originale sans altération si elle est agrandie 100 fois par la suite. Les transformations ne modifient pas le type d’origine de l’image : par exemple, une image vectorielle restera vectorielle à l’issue de la transformation. @@ -72,4 +70,13 @@ Voici un exemple de recadrage (l’image est affichée dans le formulaire avec l #### Voir aussi -[COMBINE PICTURES](combine-pictures.md) \ No newline at end of file +[COMBINE PICTURES](combine-pictures.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 988 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md index e12f1c9ff426d5..81fc7e0697ea2d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md @@ -50,4 +50,13 @@ Utilisez la fonction **Trigger event** pour structurer vos triggers comme ci-des [In transaction](in-transaction.md) *Présentation des triggers* [Trigger level](trigger-level.md) -[TRIGGER PROPERTIES](trigger-properties.md) \ No newline at end of file +[TRIGGER PROPERTIES](trigger-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 369 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md index 9dcf748de38947..843997249cd662 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md @@ -23,4 +23,13 @@ Reportez-vous à la description des *Triggers en cascade*. *Présentation des triggers* [Trigger event](trigger-event.md) -[TRIGGER PROPERTIES](trigger-properties.md) \ No newline at end of file +[TRIGGER PROPERTIES](trigger-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 398 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md index dc166d8455ddca..e5c3c8621a84c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md @@ -37,4 +37,13 @@ Le numéro de table et d'enregistrement pour l'enregistrement concerné par l'é *A propos des numéros d'enregistrements* *Présentation des triggers* [Trigger event](trigger-event.md) -[Trigger level](trigger-level.md) \ No newline at end of file +[Trigger level](trigger-level.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 399 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/true.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/true.md index 942c774fbed7d3..8b5765e9969b94 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/true.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/true.md @@ -28,4 +28,13 @@ L'exemple suivant met la variable *vbOptions* à Vrai : #### Voir aussi [False](false.md) -[Not](not.md) \ No newline at end of file +[Not](not.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 214 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md index f7a23394f297ff..dc053a311e6739 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -**Trunc** retourne *nombre* dont la partie décimale a été tronquée à partir du nombre de décimales spécifié par *nbDécimales*. **Trunc** arrondit toujours *nombre* à la valeur inférieure. +**Trunc** retourne *nombre* dont la partie décimale a été tronquée à partir du nombre de décimales spécifié par *nbDécimales*.arrondit toujours *nombre* à la valeur inférieure. Si *nbDécimales* est positif, la troncature se fait sur la partie décimale de *nombre*. Si *nbDécimales* est négatif, la troncature se fait sur la partie entière de *nombre*. @@ -34,4 +34,13 @@ L'exemple suivant illustre la manière dont **Trunc** fonctionne dans différent #### Voir aussi -[Round](round.md) \ No newline at end of file +[Round](round.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 95 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md index d6ff3b694ebead..890f1e516ab895 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md @@ -37,4 +37,16 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi -[DELETE SELECTION](delete-selection.md) \ No newline at end of file +[DELETE SELECTION](delete-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1051 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/type.md index 1f04d9c9501b19..97425408308f63 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/type.md @@ -144,4 +144,13 @@ Référez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-da [Is a variable](is-a-variable.md) [Undefined](undefined.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 295 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md index 555c48a40b660b..0e0cf98dc430e1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **Undefined** retourne Vrai si le résultat de l'évaluation d'*expression* n'est pas une valeur définie, sinon elle retourne Faux si *expression* a été définie. - -* Une variable est définie si elle a été créée via une directive de compilation ou si une valeur lui a été assignée. Elle est indéfinie dans tous les autres cas. Si la base de données a été compilée, la fonction **Undefined** retourne Faux pour toutes les variables. +La commande **Undefined** retourne Vrai si le résultat de l'évaluation d'*expression* n'est pas une valeur définie, sinon elle retourne Faux si *expression* a été définie.retourne Faux pour toutes les variables. * Une propriété d'objet est indéfinie si elle n'existe pas dans l'objet. * La commande **Undefined** retourne toujours Faux pour les champs. @@ -59,4 +57,13 @@ Cet exemple compare les différents résultats de la commande [Undefined](undefi #### Voir aussi -[CLEAR VARIABLE](clear-variable.md) \ No newline at end of file +[CLEAR VARIABLE](clear-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 82 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/union.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/union.md index 84bad4e849fa42..3bc71469ca85a3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/union.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/union.md @@ -49,4 +49,13 @@ L'exemple suivant ajoute des enregistrements à l'ensemble des meilleurs clients #### Voir aussi [DIFFERENCE](difference.md) -[INTERSECTION](intersection.md) \ No newline at end of file +[INTERSECTION](intersection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 120 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md index f1af403b1e5060..69b8f1424c6cc8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md @@ -28,4 +28,13 @@ Si les enregistrements contiennent une quantité importante de données, de cham #### Voir aussi [LOAD RECORD](load-record.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 212 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md index c8fd9c6e3934f9..51a2385b9783e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **UNREGISTER CLIENT** “désinscrit” le client 4D de 4D Server. Il doit avoir été préalablement inscrit à l’aide de la commande [REGISTER CLIENT](register-client.md). @@ -35,4 +32,14 @@ Si le client est correctement désinscrit, la variable système OK prend la vale [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[REGISTER CLIENT](register-client.md) \ No newline at end of file +[REGISTER CLIENT](register-client.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 649 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md index 2045ae8c22d0fc..b531f2e75e428e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md @@ -36,4 +36,13 @@ Reportez-vous à l'exemple de [Lowercase](lowercase.md). #### Voir aussi -[Lowercase](lowercase.md) \ No newline at end of file +[Lowercase](lowercase.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 13 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md index c39e2abe173813..0126f077c6d0dc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md @@ -48,4 +48,14 @@ La variable système OK prend la valeur 1 si le filtre est correctement chargé, [IMPORT TEXT](import-text.md) [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 205 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md index 0190f4060dae03..be98bbfe72f873 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md @@ -29,4 +29,15 @@ Différents événements peuvent rendre une sélection temporaire obsolète : la [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[CUT NAMED SELECTION](cut-named-selection.md) \ No newline at end of file +[CUT NAMED SELECTION](cut-named-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 332 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md index 824cb959d70890..2827ba5036d39d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md @@ -36,4 +36,15 @@ L'exemple suivant utilise [LOAD SET](load-set.md) pour charger un ensemble des s #### Voir aussi [CLEAR SET](clear-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 118 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md index 847e80d8fda53d..6ebdc90f758bfa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **User in group** retourne Vrai si *nomUtilisateur* appartient au *groupe*. @@ -44,4 +41,13 @@ L'exemple suivant recherche des factures. Si l'utilisateur courant est dans le g #### Voir aussi -[Current user](current-user.md) \ No newline at end of file +[Current user](current-user.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 338 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md index 66f06c1786f551..febb98f3898d90 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note de compatibilité :** Cette commande fonctionne uniquement dans les bases binaires. Elle retourne toujours un BLOB vide dans les projets. @@ -32,4 +29,14 @@ Ce principe permet de conserver une sauvegarde des utilisateurs parmi les donné #### Voir aussi -[BLOB TO USERS](blob-to-users.md) \ No newline at end of file +[BLOB TO USERS](blob-to-users.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 849 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md index 5da8dd09a12a73..b6f3904670b629 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Validate password** retourne Vrai si la chaîne passée dans *motDePasse* est le mot de passe du compte utilisateur dont le n° de référence ou le nom est passé dans *utilisateur*. @@ -62,4 +59,13 @@ Dans la [On REST Authentication database method](on-rest-authentication-database [GET USER PROPERTIES](get-user-properties.md) [Set user properties](set-user-properties.md) -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 638 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md index 41ddf647c1ad09..4d98b4797f91d9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md @@ -14,7 +14,7 @@ displayed_sidebar: docs #### Description -**VALIDATE TRANSACTION** accepte la transaction ouverte par la commande [START TRANSACTION](start-transaction.md) de niveau correspondant dans le process courant. **VALIDATE TRANSACTION** sauvegarde toutes les modifications effectuées sur les données de la base pendant la transaction. +**VALIDATE TRANSACTION** accepte la transaction ouverte par la commande [START TRANSACTION](start-transaction.md) de niveau correspondant dans le process courant.sauvegarde toutes les modifications effectuées sur les données de la base pendant la transaction. A compter de la version 11 de 4D, vous pouvez imbriquer plusieurs transactions (sous-transactions). Si la transaction principale est annulée, toutes les sous-transactions sont annulées, même si elles ont été validées individuellement à l'aide de cette commande. @@ -29,4 +29,14 @@ A noter que lorsque OK vaut 0, la transaction est automatiquement annulée en in [CANCEL TRANSACTION](cancel-transaction.md) [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Utiliser des transactions* \ No newline at end of file +*Utiliser des transactions* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 240 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md index 72e2d32d0a16d1..e80fd1a6d15d8f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md @@ -112,4 +112,13 @@ Vous souhaitez obtenir la somme de toutes les valeurs numériques dans une colle #### Voir aussi [OB Get type](ob-get-type.md) -[Type](type.md) \ No newline at end of file +[Type](type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1509 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md index 5b6c168f3f14ca..69f2db075b15c2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md @@ -131,4 +131,14 @@ Lorsque ces méthodes ont été ajoutées à votre application, vous pouvez écr [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 532 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md index 46ec721a98f2db..438963712e4cac 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **VARIABLE TO VARIABLE** écrit la valeur de la ou des variable(s) *varSource1* (*varSource2*, etc.), dans la ou les variable(s) process *varDestination* (*varDestination2*, etc.) du process de destination dont vous avez passé le numéro dans *process*. @@ -61,4 +58,13 @@ L'exemple suivant récupère un tableau process depuis le process désigné par [GET PROCESS VARIABLE](get-process-variable.md) *Introduction aux process* -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 635 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variance.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variance.md index 44bde9f8a180bb..d1f535301a8cbf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variance.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variance.md @@ -65,4 +65,13 @@ Cet exemple vous permet d’obtenir la variance des valeurs placées dans un tab [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Sum squares](sum-squares.md) \ No newline at end of file +[Sum squares](sum-squares.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 27 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md index 2ad73ada1adad8..4925a73e3723d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md @@ -41,4 +41,14 @@ Si la méthode de rétro-appel passée n’existe pas, la vérification n’est #### Voir aussi -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1008 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md index 592f743971e193..e249de5845d02d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -La commande **VERIFY DATA FILE** effectue une vérification structurelle des objets contenus dans le fichier de données 4D désigné par *cheminStructure* et *cheminDonnées*. - -**Note :** Pour plus d’informations sur le processus de vérification des données, reportez-vous au manuel Mode Développement. +La commande **VERIFY DATA FILE** effectue une vérification structurelle des objets contenus dans le fichier de données 4D désigné par *cheminStructure* et *cheminDonnées*.Pour plus d’informations sur le processus de vérification des données, reportez-vous au manuel Mode Développement. *cheminStructure* désigne le fichier de structure (compilé ou non) associé au fichier de données à vérifier. Il peut s’agir du fichier de structure ouvert ou de tout autre fichier de structure. Vous devez passer un chemin d’accès complet, exprimé avec la syntaxe du système d’exploitation. Vous pouvez également passer une chaîne vide, dans ce cas une boîte de dialogue standard d’ouverture de fichiers apparaît, permettant à l’utilisateur de désigner le fichier de structure à utiliser. @@ -171,4 +169,14 @@ Si la méthode de rétro-appel passée n’existe pas, la vérification n’est #### Voir aussi -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 939 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md index bd86c653caab68..11c5de385de185 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md @@ -52,4 +52,13 @@ Cet exemple compare un hash de mot de passe créé par la commande [Generate pas #### Voir aussi -[Generate password hash](generate-password-hash.md) \ No newline at end of file +[Generate password hash](generate-password-hash.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1534 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md index 576c57d22722f1..afdb241f17da6c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md @@ -42,4 +42,13 @@ Ce test permet d’exécuter du code différent selon que la version est une app #### Voir aussi [Application type](application-type.md) -[Application version](application-version.md) \ No newline at end of file +[Application version](application-version.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 495 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md index 1e9416fba90ed2..17cfc636d6be1d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md @@ -96,4 +96,14 @@ Votre application comprend des opérations par lots qui sont exécutées la nuit #### Voir aussi -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 472 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md index 7ccb747ae674fe..8eb22af790bc58 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md @@ -38,4 +38,13 @@ A l'aide de la zone de défilement *ttVolumes*, vous voulez afficher la liste de [DOCUMENT LIST](document-list.md) [FOLDER LIST](folder-list.md) -[VOLUME ATTRIBUTES](volume-attributes.md) \ No newline at end of file +[VOLUME ATTRIBUTES](volume-attributes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 471 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md index ca4a5964f65ea1..f6bda309e22261 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Back URL available** permet de savoir s’il existe un URL précédent disponible dans la séquence d’URLs ouverts dans la zone Web désignée par les paramètres *\** et *objet*. @@ -27,4 +24,13 @@ La commande retourne Vrai si un URL existe et Faux sinon. Cette commande permet #### Voir aussi [WA Forward URL available](wa-forward-url-available.md) -[WA OPEN BACK URL](wa-open-back-url.md) \ No newline at end of file +[WA OPEN BACK URL](wa-open-back-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1026 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md index 03ec6d7f515356..df57d16cc8676a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Create URL history menu** crée et remplit un menu pouvant être utilisé directement pour la navigation parmi les URLs visités au cours de la session dans la zone Web désignée par les paramètres *\** et *objet*. Elle permet de construire une interface de navigation personnalisée. @@ -64,4 +61,13 @@ Le code suivant pourrait être associé à un bouton 3D avec pop up menu libell [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[WA GET URL HISTORY](wa-get-url-history.md) \ No newline at end of file +[WA GET URL HISTORY](wa-get-url-history.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1049 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md index 013e697ac45694..f48b37db0c6861 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Evaluate JavaScript** exécute dans la zone Web désignée par les paramètres *\** et *objet* le code JavaScript passé dans *codeJS* et retourne le résultat. Cette commande doit être appelée après le chargement complet de la page (l'événement formulaire On End URL Loading doit avoir été généré). @@ -103,4 +100,13 @@ Vous pouvez alors évaluer le code JavaScript depuis 4D : #### Voir aussi -[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) \ No newline at end of file +[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1029 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md index 5a2b4ff6003730..b0ea7e1315f81f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA EXECUTE JAVASCRIPT FUNCTION** exécute dans la zone Web désignée par les paramètres *\** et *objet* la fonction JavaScript *fonctionJS* et retourne facultativement son résultat dans le paramètre *résultat*. @@ -59,4 +56,13 @@ La fonction JavaScript "getCustomerInfos" reçoit un identifiant numérique en p #### Voir aussi -[WA Evaluate JavaScript](wa-evaluate-javascript.md) \ No newline at end of file +[WA Evaluate JavaScript](wa-evaluate-javascript.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1043 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md index 1197b7eec90ed1..cc278016ffeb0f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Forward URL available** permet de savoir s’il existe un URL suivant disponible dans la séquence d’URLs ouverts dans la zone Web désignée par les paramètres *\** et *objet*. @@ -27,4 +24,13 @@ La commande retourne Vrai si un URL existe et Faux sinon. Cette commande permet #### Voir aussi [WA Back URL available](wa-back-url-available.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1027 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md index 8fda3ad6ee4650..d96e911e2a16e5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Get current URL** retourne l’adresse URL de la page affichée dans la zone Web désignée par les paramètres *\** et *objet*. @@ -37,4 +34,13 @@ La page affichée est l’URL "www.apple.com" et la page "www.4d.com" est en cou #### Voir aussi -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1025 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md index cb83a0a98702d4..2cb5463224d178 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA GET EXTERNAL LINKS FILTERS** retourne dans les tableaux *tabFiltres* et *tabAutorisRefus* les filtres de liens externes de la zone Web désignée par les paramètres *\** et *objet*. Si aucun filtre n’est actif, les tableaux sont retournés vides. @@ -28,4 +25,13 @@ Les filtres sont installés par la commande [WA SET EXTERNAL LINKS FILTERS](wa-s #### Voir aussi [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1033 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md index 9c0c0d525af00a..cec4c10eedf0a0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Get last filtered URL** retourne le dernier URL ayant été filtré dans la zone Web désignée par les paramètres *\** et *objet*. @@ -35,4 +32,13 @@ Il est judicieux d’appeler cette commande dans le contexte des événements fo [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) [WA GET URL FILTERS](wa-get-url-filters.md) [WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1035 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md index 1687113b818de8..9abf1c32f70fc7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA GET LAST URL ERROR** vous permet de récupérer plusieurs informations relatives à la dernière erreur ayant eu lieu dans la zone Web désignée par les paramètres *\** et *objet*. @@ -35,4 +32,13 @@ Il est judicieux d’appeler cette commande dans le cadre de l’événement for #### Voir aussi -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1034 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md index ceedb7c7f08aed..f0ba3ff475f8c9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Get page content** retourne le code HTML de la page courante ou en cours d’affichage dans la zone Web désignée par les paramètres *\** et *objet*. @@ -26,4 +23,13 @@ Cette commande retourne une chaîne vide si le contenu de la page courante n’e #### Voir aussi -[WA SET PAGE CONTENT](wa-set-page-content.md) \ No newline at end of file +[WA SET PAGE CONTENT](wa-set-page-content.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1038 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md index 64d4ce1780d05b..824d1691a712c4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Get page title** retourne le titre de la page courante ou en cours d’affichage dans la zone Web désignée par les paramètres *\** et *objet*. Le titre correspond à la balise HTML "Title". @@ -26,4 +23,13 @@ Cette commande retourne une chaîne vide s’il n’y a pas de titre disponible #### Voir aussi -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1036 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md index 2d8ee2e80bd282..4ccddc745b8830 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA GET PREFERENCE** permet de lire la valeur courante d’une préférence dans la zone Web désignée par les paramètres *\** et *objet*. @@ -38,4 +35,13 @@ Passez dans le paramètre *valeur* une variable devant recevoir la valeur couran #### Voir aussi -[WA SET PREFERENCE](wa-set-preference.md) \ No newline at end of file +[WA SET PREFERENCE](wa-set-preference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1042 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md index e4beb2c64b0dc6..114525b3dacead 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA GET URL FILTERS** retourne dans les tableaux *tabFiltres* et *tabAutorisRefus* les filtres actifs dans la zone Web désignée par les paramètres *\** et *objet*. Si aucun filtre n’est actif, les tableaux sont retournés vides. @@ -28,4 +25,13 @@ Les filtres sont installés par la commande [WA SET URL FILTERS](wa-set-url-filt #### Voir aussi [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1031 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md index 3954300d5f60c4..fe133d2b6786e9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA GET URL HISTORY** retourne un ou deux tableaux contenant les URLs visités au cours de la session dans la zone Web désignée par les paramètres *\** et *objet*. Elle permet de construire une interface de navigation personnalisée. @@ -45,4 +42,13 @@ S’il est passé, le paramètre *tabTitres* contient la liste des noms de fenê #### Voir aussi -[WA Create URL history menu](wa-create-url-history-menu.md) \ No newline at end of file +[WA Create URL history menu](wa-create-url-history-menu.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1048 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md index b9bfaa2c25b022..7534b5153ae589 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA OPEN BACK URL** charge dans la zone Web désignée par les paramètres *\** et *objet* l’URL précédent dans la séquence d’URLs ouverts. @@ -26,4 +23,13 @@ S’il n’y a pas d’URL précédent, la commande ne fait rien. Vous pouvez te #### Voir aussi [WA OPEN FORWARD URL](wa-open-forward-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1021 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md index 11685bcec00a99..5220acd482625d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA OPEN FORWARD URL** charge dans la zone Web désignée par les paramètres *\** et *objet* l’URL suivant dans la séquence d’URLs ouverts. @@ -26,4 +23,13 @@ S’il n’y a pas d’URL suivant (c’est-à-dire si l’utilisateur n’a jam #### Voir aussi [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1022 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md index 3bbf0b61197c0e..6edba5b4edcdda 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA OPEN URL** charge dans la zone Web désignée par les paramètres *\** et *objet* l’URL passé dans le paramètre *url*. @@ -49,4 +46,13 @@ Cette commande a le même effet que la modification de la valeur de la variable [OPEN URL](open-url.md) [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1020 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md index 19b6ae6c8db6c9..fbc34942981c91 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA OPEN WEB INSPECTOR** ouvre un inspecteur web pour la zone web désignée par les paramètres *\** et *objet*. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Voir aussi *Gestion programmée des zones Web* -[WA Run offscreen area](wa-run-offscreen-area.md) \ No newline at end of file +[WA Run offscreen area](wa-run-offscreen-area.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1736 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md index 58700b4d12ea3a..923d5226d17960 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA REFRESH CURRENT URL** provoque le rechargement de l’URL courant affiché dans la zone Web désignée par les paramètres *\** et *objet*. #### Voir aussi -[WA STOP LOADING URL](wa-stop-loading-url.md) \ No newline at end of file +[WA STOP LOADING URL](wa-stop-loading-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1023 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md index fc1c9be719a67e..73cbbe665a5fe9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Run offscreen area** crée une zone web dans la mémoire qui peut être utilisée pour charger et parser automatiquement des pages web. @@ -97,4 +94,14 @@ La variable système OK est définie sur 0 si le timeout a été atteint ou si l [FORM Event](../commands/form-event.md) *Gestion programmée des zones Web* -[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) \ No newline at end of file +[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1727 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md index 06658e8dc8e7c4..e4c8c11a7a396c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA SET EXTERNAL LINKS FILTERS** permet de mettre en place un ou plusieurs filtre(s) de liens externes pour la zone Web désignée par les paramètres *\** et *objet*. Les filtres de liens externes déterminent si un URL associé à la page courante via un lien doit être ouvert dans la zone Web ou dans le navigateur Web par défaut de la machine. @@ -74,4 +71,13 @@ Cet exemple combine des filtrages de sites et de liens externes : #### Voir aussi [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1032 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md index 0de1a0ac09b73a..3699cab2ee7647 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Note de compatibilité Cette commande historique n'est plus vraiment utile. Avec le renforcement de la sécurité dans les navigateurs modernes, il existe de plus en plus de restrictions sur la modification du contenu des pages "à la volée". Une approche plus fiable consiste à créer un fichier local (par exemple dans le dossier temporaire) et à utiliser [WA OPEN URL](wa-open-url.md) pour le charger. Pour effacer le contenu, il suffit d'appeler **WA OPEN URL**(myArea;”about:blank”). @@ -46,4 +43,13 @@ Affichage de la phrase "Hello world !" et définition d’un URL de base "file:/ #### Voir aussi -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1037 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md index 6149b6608f6769..4ab31499a9b8d5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA SET PREFERENCE** permet de fixer différentes préférences pour la zone Web désignée par les paramètres *\** et *objet*. @@ -51,4 +48,13 @@ Vous souhaitez autoriser le déposer d'URLs dans la zone Web 'myarea' : #### Voir aussi -[WA GET PREFERENCE](wa-get-preference.md) \ No newline at end of file +[WA GET PREFERENCE](wa-get-preference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1041 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md index ef60dc38cd5db6..507b6258bd7087 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA SET URL FILTERS** permet de mettre en place un ou plusieurs filtre(s) pour la zone Web désignée par les paramètres *\** et *objet*. @@ -132,4 +129,13 @@ Vous souhaitez interdire des adresses IP spécifiques : #### Voir aussi [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1030 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md index 0ac2d6eb380f85..df3a08913d25fa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA STOP LOADING URL** stoppe le chargement des ressources de l’URL courant de la zone Web désignée par les paramètres *\** et *objet*. #### Voir aussi -[WA REFRESH CURRENT URL](wa-refresh-current-url.md) \ No newline at end of file +[WA REFRESH CURRENT URL](wa-refresh-current-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1024 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md index 1cbd25ac0ea36a..1e398afd290763 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA ZOOM IN** augmente la taille du texte affiché dans la zone Web désignée par les paramètres *\** et *objet*. @@ -27,4 +24,13 @@ Sous Windows, la portée de cette commande est globale : le paramétrage est con #### Voir aussi -[WA ZOOM OUT](wa-zoom-out.md) \ No newline at end of file +[WA ZOOM OUT](wa-zoom-out.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1039 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md index 8671d74b570f6f..553f8d508d4550 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA ZOOM OUT** réduit la taille du texte affiché dans la zone Web désignée par les paramètres *\** et *objet*. @@ -27,4 +24,13 @@ Sous Windows, la portée de cette commande est globale : le paramétrage est con #### Voir aussi -[WA ZOOM IN](wa-zoom-in.md) \ No newline at end of file +[WA ZOOM IN](wa-zoom-in.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1040 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md index d801f3c9cea55a..80dba06cefab7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md @@ -23,4 +23,13 @@ Reportez-vous à l'exemple de la commande [WEB GET BODY PART](web-get-body-part. #### Voir aussi -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1211 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md index e4d364ad77c1f5..4695c7d59c7f3c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md @@ -91,4 +91,13 @@ Voici le code de la méthode GetFile : [WEB Get body part count](web-get-body-part-count.md) [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET VARIABLES](web-get-variables.md) \ No newline at end of file +[WEB GET VARIABLES](web-get-variables.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1212 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md index a9d67067c9ba2d..7ffacfa7da9190 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md @@ -22,4 +22,13 @@ Si cette commande est appelée hors du contexte d’une session Web, elle retour #### Voir aussi *Gestion des sessions Web* -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1162 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md index 60e241469c66a5..3126d942c84afc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md @@ -47,4 +47,13 @@ Lorsque le formulaire est soumis au serveur Web, la variable $texteRequete reço #### Voir aussi [WEB GET BODY PART](web-get-body-part.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 814 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md index 3660db3595088b..48fb3026e269a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md @@ -115,4 +115,13 @@ A titre indicatif, voici une liste non exhaustive des champs HTTP pouvant être #### Voir aussi [WEB GET HTTP BODY](web-get-http-body.md) -[WEB SET HTTP HEADER](web-set-http-header.md) \ No newline at end of file +[WEB SET HTTP HEADER](web-set-http-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 697 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md index b761756c608c6d..9c952a13026d18 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md @@ -62,4 +62,13 @@ Lorsque vous utilisez le *sélecteur* Web debug log, vous pouvez récupérer une #### Voir aussi -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1209 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md index 9eceb562500f19..615ec0eecc832e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md @@ -125,4 +125,13 @@ $webServerInfo:=WEB Get server info(True) [License info](license-info.md) [Process activity](../commands/process-activity.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1531 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md index 74b4988b9253cd..b4df583dd71897 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md @@ -60,3 +60,13 @@ Dans la méthode projet STATS, écrivez le code suivant : ``` Vous pouvez envoyer la page "stats.shtm" via un lien URL ou à l'aide de commande [WEB SEND FILE](web-send-file.md). + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 658 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md index c951545c35f78b..b2366fd2e71bf2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md @@ -58,4 +58,13 @@ On obtient alors : #### Voir aussi -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 683 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md index de1c4d804e04b2..fb7259f93bb7a0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md @@ -24,4 +24,13 @@ Cette commande permet par exemple, le cas échéant, de refuser les tentatives d #### Voir aussi -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 698 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md index 2489d2778a4208..fc112242643db0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md @@ -36,3 +36,13 @@ Vous souhaitez tester si le serveur Web de 4D est lancé :     ... //effectuer les actions appropriées  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1313 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md index bb5a2a6a59d977..25b49830fe6588 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md @@ -34,4 +34,13 @@ Après l’exécution de cette commande, si un client Web envoie une requête ut #### Voir aussi *Gestion des sessions Web* -[On Web Legacy Close Session database method](on-web-legacy-close-session-database-method.md) \ No newline at end of file +[On Web Legacy Close Session database method](on-web-legacy-close-session-database-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1208 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md index 1e58c2460be6a4..0f0f82a28ac1aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md @@ -37,4 +37,13 @@ Le paramètre *dateExp* reçoit la date d’expiration et le paramètre *heureEx *Gestion des sessions Web* [WEB Get Current Session ID](web-get-current-session-id.md) -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1207 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md index 4ba7e655b1c9c6..bef1637d783c7a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md @@ -78,4 +78,13 @@ Reportez-vous à l’exemple de la routine [PICTURE TO BLOB](picture-to-blob.md) #### Voir aussi -[WEB SEND FILE](web-send-file.md) \ No newline at end of file +[WEB SEND FILE](web-send-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 654 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md index 252014b16f1095..c78b66b1a40141 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md @@ -47,4 +47,14 @@ Si le fichier à envoyer existe et si le timeout n’est pas dépassé, la varia #### Voir aussi -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 619 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md index 22a37e190015e7..64ca19d9c1d613 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md @@ -54,3 +54,13 @@ Dans la [QR SET DESTINATION](qr-set-destination.md), placez les instructions sui        ... //Placez ici le code de la recherche  End case ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 659 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md index 92d488d40428da..ad1abfc8273e65 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md @@ -78,4 +78,13 @@ Cet exemple illustre l’emploi de l’option chunked avec la commande **WEB SEN #### Voir aussi [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 815 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md index bbf1efcafd3890..ca9d33db7bda38 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md @@ -42,4 +42,13 @@ La méthode suivante : #### Voir aussi -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 677 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md index 3f869e342e4d3e..c1c3155e190313 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md @@ -51,4 +51,13 @@ Authentification auprès d’un Web Service situé derrière un proxy : #### Voir aussi [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE Get info](web-service-get-info.md) \ No newline at end of file +[WEB SERVICE Get info](web-service-get-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 786 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md index 487eb287452ab4..aa4d81275e6519 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md @@ -152,4 +152,14 @@ Si la requête est correctement acheminée et que le Web Service l’a acceptée #### Voir aussi [WEB SERVICE GET RESULT](web-service-get-result.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 778 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md index 70eb1fdef3ef8d..7b035ef10c26ce 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md @@ -28,3 +28,13 @@ Le paramètre *typeInfo* vous permet d’indiquer le type d’information que vo | Web Service HTTP status code | Entier long | 2 | Code de statut HTTP (à utiliser en cas d’erreur principale 9912). | Une chaîne vide est retournée lorsqu’aucune information n’est disponible, en particulier si la dernière requête SOAP n'a pas généré d'erreur. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 780 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md index a9858e06053a25..300b6613b7cee5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **WEB SERVICE GET RESULT** permet de récupérer une valeur renvoyée par le Web Service à l’issue du traitement effectué. - -**Note :** Cette commande doit être utilisée uniquement après la commande [WEB SERVICE CALL](web-service-call.md). +La commande **WEB SERVICE GET RESULT** permet de récupérer une valeur renvoyée par le Web Service à l’issue du traitement effectué.Cette commande doit être utilisée uniquement après la commande [WEB SERVICE CALL](web-service-call.md). Le paramètre *valeurRetour* reçoit la valeur renvoyée par le Web Service. Passez dans ce paramètre une variable 4D. Cette variable est généralement *$0*, correspondant à la valeur retournée par la méthode proxy. Il est toutefois possible d’utiliser des variables intermédiaires (vous devez utiliser des variables process uniquement). @@ -52,4 +50,13 @@ Imaginons un Web Service retournant l’heure courante dans n’importe quelle v #### Voir aussi [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 779 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md index b6207a04f9ae3f..69089e04c25936 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md @@ -60,4 +60,13 @@ Utilisation de la version 1.2 du protocole SOAP : #### Voir aussi -[WEB SERVICE CALL](web-service-call.md) \ No newline at end of file +[WEB SERVICE CALL](web-service-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 901 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md index 2197b94aacb52b..b61512f6e1234e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md @@ -70,4 +70,13 @@ Cet exemple définit deux paramètres : #### Voir aussi [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE GET RESULT](web-service-get-result.md) \ No newline at end of file +[WEB SERVICE GET RESULT](web-service-get-result.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 777 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md index ea6ddc55fcc7b3..2aa820b3442536 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md @@ -26,3 +26,13 @@ Vous passez dans le paramètre *homePage* le nom de la page HTML d’accueil ou Pour ne plus envoyer *homePage* comme page d’accueil pour le process Web courant, appelez de nouveau la commande **WEB SET HOME PAGE** en passant une chaîne vide ("") dans *homePage*. **Note :** La page d’accueil par défaut du serveur Web est définie dans les Propriétés de la base. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 639 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md index 3e16b2055f4ba0..9ad7cdab60e70b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md @@ -63,4 +63,13 @@ Si vous ne spécifiez pas de statut, celui-ci est automatiquement HTTP/1.0 200 O #### Voir aussi -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 660 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md index 2de6bbae036e38..2f83cd2f2aac4f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md @@ -79,4 +79,13 @@ Voici un exemple d'entrée enregistrée dans le fichier d'historique : #### Voir aussi [WEB GET OPTION](web-get-option.md) -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 5 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md index e7bf6b7be0bdf9..168a70e368c703 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md @@ -36,4 +36,14 @@ Si vous passez un chemin d'accès invalide, une erreur liée à la gestion de fi #### Voir aussi [Get 4D folder](get-4d-folder.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 634 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md index 253920d6f4e754..abff4f5ebe2cd1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md @@ -24,4 +24,14 @@ Si le serveur Web est correctement démarré, OK prend la valeur 1, sinon OK pre #### Voir aussi -[WEB STOP SERVER](web-stop-server.md) \ No newline at end of file +[WEB STOP SERVER](web-stop-server.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 617 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md index 576430216835b2..6455e46f874e20 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md @@ -20,4 +20,13 @@ Si le serveur Web n'était pas lancé, la commande ne fait rien. #### Voir aussi -[WEB START SERVER](web-start-server.md) \ No newline at end of file +[WEB START SERVER](web-start-server.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 618 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md index ef939f242d7e94..392bdca9627bbc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md @@ -55,4 +55,13 @@ Exemple de *Méthode base Sur authentification Web* en mode Digest #### Voir aussi [Generate digest](generate-digest.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 946 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md index a639c44919dcde..758ac564f12ab5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Window kind** retourne le type de fenêtre 4D dont vous avez passé la référence dans *fenêtre*. Si la fenêtre n'existe pas, **Window kind** retourne 0 (zéro). @@ -40,4 +37,13 @@ Reportez-vous à l'exemple de la commande [WINDOW LIST](window-list.md). [GET WINDOW RECT](get-window-rect.md) [Get window title](get-window-title.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 445 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md index 2e5715c1474a1c..a6735e85a83ae6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WINDOW LIST** remplit le tableau *fenêtres* avec les numéros de référence des fenêtres actuellement ouvertes dans tous les process (process moteur et process utilisateur). Seules les fenêtres "visibles" (i.e. non cachées) sont retournées. @@ -52,4 +49,13 @@ La méthode projet suivante place en "mosaïque" toutes les fenêtres ouvertes ( #### Voir aussi [Window kind](window-kind.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 442 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md index b5d9cb16db6a03..24a0f165d835c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Window process** retourne le numéro du process qui exécute la fenêtre dont le numéro de référence est passé dans *fenêtre*. Si la fenêtre n'existe pas, la commande retourne *0* (zéro). @@ -25,4 +22,13 @@ Si vous omettez le paramètre *fenêtre*, **Window process** retourne le numéro #### Voir aussi -[Current process](current-process.md) \ No newline at end of file +[Current process](current-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 446 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md index cb7dc288969bd9..70e78cb6d440e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Windows Alt down** retourne Vrai si la touche **Alt** Windows est enfoncée. - -**Note :** Lorsqu'elle est appelée sous Mac OS, **Windows Alt down** retourne Vrai si la touche Macintosh **Option** est enfoncée. +**Windows Alt down** retourne Vrai si la touche **Alt** Windows est enfoncée.Lorsqu'elle est appelée sous Mac OS, **Windows Alt down** retourne Vrai si la touche Macintosh **Option** est enfoncée. #### Exemple @@ -30,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 563 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md index 3a0f9550ce3cac..a12e64be8b4b91 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Windows Ctrl down** retourne Vrai si la touche **Ctrl** Windows est enfoncée. - -**Note :** Lorsqu'elle est appelée sous Mac OS, **Windows Ctrl down** retourne Vrai si la touche Macintosh **Commande** est enfoncée. +**Windows Ctrl down** retourne Vrai si la touche **Ctrl** Windows est enfoncée.Lorsqu'elle est appelée sous Mac OS, **Windows Ctrl down** retourne Vrai si la touche Macintosh **Commande** est enfoncée. #### Exemple @@ -30,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 562 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md index 017197241bf8dd..6310f6130ffe3a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md @@ -45,4 +45,14 @@ Si l’exécution de la commande est correcte, la variable système Document con *Introduction aux images* [PICTURE TO BLOB](picture-to-blob.md) [READ PICTURE FILE](read-picture-file.md) -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 680 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md index f899f9b3ddfb9a..7435865c899fe9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md @@ -71,4 +71,13 @@ Exemple de document XML : #### Voir aussi [BASE64 DECODE](base64-decode.md) -[BASE64 ENCODE](base64-encode.md) \ No newline at end of file +[BASE64 ENCODE](base64-encode.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1091 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md index 0254e134d22002..43a5ca6903e9cf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md @@ -28,4 +28,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi -[DOM Get XML information](dom-get-xml-information.md) \ No newline at end of file +[DOM Get XML information](dom-get-xml-information.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 732 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md index 9bd3d2f8e63390..13384df755c8c4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md @@ -36,4 +36,13 @@ Passez dans *sélecteur* une des constantes du thème *XML* ci-dessous, indiquan #### Voir aussi -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1096 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md index 002824b6a9bf48..dd75f17213c30f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md @@ -64,4 +64,13 @@ Insertion d’une image SVG : [DOM SET XML DECLARATION](dom-set-xml-declaration.md) [DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[XML GET OPTIONS](xml-get-options.md) \ No newline at end of file +[XML GET OPTIONS](xml-get-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1090 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md index fd579dc1e82df5..1c2a59c27c59bf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md @@ -37,4 +37,13 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md). #### Voir aussi [Day of](day-of.md) -[Month of](month-of.md) \ No newline at end of file +[Month of](month-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 25 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/4d.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/4d.md index 4e660867e24ebf..4c02995e2a293d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/4d.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/4d.md @@ -6,8 +6,8 @@ displayed_sidebar: docs **4D** -> Object -| Paramètres | Type | | Description | -| ---------- | ------ | - | ---------------------------------------------- | -| classStore | Object | ← | Class Store containing all built-in 4D classes | +| Paramètres | Type | | Description | +| ---------- | ------ | - | ----------------------------------------------------- | +| classStore | Object | ← | Class store contenant toutes les classes 4D intégrées | -The **4D** keyword is described in the [**Concept page for Classes**](../Concepts/classes.md#4d). +Le mot-clé **4D** est décrit dans la [**Page de concepts pour les classes**](../Concepts/classes.md#4d). diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/command-index.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/command-index.md index b05b1a08426eaf..e97bbdac5afac8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/command-index.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/command-index.md @@ -90,7 +90,7 @@ title: Index [`Cache info`](../commands-legacy/cache-info.md)
[`Call chain`](../commands-legacy/call-chain.md)
-[`CALL FORM`](call-form.md)
+[`CALL FORM`](../commands-legacy/call-form.md)
[`CALL SUBFORM CONTAINER`](../commands-legacy/call-subform-container.md)
[`CALL WORKER`](../commands-legacy/call-worker.md)
[`CANCEL`](../commands-legacy/cancel.md)
@@ -279,7 +279,7 @@ title: Index [`Euro converter`](../commands-legacy/euro-converter.md)
[`EXECUTE FORMULA`](../commands-legacy/execute-formula.md)
[`EXECUTE METHOD`](../commands-legacy/execute-method.md)
-[`EXECUTE METHOD IN SUBFORM`](execute-method-in-subform.md)
+[`EXECUTE METHOD IN SUBFORM`](../commands-legacy/execute-method-in-subform.md)
[`EXECUTE ON CLIENT`](../commands-legacy/execute-on-client.md)
[`Execute on server`](../commands-legacy/execute-on-server.md)
[`Exp`](../commands-legacy/exp.md)
@@ -657,7 +657,7 @@ title: Index [`METHOD GET NAMES`](../commands-legacy/method-get-names.md)
[`METHOD Get path`](../commands-legacy/method-get-path.md)
[`METHOD GET PATHS`](../commands-legacy/method-get-paths.md)
-[`METHOD GET PATHS FORM`](method-get-paths-form.md)
+[`METHOD GET PATHS FORM`](../commands-legacy/method-get-paths-form.md)
[`METHOD OPEN PATH`](../commands-legacy/method-open-path.md)
[`METHOD RESOLVE PATH`](../commands-legacy/method-resolve-path.md)
[`METHOD SET ACCESS MODE`](../commands-legacy/method-set-access-mode.md)
@@ -756,7 +756,7 @@ title: Index [`OBJECT GET SCROLLBAR`](../commands-legacy/object-get-scrollbar.md)
[`OBJECT GET SHORTCUT`](../commands-legacy/object-get-shortcut.md)
[`OBJECT Get style sheet`](../commands-legacy/object-get-style-sheet.md)
-[`OBJECT GET SUBFORM`](object-get-subform.md)
+[`OBJECT GET SUBFORM`](../commands-legacy/object-get-subform.md)
[`OBJECT GET SUBFORM CONTAINER SIZE`](../commands-legacy/object-get-subform-container-size.md)
[`OBJECT Get subform container value`](../commands-legacy/object-get-subform-container-value.md)
[`OBJECT Get text orientation`](../commands-legacy/object-get-text-orientation.md)
@@ -802,7 +802,7 @@ title: Index [`OBJECT SET SCROLLBAR`](../commands-legacy/object-set-scrollbar.md)
[`OBJECT SET SHORTCUT`](../commands-legacy/object-set-shortcut.md)
[`OBJECT SET STYLE SHEET`](../commands-legacy/object-set-style-sheet.md)
-[`OBJECT SET SUBFORM`](object-set-subform.md)
+[`OBJECT SET SUBFORM`](../commands-legacy/object-set-subform.md)
[`OBJECT SET SUBFORM CONTAINER VALUE`](../commands-legacy/object-set-subform-container-value.md)
[`OBJECT SET TEXT ORIENTATION`](../commands-legacy/object-set-text-orientation.md)
[`OBJECT SET THREE STATES CHECKBOX`](../commands-legacy/object-set-three-states-checkbox.md)
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/compile-project.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/compile-project.md index 0657997428d06c..e31e13714261fd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/compile-project.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/compile-project.md @@ -9,58 +9,58 @@ displayed_sidebar: docs -| Paramètres | Type | | Description | -| ----------- | ----------------------- | - | ------------------------------------------------------- | -| projectFile | 4D.File | → | .4DProject file to compile | -| options | Object | → | Object that specifies compilation options | -| Résultat | Object | ← | Object containing information on the compilation status | +| Paramètres | Type | | Description | +| ----------- | ----------------------- | - | ------------------------------------------------------------- | +| projectFile | 4D.File | → | Fichier .4DProject à compiler | +| options | Object | → | Objet qui spécifie les options de compilation | +| Résultat | Object | ← | Objet contenant des informations sur le statut de compilation | -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.*
Historique -| Release | Modifications | -| ------- | ---------------------------------------- | -| 20 R8 | Support of `type` "formObjectExpression" | +| Release | Modifications | +| ------- | ------------------------------------------------ | +| 20 R8 | Prise en charge du `type` "formObjectExpression" |
#### Description -**Compile project** allows you to compile the current host project or the project specified in the *projectFile* parameter. For more information on compilation, check the [Compilation page](../Project/compiler.md). +**Compile project** vous permet de compiler le projet hôte courant ou le projet spécifié dans le paramètre *projectFile*. Pour plus d'informations sur la compilation, consultez la [page Compilation](../Project/compiler.md). -By default, the command uses the compiler options defined in the Structure Settings. You can override them by passing an *options* parameter. Les syntaxes suivantes sont prises en charge : +Par défaut, la commande utilise les options du compilateur définies dans les Paramètres de structure. Vous pouvez les remplacer en passant un paramètre *options*. Les syntaxes suivantes sont prises en charge : -- **Compile project**(): compiles the opened project using the options defined in the Structure Settings -- **Compile project**(*options*): compiles the opened project. The *options* defined override the Structure Settings -- **Compile project**(*projectFile*): compiles the *projectFile* 4DProject using the options defined in the Structure Settings -- **Compile project**(*projectFile*; *options*): compiles the *projectFile* 4DProject and the *options* defined override the Structure Settings +- **Compile project**() : compile le projet ouvert à l'aide des options définies dans les paramètres de structure +- **Compile project**(*options*) : compile le projet ouvert. Les *options* définies remplacent les paramètres de structure +- **Compile project**(*projectFile*) : compile le projet 4D *projectFile* en utilisant les options définies dans les paramètres de structure +- **Compile project**(*projectFile*; *options*) : compile le projet 4D *projectFile* et les *options* définies remplacent les paramètres de structure -**Note:** Binary databases cannot be compiled using this command. +\*\*Note :\*\*Les bases de données binaires ne peuvent pas être compilées avec cette commande. -Unlike the Compiler window, this command requires that you explicitly designate the component(s) to compile. When compiling a project with **Compile project**, you need to declare its components using the *components* property of the *options* parameter. Keep in mind that the components must already be compiled (binary components are supported). +Contrairement à la fenêtre du Compilateur, cette commande nécessite que vous désigniez explicitement le ou les composants à compiler. Lors de la compilation d'un projet avec **Compile project**, vous devez déclarer ses composants à l'aide de la propriété *components* du paramètre *options*. A noter que les composants doivent déjà être compilés (les composants binaires sont pris en charge). -The resulting compiled code will be stored in the DerivedData or Libraries folder of the project, depending on the *targets* property of the *options* parameter. If you want to create .4dz files, you still need to manually zip the compiled project or use the [build application](../Desktop/building.md) feature. +Le code compilé résultant sera stocké dans le dossier DerivedData ou Libraries du projet, en fonction de la propriété *targets* du paramètre *options*. Si vous souhaitez créer des fichiers .4dz, vous devez toujours compresser manuellement le projet compilé ou utiliser la fonctionnalité [build application](../Desktop/building.md). -If you pass an empty collection in *targets*, **Compile project** will execute a syntax check without compiling. +Si vous passez une collection vide dans *targets*, **Compile project** exécutera une vérification syntaxique sans compiler. -Compilation errors, if any, are returned as objects in the *errors* collection. +Les erreurs de compilation, le cas échéant, sont retournées sous forme d'objets dans la collection *errors*. -**Note:** You cannot call this command when another compilation is running (for example, a compilation launched from the Compilation window). +**Note :** Vous ne pouvez pas appeler cette commande quand une autre compilation est en cours d'exécution (par exemple, une compilation lancée depuis la fenêtre de compilation). -##### options Parameter +##### Paramètre options -The *options* parameter is an object. Here are the available compilation options: +Le paramètre *options* est un objet. Voici les options de compilation disponibles : -| **Property** | **Type** | **Description** | +| **Propriété** | **Type** | **Description** | | ---------------------------------------------------------------------------------- | -------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| components | Collection | Collection of 4D.File objects to dependent components (must be already compiled) | -| defaultTypeForButtons | Integer | Possible value: Is real or Is longint | -| defaultTypeForNumerics | Integer | Possible value: Is real or Is longint | -| generateSymbols | Boolean | True to generate symbol information in the .symbols returned object | -| generateSyntaxFile | Boolean | True to generate a [syntax file for code completion](../settings/general.md).md#generate-syntax-file-for-code-completion-when-compiled) in the \\Resources\\en.lproj folder of the project | +| components | Collection | Collection d'objets 4D.File vers des composants dépendants (doit être déjà compilé) | +| defaultTypeForButtons | Integer | Valeur possible : Is real ou Is longint | +| defaultTypeForNumerics | Integer | Valeur possible : Is real ou Is longint | +| generateSymbols | Boolean | True pour générer des informations sur les symboles dans l'objet .symbols renvoyé | +| generateSyntaxFile | Boolean | Vrai pour générer un [fichier de syntaxe pour la complétion de code](../settings/general.md#generate-syntax-file-for-code-completion-when-compiled) dans le dossier \\Resources\\en.lproj du projet | | generateTypingMethods | Text | "reset" or "append" to generate typing methods. If value is "append", existing variable declarations won't be modified (compiler window behavior). If value is "reset" existing variable declarations are removed beforehand. | | plugins | 4D.Folder object | Plug-ins folder to be used instead of the [Plugins folder of the current project](../Project/architecture.md#plugins). This property is only available with the *projectFile* syntax. | | targets | Collection de chaînes | Possible values: "x86_64_generic", "arm64_macOS_lib". Pass an empty collection to execute syntax check only | @@ -76,7 +76,7 @@ The *options* parameter is an object. Here are the available compilation options The object returned by **Compile project** has up to three properties: -| **Property** | **Type** | **Description** | +| **Propriété** | **Type** | **Description** | | ---------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | | success | Boolean | Vrai si la sauvegarde a été effectuée avec succès, sinon faux. | | errors | Collection d'objets | **Available only in case of error or warning**. Collection of objects describing compilation errors or warnings | @@ -107,7 +107,7 @@ For more information, see [Compilation tools](../Project/compiler.md#compilation `interprocessVariables.variables` and `processVariables.variables` contain objects with the following structure: -| **Property** | **Type** | **Description** | +| **Propriété** | **Type** | **Description** | | -------------- | -------- | --------------------------------------------------------------------------------------------------------- | | name | Text | Name of the variable | | type | number | Type of the variable (like Value type command) | @@ -118,7 +118,7 @@ For more information, see [Compilation tools](../Project/compiler.md#compilation The `code` property in `methods.code` and `errors.code` is an object with the following properties: -| **Property** | **Type** | **Description** | +| **Propriété** | **Type** | **Description** | | -------------- | ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | type | Text | "projectMethod", "formObjectMethod", "formMethod", "databaseMethod", "triggerMethod", "executeOnServer" (when calling a project method with the *Execute on Server attribute*), "executeFormula" (when executing a formula via [PROCESS 4D TAGS](../commands-legacy/process-4d-tags.md) or evaluation of a formula in a 4D Write Pro document), "class", "classFunction", "formObjectExpression" (for errors occuring in expressions associated to form objects) | | path | Text | Method path (same format as [METHOD OPEN PATH](../commands-legacy/method-open-path.md)) | diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md index bc8e2c0c1ddab5..8fe1a621157b1c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md @@ -43,3 +43,10 @@ $employees:=Create entity selection([Employee]) #### Voir également [USE ENTITY SELECTION](use-entity-selection.md)
[`dataClass.newSelection()`](../API/DataClassClass.md#newselection) + +#### Propriétés + +| | | +| ------------------ | ------------------------------------------- | +| Numéro de commande | 1512 | +| Thread safe | &amp;amp;amp;check; | diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/dialog.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/dialog.md index 3f27dc331c73e5..f032b81b140627 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/dialog.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/dialog.md @@ -8,109 +8,109 @@ displayed_sidebar: docs -| Paramètres | Type | | Description | -| ---------- | ------------ | - | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| aTable | Table | → | Table owning the form or If omitted: default table or use of project form | -| form | Text, Object | → | Name (string) of table or project form, or a POSIX path (string) to a .json file describing the form, or an object describing the form | -| formData | Object | → | Data to associate to the form | -| \* | Opérateur | → | Use the same process | +| Paramètres | Type | | Description | +| ---------- | ------------ | - | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| aTable | Table | → | Table à laquelle appartient le formulaire; Si omis : Table par défaut ou utilisation d'un formulaire projet | +| form | Text, Object | → | Nom du formulaire table ou projet à afficher, ou Chemin POSIX (chaîne) d'un fichier .json décrivant le formulaire, ou Objet décrivant le formulaire | +| formData | Object | → | Données à associer au formulaire | +| \* | Opérateur | → | Utiliser le même process | -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* #### Description The **DIALOG** command presents the *form* to the user, along with *formData* parameter(s) (optional). -This command is designed to work with customized and advanced user interfaces based on forms. You can use it to display information coming from the database or other locations, or to provide data entry features. Unlike [ADD RECORD](../commands-legacy/add-record.md) or [MODIFY RECORD](../commands-legacy/modify-record.md), **DIALOG** gives you full control over the form, its contents and the navigation and validation buttons. +Cette commande permet de concevoir des interfaces utilisateur personnalisées et sophistiquées, basées sur des formulaires. Vous pouvez l'utiliser pour afficher des informations provenant de la base ou d'autres sources, ou proposer des fonctions de saisie des données. Contrairement à [ADD RECORD](../commands-legacy/add-record.md) ou [MODIFY RECORD](../commands-legacy/modify-record.md), **DIALOG** vous donne un contrôle total sur le formulaire, son contenu et les boutons de navigation et de validation. -This command is typically called along with the [Open form window](../commands-legacy/open-form-window.md) to display sophisticated forms, as shown in the following example: +Cette commande est généralement appelée avec la commande [Open form window](../commands-legacy/open-form-window.md) pour afficher des formulaires complexes, comme le montre l'exemple suivant : ![](../assets/en/commands/pict3541609.en.png) -The **DIALOG** command can also be used instead of [ALERT](../commands-legacy/alert.md), [CONFIRM](../commands-legacy/confirm.md) or [Request](../commands-legacy/request.md) when the information to be presented or gathered is more complex than those commands can manage. +La commande **DIALOG** peut également être utilisée à la place de [ALERT](../commands-legacy/alert.md), [CONFIRM](../commands-legacy/confirm.md) ou [Request](../commands-legacy/request.md) lorsque les informations à afficher ou à recueillir sont plus complexes que celles que peuvent gérer ces trois commandes. -In the *form* parameter, you can pass: +Dans le paramètre *form*, vous pouvez passer soit: -- the name of a form (project form or table form) to use; -- the path (in POSIX syntax) to a valid .json file containing a description of the form to use; -- an object containing a description of the form to use. +- le nom du formulaire (formulaire projet ou formulaire table) à utiliser. +- le chemin (en syntaxe POSIX) d'un fichier .json valide contenant la description du formulaire à utiliser, +- un objet contenant la description du formulaire à utiliser. -Optionally, you can pass parameter(s) to the *form* using a "form data" object. Any properties of the form data object will then be available from within the form context through the [Form](form.md) command. For example, if you use a form data object containing {"version";"12"}, you will be able to get or set the value of the "version" property in the form by calling: +Optionnellement, vous pouvez passer un ou plusieurs paramètre(s) au *form* à l'aide d'un objet "form data" (données du formulaire). Toutes les propriétés de l'objet de données du formulaire seront alors disponibles dans le contexte du formulaire par le biais de la commande [Form](form.md). Par exemple, si vous utilisez un objet de données de formulaire contenant {"version" ; "12"}, vous pourrez obtenir ou définir la valeur de la propriété "version" dans le formulaire en appelant : ```4d $v:=Form.version //"12" Form.version:=13 ``` -To fill the "form data" object, you have two possibilities: +Pour remplir l'objet "form data", vous avez deux possibilités : -- use the *formData* parameter. Using a local variable for *formData* allows you to safely pass parameters to your forms, whatever the calling context. In particular, if the same form is called from different places in the same process, you will always be able to access its specific values by simply calling [Form](form.md).myProperty. Moreover, since objects are passed by reference, if the user modifies a property value in the form, it will automatically be saved in the object itself. +- utiliser le paramètre *formData*. L'utilisation d'une variable locale pour *formData* vous permet de passer en toute sécurité des paramètres à vos formulaires, quel que soit le contexte d'appel. En particulier, si le même formulaire est appelé à différents endroits dans le même process, vous pourrez toujours accéder à ses valeurs spécifiques en appelant simplement [Form](form.md).myProperty. De plus, les objets étant transmis par référence, si l'utilisateur modifie la valeur d'une propriété dans le formulaire, celle-ci sera automatiquement sauvegardée dans l'objet lui-même. -- [associate a user class to the form](../FormEditor/properties_FormProperties.md#form-class), in which case 4D will automatically instantiate an object of this class when the form will be loaded. The object properties and functions will be automatically available through the object returned by [Form](form.md). You could write for example `Form.myFunction()`. +- [associer une classe utilisateur au formulaire](../FormEditor/properties_FormProperties.md#form-class), auquel cas 4D instanciera automatiquement un objet de cette classe lorsque le formulaire sera chargé. Les propriétés et les fonctions de l'objet seront automatiquement disponibles via l'objet renvoyé par [Form](form.md). Vous pouvez écrire par exemple `Form.myFunction()`. :::note -- The *formData* parameter has priority over a form class (the class object is not instantiated if a *formData* parameter is passed). -- If you do not pass the *formData* parameter (or if you pass an undefined object) and no user class is associated to the form, **DIALOG** creates a new empty object bound to the *form*. +- Le paramètre *formData* est prioritaire sur une classe de formulaire (l'objet classe n'est pas instancié si un paramètre *formData* est passé). +- Si vous ne passez pas le paramètre *formData* (ou si vous passez un objet non défini) et qu'aucune classe d'utilisateur n'est associée au formulaire, **DIALOG** crée un nouvel objet vide lié au *form*. ::: -The dialog is closed by the user either with an "accept" action (triggered by the ak accept standard action, the Enter key, or the [ACCEPT](../commands-legacy/accept.md) command), or with a "cancel" action (triggered by the ak cancel standard action, the Escape key, or the [CANCEL](../commands-legacy/cancel.md) command). An accept action will set the OK system variable to 1, while a cancel action will set OK to 0\. +Le dialogue est refermé par l'utilisateur soit par une action "accepter" (déclenchée par l'action standard ak accept, la touche Entrée, ou la commande [ACCEPT](../commands-legacy/accept.md)), soit par une action "annuler" (déclenchée par l'action standard ak cancel, la touche Escape, ou la commande [CANCEL](../commands-legacy/cancel.md)). Une action d'acceptation mettra la variable système OK à 1, tandis qu'une action d'annulation mettra OK à 0. -Keep in mind that validation does not equal saving: if the dialog includes fields, you must explicitly call the [SAVE RECORD](../commands-legacy/save-record.md) command to save any data that has been modified. +A noter que la validation n'équivaut pas à la sauvegarde : si le dialogue comprend des champs, vous devez appeler explicitement la commande [SAVE RECORD](../commands-legacy/save-record.md) pour sauvegarder toutes les données qui ont été modifiées. -If you pass the optional *\** parameter, the form is loaded and displayed in the last open window of the current process and the command finishes its execution while leaving the active form on the screen.\ -This form then reacts “normally” to user actions and is closed using a standard action or when 4D code related to the form (object method or form method) calls the [CANCEL](../commands-legacy/cancel.md) or [ACCEPT](../commands-legacy/accept.md) command. If the current process terminates, the forms created in this way are automatically closed in the same way as if a [CANCEL](../commands-legacy/cancel.md) command had been called. This opening mode is particularly useful for displaying a floating palette with a document, without necessarily requiring another process. +Si vous passez le paramètre facultatif *\**, le formulaire est chargé et affiché dans la dernière fenêtre ouverte du process courant et la commande termine son exécution en laissant le formulaire actif à l'écran.\ +Ce formulaire réagit alors "normalement" aux actions de l'utilisateur et est fermé par une action standard ou lorsque le code 4D lié au formulaire (méthode objet ou méthode formulaire) appelle la commande [CANCEL](../commands-legacy/cancel.md) ou [ACCEPT](../commands-legacy/accept.md). Si le process courant se termine, les formulaires créés de cette manière sont automatiquement fermés de la même manière que si une commande [CANCEL](../commands-legacy/cancel.md) avait été appelée. Ce mode d'ouverture est particulièrement utile pour afficher une palette flottante avec un document, sans avoir nécessairement besoin d'un autre process. **Notes :** -- You can combine the use of the **DIALOG**(form;\*) syntax with the [CALL FORM](../commands-legacy/call-form.md) command to establish communication between the forms. -- You must create a window before calling the **DIALOG**(form;\*) statement. It is not possible to use the current dialog window in the process nor the window created by default for each process. Otherwise, error -9909 is generated. -- When the *\** parameter is used, the window is closed automatically following a standard action or a call to the [CANCEL](../commands-legacy/cancel.md) or [ACCEPT](../commands-legacy/accept.md) command. You do not have to manage the closing of the window itself. +- Vous pouvez combiner l'utilisation de la syntaxe **DIALOG**(form;\*) avec la commande [CALL FORM](../commands-legacy/call-form.md) pour établir une communication entre les formulaires. +- Vous devez créer une fenêtre avant d'appeler l'instruction **DIALOG**(form;\*). Il n'est pas possible d'utiliser la fenêtre de dialogue courante dans le process ni la fenêtre créée par défaut pour chaque process. Sinon, l'erreur -9909 est générée. +- Lorsque le paramètre *\** est utilisé, la fenêtre est fermée automatiquement suite à une action standard ou un appel à la commande [CANCEL](../commands-legacy/cancel.md) ou [ACCEPT](../commands-legacy/accept.md). Vous n'avez pas à gérer la fermeture de la fenêtre elle-même. #### Exemple 1 -The following example can be used to create a tool palette: +L'exemple suivant permet de créer une palette d'outils : ```4d - //Display tool palette + /Afficher la palette d'outils $palette_window:=Open form window("tools";Palette form window) - DIALOG("tools";*) //Give back the control immediately - //Display main document windowl + DIALOG("tools";*) //Rendre le contrôle immédiatement + /Afficher la fenêtre du document principal $document_window:=Open form window("doc";Plain form window) DIALOG("doc") ``` #### Exemple 2 -In a form displaying the record of a person, a "Check children" button opens a dialog to verify/modify the names and ages of their children: +Dans un formulaire affichant l'enregistrement d'une personne, un bouton ouvre un dialogue permettant de vérifier ou de modifier les noms et âges de ses enfants : ![](../assets/en/commands/pict3542015.en.png) -**Note:** The "Children" object field is represented only to show its structure for this example. +**Note :** Le champ objet "enfants" est représenté uniquement dans cet exemple afin de faire apparaître sa structure. -In the verification form, you have assigned some [Form](form.md) object properties to variables: +Dans le formulaire de vérification, vous avez assigné des propriétés d'objet [Form](form.md) aux variables : ![](../assets/en/commands/pict3541682.en.png) -Here is the code for the "Check children" button: +Voici le code du bouton "Check Children" : ```4d var $win;$n;$i : Integer var $save : Boolean ARRAY OBJECT($children;0) - OB GET ARRAY([Person]Children;"children";$children) //get the children collection - $save:=False //initialize the save variable + OB GET ARRAY([Person]Children ; "children" ;$children) //obtient la collection d'enfants + $save:=False //initialise la variable de sauvegarde $n:=Size of array($children) If($n>0) $win:=Open form window("Edit_Children";Movable form dialog box) - SET WINDOW TITLE("Check children for "+[Person]Name) - For($i;1;$n) //for each child - DIALOG("Edit_Children";$children{$i}) //displays dialog filled with values - If(OK=1) //the user clicked OK + SET WINDOW TITLE("Vérifier les enfants pour "+[Person]Name") + For($i;1 ;$n) //pour chaque enfant + DIALOG("Edit_Children" ;$children{$i}) //affiche la boîte de dialogue remplie de valeurs + If(OK=1) //l'utilisateur a cliqué sur OK $save:=True End if End for @@ -123,15 +123,15 @@ Here is the code for the "Check children" button: End if ``` -The form displays information for each child: +Le formulaire affiche des informations pour chaque enfant : ![](../assets/en/commands/pict3515152.en.png) -If values are edited and the OK button is clicked, the field is updated (the parent record must be saved afterwards). +Si des valeurs sont modifiées et que l'utilisateur clique sur le bouton OK, le champ est mis à jour (bien entendu, l'enregistrement parent devra être sauvegardé par la suite). #### Exemple 3 -The following example uses the path to a .json form to display the records in an employee list: +L'exemple suivant utilise le chemin d'un fichier .json décrivant un formulaire permettant d'afficher les enregistrements d'une liste d'employés : ```4d Open form window("/RESOURCES/OutputPersonnel.json";Plain form window) @@ -139,13 +139,13 @@ The following example uses the path to a .json form to display the records in an DIALOG("/RESOURCES/OutputPersonnel.json";*) ``` -which displays: +Résultat : ![](../assets/en/commands/pict3687439.en.png) #### Exemple 4 -The following example uses a .json file as an object and modifies a few properties: +L'exemple suivant crée un objet à partir d'un fichier .json décrivant un formulaire et en modifie certaines propriétés : ```4d var $form : Object @@ -157,13 +157,13 @@ The following example uses a .json file as an object and modifies a few properti DIALOG($form;*) ``` -The altered form is displayed with the title, logo and border modified: +Le formulaire est affiché avec la bordure, le logo et le titre modifiés : ![](../assets/en/commands/pict3688356.en.png) -#### System variables and sets +#### Variables et ensembles système -After a call to **DIALOG**, if the dialog is accepted, OK is set to 1; if it is canceled, OK is set to 0. +Après un appel à **DIALOG**, si le dialogue est accepté, OK est mis à 1 ; s'il est annulé, OK est mis à 0. #### Voir également @@ -173,3 +173,11 @@ After a call to **DIALOG**, if the dialog is accepted, OK is set to 1; if it is [CANCEL](../commands-legacy/cancel.md)\ [Form](form.md)\ [Open window](../commands-legacy/open-window.md) + +#### Propriétés + +| | | +| --------------------- | ------------------------------- | +| Numéro de commande | 40 | +| Thread safe | &cross; | +| Modifie les variables | OK, error | diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-edit.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-edit.md index dc3fdd37a5587b..609d58138f7380 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-edit.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-edit.md @@ -8,15 +8,15 @@ displayed_sidebar: docs -| Paramètres | Type | | Description | -| ---------- | ----- | - | ----------------------------------------------------------------------------------------- | -| aTable | Table | → | Table owning the form or If omitted: default table or use of project form | -| form | Text | → | Form name | -| object | Text | → | Form object name or group name | +| Paramètres | Type | | Description | +| ---------- | ----- | - | --------------------------------------------------------------------------------------------------------------------------- | +| aTable | Table | → | Table à laquelle appartient le formulaire; Si omis : Table par défaut ou utilisation d'un formulaire projet | +| form | Text | → | Form name | +| object | Text | → | Form object name or group name | -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.*
Historique diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-event-code.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-event-code.md index bafc1c940dc638..7577ebf659e42f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-event-code.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-event-code.md @@ -9,28 +9,28 @@ displayed_sidebar: docs -| Paramètres | Type | | Description | -| ---------- | ------- | - | ----------------- | -| Résultat | Integer | ← | Form event number | +| Paramètres | Type | | Description | +| ---------- | ------- | - | ----------------------------- | +| Résultat | Integer | ← | Numéro d'événement formulaire | -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* #### Description -**Form event code** returns a numeric value identifying the type of form event that has just occurred. Usually, you will use **Form event code** from within a form or object method. +**Form event code** retourne une valeur numérique qui identifie le type d'événement formulaire qui vient de se produire. Habituellement, vous utiliserez **Form event code** dans une méthode formulaire ou une méthode objet. -4D provides predefined constants (found in the *Form Events* theme) in order to compare the values returned by the **Form event code** command. Certain events are generic (generated for any type of object) and others are specific to a particular type of object. +4D fournit des constantes prédéfinies (placées dans le thème *Evénements formulaire*) permettant de comparer les valeurs retournées par la commande **Form event code**. Certains événements sont génériques (générés pour tout type d'objet), d'autres sont spécifiques à un type d'objet particulier. -For a description of events, please refer to the [**Form Events**](../Events/overview.md) section. +Pour une description des événements, veuillez vous référer à la section [**Evénements formulaire**](../Events/overview.md). #### Exemple 1 -This example shows the On Validate event being used to automatically assign (to a field) the date that the record is modified: +Cet exemple montre l'utilisation de l'événement On Validate pour assigner automatiquement (à un champ) la date de modification de l'enregistrement : ```4d -  //Method of a form +  //Méthode formulaire  Case of   // ...     :(Form event code=On Validate) @@ -40,10 +40,10 @@ This example shows the On Validate event being used to automatically assign (to #### Exemple 2 -In this example, the complete handling of a drop-down list (initialization, user clicks, and object release) is encapsulated in the method of the object: +Dans l'exemple suivant, la gestion complète d'un menu déroulant (initialisation, clics et relâchement de l'objet) est placée dans la méthode de l'objet : ```4d -  //asBurgerSize Drop-down list Object Method +  //Méthode objet du menu déroulant taTaille  Case of     :(Form event code=On Load)        ARRAY TEXT(asBurgerSize;3) @@ -52,7 +52,7 @@ In this example, the complete handling of a drop-down list (initialization, user        asBurgerSize{1}:="Large"     :(Form event code=On Clicked)        If(asBurgerSize#0) -          ALERT("You chose a "+asBurgerSize{asBurgerSize}+" burger.") +          ALERT("Vous avez choisi la taille "+asBurgerSize{asBurgerSize}+".")        End if     :(Form event code=On Unload)        CLEAR VARIABLE(asBurgerSize) @@ -61,94 +61,94 @@ In this example, the complete handling of a drop-down list (initialization, user #### Exemple 3 -This example is a template for a form method. It shows each of the possible events that can occur when a summary report uses a form as an output form: +L'exemple suivant est une méthode formulaire générique. Elle fait apparaître chacun des événements qui peuvent survenir lorsqu'un formulaire est utilisé comme formulaire sortie : ```4d -  //Method of a form being used as output form for a summary report +  //Méthode d'un formulaire sortie  $vpFormTable:=Current form table  Case of   //...     :(Form event code=On Header) -  //A header area is about to be printed +  //La zone en-tête va être imprimée ou affichée        Case of           :(Before selection($vpFormTable->)) -  //Code for the first break header goes here +  //Le code pour la première rupture d'en-tête doit être placé ici           :(Level=1) -  //Code for a break header level 1 goes here +  //Le code pour la rupture d'en-tête niveau 1 doit être placé ici           :(Level=2) -  //Code for a break header level 2 goes here +  //Le code pour la rupture d'en-tête niveau 2 doit être placé ici   //...        End case     :(Form event code=On Printing Detail) -  //A record is about to be printed -  //Code for each record goes here +  //Un enregistrement va être imprimé +  //Le code pour chaque enregistrement doit être placé ici     :(Form event code=On Printing Break) -  //A break area is about to be printed +  //Une rupture va être imprimée        Case of           :(Level=0) -  //Code for a break level 0 goes here +  //Le code pour la rupture 0 doit être placé ici           :(Level=1) -  //Code for a break level 1 goes here +  //Le code pour la rupture 1 doit être placé ici   //...        End case     :(Form event code=On Printing Footer)        If(End selection($vpFormTable->)) -  //Code for the last footer goes here +  //Le code pour le dernier pied de page doit être placé ici        Else -  //Code for a footer goes here +  //Le code pour un pied de page doit être placé ici        End if  End case ``` #### Exemple 4 -This example shows the template of a form method that handles the events that can occur for a form displayed using the [DISPLAY SELECTION](../commands-legacy/display-selection.md) or [MODIFY SELECTION](../commands-legacy/modify-selection.md) commands. For didactic purposes, it displays the nature of the event in the title bar of the form window. +L'exemple suivant montre une méthode formulaire générique qui gère les événements pouvant survenir dans un formulaire sortie quand il s'affiche à l'aide de la commande [DISPLAY SELECTION](../commands-legacy/display-selection.md) ou [MODIFY SELECTION](../commands-legacy/modify-selection.md). Dans un but informatif, elle affiche l'événement dans la barre de titre de la fenêtre. ```4d -  //A form method - Case of -    :(Form event code=On Load) -       $vsTheEvent:="The form is about to be displayed" -    :(Form event code=On Unload) -       $vsTheEvent:="The output form has been exited and is about to disappear from the screen" -    :(Form event code=On Display Detail) -       $vsTheEvent:="Displaying record #"+String(Selected record number([TheTable])) -    :(Form event code=On Menu Selected) -       $vsTheEvent:="A menu item has been selected" -    :(Form event code=On Header") -       $vsTheEvent:="The header area is about to be drawn" -    :(Form event code=On Clicked") -       $vsTheEvent:="A record has been clicked" -    :(Form event code=On Double Clicked") -       $vsTheEvent:="A record has been double clicked" -    :(Form event code=On Open Detail) -       $vsTheEvent:="The record #"+String(Selected record number([TheTable]))+" is double-clicked" -    :(Form event code=On Close Detail) -       $vsTheEvent:="Going back to the output form" -    :(Form event code=On Activate) -       $vsTheEvent:="The form's window has just become the frontmost window" -    :(Form event code=On Deactivate) -       $vsTheEvent:="The form's window is no longer the frontmost window" -    :(Form event code=On Menu Selected) -       $vsTheEvent:="A menu item has been chosen" -    :(Form event code=On Outside Call) -       $vsTheEvent:="A call from another has been received" -    Else -       $vsTheEvent:="What's going on? Event #"+String(Form event) - End case - SET WINDOW TITLE($vsTheEvent) +// Une méthode formulaire exemple + Case of + :(Form event code=On Load) + $vaEvénement:="Le formulaire va être affiché" + :(Form event code=On Unload) + $vaEvénement:="Le formulaire sortie vient de se fermer et va disparaître de l'écran" + :(Form event code=On Display Detail) + $vaEvénement:="Affichage de l'enregistrement n°"+String(Numero dans selection([LaTable])) + :(Form event code=On Menu Selected) + $vaEvénement:="Une commande de menu a été sélectionnée" + :(Form event code=Sur entête) + $vaEvénement:="L'en-tête va être imprimé ou affiché" + :(Form event code=On Clicked) + $vaEvénement:="On a cliqué sur un enregistrement" + :(Form event code=On Double Clicked) + $vaEvénement:="On a double-cliqué sur un enregistrement" + :(Form event code=On Open Detail) + $vaEvénement:="On a double-cliqué sur l'enregistrement n°"+String(Numero dans selection([LaTable])) + :(Form event code=On Close Detail) + $vaEvénement:="Retour au formulaire sortie" + :(Form event code=On Activate) + $vaEvénement:="La fenêtre du formulaire passe au premier plan" + :(Form event code=On Deactivate) + $vaEvénement:="La fenêtre du formulaire n'est plus au premier plan" + :(Form event code=On Menu Selected) + $vaEvénement:="Une ligne de menu a été sélectionnée" + :(Form event code=On Outside Call) + $vaEvénement:="Un appel extérieur a été reçu" + Else + $vaEvénement:="Que se passe-t-il ? L'événement n°"+String(Evenement formulaire) + End case + SET WINDOW TITLE($vaEvénement) ``` #### Exemple 5 -For examples on how to handle [`On Before Keystroke`](../Events/onBeforeKeystroke.md) and [`On After Keystroke`](../Events/onAfterKeystroke.md) events, see examples for the [Get edited text](../commands-legacy/get-edited-text.md), [Keystroke](../commands-legacy/keystroke.md) and [FILTER KEYSTROKE](../commands-legacy/filter-keystroke.md) commands. +Pour des exemples de gestion des événements [`On Before Keystroke`](../Events/onBeforeKeystroke.md) et [`On After Keystroke`](../Events/onAfterKeystroke.md), voir les exemples des commandes [Get edited text](../commandes-legacy/get-edited-text.md), [Keystroke](../commandes-legacy/keystroke.md) et [FILTER KEYSTROKE](../commandes-legacy/filter-keystroke.md). #### Exemple 6 -This example shows how to treat clicks and double clicks in the same way in a scrollable area: +Cet exemple montre comment traiter les clics et les doubles clics de la même manière dans une zone de défilement : ```4d -  //asChoices scrollable area object method +  //Méthode objet pour la zone de défilement asChoices  Case of     :(Form event code=On Load)        ARRAY TEXT(asChoices;...) @@ -156,7 +156,7 @@ This example shows how to treat clicks and double clicks in the same way in a sc        asChoices:=0     :((Form event code=On Clicked)|(Form event code=On Double Clicked))        If(asChoices#0) -  //An item has been clicked, do something here +  //On a cliqué sur un élément, faire quelque chose   //...        End if   //... @@ -165,10 +165,10 @@ This example shows how to treat clicks and double clicks in the same way in a sc #### Exemple 7 -This example shows how to treat clicks and double clicks using a different response. Note the use of the element zero for keeping track of the selected element: +L'exemple suivant montre comment traiter les clics et double-clics de manière différente. Notez l'utilisation de l'élément zéro pour conserver la valeur de l'élément sélectionné : ```4d -  //asChoices scrollable area object method +  //Méthode objet pour la zone de défilement asChoices  Case of     :(Form event code=On Load)        ARRAY TEXT(asChoices;...) @@ -178,9 +178,9 @@ This example shows how to treat clicks and double clicks using a different respo     :(Form event code=On Clicked)        If(asChoices#0)           If(asChoices#Num(asChoices)) -  //A new item has been clicked, do something here +  //On a cliqué sur un élément, faire quelque chose   //... -  //Save the new selected element for the next time +  //Sauvegarder l'élément nouvellement sélectionné pour la prochaine fois              asChoices{0}:=String(asChoices)           End if        Else @@ -188,7 +188,7 @@ This example shows how to treat clicks and double clicks using a different respo        End if     :(Form event code=On Double Clicked)        If(asChoices#0) -  //An item has been double clicked, do something different here +  //On a double-cliqué sur un élément, faire autre chose        End if   // ...  End case @@ -196,10 +196,10 @@ This example shows how to treat clicks and double clicks using a different respo #### Exemple 8 -This example shows how to maintain a status text information area from within a form method, using the [`On Getting Focus`](../Events/onGettingFocus.md) and [`On Losing Focus`](../Events/onLosingFocus.md) events: +L'exemple suivant montre comment maintenir une zone contenant du texte à partir d'une méthode formulaire à l'aide des événements [`On Getting Focus`](../Events/onGettingFocus.md) et [`On Losing Focus`](../Events/onLosingFocus.md) : ```4d -  //[Contacts];"Data Entry" form method +  //Méthode formulaire [Contacts];"Data Entry"  Case of     :(Form event code=On Load)        var vtStatusArea : Text @@ -209,10 +209,10 @@ This example shows how to maintain a status text information area from within a        If(($vlTableNum#0)&($vlFieldNum#0))           Case of              :($vlFieldNum=1) //Last name field -                vtStatusArea:="Enter the Last name of the Contact; it will be capitalized automatically" +                vtStatusArea:="Saisissez le nom du contact, il sera automatiquement mis en majuscules"   //...              :($vlFieldNum=10) //Zip Code field -                vtStatusArea:="Enter a 5-digit zip code; it will be checked and validated automatically" +                vtStatusArea:="Saisissez un code postal, il sera automatiquement vérifié et validé"   //...           End case        End if @@ -227,13 +227,13 @@ This example shows how to maintain a status text information area from within a Cet exemple illustre comment vous pouvez répondre à un événement de fermeture de fenêtre à l'aide d'un formulaire utilisé pour la saisie de données d'enregistrement : ```4d -  //Method for an input form +  //Méthode pour un formulaire entrée  $vpFormTable:=Current form table  Case of   //...     :(Form event code=On Close Box)        If(Modified record($vpFormTable->)) -          CONFIRM("This record has been modified. Save Changes?") +          CONFIRM("Cet enregistrement a été modifié. Voulez-vous sauvegarder les modifications ?")           If(OK=1)              ACCEPT           Else @@ -246,12 +246,12 @@ Cet exemple illustre comment vous pouvez répondre à un événement de fermetur  End case ``` -#### Example 10 +#### Exemple 10 -This example shows how to capitalize a text or alphanumeric field each time its data source value is modified: +L'exemple suivant montre comment mettre en majuscules un champ Texte ou Alphanumérique chaque fois que la valeur est modifiée : ```4d -  //[Contacts]First Name Object method +  //Méthode objet de [Contacts]First Name  Case of   //...     :(Form event code=On Data Change) @@ -260,12 +260,12 @@ This example shows how to capitalize a text or alphanumeric field each time its  End case ``` -#### Example 11 +#### Exemple 11 -The following example illustrates how to manage a deletion action in a hierarchical list: +L'exemple suivant propose une manière de gérer une action de suppression dans une liste hiérarchique : ```4d - ... //method of hierarchical list + ... //méthode objet de la liste hiérarchique :(Form event code=On Delete Action)  ARRAY LONGINT($itemsArray;0)  $Ref:=Selected list items(<>HL;$itemsArray;*) @@ -273,12 +273,12 @@ The following example illustrates how to manage a deletion action in a hierarchi    Case of     :($n=0) -       ALERT("No item selected") +       ALERT("Pas d’élément sélectionné")        OK:=0     :($n=1) -       CONFIRM("Do you want to delete this item?") +       CONFIRM("Voulez-vous supprimer cet élément ?")     :($n>1) -       CONFIRM("Do you want to delete these items?") +       CONFIRM("Voulez-vous supprimer ces éléments ?")  End case    If(OK=1) @@ -288,25 +288,25 @@ The following example illustrates how to manage a deletion action in a hierarchi  End if ``` -#### Example 12 +#### Exemple 12 -In this example, the [`On Scroll`](../Events/onScroll.md) form event allows us to synchronize the display of two pictures in a form. The following code is added in the "satellite" object method (picture field or variable): +Dans cet exemple, l'événement formulaire [`On Scroll`](../Events/onScroll.md) permet de synchroniser l'affichage de deux images dans un formulaire. Le code suivant est ajouté dans la méthode de l'objet "satellite" (champ ou variable image) : ```4d  Case of     :(Form event code=On Scroll) -  // we take the position of the left picture +  // on relève la position de l'image de gauche        OBJECT GET SCROLL POSITION(*;"satellite";vPos;hPos) -  // and we apply it to the right picture +  // on l'applique à l'image de droite        OBJECT SET SCROLL POSITION(*;"plan";vPos;hPos;*)  End case ``` -Result: https://www.youtube.com/watch?v=YIRfsW1BmHE +Résultat : https://www.youtube.com/watch?v=YIRfsW1BmHE -#### Example 13 +#### Exemple 13 -You want to draw a red rectangle around the selected cell of a list box, and you want the rectangle to move along with the list box if it is scrolled vertically by the user. In the list box object method, you can write: +Vous souhaitez dessiner un rectangle rouge autour de la cellule sélectionnée d'une list box, et vous voulez que le rectangle se déplace si l'utilisateur fait défiler verticalement la list box. Dans la méthode objet de la list box, vous pouvez écrire : ```4d  Case of @@ -314,18 +314,19 @@ You want to draw a red rectangle around the selected cell of a list box, and you     :(Form event code=On Clicked)        LISTBOX GET CELL POSITION(*;"LB1";$col;$raw)        LISTBOX GET CELL COORDINATES(*;"LB1";$col;$raw;$x1;$y1;$x2;$y2) -       OBJECT SET VISIBLE(*;"RedRect";True) //initialize a red rectangle +       OBJECT SET VISIBLE(*;"RedRect";True) //initialiser rectangle rouge        OBJECT SET COORDINATES(*;"RedRect";$x1;$y1;$x2;$y2)       :(Form event code=On Scroll)        LISTBOX GET CELL POSITION(*;"LB1";$col;$raw)        LISTBOX GET CELL COORDINATES(*;"LB1";$col;$raw;$x1;$y1;$x2;$y2)        OBJECT GET COORDINATES(*;"LB1";$xlb1;$ylb1;$xlb2;$ylb2) -       $toAdd:=LISTBOX Get headers height(*;"LB1") //height of the header so as not to overlap it -       If($ylb1+$toAdd<$y1)&($ylb2>$y2) //if we are inside the list box -  //to keep it simple, we only handle headers -  //but we should handle horizontal clipping -  //as well as scroll bars +       $toAdd:=LISTBOX Get headers height(*;"LB1") +       //tenir compte de la hauteur de l'entête pour ne pas que le rectangle empiète dessus +       If($ylb1+$toAdd<$y1)&($ylb2>$y2) //si nous sommes dans la list box +  //pour simplifier, on ne tient compte que des en-têtes +  //mais il faudrait également gérer le clipping horizontal +  //ainsi que les barres de défilement           OBJECT SET VISIBLE(*;"RedRect";True)           OBJECT SET COORDINATES(*;"RedRect";$x1;$y1;$x2;$y2)        Else @@ -335,7 +336,7 @@ You want to draw a red rectangle around the selected cell of a list box, and you  End case ``` -As a result, the red rectangle follows the scrolling of the list box: +En résultat, le rectangle rouge suit bien le défilement de la list box : ![](../assets/en/commands/pict1900395.en.png) diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-event.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-event.md index 887460886e4f56..fe03560b79f406 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-event.md @@ -17,17 +17,17 @@ displayed_sidebar: docs #### Description -**FORM Event** returns an object containing information about the form event that has just occurred.**FORM Event** returns an object containing information about the form event that has just occurred. Usually, you will use **FORM Event** from within a form or object method. +**FORM Event** returns an object containing information about the form event that has just occurred.**FORM Event** retourne un objet contenant des informations sur l'événement formulaire qui vient de se produire. Habituellement, vous utiliserez **FORM Event** à partir d'une méthode formulaire ou objet. **Objet retourné** Each returned object includes the following main properties: -| **Property** | **Type** | **Description** | -| ------------ | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| objectName | text | Nom de l'objet générant l'événement - Non inclus si l'événement est déclenché par le formulaire | -| code | integer | Valeur numérique de l'événement formulaire. | -| Description | text | Name of the form event (*e.g.* "On After Edit"). See the [**Form Events**](../Events/overview.md) section. | +| **Propriété** | **Type** | **Description** | +| ------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| objectName | text | Nom de l'objet générant l'événement - Non inclus si l'événement est déclenché par le formulaire | +| code | integer | Valeur numérique de l'événement formulaire. | +| Description | text | Name of the form event (*e.g.* "On After Edit"). See the [**Form Events**](../Events/overview.md) section. | For example, in the case of a click on a button, the object contains the following properties: diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-load.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-load.md index c4fd2d360c108e..e3944639c22ea6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-load.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/form-load.md @@ -12,18 +12,18 @@ displayed_sidebar: docs | ---------- | ------------ | - | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | aTable | Table | → | Table form to load (if omitted, load a project form) | | form | Text, Object | → | Name (string) of form (project or table), ora POSIX path (string) to a .json file describing the form, or an object describing the form to open | -| formData | Object | → | Data to associate to the form | +| formData | Object | → | Données à associer au formulaire | | \* | Opérateur | → | If passed = command applies to host database when it is executed from a component (parameter ignored outside of this context) | -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* #### Description The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents.The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents. There can only be one current form per process. -In the *form* parameter, you can pass: +Dans le paramètre *form*, vous pouvez passer soit: - the name of a form, or - the path (in POSIX syntax) to a valid .json file containing a description of the form to use, or @@ -33,7 +33,7 @@ When the command is executed from a component, it loads the component forms by d ##### formData -Optionally, you can pass parameters to the *form* using either the *formData* object or the form class object automatically instantiated by 4D if you have [associated a user class to the form](../FormEditor/properties_FormProperties.md#form-class). Any properties of the form data object will then be available from within the form context through the [Form](form.md) command. +Optionally, you can pass parameters to the *form* using either the *formData* object or the form class object automatically instantiated by 4D if you have [associated a user class to the form](../FormEditor/properties_FormProperties.md#form-class). Toutes les propriétés de l'objet de données du formulaire seront alors disponibles dans le contexte du formulaire par le biais de la commande [Form](form.md). The form data object is available in the [`On Load` form event](../Events/onLoad.md). For detailed information on the form data object, please refer to the [`DIALOG`](dialog.md) command. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/form.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/form.md index 44e483a298be01..28b000b5ffedf9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/form.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/form.md @@ -14,7 +14,7 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.*
Historique @@ -59,38 +59,38 @@ For more information, please refer to the *Page subforms* section. **Form** returns the object associated with the table form displayed on screen. In the context of an input form displayed from an output form (i.e. after a double-click on a record), the returned object contains the following property: -| **Property** | **Type** | **Description** | -| ------------ | -------- | ----------------------------------------- | -| parentForm | object | **Form** object of the parent output form | +| **Propriété** | **Type** | **Description** | +| ------------- | -------- | ----------------------------------------- | +| parentForm | object | **Form** object of the parent output form | #### Exemple -In a form displaying the record of a person, a "Check children" button opens a dialog to verify/modify the names and ages of their children: +Dans un formulaire affichant l'enregistrement d'une personne, un bouton ouvre un dialogue permettant de vérifier ou de modifier les noms et âges de ses enfants : ![](../assets/en/commands/pict3542015.en.png) -**Note:** The "Children" object field is represented only to show its structure for this example. +**Note :** Le champ objet "enfants" est représenté uniquement dans cet exemple afin de faire apparaître sa structure. In the verification form, you have assigned some Form object properties to inputs: ![](../assets/en/commands/pict3541682.en.png) -Here is the code for the "Check children" button: +Voici le code du bouton "Check Children" : ```4d var $win;$n;$i : Integer var $save : Boolean ARRAY OBJECT($children;0) - OB GET ARRAY([Person]Children;"children";$children) //get the children collection - $save:=False //initialize the save variable + OB GET ARRAY([Person]Children ; "children" ;$children) //obtient la collection d'enfants + $save:=False //initialise la variable de sauvegarde $n:=Size of array($children) If($n>0) $win:=Open form window("Edit_Children";Movable form dialog box) - SET WINDOW TITLE("Check children for "+[Person]Name) - For($i;1;$n) //for each child - DIALOG("Edit_Children";$children{$i}) //displays dialog filled with values - If(OK=1) //the user clicked OK + SET WINDOW TITLE("Vérifier les enfants pour "+[Person]Name") + For($i;1 ;$n) //pour chaque enfant + DIALOG("Edit_Children" ;$children{$i}) //affiche la boîte de dialogue remplie de valeurs + If(OK=1) //l'utilisateur a cliqué sur OK $save:=True End if End for @@ -103,11 +103,11 @@ Here is the code for the "Check children" button: End if ``` -The form displays information for each child: +Le formulaire affiche des informations pour chaque enfant : ![](../assets/en/commands/pict3515152.en.png) -If values are edited and the OK button is clicked, the field is updated (the parent record must be saved afterwards). +Si des valeurs sont modifiées et que l'utilisateur clique sur le bouton OK, le champ est mis à jour (bien entendu, l'enregistrement parent devra être sauvegardé par la suite). #### Voir également diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/license-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/license-info.md index e23a7377651c95..4b83833602f151 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/license-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/license-info.md @@ -56,7 +56,7 @@ L'objet retourné contient les propriétés suivantes : } ``` -| **Property** | **Type** | **Description** | **Example** | +| **Propriété** | **Type** | **Description** | **Example** | | ------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | | name | string | Commercial name | "4D Developer Professional vXX" | | key | number | ID of the installed product. A unique number is associated to a 4D application (such as 4D Server, 4D in local mode, 4D Desktop, etc.) installed on a machine. This number is encrypted. | 12356789 | @@ -73,15 +73,15 @@ L'objet retourné contient les propriétés suivantes : Each object of the `products` collection can have the following properties: -| **Property** | | **Type** | **Description** | **Example** | -| ------------ | ------------------------------------------------------------------------------------------ | --------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -| id | | number | License number | For available values, see the [Is license available](../commands-legacy/is-license-available.md) command | -| name | | string | License name | "4D Write - 4D Write Pro" | -| usedCount | | number | Number of consumed connections | 8 | -| allowedCount | | number | Total connections allowed for the product against the expiry dates | 15 | -| rights | | collection of objects | Rights for the product (one element per expiration date) | | -| | \[ \].count | number | Number of allowed connections | 15 (32767 means unlimited) | -| | \[ \].expirationDate | object | Date of expiration (optional, same format as above) | {"day":1, "month":11, "year":2017} | +| **Propriété** | | **Type** | **Description** | **Example** | +| ------------- | ------------------------------------------------------------------------------------------ | --------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| id | | number | License number | For available values, see the [Is license available](../commands-legacy/is-license-available.md) command | +| name | | string | License name | "4D Write - 4D Write Pro" | +| usedCount | | number | Number of consumed connections | 8 | +| allowedCount | | number | Total connections allowed for the product against the expiry dates | 15 | +| rights | | collection of objects | Rights for the product (one element per expiration date) | | +| | \[ \].count | number | Number of allowed connections | 15 (32767 means unlimited) | +| | \[ \].expirationDate | object | Date of expiration (optional, same format as above) | {"day":1, "month":11, "year":2017} | #### Exemple diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/print-form.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/print-form.md index f5595d2ff553d9..6c1522f1981adb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/print-form.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/print-form.md @@ -12,20 +12,20 @@ displayed_sidebar: docs | ---------- | ------------ | - | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | aTable | Table | → | Table owning the form, or Default table, if omitted | | form | Text, Object | → | Name (string) of the form, or a POSIX path (string) to a .json file describing the form, or an object describing the form to print | -| formData | Object | → | Data to associate to the form | +| formData | Object | → | Données à associer au formulaire | | areaStart | Integer | → | Print marker, or Beginning area (if areaEnd is specified) | | areaEnd | Integer | → | Ending area (if areaStart specified) | | Résultat | Integer | ← | Height of printed section | -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* #### Description **Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*. It is usually used to print very complex reports that require complete control over the printing process. **Print form** does not do any record processing, break processing or page breaks. These operations are your responsibility. **Print form** prints fields and variables in a fixed size frame only. -In the *form* parameter, you can pass: +Dans le paramètre *form*, vous pouvez passer soit: - the name of a form, or - the path (in POSIX syntax) to a valid .json file containing a description of the form to use (see *Form file path*), or @@ -93,7 +93,7 @@ In this case, the command will print the section included between the *areaStart **formData** -Optionally, you can pass parameters to the *form* using either the *formData* object or the form class object automatically instantiated by 4D if you have [associated a user class to the form](../FormEditor/properties_FormProperties.md#form-class). Any properties of the form data object will then be available from within the form context through the [Form](form.md) command. The form data object is available in the [`On Printing Detail` form event](../Events/onPrintingDetail.md). +Optionally, you can pass parameters to the *form* using either the *formData* object or the form class object automatically instantiated by 4D if you have [associated a user class to the form](../FormEditor/properties_FormProperties.md#form-class). Toutes les propriétés de l'objet de données du formulaire seront alors disponibles dans le contexte du formulaire par le biais de la commande [Form](form.md). The form data object is available in the [`On Printing Detail` form event](../Events/onPrintingDetail.md). For detailed information on the form data object, please refer to the [`DIALOG`](dialog.md) command. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/process-activity.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/process-activity.md index 62c71b0f1476ab..67ed63a91a79bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/process-activity.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/process-activity.md @@ -10,7 +10,7 @@ displayed_sidebar: docs | Paramètres | Type | | Description | | ---------- | ------- | - | -------------------------------------------------------------------------------------- | -| sessionID | Text | → | Session ID | +| sessionID | Text | → | ID de session | | options | Integer | → | Return options | | Résultat | Object | ← | Snapshot of running processes and/or (4D Server only) user sessions | diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/process-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/process-info.md index d3b1629374eeef..381c4fa5ef6ca2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/process-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/process-info.md @@ -38,7 +38,7 @@ L'objet retourné contient les propriétés suivantes : | name | Text | Nom du process | | number | Integer | Process number | | preemptive | Boolean | True if run preemptive, false otherwise | -| sessionID | Text | Session UUID | +| sessionID | Text | UUID de la session | | state | Integer | Current status. Possible values: see below | | systemID | Text | ID for the user process, 4D process or spare process | | type | Integer | Running process type. Possible values: see below | @@ -122,7 +122,7 @@ L'objet retourné contient les propriétés suivantes : ::: -Here is an example of output object: +Voici un exemple d'objet de sortie : ```json diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/session-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/session-info.md index a5d28625659ea0..11587780f4e6e0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/session-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/session-info.md @@ -8,48 +8,48 @@ displayed_sidebar: docs -| Paramètres | Type | | Description | -| ---------- | ------- | :-: | ----------------------------- | -| sessionID | Integer | → | Session ID | -| Résultat | Object | ← | Information about the session | +| Paramètres | Type | | Description | +| ---------- | ------- | :-: | --------------------------- | +| sessionID | Integer | → | ID de session | +| Résultat | Object | ← | Informations sur la session |
Historique -| Release | Modifications | -| ------- | ------------------------------ | -| 20 R8 | Support of standalone sessions | -| 20 R7 | Ajout | +| Release | Modifications | +| ------- | -------------------------------------- | +| 20 R8 | Prise en charge des sessions autonomes | +| 20 R7 | Ajout |
#### Description -The `Session info` command returns an object describing the session whose ID you pass in the *sessionID* parameter.. If you pass an invalid *sessionID*, the command returns a null object. +La commande `Session info` retourne un objet décrivant la session dont vous passez l'ID dans le paramètre *sessionID*. Si vous transmettez une *sessionID* invalide, la commande renvoie un objet nul. L'objet retourné contient les propriétés suivantes : | Propriété | Type | Description | | ---------------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | type | Text | Type de session : "remote", "storedProcedure", "standalone" | -| userName | Text | 4D user name (same value as [`Session.userName`](../API/SessionClass.md#username)) | +| userName | Text | Nom d'utilisateur 4D (même valeur que [`Session.userName`](../API/SessionClass.md#username)) | | machineName | Text | Sessions distantes : nom de la machine distante. Session procédures stockées : nom de la machine serveur. Session autonome : nom de la machine | | systemUserName | Text | Sessions distantes : nom de la session système ouverte sur la machine distante. | | IPAddress | Text | Adresse IP de la machine distante | | hostType | Text | Type d'hôte : "windows" ou "mac" | | creationDateTime | Date ISO 8601 | Date et heure de création de la session. Session autonome : date et heure de démarrage de l'application | | state | Text | État de la session : "active", "postponed", "sleeping" | -| ID | Text | Session UUID (same value as [`Session.id`](../API/SessionClass.md#id)) | +| ID | Text | UUID de la session (même valeur que [`Session.id`](../API/SessionClass.md#id)) | | persistentID | Text | Sessions distantes : ID persistant de la session | :::note -This command returns the [`.info`](../API/SessionClass.md#info) property of the *sessionID* session. To get information about the current session, you can directly call `Session.info`. +Cette commande renvoie la propriété [`.info`](../API/SessionClass.md#info) de la session *sessionID*. Pour obtenir des informations sur la session en cours, vous pouvez appeler directement `Session.info`. ::: -Here is an example of output object: +Voici un exemple d'objet de sortie : ```json diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/session-storage.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/session-storage.md index 0257ef9341aecb..2c99ee19c7683b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/session-storage.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/session-storage.md @@ -17,10 +17,10 @@ displayed_sidebar: docs
Historique -| Release | Modifications | -| ------- | ------------------------------ | -| 20 R8 | Support of standalone sessions | -| 20 R6 | Ajout | +| Release | Modifications | +| ------- | -------------------------------------- | +| 20 R8 | Prise en charge des sessions autonomes | +| 20 R6 | Ajout |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/session.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/session.md index 443d1bc26dfb04..589de0680023dc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/session.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/session.md @@ -18,7 +18,7 @@ displayed_sidebar: docs | Release | Modifications | | ------- | ------------------------------------------------------------------------- | -| 20 R8 | Support of standalone sessions | +| 20 R8 | Prise en charge des sessions autonomes | | 20 R5 | Prise en charge des sessions utilisateurs distants et procédures stockées | | 18 R6 | Ajout | diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md index b16fd0935b4ea9..da3c5d186bca7b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md @@ -15,7 +15,7 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* #### Description diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/web-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/web-server.md index 99896f652bd064..b6619915684906 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/web-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/web-server.md @@ -15,7 +15,7 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.*
Historique diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md index 61a0ee17452811..93265f9a7c63a3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md @@ -814,6 +814,20 @@ Vous n'obtiendrez pas le résultat souhaité car la valeur null sera évaluée p $vSingles:=ds.Person.query("spouse = null") //syntaxe valide ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + **Not equal to et les collections** diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-19/API/EntityClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-19/API/EntityClass.md index 1ac36b6930292d..659d9e0e979124 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-19/API/EntityClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-19/API/EntityClass.md @@ -1021,7 +1021,7 @@ S'il n'y a pas d'entité suivante valide dans l'entity selection (i.e. vous ête La fonction `.previous()` retourne une référence vers l'entité précédente dans l'entity selection à laquelle appartient l'entité. -| +vrai si l'action de suppression a été effectuée avec succès, sinon Faux. Si l'entité n'appartient à aucune entity selection (i.e. [.getSelection( )](#getselection) retourne Null), la fonction renvoie une valeur Null. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md index 5811bbf1c49580..3a567d27863a02 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md @@ -937,7 +937,7 @@ Les formules contenues dans les requêtes peuvent recevoir des paramètres via $ | Inclus parmi | IN | Retourne les données égales à au moins une des valeurs d'une collection ou d'un ensemble de valeurs, prend en charge le joker de recherche (@) | | Contient mot-clé | % | Les mots-clés peuvent être utilisés avec les attributs de type texte ou image | -- Peut être un **placeholder** (voir **Utiliser des placeholders** ci-dessous) ou toute expression correspondant à la propriété du type de donnée. **value** : valeur à comparer à la valeur courante de la propriété pour chaque entité de l'entity selection. Notez que, en cas de non-concordance avec les types scalaires (texte, date, numérique...), 4D tentera si possible de convertir le type de **value** dans le type de données de l'attribut pour une gestion plus facile des valeurs provenant d'Internet. Par exemple, si la chaîne "v20" est entrée en tant que **value** pour la comparer avec un attribut Integer, elle sera convertie en nombre 20. +- **value** : valeur à comparer à la valeur courante de la propriété pour chaque entité de l'entity selection. Peut être un **placeholder** (voir **Utiliser des placeholders** ci-dessous) ou toute expression correspondant à la propriété du type de donnée. Notez que, en cas de non-concordance avec les types scalaires (texte, date, numérique...), 4D tentera si possible de convertir le type de **value** dans le type de données de l'attribut pour une gestion plus facile des valeurs provenant d'Internet. Par exemple, si la chaîne "v20" est entrée en tant que **value** pour la comparer avec un attribut Integer, elle sera convertie en nombre 20. Lorsque vous utilisez une valeur constante, les règles suivantes doivent être respectées : - Les valeurs constantes de type **texte** peuvent être passées avec ou sans guillemets (voir **Utilisation des guillemets** ci-dessous). Pour rechercher une chaîne dans une chaîne (recherche de type "contient"), utilisez le symbole joker (@) dans valeur pour isoler la chaîne à chercher, comme dans cet exemple : "@Smith@". Les mots-clés suivants sont interdits pour des constantes de type texte : true, false. - Valeurs constantes de type**booléen**: **true** or **false** (sensible à la casse). @@ -1032,6 +1032,20 @@ Vous n'obtiendrez pas le résultat souhaité car la valeur null sera évaluée p $vSingles:=ds.Person.query("spouse = null") //syntaxe valide ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### Not equal to et les collections Lors d'une recherche dans les attributs d'objets de dataclass contenant des collections, le comparateur "not equal to *value*" (`#` ou `!=`) trouvera les éléments dont TOUTES les propriétés sont différentes de *value* (et non ceux dont AU MOINS une propriété est différente de *value*, ce qui est le cas des autres comparateurs). Fondamentalement, cela équivaut à rechercher "Not(chercher éléments de la collection pour lesquels la propriété vaut *value*"). Par exemple, avec les entités suivantes : @@ -1136,7 +1150,7 @@ ds.People.query("places.locations[a].kind= :1 and places.locations[a].city= :2"; #### Recherches dans les relations N vers N -ORDA propose une syntaxe spéciale pour faciliter les recherches dans les relations N vers N. ORDA propose une syntaxe spéciale pour faciliter les recherches dans les relations N vers N. Dans ce contexte, vous pouvez avoir besoin de rechercher des valeurs différentes à l'aide de l'opérateur `AND` MAIS dans le même attribut. Par exemple, considérez la structure suivante : +ORDA propose une syntaxe spéciale pour faciliter les recherches dans les relations N vers N. ORDA propose une syntaxe spéciale pour faciliter les recherches dans les relations N vers N. Dans ce contexte, vous pouvez avoir besoin de rechercher des valeurs différentes à l'aide de l'opérateur `AND` MAIS dans le même attribut. ORDA propose une syntaxe spéciale pour faciliter les recherches dans les relations N vers N. Dans ce contexte, vous pouvez avoir besoin de rechercher des valeurs différentes à l'aide de l'opérateur `AND` MAIS dans le même attribut. Par exemple, considérez la structure suivante : ![alt-text](../assets/en/API/manytomany.png) diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/API/EntityClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/API/EntityClass.md index e2bb07a7454f34..0719530fffc84c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/API/EntityClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/API/EntityClass.md @@ -964,34 +964,34 @@ Sinon, vous pouvez passer l'option `dk reload if stamp changed` dans le paramèt L'objet retourné par `.lock()` contient les propriétés suivantes : -| Propriété | | Type | Description | -| --------------------------------- | ----------------------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| success | | boolean | vrai si l'action de verrouillage a été effectuée avec succès (ou si l'entité est déjà verrouillée dans le process courant), sinon faux. | -| | | | ***Disponible uniquement si l'option `dk reload if stamp changed` a été utilisée*** | -| **wasReloaded** | | boolean | vrai si l'entité a été correctement rechargée, sinon faux. | -| | | | ***Disponible uniquement en cas d'erreur :*** | -| status(\*) | | number | Code d'erreur, voir ci-dessous | -| statusText(\*) | | text | Description de l'erreur, voir ci-dessous | -| | | | ***Disponible uniquement en cas d'erreur de verrouillage pessimiste :*** | -| lockKindText | | text | "Locked by record" si verrouillage par un process 4D, "Locked by session" si verrouillage par une session REST | -| lockInfo | | object | Information sur l'origine du verrouillage. Les propriétés retournées dépendent de l'origine du verrouillage (process 4D ou session REST). | -| | | | ***Disponible uniquement pour un verrouillage par process 4D :*** | -| | task_id | number | ID du process | -| | user_name | text | Nom d'utilisateur de la session sur la machine | -| | user4d_alias | text | Nom ou alias de l'utilisateur 4D | -| | user4d_id | number | Identifiant utilisateur dans le répertoire de la base 4D | -| | host_name | text | Nom de la machine | -| | task_name | text | Nom du process | -| | client_version | text | Version du client | -| | | | ***Disponible uniquement pour le verrouillage d'une session REST :*** | -| | host | text | \| URL ayant verrouillé l'entité (ex : "www.myserver.com") \\ | -| | IPAddr | text | Adresse IP d'origine du verrouillage (ex. 127.0.0.1") | -| | userAgent | text | userAgent de l'origine du verouillage (ex : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | -| | | | ***Disponible uniquement en cas d'erreur critique*** (clé primaire dupliquée, disque plein...) : | -| errors | | collection of objects | | -| | message | text | Message d'erreur | -| | component signature | text | signature du composant interne (e.g. "dmbg" pour le composant de base de données) | -| | errCode | number | Code d'erreur | +| Propriété | | Type | Description | +| --------------------------------- | ----------------------------------- | --------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| success | | boolean | vrai si l'action de verrouillage a été effectuée avec succès (ou si l'entité est déjà verrouillée dans le process courant), sinon faux. | +| | | | ***Disponible uniquement si l'option `dk reload if stamp changed` a été utilisée*** | +| **wasReloaded** | | boolean | vrai si l'entité a été correctement rechargée, sinon faux. | +| | | | ***Disponible uniquement en cas d'erreur :*** | +| status(\*) | | number | Code d'erreur, voir ci-dessous | +| statusText(\*) | | text | Description de l'erreur, voir ci-dessous | +| | | | ***Disponible uniquement en cas d'erreur de verrouillage pessimiste :*** | +| lockKindText | | text | "Locked by record" si verrouillage par un process 4D, "Locked by session" si verrouillage par une session REST | +| lockInfo | | object | Information sur l'origine du verrouillage. Les propriétés retournées dépendent de l'origine du verrouillage (process 4D ou session REST). | +| | | | ***Disponible uniquement pour un verrouillage par process 4D :*** | +| | task_id | number | ID du process | +| | user_name | text | Nom d'utilisateur de la session sur la machine | +| | user4d_alias | text | Nom ou alias de l'utilisateur 4D | +| | user4d_id | number | Identifiant utilisateur dans le répertoire de la base 4D | +| | host_name | text | Nom de la machine | +| | task_name | text | Nom du process | +| | client_version | text | Version du client | +| | | | ***Disponible uniquement pour le verrouillage d'une session REST :*** | +| | host | text | \| \\| URL ayant verrouillé l'entité (ex : "www.myserver.com") \\ \| | +| | IPAddr | text | Adresse IP d'origine du verrouillage (ex. 127.0.0.1") | +| | userAgent | text | userAgent de l'origine du verouillage (ex : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | +| | | | ***Disponible uniquement en cas d'erreur critique*** (clé primaire dupliquée, disque plein...) : | +| errors | | collection of objects | | +| | message | text | Message d'erreur | +| | component signature | text | signature du composant interne (e.g. "dmbg" pour le composant de base de données) | +| | errCode | number | Code d'erreur | (\*) Les valeurs suivantes peuvent être retournées dans les propriétés *status* et *statusText* de l'objet *Résultat* en cas d'erreur : diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md index a4a018c7e57208..ed88b79534b996 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md @@ -70,27 +70,27 @@ La fenêtre d'erreur de syntaxe propose plusieurs options : - **Continuer** : L'exécution se poursuit. La ligne contenant l'erreur peut être partiellement exécutée, selon l'endroit où se trouve l'erreur. Continuez avec prudence : l'erreur peut empêcher le reste de votre méthode de s'exécuter correctement. Nous vous recommandons de cliquer sur **Continuer** uniquement si l'erreur se trouve dans un appel trivial (tel que `SET WINDOW TITLE`) qui n'empêche pas d'exécuter et de tester le reste de votre code. -> Astuce : pour ignorer une erreur qui se répète (par exemple, dans les boucles), vous pouvez transformer le bouton **Continuer** en bouton **Ignorer**. Maintenez la touche **Alt** (Windows) ou **Option** (macOS) enfoncée et cliquez sur le bouton **Continuer** la première fois qu'il apparaît. L'étiquette du bouton devient **Ignorer** si la boîte de dialogue est appelée à nouveau pour la même erreur. +> Astuce : pour ignorer une erreur qui se répète (par exemple, dans les boucles), vous pouvez transformer le bouton **Continuer** en bouton **Ignorer**. Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. -- **Abandonner** : Stoppe l'exécution de la méthode et revient à l'état antérieur au début de l'exécution de la méthode : +- **Abort**: Stops method execution and returns to the state before the method started executing: - Si une méthode formulaire ou méthode objet s'exécute en réponse à un événement, elle est arrêtée et vous revenez au formulaire. - Si la méthode est exécutée à partir de l'environnement de l'application, vous revenez à cet environnement. -- **Copier** : Copie les informations de débogage dans le presse-papiers. L'info décrit l'environnement interne de l'erreur (numéro, composant interne, etc.). Elles sont formatées sous forme de texte tabulé. +- **Copy**: Copies the debugging information into the clipboard. L'info décrit l'environnement interne de l'erreur (numéro, composant interne, etc.). Elles sont formatées sous forme de texte tabulé. -- **Enregistrer...** : Enregistre le contenu de la fenêtre d'erreur syntaxique et de la chaîne d'appel dans un fichier `.txt`. +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## Débogueur -Une erreur courante des débutants en matière de détection des erreurs consiste à cliquer sur **Abandonner** dans la fenêtre d'erreur de syntaxe, à revenir à l'éditeur de code et à essayer de comprendre ce qui se passe en regardant le code. Ne faites pas ça ! Vous économiserez beaucoup de temps et d'énergie en utilisant toujours le **Débogueur**. +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. Ne faites pas ça ! Vous économiserez beaucoup de temps et d'énergie en utilisant toujours le **Débogueur**. Le débogueur vous permet d'avancer lentement dans les méthodes. Il affiche toutes les informations dont vous avez besoin pour comprendre pourquoi une erreur s'est produite. Une fois que vous avez ces informations, vous savez comment corriger l'erreur. -Une autre raison d'utiliser le débogueur est le développement du code. Il peut arriver que vous écriviez un algorithme plus complexe que d'habitude. Malgré tous les sentiments d'accomplissement, vous ne pouvez pas être totalement sûr que votre codage est 100% correct. Au lieu de l'exécuter "à l'aveugle", vous pouvez utiliser la commande `TRACE` au début de votre code, puis l'exécuter pas à pas pour garder un œil sur ce qui se passe. +Une autre raison d'utiliser le débogueur est le développement du code. Il peut arriver que vous écriviez un algorithme plus complexe que d'habitude. Malgré tous les sentiments d'accomplissement, vous ne pouvez pas être totalement sûr que votre codage est 100% correct. Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## Ruptures/sauts Dans le processus de débogage, vous pouvez avoir besoin de sauter le traçage de certaines parties du code jusqu'à une certaine ligne. Ou bien, vous pouvez vouloir tracer le code lorsqu'une expression donnée a une certaine valeur (par exemple "$myVar > 1000"), ou chaque fois qu'une commande 4D spécifique est appelée. -Ces besoins sont couverts par les fonctions **points d'arrêt** et **points d'arrêt sur commande**. Ils peuvent être configurés à partir de l'éditeur de code, du débogueur ou de l'explorateur d'exécution. +These needs are covered by **breakpoints** and **command catching** features. Ils peuvent être configurés à partir de l'éditeur de code, du débogueur ou de l'explorateur d'exécution. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md index bb48a5eadd9867..3ab10b3e454d2d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md @@ -47,33 +47,33 @@ La barre d'outils du débogueur comprend plusieurs boutons, associés aux raccou Arrêt du mode Trace et reprise du cours normal de l’exécution de la méthode. -> La combinaison **Maj**+**F5** ou **Maj**+clic sur le bouton **Reprendre exécution** provoque la reprise de l’exécution avec désactivation de tous les appels à TRACE suivants dans le process courant. avec désactivation de tous les appels à TRACE suivants dans le process courant. +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. avec désactivation de tous les appels à TRACE suivants dans le process courant. #### Exécuter pas à pas Exécute la ligne de méthode en cours, indiquée par le compteur de programme (la flèche jaune). Le débogueur passe à la ligne suivante. -Le bouton Exécuter pas à pas ne passe pas dans les sous-routines et les fonctions. Il reste au niveau de la méthode que vous êtes en train de tracer. Si vous souhaitez également tracer les appels aux sous-routines et aux fonctions, utilisez le bouton **Pas à pas détaillé**. +Le bouton Exécuter pas à pas ne passe pas dans les sous-routines et les fonctions. Il reste au niveau de la méthode que vous êtes en train de tracer. If you want to also trace subroutines and functions calls, use the **Step Into** button. -Dans le débogage distant, lors de l'exécution de la méthode sur le serveur, la méthode parente est appelée après l'exécution de la dernière ligne de méthode enfant. Si la méthode parente est exécutée du côté distant, le bouton agit de la même manière que le bouton **Reprendre exécution**. +Dans le débogage distant, lors de l'exécution de la méthode sur le serveur, la méthode parente est appelée après l'exécution de la dernière ligne de méthode enfant. If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### Exécuter pas à pas détaillé Lors de l’exécution d’une ligne qui appelle une autre méthode (sous-routine ou fonction), ce bouton provoque l’affichage de la méthode appelée dans la fenêtre du débogueur, et permet au développeur de passer pas à pas dans cette méthode. -La nouvelle méthode devient la méthode courante (en haut) dans la sous-fenêtre Fenêtre de [chaîne d'appel](#call-chain-pane) de la fenêtre du débogueur. +The new method becomes the current (top) method in the [Call Chain Pane](#call-chain-pane) of the Debugger window. -Lors de l’exécution d’une ligne qui n’appelle pas une autre méthode, ce bouton se comporte comme le bouton **Exécuter pas à pas**. +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. -#### Exécuter et sortir +#### Step Out -Si vous tracez des sous-routines et des fonctions, cliquer sur ce bouton vous permet d'exécuter l’intégralité de la méthode qui est en train d'être tracée, et de revenir à la méthode appelante. La fenêtre du débogueur retourne à la méthode précédente dans la chaîne d’appel. Si la méthode courante est la dernière méthode de la chaîne d’appel, la fenêtre du débogueur se referme. +If you are tracing subroutines and functions, clicking on this button allows you to execute the entire method currently being traced and to step back to the caller method. The Debugger window is brought back to the previous method in the call chain. If the current method is the last method in the call chain, the Debugger window is closed. -Dans le débogage distant, lors de l'exécution de la dernière ligne de la méthode, si la méthode est exécutée sur le serveur, la méthode parente est appelée. Si la méthode parente est exécutée du côté distant, le bouton agit de la même manière que le bouton Reprendre exécution. +In remote debugging, on execution of the last line of the method, if the method is executed on the server, the parent method is called. If the parent method is executed on the remote side, the button acts in the same manner as the No Trace button. -#### Pas à pas nouveau process +#### Step Into Process -Lors de l’exécution d’une ligne qui crée un nouveau process (par exemple qui appelle la commande New process), ce bouton ouvre une nouvelle fenêtre du débogueur qui vous permet de tracer la méthode de gestion du process que vous venez de créer. Lors de l’exécution d’une ligne qui ne crée pas de nouveau process, ce bouton se comporte comme le bouton Exécuter pas à pas. +On execution of a line that creates a new process (i.e., calling the New process command), this button opens a new Debugger window that allows you to trace the process method of the newly created process. On execution of a line that does not creates a new process, this button acts in the same manner as the Step Over button. #### Stopper exécution @@ -84,9 +84,9 @@ La méthode s’arrête et vous retournez là où vous étiez avant son exécuti #### Stopper et éditer -La méthode qui s'exécute lorsque vous cliquez sur ce bouton s'ouvre dans l'éditeur de code. +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Conseil** : Utilisez ce bouton lorsque vous connaissez les modifications à apporter à votre code, et le moment où elles doivent être effectuées pour pouvoir poursuivre le test de vos méthodes. Une fois vos modifications effectuées, ré-exécutez la méthode. +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. Une fois vos modifications effectuées, ré-exécutez la méthode. #### Editer méthode @@ -94,7 +94,7 @@ La méthode qui s'exécute au moment où vous cliquez sur le bouton Éditer s'ou Si vous utilisez ce bouton pour modifier une méthode, les modifications ne seront effectives que la prochaine fois qu'elle sera exécutée. -> **Astuce :** Utilisez ce bouton lorsque vous savez quels changements sont requis dans votre code et quand ils n'interfèrent pas avec le reste du code à exécuter ou à tracer. +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. #### Enregistrer paramètres diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md index 31a03cc261702d..52c5bc810f7428 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md @@ -23,7 +23,7 @@ Un seul débogueur peut déboguer une application 4D Server à un moment donné. Le débogueur associé est appelé chaque fois que 4D Server rencontre : - un point d'arrêt -- une commande `TRACE` +- a `TRACE` command - un point d'arrêt sur commande - une erreur @@ -31,7 +31,7 @@ A noter que les messages d'erreur sont envoyés à la machine du débogueur asso A noter que : -- Le code exécuté dans la méthode base `On Server Startup Database` ne peut pas être débogué à distance. Il ne peut être débogué que du côté serveur +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. Il ne peut être débogué que du côté serveur - Si aucun débogueur n'est associé, le code en cours d'exécution n'est pas arrêté par les commandes de débogage ## Associer le débogueur @@ -47,20 +47,20 @@ Vous pouvez associer le débogueur à tout client 4D distant autorisé à se con Pour associer le débogueur à un client 4D distant : -1. Dans la barre de menus de 4D Server, sélectionnez **Edition** > **Détacher le débogueur** afin que le débogueur devienne disponible pour les machines distantes (cette étape est inutile si le 4D Server tourne en mode headless). -2. Dans un client 4D distant connecté au serveur, sélectionnez **Exécuter** > **Attacher le débogueur distant** +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -Si le rattachement est accepté (voir [Demandes d'association rejetées](#demandes-dassociation-rejetees)), la commande de menu devient **Détacher le débogueur distant**. +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. Le débogueur est alors attaché au client 4D distant : - jusqu'à la fin de la session utilisateur -- jusqu'à ce que vous sélectionniez `Détacher le débogueur distant` +- until you select `Detach Remote Debugger` Pour rattacher le débogueur au serveur : -1. Sur le client 4D distant qui est associé au débogueur, sélectionnez **Exécution** > **Détacher le débogueur distant**. -2. Dans la barre de menus de 4D Server, sélectionnez **Édition** > **Attacher le débogueur**. +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > Lorsque le débogueur est attaché au serveur (par défaut), tous les process du serveur sont automatiquement exécutés en mode coopératif pour permettre le débogage. Cela peut avoir un impact significatif sur les performances. Lorsque vous n'avez pas besoin de déboguer sur la machine du serveur, il est recommandé de détacher le débogueur et de l'attacher à une machine distante si nécessaire. @@ -68,13 +68,13 @@ Pour rattacher le débogueur au serveur : 4D vous permet d'associer le débogueur à un client 4D distant ou au serveur automatiquement au démarrage : -- Sur le serveur (s'il n'est pas headless), cette option s'appelle **Attacher le débogueur au démarrage**. Lorsque le serveur est démarré, il associe automatiquement le débogueur (par défaut). +- On the server (if not headless), this option is named **Attach Debugger At Startup**. Lorsque le serveur est démarré, il associe automatiquement le débogueur (par défaut). -> **Avertissement** : Si cette option est sélectionnée pour un serveur qui est ensuite lancé en mode headless, le débogueur ne sera pas disponible pour ce serveur. +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- Sur un client 4D distant, cette option s'appelle **Attacher le débogueur distant au démarrage**. Lorsqu'elle est sélectionnée, le client 4D distant tente automatiquement d'attacher le débogueur distant à chaque connexion ultérieure à la même base de données 4D Server. Si l'association est acceptée (voir [Demandes d'association rejetées](#demandes-dassociation-rejetees)), le débogueur distant est automatiquement attaché au client 4D distant et l'option **Détacher le débogueur distant** s'affiche. +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. Lorsqu'elle est sélectionnée, le client 4D distant tente automatiquement d'attacher le débogueur distant à chaque connexion ultérieure à la même base de données 4D Server. If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. -> Ce paramètre est appliqué par projet et est stocké localement dans le fichier [`.4DPreferences`](Project/architecture.md#userpreferencesusername). +> This setting is applied per project and is stored locally in the [`.4DPreferences`](Project/architecture.md#userpreferencesusername) file. ## Demandes d'association rejetées @@ -88,5 +88,5 @@ Si une machine tente d'attacher le débogueur alors qu'il est déjà attaché, l L'attachement du débogueur dans ce cas nécessite que : -- le débogueur attaché soit détaché du serveur ou du client distant 4D en utilisant respectivement la commande de menu **Détacher le débogueur** ou **Détacher le débogueur distant** +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - la session du client distant 4D associée soit fermée. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md index 77649b300b91e3..0336812c26b1ca 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md @@ -47,4 +47,4 @@ Une fois qu’un texte a été orienté, il reste possible de modifier sa taille
-[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color(properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/ORDA/glossary.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/ORDA/glossary.md index 246fbcbd33f0af..99025bbc32ee53 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/ORDA/glossary.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/ORDA/glossary.md @@ -18,7 +18,7 @@ Un attribut est la plus petite cellule de stockage dans une base de données rel - Dans un objet dataclass, chaque propriété est un attribut de dataclass qui correspond à un champ dans la table correspondante (même nom et même type). - Dans un objet entity, les attributs d'entités sont des propriétés qui contiennent les valeurs pour les attributs du datastore correspondants. -> Les *attributs* et les *propriétés* sont des concepts similaires. "Attribut" est utilisé pour désigner les propriétés de la dataclass qui stockent les données, tandis que "propriété" est plus générique et définit une donnée stockée dans un objet. +> \> Attributes and properties are similar concepts. "Attribut" est utilisé pour désigner les propriétés de la dataclass qui stockent les données, tandis que "propriété" est plus générique et définit une donnée stockée dans un objet. ## AttributePath diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Project/components.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Project/components.md index 293bcfa4e5f97c..43cfd9fb74a321 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Project/components.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R6/Project/components.md @@ -5,7 +5,7 @@ title: Composants A 4D component is a set of 4D code and/or 4D forms representing one or more functionalities that you can add and use in your projects. For example, the [4D SVG](https://github.com/4d/4D-SVG) component adds advanced commands and an integrated rendering engine that can be used to display SVG files. -You can [develop](../Extensions/develop-components.md) and [build](../Desktop/building.md) your own 4D components, or download public components shared by the 4D community that [can be found on GitHub](https://github.com/search?q=4d-component\&type=Repositories). +You can [develop](../Extensions/develop-components.md) and [build](../Desktop/building.md) your own 4D components, or download public components shared by the 4D community that [can be found on GitHub](https://github.com/search?q=4d-component\\&type=Repositories). When developing in 4D, the component files can be transparently stored in your computer or on a Github repository. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md index a22640fda231f5..feea368a4a33ec 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md @@ -937,7 +937,7 @@ Les formules contenues dans les requêtes peuvent recevoir des paramètres via $ | Inclus parmi | IN | Retourne les données égales à au moins une des valeurs d'une collection ou d'un ensemble de valeurs, prend en charge le joker de recherche (@) | | Contient mot-clé | % | Les mots-clés peuvent être utilisés avec les attributs de type texte ou image | -- Peut être un **placeholder** (voir **Utiliser des placeholders** ci-dessous) ou toute expression correspondant à la propriété du type de donnée. **value** : valeur à comparer à la valeur courante de la propriété pour chaque entité de l'entity selection. Notez que, en cas de non-concordance avec les types scalaires (texte, date, numérique...), 4D tentera si possible de convertir le type de **value** dans le type de données de l'attribut pour une gestion plus facile des valeurs provenant d'Internet. Par exemple, si la chaîne "v20" est entrée en tant que **value** pour la comparer avec un attribut Integer, elle sera convertie en nombre 20. +- **value** : valeur à comparer à la valeur courante de la propriété pour chaque entité de l'entity selection. Peut être un **placeholder** (voir **Utiliser des placeholders** ci-dessous) ou toute expression correspondant à la propriété du type de donnée. Notez que, en cas de non-concordance avec les types scalaires (texte, date, numérique...), 4D tentera si possible de convertir le type de **value** dans le type de données de l'attribut pour une gestion plus facile des valeurs provenant d'Internet. Par exemple, si la chaîne "v20" est entrée en tant que **value** pour la comparer avec un attribut Integer, elle sera convertie en nombre 20. Lorsque vous utilisez une valeur constante, les règles suivantes doivent être respectées : - Les valeurs constantes de type **texte** peuvent être passées avec ou sans guillemets (voir **Utilisation des guillemets** ci-dessous). Pour rechercher une chaîne dans une chaîne (recherche de type "contient"), utilisez le symbole joker (@) dans valeur pour isoler la chaîne à chercher, comme dans cet exemple : "@Smith@". Les mots-clés suivants sont interdits pour des constantes de type texte : true, false. - Valeurs constantes de type**booléen**: **true** or **false** (sensible à la casse). @@ -1032,6 +1032,20 @@ Vous n'obtiendrez pas le résultat souhaité car la valeur null sera évaluée p $vSingles:=ds.Person.query("spouse = null") //syntaxe valide ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### Not equal to et les collections Lors d'une recherche dans les attributs d'objets de dataclass contenant des collections, le comparateur "not equal to *value*" (`#` ou `!=`) trouvera les éléments dont TOUTES les propriétés sont différentes de *value* (et non ceux dont AU MOINS une propriété est différente de *value*, ce qui est le cas des autres comparateurs). Fondamentalement, cela équivaut à rechercher "Not(chercher éléments de la collection pour lesquels la propriété vaut *value*"). Par exemple, avec les entités suivantes : @@ -1136,7 +1150,7 @@ ds.People.query("places.locations[a].kind= :1 and places.locations[a].city= :2"; #### Recherches dans les relations N vers N -ORDA propose une syntaxe spéciale pour faciliter les recherches dans les relations N vers N. ORDA propose une syntaxe spéciale pour faciliter les recherches dans les relations N vers N. Dans ce contexte, vous pouvez avoir besoin de rechercher des valeurs différentes à l'aide de l'opérateur `AND` MAIS dans le même attribut. Par exemple, considérez la structure suivante : +ORDA propose une syntaxe spéciale pour faciliter les recherches dans les relations N vers N. ORDA propose une syntaxe spéciale pour faciliter les recherches dans les relations N vers N. Dans ce contexte, vous pouvez avoir besoin de rechercher des valeurs différentes à l'aide de l'opérateur `AND` MAIS dans le même attribut. ORDA propose une syntaxe spéciale pour faciliter les recherches dans les relations N vers N. Dans ce contexte, vous pouvez avoir besoin de rechercher des valeurs différentes à l'aide de l'opérateur `AND` MAIS dans le même attribut. Par exemple, considérez la structure suivante : ![alt-text](../assets/en/API/manytomany.png) diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md index e2bb07a7454f34..bf12c2cc55a579 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md @@ -97,7 +97,7 @@ $myEntity.save() //sauvegarder l'entity La fonction `.clone()` crée en mémoire une nouvelle entité faisant référence au même enregistrement que l'entité d'origine. -This function allows you to update entities separately. Notez cependant que, pour des raisons de performance, la nouvelle entité partage la même référence d'attributs d'objets que l'entité clonée. +Cette fonction vous permet de mettre à jour des entités séparément. Notez cependant que, pour des raisons de performance, la nouvelle entité partage la même référence d'attributs d'objets que l'entité clonée. > Gardez à l'esprit que toutes les modifications apportées aux entités sont enregistrées dans l'enregistrement référencé uniquement lorsque la fonction [`save()`](#save) est exécutée. @@ -964,34 +964,34 @@ Sinon, vous pouvez passer l'option `dk reload if stamp changed` dans le paramèt L'objet retourné par `.lock()` contient les propriétés suivantes : -| Propriété | | Type | Description | -| --------------------------------- | ----------------------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| success | | boolean | vrai si l'action de verrouillage a été effectuée avec succès (ou si l'entité est déjà verrouillée dans le process courant), sinon faux. | -| | | | ***Disponible uniquement si l'option `dk reload if stamp changed` a été utilisée*** | -| **wasReloaded** | | boolean | vrai si l'entité a été correctement rechargée, sinon faux. | -| | | | ***Disponible uniquement en cas d'erreur :*** | -| status(\*) | | number | Code d'erreur, voir ci-dessous | -| statusText(\*) | | text | Description de l'erreur, voir ci-dessous | -| | | | ***Disponible uniquement en cas d'erreur de verrouillage pessimiste :*** | -| lockKindText | | text | "Locked by record" si verrouillage par un process 4D, "Locked by session" si verrouillage par une session REST | -| lockInfo | | object | Information sur l'origine du verrouillage. Les propriétés retournées dépendent de l'origine du verrouillage (process 4D ou session REST). | -| | | | ***Disponible uniquement pour un verrouillage par process 4D :*** | -| | task_id | number | ID du process | -| | user_name | text | Nom d'utilisateur de la session sur la machine | -| | user4d_alias | text | Nom ou alias de l'utilisateur 4D | -| | user4d_id | number | Identifiant utilisateur dans le répertoire de la base 4D | -| | host_name | text | Nom de la machine | -| | task_name | text | Nom du process | -| | client_version | text | Version du client | -| | | | ***Disponible uniquement pour le verrouillage d'une session REST :*** | -| | host | text | \| URL ayant verrouillé l'entité (ex : "www.myserver.com") \\ | -| | IPAddr | text | Adresse IP d'origine du verrouillage (ex. 127.0.0.1") | -| | userAgent | text | userAgent de l'origine du verouillage (ex : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | -| | | | ***Disponible uniquement en cas d'erreur critique*** (clé primaire dupliquée, disque plein...) : | -| errors | | collection of objects | | -| | message | text | Message d'erreur | -| | component signature | text | signature du composant interne (e.g. "dmbg" pour le composant de base de données) | -| | errCode | number | Code d'erreur | +| Propriété | | Type | Description | +| --------------------------------- | ----------------------------------- | --------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| success | | boolean | vrai si l'action de verrouillage a été effectuée avec succès (ou si l'entité est déjà verrouillée dans le process courant), sinon faux. | +| | | | ***Disponible uniquement si l'option `dk reload if stamp changed` a été utilisée*** | +| **wasReloaded** | | boolean | vrai si l'entité a été correctement rechargée, sinon faux. | +| | | | ***Disponible uniquement en cas d'erreur :*** | +| status(\*) | | number | Code d'erreur, voir ci-dessous | +| statusText(\*) | | text | Description de l'erreur, voir ci-dessous | +| | | | ***Disponible uniquement en cas d'erreur de verrouillage pessimiste :*** | +| lockKindText | | text | "Locked by record" si verrouillage par un process 4D, "Locked by session" si verrouillage par une session REST | +| lockInfo | | object | Information sur l'origine du verrouillage. Les propriétés retournées dépendent de l'origine du verrouillage (process 4D ou session REST). | +| | | | ***Disponible uniquement pour un verrouillage par process 4D :*** | +| | task_id | number | ID du process | +| | user_name | text | Nom d'utilisateur de la session sur la machine | +| | user4d_alias | text | Nom ou alias de l'utilisateur 4D | +| | user4d_id | number | Identifiant utilisateur dans le répertoire de la base 4D | +| | host_name | text | Nom de la machine | +| | task_name | text | Nom du process | +| | client_version | text | Version du client | +| | | | ***Disponible uniquement pour le verrouillage d'une session REST :*** | +| | host | text | \| \\| URL ayant verrouillé l'entité (ex : "www.myserver.com") \\ \| | +| | IPAddr | text | Adresse IP d'origine du verrouillage (ex. 127.0.0.1") | +| | userAgent | text | userAgent de l'origine du verouillage (ex : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | +| | | | ***Disponible uniquement en cas d'erreur critique*** (clé primaire dupliquée, disque plein...) : | +| errors | | collection of objects | | +| | message | text | Message d'erreur | +| | component signature | text | signature du composant interne (e.g. "dmbg" pour le composant de base de données) | +| | errCode | number | Code d'erreur | (\*) Les valeurs suivantes peuvent être retournées dans les propriétés *status* et *statusText* de l'objet *Résultat* en cas d'erreur : diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md index c5a2db7b95bfea..d584911ff4f86d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md @@ -3,11 +3,11 @@ id: OutgoingMessageClass title: OutgoingMessage --- -The `4D.OutgoingMessage` class allows you to build messages to be returned by your application functions in response to [REST requests](../REST/REST_requests.md). If the response is of type `4D.OutgoingMessage`, the REST server does not return an object but the object instance of the `OutgoingMessage` class. +La classe `4D.OutgoingMessage` vous permet de construire des messages qui seront renvoyés par les fonctions de votre application en réponse aux [requêtes REST](../REST/REST_requests.md). Lorsque la réponse est de type `4D.OutgoingMessage`, le serveur REST ne renvoie pas un objet mais une instance d'objet de la classe `OutgoingMessage`. -Typically, this class can be used in functions declared with the [`onHttpGet`](../ORDA/ordaClasses.md#onhttpget-keyword) keyword and designed to handle HTTP GET requests. Such requests are used, for example, to implement features such as download file, generate and download picture as well as receiving any content-type via a browser. +Typiquement, cette classe peut être utilisée dans les fonctions déclarées avec le mot-clé [`onHttpGet`](../ORDA/ordaClasses.md#onhttpget-keyword) et conçues pour gérer les requêtes HTTP GET. Ces requêtes sont utilisées, par exemple, pour implémenter des fonctionnalités telles que le téléchargement de fichier, la génération et le téléchargement d'images ainsi que la réception de tout content-type via un navigateur. -An instance of this class is built on 4D Server and can be sent to the browser by the [4D REST Server](../REST/gettingStarted.md) only. This class allows to use other technologies than HTTP (e.g. mobile). +Une instance de cette classe est construite sur 4D Server et peut être envoyée au navigateur via le [serveur REST 4D](../REST/gettingStarted.md) uniquement. Cette classe permet d'utiliser d'autres technologies que HTTP (par exemple, mobile).
Historique @@ -19,7 +19,7 @@ An instance of this class is built on 4D Server and can be sent to the browser b ### Exemple -In this example, a `getFile()` function is implemented in the [Datastore class](../ORDA/ordaClasses.md#datastore-class) and [can be called](../ORDA/ordaClasses.md#onhttpget-keyword) by a REST request. The purpose is to return a **testFile.pdf** file as a response to the request: +Dans cet exemple, une fonction `getFile()` est implémentée dans la [Datastore class](../ORDA/ordaClasses.md#datastore-class) et peut être [appelée](../ORDA/ordaClasses.md#onhttpget-keyword) par une requête REST. Le but est de retourner un fichier **testFile.pdf** en réponse à la requête : ```4d Class extends DataStoreImplementation @@ -29,14 +29,14 @@ exposed onHTTPGet Function getFile() : 4D.OutgoingMessage var $result:=4D.OutgoingMessage.new() var $file:=File("/RESOURCES/testFile.pdf") - $result.setBody($file.getContent()) // This is binary content + $result.setBody($file.getContent()) // contenu binaire $result.setHeader("Content-Type"; "application/pdf") return $result ``` -### OutgoingMessage Object +### Objet OutgoingMessage -4D.OutgoingMessage objects provide the following properties and functions: +Les objets 4D.OutgoingMessage fournissent les propriétés et fonctions suivantes : | | | -------------------------------------------------------------------------------------------------------------------------------------- | @@ -49,7 +49,7 @@ exposed onHTTPGet Function getFile() : 4D.OutgoingMessage :::note -A 4D.OutgoingMessage object is a [non-sharable](../Concepts/shared.md) object. +Un objet 4D.OutgoingMessage est [non partageable](../Concepts/shared.md). ::: @@ -61,16 +61,16 @@ A 4D.OutgoingMessage object is a [non-sharable](../Concepts/shared.md) object. #### Description -The `.body` property contains the outgoing message body. The following data types are supported in the `.body` property: +La propriété `.body` contient le body du message sortant. Les types de données suivants sont pris en charge dans la propriété `.body` : - text - blob - object - image -The `.body` property is read-write. +La propriété `.body` est en lecture-écriture. -You can also set the `.body` property using the [`setBody()`](#setbody) function, in which case the `content-type` header is automatically set. +Vous pouvez également définir la propriété `.body` en utilisant la fonction [`setBody()`](#setbody), auquel cas l'en-tête `content-type` est automatiquement défini. @@ -82,9 +82,9 @@ You can also set the `.body` property using the [`setBody()`](#setbody) function #### Description -The `.headers` property contains the current headers of the outgoing message as key/value pairs. +La propriété `.headers` contient les headers courants du message sortant sous forme de paires clé/valeur. -The `.headers` property is read-only. To set a header, use the [`setHeader()`](#setheader) function. +La propriété `.headers` est en lecture seule. Pour définir un header, utilisez la fonction [`setHeader()`](#setheader). @@ -96,31 +96,31 @@ The `.headers` property is read-only. To set a header, use the [`setHeader()`](# -| Paramètres | Type | | Description | -| ---------- | ---- | -- | ---------------------------- | -| body | any | -> | Body of the outgoing message | +| Paramètres | Type | | Description | +| ---------- | ---- | -- | ----------------------- | +| body | any | -> | Body du message sortant | #### Description -The `.setBody()` function sets the outgoing message *body*. +La fonction `.setBody()` définit le *body* du message sortant. -The following data types are supported in the *body*: +Les types de données suivants sont pris en charge dans la propriété *body* : - Text - Blob - Object - Image -When this function is used, the content-type header is automatically set depending on the *body* type: +Lorsque cette fonction est utilisée, le header content-type est automatiquement défini en fonction du type de *body* : -- Content-Type:text/plain if the body is a Text -- Content-Type:application/octet-stream if body is a Blob -- Content-Type:application/json if body is an Object -- Content-Type:image/jpeg, image/gif... if body is an Image +- Content-Type:text/plain si le body est un texte +- Content-Type:application/octet-stream si le body est un Blob +- Content-Type:application/json si le body est un objet +- Content-Type:image/jpeg, image/gif... si le body est une image -If *body* is not of a supported value type, an error is returned. +Si *body* n'est pas un type de valeur pris en charge, une erreur est renvoyée. @@ -132,22 +132,22 @@ If *body* is not of a supported value type, an error is returned. -| Paramètres | Type | | Description | -| ---------- | ---- | -- | ---------------------------- | -| key | Text | -> | Header property to set | -| value | Text | -> | Value of the header property | +| Paramètres | Type | | Description | +| ---------- | ---- | -- | -------------------------------- | +| key | Text | -> | Propriété de header à définir | +| value | Text | -> | Valeur de la propriété de header | #### Description -The `.setHeader()` function sets the outgoing message header *key* with the provided *value*. If both parameters are not Text values, an error is raised. +La fonction `.setHeader()` fixe la clé *key* du header du message sortant avec la *value* fournie. Si les deux paramètres ne sont pas des valeurs texte, une erreur est générée. -When returning a 4D.OutgoingMessage object instance, 4D automatically sets some headers (e.g. `Set-Cookie` with `WASID4D=...` and `4DSID__ProjectName_=....`). +Lorsqu'il renvoie une instance d'objet 4D.OutgoingMessage, 4D définit automatiquement certains headers (par exemple `Set-Cookie` avec `WASID4D=...` et `4DSID__ProjectName_=....`). :::note -If you set a *value* for the "Content-Type" header *key*, make sure you call this function after the call to [`setBody()`](#setbody), because `setBody()` automatically fills this header. For a list of "Content-Type" header values, please refer to the [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md) documentation. +Si vous définissez une *value* pour la *key* du header "Content-Type", assurez-vous d'appeler cette fonction après l'appel à [`setBody()`](#setbody), car `setBody()` remplit automatiquement ce header. Pour une liste des valeurs du header "Content-Type", veuillez vous référer à la documentation de [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md). ::: @@ -161,19 +161,19 @@ If you set a *value* for the "Content-Type" header *key*, make sure you call thi -| Paramètres | Type | | Description | -| ---------- | ------- | -- | ------------- | -| status | Integer | -> | Status to set | +| Paramètres | Type | | Description | +| ---------- | ------- | -- | ---------------- | +| status | Integer | -> | Statut à définir | #### Description -The `.setStatus()` function sets the `status` property with the given *status*. +La fonction `.setStatus()` définit la propriété `status` à la valeur *status* passée. -If *status* is not an integer value, an error is raised. +Si *status* n'est pas un nombre entier, une erreur est générée. -For a list of HTTP status codes, please refer the [HTTP status code list on Wikipedia](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes). +Pour une liste des codes de statut HTTP, veuillez consulter la [liste des codes de statut HTTP](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes) sur Wikipedia. @@ -185,6 +185,6 @@ For a list of HTTP status codes, please refer the [HTTP status code list on Wiki #### Description -The `.status` property contains the current status of the outgoing message. This property can be set using the [`setStatus()`](setstatus) function. +La propriété `.status` contient le statut courant du message sortant. Cette propriété peut être définie à l'aide de la fonction [`setStatus()`](setstatus). diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/SessionClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/SessionClass.md index 781282c0554ca1..a275beecad06f6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/SessionClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/SessionClass.md @@ -274,7 +274,7 @@ La propriété `.id` contient l'identifiant :::tip -You can use this property to get the [`.storage`](#storage) object of a session thanks to the [`Session storage`](../commands-legacy/session-storage.md) command. +Vous pouvez utiliser cette propriété pour obtenir l'objet [`.storage`](#storage) d'une session grâce à la commande [`Session storage`](../commands-legacy/session-storage.md). ::: @@ -352,7 +352,7 @@ Cette propriété est uniquement disponible avec les sessions des procédures st La propriété `.info` décrit la session du client distant ou de la procédure stockée sur le serveur. -The `.info` object is the same object as the one returned by the [`Process activity`](../commands/process-activity.md) command for remote client and stored procedure sessions. +L'objet `.info` est le même objet que celui retourné dans la propriété "session" par la commande [`Process activity`](../commands/process-activity.md) pour les sessions de clients distants et des procédures stockées. L'objet `.info` contient les propriétés suivantes: @@ -532,7 +532,7 @@ Cette propriété est elle-même en **lecture seulement** mais elle retourne un :::tip -You can get the `.storage` property of a session using the [`Session storage`](../commands-legacy/session-storage.md) command. +Vous pouvez obtenir la propriété `.storage` d'une session en utilisant la commande [`Session storage`](../commands-legacy/session-storage.md). ::: diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md index a4a018c7e57208..ed88b79534b996 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md @@ -70,27 +70,27 @@ La fenêtre d'erreur de syntaxe propose plusieurs options : - **Continuer** : L'exécution se poursuit. La ligne contenant l'erreur peut être partiellement exécutée, selon l'endroit où se trouve l'erreur. Continuez avec prudence : l'erreur peut empêcher le reste de votre méthode de s'exécuter correctement. Nous vous recommandons de cliquer sur **Continuer** uniquement si l'erreur se trouve dans un appel trivial (tel que `SET WINDOW TITLE`) qui n'empêche pas d'exécuter et de tester le reste de votre code. -> Astuce : pour ignorer une erreur qui se répète (par exemple, dans les boucles), vous pouvez transformer le bouton **Continuer** en bouton **Ignorer**. Maintenez la touche **Alt** (Windows) ou **Option** (macOS) enfoncée et cliquez sur le bouton **Continuer** la première fois qu'il apparaît. L'étiquette du bouton devient **Ignorer** si la boîte de dialogue est appelée à nouveau pour la même erreur. +> Astuce : pour ignorer une erreur qui se répète (par exemple, dans les boucles), vous pouvez transformer le bouton **Continuer** en bouton **Ignorer**. Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. -- **Abandonner** : Stoppe l'exécution de la méthode et revient à l'état antérieur au début de l'exécution de la méthode : +- **Abort**: Stops method execution and returns to the state before the method started executing: - Si une méthode formulaire ou méthode objet s'exécute en réponse à un événement, elle est arrêtée et vous revenez au formulaire. - Si la méthode est exécutée à partir de l'environnement de l'application, vous revenez à cet environnement. -- **Copier** : Copie les informations de débogage dans le presse-papiers. L'info décrit l'environnement interne de l'erreur (numéro, composant interne, etc.). Elles sont formatées sous forme de texte tabulé. +- **Copy**: Copies the debugging information into the clipboard. L'info décrit l'environnement interne de l'erreur (numéro, composant interne, etc.). Elles sont formatées sous forme de texte tabulé. -- **Enregistrer...** : Enregistre le contenu de la fenêtre d'erreur syntaxique et de la chaîne d'appel dans un fichier `.txt`. +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## Débogueur -Une erreur courante des débutants en matière de détection des erreurs consiste à cliquer sur **Abandonner** dans la fenêtre d'erreur de syntaxe, à revenir à l'éditeur de code et à essayer de comprendre ce qui se passe en regardant le code. Ne faites pas ça ! Vous économiserez beaucoup de temps et d'énergie en utilisant toujours le **Débogueur**. +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. Ne faites pas ça ! Vous économiserez beaucoup de temps et d'énergie en utilisant toujours le **Débogueur**. Le débogueur vous permet d'avancer lentement dans les méthodes. Il affiche toutes les informations dont vous avez besoin pour comprendre pourquoi une erreur s'est produite. Une fois que vous avez ces informations, vous savez comment corriger l'erreur. -Une autre raison d'utiliser le débogueur est le développement du code. Il peut arriver que vous écriviez un algorithme plus complexe que d'habitude. Malgré tous les sentiments d'accomplissement, vous ne pouvez pas être totalement sûr que votre codage est 100% correct. Au lieu de l'exécuter "à l'aveugle", vous pouvez utiliser la commande `TRACE` au début de votre code, puis l'exécuter pas à pas pour garder un œil sur ce qui se passe. +Une autre raison d'utiliser le débogueur est le développement du code. Il peut arriver que vous écriviez un algorithme plus complexe que d'habitude. Malgré tous les sentiments d'accomplissement, vous ne pouvez pas être totalement sûr que votre codage est 100% correct. Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## Ruptures/sauts Dans le processus de débogage, vous pouvez avoir besoin de sauter le traçage de certaines parties du code jusqu'à une certaine ligne. Ou bien, vous pouvez vouloir tracer le code lorsqu'une expression donnée a une certaine valeur (par exemple "$myVar > 1000"), ou chaque fois qu'une commande 4D spécifique est appelée. -Ces besoins sont couverts par les fonctions **points d'arrêt** et **points d'arrêt sur commande**. Ils peuvent être configurés à partir de l'éditeur de code, du débogueur ou de l'explorateur d'exécution. +These needs are covered by **breakpoints** and **command catching** features. Ils peuvent être configurés à partir de l'éditeur de code, du débogueur ou de l'explorateur d'exécution. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md index 78e3639891e4cd..8d4efe9ff45077 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md @@ -52,33 +52,33 @@ La barre d'outils du débogueur comprend plusieurs boutons, associés aux raccou Arrêt du mode Trace et reprise du cours normal de l’exécution de la méthode. -> La combinaison **Maj**+**F5** ou **Maj**+clic sur le bouton **Reprendre exécution** provoque la reprise de l’exécution avec désactivation de tous les appels à TRACE suivants dans le process courant. avec désactivation de tous les appels à TRACE suivants dans le process courant. +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. avec désactivation de tous les appels à TRACE suivants dans le process courant. #### Exécuter pas à pas Exécute la ligne de méthode en cours, indiquée par le compteur de programme (la flèche jaune). Le débogueur passe à la ligne suivante. -Le bouton Exécuter pas à pas ne passe pas dans les sous-routines et les fonctions. Il reste au niveau de la méthode que vous êtes en train de tracer. Si vous souhaitez également tracer les appels aux sous-routines et aux fonctions, utilisez le bouton **Pas à pas détaillé**. +Le bouton Exécuter pas à pas ne passe pas dans les sous-routines et les fonctions. Il reste au niveau de la méthode que vous êtes en train de tracer. If you want to also trace subroutines and functions calls, use the **Step Into** button. -Dans le débogage distant, lors de l'exécution de la méthode sur le serveur, la méthode parente est appelée après l'exécution de la dernière ligne de méthode enfant. Si la méthode parente est exécutée du côté distant, le bouton agit de la même manière que le bouton **Reprendre exécution**. +Dans le débogage distant, lors de l'exécution de la méthode sur le serveur, la méthode parente est appelée après l'exécution de la dernière ligne de méthode enfant. If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### Exécuter pas à pas détaillé Lors de l’exécution d’une ligne qui appelle une autre méthode (sous-routine ou fonction), ce bouton provoque l’affichage de la méthode appelée dans la fenêtre du débogueur, et permet au développeur de passer pas à pas dans cette méthode. -La nouvelle méthode devient la méthode courante (en haut) dans la sous-fenêtre Fenêtre de [chaîne d'appel](#call-chain-pane) de la fenêtre du débogueur. +The new method becomes the current (top) method in the [Call Chain Pane](#call-chain-pane) of the Debugger window. -Lors de l’exécution d’une ligne qui n’appelle pas une autre méthode, ce bouton se comporte comme le bouton **Exécuter pas à pas**. +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. -#### Exécuter et sortir +#### Step Out -Si vous tracez des sous-routines et des fonctions, cliquer sur ce bouton vous permet d'exécuter l’intégralité de la méthode qui est en train d'être tracée, et de revenir à la méthode appelante. La fenêtre du débogueur retourne à la méthode précédente dans la chaîne d’appel. Si la méthode courante est la dernière méthode de la chaîne d’appel, la fenêtre du débogueur se referme. +If you are tracing subroutines and functions, clicking on this button allows you to execute the entire method currently being traced and to step back to the caller method. The Debugger window is brought back to the previous method in the call chain. If the current method is the last method in the call chain, the Debugger window is closed. -Dans le débogage distant, lors de l'exécution de la dernière ligne de la méthode, si la méthode est exécutée sur le serveur, la méthode parente est appelée. Si la méthode parente est exécutée du côté distant, le bouton agit de la même manière que le bouton Reprendre exécution. +In remote debugging, on execution of the last line of the method, if the method is executed on the server, the parent method is called. If the parent method is executed on the remote side, the button acts in the same manner as the No Trace button. -#### Pas à pas nouveau process +#### Step Into Process -Lors de l’exécution d’une ligne qui crée un nouveau process (par exemple qui appelle la commande New process), ce bouton ouvre une nouvelle fenêtre du débogueur qui vous permet de tracer la méthode de gestion du process que vous venez de créer. Lors de l’exécution d’une ligne qui ne crée pas de nouveau process, ce bouton se comporte comme le bouton Exécuter pas à pas. +On execution of a line that creates a new process (i.e., calling the New process command), this button opens a new Debugger window that allows you to trace the process method of the newly created process. On execution of a line that does not creates a new process, this button acts in the same manner as the Step Over button. #### Stopper exécution @@ -89,9 +89,9 @@ La méthode s’arrête et vous retournez là où vous étiez avant son exécuti #### Stopper et éditer -La méthode qui s'exécute lorsque vous cliquez sur ce bouton s'ouvre dans l'éditeur de code. +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Conseil** : Utilisez ce bouton lorsque vous connaissez les modifications à apporter à votre code, et le moment où elles doivent être effectuées pour pouvoir poursuivre le test de vos méthodes. Une fois vos modifications effectuées, ré-exécutez la méthode. +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. Une fois vos modifications effectuées, ré-exécutez la méthode. #### Editer méthode @@ -99,7 +99,7 @@ La méthode qui s'exécute au moment où vous cliquez sur le bouton Éditer s'ou Si vous utilisez ce bouton pour modifier une méthode, les modifications ne seront effectives que la prochaine fois qu'elle sera exécutée. -> **Astuce :** Utilisez ce bouton lorsque vous savez quels changements sont requis dans votre code et quand ils n'interfèrent pas avec le reste du code à exécuter ou à tracer. +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. #### Enregistrer paramètres diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md index a2139ce61ce959..c6c01f871839d0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md @@ -24,7 +24,7 @@ Un seul débogueur peut déboguer une application 4D Server à un moment donné. Le débogueur associé est appelé chaque fois que 4D Server rencontre : - un point d'arrêt -- une commande `TRACE` +- a `TRACE` command - un point d'arrêt sur commande - une erreur @@ -32,7 +32,7 @@ A noter que les messages d'erreur sont envoyés à la machine du débogueur asso A noter que : -- Le code exécuté dans la méthode base `On Server Startup Database` ne peut pas être débogué à distance. Il ne peut être débogué que du côté serveur +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. Il ne peut être débogué que du côté serveur - Si aucun débogueur n'est associé, le code en cours d'exécution n'est pas arrêté par les commandes de débogage ## Associer le débogueur @@ -48,20 +48,20 @@ Vous pouvez associer le débogueur à tout client 4D distant autorisé à se con Pour associer le débogueur à un client 4D distant : -1. Dans la barre de menus de 4D Server, sélectionnez **Edition** > **Détacher le débogueur** afin que le débogueur devienne disponible pour les machines distantes (cette étape est inutile si le 4D Server tourne en mode headless). -2. Dans un client 4D distant connecté au serveur, sélectionnez **Exécuter** > **Attacher le débogueur distant** +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -Si le rattachement est accepté (voir [Demandes d'association rejetées](#demandes-dassociation-rejetees)), la commande de menu devient **Détacher le débogueur distant**. +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. Le débogueur est alors attaché au client 4D distant : - jusqu'à la fin de la session utilisateur -- jusqu'à ce que vous sélectionniez `Détacher le débogueur distant` +- until you select `Detach Remote Debugger` Pour rattacher le débogueur au serveur : -1. Sur le client 4D distant qui est associé au débogueur, sélectionnez **Exécution** > **Détacher le débogueur distant**. -2. Dans la barre de menus de 4D Server, sélectionnez **Édition** > **Attacher le débogueur**. +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > Lorsque le débogueur est attaché au serveur (par défaut), tous les process du serveur sont automatiquement exécutés en mode coopératif pour permettre le débogage. Cela peut avoir un impact significatif sur les performances. Lorsque vous n'avez pas besoin de déboguer sur la machine du serveur, il est recommandé de détacher le débogueur et de l'attacher à une machine distante si nécessaire. @@ -69,13 +69,13 @@ Pour rattacher le débogueur au serveur : 4D vous permet d'associer le débogueur à un client 4D distant ou au serveur automatiquement au démarrage : -- Sur le serveur (s'il n'est pas headless), cette option s'appelle **Attacher le débogueur au démarrage**. Lorsque le serveur est démarré, il associe automatiquement le débogueur (par défaut). +- On the server (if not headless), this option is named **Attach Debugger At Startup**. Lorsque le serveur est démarré, il associe automatiquement le débogueur (par défaut). -> **Avertissement** : Si cette option est sélectionnée pour un serveur qui est ensuite lancé en mode headless, le débogueur ne sera pas disponible pour ce serveur. +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- Sur un client 4D distant, cette option s'appelle **Attacher le débogueur distant au démarrage**. Lorsqu'elle est sélectionnée, le client 4D distant tente automatiquement d'attacher le débogueur distant à chaque connexion ultérieure à la même base de données 4D Server. Si l'association est acceptée (voir [Demandes d'association rejetées](#demandes-dassociation-rejetees)), le débogueur distant est automatiquement attaché au client 4D distant et l'option **Détacher le débogueur distant** s'affiche. +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. Lorsqu'elle est sélectionnée, le client 4D distant tente automatiquement d'attacher le débogueur distant à chaque connexion ultérieure à la même base de données 4D Server. If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. -> Ce paramètre est appliqué par projet et est stocké localement dans le fichier [`.4DPreferences`](Project/architecture.md#userpreferencesusername). +> This setting is applied per project and is stored locally in the [`.4DPreferences`](Project/architecture.md#userpreferencesusername) file. ## Demandes d'association rejetées @@ -89,5 +89,5 @@ Si une machine tente d'attacher le débogueur alors qu'il est déjà attaché, l L'attachement du débogueur dans ce cas nécessite que : -- le débogueur attaché soit détaché du serveur ou du client distant 4D en utilisant respectivement la commande de menu **Détacher le débogueur** ou **Détacher le débogueur distant** +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - la session du client distant 4D associée soit fermée. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md index 77649b300b91e3..0336812c26b1ca 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md @@ -47,4 +47,4 @@ Une fois qu’un texte a été orienté, il reste possible de modifier sa taille
-[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color(properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md index f1c59c9a25a0e7..fa60fa7b05cbb0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md @@ -31,6 +31,7 @@ Lisez [**Les nouveautés de 4D 20 R7**](https://blog.4d.com/fr-whats-new-in-4d-2 - Les documentations du [Langage 4D](../commands/command-index.md) et du [Langage 4D Write Pro](../WritePro/commands/command-index.md) sont maintenant entièrement disponibles sur developer.4d.com. Découvrez toutes les nouvelles fonctionnalités et les modifications concernant ces documentations dans cette release note. - The [`File`](../commands/file.md) command (as well as [`4D.File.new()`](../API/FileClass.md#4dfilenew)) is stricter when it comes to checking the syntax of the *path* supplied as a parameter. +- The **describe** action [permission](../ORDA/privileges.md#permission-actions) has been removed from available actions. Access to [`/rest/$catalog`](../REST/$catalog.md) urls is no longer controlled. Session *describe* privileges are now ignored. ## 4D 20 R6 @@ -109,7 +110,7 @@ Lisez [**Les nouveautés de 4D 20 R4**](https://blog.4d.com/fr-whats-new-in-4d-v - L'utilisation d'une ancienne syntaxe pour la déclaration des paramètres (par exemple `C_TEXT($1)` ou `var $1 : Text`) est maintenant dépréciée et génère des warnings lors du typage du code, de la vérification syntaxique et de la compilation. - La cohérence des sélections est désormais préservée lorsque certains enregistrements sont supprimés puis d'autres créés (voir [ce billet de blog](https://blog.4d.com/4d-keeps-your-selections-of-records-consistent-regarding-deletion-of-records/)). - Dans la mise à jour de la [bibliothèque OpenSSL](#library-table), le niveau de sécurité SSL/TLS par défaut a été modifié de 1 à 2. Les clés RSA, DSA et DH de 1024 bits et plus et de moins de 2048 bits ainsi que les clés ECC de 160 bits et plus et de moins de 224 bits ne sont plus autorisées. Par défaut, la compression TLS était déjà désactivée dans les versions précédentes d'OpenSSL. Au niveau de sécurité 2, il ne peut pas être activé. -- Afin de permettre la vérification du mot de passe lorsque [l'annuaire des utilisateurs 4D utilise l'algorithme bcrypt](https://blog.4d.com/bcrypt-support-for-passwords/), la valeur "password" dans le paramètre *connectionInfo* de la commande [`Open datastore`](../commands/open-datastore.md) est maintenant envoyée en clair par défaut. Assurez-vous que votre méthode base "On REST authentication" peut gérer les mots de passe en clair (le troisième paramètre est alors **False**) et que `Open datastore` chiffre votre connexion en passant l'option "tls" à **True** dans *connectionInfo*. Dans certains cas spécifiques, l'option "passwordAlgorithm" peut également être utilisée pour la compatibilité (voir la commande [`Open datastore`](../commands/open-datastore.md)). +- Assurez-vous que votre méthode base "On REST authentication" peut gérer les mots de passe en clair (le troisième paramètre est alors **False**) et que `Open datastore` chiffre votre connexion en passant l'option "tls" à **True** dans *connectionInfo*. Afin de permettre la vérification du mot de passe lorsque [l'annuaire des utilisateurs 4D utilise l'algorithme bcrypt](https://blog.4d.com/bcrypt-support-for-passwords/), la valeur "password" dans le paramètre *connectionInfo* de la commande [`Open datastore`](../commands/open-datastore.md) est maintenant envoyée en clair par défaut. Dans certains cas spécifiques, l'option "passwordAlgorithm" peut également être utilisée pour la compatibilité (voir la commande [`Open datastore`](../commands/open-datastore.md)). ## 4D 20 R3 diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md index 246fbcbd33f0af..8dc9d0a979fb7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md @@ -9,7 +9,7 @@ title: Glossaire ## Action -Chaque action qui peut être effectuée sur une [ressource](#resource). Les actions disponibles sont : create, read, update, drop, execute, promote, et describe. +Chaque action qui peut être effectuée sur une [ressource](#resource). Available actions are: create, read, update, drop, execute, and promote. ## Attribut @@ -18,7 +18,7 @@ Un attribut est la plus petite cellule de stockage dans une base de données rel - Dans un objet dataclass, chaque propriété est un attribut de dataclass qui correspond à un champ dans la table correspondante (même nom et même type). - Dans un objet entity, les attributs d'entités sont des propriétés qui contiennent les valeurs pour les attributs du datastore correspondants. -> Les *attributs* et les *propriétés* sont des concepts similaires. "Attribut" est utilisé pour désigner les propriétés de la dataclass qui stockent les données, tandis que "propriété" est plus générique et définit une donnée stockée dans un objet. +> \> Attributes and properties are similar concepts. "Attribut" est utilisé pour désigner les propriétés de la dataclass qui stockent les données, tandis que "propriété" est plus générique et définit une donnée stockée dans un objet. ## AttributePath @@ -156,7 +156,7 @@ La possibilité de lancer une ou plusieurs [actions](#actions) sur des [ressourc Voir [Attribut](#attribute). -> \> Attributes and properties are similar concepts. "Attribut" est utilisé pour désigner les propriétés de la dataclass qui stockent les données, tandis que "propriété" est plus générique et définit une donnée stockée dans un objet. +> Les *attributs* et les *propriétés* sont des concepts similaires. "Attribut" est utilisé pour désigner les propriétés de la dataclass qui stockent les données, tandis que "propriété" est plus générique et définit une donnée stockée dans un objet. ## PropertyPath diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md index 541d0f1f29988f..bd5bb2e64df368 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md @@ -49,15 +49,14 @@ Les permissions contrôlent l'accès aux objets ou fonctions du datastore. Si vo Les actions disponibles sont liées à la ressource cible. -| Actions | datastore | dataclass | attribut | fonction du modèle de données ou fonction singleton | -| ------------ | ---------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **create** | Créer une entité dans n'importe quelle dataclass | Créer une entité dans cette dataclass | Créer une entité avec une valeur différente de la valeur par défaut autorisée pour cet attribut (ignoré pour les attributs alias). | n/a | -| **read** | Lire les attributs de n'importe quelle dataclass | Lire les attributs de cette dataclass | Lire ce contenu d'attribut | n/a | -| **update** | Mettre à jour les attributs dans n'importe quelle dataclass. | Mettre à jour les attributs de cette dataclass. | Mettre à jour le contenu de cet attribut (ignoré pour les attributs alias). | n/a | -| **drop** | Supprimer des données dans n'importe quelle dataclass. | Supprimer des données dans cette dataclass. | Supprimer une valeur non nulle pour cet attribut (sauf pour les attributs alias et calculés). | n/a | -| **execute** | Exécuter n'importe quelle fonction du projet (datastore, dataclass, entity selection, entity) | Exécuter n'importe quelle fonction de dataclass. Les fonctions de dataclass, d'entité et d'entity selection sont considérées comme des fonctions de dataclass | n/a | Exécuter cette fonction | -| **describe** | Toutes les dataclass sont disponibles dans l'API /rest/$catalog | Cette dataclass est disponible dans l'API /rest/$catalog | Cet attribut est disponible dans l'API /rest/$catalog. | Cette fonction de dataclass est disponible dans l'API /rest/$catalog (non disponible avec les singletons) | -| **promote** | n/a | n/a | n/a | Associe un privilège donné lors de l'exécution de la fonction. Le privilège est temporairement ajouté à la session et supprimé à la fin de l'exécution de la fonction. Par mesure de sécurité, seul le process exécutant la fonction reçoit le privilège, et non toute la session. | +| Actions | datastore | dataclass | attribut | fonction du modèle de données ou fonction singleton | +| ----------- | ---------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **create** | Créer une entité dans n'importe quelle dataclass | Créer une entité dans cette dataclass | Créer une entité avec une valeur différente de la valeur par défaut autorisée pour cet attribut (ignoré pour les attributs alias). | n/a | +| **read** | Lire les attributs de n'importe quelle dataclass | Lire les attributs de cette dataclass | Lire ce contenu d'attribut | n/a | +| **update** | Mettre à jour les attributs dans n'importe quelle dataclass. | Mettre à jour les attributs de cette dataclass. | Mettre à jour le contenu de cet attribut (ignoré pour les attributs alias). | n/a | +| **drop** | Supprimer des données dans n'importe quelle dataclass. | Supprimer des données dans cette dataclass. | Supprimer une valeur non nulle pour cet attribut (sauf pour les attributs alias et calculés). | n/a | +| **execute** | Exécuter n'importe quelle fonction du projet (datastore, dataclass, entity selection, entity) | Exécuter n'importe quelle fonction de dataclass. Les fonctions de dataclass, d'entité et d'entity selection sont considérées comme des fonctions de dataclass | n/a | Exécuter cette fonction | +| **promote** | n/a | n/a | n/a | Associe un privilège donné lors de l'exécution de la fonction. Le privilège est temporairement ajouté à la session et supprimé à la fin de l'exécution de la fonction. Par mesure de sécurité, seul le process exécutant la fonction reçoit le privilège, et non toute la session. | **Notes :** @@ -67,10 +66,7 @@ Les actions disponibles sont liées à la ressource cible. - Valeurs par défaut : dans l'implémentation actuelle, seul *Null* est disponible en tant que valeur par défaut. - En mode REST [force login](../REST/authUsers.md/#force-login-mode), la fonction [`authentify()`](../REST/authUsers.md#function-authentify) est toujours exécutable par les utilisateurs guest, quelle que soit la configuration des permissions. -Le paramétrage des permissions nécessite d'être cohérent, en particulier : - -- Les permissions **update** et **drop** ont également besoin d'une permission **read** (mais **create** n'en a pas besoin) -- Pour les fonctions du modèle de données, la permission **promote** a également besoin de la permission **describe**. +Setting permissions requires to be consistent, in particular **update** and **drop** permissions also need **read** permission (but **create** does not need it). ## Privilèges et Rôles @@ -139,7 +135,6 @@ Le fichier par défaut a le contenu suivant : "create": ["none"], "update": ["none"], "drop": ["none"], - "describe": ["none"], "execute": ["none"], "promote": ["none"] } @@ -175,26 +170,25 @@ Dans Qodly Studio for 4D, le mode peut être défini en utilisant l'option [**Fo La syntaxe du fichier `roles.json` est la suivante: -| Nom de propriété | | | Type | Obligatoire | Description | -| ---------------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -------------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------- | -| privileges | | | Collection d'objets `privilege` | X | Liste de privilèges définis | -| | \[].privilege | | Text | | Nom de privilège | -| | \[].includes | | Collection de chaînes | | Liste de noms de privilèges inclus | -| roles | | | Collection d'objets `role` | | Liste de rôles définis | -| | \[].role | | Text | | Nom de rôle | -| | \[].privileges | | Collection de chaînes | | Liste de noms de privilèges inclus | -| permissions | | | Object | X | Liste d'actions autorisées | -| | allowed | | Collection d'objets `permission` | | Liste de permissions autorisées | -| | | \[].applyTo | Text | X | Nom de [ressource](#resources) cible | -| | | \[].type | Text | X | Type de [ressource](#ressources) : "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | -| | | \[].read | Collection de chaînes | | Liste de privilèges | -| | | \[].create | Collection de chaînes | | Liste de privilèges | -| | | \[].update | Collection de chaînes | | Liste de privilèges | -| | | \[].drop | Collection de chaînes | | Liste de privilèges | -| | | \[].describe | Collection de chaînes | | Liste de privilèges | -| | | \[].execute | Collection de chaînes | | Liste de privilèges | -| | | \[].promote | Collection de chaînes | | Liste de privilèges | -| forceLogin | | | Boolean | | True pour activer le [mode "forceLogin"](../REST/authUsers.md#force-login-mode) | +| Nom de propriété | | | Type | Obligatoire | Description | +| ---------------- | ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------- | +| privileges | | | Collection d'objets `privilege` | X | Liste de privilèges définis | +| | \[].privilege | | Text | | Nom de privilège | +| | \[].includes | | Collection de chaînes | | Liste de noms de privilèges inclus | +| roles | | | Collection d'objets `role` | | Liste de rôles définis | +| | \[].role | | Text | | Nom de rôle | +| | \[].privileges | | Collection de chaînes | | Liste de noms de privilèges inclus | +| permissions | | | Object | X | Liste d'actions autorisées | +| | allowed | | Collection d'objets `permission` | | Liste de permissions autorisées | +| | | \[].applyTo | Text | X | Nom de [ressource](#resources) cible | +| | | \[].type | Text | X | Type de [ressource](#ressources) : "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | +| | | \[].read | Collection de chaînes | | Liste de privilèges | +| | | \[].create | Collection de chaînes | | Liste de privilèges | +| | | \[].update | Collection de chaînes | | Liste de privilèges | +| | | \[].drop | Collection de chaînes | | Liste de privilèges | +| | | \[].execute | Collection de chaînes | | Liste de privilèges | +| | | \[].promote | Collection de chaînes | | Liste de privilèges | +| forceLogin | | | Boolean | | True pour activer le [mode "forceLogin"](../REST/authUsers.md#force-login-mode) | :::caution Rappel @@ -254,9 +248,6 @@ La bonne pratique est de garder verrouillés tous les accès aux données par d "execute": [ "none" ], - "describe": [ - "none" - ], "promote": [ "none" ] diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md index 3de9f81819307d..4fdd7379d8092c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md @@ -49,7 +49,7 @@ Les fonctionnalités ORDA relatives au verrouillage d'entité et aux transaction - Si un process verrouille une entité à partir d'un datastore distant, l'entité est verrouillée pour tous les autres process, même lorsque ces process partagent la même session (voir [Verrouillage d'entités](entities.md#entity-locking)). Si plusieurs entités pointant vers le même enregistrement ont été verrouillées dans un process, elles doivent toutes être déverrouillées dans le process pour supprimer le verrou. Si un verrou a été mis sur une entité, il est supprimé lorsqu'il n'existe plus de référence à cette entité en mémoire. - Les transactions peuvent être lancées, validées ou annulées séparément sur chaque datastore distant à l'aide des méthodes `dataStore.startTransaction( )`, `dataStore.cancelTransaction( )`, et `dataStore.validateTransaction( )`. Elles n’ont pas d’incidences sur les autres datastore. -- Les commandes classiques du langage 4D (`START TRANSACTION`, `VALIDATE TRANSACTION`, `CANCEL TRANSACTION`) s'appliquent uniquement au datastore principal (renvoyé par `ds`). +- Classic 4D language commands ([`START TRANSACTION`](../commands-legacy/start-transaction.md), [`VALIDATE TRANSACTION`](../commands-legacy/validate-transaction.md), [`CANCEL TRANSACTION`](../commands-legacy/cancel-transaction.md)) only apply to the main datastore (returned by `ds`). Si une entité d'un datastore distant est verrouillée par une transaction dans un process, les autres process ne peuvent pas la mettre à jour, même si ces process partagent la même session. - Les verrous sur les entités sont supprimés et les transactions sont annulées : - lorsque le process est tué. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Project/components.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Project/components.md index 276c10082c27b2..de20d04c2baa2e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Project/components.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/Project/components.md @@ -5,7 +5,7 @@ title: Composants A 4D component is a set of 4D code and/or 4D forms representing one or more functionalities that you can add and use in your projects. For example, the [4D SVG](https://github.com/4d/4D-SVG) component adds advanced commands and an integrated rendering engine that can be used to display SVG files. -You can [develop](../Extensions/develop-components.md) and [build](../Desktop/building.md) your own 4D components, or download public components shared by the 4D community that [can be found on GitHub](https://github.com/search?q=4d-component\&type=Repositories). +You can [develop](../Extensions/develop-components.md) and [build](../Desktop/building.md) your own 4D components, or download public components shared by the 4D community that [can be found on GitHub](https://github.com/search?q=4d-component\\&type=Repositories). When developing in 4D, the component files can be transparently stored in your computer or on a Github repository. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/code-editor/write-class-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/code-editor/write-class-method.md index f24b1fe50c15d0..c857bd40a08198 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/code-editor/write-class-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/code-editor/write-class-method.md @@ -15,7 +15,7 @@ L'éditeur de code 4D fournit un contrôle de base des erreurs de syntaxe. Un co :::note -If you are used to coding with **VS Code**, you can also use this editor with 4D code after installing the [4D-Analyzer](https://github.com/4d/4D-Analyzer-VSCode) extension. +Si vous avez l'habitude de coder avec **VS Code**, vous pouvez également utiliser cet éditeur avec le code 4D après avoir installé l'extension [4D-Analyzer](https://github.com/4d/4D-Analyzer-VSCode). ::: diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md index 82aa73fb04fda8..6706545abcaf0b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md @@ -41,4 +41,13 @@ Vous souhaitez stopper le process sélectionné parmi la collection de process a #### Voir aussi -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1634 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md index 317f3934e7860d..5fc85696b59005 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md @@ -32,4 +32,13 @@ Bien que la commande **ABORT** soit destinée à une utilisation au sein d'une m #### Voir aussi -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 156 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md index eb80632c82a884..2810a04fe366b4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md @@ -25,3 +25,13 @@ L'exemple suivant retourne la valeur absolue de -10,3, qui est 10,3 : ```4d  vVector:=Abs(-10,3) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 99 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md index 4fdbbbc2860278..dab3fef1df1f2c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ACCEPT** doit être employée dans une méthode objet ou formulaire (ou une sous-routine) pour : @@ -37,4 +34,14 @@ La commande **ACCEPT** est autorisée en mode headless, dans le contexte des zon #### Voir aussi -[CANCEL](cancel.md) \ No newline at end of file +[CANCEL](cancel.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 269 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md index 340158121a40f6..31afb9d579f087 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **ACCUMULATE** désigne les champ(s) ou variable(s) à cumuler dans un état créé à l'aide de la commande [PRINT SELECTION](print-selection.md). @@ -37,4 +34,13 @@ Reportez-vous à l'exemple de la commande [BREAK LEVEL](break-level.md). [BREAK LEVEL](break-level.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 303 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md index 6ea7ebf89658ba..93163218f4999c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md @@ -64,4 +64,13 @@ Vous voulez savoir si l'action standard **Copier** est disponible (c'est-à-dire #### Voir aussi [INVOKE ACTION](invoke-action.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1442 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md index add0a44ffd14d3..ee5100ac392768 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Activated** retourne Vrai dans une méthode formulaire lorsque la fenêtre contenant le formulaire passe au premier plan. @@ -29,4 +26,13 @@ displayed_sidebar: docs #### Voir aussi [Deactivated](deactivated.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 346 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md index 184aa0d3ca748a..670f2e408a86cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md @@ -42,4 +42,13 @@ Vous voulez connaître le statut courant de transaction : [In transaction](in-transaction.md) [RESUME TRANSACTION](resume-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspendre des transactions* \ No newline at end of file +*Suspendre des transactions* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1387 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md index de1bed9a0957ea..22b61898638873 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md @@ -103,3 +103,13 @@ Cette méthode, exécutée dans un process séparé sous 4D ou 4D Server, permet Vous obtenez des tableaux du type : ![](../assets/en/commands/pict1213741.fr.png) + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1277 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md index 63977c2b161622..7b3c633423d8b2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Compatibilité *Cette commande est apparue dans les premières versions de 4D et reste toujours utile pour créer des prototypes ou effectuer des développements simples. Toutefois, pour construire des interfaces modernes et personnalisées, il est désormais recommandé d'utiliser des formulaires génériques basés sur la commande [DIALOG](dialog.md) qui fournit des fonctionnalités avancées et un meilleur contrôle du flux de données.* @@ -91,4 +88,17 @@ La variable système OK prend la valeur 1 si l'enregistrement est validé et 0 s [CANCEL](cancel.md) [CREATE RECORD](create-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 56 | +| Thread safe | ✗ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md index 5e3df0545950e0..76b478ca8e86ec 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md @@ -35,3 +35,13 @@ Alors que les [Self](self.md) vous permettent d'ajouter des jours à une date, *   //Cette ligne fait la même chose que '$vdDemain:=Date du jour+1'  $vdDemain:=Add to date(Current date;0;0;1) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 393 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md index 57f86fa5b84814..f28fa53dec88e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Voir aussi -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 119 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md index de8909e7a6d695..65ec607bd7ebcd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md @@ -51,4 +51,13 @@ Vous souhaitez modifier temporairement la priorité des champs Texte de la table #### Voir aussi [Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1431 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md index f8bfef1478a508..5e846f6a13aa79 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md @@ -51,4 +51,13 @@ Vous souhaitez modifier temporairement la priorité des index du champ \[Docs\]C #### Voir aussi [Get adjusted index cache priority](get-adjusted-index-cache-priority.md) -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1430 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md index 32fde04a233341..22620c2427ad70 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md @@ -49,4 +49,13 @@ Vous souhaitez modifier temporairement la priorité des champs scalaires de la t #### Voir aussi [Get adjusted table cache priority](get-adjusted-table-cache-priority.md) -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1429 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md index 9a22e248c0909a..476eeb36536905 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **After** retourne Vrai pour le cycle d'exécution Après. @@ -26,4 +23,13 @@ Si vous souhaitez que la phase **After** du cycle d'exécution soit générée, #### Voir aussi -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 31 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md index a4b5d76f6fa095..75d60a66b883a4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md @@ -66,4 +66,13 @@ Ce code affiche la boîte de dialogue d'alerte suivante : [CONFIRM](confirm.md) [DISPLAY NOTIFICATION](display-notification.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 41 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md index faf0f4e36c4038..af6e2485e09e8a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md @@ -15,7 +15,7 @@ displayed_sidebar: docs #### Description -La commande **ALL RECORDS** sélectionne tous les enregistrements de *laTable* pour le process courant. **ALL RECORDS** fait du premier enregistrement de la sélection l'enregistrement courant et le charge en mémoire. **ALL RECORDS** retourne les enregistrements dans l'ordre par défaut, qui est l'ordre dans lequel ils ont été stockés sur le disque. +La commande **ALL RECORDS** sélectionne tous les enregistrements de *laTable* pour le process courant.fait du premier enregistrement de la sélection l'enregistrement courant et le charge en mémoire. **ALL RECORDS** retourne les enregistrements dans l'ordre par défaut, qui est l'ordre dans lequel ils ont été stockés sur le disque. #### Exemple @@ -33,4 +33,15 @@ L'exemple suivant affiche tous les enregistrements de la table \[Personnes\] : [ORDER BY](order-by.md) [QUERY](query.md) [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 47 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md index b783e484dd6546..e13affc9dcf6b4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **APPEND DATA TO PASTEBOARD** ajoute dans le conteneur les données du type spécifié dans *typeDonnées* présentes dans le BLOB *données*. @@ -211,4 +208,14 @@ Si les données dans le BLOB sont correctement ajoutées au conteneur, la variab [CLEAR PASTEBOARD](clear-pasteboard.md) [SET PICTURE TO PASTEBOARD](set-picture-to-pasteboard.md) -[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) \ No newline at end of file +[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 403 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md index c9633be2a0950d..9806dfe3e59a7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md @@ -37,4 +37,14 @@ L'exemple suivant ouvre un document existant qui s'appelle “Note”, ajoute à #### Voir aussi [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 265 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md index 563a0ffdad99e2..cd5c965729576a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **APPEND MENU ITEM** ajoute une ou plusieurs ligne(s) au menu dont vous avez passé le numéro ou la référence dans *menu.* @@ -78,4 +75,14 @@ Ensuite, dans toute méthode formulaire ou projet, vous pouvez écrire : [DELETE MENU ITEM](delete-menu-item.md) [INSERT MENU ITEM](insert-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 411 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md index 669653091f55db..d1387f5c183197 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md @@ -43,4 +43,13 @@ Le code suivant : #### Voir aussi [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 911 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md index 9c4ef247203f04..b9bac7e4f8bf72 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **APPEND TO LIST** ajoute un nouvel élément à la liste hiérarchique dont vous avez passé le numéro de référence dans le paramètre *liste*. @@ -149,4 +146,13 @@ Dans le formulaire en exécution, la liste apparaîtra ainsi : [INSERT IN LIST](insert-in-list.md) [SET LIST ITEM](set-list-item.md) [SET LIST ITEM PARAMETER](set-list-item-parameter.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 376 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md index 0604dd5d1ac4b3..83bd4f2d64d5cd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -La fonction **Application file** retourne le nom long (c'est-à-dire le chemin d'accès complet au fichier, y compris son nom) du fichier exécutable ou de l'application 4D que vous utilisez. - -*Sous Windows* +La fonction **Application file** retourne le nom long (c'est-à-dire le chemin d'accès complet au fichier, y compris son nom) du fichier exécutable ou de l'application 4D que vous utilisez. Si, par exemple, vous utilisez 4D qui se trouve dans le répertoire \\PROGRAMMES\\4D sur le volume E, **Application file** renvoie E:\\PROGRAMMES\\4D\\4D.EXE. *Sous Mac OS* @@ -40,4 +38,13 @@ Lorsque vous démarrez votre base sous Windows, vous souhaitez vérifier qu'une #### Voir aussi [Data file](data-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 491 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md index 537f4d67dbc2c1..a71bf3d59779d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md @@ -130,4 +130,13 @@ Si le code est exécuté sur 4D Server, l'objet contient (par exemple) : [Execute on server](execute-on-server.md) [Get database parameter](get-database-parameter.md) [System info](system-info.md) -[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) \ No newline at end of file +[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1599 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md index cb5ea0ac61f19b..55d9f62bafb2f4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md @@ -41,4 +41,13 @@ Quelque part dans votre code, ailleurs que dans la *On Server Startup Database M #### Voir aussi [Application version](application-version.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 494 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md index f16d23ac7b7bdc..f8281403a35034 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md @@ -117,4 +117,13 @@ Le code suivant reconstitue le numéro de version de l'application et permet de #### Voir aussi [Application type](application-type.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 493 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md index e0baaea96cae64..aae83072444f05 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md @@ -62,4 +62,14 @@ Si l'utilisateur clique sur le bouton Stop dans le thermomètre de progression, #### Voir aussi [EDIT FORMULA](edit-formula.md) -*Présentation des ensembles* \ No newline at end of file +*Présentation des ensembles* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 70 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md index e10132f872a132..66485bb38f66a1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -**Arctan** retourne en radians la valeur de l'angle dont la tangente est spécifiée par *nombre*. - -**Note :** 4D fournit les constantes prédéfinies Pi, Degree et Radian. Pi retourne le nombre Pi (3,14159...), Degree retourne la valeur en radians d'un degré (0,01745...) et Radian retourne la valeur en degrés d'un radian (57,29577...). +**Arctan** retourne en radians la valeur de l'angle dont la tangente est spécifiée par *nombre*.4D fournit les constantes prédéfinies Pi, Degree et Radian. Pi retourne le nombre Pi (3,14159...), Degree retourne la valeur en radians d'un degré (0,01745...) et Radian retourne la valeur en degrés d'un radian (57,29577...). #### Exemple @@ -32,4 +30,13 @@ Cet exemple permet d'afficher la valeur de Pi : [Cos](cos.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 20 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md index 62f9e6df3bf386..2fe901a6c4ac33 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md @@ -59,4 +59,13 @@ Cet exemple crée un tableau local de 100 lignes contenant chacune 50 éléments #### Voir aussi -*Créer des tableaux* \ No newline at end of file +*Créer des tableaux* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1222 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md index e4863b58e424d4..8b790ff6161ace 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY BOOLEAN** crée et/ou redimensionne un tableau d'éléments de type [Booléen](# "Peut être VRAI ou FAUX") en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY BOOLEAN** crée et/ou redimensionne un tableau d'éléments de type [Booléen](# "Peut être VRAI ou FAUX") en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -59,4 +57,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type Booléen et a #### Voir aussi -[ARRAY INTEGER](array-integer.md) \ No newline at end of file +[ARRAY INTEGER](array-integer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 223 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md index 28cb9aa2b020f2..4eb91cc8c5b608 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY DATE** crée et/ou redimensionne un tableau d'éléments de type [Date](# "Date dans l'intervalle 1/1/100 à 12/31/32767") en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY DATE** crée et/ou redimensionne un tableau d'éléments de type [Date](# "Date dans l'intervalle 1/1/100 à 12/31/32767") en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -54,3 +52,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type Date et affec     ◊tabDates{$vElem}:=Current date+$vElem  End for ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 224 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md index 1bba85e2ce199e..8c5d713f3145d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY INTEGER** crée et/ou redimensionne un tableau d'éléments de type [Entier](# "Nombre entre -32 768 et +32 767 (2^15 et (2^15)-1) (Entier sur deux octets)") (2 octets) en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY INTEGER** crée et/ou redimensionne un tableau d'éléments de type [Entier](# "Nombre entre -32 768 et +32 767 (2^15 et (2^15)-1) (Entier sur deux octets)") (2 octets) en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -58,4 +56,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Entier](# "N #### Voir aussi [ARRAY LONGINT](array-longint.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 220 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md index c9a76f977c6447..ffff71502a1e4c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY LONGINT** crée et/ou redimensionne un tableau d'éléments de type [Entier long](# "Entre -2 Milliard et +2 Milliard") (4 octets) en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY LONGINT** crée et/ou redimensionne un tableau d'éléments de type [Entier long](# "Entre -2 Milliard et +2 Milliard") (4 octets) en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -58,4 +56,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Entier long] #### Voir aussi [ARRAY INTEGER](array-integer.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 221 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md index 0148bd94e6339e..e013364b665d3e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md @@ -68,4 +68,13 @@ Création et remplissage d’un tableau local d’objets : [C\_OBJECT](c-object.md) *Créer des tableaux* -*Objets (Langage)* \ No newline at end of file +*Objets (Langage)* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1221 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md index 7184ab98f836cf..dab21659528c59 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY PICTURE** crée et/ou redimensionne un tableau d'éléments de type [Image](# "Can be any Windows or Macintosh picture") en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY PICTURE** crée et/ou redimensionne un tableau d'éléments de type [Image](# "Can be any Windows or Macintosh picture") en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -61,3 +59,13 @@ Cet exemple crée un tableau interprocess d'éléments de type [Image](# "Can be  End for  ARRAY PICTURE(◊tabImages;$vlPictElem) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 279 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md index 04b3a3618acf8c..4e208ea5ab59e7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY POINTER** crée ou redimensionne un tableau d'éléments de type [Pointeur](# "A reference to another variable (including arrays and array elements), table, or field") en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY POINTER** crée ou redimensionne un tableau d'éléments de type [Pointeur](# "A reference to another variable (including arrays and array elements), table, or field") en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -56,3 +54,13 @@ Cet exemple crée un tableau interprocess d'éléments de type [Pointeur](# "A r     End if  End for ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 280 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md index 4d5087b19da998..e949dadaae4be5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY REAL** crée et/ou redimensionne un tableau d'éléments de type Réel en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY REAL** crée et/ou redimensionne un tableau d'éléments de type Réel en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, taille spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -58,4 +56,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Réel](# "Nu #### Voir aussi [ARRAY INTEGER](array-integer.md) -[ARRAY LONGINT](array-longint.md) \ No newline at end of file +[ARRAY LONGINT](array-longint.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 219 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md index ac669203c4c8d0..ab7ccbfbe77605 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY TEXT** crée et/ou redimensionne un tableau d'éléments de type [Texte](# "Une chaine de caractères jusqu'à 2 Go") en mémoire. - -* Le paramètre *nomTableau* est le nom du tableau. +La commande **ARRAY TEXT** crée et/ou redimensionne un tableau d'éléments de type [Texte](# "Une chaine de caractères jusqu'à 2 Go") en mémoire.est le nom du tableau. * Le paramètre *taille* est le nombre d'éléments du tableau. * Le paramètre *taille2* est optionnel. Si vous le spécifiez, cette commande crée un tableau à deux dimensions. Dans ce cas, *taille* spécifie le nombre de lignes et *taille2* spécifie le nombre de colonnes de chaque tableau. Chaque ligne dans un tableau à deux dimensions peut être traitée à la fois comme un élément et comme un tableau. Cela signifie que vous pouvez insérer et supprimer des tableaux entiers dans un tableau à deux dimensions, par l'intermédiaire des autres commandes de ce thème, lorsque vous travaillez avec la première dimension du tableau. @@ -55,3 +53,13 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Texte](# "Un  End for ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 222 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md index 04290e5da36fa1..d857c074b607d4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **ARRAY TIME** crée et/ou redimensionne un tableau d’éléments de type Heure en mémoire. - -**Rappel :** Dans 4D, les heures peuvent être traitées en tant que valeurs numériques. Dans les versions de 4D antérieures à la v14, il était nécessaire de combiner un tableau d’entiers longs et un format d’affichage pour gérer un tableau d’heures. +La commande **ARRAY TIME** crée et/ou redimensionne un tableau d’éléments de type Heure en mémoire.Dans 4D, les heures peuvent être traitées en tant que valeurs numériques. Dans les versions de 4D antérieures à la v14, il était nécessaire de combiner un tableau d’entiers longs et un format d’affichage pour gérer un tableau d’heures. Le paramètre *nomTableau* est le nom du tableau. @@ -64,4 +62,13 @@ Comme les tableaux d’heures acceptent des valeurs numériques, le code suivant #### Voir aussi *Créer des tableaux* -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1223 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md index f9fe148204d6bb..9f3c77d4ff8f1f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md @@ -81,4 +81,13 @@ Vous souhaiter copier un tableau texte dans une collection partagée : #### Voir aussi [COLLECTION TO ARRAY](collection-to-array.md) -*Conversions de type entre les collections et les tableaux 4D* \ No newline at end of file +*Conversions de type entre les collections et les tableaux 4D* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1563 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md index 8792f7b8228bd6..b91c0536df9e54 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ARRAY TO LIST** crée ou remplace la liste hiérarchique ou l'énumération *liste* en utilisant les éléments du tableau *tableau*. @@ -62,4 +59,14 @@ La commande **ARRAY TO LIST** génère l'erreur *\-9957* lorsqu'elle est appliqu [LIST TO ARRAY](list-to-array.md) [Load list](load-list.md) [ON ERR CALL](on-err-call.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 287 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md index a5a2b86450e5b7..ac0f77bdf24db5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md @@ -77,4 +77,14 @@ Vous souhaitez recopier la sélection d'enregistrements vers une table d'archive #### Voir aussi [SELECTION TO ARRAY](selection-to-array.md) -*Variables système* \ No newline at end of file +*Variables système* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 261 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md index a50fe695f55cb3..911bab9ba505bb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md @@ -51,4 +51,14 @@ Une assertion peut permettre de tester les paramètres passés à une méthode p [Asserted](asserted.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1129 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md index 3d563a40aee392..1e33c902ce3e57 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md @@ -40,4 +40,14 @@ Insertion d’une assertion dans l’évaluation d’une expression : [ASSERT](assert.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1132 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md index 480d5297d68796..7c7aa2ea142ef5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md @@ -88,4 +88,14 @@ Vous pouvez effectuer les calculs suivants : [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) [Subtotal](subtotal.md) -[Sum](sum.md) \ No newline at end of file +[Sum](sum.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 2 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md index f3b18bf37b675f..cc412f4a42e783 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md @@ -30,4 +30,13 @@ Passez dans le paramètre *sélecteur* le type d’information à récupérer. L #### Voir aussi -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 888 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md index 0ee2917cb8d9fb..65f6639e1fa4ba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **BACKUP** déclenche la sauvegarde de la base de données avec les paramétrages de sauvegarde courants. Aucune boîte de dialogue de confirmation n’est affichée. Une fenêtre de progression apparaît à l’écran. @@ -39,4 +36,14 @@ En cas d’incident au cours de la sauvegarde, les informations relatives à l'i [BACKUP INFO](backup-info.md) *Méthode base Sur démarrage sauvegarde* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 887 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md index 5410c448ebf3b0..e30a5b18f163d1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md @@ -54,4 +54,13 @@ Cet exemple permet de transférer une image via un BLOB : [BASE64 ENCODE](base64-encode.md) [Generate digest](generate-digest.md) *Présentation des commandes XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 896 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md index 0ae8bc545ef2cc..863d6f3af95f13 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md @@ -38,4 +38,13 @@ Par défaut, si le paramètre *\** est omis, la commande utilise un encodage Bas [BASE64 DECODE](base64-decode.md) [Generate digest](generate-digest.md) *Présentation des commandes XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 895 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md index 5c18492512dec9..eb3bd907d630f6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md @@ -32,4 +32,13 @@ Dans l'exemple suivant, un bip est émis et une alerte affichée lorsqu'aucun en #### Voir aussi -[PLAY](play.md) \ No newline at end of file +[PLAY](play.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 151 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md index 7b28209bf88b93..1c050bc937297b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -La fonction **Before selection** retourne Vrai lorsque le pointeur d'enregistrement courant se trouve avant le premier enregistrement de la sélection courante de *laTable*. **Before selection** est généralement utilisée pour vérifier si la commande [PREVIOUS RECORD](previous-record.md) a déplacé le pointeur d'enregistrement courant avant le premier enregistrement. Si la sélection courante est vide, **Before selection** retourne Vrai. +La fonction **Before selection** retourne Vrai lorsque le pointeur d'enregistrement courant se trouve avant le premier enregistrement de la sélection courante de *laTable*.est généralement utilisée pour vérifier si la commande [PREVIOUS RECORD](previous-record.md) a déplacé le pointeur d'enregistrement courant avant le premier enregistrement. Si la sélection courante est vide, **Before selection** retourne Vrai. Pour replacer le pointeur d'enregistrement courant dans la sélection courante, utilisez les commandes [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) ou [GOTO SELECTED RECORD](goto-selected-record.md). [NEXT RECORD](next-record.md) ne replace pas le pointeur d'enregistrement courant dans la sélection courante. @@ -62,4 +62,13 @@ La méthode formulaire suivante est utilisée pendant l'impression d'un état. E [FIRST RECORD](first-record.md) [Form event code](form-event-code.md) [PREVIOUS RECORD](previous-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 198 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md index 543caec4941b82..c67d9a790a7841 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Before** retourne Vrai pour le cycle d'exécution Avant. @@ -26,4 +23,13 @@ Si vous souhaitez que la phase **Before** du cycle d'exécution soit générée, #### Voir aussi -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 29 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md index 0e878da9b3465f..995b300b05393d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md @@ -42,4 +42,13 @@ A noter que le *Débogueur* de 4D évaluera le code SQL ligne par ligne. Dans ce [End SQL](end-sql.md) [SQL Get current data source](sql-get-current-data-source.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 948 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md index 2fe89861a89253..65886ad4d51677 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md @@ -76,4 +76,13 @@ Lorsque cette méthode est placée dans votre application, vous pouvez écrire : #### Voir aussi [COMPRESS BLOB](compress-blob.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 536 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md index e35f4a9c052eb7..f9d1766a0c998a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md @@ -28,4 +28,13 @@ La ligne de code suivante ajoute 100 octets au BLOB *monBlob* : #### Voir aussi -[SET BLOB SIZE](set-blob-size.md) \ No newline at end of file +[SET BLOB SIZE](set-blob-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 605 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md index 44029accc8ef28..ba7cf54420e418 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md @@ -50,4 +50,14 @@ Dans tous les cas, vous pouvez gérer les erreurs en utilisant la commande [ON E [Create document](create-document.md) [DOCUMENT TO BLOB](document-to-blob.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 526 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md index ebd1b83de79bcd..f13a4057328955 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md @@ -77,4 +77,13 @@ L'exemple suivant lit 20 valeurs entières d'un BLOB à partir de l'offset 0x200 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 549 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md index 3bb7821df819f2..10aa42e5654767 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **BLOB to list** crée une nouvelle liste hiérarchique avec les données stockées dans le BLOB *blob* à l'offset d'octet (à partir de zéro) spécifié par *offset* et retourne un numéro de référence de liste hiérarchique pour cette nouvelle liste. @@ -61,4 +58,14 @@ La variable OK prend la valeur 1 si la liste a été correctement créée, sinon #### Voir aussi -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 557 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md index d36bb9a1fa82a4..7181f3f6dfb7bf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md @@ -59,4 +59,13 @@ L'exemple suivant lit 20 valeurs de type Entier long dans un BLOB, à partir de [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 551 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md index db53d0cb42622e..7111dea25de76d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md @@ -47,4 +47,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la [PICTURE CODEC LIST](picture-codec-list.md) [PICTURE TO BLOB](picture-to-blob.md) -[READ PICTURE FILE](read-picture-file.md) \ No newline at end of file +[READ PICTURE FILE](read-picture-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 682 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md index b51794ef45009d..bc4485cb6a853e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **BLOB to print settings** remplace les paramètres d’impression courants de 4D par les paramètres stockés dans le BLOB *paramImpression*. Ce BLOB doit avoir été généré par la commande [Print settings to BLOB](print-settings-to-blob.md) ou par la commande de 4D Pack (voir ci-dessous). @@ -77,4 +74,13 @@ Vous voulez appliquer des paramètres d'impression précédemment stockés sur d #### Voir aussi -[Print settings to BLOB](print-settings-to-blob.md) \ No newline at end of file +[Print settings to BLOB](print-settings-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1434 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md index 6ef7ccbed10eb2..daa29839657e3a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md @@ -61,4 +61,13 @@ L'exemple suivant lit 20 valeurs réelles dans un BLOB à partir de l'offset 0x2 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 553 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md index 8e07975971add9..fd02ef0812a0ce 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md @@ -60,4 +60,13 @@ Après l'exécution de la commande, la variable *offset* est incrémentée du no [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 555 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md index 9b255f3c0d1cd3..17ff500ab6a75f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **BLOB TO USERS** remplace les comptes utilisateurs et les groupes présents dans le BLOB *utilisateurs* dans la base courante. Le BLOB *utilisateurs* est crypté et doit impérativement avoir été créé par la commande [USERS TO BLOB](users-to-blob.md). @@ -48,4 +45,14 @@ Si la commande est exécutée correctement, la variable système OK prend la val #### Voir aussi -[USERS TO BLOB](users-to-blob.md) \ No newline at end of file +[USERS TO BLOB](users-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 850 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md index d484df1d134aae..62e72eddcb908c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md @@ -40,4 +40,14 @@ La variable OK prend la valeur 1 si la variable a été correctement réécrite, #### Voir aussi -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 533 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md index 91897885666c75..8c2b8e2d1be83f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md @@ -46,4 +46,13 @@ Vous sélectionnez une valeur en fonction d'un attribut de champ objet, en antic [Date](date.md) [Num](num.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1537 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md index 10f1da58159078..3f6bb07ee802be 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md @@ -31,4 +31,13 @@ Si vous ne passez pas le paramètre *ensemble*, la commande utilisera l’ensemb #### Voir aussi -[CREATE SET FROM ARRAY](create-set-from-array.md) \ No newline at end of file +[CREATE SET FROM ARRAY](create-set-from-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 646 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md index ff9ea8bdb161bb..9663113519b45f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **BREAK LEVEL** spécifie le nombre de niveaux de rupture dans un état créé à l'aide de la commande [PRINT SELECTION](print-selection.md). @@ -46,4 +43,13 @@ L'exemple suivant imprime un état avec deux niveaux de rupture. La sélection e [ACCUMULATE](accumulate.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 302 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md index b66c67a166d865..5fb5f5c8bcef44 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **BRING TO FRONT** passe les fenêtres du process de numéro *process* au premier plan. Toutes les fenêtres appartenant à *process* passent au premier plan. Si le process est déjà au premier plan, la commande ne fait rien. Si le process est caché, il faut utiliser la commande [SHOW PROCESS](show-process.md) pour faire d'abord apparaître le process, sinon **BRING TO FRONT** ne fait rien. @@ -38,4 +35,13 @@ L'exemple suivant est une méthode qui peut être exécutée à partir d'une com [HIDE PROCESS](hide-process.md) [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 326 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md index a16a748f97ae73..42833825988ee3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **BUILD APPLICATION** lance le processus de génération d’application en prenant en compte les paramètres définis dans le fichier de configuration d’application courant ou le fichier de configuration défini dans le paramètre *buildAppSettings*. @@ -51,4 +48,15 @@ Si la commande échoue, une erreur est générée, que vous pouvez intercepter #### Voir aussi -[Compile project](compile-project.md) \ No newline at end of file +[Compile project](compile-project.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 871 | +| Thread safe | ✗ | +| Modifie les variables | OK, Document, error | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md index 38080d4211860a..29b8702248dad4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md @@ -52,4 +52,13 @@ Vous souhaitez obtenir des informations sur la base courante et tous les composa #### Voir aussi -[MEMORY STATISTICS](memory-statistics.md) \ No newline at end of file +[MEMORY STATISTICS](memory-statistics.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1402 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md index a429be18fb63a4..dae1a58fbce4e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md @@ -48,3 +48,13 @@ Si une méthode formulaire est exécutée, la chaîne d'appel peut contenir (par ```json [   {    "type":"formObjectMethod",    "name":"detailForm.Button",    "line":1,    "database":"myDatabase"   },   {    "type":"formMethod",    "name”:"detailForm",    "line":2,    "database":"myDatabase"   },   {    "type":"projectMethod",    "name”:"showDetailForm",    "line":2,    "database":"myDatabase”   }] ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1662 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md index 0a31a42a098bfc..d5b595db419ea0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md @@ -100,4 +100,13 @@ Vous pouvez alors ajouter d'autres messages en exécutant à nouveau la commande [CALL WORKER](call-worker.md) -[DIALOG](dialog.md) \ No newline at end of file +[DIALOG](dialog.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1391 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md index bfcac844df6e11..9bee8ba83a94b0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CALL SUBFORM CONTAINER** permet à une instance de sous-formulaire d’envoyer l’*événement* à l’objet sous-formulaire qui la contient. L’objet sous-formulaire peut alors traiter l’*événement* dans le contexte du formulaire parent. @@ -31,4 +28,13 @@ Vous pouvez passer dans *événement* tout événement formulaire prédéfini de #### Voir aussi [Form event code](form-event-code.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1086 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md index 541a0487c65fcc..d58523e78d4aba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md @@ -75,4 +75,13 @@ Voici le code de *méthodeWorker* : *A propos des workers* [CALL FORM](call-form.md) [Current process name](current-process-name.md) -[KILL WORKER](kill-worker.md) \ No newline at end of file +[KILL WORKER](kill-worker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1389 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md index 846dd370e0ef20..695b3d2c798538 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md @@ -14,7 +14,7 @@ displayed_sidebar: docs #### Description -**CANCEL TRANSACTION** annule la transaction ouverte par la commande [START TRANSACTION](start-transaction.md) de niveau correspondant dans le process courant. **CANCEL TRANSACTION** annule toutes les opérations exécutées sur les données et stockées pendant la transaction. +**CANCEL TRANSACTION** annule la transaction ouverte par la commande [START TRANSACTION](start-transaction.md) de niveau correspondant dans le process courant.annule toutes les opérations exécutées sur les données et stockées pendant la transaction. **Note :** **CANCEL TRANSACTION** est sans effet sur les modifications éventuellement effectuées dans les enregistrements courants mais non stockées - elles restent affichées après l'exécution de la commande. @@ -24,4 +24,13 @@ displayed_sidebar: docs [START TRANSACTION](start-transaction.md) [Transaction level](transaction-level.md) *Utiliser des transactions* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 241 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md index 28ba19c8f98c2a..ac868f5a21ca70 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CANCEL** doit être employée dans une méthode objet ou formulaire (ou une sous-routine) pour : @@ -50,4 +47,14 @@ Lorsque la commande [CANCEL](cancel.md) est exécutée (formulaire annulé ou an [ACCEPT](accept.md) [PAGE BREAK](page-break.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 270 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md index 57c6bc8e47f81b..1969485d60d84b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md @@ -28,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 547 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md index 0bdbea5e71bcc0..b999a605cf1ed4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **CHANGE CURRENT USER** permet de changer l'identité de l'utilisateur courant dans la base, sans devoir la quitter. Le changement d'identité peut être effectué par l'utilisateur lui-même via la boîte de dialogue de connexion à la base (lorsque la commande est appelée sans paramètres) ou directement par la commande. Lorsqu'il change d'identité, l'utilisateur abandonne ses anciens privilèges au profit de ceux de l'utilisateur choisi. @@ -68,4 +65,13 @@ L'exemple suivant affiche simplement la boîte de dialogue de connexion : #### Voir aussi [CHANGE PASSWORD](change-password.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 289 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md index d922477ba05e84..6c8ca43decb130 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CHANGE LICENSES** affiche la boîte de dialogue du Gestionnaire de licences 4D. @@ -41,4 +38,14 @@ Vous permettrez ainsi à un utilisateur d‘activer des licences sans avoir à m #### Voir aussi [License info](license-info.md) -[Is license available](is-license-available.md) \ No newline at end of file +[Is license available](is-license-available.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 637 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md index bb8adf60dbd019..9852ed540738d1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **CHANGE PASSWORD** permet de changer le mot de passe de l'utilisateur courant. Cette commande remplace le mot de passe courant par le nouveau mot de passe que vous passez dans *motDePasse*. @@ -44,4 +41,13 @@ L'exemple suivant permet à l'utilisateur de modifier son mot de passe : #### Voir aussi [CHANGE CURRENT USER](change-current-user.md) -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 186 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md index fff2a1fb098382..e8e75c1f0f41b5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md @@ -37,4 +37,13 @@ L'exemple suivant illustre l'utilisation de **Change string**. Les résultats so [Delete string](delete-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 234 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md index 3e49821bcd9b90..592b6425882109 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md @@ -34,4 +34,13 @@ L'exemple suivant utilise la fonction **Char** pour insérer un retour chariot d [Character code](character-code.md) *Codes Unicode* -*Symboles d'indice de chaîne* \ No newline at end of file +*Symboles d'indice de chaîne* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 90 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md index c71dac30559e73..da8a7f5c8601a4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md @@ -83,4 +83,13 @@ Le code suivant : #### Voir aussi [Char](char.md) -*Symboles d'indice de chaîne* \ No newline at end of file +*Symboles d'indice de chaîne* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 91 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md index ec3e1d11cde375..a539397cee9e1c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CHECK LOG FILE** affiche la boîte de dialogue de visualisation du fichier d’historique courant de la base (également accessible via la fenêtre du Centre de sécurité et de maintenance) : @@ -36,4 +33,14 @@ Vous pouvez intercepter ces erreurs à l’aide d’une méthode de gestion d’ #### Voir aussi *Erreurs du gestionnaire de sauvegarde (1401 -> 1421)* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 799 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md index ded34d05e25569..5ec6a33ff121f6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md @@ -78,3 +78,13 @@ Ce code est strictement équivalent à :        vStatut:="Divorcé"  End case ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 955 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md index 200ee7c2296974..e25c42f62857d3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CLEAR LIST** efface de la mémoire la liste hiérarchique dont vous avez passé le numéro de référence dans le paramètre *liste*. @@ -53,4 +50,13 @@ Reportez-vous à l'exemple de la fonction [BLOB to list](blob-to-list.md). [BLOB to list](blob-to-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 377 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md index 0148bdbb69099e..5aa9f2e8cbdbaf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md @@ -15,7 +15,7 @@ displayed_sidebar: docs #### Description -**CLEAR NAMED SELECTION** efface *nom* de la mémoire et donc libère la mémoire qu'elle utilisait. **CLEAR NAMED SELECTION** n'affecte pas les tables, sélections courantes ou enregistrements. Comme les sélections temporaires utilisent de la mémoire, il est conseillé de les effacer si vous n'en avez plus besoin. +**CLEAR NAMED SELECTION** efface *nom* de la mémoire et donc libère la mémoire qu'elle utilisait.n'affecte pas les tables, sélections courantes ou enregistrements. Comme les sélections temporaires utilisent de la mémoire, il est conseillé de les effacer si vous n'en avez plus besoin. Si *nom* a été créée par la commande [CUT NAMED SELECTION](cut-named-selection.md) puis traitée à l'aide de la commande [USE NAMED SELECTION](use-named-selection.md), elle n'existe plus en mémoire. Dans ce cas, vous n'avez pas besoin d'utiliser **CLEAR NAMED SELECTION**. @@ -23,4 +23,13 @@ Si *nom* a été créée par la commande [CUT NAMED SELECTION](cut-named-selecti [COPY NAMED SELECTION](copy-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 333 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md index 1a0b89f9aea5b4..4ca364c7524c99 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **CLEAR PASTEBOARD** efface entièrement le conteneur de données. Si le conteneur contient plusieurs instances des mêmes données, toutes les instances sont effacées. Après un appel à **CLEAR PASTEBOARD**, le conteneur de données est vide. @@ -41,4 +38,13 @@ Reportez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-dat #### Voir aussi -[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) \ No newline at end of file +[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 402 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md index 1c6a52a40d3cd4..0e1890a1b59aa6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md @@ -30,4 +30,13 @@ Reportez-vous à l'exemple de la fonction [Semaphore](semaphore.md "Semaphore"). [Semaphore](semaphore.md) *Sémaphores et signaux* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 144 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md index 2074dcc0f662d4..56816cb56324d3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md @@ -15,7 +15,7 @@ displayed_sidebar: docs #### Description -**CLEAR SET** efface *ensemble* de la mémoire et la libère ainsi pour d'autres utilisations. **CLEAR SET** n'a aucune conséquence sur les tables, sélections ou enregistrements. Pour sauvegarder un ensemble avant de l'effacer, utiliser la commande [SAVE SET](save-set.md). Comme les ensembles consomment de la mémoire, pensez à les effacer dès qu'ils ne sont plus nécessaires. +**CLEAR SET** efface *ensemble* de la mémoire et la libère ainsi pour d'autres utilisations.n'a aucune conséquence sur les tables, sélections ou enregistrements. Pour sauvegarder un ensemble avant de l'effacer, utiliser la commande [SAVE SET](save-set.md). Comme les ensembles consomment de la mémoire, pensez à les effacer dès qu'ils ne sont plus nécessaires. #### Exemple @@ -25,4 +25,13 @@ Reportez-vous à l'exemple de la commande [USE SET](use-set.md). [CREATE EMPTY SET](create-empty-set.md) [CREATE SET](create-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 117 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md index daa6e6b0102baf..ef45b6dac9227e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md @@ -43,4 +43,13 @@ Dans un formulaire, vous utilisez une liste déroulante appelée *asMalListeD* n #### Voir aussi -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 89 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md index b12456fd94af2a..9391330fdada60 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Clickcount** retourne, dans le contexte d'un événement clic, le nombre de fois que l'utilisateur a cliqué de manière répétée avec le même bouton de la souris. Typiquement, la commande retourne 2 pour un double-clic. @@ -61,3 +58,13 @@ Les libellés ne sont pas saisissables mais ils peuvent le devenir après un tri     End case  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1332 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md index cc4c810ab3f132..733db397eb9dde 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md @@ -36,4 +36,13 @@ L'exemple suivant permet à l'utilisateur de créer un nouveau document, écrit [Append document](append-document.md) [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 267 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md index 07cfe5d0519efe..2cee44e52554fa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CLOSE PRINTING JOB** permet de refermer la tâche d’impression préalablement ouverte par la commande [OPEN PRINTING JOB](open-printing-job.md) et d’envoyer à l’imprimante courante le document d’impression éventuellement construit. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### Voir aussi -[OPEN PRINTING JOB](open-printing-job.md) \ No newline at end of file +[OPEN PRINTING JOB](open-printing-job.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 996 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md index ba19ea672f41ea..18470602f82046 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CLOSE RESOURCE FILE** referme le fichier de ressources dont vous avez passé le numéro de référence dans *resFichier*. @@ -30,4 +27,13 @@ N'oubliez pas d'appeler finalement **CLOSE RESOURCE FILE** pour un fichier de re #### Voir aussi -[Open resource file](open-resource-file.md) \ No newline at end of file +[Open resource file](open-resource-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 498 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md index 3313ac53d2a1b2..e1f855df727d90 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **CLOSE WINDOW** referme la dernière fenêtre créée à l'aide de la commande [Open window](open-window.md) ou [Open form window](open-form-window.md) dans le process courant. S'il n'y a pas de fenêtre personnalisée ouverte, **CLOSE WINDOW** ne fait rien ; la commande ne ferme pas les fenêtres système. Si **CLOSE WINDOW** est appelée alors qu'un formulaire est actif dans la fenêtre, elle n'a pas d'effet non plus. Vous devez appeler **CLOSE WINDOW** lorsque vous avez fini d'utiliser une fenêtre ouverte avec [Open window](open-window.md) ou [Open form window](open-form-window.md). @@ -40,4 +37,13 @@ L'exemple suivant ouvre une fenêtre formulaire et crée des enregistrements à #### Voir aussi [Open form window](open-form-window.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 154 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md index 775301f692c0e1..49eee0475af832 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md @@ -64,4 +64,13 @@ Vous voulez copier différentes valeurs de propriété d'une collection d'objets #### Voir aussi [ARRAY TO COLLECTION](array-to-collection.md) -*Conversions de type entre les collections et les tableaux 4D* \ No newline at end of file +*Conversions de type entre les collections et les tableaux 4D* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1562 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md index 9cec8e5a354ab3..9d59956377a302 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md @@ -49,4 +49,13 @@ Résultat : #### Voir aussi -[TRANSFORM PICTURE](transform-picture.md) \ No newline at end of file +[TRANSFORM PICTURE](transform-picture.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 987 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md index 54bbfc9f47554d..937ee98d3e30f4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -La fonction **Command name** retourne le nom ainsi que (optionnellement) les propriétés de la commande dont le numéro a été passé dans *commande*. - -**Note :** Le numéro de chaque commande est indiqué dans l'Explorateur ainsi que dans la zone Propriétés de cette documentation. +La fonction **Command name** retourne le nom ainsi que (optionnellement) les propriétés de la commande dont le numéro a été passé dans *commande*.Le numéro de chaque commande est indiqué dans l'Explorateur ainsi que dans la zone Propriétés de cette documentation. **Note de compatibilité :** Le nom d'une commande pouvant varier au fil des versions de 4D (commandes renommées) ou en fonction de la langue de l'application, cette commande était utilisée dans les versions précédentes du programme pour désigner une commande directement via son numéro, en particulier dans les parties de code non tokenisées. Ce besoin a diminué au fil des évolutions de 4D, car pour les instructions non tokenisées (formules), 4D propose désormais une *syntaxe tokenisée* permettant de s'affranchir des variations des noms de commandes mais aussi des autres éléments comme les tables, tout en permettant de les saisir de façon lisible (pour plus d'informations sur ce point, reportez-vous à la section *Utiliser des tokens dans les formules*). Par ailleurs, par défaut la version anglaise du langage est utilisée à compter de 4D v15 (toutefois l'option "Utiliser langage français et paramètres régionaux système" de la [Is a list](is-a-list.md) des Préférences permet de continuer à utiliser la version française dans un 4D français). @@ -103,4 +101,14 @@ Par exemple, pour la commande "STOCKER ENREGISTREMENT", numéro 53, vous pouvez #### Voir aussi [EXECUTE FORMULA](execute-formula.md) -*Process 4D préemptifs* \ No newline at end of file +*Process 4D préemptifs* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 538 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md index fea7ba89fbc040..277290db9eee72 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md @@ -67,4 +67,14 @@ Si l’opération de compactage s’est déroulée correctement, la variable sys #### Voir aussi [Table fragmentation](table-fragmentation.md) -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 937 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md index 5578aff3948f05..941ac1d9113627 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md @@ -104,4 +104,13 @@ Les exemples suivants illustrent l'incidence des options dans le **contexte de l #### Voir aussi -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1756 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md index 44dbe6a82682f1..dec0fbade7e30d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Compile project** vous permet de compiler le projet hôte courant ou le projet spécifié dans le paramètre *projectFile*. Pour plus d'informations sur la compilation, consultez la *page de compilation sur developer.4d.com*. @@ -183,4 +180,13 @@ var $result:=Compile project($options) #### Voir aussi -[BUILD APPLICATION](build-application.md) \ No newline at end of file +[BUILD APPLICATION](build-application.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1760 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md index 63ef596e42e3b4..696b295fd4329d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md @@ -32,4 +32,13 @@ Pour plus d'informations sur les composants 4D, reportez-vous au manuel *Mode D #### Voir aussi -[PLUGIN LIST](plugin-list.md) \ No newline at end of file +[PLUGIN LIST](plugin-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1001 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md index da4f2c39b5e9cb..c2d68a728550e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md @@ -92,4 +92,14 @@ La variable OK prend la valeur 1 si le BLOB a été correctement compressé, sin #### Voir aussi [BLOB PROPERTIES](blob-properties.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 534 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md index 0b1bf7247d3369..10e73e6975d5d8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md @@ -90,4 +90,14 @@ La ligne : #### Voir aussi [ALERT](alert.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 162 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md index 2c5fa679e5cc6d..650c17f9048433 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Contextual click** retourne Vrai si un clic de type contextuel a été effectué : @@ -42,4 +39,13 @@ Cette méthode, associée à une zone de défilement, permet de changer la valeu #### Voir aussi [Form event code](form-event-code.md) -[Right click](right-click.md) \ No newline at end of file +[Right click](right-click.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 713 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md index 5488572a281884..b15bd3028b4dee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **CONVERT COORDINATES** permet de convertir les coordonnées (x;y) d'un point depuis un système de coordonnées vers un autre système de coordonnées. Les systèmes de coordonnées pris en charge sont les formulaires (ainsi que les sous-formulaires), les fenêtres et l'écran. Par exemple, vous pouvez utiliser cette commande pour obtenir les coordonnées, dans le formulaire principal, d'un objet appartenant à un sous-formulaire. Ce principe facilite notamment la création de menus contextuels à des emplacements personnalisés. @@ -88,4 +85,13 @@ Vous souhaitez créer une fenêtre pop up à l'emplacement du curseur de la sour [GET WINDOW RECT](get-window-rect.md) [OBJECT GET COORDINATES](object-get-coordinates.md) [OBJECT SET COORDINATES](object-set-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1365 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md index ca837f65b2eaff..8b8aa9cb2223d9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md @@ -184,4 +184,14 @@ Si la commande a été correctement exécutée, la variable OK prend la valeur 1 #### Voir aussi -[Convert to text](convert-to-text.md) \ No newline at end of file +[Convert to text](convert-to-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1011 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md index 05afd10a5e5c41..698be3c5e8687f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md @@ -48,4 +48,13 @@ Exemples sous Windows : [Convert path system to POSIX](convert-path-system-to-posix.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1107 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md index 36187ce2c268f4..c0ed82e2c4028b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md @@ -60,4 +60,13 @@ Exemple sous Windows [Convert path POSIX to system](convert-path-posix-to-system.md) [Object to path](object-to-path.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1106 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md index bc4a2930930f07..d2a8c17c2c48d2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md @@ -48,4 +48,13 @@ Conversion d’une image avec une qualité de 60 % : #### Voir aussi -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1002 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md index 162948a735ddd1..5e025a25b554b1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md @@ -29,4 +29,14 @@ Si la commande a été correctement exécutée, la variable OK prend la valeur 1 #### Voir aussi -[CONVERT FROM TEXT](convert-from-text.md) \ No newline at end of file +[CONVERT FROM TEXT](convert-from-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1012 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md index 37fcb0e6c77775..a9bb3661825c1b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **COPY ARRAY** crée ou remplace le tableau *destination* avec les mêmes contenu, taille et type que le tableau *source*. - -**Note** : Pour les tableaux numériques de différents types, le type du tableau de destination est conservé. +La commande **COPY ARRAY** crée ou remplace le tableau *destination* avec les mêmes contenu, taille et type que le tableau *source*.: Pour les tableaux numériques de différents types, le type du tableau de destination est conservé. Les tableaux *source* et *destination* peuvent être des tableaux locaux, process ou interprocess. La portée du tableau n'a pas d'importance lors de la duplication des tableaux. @@ -36,3 +34,13 @@ L'exemple suivant remplit un tableau C. Un nouveau tableau, "D", est ensuite cr  SELECTION TO ARRAY([Contacts]Société;C) // Remplir le tableau C avec les données du champ  COPY ARRAY(C;D) // Copier le tableau C dans le tableau D ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 226 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md index 368437a9b40153..f170afdaebad1c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md @@ -28,4 +28,13 @@ Notez que le BLOB de destination peut être redimensionné si nécessaire. #### Voir aussi [DELETE FROM BLOB](delete-from-blob.md) -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 558 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md index 2f53097a72ab72..8be14064455cdd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md @@ -19,8 +19,6 @@ displayed_sidebar: docs #### Description La commande **COPY DOCUMENT** copie le fichier ou dossier désigné par *nomSource* à l'emplacement désigné par *nomDest* et le renomme optionnellement. - -* **Copie de fichier** Dans ce cas, le paramètre *nomSource* peut contenir : * soit un chemin d'accès complet de fichier, exprimé par rapport à la racine du volume, * soit un chemin d'accès relatif au dossier de la base. @@ -122,4 +120,14 @@ Les exemples suivants créent différents fichiers et dossiers dans le dossier d #### Voir aussi [MOVE DOCUMENT](move-document.md) -*Présentation des documents système* \ No newline at end of file +*Présentation des documents système* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 541 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md index c38af7197eacf2..ed3dc4e725fe37 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Copy list** duplique la liste dont vous passez le numéro de référence dans le paramètre *liste* et retourne le numéro de référence de la nouvelle liste. @@ -27,4 +24,13 @@ Le contenu de la liste copiée est entièrement dupliqué. Une fois que vous en [CLEAR LIST](clear-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 626 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md index 86eb223dbd9506..4bd452efa96a8c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md @@ -51,4 +51,13 @@ L'exemple suivant permet de vérifier s'il y a des factures impayées dans la ta [CLEAR NAMED SELECTION](clear-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 331 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md index 6fb07c80807add..f10fb402d2e771 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md @@ -79,4 +79,13 @@ Puisque la commande retourne une collection, elle peut être utilisée avec **.j #### Voir aussi -[Count parameters](count-parameters.md) \ No newline at end of file +[Count parameters](count-parameters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1790 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md index d1278914183a05..c07bf319ebb874 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md @@ -38,4 +38,13 @@ L'exemple suivant, en client/serveur, copie l'ensemble process "*SetA*", conserv #### Voir aussi -*Présentation des ensembles* \ No newline at end of file +*Présentation des ensembles* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 600 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md index 75715e06b21474..115050b12c65c8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 18 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md index 582930de01f6e7..5d08a7af65a7cf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md @@ -56,4 +56,13 @@ Vous voulez compter les références d'objets dans un tableau d'objets : #### Voir aussi [Find in array](find-in-array.md) -[Find in sorted array](find-in-sorted-array.md) \ No newline at end of file +[Find in sorted array](find-in-sorted-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 907 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md index e1a234b0dfd010..989d8788f8b527 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **Count list items** retourne soit le nombre d'éléments visibles soit le nombre total d'éléments dans la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -60,4 +57,13 @@ Voici la liste *hList* affichée en mode Application : #### Voir aussi [List item position](list-item-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 380 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md index f72c4634503b09..8edc2c94aa88bd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Count menu items** retourne le nombre de lignes (commandes) de menus présentes dans le menu dont vous avez passé le numéro ou la référence dans *menu.* @@ -28,4 +25,14 @@ Si vous omettez le paramètre *process*, **Count menu items** s'applique à la b #### Voir aussi -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 405 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md index ef257e96d274fc..7f8628749dacc0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Count menus** retourne le nombre de menus présents dans la barre de menus. @@ -25,4 +22,14 @@ Si vous omettez le paramètre *process*, **Count menus** s'applique à la barre #### Voir aussi -[Count menu items](count-menu-items.md) \ No newline at end of file +[Count menu items](count-menu-items.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 404 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md index 891325c945bae3..b66a37b521ddd7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Count parameters** retourne le nombre de paramètres passés à une méthode projet. - -**ATTENTION :** **Count parameters** n'a d'intérêt que dans une méthode projet appelée par une autre méthode (projet ou non). Si la méthode projet qui appelle **Count parameters** est associée à une commande de menu, la fonction retourne 0. +**Count parameters** retourne le nombre de paramètres passés à une méthode projet.**Count parameters** n'a d'intérêt que dans une méthode projet appelée par une autre méthode (projet ou non). Si la méthode projet qui appelle **Count parameters** est associée à une commande de menu, la fonction retourne 0. #### Exemple 1 @@ -93,4 +91,13 @@ ou : #### Voir aussi *Commandes du thème Compilateur* -[Copy parameters](copy-parameters.md) \ No newline at end of file +[Copy parameters](copy-parameters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 259 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md index f0dc4247ea3635..b8c1503626d5ed 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Count screens** retourne le nombre de moniteurs qui sont connectés à votre machine. @@ -26,4 +23,13 @@ displayed_sidebar: docs [SCREEN COORDINATES](screen-coordinates.md) [SCREEN DEPTH](screen-depth.md) [Screen height](screen-height.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 437 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md index f1f4cdf1f751e3..d8b145c55077b4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md @@ -28,4 +28,13 @@ Référez-vous à l'exemple de [Process state](process-state.md) et [Semaphore]( [Count user processes](count-user-processes.md) [Count users](count-users.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 335 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md index dd9274659d8668..121599e0228674 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md @@ -22,4 +22,13 @@ displayed_sidebar: docs #### Voir aussi [Count tasks](count-tasks.md) -[Count users](count-users.md) \ No newline at end of file +[Count users](count-users.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 343 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md index 49fe607b09302a..a216267984e8ff 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md @@ -22,4 +22,13 @@ Dans le cas d'une version monoposte de 4D, **Count users** retourne 1. #### Voir aussi [Count tasks](count-tasks.md) -[Count user processes](count-user-processes.md) \ No newline at end of file +[Count user processes](count-user-processes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 342 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md index a452eea31930b6..f520127ad8b8a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md @@ -66,4 +66,14 @@ La variable système OK prend la valeur 1 si la commande a été correctement ex #### Voir aussi -[RESOLVE ALIAS](resolve-alias.md) \ No newline at end of file +[RESOLVE ALIAS](resolve-alias.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 694 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md index 1b4e0e9310ad79..289a6ae945d33b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md @@ -25,4 +25,13 @@ Avant de lancer l’opération, la commande vérifie que le chemin spécifié ne #### Voir aussi -[OPEN DATA FILE](open-data-file.md) \ No newline at end of file +[OPEN DATA FILE](open-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 313 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md index 110b71622977a4..f13de363c0dc94 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Create deployment license** crée un fichier de licence intégré dans le dossier Licences de l'application construite par la *mergedApp*. Si le dossier Licences n'existe pas dans la *mergedApp*, il est créé par la commande. @@ -60,4 +57,13 @@ La commande renvoie un objet *status* contenant les propriétés suivantes : #### Voir aussi - \ No newline at end of file + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1811 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md index e68cffc41762ce..5be4bf1e30e2eb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md @@ -67,4 +67,14 @@ Si le document est correctement créé, la variable système OK prend la valeur #### Voir aussi [Append document](append-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 266 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md index 61055f942ad357..64b8e9d71c8b62 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md @@ -27,4 +27,13 @@ Reportez-vous à l'exemple proposé dans la section *Présentation des ensembles #### Voir aussi [CLEAR SET](clear-set.md) -[CREATE SET](create-set.md) \ No newline at end of file +[CREATE SET](create-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 140 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md index f724fe103a7601..588b02f681c5ae 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md @@ -70,4 +70,14 @@ Création du sous-dossier "\\February\\" dans le dossier existant "C:\\Archives\ #### Voir aussi [FOLDER LIST](folder-list.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 475 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md index 31d5ab7010d849..25ee5d27d3840e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md @@ -86,4 +86,13 @@ Création d’un index composite sur les champs “CodePostal” et “Ville” [DELETE INDEX](delete-index.md) [RESUME INDEXES](resume-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 966 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md index b966d2141ef332..682bb03d09391e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Create menu** permet de créer un nouveau menu en mémoire. Ce menu n’existera qu’en mémoire et ne sera pas ajouté dans l’éditeur de menus en mode Développement. Toute modification effectuée sur ce menu durant la session sera immédiatement répercutée à l’ensemble des instances de ce menu et ce, dans tous les process de la base. @@ -42,4 +39,13 @@ Reportez-vous à l'exemple de la commande [SET MENU BAR](set-menu-bar.md). [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 408 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md index 96a90d500cc305..779aadfb8ee6b3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md @@ -45,4 +45,14 @@ L'exemple suivant archive les enregistrements datant de plus de 30 jours. Cette [ADD RECORD](add-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 68 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md index c1ba3402b47f27..ad408af0334b6b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md @@ -21,4 +21,13 @@ Si un enregistrement lié existe déjà, la commande **CREATE RELATED ONE** a al #### Voir aussi -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 65 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md index 1e5a44b023c918..dc78d6662aadcb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md @@ -20,9 +20,7 @@ displayed_sidebar: docs La commande **CREATE SELECTION FROM ARRAY** construit la sélection temporaire *nom* à partir : * soit du tableau de numéros d’enregistrements absolus *tabEnrg* de *laTable*, -* soit du tableau de booléens *tabEnrg* ; dans ce cas, les valeurs du tableau indiquent l’appartenance (Vrai) ou non (Faux) de chaque enregistrement de *laTable* à la sélection *nom*. - -**Attention** : Une sélection nommée est créée et chargée en mémoire. Par conséquent, assurez-vous que vous disposez de suffisamment de mémoire avant d'exécuter cette commande. +* soit du tableau de booléens *tabEnrg* ; dans ce cas, les valeurs du tableau indiquent l’appartenance (Vrai) ou non (Faux) de chaque enregistrement de *laTable* à la sélection *nom*.: Une sélection nommée est créée et chargée en mémoire. Par conséquent, assurez-vous que vous disposez de suffisamment de mémoire avant d'exécuter cette commande. Si vous ne passez pas le paramètre *nom* ou si vous passez une chaîne vide, la commande s’appliquera à la sélection courante de *laTable*, qui sera donc mise à jour. @@ -47,4 +45,15 @@ Si un numéro d'enregistrement est invalide (enregistrement non créé), l’err [CREATE SET FROM ARRAY](create-set-from-array.md) [LONGINT ARRAY FROM SELECTION](longint-array-from-selection.md) [SELECTION TO ARRAY](selection-to-array.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 640 | +| Thread safe | ✓ | +| Modifie les variables | error | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md index eabc756fb7040c..4dc47fd05dbe1e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md @@ -37,4 +37,14 @@ Dans un tableau d'entier longs, si un numéro d'enregistrement est invalide (enr #### Voir aussi [BOOLEAN ARRAY FROM SET](boolean-array-from-set.md) -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 641 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md index 05334d5493f2da..c87a35d2f17464 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md @@ -31,4 +31,13 @@ L'exemple suivant crée un ensemble après qu'une recherche ait été effectuée #### Voir aussi [CLEAR SET](clear-set.md) -[CREATE EMPTY SET](create-empty-set.md) \ No newline at end of file +[CREATE EMPTY SET](create-empty-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 116 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md index 810024ce33bc5d..af8875438c597d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md @@ -53,3 +53,13 @@ Imagettes résultantes (48x48) **Note :** Avec les modes “Proportionnelle” et “Proportionnelle centrée”, les espaces vides apparaîtront blancs dans les imagettes — lorsque ces modes sont appliqués aux champs ou variables images dans les formulaires 4D, les espaces vides sont transparents. Le paramètre *profondeur* est ignoré et doit être omis. La commande utilise toujours la profondeur écran (nombre de couleurs) courante. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 679 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md index 1f3245eb763756..d28554e21b3d5a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md @@ -72,3 +72,13 @@ Avec ce paramétrage, aucune boîte de dialogue d'identification n'est affichée * réplication de l'Active Directory dans les noms d'utilisateurs et groupes de 4D, permettant une correspondance automatique, * utilisation d'une table \[Utilisateurs\] personnalisée, * utilisation des fonctions LDAP afin de récupérer les droits d'accès de l'utilisateur. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1355 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md index f60ad9d3d9a3b1..bc84edf873a31d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -**Current date** retourne la date courante telle que définie dans l'horloge système de la machine. - -**4D Server** **:** Si vous passez le paramètre astérisque (\*) — lors d'une exécution sur un poste 4D Client —, la fonction retourne la date du jour telle que définie dans l'horloge du poste serveur. +**Current date** retourne la date courante telle que définie dans l'horloge système de la machine.**:** Si vous passez le paramètre astérisque (\*) — lors d'une exécution sur un poste 4D Client —, la fonction retourne la date du jour telle que définie dans l'horloge du poste serveur. #### Exemple 1 @@ -97,4 +95,13 @@ La méthode projet suivante vous permet de traiter cette question : [Day of](day-of.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 33 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md index c8e04d0637b628..f1122675d79d96 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md @@ -29,4 +29,13 @@ La ligne de code suivante inscrit le nom de la table courante par défaut dans l [DEFAULT TABLE](default-table.md) [Table](table.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 363 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md index 8f43e5b4a5af71..296cd48507aa3e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Current form name** retourne le nom du formulaire courant défini pour le process. Le formulaire courant peut être un formulaire projet ou un formulaire table. @@ -59,4 +56,13 @@ Vous souhaitez obtenir le formulaire courant si c’est un formulaire projet : #### Voir aussi -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1298 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md index 524e9ab8fadaa6..d20a4e1fcb70cb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **Current form table** retourne un pointeur vers la table à laquelle appartient le formulaire affiché à l'écran ou imprimé dans le process courant. @@ -61,4 +58,13 @@ Dans votre application, vous utilisez la convention suivante : au moment de l'af [DIALOG](dialog.md) [FORM SET INPUT](form-set-input.md) [FORM SET OUTPUT](form-set-output.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 627 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md index 5ad66a09e69042..eb98d80e7e5251 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Current form window** retourne la référence de la fenêtre du formulaire courant. S’il n’y a pas de fenêtre définie pour le formulaire courant, la commande retourne 0. @@ -26,4 +23,13 @@ La fenêtre du formulaire courant peut avoir été générée automatiquement pa [Open form window](open-form-window.md) [Open window](open-window.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 827 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md index 200b1feb588f89..c92ee47cc2378d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md @@ -29,4 +29,13 @@ Même si vous n'utilisez pas la version client/serveur de 4D, votre application #### Voir aussi -[Current system user](current-system-user.md) \ No newline at end of file +[Current system user](current-system-user.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 483 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md index 93b1d389ad21f2..d8ec99a5d4f144 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md @@ -37,3 +37,13 @@ En fonction du type de méthode d’appel, la chaîne retournée peut prendre l Cette commande ne doit pas être appelée depuis une formule 4D. **Note :** Pour que cette commande fonctionne en mode compilé, elle ne doit pas figurer dans le code dont le contrôle d'exécution a été désactivé. Voir *Contrôle d’exécution*. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 684 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md index 60b03bbbb4f83d..affd775dbc230c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md @@ -15,11 +15,18 @@ displayed_sidebar: docs #### Description -La commande **Current method path** retourne le chemin d’accès interne de la méthode base, du trigger, de la méthode projet, méthode formulaire ou méthode objet en cours d’exécution. - -**Note :** Dans le contexte des macro-commandes 4D, la balise ** est remplacée par le chemin d’accès complet du code en cours d’édition. +La commande **Current method path** retourne le chemin d’accès interne de la méthode base, du trigger, de la méthode projet, méthode formulaire ou méthode objet en cours d’exécution.Dans le contexte des macro-commandes 4D, la balise ** est remplacée par le chemin d’accès complet du code en cours d’édition. #### Voir aussi [METHOD Get path](method-get-path.md) -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1201 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md index 88e4ed947d59e4..4646c1ddc4eba4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md @@ -31,4 +31,13 @@ Vous voulez appeler un process worker et lui passer comme paramètre le nom du p *A propos des workers* [CALL WORKER](call-worker.md) -[KILL WORKER](kill-worker.md) \ No newline at end of file +[KILL WORKER](kill-worker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1392 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md index 709a2a06ac8c45..0ab8dc632d7f73 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md @@ -25,4 +25,13 @@ Référez-vous aux exemples de [DELAY PROCESS](delay-process.md) et [Process inf [Process number](process-number.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 322 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md index ebd30d5032ffc3..d0b182cfadd25d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md @@ -23,4 +23,13 @@ Reportez-vous à l'exemple de la commande [Current machine](current-machine.md). #### Voir aussi -[Current machine](current-machine.md) \ No newline at end of file +[Current machine](current-machine.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 484 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md index d0eb656cbf5b24..e5c2ad938ae6f0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md @@ -48,4 +48,13 @@ L'exemple suivant extrait les heures, minutes et secondes de l'heure courante : [Milliseconds](milliseconds.md) [String](string.md) -[Tickcount](tickcount.md) \ No newline at end of file +[Tickcount](tickcount.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 178 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md index decb7b41521ad5..49882fbe11dce5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md @@ -37,4 +37,13 @@ Reportez-vous à l'exemple de la commande [User in group](user-in-group.md). [CHANGE CURRENT USER](change-current-user.md) [CHANGE PASSWORD](change-password.md) [SET USER ALIAS](set-user-alias.md) -[User in group](user-in-group.md) \ No newline at end of file +[User in group](user-in-group.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 182 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md index 57ede039b8ab07..cf6b8ac81128b7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md @@ -35,4 +35,14 @@ La méthode suivante vide la sélection courante de la table *\[Clients\]* : [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 334 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md index 25829e06b6b0f7..c8f12645a8a371 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md @@ -67,4 +67,13 @@ Vous souhaitez connaitre le statut de chiffrement d'un fichier de données corre #### Voir aussi -[Encrypt data file](encrypt-data-file.md) \ No newline at end of file +[Encrypt data file](encrypt-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1609 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md index 2b760ffa61e7ba..fef0bc56a977fc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md @@ -31,4 +31,13 @@ Si, par exemple, vous travaillez avec la base MesCDs qui se trouve dans le dossi #### Voir aussi [Application file](application-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 490 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md index f06be126872e4c..9cc346c67707ab 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md @@ -326,3 +326,13 @@ Vous souhaitez obtenir les mesures d'octets lus dans le cache au cours des deux  OB SET($oParams;"historyLength";2*60)  $measures:=Database measures($oParams) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1314 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md index 2bf900775fc1ca..44b4e4c47b5553 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md @@ -93,4 +93,13 @@ Vous souhaitez lire une date depuis un attribut d'objet, quelle que soit l'optio #### Voir aussi [Bool](bool.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 102 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md index 25b06bd9e23d19..0ea06fdd0627d6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La fonction **Day number** retourne un numéro représentant le jour de la semaine auquel *laDate* correspond. - -**Note :** Si une date nulle est passée à **Day number**, la fonction retourne 2\. +La fonction **Day number** retourne un numéro représentant le jour de la semaine auquel *laDate* correspond.Si une date nulle est passée à **Day number**, la fonction retourne 2\. 4D fournit les constantes prédéfines suivantes, placées dans le thème "*Jours et mois*" : @@ -60,4 +58,13 @@ L'exemple suivant est une fonction qui retourne le jour d'aujourd'hui sous forme #### Voir aussi -[Day of](day-of.md) \ No newline at end of file +[Day of](day-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 114 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md index 971bb36a98ae12..076a42819ad0f7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -**Day of** retourne le jour du mois de *laDate*. - -**Note :** **Day of** retourne une valeur entre 1 et 31\. Pour obtenir le numéro du jour de la semaine pour une date, vous devez utiliser la commande [Day number](day-number.md). +**Day of** retourne le jour du mois de *laDate*.**Day of** retourne une valeur entre 1 et 31\. Pour obtenir le numéro du jour de la semaine pour une date, vous devez utiliser la commande [Day number](day-number.md). #### Exemple 1 @@ -37,4 +35,13 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md). [Day number](day-number.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 23 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md index 7f478afb36fcb2..d78c452008a19c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Deactivated** retourne Vrai dans une méthode formulaire ou méthode objet lorsque la fenêtre appartenant au process du premier plan, contenant le formulaire, passe à l'arrière-plan. @@ -27,4 +24,13 @@ Si vous voulez que le cycle d'exécution **Deactivated** soit généré, vérifi #### Voir aussi [Activated](activated.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 347 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md index ca6a7a603c3eae..e23cde963a20e5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md @@ -29,4 +29,13 @@ L'exemple suivant utilise une valeur monétaire exprimée sous forme numérique #### Voir aussi -[Int](int.md) \ No newline at end of file +[Int](int.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 9 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md index 0f00b43ea4b29c..11dabd306d0af1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md @@ -34,4 +34,13 @@ Reportez-vous aux exemples de la commande [ENCRYPT BLOB](encrypt-blob.md). #### Voir aussi [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 690 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md index fd8010e4650c6c..fcea11dbef4ed8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md @@ -57,4 +57,13 @@ Les paramètres *passPhrase* et le *salt* utilisés pour le déchiffrement sont [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1774 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md index 36c503480f0084..e4e24d98243f08 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md @@ -76,4 +76,13 @@ Voici le résultat lorsqu'une table par défaut est définie : #### Voir aussi [Current default table](current-default-table.md) -[NO DEFAULT TABLE](no-default-table.md) \ No newline at end of file +[NO DEFAULT TABLE](no-default-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 46 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md index c2960a87bf5722..378e27a8f20fd2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md @@ -37,4 +37,13 @@ Reportez-vous à l'exemple de la fonction [Process number](process-number.md). #### Voir aussi [HIDE PROCESS](hide-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 323 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md index c87e44fa8bcc64..5adb07c8b27d92 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md @@ -46,4 +46,14 @@ La suppression d'un document met la variable système OK à 1\. Si **DELETE DOCU #### Voir aussi -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 159 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md index 2d2a9ee0b24735..a487b92088c5fe 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md @@ -41,4 +41,14 @@ Vous pouvez intercepter ces erreurs à l’aide d’une méthode installée par #### Voir aussi -[DELETE DOCUMENT](delete-document.md) \ No newline at end of file +[DELETE DOCUMENT](delete-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 693 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md index 8eaa64b9e316fc..8e95ae7cd9ffc3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md @@ -43,4 +43,13 @@ L'exemple suivant supprime le dernier élément d'un tableau, s'il existe : #### Voir aussi [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 228 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md index 0e01734dc4658c..ed441bdfc656d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### Voir aussi -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 560 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md index 99cfc7998566dd..b9517a9487bd0f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **DELETE FROM LIST** supprime l'élément désigné par le paramètre *réfElément* de la liste dont le numéro de référence ou le nom d'objet est passé dans *liste*. @@ -43,4 +40,13 @@ L'exemple suivant supprime l'élément sélectionné de la liste *hList*. Si une #### Voir aussi [CLEAR LIST](clear-list.md) -[GET LIST ITEM](get-list-item.md) \ No newline at end of file +[GET LIST ITEM](get-list-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 624 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md index 2be3fd5a6ed4ce..02563dc9b4d54c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md @@ -44,4 +44,13 @@ Cet exemple illustre les deux syntaxes de la commande : [CREATE INDEX](create-index.md) [PAUSE INDEXES](pause-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 967 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md index 8f3afd64b73f48..8d28694d9be757 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **DELETE MENU ITEM** supprime la ligne de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -34,4 +31,14 @@ Si vous omettez le paramètre *process*, **DELETE MENU ITEM** s'applique à la b #### Voir aussi [APPEND MENU ITEM](append-menu-item.md) -[INSERT MENU ITEM](insert-menu-item.md) \ No newline at end of file +[INSERT MENU ITEM](insert-menu-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 413 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md index 18efb5706b1c39..a78d4eadbf3ba1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md @@ -41,4 +41,14 @@ L'exemple suivant permet de supprimer l'enregistrement d'un employé. La méthod #### Voir aussi [Locked](locked.md) -*Présentation des triggers* \ No newline at end of file +*Présentation des triggers* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 58 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md index 6448e588c8dd95..d71515c21d1df7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md @@ -63,4 +63,14 @@ Lorsqu'un **DELETE SELECTION** rencontre un enregistrement verrouillé, celui-ci [MODIFY SELECTION](modify-selection.md) *Présentation des ensembles* [TRUNCATE TABLE](truncate-table.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 66 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md index f568a9b3b8ca14..962d1d66d4ca71 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -**Delete string** supprime *nbCars* dans *source* à partir de *positionDépart* et retourne la chaîne résultante. - -**Delete string** retourne la même chaîne que *source* dans les cas suivants : +**Delete string** supprime *nbCars* dans *source* à partir de *positionDépart* et retourne la chaîne résultante.retourne la même chaîne que *source* dans les cas suivants : * *source* est une chaîne vide, * *positionDépart* est supérieur à la longueur de *source*, @@ -44,4 +42,13 @@ L'exemple suivant illustre l'utilisation de **Delete string**. Les résultats so [Change string](change-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 232 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md index 086632c4145e69..91fe6d9ffa093e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **DELETE USER** supprime l'utilisateur dont le numéro est passé dans *réfUtilisateur*. Vous devez passer un numéro valide d'utilisateur, retourné par la commande [GET USER LIST](get-user-list.md). @@ -35,4 +32,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler **DELETE USER** ou si u [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 615 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md index 2b6c192bf69556..1ef67ae00c45e3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md @@ -66,4 +66,13 @@ $vResultPath : #### Voir aussi [Last query path](last-query-path.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1044 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md index 3a2af840010664..2b72c91355440d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **DIALOG** présente le *formulaire* à l'utilisateur en lui passant des paramètres via *formData* (optionnel). @@ -169,4 +166,14 @@ Si l'utilisateur valide le dialogue, la variable système OK prend la valeur 1, [CALL FORM](call-form.md) [CANCEL](cancel.md) [Form](form.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 40 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md index 6f17826a64a294..d86281063ec128 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md @@ -54,4 +54,13 @@ Un bouton associé à une méthode objet est placé en bas de la liste. La méth #### Voir aussi [INTERSECTION](intersection.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 122 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md index 18f6e47497fd8b..d9a6c499ebc348 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **DISABLE MENU ITEM** désactive la commande de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -32,4 +29,14 @@ Si vous omettez le paramètre *process*, **DISABLE MENU ITEM** s'applique à la #### Voir aussi -[ENABLE MENU ITEM](enable-menu-item.md) \ No newline at end of file +[ENABLE MENU ITEM](enable-menu-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 150 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md index 506aab842ced72..2a9ae90221292c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md @@ -48,4 +48,13 @@ Les fichiers de clés (fichiers d'extension ".4DKeyChain") doivent être stocké #### Voir aussi -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1639 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md index 2ce0f001072434..130c19c4cf6ef1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **DISPLAY NOTIFICATION** provoque l’affichage d’un message de notification à destination de l'utilisateur. @@ -42,4 +39,13 @@ Sous Windows, la fenêtre du message reste affichée tant qu'aucune activité n' #### Voir aussi -[ALERT](alert.md) \ No newline at end of file +[ALERT](alert.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 910 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md index b72bed80ac1eb4..4c2e4be4c86cbe 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **DISPLAY RECORD** affiche l'enregistrement courant de *laTable* dans le formulaire entrée courant. L'enregistrement reste affiché jusqu'à ce qu'un événement provoque un redessinement de la fenêtre. Cet événement peut être l'exécution d'un [ADD RECORD](add-record.md), le retour au formulaire entrée ou à la barre de menus. **DISPLAY RECORD** ne fait rien s'il n'y a pas d'enregistrement courant. @@ -40,4 +37,13 @@ L'exemple suivant affiche une série d'enregistrements sous forme de slide show #### Voir aussi -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 105 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md index 93903e7996b712..0d956f15ad24ad 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **DISPLAY SELECTION** affiche, pour le process en cours, la sélection courante de *laTable* dans le formulaire sortie courant. Les enregistrements sont affichés sous la forme d'une liste que l'on peut faire défiler, semblable à celle du mode Développement. Lorsque l'utilisateur double-clique sur un enregistrement, par défaut celui-ci s'affiche dans le formulaire entrée courant. La liste est placée dans la fenêtre de premier plan. @@ -94,4 +91,14 @@ Vous pouvez aussi utiliser d'autres commandes telles que [PRINT SELECTION](print [Form event code](form-event-code.md) [MODIFY SELECTION](modify-selection.md) -*Présentation des ensembles* \ No newline at end of file +*Présentation des ensembles* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 59 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md index c0fa3877ce6cc4..87a80be37d5a00 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Displayed line number** fonctionne uniquement dans le contexte de l’événement formulaire On Display Detail. Elle retourne le numéro de la ligne en cours de traitement durant l’affichage à l’écran d’une liste d’enregistrements ou des lignes d'une list box. Si **Displayed line number** est appelée en-dehors de l’affichage d’une liste ou d'une listbox, elle retourne 0. @@ -46,4 +43,13 @@ Cet exemple permet d’appliquer une couleur alternée à un formulaire liste af #### Voir aussi [Form event code](form-event-code.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 897 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md index 9eaf5b7c52fc8c..dc6a4a0760293b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md @@ -68,4 +68,13 @@ Le tableau *aTPaths* reçoit les éléments suivants : #### Voir aussi -[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) \ No newline at end of file +[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1395 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md index b15c45fbb4eb16..21652db2942702 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md @@ -94,4 +94,13 @@ Le tableau *aLChildNum* reçoit les éléments suivants : #### Voir aussi -[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) \ No newline at end of file +[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1397 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md index f383d8e8041740..c667415106ce15 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md @@ -79,4 +79,13 @@ Pour calculer des statistiques, vous voulez trier le nombre de valeurs distincte [GET TEXT KEYWORDS](get-text-keywords.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 339 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md index 10945b4fff5062..421e50f5ad7511 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **DOCUMENT LIST** remplit le tableau de type Texte *documents* avec les noms des documents situés à l'endroit que vous avez indiqué avec le paramètre *cheminAccès*. - -**Note :** Vous devez passer un chemin d'accès absolu dans le paramètre *cheminAccès*. +La commande **DOCUMENT LIST** remplit le tableau de type Texte *documents* avec les noms des documents situés à l'endroit que vous avez indiqué avec le paramètre *cheminAccès*.Vous devez passer un chemin d'accès absolu dans le paramètre *cheminAccès*. Par défaut, si vous omettez le paramètre *options*, seuls les noms des documents sont retournés dans le tableau *documents*. Vous pouvez modifier ce fonctionnement en passant dans le paramètre *options* une ou plusieurs des constantes suivantes, placées dans le thème *Documents système* : @@ -114,4 +112,14 @@ Liste de tous les documents en mode récursif POSIX (relatif) : #### Voir aussi [FOLDER LIST](folder-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 474 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md index c6eb38ecd275e3..04a672938cb146 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md @@ -49,4 +49,14 @@ Dans tous les cas, vous pouvez gérer les erreurs en utilisant la commande [ON E #### Voir aussi [BLOB TO DOCUMENT](blob-to-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 525 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md index 3988f813043715..ae34e14064ae5d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md @@ -76,4 +76,13 @@ Si vous exécutez ce code : #### Voir aussi *Documents système* -[TEXT TO DOCUMENT](text-to-document.md) \ No newline at end of file +[TEXT TO DOCUMENT](text-to-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1236 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md index d3fda650e827c5..575a4e90f69ace 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md @@ -144,4 +144,13 @@ Si le contenu de *valeurEnfant* est invalide, une erreur est retournée. #### Voir aussi [DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1080 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md index 72947486167de2..6f72c6cd9431a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md @@ -27,4 +27,13 @@ Voir l’exemple de la commande [DOM Insert XML element](dom-insert-xml-element. #### Voir aussi -[DOM Insert XML element](dom-insert-xml-element.md) \ No newline at end of file +[DOM Insert XML element](dom-insert-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1082 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md index 9a03928149c140..b399d738d23a2f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md @@ -26,4 +26,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM Parse XML source](dom-parse-xml-source.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 722 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md index fd31deaf7232cd..d4bb0091d10373 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md @@ -51,4 +51,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi -[DOM Count XML elements](dom-count-xml-elements.md) \ No newline at end of file +[DOM Count XML elements](dom-count-xml-elements.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 727 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md index c667f2680819c0..7f70ad7380f662 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **DOM Count XML elements** retourne le nombre d’éléments “enfants” dépendants de l’élément parent *refElément* et nommés *nomElément*. - -**Note :** Par défaut, **DOM Count XML elements** tient compte de la casse des caractères lors de l'évaluation du paramètre *nomElément* (par conformité avec le xml). Vous pouvez contrôler la sensibilité à la casse de cette commande à l'aide du sélecteur XML DOM case sensitivity de la commande [XML SET OPTIONS](xml-set-options.md). +La commande **DOM Count XML elements** retourne le nombre d’éléments “enfants” dépendants de l’élément parent *refElément* et nommés *nomElément*.Par défaut, **DOM Count XML elements** tient compte de la casse des caractères lors de l'évaluation du paramètre *nomElément* (par conformité avec le xml). Vous pouvez contrôler la sensibilité à la casse de cette commande à l'aide du sélecteur XML DOM case sensitivity de la commande [XML SET OPTIONS](xml-set-options.md). #### Variables et ensembles système @@ -28,4 +26,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM Get XML element](dom-get-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 726 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md index 77cdf979cfad3d..7283402977911f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md @@ -60,4 +60,13 @@ Pour cela, il suffit d'écrire : #### Voir aussi -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1097 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md index ff7443649627dd..a1f0bee18d04ce 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md @@ -150,4 +150,14 @@ Une erreur est générée lorsque : [DOM Create XML element arrays](dom-create-xml-element-arrays.md) [DOM Get XML element](dom-get-xml-element.md) -[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) \ No newline at end of file +[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 865 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md index abddf03770512b..edad40fbb4cbd0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md @@ -96,4 +96,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [DOM CLOSE XML](dom-close-xml.md) -[DOM SET XML DECLARATION](dom-set-xml-declaration.md) \ No newline at end of file +[DOM SET XML DECLARATION](dom-set-xml-declaration.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 861 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md index b7f7f00f72d66e..957ab2f9c925bb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md @@ -60,4 +60,14 @@ Une erreur est générée lorsque : #### Voir aussi [DOM EXPORT TO VAR](dom-export-to-var.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 862 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md index b0b7832414c4d8..5111cc3724b44f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md @@ -56,4 +56,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [DOM EXPORT TO FILE](dom-export-to-file.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 863 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md index 0b8219adcdb268..ec1eee2dc2c159 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md @@ -27,4 +27,14 @@ La commande retourne en résultat la référence XML de l’élément trouvé. #### Voir aussi -[DOM Find XML element](dom-find-xml-element.md) \ No newline at end of file +[DOM Find XML element](dom-find-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1010 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md index f5223d2fddee0a..7b8a6ced26aa02 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md @@ -115,4 +115,14 @@ Une erreur est générée lorsque : #### Voir aussi [DOM Count XML elements](dom-count-xml-elements.md) -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 864 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md index 83f9217414daa2..1978c043af8cab 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md @@ -57,4 +57,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 723 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md index eb6c1bfee03ac7..cab8ce836c4e3f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md @@ -42,4 +42,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 925 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md index 5a9d141f7c9119..27560849d8e7eb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md @@ -60,4 +60,14 @@ Si la commande a été correctement exécutée et si l’élément analysé n’ #### Voir aussi -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 724 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md index 672128f2391da9..d2f653c416c7e7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md @@ -33,4 +33,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la [DOM Get first child XML element](dom-get-first-child-xml-element.md) [DOM Get last child XML element](dom-get-last-child-xml-element.md) -[DOM Get Root XML element](dom-get-root-xml-element.md) \ No newline at end of file +[DOM Get Root XML element](dom-get-root-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 923 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md index fcaa932fe373ee..a895ecedf00f4e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md @@ -32,4 +32,14 @@ Si la commande a été correctement exécutée et si l’élément référencé #### Voir aussi -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 924 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md index 9a1a18c947fc61..fcb7a0389be8d4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Voir aussi -[DOM Get parent XML element](dom-get-parent-xml-element.md) \ No newline at end of file +[DOM Get parent XML element](dom-get-parent-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1053 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md index 2031eed4ae84c9..3fb47b710e3a69 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md @@ -37,4 +37,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 729 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md index 780c749d7f9467..758cd1ded4626f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md @@ -48,4 +48,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 728 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md index 64be1ceb476475..a5332e823d7529 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md @@ -61,4 +61,13 @@ Après l’exécution de ces instructions : #### Voir aussi [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1081 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md index b1149b0c8639d3..648079cfbb8c3b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md @@ -52,4 +52,13 @@ Dans cet exemple nous cherchons à retrouver la déclaration de DTD du document #### Voir aussi [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) \ No newline at end of file +[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1088 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md index e57592658ccb1d..cf61427eb24aa8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md @@ -39,4 +39,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) \ No newline at end of file +[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 730 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md index d72f7b5c53ced5..91dfbf439c8ef6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md @@ -42,4 +42,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) -[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) \ No newline at end of file +[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 731 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md index 0537c60e6119f1..5e4182896416d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md @@ -32,4 +32,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 725 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md index ebef8d96c3c692..03b2795ef72eca 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md @@ -32,4 +32,13 @@ Passez dans *infoXML* un code indiquant le type d’information à récupérer. #### Voir aussi -[XML GET ERROR](xml-get-error.md) \ No newline at end of file +[XML GET ERROR](xml-get-error.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 721 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md index 6ec7fa0122a95d..b8b41c527a4026 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md @@ -73,4 +73,13 @@ Pour cela, il suffit d’exécuter le code suivant : #### Voir aussi -[DOM Append XML element](dom-append-xml-element.md) \ No newline at end of file +[DOM Append XML element](dom-append-xml-element.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1083 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md index c2e8829c0fe9a0..2fd4d23c12c597 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md @@ -92,4 +92,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 719 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md index 958668a390e263..fc1fee95009e8e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md @@ -82,4 +82,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML source](dom-parse-xml-source.md) \ No newline at end of file +[DOM Parse XML source](dom-parse-xml-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 720 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md index a5ae6f07515a9c..28274ff6b4df16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md @@ -43,4 +43,14 @@ Le code suivant permet de supprimer le premier attribut "N=1" : [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) -[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) \ No newline at end of file +[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1084 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md index 67701066badf75..817b1f3f977526 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md @@ -25,4 +25,14 @@ Une erreur est générée lorsque la référence de l’élément n’est pas va #### Voir aussi [DOM Create XML element](dom-create-xml-element.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 869 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md index 94f4fcbee735e2..f20c5016a7a595 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md @@ -65,4 +65,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 866 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md index e2b9442d486871..f72b231c5f7bc0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md @@ -37,4 +37,13 @@ Cet exemple définit l’encodage et l’option standalone de l’élément *ref #### Voir aussi [DOM Create XML Ref](dom-create-xml-ref.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 859 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md index 626496d7dfb4e3..dcd5581bd4f6ac 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md @@ -57,4 +57,14 @@ Une erreur est générée lorsque : #### Voir aussi -[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) \ No newline at end of file +[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 867 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md index 27581d59065086..fc7b62643682cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md @@ -115,4 +115,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 868 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md index 877cdc854b5398..0dd8d0d617ade8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **DRAG WINDOW** permet de faire glisser la fenêtre dans laquelle l'utilisateur a cliqué puis de la déplacer en fonction des mouvements de la souris. Généralement, cette commande est appelée depuis la méthode d'un objet capable de répondre instantanément aux clics souris (par exemple un bouton invisible). @@ -48,4 +45,13 @@ Vous pouvez la déplacer en cliquant sur les bordures. #### Voir aussi [GET WINDOW RECT](get-window-rect.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 452 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md index 8c7fe13040641d..ebbb33922ed227 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Drop position** permet de connaître l'emplacement, dans un objet de destination “complexe”, auquel un objet a été (glissé et) déposé. Généralement, vous utiliserez **Drop position** pendant le traitement d'un événement glisser-déposer qui s'est produit dans un tableau, une list box, une liste hiérarchique, un champ texte ou une image. @@ -93,4 +90,13 @@ La méthode objet de la list box de gauche (destination) contient le code suivan #### Voir aussi -*Présentation du Glisser-Déposer* \ No newline at end of file +*Présentation du Glisser-Déposer* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 608 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md index 00d34a5f48dbe5..420a2249480fb7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md @@ -40,4 +40,13 @@ Vous souhaitez supprimer un utilisateur distant spécifique : #### Voir aussi [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) \ No newline at end of file +[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1633 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md index 3a3132795905b3..43e70871ee59a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md @@ -23,4 +23,14 @@ displayed_sidebar: docs #### Voir aussi -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 225 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md index f71bb01ad459db..9616375f93dae6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Dynamic pop up menu** fait apparaître un pop up menu hiérarchique à l’emplacement courant de la souris ou à l’emplacement défini par les paramètres facultatifs *coordX* et *coordY*. @@ -92,4 +89,13 @@ Ce code permet de créer un pop up menu dynamique hiérarchique, construit sur l [Get selected menu item parameter](get-selected-menu-item-parameter.md) [Pop up menu](pop-up-menu.md) [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1006 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md index d1f0b4053f0d58..b41eeefa177eff 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **EDIT ACCESS** permet de modifier le système de mots de passe. Lorsque cette commande est exécutée, la fenêtre de la boîte à outils de 4D contenant les pages Utilisateurs et Groupes est appelée pour modifier les privilèges. @@ -36,4 +33,14 @@ L'exemple suivant affiche la fenêtre de gestion des utilisateur et des groupes #### Voir aussi [CHANGE CURRENT USER](change-current-user.md) -[CHANGE PASSWORD](change-password.md) \ No newline at end of file +[CHANGE PASSWORD](change-password.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 281 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md index e6d6750ec48e34..0fef0767208f79 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EDIT FORMULA** affiche l’éditeur de formules afin de permettre à l’utilisateur d’écrire ou de modifier une formule. L’éditeur contient à l'ouverture : @@ -56,4 +53,14 @@ Si l’utilisateur valide la boîte de dialogue, la variable système OK prend l [APPLY TO SELECTION](apply-to-selection.md) [EXECUTE FORMULA](execute-formula.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 806 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md index 6ac7aab90044f0..3b3e01aa7af977 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EDIT ITEM** permet de passer en “mode édition” l’élément courant ou l’élément de numéro *élément* du tableau ou de la liste désigné(e) par le paramètre *objet*. @@ -74,4 +71,13 @@ Soient deux colonnes d’une list box dont les noms de variables associées sont [GOTO OBJECT](goto-object.md) [INSERT IN LIST](insert-in-list.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 870 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md index ed1938e333984e..fe8c8000a0a17b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **ENABLE MENU ITEM** active la commande de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -32,4 +29,14 @@ Si vous omettez le paramètre *process*, **ENABLE MENU ITEM** s'applique à la b #### Voir aussi -[DISABLE MENU ITEM](disable-menu-item.md) \ No newline at end of file +[DISABLE MENU ITEM](disable-menu-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 149 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md index a86a631c9cbb56..b365a7b60e885d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md @@ -188,4 +188,13 @@ Dans le cas contraire, pour des raisons de sécurité, le mode synchrone est uti [DECRYPT BLOB](decrypt-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 689 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md index 5e405e10271911..5677f94154665c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md @@ -58,4 +58,13 @@ Cryptez un fichier texte situé dans le dossier RESSOURCES de la base de donnée [Decrypt data BLOB](decrypt-data-blob.md) [ENCRYPT BLOB](encrypt-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1773 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md index 1ccff7bb939600..41cc7a6bcf0cd6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Encrypt data file** est utilisée pour chiffrer ou déchiffrer le fichier de données indiqué par le paramètre *cheminDonnées* associé au paramètre *cheminStructure*. Elle peut également être utilisée pour enlever le chiffrement de la base. La commande ne modifie pas les fichiers originaux, elle retourne le nom du chemin d'accès complet au dossier qui a été créé pour la sauvegarde du fichier de données original. @@ -138,4 +135,13 @@ $folder:=Encrypt data file(Structure file;"myData.4DD") [Data file encryption status](data-file-encryption-status.md) [Decrypt data BLOB](decrypt-data-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1610 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md index fa28f73eb6e2b2..6b3e3eb240f098 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -La fonction **End selection** retourne Vrai lorsque le pointeur de l'enregistrement courant se trouve après le dernier enregistrement de la sélection courante de *laTable*. **End selection** est généralement utilisée pour tester si l'appel à la commande [NEXT RECORD](next-record.md) place ou non le pointeur d'enregistrement courant derrière le dernier enregistrement de la sélection. Si la sélection courante est vide, **End selection** retourne Vrai. +La fonction **End selection** retourne Vrai lorsque le pointeur de l'enregistrement courant se trouve après le dernier enregistrement de la sélection courante de *laTable*.est généralement utilisée pour tester si l'appel à la commande [NEXT RECORD](next-record.md) place ou non le pointeur d'enregistrement courant derrière le dernier enregistrement de la sélection. Si la sélection courante est vide, **End selection** retourne Vrai. Pour replacer le pointeur d'enregistrement courant dans la sélection, utilisez les commandes [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) ou [GOTO SELECTED RECORD](goto-selected-record.md). [PREVIOUS RECORD](previous-record.md) ne replace pas le pointeur dans la sélection. @@ -60,4 +60,13 @@ La méthode formulaire de l'exemple suivant est utilisée lors de l'impression d [Form event code](form-event-code.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 36 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md index 2a4e327f6d916b..f4bde321f3daa6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md @@ -20,4 +20,13 @@ Une séquence d'instructions SQL doit être encadrée par les mot-clés [Begin S #### Voir aussi -[Begin SQL](begin-sql.md) \ No newline at end of file +[Begin SQL](begin-sql.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 949 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md index 324443cb36378a..edb11f004afb29 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md @@ -41,3 +41,14 @@ Le code du bouton **Compare** est le suivant : ```4d  $equal :=Equal pictures($pict1;$pict2;$mask) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1196 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md index e1b7d74fd2c20b..03778ea2ca32ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ERASE WINDOW** efface le contenu de la fenêtre dont vous avez passé la référence dans *fenêtre*. @@ -29,4 +26,13 @@ Ne confondez pas **ERASE WINDOW**, qui efface le contenu d'une fenêtre, et [GOT #### Voir aussi [GOTO XY](goto-xy.md) -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 160 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md index e9cde353f1918b..cddfd60c9bc6df 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md @@ -114,3 +114,13 @@ Voici différents types de conversion pouvant être obtenus à l’aide de cette   //Convertir la valeur en lires italiennes  $EnLires:=Euro converter($valeur;French Franc;Italian Lira) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 676 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md index fbcdc1bdc0d99a..e1d41201ce1a39 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md @@ -61,4 +61,13 @@ Vous voulez exécuter une formule incluant des appels à des commandes et des ta [Command name](command-name.md) [EDIT FORMULA](edit-formula.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 63 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md index 4f2079e85de5a2..9942d186998f2e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXECUTE METHOD IN SUBFORM** permet d’exécuter le code désigné dans *formule* dans le contexte de l’objet de sous-formulaire *objetSousForm*. @@ -75,3 +72,14 @@ Si cette méthode était utilisée directement dans la méthode du formulaire Ca #### Variables et ensembles système Si cette commande est exécutée correctement, la variable système OK prend la valeur 1, sinon elle prend la valeur 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1085 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md index 999a6c0e8d2b86..e70e6d599bbcb8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md @@ -31,4 +31,14 @@ Si cette commande est exécutée correctement, la variable système OK prend la #### Voir aussi -[EXECUTE FORMULA](execute-formula.md) \ No newline at end of file +[EXECUTE FORMULA](execute-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1007 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md index 73917bc2960b14..e7ea4fba87fc06 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXECUTE ON CLIENT** provoque l’exécution de la méthode *nomMéthode*, avec, éventuellement, le(s) paramètre(s) *param1... paramN*, sur le ou les 4D Client inscrit(s) sous le nom *nomClient*. Le nom d’inscription du ou des 4D Client est défini par la commande [REGISTER CLIENT](register-client.md). @@ -62,4 +59,14 @@ La variable système OK prend la valeur 1 si 4D Server a correctement reçu la r [Execute on server](execute-on-server.md) [GET REGISTERED CLIENTS](get-registered-clients.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 651 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md index 691d3b807c0dc9..8ae37e658c6106 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Execute on server** lance un nouveau process sur la machine serveur (lorsqu'elle est appelée en environnement client/serveur) et retourne le numéro de ce process. @@ -190,4 +187,13 @@ Reportez-vous à la section *Services basés sur les procédures stockées (exem #### Voir aussi [EXECUTE ON CLIENT](execute-on-client.md) -[New process](new-process.md) \ No newline at end of file +[New process](new-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 373 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md index 4d4d20192aa572..f49c88204ade8e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**Exp** retourne l'exponentielle (e=2,71828...) de *nombre*. **Exp** est la fonction inverse de [Log](log.md). +**Exp** retourne l'exponentielle (e=2,71828...) de *nombre*.est la fonction inverse de [Log](log.md). **Note :** La fonction exponentielle, qui au nombre réel x fait correspondre le nombre réel y, est notée y = ex. 4D fournit la constante prédéfinie e number (2,71828...). @@ -30,4 +30,13 @@ L'exemple suivant assigne l'exponentielle de 1 à *vrE* (le logarithme de *vrE* #### Voir aussi -[Log](log.md) \ No newline at end of file +[Log](log.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 21 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md index 356e1a8a512e19..f0250e2e2e8241 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md @@ -64,4 +64,14 @@ La variable OK prend la valeur 1 si le BLOB a été correctement décompressé, #### Voir aussi [BLOB PROPERTIES](blob-properties.md) -[COMPRESS BLOB](compress-blob.md) \ No newline at end of file +[COMPRESS BLOB](compress-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 535 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md index 65c0c95751a2c2..107c09150b011d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXPORT DATA** permet d’exporter des données dans le fichier *nomFichier*. 4D peut exporter des données au format Texte, Texte de longueur fixe, XML, SYLK, DIF, DBF (dBase), et 4D. @@ -99,4 +96,14 @@ Si l'utilisateur clique sur **Annuler** dans une des boîtes de dialogue (d'enre [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) -[IMPORT DATA](import-data.md) \ No newline at end of file +[IMPORT DATA](import-data.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 666 | +| Thread safe | ✗ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md index 5e45ea00e8dd7b..6b085c4ce325b4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXPORT DIF** écrit dans *document* (document DIF Windows ou Mac OS) les données des enregistrements de la sélection courante de la table *laTable* du process courant. @@ -51,4 +48,14 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 84 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md index 41b390a9c33884..13debedfc259bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Export structure file** décompose la structure de la base de données 4D courante en un ensemble de fichiers de type texte ou de fichiers natifs de type image et les stocke dans le *cheminDossier* spécifié. Par défaut, la structure de la base (méthodes, formulaires, catalogues, etc.) est intégralement exportée. Vous pouvez filtrer les contenus à exporter à l'aide du paramètre *options* (voir ci-dessous). @@ -116,4 +113,13 @@ Vous souhaitez exporter uniquement les méthodes projet et les méthodes base, a #### Voir aussi -[FORM Convert to dynamic](form-convert-to-dynamic.md) \ No newline at end of file +[FORM Convert to dynamic](form-convert-to-dynamic.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1565 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md index 4f29af77ba60af..40838c5aa1fba5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md @@ -55,4 +55,13 @@ Vous voulez exporter la structure de la base courante au format html : #### Voir aussi -[IMPORT STRUCTURE](import-structure.md) \ No newline at end of file +[IMPORT STRUCTURE](import-structure.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1311 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md index e6bd9872d93727..3a7e56858fb39d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXPORT SYLK** écrit dans *document* (document SYLK Windows ou Mac OS) les données des enregistrements de la sélection courante de la table *laTable* du process courant. @@ -51,4 +48,14 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend [EXPORT DIF](export-dif.md) [EXPORT TEXT](export-text.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 85 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md index 8b212317193a51..03c78febacdb70 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **EXPORT TEXT** écrit dans *document* (document texte Windows ou Mac OS) les données des enregistrements de la sélection courante de la table *laTable* du process courant. @@ -53,4 +50,14 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 167 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md index c8af570a7dd383..eb94b54347e910 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md @@ -28,4 +28,13 @@ L'exemple suivant met la variable *vbOptions* à Faux : #### Voir aussi [Not](not.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 215 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md index 0ecaa3c995c23b..b80b4bd8743cf7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md @@ -47,4 +47,13 @@ L'exemple suivant affiche une boîte de dialogue d'alerte. Nous passons à cette [Field](field.md) [Last field number](last-field-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 257 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md index a194996c26c169..03f751984a6da1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md @@ -24,8 +24,7 @@ displayed_sidebar: docs La commande **Field** a deux syntaxes : -* Si vous passez un numéro de table dans *numTable* et un numéro de champ dans *numChamp*, **Field** retourne un pointeur vers le champ. -* Si vous passez un pointeur vers un champ dans *ptrChamp*, **Field** retourne le numéro du champ. +* Si vous passez un numéro de table dans *numTable* et un numéro de champ dans *numChamp*, **Field** retourne un pointeur vers le champ.retourne le numéro du champ. #### Exemple 1 @@ -56,4 +55,13 @@ Dans l'exemple, la variable *champNum* est égale au numéro de champ de \[Table [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last field number](last-field-number.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 253 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md index 4d3d462fcd8f37..c8c7d90abf9556 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FILTER EVENT** doit être appelée à l'intérieur d'une méthode de gestion d'événements installée par [ON EVENT CALL](on-event-call.md). @@ -41,4 +38,14 @@ Référez-vous à l'exemple d'[ON EVENT CALL](on-event-call.md). #### Voir aussi -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 321 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md index 779d94e78b6850..d44ebe647177bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FILTER KEYSTROKE** vous permet de remplacer le caractère saisi par l'utilisateur dans un champ ou une zone saisissable par le premier caractère de la chaîne *carFiltré*. @@ -242,4 +239,13 @@ La méthode obtenirTexteSelectionne est la suivante : [Form event code](../commands/form-event-code.md) [Get edited text](get-edited-text.md) [Is editing text](is-editing-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 389 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md index c7d32ad1b0ce57..11721f767bb9a9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -**Find in array** retourne le numéro du premier élément de *tableau* qui correspond à *valeur*. - -**Find in array** peut être utilisé avec des tableaux de type Texte, Numérique, Date, Pointeur, Objet et Booléen. Les paramètres *tableau* et *valeur* doivent être du même type. +**Find in array** retourne le numéro du premier élément de *tableau* qui correspond à *valeur*.peut être utilisé avec des tableaux de type Texte, Numérique, Date, Pointeur, Objet et Booléen. Les paramètres *tableau* et *valeur* doivent être du même type. *valeur* doit correspondre exactement à l'élément recherché (les mêmes règles que pour l'opérateur d'égalité sont mises en oeuvre, voir [Opérateurs basiques](https://developer.4d.com/docs/fr/Concepts/operators/#op%C3%A9rateurs-basiques)). Si aucun élément n'est trouvé, **Find in array** renvoie -1. @@ -107,4 +105,13 @@ Vous voulez trouver une référence d'objet : [DELETE FROM ARRAY](delete-from-array.md) [Find in sorted array](find-in-sorted-array.md) [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 230 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md index 519915f5613e9c..87543297a7c9e9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md @@ -62,3 +62,13 @@ Voici un exemple permettant de vérifier l'existence d'une valeur : ``` Remarquez le >= qui permet de couvrir tous les cas. En effet, la fonction retourne un numéro d'enregistrement et le premier enregistrement porte le numéro 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 653 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md index ffe3cd0ba3b8de..0e6de8a8e1c074 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Find in list** retourne la position ou la référence du premier élément de *liste* qui équivaut à la chaîne passée dans *valeur*. Si plusieurs éléments sont trouvés, la fonction peut également remplir le tableau *tabEléments* avec la position ou la référence de chaque élément. @@ -64,3 +61,13 @@ Soit la liste hiérarchique suivante :  $vlItemPos:=Find in list(hList;"Date";0;*)   //$vlItemPos vaut 0` ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 952 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md index 8434ee11708298..f0e4b77d7d9303 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md @@ -70,4 +70,13 @@ Vous souhaitez trouver le nombre d'occurrences de chaînes débutant par "test" [Count in array](count-in-array.md) [Find in array](find-in-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1333 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md index 5e14ce33cfee90..f541b721261d22 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Find window** retourne (s'il existe) le numéro de référence de la première fenêtre "touchée" par le point dont vous passez les coordonnées dans *gauche* et *haut*. @@ -30,4 +27,13 @@ Le paramètre *partieFenêtre* retourne 3 si une fenêtre est touchée, et 0 sin #### Voir aussi [Frontmost window](frontmost-window.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 449 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md index 18cac651fc9435..44ce809de90fdd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md @@ -33,4 +33,14 @@ L'exemple suivant charge le premier enregistrement de la table \[Clients\] : [End selection](end-selection.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 50 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md index 338d834a148755..caebc2eecc80b9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md @@ -29,4 +29,13 @@ En temps normal, vous n'avez pas à appeler cette commande, car 4D sauvegarde r #### Voir aussi [Get database parameter](get-database-parameter.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 297 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md index b9492fab5b376b..ba71d2ab864abb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Note de compatibilité Cette commande est conservée pour des raisons de compatibilité uniquement. A compter de la version 12 de 4D, il est conseillé d'utiliser la commande [OBJECT Get pointer](object-get-pointer.md). @@ -47,4 +44,13 @@ L'exemple suivant est une méthode objet pour un bouton. Cette méthode passe le #### Voir aussi -[OBJECT Get pointer](object-get-pointer.md) \ No newline at end of file +[OBJECT Get pointer](object-get-pointer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 278 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md index de29a780e63740..531ffa2ec37be1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md @@ -16,13 +16,21 @@ displayed_sidebar: docs #### Description -La commande **FOLDER LIST** remplit le tableau de type Texte ou Alpha *dossiers* avec les noms des dossiers (répertoires sous Windows) situés à l'endroit que vous avez indiqué avec le paramètre *cheminAccès*. - -**Note :** Vous devez passer un chemin d'accès absolu dans le paramètre *cheminAccès*. +La commande **FOLDER LIST** remplit le tableau de type Texte ou Alpha *dossiers* avec les noms des dossiers (répertoires sous Windows) situés à l'endroit que vous avez indiqué avec le paramètre *cheminAccès*.Vous devez passer un chemin d'accès absolu dans le paramètre *cheminAccès*. S'il n'y pas de dossier à cet endroit, la commande retourne un tableau vide. Si le chemin d'accès que vous avez passé dans *cheminAccès* est invalide, **FOLDER LIST** génère une erreur de gestionnaire de fichiers que vous pouvez intercepter à l'aide d'une méthode installée par [ON ERR CALL](on-err-call.md). #### Voir aussi [DOCUMENT LIST](document-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 473 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md index d08b32dce4251a..995af1542c2b0d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md @@ -48,4 +48,13 @@ Vous souhaitez vérifier que la police utilisée dans une zone de texte est int #### Voir aussi -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1700 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md index eefd0bed0a9e7d..f1fc241936eb17 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md @@ -71,4 +71,13 @@ Vous souhaitez obtenir la liste des polices récentes : [OBJECT SET FONT](object-set-font.md) [SET RECENT FONTS](set-recent-fonts.md) [ST SET ATTRIBUTES](st-set-attributes.md) -*Type de liste des polices* \ No newline at end of file +*Type de liste des polices* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 460 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md index c36e74bdcf052a..d6e603e2e29119 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md @@ -57,4 +57,13 @@ Vous voulez sélectionner les styles de la famille de police "Verdana" (si elle #### Voir aussi -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1362 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md index 2787d6f526e88f..6ed3e1e593d29a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM Convert to dynamic** convertit le formulaire classique *nomFormulaire* en formulaire dynamique et le retourne sous forme d'objet. @@ -62,4 +59,13 @@ Si vous exécutez le code : #### Voir aussi [DIALOG](dialog.md) -[Export structure file](export-structure-file.md) \ No newline at end of file +[Export structure file](export-structure-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1570 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md index 5a7d28c4678733..0c00c18909d487 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM EDIT** ouvre le *formulaire* associé à *uneTable* dans l'éditeur de formulaire 4D. A noter que vous devez avoir accès à l'environnement de développement, sinon l'erreur -9804 ("Impossible d'ouvrir le formulaire") sera générée. @@ -43,4 +40,13 @@ Pour ouvrir le formulaire projet *ContactList* : #### Voir aussi -*Commandes du thème Accès objets développement* \ No newline at end of file +*Commandes du thème Accès objets développement* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1749 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md index 1fb102af630d76..d202f2b9ae1d91 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Compatibilité La commande **Form event code** était nommée **Evenement formulaire** dans les versions précédentes de 4D. Elle a été renommée pour plus de clarté, depuis l'ajout de la commande [FORM Event](form-event.md) qui retourne un objet. @@ -826,4 +823,13 @@ En résultat, le rectangle rouge suit bien le défilement de la list box : [Get edited text](get-edited-text.md) [Keystroke](keystroke.md) [POST OUTSIDE CALL](post-outside-call.md) -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 388 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md index ee6a0a0786163b..952f44cd848acf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md @@ -96,4 +96,13 @@ La list box résultante s'affichera comme suit lorsque les lignes sont sélectio #### Voir aussi -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1606 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md index e642ce6820a867..4beee4d443bafe 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM FIRST PAGE** change la page courante d'un formulaire pour afficher la première page du formulaire. Si aucun formulaire n'est affiché ou chargé via la commande [FORM LOAD](form-load.md), ou si la première page du formulaire est déjà affichée, **FORM FIRST PAGE** ne fait rien. @@ -33,4 +30,13 @@ Cet exemple est une méthode appelée par une commande de menu. Elle affiche la [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 250 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md index c6a52f6e8aea27..7b8cc38accc857 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM Get color scheme** retourne le nom du schéma de couleurs du formulaire actuellement affiché . S'il n'existe pas de formulaire courant, la commande retourne une chaîne vide. @@ -45,4 +42,13 @@ Vous souhaitez charger une image en fonction du schéma courant du formulaire : #### Voir aussi [Get application color scheme](get-application-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1761 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md index 2a5d6c8dca806b..81b42407e768ec 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM Get current page** retourne le numéro de la page courante du formulaire actuellement affiché ou du formulaire courant chargé via la commande [FORM LOAD](form-load.md). @@ -69,4 +66,13 @@ Alors que vous êtes en train d'utiliser un formulaire, si vous choisissez une c [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 276 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md index a5c0dbe40000a0..63ba13109c1e08 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET ENTRY ORDER** retourne dans *nomsObjets* les noms des objets dans l'ordre de saisie du formulaire courant. @@ -52,4 +49,13 @@ Vous voulez exclure certains objets de l'ordre de saisie : #### Voir aussi -[FORM SET ENTRY ORDER](form-set-entry-order.md) \ No newline at end of file +[FORM SET ENTRY ORDER](form-set-entry-order.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1469 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md index 6888d6ec3b43e0..e331939f12902e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET HORIZONTAL RESIZING** retourne dans les variables *redimension*, *largeurMini* et *largeurMaxi* les propriétés de redimensionnement horizontal du formulaire courant. Ces propriétés peuvent avoir été définies pour le formulaire dans l’éditeur de formulaires en mode Développement ou pour le process courant via la commande [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md). #### Voir aussi -[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) \ No newline at end of file +[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1077 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md index a5fc8019d98986..670ed921e20c5f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET NAMES** remplit le tableau *tabNoms* avec les noms des formulaires de l’application. @@ -65,4 +62,13 @@ Exemples d’utilisations type : #### Voir aussi *Formulaires* -[METHOD GET PATHS FORM](method-get-paths-form.md) \ No newline at end of file +[METHOD GET PATHS FORM](method-get-paths-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1167 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md index 26acf915cafd8a..147b9e2085d378 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET OBJECTS** retourne sous forme de tableau(x) la liste de tous les objets présents dans le formulaire courant. Cette liste peut être restreinte à la page courante du formulaire et peut exclure les objets des formulaires hérités. La commande peut être utilisée avec les formulaires entrée et sortie. @@ -121,4 +118,13 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des [FORM GET PROPERTIES](form-get-properties.md) *Objets (Formulaires)* -*Objets de formulaire (Accès)* \ No newline at end of file +*Objets de formulaire (Accès)* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 898 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md index 57b38ea3335986..dca81a70c681cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET PROPERTIES** retourne des propriétés du formulaire *nomForm*. @@ -43,4 +40,13 @@ Le paramètre *titre* retourne le nom de la fenêtre du formulaire, tel qu’il [FORM GET OBJECTS](form-get-objects.md) [FORM SET SIZE](form-set-size.md) -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 674 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md index c97d2fc2ba6c93..b69ba7d6a68c3e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM GET VERTICAL RESIZING** retourne dans les variables *redimension*, *hauteurMini* et *hauteurMaxi* les propriétés de redimensionnement vertical du formulaire courant. Ces propriétés peuvent avoir été définies pour le formulaire dans l’éditeur de formulaires en mode Développement ou pour le process courant via la commande [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md). #### Voir aussi -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1078 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md index a5a96d902686ac..51e06b68cfa633 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM GOTO PAGE** change la page courante du formulaire pour afficher la page désignée par *numéroPage*. @@ -49,4 +46,13 @@ L'exemple suivant est la méthode objet d'un bouton affichant la page 3 du formu [FORM Get current page](form-get-current-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 247 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md index 9e16821aedb4ba..f27afd00827a76 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM LAST PAGE** change la page courante d'un formulaire pour afficher la dernière page du formulaire. Si aucun formulaire n'est affiché ou chargé via la commande [FORM LOAD](form-load.md), ou si la dernière page du formulaire est déjà affichée, **FORM LAST PAGE** ne fait rien. @@ -33,4 +30,13 @@ Cet exemple est une méthode appelée par une commande de menu. Elle affiche la [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 251 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md index 175b6e721029ae..f7cfd36ee28311 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM LOAD** vous permet de charger le *formulaire* en mémoire dans le process courant avec formData (facultatif) afin d'imprimer des données ou d'analyser son contenu. Il ne peut y avoir qu'un seul formulaire courant par process. @@ -172,4 +169,13 @@ Vous souhaitez imprimer un formulaire contenant une list box. Lors de l'événem [FORM UNLOAD](form-unload.md) [LISTBOX GET OBJECTS](listbox-get-objects.md) [OBJECT Get type](object-get-type.md) -[Print object](print-object.md) \ No newline at end of file +[Print object](print-object.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1103 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md index c11dfb6ab0a4da..0141e809363dcd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM NEXT PAGE** change la page courante d'un formulaire pour afficher la page suivante. Si aucun formulaire n'est affiché ou chargé via la commande [FORM LOAD](form-load.md), ou si la page affichée est la dernière page du formulaire, **FORM NEXT PAGE** ne fait rien. @@ -33,4 +30,13 @@ Cet exemple est une méthode appelée par une commande de menu. Elle provoque l' [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 248 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md index 345e5b3654eb35..1fda62a7becdbd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM PREVIOUS PAGE** change la page courante d'un formulaire pour afficher la page précédente. Si aucun formulaire n'est affiché ou chargé via la commande [FORM LOAD](form-load.md), ou si la page affichée est la première page du formulaire, **FORM PREVIOUS PAGE** ne fait rien. @@ -33,4 +30,13 @@ Cet exemple est une méthode appelée par une commande de menu. Elle provoque l' [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM NEXT PAGE](form-next-page.md) \ No newline at end of file +[FORM NEXT PAGE](form-next-page.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 249 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md index 3a9413d765bf35..b8a0cf4fa14581 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM SCREENSHOT** retourne un formulaire sous forme d'image. Cette commande admet deux syntaxes différentes : en fonction de la syntaxe utilisée, vous pouvez obtenir soit l'image d'un formulaire exécuté, soit l'image du formulaire dans l'éditeur de formulaires. @@ -38,4 +35,13 @@ Par défaut, la commande capture la page 1 du formulaire. Si vous souhaitez capt #### Voir aussi -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 940 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md index aa46b76f34a7eb..d469f399c9eb27 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM SET ENTRY ORDER** permet de fixer dynamiquement l'ordre de saisie du formulaire courant pour le process en cours, basé sur le tableau *nomsObjets*. @@ -54,4 +51,13 @@ Vous souhaitez fixer l'ordre de saisie des objets du formulaire en vous basant s #### Voir aussi -[FORM GET ENTRY ORDER](form-get-entry-order.md) \ No newline at end of file +[FORM GET ENTRY ORDER](form-get-entry-order.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1468 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md index 3ff10920efe579..4bba337922b9b6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM SET HORIZONTAL RESIZING** permet de modifier par programmation les propriétés de redimensionnement horizontal du formulaire courant. Par défaut, ces propriétés sont définies dans l’éditeur de formulaires en mode Développement. Les nouvelles propriétés sont fixées pour le process courant, elles ne sont pas stockées avec le formulaire. @@ -38,4 +35,13 @@ Reportez-vous à l'exemple de la commande [FORM SET SIZE](form-set-size.md). [FORM GET HORIZONTAL RESIZING](form-get-horizontal-resizing.md) [FORM SET SIZE](form-set-size.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 892 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md index 6654cb67beeb86..f12bb30cf94769 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM SET INPUT** désigne *formulaire* ou *formUtilisateur* comme formulaire entrée courant de *laTable* pour le process courant. *formulaire* doit appartenir à *laTable*. @@ -104,4 +101,13 @@ Résultat : [MODIFY RECORD](modify-record.md) [MODIFY SELECTION](modify-selection.md) [Open window](open-window.md) -[QUERY BY EXAMPLE](query-by-example.md) \ No newline at end of file +[QUERY BY EXAMPLE](query-by-example.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 55 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md index 6669cee41b318d..1bc02d2fd9b420 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **FORM SET OUTPUT** vous permet de définir *formulaire* ou *formUtilisateur* comme formulaire sortie courant de *laTable* pour le process courant. *formulaire* doit appartenir à *laTable*. @@ -87,4 +84,13 @@ L'exemple suivant utilise un formulaire décrit dans un fichier .json : [FORM SET INPUT](form-set-input.md) [MODIFY SELECTION](modify-selection.md) [PRINT LABEL](print-label.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 54 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md index 8c4ffe04d4f989..1e04af20e8771b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM SET SIZE** permet de modifier par programmation la taille du formulaire courant. La nouvelle taille est définie pour le process courant, elle n’est pas stockée avec le formulaire. @@ -126,4 +123,13 @@ La méthode objet associée à ce bouton est la suivante : #### Voir aussi [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 891 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md index acf24b1f8a2f3a..b5ebadbd6b172c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM SET VERTICAL RESIZING** permet de modifier par programmation les propriétés de redimensionnement vertical du formulaire courant. Par défaut, ces propriétés sont définies dans l’éditeur de formulaires en mode Développement. Les nouvelles propriétés sont fixées pour le process courant, elles ne sont pas stockées avec le formulaire. @@ -38,4 +35,13 @@ Reportez-vous à l'exemple de la commande [FORM SET SIZE](form-set-size.md). [FORM GET VERTICAL RESIZING](form-get-vertical-resizing.md) [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET SIZE](form-set-size.md) \ No newline at end of file +[FORM SET SIZE](form-set-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 893 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md index 3394224398374d..c89379272c4b10 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **FORM UNLOAD** permet de décharger de la mémoire le formulaire courant désigné via la commande [FORM LOAD](form-load.md). @@ -23,4 +20,13 @@ L’appel de cette commande est nécessaire lors de l’utilisation de la comman #### Voir aussi -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1299 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md index bd1430af91920e..5d541fcfe5027d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Form** retourne l'objet associé au formulaire courant, s'il existe. 4D associe automatiquement un objet au formulaire courant dans les cas suivants : @@ -99,4 +96,13 @@ Si des valeurs sont modifiées et que l'utilisateur clique sur le bouton OK, le #### Voir aussi -[DIALOG](dialog.md) \ No newline at end of file +[DIALOG](dialog.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1466 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md index 927ee5d34da5f7..4452ed11f20057 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Frontmost process** retourne le numéro du process dont la ou les fenêtre(s) est (sont) au premier plan. @@ -35,4 +32,13 @@ Référez-vous à l'exemple de [BRING TO FRONT](bring-to-front.md). #### Voir aussi [BRING TO FRONT](bring-to-front.md) -[WINDOW LIST](window-list.md) \ No newline at end of file +[WINDOW LIST](window-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 327 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md index 762d9fbe87f618..831977ffd93a07 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Frontmost window** retourne le numéro de référence de la fenêtre actuellement située au premier plan. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Voir aussi [Frontmost process](frontmost-process.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 447 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md index e4d0affcfdd06a..4e5e534da9822f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md @@ -81,4 +81,13 @@ Un formulaire “Demande de certificat” comporte les six champs nécessaires #### Voir aussi [GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 691 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md index 1871f1e36345c3..1b599c93c73fa4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md @@ -81,4 +81,13 @@ Ces exemples illustrent comment récupérer la clé digest d’un texte : [BASE64 ENCODE](base64-encode.md) [Generate password hash](generate-password-hash.md) *Protocole sécurisé* -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1147 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md index dd3e3985d17854..9dd623f876adf0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md @@ -47,4 +47,13 @@ Reportez-vous à l’exemple de la commande [ENCRYPT BLOB](encrypt-blob.md). [DECRYPT BLOB](decrypt-blob.md) [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 688 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md index f60d6085c8c948..988bd3d7195bb0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md @@ -66,4 +66,13 @@ Cet exemple génère un hash de mot de passe à l'aide de bcrypt avec un coût d [Generate digest](generate-digest.md) -[Verify password hash](verify-password-hash.md) \ No newline at end of file +[Verify password hash](verify-password-hash.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1533 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md index 1330cdcb85ec64..24cd8734b9e663 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md @@ -29,3 +29,13 @@ Génération d’un UUID dans une variable :  var MonUUID : Text  MonUUID:=Generate UUID ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1066 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md index 6116e2426ee01f..795cb542e3959c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md @@ -68,4 +68,13 @@ Vous voulez obtenir le chemin d'accès du fichier de sauvegarde le plus récent #### Voir aussi -[File](file.md) \ No newline at end of file +[File](file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1418 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md index b1215d809492da..645d114f873c4a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md @@ -52,8 +52,9 @@ Les applications de l'environnement 4D utilisent un dossier spécifique pour sto Le dossier 4D actif se trouve par défaut à l'emplacement suivant : -* Sous Windows : *{Disque}:\\Users\\* *\\AppData\\Roaming\\* ** -* Sous macOS : *{Disque}:Users:* *:Library:Application Support:* ** +* Sous Windows: *{Disk}:\\Users\\{userName}\\AppData\\Roaming\\{applicationName}* +* Sous macOS: *{Disk}:Users:{userName}:Library:Application Support:{applicationName}* + ##### Dossier Licenses @@ -205,4 +206,14 @@ Si le paramètre *dossier* est invalide ou si le chemin d'accès retourné est v [System folder](system-folder.md) [Temporary folder](temporary-folder.md) [Test path name](test-path-name.md) -[WEB SET ROOT FOLDER](web-set-root-folder.md) \ No newline at end of file +[WEB SET ROOT FOLDER](web-set-root-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 485 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md index 2d569466178a50..d99eb9735aa7bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) *Gestion des priorités dans le cache de la base* -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1428 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md index 33a55be003e16e..d5379e9f71f2a8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) *Gestion des priorités dans le cache de la base* -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1427 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md index 375493dab69f8b..c26b28a6d3833c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md @@ -26,4 +26,13 @@ Les types de données scalaires incluent les types date/heure, numériques et al [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) *Gestion des priorités dans le cache de la base* -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1426 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md index 40fb359f396d41..7deeb1979b923a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET ALLOWED METHODS** retourne dans le tableau *tabMéthodes* le nom des méthodes “autorisées” dans l’éditeur de formules, c’est-à-dire pouvant être utilisées lors de l’écriture d’une formule — ces méthodes sont listées à la fin de la liste des commandes dans l’éditeur. @@ -45,4 +42,13 @@ Cet exemple permet d’autoriser ponctuellement un ensemble de méthodes spécif #### Voir aussi -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 908 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md index d33b20d47ec655..e08cdc40107f8c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get application color scheme** retourne le nom du schéma de couleur utilisé dans l'application. @@ -45,4 +42,13 @@ Pour plus de détails sur les noms des schémas de couleur, veuillez vous report #### Voir aussi [FORM Get color scheme](form-get-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1763 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md index 3684448e89ebe0..b51c69ddab16fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md @@ -23,4 +23,13 @@ Par défaut, les assertions sont actives mais elles peuvent avoir été désacti [ASSERT](assert.md) [Asserted](asserted.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1130 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md index c2d4837cec7457..10c63de33d1d0d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **GET AUTOMATIC RELATIONS** permet de savoir si le statut automatique/manuel de tous les liens manuels N vers 1 et 1 vers N de la base a été modifié dans le process courant. - -* *aller* : ce paramètre retourne Vrai si un appel antérieur de la commande [SET AUTOMATIC RELATIONS](set-automatic-relations.md) a rendu automatiques tous les liens manuels N vers 1 — par exemple [SET AUTOMATIC RELATIONS](set-automatic-relations.md)(Vrai;Faux). +La commande **GET AUTOMATIC RELATIONS** permet de savoir si le statut automatique/manuel de tous les liens manuels N vers 1 et 1 vers N de la base a été modifié dans le process courant.: ce paramètre retourne Vrai si un appel antérieur de la commande [SET AUTOMATIC RELATIONS](set-automatic-relations.md) a rendu automatiques tous les liens manuels N vers 1 — par exemple [SET AUTOMATIC RELATIONS](set-automatic-relations.md)(Vrai;Faux). Ce paramètre retourne Faux si la commande [SET AUTOMATIC RELATIONS](set-automatic-relations.md) n’a pas été appelée ou si sa précédente exécution n’a pas modifié les liens manuels N vers 1 — par exemple [SET AUTOMATIC RELATIONS](set-automatic-relations.md)(Faux;Faux). * *retour* : ce paramètre retourne Vrai si l’appel précédent de la commande [SET AUTOMATIC RELATIONS](set-automatic-relations.md) a rendu automatiques tous les liens manuels 1 vers N — par exemple [SET AUTOMATIC RELATIONS](set-automatic-relations.md)(Vrai;Vrai). Ce paramètre retourne Faux si la commande [SET AUTOMATIC RELATIONS](set-automatic-relations.md) n’a pas été appelée ou si sa précédente exécution n’a pas modifié les liens manuels 1 vers N — par exemple [SET AUTOMATIC RELATIONS](set-automatic-relations.md)(Vrai;Faux). @@ -31,4 +29,13 @@ Reportez-vous à l'exemple de la commande [GET FIELD RELATION](get-field-relatio [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 899 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md index bc8a5df36edf5d..3a8c0702ccca8f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -La commande **Get cache size** retourne, en octets, la taille courante du cache de la base de données. - -**Note :** Cette commande fonctionne uniquement en mode local (4D Server et 4D) ; elle ne doit pas être utilisée avec 4D en mode accès distant. +La commande **Get cache size** retourne, en octets, la taille courante du cache de la base de données.Cette commande fonctionne uniquement en mode local (4D Server et 4D) ; elle ne doit pas être utilisée avec 4D en mode accès distant. #### Exemple @@ -25,4 +23,13 @@ Voir l'exemple de la commande [SET CACHE SIZE](set-cache-size.md). #### Voir aussi -[SET CACHE SIZE](set-cache-size.md) \ No newline at end of file +[SET CACHE SIZE](set-cache-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1432 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md index c5844be02134d4..a17d0cdac92af0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get current printer** retourne le nom de l’imprimante courante définie dans l’application 4D. Par défaut au lancement de 4D, l’imprimante courante est l’imprimante définie dans le système. @@ -33,4 +30,13 @@ Si aucune imprimante n'est installée, une erreur est générée. #### Voir aussi [PRINTERS LIST](printers-list.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 788 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md index 18629016da4125..da1a2ca84f2a3d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md @@ -49,4 +49,13 @@ La langue courante de la base définit le dossier .lproj dans lequel le programm #### Voir aussi [Localized document path](localized-document-path.md) -[SET DATABASE LOCALIZATION](set-database-localization.md) \ No newline at end of file +[SET DATABASE LOCALIZATION](set-database-localization.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1009 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md index 73e88e74445b60..eba18d87138e16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get database parameter** permet de lire la valeur courante d'un paramètre de la base 4D. Lorsque la valeur du paramètre est une chaîne de caractères, elle est retournée dans le paramètre *valeurAlpha*. @@ -134,4 +131,13 @@ Dans la [On Startup database method](on-startup-database-method.md), vous pouvez [DISTINCT VALUES](distinct-values.md) [Application info](application-info.md) [QUERY SELECTION](query-selection.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 643 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md index 73b8870acb499c..b7510a48d1f5c5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get default user** retourne le numéro de référence unique de l’utilisateur désigné comme “Utilisateur par défaut” dans la boîte de dialogue des Propriétés de la base : @@ -23,3 +20,13 @@ displayed_sidebar: docs ![](../assets/en/commands/pict36789.fr.png) Si aucun utilisateur par défaut n’est défini, la commande retourne 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 826 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md index f54a81f10e3dd3..6bba531b65ab89 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -La commande **GET DOCUMENT ICON** retourne dans le champ ou la variable image 4D *icône*, l’icône du document dont vous avez passé le nom ou le chemin d’accès complet dans *cheminDoc*. *cheminDoc* peut désigner un fichier de tout type (document, exécutable, raccourci ou alias...) ou un dossier. +La commande **GET DOCUMENT ICON** retourne dans le champ ou la variable image 4D *icône*, l’icône du document dont vous avez passé le nom ou le chemin d’accès complet dans *cheminDoc*.peut désigner un fichier de tout type (document, exécutable, raccourci ou alias...) ou un dossier. Passez dans *cheminDoc* le chemin d’accès absolu du document dont vous souhaitez récupérer l’icône. Vous pouvez passer uniquement le nom du document ou un chemin d’accès relatif, dans ce cas il doit se trouver dans le dossier courant de la base (généralement, le dossier contenant le fichier de structure de la base). Si vous passez une chaîne vide dans *cheminDoc*, la boîte de dialogue standard d’ouverture de fichiers apparaît, permettant à l’utilisateur de désigner un fichier. Une fois la boîte de dialogue validée, la variable système Document contient le chemin d’accès complet du fichier sélectionné. @@ -25,3 +25,14 @@ Si vous passez une chaîne vide dans *cheminDoc*, la boîte de dialogue standard Passez dans le paramètre *icône* un champ ou une variable image 4D. Après l’exécution de la commande, ce paramètre contient l’icône du fichier (au format PICT). Le paramètre optionnel *taille* vous permet d’indiquer les dimensions de l’image que vous souhaitez obtenir. La valeur du paramètre correspond à la longueur d’un côté du carré dans lequel l’image sera incluse. Généralement, les icônes sont définies en 32x32 pixels (“grande icône”) ou 16x16 pixels (“petite icône”). Si vous passez 0 ou omettez le paramètre, la commande retourne l’icône dans sa plus grande taille disponible. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 700 | +| Thread safe | ✓ | +| Modifie les variables | Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md index 800040e2e9c313..2e478676a59884 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Description -Cette commande ne fonctionne qu'avec un document déjà ouvert, dont vous avez passé le numéro de référence dans le paramètre *docRef*. - -**Get document position** retourne la position, à partir du début du document, à laquelle la prochaine lecture ([RECEIVE PACKET](receive-packet.md)) ou écriture ([SEND PACKET](send-packet.md)) aura lieu. +Cette commande ne fonctionne qu'avec un document déjà ouvert, dont vous avez passé le numéro de référence dans le paramètre *docRef*.retourne la position, à partir du début du document, à laquelle la prochaine lecture ([RECEIVE PACKET](receive-packet.md)) ou écriture ([SEND PACKET](send-packet.md)) aura lieu. #### Voir aussi [RECEIVE PACKET](receive-packet.md) [SEND PACKET](send-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 481 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md index 4a1121a2ad2511..f4e758ccf71658 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md @@ -207,4 +207,14 @@ Une fois que cela est implémenté dans votre base, il suffit d'écrire la méth #### Voir aussi -[SET DOCUMENT PROPERTIES](set-document-properties.md) \ No newline at end of file +[SET DOCUMENT PROPERTIES](set-document-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 477 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md index ad435d526fe7ba..a8647410986b52 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md @@ -28,4 +28,14 @@ Sous Mac OS, si vous ne passez pas le paramètre optionnel *\**, la taille de la [Get document position](get-document-position.md) [SET DOCUMENT POSITION](set-document-position.md) -[SET DOCUMENT SIZE](set-document-size.md) \ No newline at end of file +[SET DOCUMENT SIZE](set-document-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 479 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md index 3e563d192f9716..fe377667ad8212 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get edited text** retourne le texte en cours de saisie dans un objet de formulaire. @@ -68,4 +65,13 @@ Voici un exemple de traitement à la volée des caractères saisis dans un champ #### Voir aussi [Form event code](form-event-code.md) -[Is editing text](is-editing-text.md) \ No newline at end of file +[Is editing text](is-editing-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 655 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md index de2fdca1914155..294a8b913630b2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md @@ -30,4 +30,13 @@ Cette commande vous permet notamment de recopier le fichier externe. #### Voir aussi -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1133 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md index 35e08b22118d61..622e2acb8448c9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET FIELD ENTRY PROPERTIES** retourne les propriétés relatives à la saisie de données du champ désigné par *numTable* et *numChamp* ou par *ptrChp*. @@ -43,4 +40,13 @@ Si aucune énumération n’est associée au champ, ou si son type n’admet pas [GET FIELD PROPERTIES](get-field-properties.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[GET TABLE PROPERTIES](get-table-properties.md) \ No newline at end of file +[GET TABLE PROPERTIES](get-table-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 685 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md index 45ce484c57e411..6fb6779db8251d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md @@ -73,4 +73,13 @@ L'exemple suivant récupère dans les variables *vType*, *vLong*, *vIndex*, *vUn [Field](field.md) [Field name](field-name.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 258 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md index 8642530d055b19..cf507117f9ad9e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md @@ -83,4 +83,13 @@ Le code ci-dessous illustre les différentes possibilités offertes par les comm [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET RELATION PROPERTIES](get-relation-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 920 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md index 2a5be313b7a7ba..e726dfc03c82bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET FIELD TITLES** remplit les tableaux *titresChamps* et *numChamps* avec les noms et les numéros des champs de *laTable* désignée. Le contenu des deux tableaux est synchronisé. @@ -29,4 +26,13 @@ Dans les deux cas, la commande ne retourne pas les champs déclarés invisibles. #### Voir aussi [GET TABLE TITLES](get-table-titles.md) -[SET FIELD TITLES](set-field-titles.md) \ No newline at end of file +[SET FIELD TITLES](set-field-titles.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 804 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md index 00f853c4d31152..0ae20be26da483 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get file from pasteboard** retourne le chemin d’accès absolu d’un fichier inclus dans une opération de glisser-déposer. Plusieurs fichiers pouvant être sélectionnés et déplacés simulanément, le paramètre *indiceN* permet de désigner un fichier parmi l’ensemble des fichiers sélectionnés. @@ -43,4 +40,13 @@ L’exemple suivant permet de récupérer dans un tableau tous les chemins d’a #### Voir aussi -[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) \ No newline at end of file +[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 976 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md index ed0d172e18abf3..26c9ce0957adfb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md @@ -34,4 +34,13 @@ Vous souhaitez vérifier si l'utilisateur courant appartient au groupe "plugins" #### Voir aussi -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1738 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md index e2852732f87bb9..e19c7550729cf3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **GET GROUP LIST** remplit les tableaux *nomsGroupes* et *numérosGroupes* avec les noms et les numéros de référence uniques des groupes tels qu'ils apparaissent dans l'éditeur de Mots de passe. @@ -34,4 +31,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET GROUP [GET GROUP PROPERTIES](get-group-properties.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 610 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md index d59c85d2c83a1c..8350507b2ae5ae 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **GET GROUP PROPERTIES** retourne les propriétés du groupe dont le numéro de référence est passé dans *réfGroupe*. Vous passez le numéro de référence du groupe retourné par la commande [GET GROUP LIST](get-group-list.md). @@ -41,4 +38,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET GROUP [GET GROUP LIST](get-group-list.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 613 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md index 834d0dcbff4269..dd05f4cc74491b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET HIGHLIGHT** vous permet de déterminer précisément le texte actuellement sélectionné dans *objet*. @@ -64,4 +61,13 @@ Modification du style du texte sélectionné : [FILTER KEYSTROKE](filter-keystroke.md) [HIGHLIGHT TEXT](highlight-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 209 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md index 3486051fd601d4..55ee5823caed19 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET HIGHLIGHTED RECORDS** stocke dans l’ensemble désigné par le paramètre *nomEnsemble* les enregistrements marqués (c'est-à-dire, les enregistrements “surlignés” par l'utilisateur dans le formulaire liste) de *laTable* passée en paramètre. Si le paramètre *laTable* est omis, la table du formulaire ou du sous-formulaire courant est utilisée. @@ -44,4 +41,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[HIGHLIGHT RECORDS](highlight-records.md) \ No newline at end of file +[HIGHLIGHT RECORDS](highlight-records.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 902 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md index 7020d032a6276a..247544bf830304 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get indexed string** retourne : @@ -46,4 +43,14 @@ OK prend la valeur 1 si la ressource est trouvée, sinon elle prend la valeur 0 [Get string resource](get-string-resource.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 510 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md index b93b9b26589c9d..c62f04745fb78b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md @@ -24,4 +24,13 @@ Cette commande est destinée à être utilisée dans un processus de mise à jou #### Voir aussi [RESTART 4D](restart-4d.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1301 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md index 49e778f5fb87c4..0cd21ac36ea312 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get list item font** retourne le nom de la police de caractères courante de l’élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d’objet dans *liste*. @@ -32,4 +29,13 @@ Vous pouvez enfin passer *\** dans *réfElément* : dans ce cas, la commande s #### Voir aussi -[SET LIST ITEM FONT](set-list-item-font.md) \ No newline at end of file +[SET LIST ITEM FONT](set-list-item-font.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 954 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md index 5d27b542f7adb5..9e207ceb8e169e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST ITEM ICON** retourne dans *icône* l’icône associée à l’élément dont vous avez passé le numéro de référence dans *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d’objet dans *liste*. @@ -39,4 +36,13 @@ Si aucune icône n’est associée à l’élément, la variable icône est reto #### Voir aussi [GET LIST ITEM PROPERTIES](get-list-item-properties.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 951 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md index aea5648be48a4b..9af7dca3433b6e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST ITEM PARAMETER ARRAYS** permet de récupérer en un seul appel l’ensemble des paramètres (ainsi que, optionnellement, leurs valeurs) associés à l’élément *refElément* de la liste hiérarchique dont vous avez passé la référence ou le nom d’objet dans le paramètre *liste*. @@ -76,4 +73,13 @@ Si on souhaite récupérer également les valeurs des paramètres, on peut écri #### Voir aussi -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1195 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md index f1eca87bba995c..5f89515bc6406a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST ITEM PARAMETER** permet de connaître la *valeur* courante du paramètre *sélecteur* pour l’élément *réfElément* de la liste hiérarchique dont vous avez passé la référence ou le nom d’objet dans le paramètre *liste*. @@ -36,4 +33,13 @@ Vous pouvez passer dans *sélecteur* la constante Additional text ou Associated #### Voir aussi *Listes hiérarchiques* -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 985 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md index a7aad0423fa66d..2e160ba5ac9cf9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST ITEM PROPERTIES** retourne les propriétés de l'élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -53,4 +50,13 @@ Pour plus d'informations sur ces propriétés, reportez-vous à la description d [GET LIST ITEM](get-list-item.md) [GET LIST ITEM ICON](get-list-item-icon.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 631 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md index a7518653bed3cc..7de5dabce1e685 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST ITEM** retourne des informations sur l'élément désigné par le paramètre *positionElém* de la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -73,4 +70,13 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md). [List item position](list-item-position.md) [Selected list items](selected-list-items.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 378 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md index 56abb62b6b301e..fe5f82b88843a0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET LIST PROPERTIES** retourne des informations sur la liste hiérarchique dont vous avez passé le numéro de référence dans le paramètre *liste*. @@ -39,4 +36,13 @@ Pour une description complète de ces propriétés d'apparence et de comportemen #### Voir aussi -[SET LIST PROPERTIES](set-list-properties.md) \ No newline at end of file +[SET LIST PROPERTIES](set-list-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 632 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md index 6534d9667e8746..bf066909babc72 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET MACRO PARAMETER** retourne dans *paramTexte* une partie ou la totalité du texte de la méthode depuis laquelle elle a été appelée. @@ -36,4 +33,13 @@ Reportez-vous à l'exemple de [SET MACRO PARAMETER](set-macro-parameter.md). #### Voir aussi -[SET MACRO PARAMETER](set-macro-parameter.md) \ No newline at end of file +[SET MACRO PARAMETER](set-macro-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 997 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md index 3b57462f5646ed..79a070c845132b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu bar reference** renvoie l’identifiant unique de la barre de menus courante ou de la barre de menus d’un process spécifique. @@ -41,4 +38,13 @@ Reportez-vous à l'exemple de la commande [GET MENU ITEMS](get-menu-items.md). #### Voir aussi -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 979 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md index b7a0251433853a..648e0f6174bdc0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET MENU ITEM ICON** retourne dans la variable *refIcône* la référence de l’icône éventuellement associée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. Cette référence est le chemin d'accès ou le numéro de l’image. @@ -35,4 +32,13 @@ Si aucune icône n’est associée à la ligne, la commande retourne une valeur #### Voir aussi -[SET MENU ITEM ICON](set-menu-item-icon.md) \ No newline at end of file +[SET MENU ITEM ICON](set-menu-item-icon.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 983 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md index a168a04aa07d41..6c6a6466c93487 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item key** retourne le code de la touche **Ctrl** (sous Windows) ou **Commande** (Mac OS) utilisée comme raccourci clavier pour la commande de menu dont le numéro ou la référence de menu et le numéro de ligne ont été passés dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -50,4 +47,14 @@ Pour obtenir le raccourci clavier associé à une ligne de menu, il est utile de #### Voir aussi [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 424 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md index ea99965cf0b61d..55954a6e2d50ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item mark** retourne la marque (ou "coche") de la ligne de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -41,4 +38,14 @@ L'exemple suivant inverse l'état marqué d'une ligne de menu : #### Voir aussi -[SET MENU ITEM MARK](set-menu-item-mark.md) \ No newline at end of file +[SET MENU ITEM MARK](set-menu-item-mark.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 428 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md index 71e63733e7bc40..e9ff47927fd871 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item method** retourne le nom de la méthode projet 4D associée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -30,4 +27,13 @@ La commande retourne le nom de la méthode 4D sous la forme d’une chaîne de c #### Voir aussi -[SET MENU ITEM METHOD](set-menu-item-method.md) \ No newline at end of file +[SET MENU ITEM METHOD](set-menu-item-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 981 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md index cc845aa094bfc2..375363cdf3b2bb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item modifiers** retourne le ou les modificateur(s) additionnel(s) associé(s) au raccourci standard de la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -48,4 +45,13 @@ Reportez-vous à l'exemple de la commande [Get menu item key](get-menu-item-key. #### Voir aussi [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 980 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md index 029d9c3acf58b3..ee47de7e3ef325 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item parameter** retourne la chaîne de caractères personnalisée associée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. Cette chaîne doit avoir été préalablement définie à l’aide de la commande [SET MENU ITEM PARAMETER](set-menu-item-parameter.md). @@ -26,4 +23,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get selected menu item parameter](get-selected-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1003 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md index 0dbf9abc19aa6b..89fa670d3b7cc0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET MENU ITEM PROPERTY** retourne dans le paramètre *valeur* la valeur courante de la propriété de la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -33,4 +30,13 @@ Passez dans le paramètre *propriété* la propriété dont vous souhaitez obten #### Voir aussi -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 972 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md index d81062226372bf..ae16cad28ec6f2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item style** retourne le style de police de la ligne de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -48,4 +45,14 @@ Si, par exemple, vous voulez tester si une ligne de menu est affichée en gras, #### Voir aussi -[SET MENU ITEM STYLE](set-menu-item-style.md) \ No newline at end of file +[SET MENU ITEM STYLE](set-menu-item-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 426 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md index 608f1e47589157..340702c2363e9c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu item** retourne le libellé de la commande de menu dont le numéro ou la référence de menu et le numéro de commande ont été passés dans *menu* et *ligneMenu*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -30,4 +27,14 @@ Si vous ne passez pas le paramètre *process*, **Get menu item** est appliquée #### Voir aussi [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM](set-menu-item.md) \ No newline at end of file +[SET MENU ITEM](set-menu-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 422 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md index e19ed180861c3e..a6ddb7fa97f827 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET MENU ITEMS** retourne dans les tableaux *tabTitresMenu* et *tabRefsMenu* les libellés et les identifiants de toutes les lignes du menu ou de la barre de menus désigné(e) par le paramètre *menu*. @@ -36,3 +33,13 @@ Vous souhaitez connaître le contenu de la barre de menus du process courant :  RefBarreMenu:=Get menu bar reference(Frontmost process)  GET MENU ITEMS(RefBarreMenu;tabTitresMenu;tabRefsMenu) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 977 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md index 5de36cf53d99f2..248caa485160e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get menu title** retourne le titre du menu dont vous avez passé le numéro ou la référence dans *menu*. @@ -28,4 +25,14 @@ Si vous omettez le paramètre *process*, **Get menu title** s'applique à la bar #### Voir aussi -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 430 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md index 9b16e71f00c190..d4007cc267cf05 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md @@ -32,4 +32,13 @@ Une fois que vous avez identifié les tables manquantes de la base, vous pouvez #### Voir aussi -[REGENERATE MISSING TABLE](regenerate-missing-table.md) \ No newline at end of file +[REGENERATE MISSING TABLE](regenerate-missing-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1125 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md index 70748b3e45b097..db0afde7f5ba7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PASTEBOARD DATA TYPE** permet d’obtenir la liste des types de données présents dans le conteneur. Cette commande doit généralement être utilisée dans le contexte d'un glisser-déposer, dans le cadre des événements formulaire On Drop ou On Drag Over de l’objet de destination. Elle permet notamment de vérifier la présence d’un type de données spécifique dans le conteneur. @@ -35,4 +32,13 @@ Pour plus d’informations sur les types de données pris en charge, reportez-vo #### Voir aussi -*Gestion du conteneur de données* \ No newline at end of file +*Gestion du conteneur de données* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 958 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md index 90b980c293c5a6..9679ca859023ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **GET PASTEBOARD DATA** retourne dans le champ ou la variable de type BLOB *données* les données qui se trouvent dans le conteneur de données et dont le type est passé dans *typeDonnées*. (Si le conteneur de données contient du texte copié depuis 4D, le jeu de caractères du BLOB sera probablement UTF-16.) @@ -55,4 +52,14 @@ Si les données sont extraites correctement, la variable OK prend la valeur 1\. [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 401 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md index a24e31d517e387..65c6d52ce9e000 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md @@ -24,4 +24,13 @@ Si l’image n’a pas de nom par défaut, la commande retourne une chaîne vide #### Voir aussi -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1171 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md index d56740470712ca..2efb455198d5e2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md @@ -45,4 +45,13 @@ Vous souhaitez connaître les formats de l'image stockée dans un champ Image de #### Voir aussi - \ No newline at end of file + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1406 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md index c55de633147db9..03131d40f49d34 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PICTURE FROM LIBRARY** retourne dans *image* l'image de la bibliothèque dont vous avez passé le numéro de référence dans *refImage* ou le nom dans *nomImage*. @@ -55,4 +52,14 @@ S'il n'y a pas assez de mémoire pour retourner l’image, l'erreur –108 est g [PICTURE LIBRARY LIST](picture-library-list.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 565 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md index 80df17d3edf353..c3d53b9d1aef07 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **GET PICTURE FROM PASTEBOARD** retourne l'image présente dans le conteneur de données dans le champ ou la variable *image*. @@ -42,4 +39,14 @@ Si l'image est correctement extraite, OK prend la valeur 1\. Sinon, OK prend la [GET PASTEBOARD DATA](get-pasteboard-data.md) [Get text from pasteboard](get-text-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 522 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md index 9ac9177fbebaf8..836027c944f219 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md @@ -32,4 +32,13 @@ Si l’image ne contient pas de mots-clés ou de métadonnées IPTC/Keywords, la #### Voir aussi [GET PICTURE METADATA](get-picture-metadata.md) -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1142 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md index ecab2611da8405..b37726128693d9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md @@ -97,4 +97,14 @@ La variable système OK retourne 1 si la récupération des métadonnées s’es [GET PICTURE KEYWORDS](get-picture-keywords.md) *Noms des métadonnées images* [SET PICTURE METADATA](set-picture-metadata.md) -*Valeurs des métadonnées images* \ No newline at end of file +*Valeurs des métadonnées images* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1122 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md index c52999d1a31826..7603d72aace130 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PICTURE RESOURCE** retourne dans le champ ou la variable image désigné(e) par *resDonnées* l'image stockée dans la ressource image ("PICT") dont vous passé le numéro dans *resNum*. @@ -43,4 +40,14 @@ S'il n'y a pas assez de mémoire disponible pour charger l'image, une erreur est #### Voir aussi -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 502 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md index 397986730b0bcb..4174c979702e67 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get plugin access** retourne le nom du groupe d’utilisateurs autorisé à utiliser le plug-in dont le numéro a été passé dans le paramètre *plugIn*. Si aucun groupe n’est associé au plug-in, la commande retourne une chaîne vide (""). @@ -35,4 +32,13 @@ Passez dans le paramètre *plugIn* le numéro du plug-in duquel vous souhaitez c #### Voir aussi [SET GROUP ACCESS](set-group-access.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 846 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md index edda3e31fca53a..2ec24be674dad3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md @@ -49,4 +49,13 @@ Utilisation de pointeurs vers des éléments de tableaux à deux dimensions : #### Voir aussi [Field](field.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 304 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md index c4d66c7e19a2ba..4ba625616c6a0c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get print marker** permet de récupérer la position courante d’un taquet lors d’une impression. Les coordonnées sont retournées en pixels (1 pixel = 1/72 pouce). @@ -61,4 +58,13 @@ Reportez-vous à l’exemple de la commande [SET PRINT MARKER](set-print-marker. #### Voir aussi [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 708 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md index 5920a1b1077ced..9db868c40351d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PRINT OPTION** retourne la ou les valeur(s) courante(s) d’une option d’impression. @@ -68,4 +65,14 @@ La variable système OK prend la valeur 1 si la commande a été exécutée corr #### Voir aussi [PRINT OPTION VALUES](print-option-values.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 734 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md index b7a538ed7432a1..b8f42ccee431e5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get print preview** retourne Vrai si l’instruction [SET PRINT PREVIEW](set-print-preview.md) a été appelée avec la valeur **Vrai** dans le process courant. @@ -25,4 +22,13 @@ A noter que l’utilisateur peut modifier cette option avant de valider la boît #### Voir aussi [Is in print preview](is-in-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1197 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md index c21ce09256284f..2a954e62654911 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PRINTABLE AREA** retourne dans les paramètres *hauteur* et *largeur* la taille en pixels de la zone d’impression. Cette taille dépend des paramètres d’impression courants, de l’orientation du papier, etc. @@ -40,4 +37,13 @@ Pour connaître la taille totale de la page, vous pouvez : #### Voir aussi [GET PRINTABLE MARGIN](get-printable-margin.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 703 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md index 1d14700aaa37c1..f8096f01979db0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PRINTABLE MARGIN** retourne les valeurs courantes des différentes marges définies lors de l’utilisation des commandes [Print form](print-form.md), [PRINT SELECTION](print-selection.md) et [PRINT RECORD](print-record.md). @@ -44,4 +41,13 @@ Il est possible de baser l’impression des formulaires effectuée à l’aide d [GET PRINTABLE AREA](get-printable-area.md) [Print form](print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 711 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md index 6542d450b170f2..efbcfd5ade851e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get printed height** retourne la hauteur globale (en pixels) de la section imprimée par la commande [Print form](print-form.md). @@ -30,4 +27,13 @@ Les marges d’impression gauche et droite n’influent pas sur la valeur retour [GET PRINTABLE AREA](get-printable-area.md) [Print form](print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 702 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md index 4fd35f6ba770f7..ccebb45d023674 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET PROCESS VARIABLE** lit la valeur de la ou des variable(s) process *varSource* (*varSource2*, etc.) depuis le process source dont le numéro est passé dans *process* et la retourne dans la ou les variables(s) *varDestination* ( *varDestination2*, etc.) du process courant. @@ -118,4 +115,13 @@ Reportez-vous à l'exemple de la commande *\_o\_DRAG AND DROP PROPERTIES*. [POST OUTSIDE CALL](post-outside-call.md) *Présentation du Glisser-Déposer* [SET PROCESS VARIABLE](set-process-variable.md) -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 371 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md index e40ebeeab7b6cc..4989aa186d97ad 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md @@ -55,4 +55,13 @@ Nous souhaitons modifier temporairement la destination de recherche, et rétabli #### Voir aussi -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1155 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md index c23d2c6529c03f..7a7827513623be 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md @@ -23,4 +23,13 @@ Par défaut, si aucune limite n’a été définie, la commande retourne 0. #### Voir aussi -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1156 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md index 7af5ab1326b1bb..cad110e2921802 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET REGISTERED CLIENTS** remplit deux tableaux : @@ -46,4 +43,14 @@ Si l’opération se déroule correctement, la variable système OK prend la val [EXECUTE ON CLIENT](execute-on-client.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 650 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md index 7f8fb6bfd0ccd6..e2e2be5473399b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md @@ -41,4 +41,13 @@ Après l’exécution de la commande : [GET FIELD PROPERTIES](get-field-properties.md) [GET TABLE PROPERTIES](get-table-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 686 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md index dde4c30e59d7d7..4457482b2064ff 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Get resource name** retourne le nom de la ressource dont le type est passé dans *resType* et le numéro de référence (ID) dans *resNum*. @@ -26,3 +23,13 @@ displayed_sidebar: docs Si vous ne passez pas le paramètre *resFichier*, la ressource est recherchée dans tous les fichiers de ressources ouverts. Si vous passez un numéro de référence de fichier de ressource dans le paramètre *resFichier*, la ressource n'est recherchée que dans ce fichier. Si la ressource n'existe pas, **Get resource name** retourne une chaîne vide. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 513 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md index 3670fc9f976b2f..ec7490f26e6af6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Get resource properties** retourne les attributs de la ressource dont le type est passé dans le paramètre *resType* et le numéro de référence dans *resNum*. @@ -36,3 +33,14 @@ Référez-vous à l'exemple de la commande [Get resource name](get-resource-name #### Variables et ensembles système La variable OK prend la valeur 0 si la ressource n'existe pas, sinon elle prend la valeur 1. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 515 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md index 677a1928406bb0..b75677292ced06 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET RESOURCE** retourne dans le champ ou la variable BLOB *resDonnées* le contenu de la ressource dont le type et le numéro sont passés dans *resType* et *resNum*. @@ -50,4 +47,14 @@ S'il n'y a pas assez de mémoire disponible pour charger l'image, une erreur est #### Voir aussi -*Ressources* \ No newline at end of file +*Ressources* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 508 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md index dbc91bd107c3b7..c00756d2e5b838 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get selected menu item parameter** retourne la chaîne de caractères personnalisée associée à la ligne de menu sélectionnée. Ce paramètre doit avoir été préalablement défini à l’aide de la commande [SET MENU ITEM PARAMETER](set-menu-item-parameter.md). @@ -25,4 +22,13 @@ Si aucune ligne de menu n’a été sélectionnée, la commande retourne une cha [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1005 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md index 5b12838e4581f7..64562b5c1ca04e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md @@ -48,4 +48,13 @@ Cette méthode projet permet d'adresser le même port série (sans protocole), q #### Voir aussi -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 909 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md index 903731fd703270..301c2c8e04fb1b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get string resource** retourne la chaîne stockée dans la ressource chaîne ("STR ") dont vous avez passé le numéro d'ID dans *resNum*. @@ -44,4 +41,14 @@ La variable système OK prend la valeur 1 si la ressource est trouvée, sinon el [Get indexed string](get-indexed-string.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 506 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md index eab4eb44e2d1f8..c08569f5028ee2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET STYLE SHEET INFO** retourne la configuration courante de la feuille de style *nomFeuilleStyle*. @@ -66,4 +63,14 @@ Vous souhaitez connaître la configuration actuelle de la feuille de style "Auto #### Voir aussi [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1256 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md index a6ea6f4672bcd5..c8080500382f52 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **Get subrecord key** est destinée à faciliter la migration du code 4D utilisant des sous-tables converties vers le code standard de manipulation des tables. - -**Rappel :** Les sous-tables ne sont plus prises en charge à compter de la version 11 de 4D. Lors de la conversion d’une ancienne base, les sous-tables existantes sont automatiquement transformées en tables standard reliées aux tables d’origine par un lien automatique. La sous-table devient une table “N” et la table d’origine la table “1”. Dans la table 1, l’ex-champ de type sous-table est transformé en champ spécial de type “Lien sous-table” et dans la table N, un champ spécial, également de type “Lien sous-table” est ajouté. Il est nommé “id\_added\_by\_converter”. +La commande **Get subrecord key** est destinée à faciliter la migration du code 4D utilisant des sous-tables converties vers le code standard de manipulation des tables.Les sous-tables ne sont plus prises en charge à compter de la version 11 de 4D. Lors de la conversion d’une ancienne base, les sous-tables existantes sont automatiquement transformées en tables standard reliées aux tables d’origine par un lien automatique. La sous-table devient une table “N” et la table d’origine la table “1”. Dans la table 1, l’ex-champ de type sous-table est transformé en champ spécial de type “Lien sous-table” et dans la table N, un champ spécial, également de type “Lien sous-table” est ajouté. Il est nommé “id\_added\_by\_converter”. Ce principe permet de préserver le fonctionnement des bases de données converties, mais il est fortement conseillé de remplacer les mécanismes des sous-tables par ceux des tables standard. @@ -80,3 +78,13 @@ Par exemple, vous pouvez écrire avec la structure précédente : ``` Ce code fonctionnera indifféremment avec un lien spécial ou standard. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1137 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md index 60d6b415d4cc72..02cb1445596929 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md @@ -41,4 +41,13 @@ Passez dans le paramètre *format* le type de paramètre dont vous souhaitez con #### Voir aussi -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 994 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md index 0f1633618f91ce..160f8967059797 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md @@ -33,4 +33,13 @@ Après l’exécution de la commande : [GET FIELD ENTRY PROPERTIES](get-field-entry-properties.md) [GET FIELD PROPERTIES](get-field-properties.md) -[GET RELATION PROPERTIES](get-relation-properties.md) \ No newline at end of file +[GET RELATION PROPERTIES](get-relation-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 687 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md index e935fcfa96a344..6798620a8aecef 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET TABLE TITLES** remplit les tableaux *titresTables* et *numTables* avec les noms et les numéros des tables de la base définis dans la fenêtre de Structure ou via la commande [SET TABLE TITLES](set-table-titles.md). Le contenu des deux tableaux est synchronisé. @@ -28,4 +25,13 @@ Dans les deux cas, la commande ne retourne pas les tables déclarées invisibles #### Voir aussi [GET FIELD TITLES](get-field-titles.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 803 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md index ee564d52d53833..d9aa02f8e52f79 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Get text from pasteboard** retourne le texte présent dans le conteneur de données. @@ -34,4 +31,14 @@ Si le texte est correctement extrait, la variable système OK prend la valeur 1, [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 524 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md index 0d292efd6d9648..929c4150c8948a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md @@ -82,4 +82,13 @@ Pour compter les mots d’un texte : #### Voir aussi -[DISTINCT VALUES](distinct-values.md) \ No newline at end of file +[DISTINCT VALUES](distinct-values.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1141 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md index bc63ee4d4d73e3..43cb76480d3dc5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get text resource** retourne le texte stocké dans la ressource texte ("TEXT") dont vous avez passé le numéro d'ID dans *resNum*. @@ -44,4 +41,14 @@ OK prend la valeur 1 si la ressource est trouvée, sinon elle prend la valeur 0 [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 504 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md index 1fb045384021b0..ad7564eae3ea61 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET USER LIST** remplit les tableaux *nomsUtil* et *réfsUtil* avec les noms et les numéros de référence uniques des utilisateurs tels qu'ils apparaissent dans la fenêtre des Mots de passe de 4D. @@ -37,4 +34,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET USER [GET GROUP LIST](get-group-list.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 609 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md index 8e8bb4630d8b16..bf5f9982f79755 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **GET USER PROPERTIES** retourne les informations concernant l'utilisateur dont le numéro de référence est passé dans le paramètre *réfUtilisateur*. Vous devez passer le numéro de référence retourné par la commande [GET USER LIST](get-user-list.md). @@ -54,4 +51,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET USER [GET USER LIST](get-user-list.md) [Is user deleted](is-user-deleted.md) [Set user properties](set-user-properties.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 611 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md index 14215e46461ee5..e77f055e04b260 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GET WINDOW RECT** retourne les coordonnées globales de la fenêtre dont vous avez passé le numéro de référence dans le paramètre *fenêtre*. Si la fenêtre n'existe pas, les variables des paramètres sont inchangées. @@ -37,4 +34,13 @@ Reportez-vous à l'exemple de la commande [WINDOW LIST](window-list.md). #### Voir aussi [CONVERT COORDINATES](convert-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 443 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md index 218ab74121de2f..e21fe8f8f15fa9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Get window title** retourne le titre de la fenêtre dont le numéro de référence est passé dans *fenêtre*. Si la fenêtre n'existe pas, une chaîne vide est retournée. @@ -29,4 +26,13 @@ Reportez-vous à l'exemple de la commande [SET WINDOW TITLE](set-window-title.md #### Voir aussi -[SET WINDOW TITLE](set-window-title.md) \ No newline at end of file +[SET WINDOW TITLE](set-window-title.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 450 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md index 254e35eb5ccd8c..f65e2b19b442e8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GOTO OBJECT** permet de sélectionner l'objet saisissable *objet* (variable ou champ) en tant que zone active du formulaire. C'est l'équivalent d'un clic de l'utilisateur dans la zone ou de l'utilisation de la touche **Tabulation** pour sélectionner le champ ou la variable. @@ -51,4 +48,13 @@ Reportez-vous à l'exemple de la commande [REJECT](reject.md). #### Voir aussi [CALL SUBFORM CONTAINER](call-subform-container.md) -[REJECT](reject.md) \ No newline at end of file +[REJECT](reject.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 206 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md index 42a0c8b63d1a64..e04601c8b9bdfa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md @@ -27,4 +27,15 @@ Référez-vous à l'exemple de la commande [Record number](record-number.md). #### Voir aussi *A propos des numéros d'enregistrements* -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 242 | +| Thread safe | ✓ | +| Modifie les variables | error | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md index 48e97b8a2a97aa..616b79247137b8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md @@ -60,4 +60,14 @@ La méthode objet de la zone de défilement *taNoms* suivante sélectionne le bo #### Voir aussi -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 245 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md index 7e2184838dd50a..ecdc4569cec8a8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GOTO XY** est destinée à être utilisée conjointement avec la commande [MESSAGE](message.md) lorsque vous affichez des messages dans une fenêtre ouverte par la commande [Open window](open-window.md). @@ -60,4 +57,13 @@ L'exemple ci-dessous : #### Voir aussi -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 161 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md index 7baaded93a2b1e..f5913cb5ffa029 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **GRAPH SETTINGS** permet de paramétrer les échelles et les grilles d'un graphe placé dans un formulaire. Le graphe doit déjà avoir été défini à l'aide de la commande [GRAPH](graph.md). **GRAPH SETTINGS** ne fait rien s'il s'agit d'un graphe de type secteurs. Cette commande doit impérativement être appelée dans le même process que le formulaire. @@ -43,4 +40,13 @@ Reportez-vous à l'exemple de la commande GRAPHE. #### Voir aussi -[GRAPH](graph.md) \ No newline at end of file +[GRAPH](graph.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 298 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md index 33f21b2fafeb0f..7366c0a450eaf2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md @@ -275,4 +275,13 @@ Dans cet exemple, on personnalise divers paramètres : [GRAPH SETTINGS](graph-settings.md) *Paramètre des graphes* -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 169 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md index 09c3e4cf168a4e..460d0b1a4fe026 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **HIDE MENU BAR** rend invisible la barre de menus. @@ -45,4 +42,14 @@ La méthode suivante passe un enregistrement en plein écran (sous Mac OS) jusqu [HIDE TOOL BAR](hide-tool-bar.md) [SHOW MENU BAR](show-menu-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 432 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md index 87e458e6537bc8..dd2627326a1bbc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **HIDE PROCESS** masque toutes les fenêtres appartenant au process dont le numéro est *process*. Tous les éléments d'interface de *process* sont cachés jusqu'au [SHOW PROCESS](show-process.md) suivant. La barre de menus du process est aussi cachée. L'ouverture d'une fenêtre alors que le process est caché ne provoquera aucun redessinement d'écran. Si le process est déjà caché, cette commande ne fait rien. @@ -39,4 +36,13 @@ L'exemple suivant cachera toutes les fenêtres appartenant au process courant : #### Voir aussi [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 324 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md index 9d4dbad1a4d1fc..ba00cd2e3d1c4e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **HIDE TOOL BAR** permet de gérer l'affichage des barres d'outils personnalisées créées par la commande [Open form window](open-form-window.md) pour le process courant. @@ -41,4 +38,13 @@ Pour cela, dans l'événement On Resize du formulaire de la fenêtre standard, i #### Voir aussi -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 434 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md index 7ada63d3e99b10..a36ff3094e991b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **HIDE WINDOW** permet de masquer la fenêtre dont vous avez passé le numéro de référence dans *fenêtre* ou, si ce paramètre est omis, la fenêtre de premier plan du process courant. Cette commande vous permet, par exemple, dans un process comportant plusieurs fenêtres, de ne conserver à l'écran que la fenêtre active. @@ -47,4 +44,13 @@ Cet exemple est la méthode d'un bouton placé dans un formulaire entrée. Ce bo #### Voir aussi -[SHOW WINDOW](show-window.md) \ No newline at end of file +[SHOW WINDOW](show-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 436 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md index fe96ced3d55a81..ea3b14f45c3150 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **HIGHLIGHT RECORDS** permet de “surligner” des enregistrements dans un formulaire en liste. Cette opération est identique à la sélection en mode liste, par l’utilisateur, d’enregistrement(s) à l’aide des combinaisons **Maj+clic** ou **Ctrl+clic** (Windows) ou **Commande+clic** (Mac OS). La sélection courante n’est pas modifiée. @@ -49,4 +46,13 @@ Lorsque l’utilisateur clique sur le bouton, la boîte de dialogue standard de #### Voir aussi [GET HIGHLIGHTED RECORDS](get-highlighted-records.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 656 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md index e118c9483d576b..eff20974fbcae3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **HIGHLIGHT TEXT** sélectionne une partie du texte dans *objet*. @@ -64,4 +61,13 @@ Reportez-vous à l'exemple de la commande [FILTER KEYSTROKE](filter-keystroke.md #### Voir aussi -[GET HIGHLIGHT](get-highlight.md) \ No newline at end of file +[GET HIGHLIGHT](get-highlight.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 210 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md index 98be37da9525d3..eee725242f190f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md @@ -55,4 +55,13 @@ Exemples de requêtes avec authentification : #### Voir aussi -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1161 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md index 38d7d238b20255..33058d92fec540 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md @@ -39,4 +39,13 @@ Vous souhaitez changer temporairement de dossier de certificats : #### Voir aussi -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1307 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md index e8970c62b3c424..0c921dcf9bced3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md @@ -42,4 +42,13 @@ Passez dans le paramètre *valeur* une variable qui recevra la valeur courante d #### Voir aussi -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1159 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md index 228077edad6e4b..7385d067ca15b2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md @@ -103,4 +103,14 @@ Récupération d’une vidéo : #### Voir aussi -[HTTP Request](http-request.md) \ No newline at end of file +[HTTP Request](http-request.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1157 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md index 172a086fadf669..c64902dda51504 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md @@ -14,9 +14,16 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La documentation de cette commande est disponible sur [developer.4d.com.](https://developer.4d.com/docs/fr/API/HTTPRequestClass#http-parse-messege) + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1824 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md index 9fb82f0ca24dbb..f0fda6b1b4cb0b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md @@ -124,4 +124,13 @@ Demande d’ajout d’enregistrement en JSON dans une base distante : #### Voir aussi -[HTTP Get](http-get.md) \ No newline at end of file +[HTTP Get](http-get.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1158 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md index b794926cc19401..2ef253155f3bdb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md @@ -55,4 +55,13 @@ Vous souhaitez changer temporairement de dossier de certificats : #### Voir aussi [GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) -[HTTP Get certificates folder](http-get-certificates-folder.md) \ No newline at end of file +[HTTP Get certificates folder](http-get-certificates-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1306 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md index 4c31956911e1fd..fdfe983364e7dd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md @@ -43,4 +43,13 @@ L’ordre d’appel des options n’a pas d’importance. Si une même option es #### Voir aussi [HTTP AUTHENTICATE](http-authenticate.md) -[HTTP GET OPTION](http-get-option.md) \ No newline at end of file +[HTTP GET OPTION](http-get-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1160 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md index 6ba7b2b66a399b..dd787403b86de4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md @@ -51,4 +51,13 @@ La méthode METHODE EVENEMENT : #### Voir aussi *Commandes du thème Compilateur* -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 311 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md index 34ea87a4a6a0bf..2fd07a785ad7d8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md @@ -44,4 +44,14 @@ Si l'utilisateur clique sur **Annuler** dans une des boîtes de dialogue (de sé [EXPORT DATA](export-data.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[IMPORT TEXT](import-text.md) \ No newline at end of file +[IMPORT TEXT](import-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 665 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md index 235042043709d7..f705964e406ff8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **IMPORT DIF** lit les données de *document* (document DIF Windows ou Mac OS) et les écrit dans la table *laTable* en créant de nouveaux enregistrements. @@ -53,4 +50,14 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend [EXPORT DIF](export-dif.md) [IMPORT SYLK](import-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 86 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md index 8342811c67209e..11ad4b397d5845 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **IMPORT STRUCTURE** vous permet d'importer, dans la base courante, la définition XML de la structure de la base 4D passée dans le paramètre *structureXML*. @@ -49,4 +46,13 @@ Vous souhaitez importer une définiton de structure stockée sur disque dans la #### Voir aussi -[EXPORT STRUCTURE](export-structure.md) \ No newline at end of file +[EXPORT STRUCTURE](export-structure.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1310 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md index 13ebb0a3243e9b..b19be1db5a8405 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **IMPORT SYLK** lit les données de *document* (document SYLK Windows ou Mac OS) et les écrit dans la table *laTable* en créant de nouveaux enregistrements. @@ -53,4 +50,14 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend [EXPORT SYLK](export-sylk.md) [IMPORT DIF](import-dif.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 87 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md index af65f6fea73d32..852dc289db6397 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **IMPORT TEXT** lit les données de *document* (document texte Windows ou Mac OS) et les écrit dans la table *laTable* en créant de nouveaux enregistrements. @@ -55,4 +52,14 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 168 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md index 4dff31fce7e52e..e875c6683c0e31 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **In break** retourne Vrai pour le cycle d'exécution En rupture. @@ -27,4 +24,13 @@ Si vous souhaitez que le cycle d'exécution **In break** soit généré, assurez #### Voir aussi [In footer](in-footer.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 113 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md index 35bc758c8ddbc5..ef489a52258a8d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **In footer** retourne Vrai pour le cycle d'exécution En pied. @@ -27,4 +24,13 @@ Si vous voulez que le cycle d'exécution **In footer** soit généré, vérifiez #### Voir aussi [In break](in-break.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 191 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md index 29774e283a2c57..533767b7c4cef6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **In header** retourne Vrai pour le cycle d'exécution En entête. @@ -27,4 +24,13 @@ Si vous souhaitez que le cycle d'exécution **In header** soit généré, assure #### Voir aussi [In break](in-break.md) -[In footer](in-footer.md) \ No newline at end of file +[In footer](in-footer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 112 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md index b8fc652db66c3f..d2262f396d7876 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md @@ -29,4 +29,13 @@ Si vous effectuez l'opération depuis un trigger ou une sous-routine pouvant êt [CANCEL TRANSACTION](cancel-transaction.md) *Présentation des triggers* [START TRANSACTION](start-transaction.md) -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 397 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md index 718046cef848f1..6069150ffbf4e0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md @@ -44,4 +44,13 @@ L'exemple suivant ajoute un élément à un tableau : #### Voir aussi [DELETE FROM ARRAY](delete-from-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 227 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md index a56f1e133503fc..97f5c8c8477c24 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md @@ -30,4 +30,13 @@ Vous passez dans le paramètre *décalage* la position (relative à l'origine du #### Voir aussi -[DELETE FROM BLOB](delete-from-blob.md) \ No newline at end of file +[DELETE FROM BLOB](delete-from-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 559 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md index e378da6148eb5b..5a40e9079bcebd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **INSERT IN LIST** insère l'élément désigné par le paramètre *réfElément* dans la liste dont le numéro de référence ou le nom d'objet est passé dans *liste*. @@ -52,4 +49,13 @@ L'exemple suivant insère un élément (associé à aucune sous-liste) juste dev #### Voir aussi [APPEND TO LIST](append-to-list.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 625 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md index 49261a54dd632d..b7d34884595be8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **INSERT MENU ITEM** insère de nouvelles lignes dans le menu dont vous avez passé le numéro ou la référence dans *menu* et les place après la ligne de menu dont le numéro est passé dans *aprèsLigne*. @@ -56,4 +53,14 @@ L’exemple suivant crée un menu constitué de deux commandes auxquelles il aff #### Voir aussi [APPEND MENU ITEM](append-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 412 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md index 9ad88684f22af5..132518ceb0e38f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md @@ -40,4 +40,13 @@ L'exemple suivant illustre l'utilisation de **Insert string**. Les résultats so [Change string](change-string.md) [Delete string](delete-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 231 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md index 580ea2f9ade951..b93689caf74075 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md @@ -29,4 +29,13 @@ L'exemple suivant illustre le fonctionnement de **Int** pour les nombres positif #### Voir aussi -[Dec](dec.md) \ No newline at end of file +[Dec](dec.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 8 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md index c1360ce80f38ec..497143cedc94ba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md @@ -113,4 +113,13 @@ Après l'exécution de ce code : [BLOB to text](blob-to-text.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 548 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md index f95d997f726e3b..00fd286bedfcb9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md @@ -98,4 +98,14 @@ Si l'intégration s'effectue correctement, la variable système OK prend la vale #### Voir aussi -[LOG FILE TO JSON](log-file-to-json.md) \ No newline at end of file +[LOG FILE TO JSON](log-file-to-json.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1312 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md index c99aff4db7a329..2f2ca184cfe2b6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md @@ -48,4 +48,13 @@ L'exemple suivant recherche les clients en contact avec deux représentants, Jea #### Voir aussi [DIFFERENCE](difference.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 121 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md index 9ff7c9923198dc..9773382498f7d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **INVOKE ACTION** déclenche l'action standard définie par le paramètre *action*, optionnellement dans le contexte de la *cible*. @@ -65,4 +62,13 @@ Vous souhaitez exécuter l'action standard **Aller a page** (page 3) dans le for #### Voir aussi -[Action info](action-info.md) \ No newline at end of file +[Action info](action-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1439 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md index 8a0841584cabff..db3859defff058 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **Is a list** retourne VRAI si la valeur passée dans le paramètre *liste* est une référence valide à une liste hiérarchique. Dans les autres cas, elle retourne FAUX. @@ -25,3 +22,13 @@ displayed_sidebar: docs Reportez-vous à l'exemple de la commande [CLEAR LIST](clear-list.md). + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 621 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md index ab2fdf2865dae1..212f5a0729a01a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md @@ -23,4 +23,13 @@ Si vous souhaitez connaître le nom de la variable pointée ou le numéro du cha #### Voir aussi [Is nil pointer](is-nil-pointer.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 294 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md index c924ba8813c115..4c5b6e7c2357c4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md @@ -40,4 +40,13 @@ Dans une de vos méthodes, vous avez placé du code pour déboguer la base lorsq #### Voir aussi [IDLE](idle.md) -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 492 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md index 89b8d229aa7456..848847465d8a0a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md @@ -29,3 +29,13 @@ Cette méthode empêchera l’ouverture de la base si le fichier de données est     QUIT 4D  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 716 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md index 589fdeff33183a..5fb2d06eade6d6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is editing text** retourne **Vrai** si l'utilisateur saisit des valeurs dans un objet de formulaire d'entrée, et **Faux** dans tous les autres cas. @@ -60,4 +57,13 @@ Pour permettre à l'utilisateur de sélectionner une ligne commençant par la le [FILTER KEYSTROKE](filter-keystroke.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1744 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md index 20f40681680d0d..949dde404db7c1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md @@ -24,4 +24,13 @@ Cette commande permet de détecter d’éventuelles suppressions de champs, ce q #### Voir aussi [Last table number](last-table-number.md) -[Is table number valid](is-table-number-valid.md) \ No newline at end of file +[Is table number valid](is-table-number-valid.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1000 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md index c7784462df4d14..d4f433161d7b16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md @@ -27,4 +27,13 @@ La valeur retournée par cette commande n'a de sens que si l'option "*Traduire l #### Voir aussi [Null](null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 964 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md index 568c963309fc2a..05cfb2af1125bb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is in print preview** retourne Vrai si l’option **Aperçu avant impression** est cochée dans la boîte de dialogue d’impression, et Faux sinon. Ce paramétrage est local au process. @@ -46,4 +43,13 @@ Cet exemple permet de prendre en compte tous les types d’impressions : #### Voir aussi [Get print preview](get-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1198 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md index c34d4a29358063..d9dfbaac604303 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md @@ -33,4 +33,13 @@ L'exemple suivant est la méthode objet d'un bouton testant si l'enregistrement #### Voir aussi [ADD TO SET](add-to-set.md) -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 273 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md index e34abe93faa1ac..3585e685f00428 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is license available** permet de connaître la disponibilité d’un plug-in. Elle est utile, par exemple, pour afficher ou masquer des fonctions nécessitant la présence d’un plug-in. @@ -48,4 +45,13 @@ Dans ce cas, la commande retourne Vrai si le plug-in correspondant dispose d’u [License info](license-info.md) [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 714 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md index 810407bb5819b0..ae4566dabbb8c6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md @@ -32,4 +32,13 @@ Vous voulez déterminer si le système d'exploitation courant est macOS : #### Voir aussi [System info](system-info.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1572 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md index 042ad03132b1c6..e38a3a6ec9a211 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **Is new record** retourne Vrai lorsque l’enregistrement courant de *laTable* est en cours de création et n’a pas encore été sauvegardé dans le process courant. - -**Note de compatibilité :** Il est possible d’obtenir la même information avec la commande existante [Record number](record-number.md), en testant si elle retourne -3\. Toutefois, il est vivement conseillé d’utiliser dans ce cas **Is new record** plutôt que [Record number](record-number.md). En effet, la commande **Is new record** assure une meilleure compatibilité avec les futures versions de 4D. +La commande **Is new record** retourne Vrai lorsque l’enregistrement courant de *laTable* est en cours de création et n’a pas encore été sauvegardé dans le process courant.Il est possible d’obtenir la même information avec la commande existante [Record number](record-number.md), en testant si elle retourne -3\. Toutefois, il est vivement conseillé d’utiliser dans ce cas **Is new record** plutôt que [Record number](record-number.md). En effet, la commande **Is new record** assure une meilleure compatibilité avec les futures versions de 4D. **4D Server :** Cette commande retourne un résultat différent dans le contexte de l'événement formulaire On Validate suivant qu'elle est exécutée sur 4D en mode local ou 4D en mode distant. En mode local, la commande retourne Faux (l'enregistrement est considéré comme déjà créé). En mode distant, la commande retourne Vrai car dans ce cas, l'enregistrement est également déjà créé sur le serveur mais l'information n'a pas encore été envoyée au client. @@ -39,4 +37,13 @@ Les deux instructions suivantes sont identiques, la seconde est conseillée pour #### Voir aussi [Modified record](modified-record.md) -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 668 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md index fffe8287eb1278..6506a7f51795a8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md @@ -35,4 +35,13 @@ Si vous souhaitez connaître le nom de la variable pointée ou le numéro du cha #### Voir aussi [Is a variable](is-a-variable.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 315 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md index efa30bb40abad4..a2fef6f4142b3e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md @@ -27,4 +27,13 @@ Si vous ne passez pas le paramètre *\**, la commande teste le fichier en recher #### Voir aussi -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1113 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md index d2aa138b6f54da..432e8cd285c4a4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **Is record loaded** retourne Vrai si l’enregistrement courant de *laTable* est chargé dans le process en cours. - -**4D Server** : En principe, lorsque des tables sont liées par des liens automatiques, les enregistrements courants des tables liées sont automatiquement chargés (cf. *Présentation des liens*). Toutefois, pour des raisons d'optimisation, 4D Server ne charge ces enregistrements qu'au moment où c'est nécessaire, par exemple lors de la lecture ou de l'affectation d'un champ de l'enregistrement lié. Par conséquent, dans ce contexte la commande **Is record loaded** retournera Faux en mode distant (elle retourne Vrai en mode local). +La commande **Is record loaded** retourne Vrai si l’enregistrement courant de *laTable* est chargé dans le process en cours.: En principe, lorsque des tables sont liées par des liens automatiques, les enregistrements courants des tables liées sont automatiquement chargés (cf. *Présentation des liens*). Toutefois, pour des raisons d'optimisation, 4D Server ne charge ces enregistrements qu'au moment où c'est nécessaire, par exemple lors de la lecture ou de l'affectation d'un champ de l'enregistrement lié. Par conséquent, dans ce contexte la commande **Is record loaded** retournera Faux en mode distant (elle retourne Vrai en mode local). #### Exemple @@ -42,3 +40,13 @@ Au lieu d’utiliser les actions automatiques “Enregistrement suivant” ou     End if  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 669 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md index bf01036a2b9d31..55d9f05c441190 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md @@ -23,4 +23,13 @@ Cette commande permet de détecter d’éventuelles suppressions de tables, ce q #### Voir aussi [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 999 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md index 97d8c0cba2ecf6..4c61b2a843e908 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is user deleted** teste le compte de l'utilisateur dont le numéro d'identification unique est passé dans *réfUtilisateur*. @@ -31,4 +28,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler **Is user deleted** ou [DELETE USER](delete-user.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 616 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md index aa56efe77114c6..55938120e45645 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is waiting mouse up** retourne **Vrai** si l'objet courant a été cliqué et que le bouton de la souris n'a pas été relâché, alors que la fenêtre contenant l'objet a le focus. Sinon la commande retourne **Faux**, en particulier si la fenêtre contenant l'objet a perdu le focus avant que le bouton soit relâché. @@ -52,4 +49,13 @@ Le code suivant peut être utilisé pour gérer le suivi de la souris dans un ob #### Voir aussi -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1422 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md index c15c795f884a29..00092a279ce29c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is window maximized** retourne **Vrai** si la fenêtre dont le numéro de référence est passé dans *window* est actuellement maximisée, et **Faux** dans le cas contraire. @@ -36,4 +33,13 @@ Vous souhaitez passer entre l'état maximisé et l'état précédent : #### Voir aussi [Is window reduced](is-window-reduced.md) -[MAXIMIZE WINDOW](maximize-window.md) \ No newline at end of file +[MAXIMIZE WINDOW](maximize-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1830 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md index 04296456598a0b..3995e80131d6ab 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Is window reduced** retourne **Vrai** si la fenêtre dont le numéro de référence est passé dans *window* est actuellement réduite dans la barre des tâches (Windows) ou dans le dock (macOS), et **Faux** dans le cas contraire. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Voir aussi [Is window maximized](is-window-maximized.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1831 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md index a390230f0ac7ff..dcf736a5db6b1b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md @@ -32,4 +32,13 @@ Vous voulez savoir si le système d'exploitation courant est Windows : #### Voir aussi [System info](system-info.md) -[Is macOS](is-macos.md) \ No newline at end of file +[Is macOS](is-macos.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1573 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md index 5dab7d8eee1298..74f72902c3554c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md @@ -57,4 +57,13 @@ Dans cet exemple, les données des champs des enregistrements d’une table sont #### Voir aussi [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1219 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md index b24613532c8b05..808cb82c5710d2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md @@ -188,4 +188,13 @@ beta[1].golf:{line:10,offset:12}}} [JSON PARSE ARRAY](json-parse-array.md) [JSON Stringify](json-stringify.md) [JSON Validate](json-validate.md) -*Types champs et variables* \ No newline at end of file +*Types champs et variables* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1218 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md index 5d65b44b03aaf3..bc3424edc4eabc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md @@ -230,4 +230,13 @@ Si vous exécutez : #### Voir aussi - \ No newline at end of file + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1478 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md index 7ab1df09f73592..b6420c9390ee9a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md @@ -107,4 +107,13 @@ Conversion d’une sélection 4D dans un tableau objet : #### Voir aussi [JSON PARSE ARRAY](json-parse-array.md) -[JSON Stringify](json-stringify.md) \ No newline at end of file +[JSON Stringify](json-stringify.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1228 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md index d61839858fd551..6385e7ce48d46d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md @@ -173,4 +173,13 @@ $myTxtCol="[33,"mike","2017-08-28",false]" #### Voir aussi [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1217 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md index cf729ec2cd771c..78cc7ed249ec96 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md @@ -67,4 +67,13 @@ Utilisation de la commande **JSON TO SELECTION** pour ajouter des enregistrement #### Voir aussi -[Selection to JSON](selection-to-json.md) \ No newline at end of file +[Selection to JSON](selection-to-json.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1235 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md index c4ccf5442fd220..aa146b0a2dc3ba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md @@ -103,4 +103,13 @@ Vous souhaitez valider un objet JSON avec un schéma et obtenir la liste des err -[JSON Parse](json-parse.md) \ No newline at end of file +[JSON Parse](json-parse.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1456 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md index 263bbf6b266ef1..527948b31dd887 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Keystroke** retourne le caractère tapé par l'utilisateur dans un champ ou une zone saisissable. @@ -166,4 +163,13 @@ A l'aide des possibilités de communication interprocess de 4D, vous pouvez cons [FILTER KEYSTROKE](filter-keystroke.md) [Form event code](form-event-code.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 390 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md index ff473befc1de1e..5dce753ae57723 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md @@ -52,4 +52,13 @@ Dans la méthode du process worker (*leWorker*), vous ajoutez du code pour gére *A propos des workers* [CALL WORKER](call-worker.md) -[Current process name](current-process-name.md) \ No newline at end of file +[Current process name](current-process-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1390 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md index b2881242501be5..8869c1b063c5fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md @@ -31,4 +31,13 @@ Cette commande doit être appelée depuis une méthode d'appel sur erreur instal #### Voir aussi [ON ERR CALL](on-err-call.md) -[throw](throw.md) \ No newline at end of file +[throw](throw.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1799 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md index 3d3448a0d235da..9e32eb0dc026e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md @@ -41,4 +41,13 @@ La méthode projet suivante crée le tableau *taChamps* avec les noms des champs [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 255 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md index 8eff0de759d093..95fa73a2e074c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md @@ -32,4 +32,13 @@ La description du chemin de la dernière recherche peut être comparée à la de #### Voir aussi [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1045 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md index 911cb9ae041ccc..153169db7ce973 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md @@ -31,4 +31,13 @@ La description du plan de la dernière recherche peut être comparée à la desc #### Voir aussi [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query path](last-query-path.md) \ No newline at end of file +[Last query path](last-query-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1046 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md index 075299bca8c05a..e4d5ef62dc8933 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md @@ -31,4 +31,14 @@ L'exemple suivant désigne le dernier enregistrement de la table \[Contacts\] co [End selection](end-selection.md) [FIRST RECORD](first-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 200 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md index 25cc6a8785e31b..e8dad352aebf31 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md @@ -39,4 +39,13 @@ L’exemple suivant initialise les éléments du tableau tabTables. Ce tableau p [Last field number](last-field-number.md) [Is table number valid](is-table-number-valid.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 254 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md index ea6cd08e87672e..f2cfb629ea33e0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md @@ -147,4 +147,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [OPEN URL](open-url.md) -[SET ENVIRONMENT VARIABLE](set-environment-variable.md) \ No newline at end of file +[SET ENVIRONMENT VARIABLE](set-environment-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 811 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md index a84dd9ad3e83f7..276e1359233559 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LDAP LOGIN** ouvre une connexion en lecture seule sur le serveur LDAP désigné par le paramètre *url* avec les identifiants *login* et *motDePasse* fournis. Si elle est acceptée par le serveur, cette connexion sera utilisée pour toutes les recherches LDAP effectuées par la suite dans le process courant, jusqu'à ce que la commande [LDAP LOGOUT](ldap-logout.md) soit exécutée (ou que le process soit terminé). @@ -97,4 +94,13 @@ Cet exemple tente de se connecter à une application : #### Voir aussi *LDAP* -[LDAP LOGOUT](ldap-logout.md) \ No newline at end of file +[LDAP LOGOUT](ldap-logout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1326 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md index e7413b4c4c0dec..a9a0375e33259d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md @@ -12,13 +12,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LDAP LOGOUT** referme la connexion LDAP active dans le process courant (le cas échéant). S'il n'y a pas de connexion avec un server LDAP, l'erreur 1003 indiquant que vous n'êtes pas connecté est retournée. #### Voir aussi -[LDAP LOGIN](ldap-login.md) \ No newline at end of file +[LDAP LOGIN](ldap-login.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1327 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md index af35d6c776f8f0..0958b4338a3f1b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LDAP SEARCH ALL** recherche sur le server LDAP cible toutes les occurrences correspondant aux critères définis. Cette commande doit être exécutée dans le contexte d'une connexion serveur LDAP ouverte par la commande [LDAP LOGIN](ldap-login.md) dans le process courant ; sinon une erreur 1003 est retournée. @@ -117,4 +114,13 @@ Ces exemples illustrent plus particulièrement l'utilisation du paramètre *attr #### Voir aussi *LDAP* -[LDAP Search](ldap-search.md) \ No newline at end of file +[LDAP Search](ldap-search.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1329 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md index 572a05267aa880..72756dcf4872ba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LDAP Search** recherche sur le serveur LDAP cible la première occurrence correspondant aux critères définis. Cette commande doit être exécutée dans le contexte d'une connexion serveur LDAP ouverte par la commande [LDAP LOGIN](ldap-login.md) dans le process courant ; sinon une erreur 1003 est retournée. @@ -85,4 +82,13 @@ Vous voulez obtenir un tableau de toutes les entrées trouvées pour l'attribut #### Voir aussi *LDAP* -[LDAP SEARCH ALL](ldap-search-all.md) \ No newline at end of file +[LDAP SEARCH ALL](ldap-search-all.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1328 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md index fe49d06154b07c..f7d5701cb3ad1c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**Length** vous permet d'obtenir la longueur de *laChaîne*. **Length** retourne le nombre de caractères alphanumériques contenus dans *laChaîne*. +**Length** vous permet d'obtenir la longueur de *laChaîne*.retourne le nombre de caractères alphanumériques contenus dans *laChaîne*. **Note :** En mode Unicode, si vous souhaitez vérifier qu'une chaîne ne contient aucun caractère, y compris des caractères ignorables, vous devez utiliser le test Si(Longueur(vTexte)=0) plutôt que Si(vTexte=""). En effet, si la chaîne contient par exemple Caractere(1) qui est un caractère ignorable, Longueur(vTexte) retourne bien 1 mais vTexte="" retourne Vrai. @@ -28,3 +28,13 @@ L'exemple suivant illustre l'utilisation de **Length**. Les valeurs retournées  vRésultat:=Length("Topaze") // vRésultat prend la valeur 6  vRésultat:=Length("Citoyen") // vRésultat prend la valeur 7 ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 16 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md index 5b0b64efea53d1..6f54645c8693ce 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **Level** sert à déterminer le niveau de rupture ou d'en-tête courant. Elle retourne le numéro du niveau de rupture pendant les événements On Header et On Printing Break. @@ -68,4 +65,13 @@ Cet exemple est une maquette de méthode formulaire. Il traite chaque événemen [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Form event code](form-event-code.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 101 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md index 8468074a6f78c7..d77b073fe0e143 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md @@ -71,3 +71,13 @@ Ce tableau détaille le contenu de l'objet session des sessions REST : | sessionID | Texte | ID sessions REST | | IPAddress | Texte | ID du client ayant initié la session REST | | isDatastore | Booléen | Vrai si la requête REST provient d'un datastore | + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1782 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md index 73e3b4d7845a72..19278ff77974bd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **List item parent** retourne le numéro de référence de l'élément parent. @@ -71,4 +68,13 @@ Voici les numéros de référence des éléments de cette liste : [GET LIST ITEM](get-list-item.md) [List item position](list-item-position.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 633 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md index eec5044e4cc970..87d7b9651d7816 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **List item position** retourne la position de l'élément dont vous avez passé le numéro de référence dans *réfElément* parmi la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -40,4 +37,13 @@ Si l'élément n'existe pas, **List item position** retourne *0*. #### Voir aussi [Count list items](count-list-items.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 629 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md index 9df25c835e193e..76a9258b5793dd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md @@ -14,11 +14,18 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LIST OF CHOICE LISTS** retourne dans les tableaux synchronisés *tabNums* et *tabNoms* les numéros et les noms des énumérations définies dans l’éditeur d’énumérations en mode Développement. Les numéros des énumérations correspondent à leur ordre de création. Dans l’éditeur d’énumérations, les énumérations sont affichées par ordre alphabétique. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 957 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md index 36fd6b8ddbf3cd..a6edbf2929567b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LIST OF STYLE SHEETS** retourne la liste des feuilles de style de l’application dans le tableau *tabFeuillesStyle*. @@ -51,4 +48,13 @@ Si vous exécutez le code suivant : #### Voir aussi [GET STYLE SHEET INFO](get-style-sheet-info.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1255 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md index fa33cf3c2fc544..aa191062e88767 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LIST TO ARRAY** crée ou remplace le tableau *tableau* avec les éléments du premier niveau de la liste ou de l'énumération *liste*. @@ -86,4 +83,13 @@ Si vous exécutez l’instruction : [ARRAY TO LIST](array-to-list.md) [Load list](load-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 288 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md index 961eb64ad88618..4bc33ba2668e4d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LIST TO BLOB** stocke la liste hiérarchique *liste* dans le BLOB *blob*. @@ -47,4 +44,14 @@ Reportez-vous à l'exemple de la fonction [BLOB to list](blob-to-list.md). [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) [SAVE LIST](save-list.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 556 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md index 9bc54e91d2830e..705d75acf817dd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX COLLAPSE** vous permet de provoquer la contraction des lignes de rupture de l’objet list box désigné par les paramètres *objet* et *\**. @@ -52,4 +49,13 @@ Cet exemple contracte le premier niveau de lignes de rupture de la sélection de #### Voir aussi -[LISTBOX EXPAND](listbox-expand.md) \ No newline at end of file +[LISTBOX EXPAND](listbox-expand.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1101 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md index d040c713e19295..515176f8b9e2ec 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX DELETE COLUMN** supprime une ou plusieurs colonne(s) (visibles ou non) dans la list box désignée par les paramètres *objet* et *\**. @@ -35,4 +32,13 @@ Si le paramètre *positionCol* est supérieur au nombre de colonnes de la list b #### Voir aussi [LISTBOX Get number of columns](listbox-get-number-of-columns.md) -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 830 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md index 5600975614fd2d..3ce97c35076a41 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX DELETE ROWS** supprime une ou plusieurs ligne(s) à partir de la ligne numéro *positionLigne* (visible ou non) de la list box désignée par les paramètres *objet* et *\**. @@ -37,4 +34,14 @@ Si le paramètre *positionLigne* est supérieur au nombre de lignes des tableaux #### Voir aussi [LISTBOX Get number of rows](listbox-get-number-of-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 914 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md index 0d91523318afd4..080ce42723a2de 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX DUPLICATE COLUMN** permet de dupliquer la colonne désignée par le(s) paramètre(s) *objet* et *\** dans le contexte du formulaire en cours d’exécution (mode Application). Le formulaire d’origine, généré en mode Développement, n’est pas modifié. @@ -94,4 +91,13 @@ Vous souhaitez dupliquer dynamiquement une colonne booléenne et modifier son ti #### Voir aussi -[LISTBOX MOVE COLUMN](listbox-move-column.md) \ No newline at end of file +[LISTBOX MOVE COLUMN](listbox-move-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1273 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md index 32a36e3b1d052a..1437b829e8ab9b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX EXPAND** vous permet de provoquer le déploiement des lignes de rupture de l’objet list box affiché en mode hiérarchique désigné par les paramètres *objet* et *\**. @@ -81,4 +78,13 @@ Cet exemple illustre différents modes d’utilisation de la commande. Soient le #### Voir aussi -[LISTBOX COLLAPSE](listbox-collapse.md) \ No newline at end of file +[LISTBOX COLLAPSE](listbox-collapse.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1100 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md index a2cf7f51406a24..ff868f9c415ab1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -62,4 +59,13 @@ Exemples type d’utilisation : #### Voir aussi [LISTBOX GET ARRAYS](listbox-get-arrays.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1278 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md index c5b7ba3d4269c6..7f7fdc6c224cbd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET ARRAYS** retourne un ensemble de tableaux synchronisés fournissant diverses informations sur chaque colonne (visible ou non) de la list box désignée par les paramètres *objet* et *\**. @@ -51,4 +48,13 @@ Pour une list box de type sélection, collection ou entity selection, *tabStyles [LISTBOX Get array](listbox-get-array.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 832 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md index 91ac650a227d14..bcd1cc4f1a9b4d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get auto row height** retourne la limite minimum ou maximum de hauteur de ligne automatique définie pour l'objet list box désigné par les paramètres *objet* et *\**. @@ -57,4 +54,13 @@ Vous voulez connaître le nombre de lignes maximum pouvant être affichées dans [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) \ No newline at end of file +[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1502 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md index 274958a011d6c5..016734b2faeebf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET CELL COORDINATES** retourne dans les variables ou champs *gauche*, *haut*, *droite* et *bas* les coordonnées (en points) de la cellule désignée par les paramètres *colonne* et *ligne* dans la list box définie par *\** et *objet*. @@ -55,4 +52,13 @@ Vous souhaitez afficher un rectangle rouge autour de la cellule sélectionnée d #### Voir aussi [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[OBJECT GET COORDINATES](object-get-coordinates.md) \ No newline at end of file +[OBJECT GET COORDINATES](object-get-coordinates.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1330 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md index b85e04917b6154..0e91cc2881dbe5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET CELL POSITION** retourne les numéros de la *colonne* et de la *ligne* correspondant à l’emplacement du dernier clic ou de la dernière action de sélection effectuée dans la list box désignée par *\** et objet. @@ -54,4 +51,13 @@ Les valeurs retournées par la commande ne sont pas mises à jour dans le cas d #### Voir aussi [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) -[LISTBOX SELECT BREAK](listbox-select-break.md) \ No newline at end of file +[LISTBOX SELECT BREAK](listbox-select-break.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 971 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md index 429454da8e2fa0..8d99d1c2b32da3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get column formula** retourne la formule associée à la colonne de list box désignée par les paramètres *objet* et *\**. Les formules ne peuvent être utilisées que lorsque la propriété “Source de données” de la list box est **Sélection courante**, **Sélection temporaire** ou **Collection ou entity selection**. Si aucune formule n’est associée à la colonne, la commande retourne une chaîne vide. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) \ No newline at end of file +[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1202 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md index 64d1225d4b1366..6320709e8046cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get column width** retourne la largeur (en pixels) de la colonne de list box désignée par les paramètres *objet* et *\** . Vous pouvez passer indifféremment une colonne ou un en-tête de colonne de list box dans le paramètre *objet*. @@ -30,4 +27,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) \ No newline at end of file +[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 834 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md index 62ef4b4beecbbd..4a42e431eb0648 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get footer calculation** retourne le type de calcul associé à la zone de pied de list box désignée par les paramètres *objet* et *\**. @@ -33,4 +30,13 @@ Vous pouvez comparer la valeur retournée aux constantes du thème *List box pie #### Voir aussi -[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) \ No newline at end of file +[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1150 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md index a150b1b098855d..4c8fee912f1378 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get footers height** retourne la hauteur de la ligne de pied de la list box désignée par les paramètres *objet* et *\**. @@ -36,4 +33,13 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn #### Voir aussi -[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) \ No newline at end of file +[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1146 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md index 9d64d78f684ff5..d3a70cee724023 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET GRID COLORS** retourne la couleur des lignes horizontales et verticales composant la grille de l’objet list box désigné par les paramètres *objet* et *\**. @@ -32,4 +29,13 @@ La commande retourne dans les paramètres *couleurH* et *couleurV* des valeurs d #### Voir aussi -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1200 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md index 5aecaf05f9d425..e92a8fa72a540f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET GRID** retourne le statut affiché/masqué des lignes horizontales et/ou verticales composant la grille de l’objet list box désigné par les paramètres *objet* et *\**. @@ -29,4 +26,13 @@ La commande retourne dans les paramètres *horizontal* et *vertical* la valeur * #### Voir aussi -[LISTBOX SET GRID](listbox-set-grid.md) \ No newline at end of file +[LISTBOX SET GRID](listbox-set-grid.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1199 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md index 4b9cfc4b41cb1b..fddac2b04cc639 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get headers height** retourne la hauteur de la ligne d’en-tête de la list box désignée par les paramètres *objet* et *\**. @@ -36,4 +33,13 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn #### Voir aussi -[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) \ No newline at end of file +[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1144 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md index 3bf8291947f7cd..6c76d4e588a8c8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET HIERARCHY** vous permet de connaître les propriétés hiérarchiques de l’objet list box désigné par les paramètres *objet* et *\**. @@ -36,4 +33,13 @@ Si la list box est en mode hiérarchique, la commande remplit le tableau *hiéra #### Voir aussi -[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) \ No newline at end of file +[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1099 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md index 73c6865de53afa..3866ec8ae587ac 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get locked columns** retourne le nombre de colonnes verrouillées dans la list box désignée par les paramètres *objet* et *\**. @@ -32,4 +29,13 @@ En revanche, la commande ne tient pas compte du statut visible/invisible des col #### Voir aussi -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1152 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md index 642f427e0e8423..11c4deb2a6c933 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get number of columns** retourne le nombre total de colonnes (visibles ou non) présentes dans la list box désignée par les paramètres *objet* et *\**. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[LISTBOX DELETE COLUMN](listbox-delete-column.md) \ No newline at end of file +[LISTBOX DELETE COLUMN](listbox-delete-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 831 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md index b7f88ca61ccec1..a69d807ea146fa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get number of rows** retourne le nombre de lignes présentes dans la list box désignée par les paramètres *objet* et *\**. @@ -31,4 +28,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi [LISTBOX DELETE ROWS](listbox-delete-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 915 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md index 91fd81b5fdd703..c0320583f573a4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET OBJECTS** retourne un tableau contenant les noms de chaque objet composant la list box désignée par les paramètres *objet* et *\**. @@ -61,4 +58,13 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des #### Voir aussi [FORM LOAD](form-load.md) -[OBJECT Get type](object-get-type.md) \ No newline at end of file +[OBJECT Get type](object-get-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1302 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md index bd4fccd54a92fc..13cff053c8975d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande [LISTBOX GET PRINT INFORMATION](listbox-get-print-information.md) retourne des informations courantes relatives à l’impression de l’objet list box désigné par les paramètres *objet* et *\**. Cette commande permet de contrôler l’impression du contenu de la list box. @@ -69,3 +66,13 @@ Impression d’au moins 500 lignes de la list box, sachant que certaines lignes     PAGE BREAK  Until($GlobalPrinted>=500) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1110 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md index 2e6a7cb1c7601e..25910dbaf01a13 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get property** retourne la valeur courante de la *propriété* de list box ou de colonne de list box désignée par les paramètres *objet* et *\**. @@ -103,4 +100,13 @@ Si, par exemple, $déf retourne 200, vous pouvez en déduire que la 11e ligne es [LISTBOX SET GRID](listbox-set-grid.md) [LISTBOX SET PROPERTY](listbox-set-property.md) -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 917 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md index 803f66173868cf..075a3ad25a90de 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -58,4 +55,13 @@ Soit la list box suivante : *List box* [LISTBOX Get row color](listbox-get-row-color.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1271 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md index 3d78754b8f9683..bf5bb8ef0794f4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande ne fonctionne qu'avec les list box de type tableau. @@ -59,4 +56,13 @@ Considérons la list box suivante : #### Voir aussi -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1658 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md index d3307c6bff5025..56caf54a9d6b4c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -51,4 +48,13 @@ Soit la list box suivante : #### Voir aussi -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1269 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md index d867be3fce62f7..2c2cadd670c104 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get row height** retourne la hauteur de la *ligne* spécifiée dans l'objet List box désigné en utilisant les paramètres *objet* et éventuellement *\**. La hauteur des lignes peut être définie globalement via la Liste des propriétés ou la commande [LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md), ou individuellement à l'aide de la commande [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md). @@ -36,4 +33,13 @@ La hauteur de ligne retournée est exprimée: [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1408 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md index c895ebc93b20f2..040d86d7b649b6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get rows height** retourne la hauteur courante des lignes de l’objet list box désigné par les paramètres *objet* et *\**. La valeur retournée correspond à la hauteur d'une seule ligne. @@ -38,4 +35,13 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get row height](listbox-get-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 836 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md index 42437df4d06811..134024bbb34613 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX Get static columns** retourne le nombre de colonnes statiques dans la list box désignée par les paramètres *objet* et *\**. @@ -32,4 +29,13 @@ Si une colonne a été insérée ou supprimée par programmation à l’intérie #### Voir aussi -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1154 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md index 63758775e56268..e2877b89b347da 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX GET TABLE SOURCE** permet de connaître la source courante des données affichées dans la list box désignée par les paramètres *\** et *objet*. @@ -33,4 +30,13 @@ Si la list box est associée à des tableaux, *numTable* retourne -1 et *nom*, s #### Voir aussi -[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) \ No newline at end of file +[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1014 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md index b8860b4a1e22e5..82552647bb8de5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX INSERT COLUMN FORMULA** insère une colonne dans la list box désignée par les paramètres *objet* et *\** . @@ -118,4 +115,13 @@ La colonne est ajoutée à la list box : #### Voir aussi -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 970 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md index 6a1184c8aa2f28..d8527260d0430f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX INSERT COLUMN** insère une colonne dans la list box désignée par les paramètres *objet* et *\**. @@ -98,4 +95,13 @@ Vous souhaitez insérer dynamiquement une colonne dans une list box de type tabl #### Voir aussi [LISTBOX DELETE COLUMN](listbox-delete-column.md) -[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) \ No newline at end of file +[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 829 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md index 12a5d06b33ede4..3ddc3599ef397b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX INSERT ROWS** insère une ou plusieurs nouvelle(s) ligne(s) dans l’objet list box désigné par les paramètres *objet* et *\**. @@ -35,4 +32,14 @@ Si le paramètre *positionLigne* est supérieur au nombre de lignes des tableaux #### Voir aussi -[LISTBOX DELETE ROWS](listbox-delete-rows.md) \ No newline at end of file +[LISTBOX DELETE ROWS](listbox-delete-rows.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 913 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md index 6c110219ff8a11..bb9ba2ea13d9f9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX MOVE COLUMN** permet de déplacer par programmation la colonne désignée par le(s) paramètre(s) *objet* et *\** dans le contexte du formulaire en cours d’exécution (mode Application). Le formulaire d’origine, généré en mode Développement, n’est pas modifié. @@ -42,4 +39,13 @@ Vous souhaitez intervertir les 2e et 3e colonnes de la list box : #### Voir aussi -[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) \ No newline at end of file +[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1274 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md index 92049074b42be4..4f8d3d993d4f12 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX MOVED COLUMN NUMBER** retourne dans les paramètres *ancPosition* et *nouvPosition* des numéros indiquant respectivement la précédente position et la nouvelle position de la colonne déplacée dans la list box désignée par les paramètres *objet* et *\**. @@ -32,4 +29,13 @@ Cette commande doit être utilisée en combinaison avec l’événement formulai #### Voir aussi [Form event code](form-event-code.md) -[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) \ No newline at end of file +[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 844 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md index adac74914acf69..8920f9397b542f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX MOVED ROW NUMBER** retourne dans les paramètres *ancPosition* et *nouvPosition* des numéros indiquant respectivement la précédente position et la nouvelle position de la ligne déplacée dans la list box désignée par les paramètres *objet* et *\**. @@ -34,4 +31,13 @@ Cette commande doit être utilisée en combinaison avec l’événement formulai #### Voir aussi [Form event code](form-event-code.md) -[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) \ No newline at end of file +[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 837 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md index a2bc6ebde31218..c0bfc5b8640e8a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SELECT BREAK** permet de sélectionner des lignes de rupture dans l’objet list box désigné par les paramètres *objet* et *\**. La list box doit être affichée en mode hiérarchique. @@ -63,4 +60,13 @@ Voici le résultat : #### Voir aussi [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1117 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md index d22e3374373536..42849c0ab608cf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SELECT ROW** provoque la sélection de la ligne de numéro *positionLigne* dans l’objet list box désigné par les paramètres *objet* et *\**. @@ -54,4 +51,13 @@ A l’issue de l’exécution de la méthode, les tableaux sont synchronisés : [LISTBOX INSERT ROWS](listbox-insert-rows.md) [LISTBOX SELECT BREAK](listbox-select-break.md) [LISTBOX SELECT ROWS](listbox-select-rows.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 912 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md index c77a24d5d83f37..0cbf9395ee773c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SELECT ROWS** provoque la sélection des lignes d'une list box entity selection ou une list box collection correspondant aux entités ou objets contenus dans le paramètre *sélection*. @@ -86,4 +83,13 @@ Exemple avec une collection d'objets : #### Voir aussi -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1715 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md index e7bb8fc45e9873..b187e40c580ad8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -68,4 +65,13 @@ Vous voulez associer un tableau de hauteurs de ligne à une list box : #### Voir aussi [LISTBOX Get array](listbox-get-array.md) -[LISTBOX GET ARRAYS](listbox-get-arrays.md) \ No newline at end of file +[LISTBOX GET ARRAYS](listbox-get-arrays.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1279 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md index 56fba66f0f706e..f46dda0387783f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET AUTO ROW HEIGHT** vous permet de définir une *valeur* de hauteur minimum ou maximum dans l'objet list box désigné par les paramètres *objet* et *\**. @@ -59,4 +56,13 @@ Dans une list box où les hauteurs de lignes sont automatiques, vous voulez déf [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1501 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md index ac12b6be933c31..a25e2e21e1f443 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET COLUMN FORMULA** permet de modifier la *formule* associée à la colonne de list box désignée par les paramètres *objet* et *\**. Les formules ne peuvent être utilisées que lorsque la propriété “Source de données” de la list box est **Sélection courante**, **Sélection temporaire** ou **Collection ou entity selection**. @@ -43,4 +40,13 @@ Le paramètre *typeDonnées* permet de désigner le type des données issues de #### Voir aussi [LISTBOX Get column formula](listbox-get-column-formula.md) -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1203 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md index 4141aeb1d9ede6..a3fbd2e698c3b9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET COLUMN WIDTH** permet de modifier par programmation la largeur d’une ou de toutes les colonne(s) de l’objet (list box, colonne ou en-tête) désigné par les paramètres *objet* et *\**. @@ -35,4 +32,13 @@ Les paramètres optionnels *largeurMini* et *largeurMaxi* permettent de fixer de #### Voir aussi -[LISTBOX Get column width](listbox-get-column-width.md) \ No newline at end of file +[LISTBOX Get column width](listbox-get-column-width.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 833 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md index e8ed70293bd07f..7ffc2b2a07ef77 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET FOOTER CALCULATION** permet de définir le calcul automatique associé à la zone de pied de list box désignée par les paramètres *objet* et *\**. @@ -51,4 +48,13 @@ Si le type de données de la colonne ou d’au moins une colonne de la list box #### Voir aussi -[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) \ No newline at end of file +[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1140 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md index f39088d7ffd2a6..3d17d83d72c7d8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET FOOTERS HEIGHT** permet de modifier par programmation la hauteur de la ligne de pied de la list box désignée par les paramètres *objet* et *\**. @@ -36,4 +33,13 @@ Passez dans le paramètre *hauteur* la hauteur à définir. Par défaut, si vous #### Voir aussi -[LISTBOX Get footers height](listbox-get-footers-height.md) \ No newline at end of file +[LISTBOX Get footers height](listbox-get-footers-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1145 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md index c45d14e0b1691d..ae85184bb73769 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET GRID COLOR** permet de modifier la couleur de la grille de l’objet list box désigné par les paramètres *objet* et *\**. @@ -37,4 +34,13 @@ Les paramètres *horizontal* et *vertical* vous permettent de spécifier les tra [LISTBOX GET GRID COLORS](listbox-get-grid-colors.md) [LISTBOX SET GRID](listbox-set-grid.md) -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 842 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md index 32b5843546f46a..4967e3af204132 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET GRID** permet d’afficher ou de masquer les traits horizontaux et/ou verticaux composant la grille de l’objet list box désigné par les paramètres *objet* et *\**. @@ -31,4 +28,13 @@ Passez dans les paramètres *horizontal* et *vertical* des valeurs booléennes i [LISTBOX GET GRID](listbox-get-grid.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 841 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md index 4d9b7174679803..7a9dd2bc48438f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET HEADERS HEIGHT** permet de modifier par programmation la hauteur de la ligne d’en-tête de la list box désignée par les paramètres *objet* et *\**. @@ -40,4 +37,13 @@ Les en-têtes doivent respecter une hauteur minimale, définie par le système d #### Voir aussi -[LISTBOX Get headers height](listbox-get-headers-height.md) \ No newline at end of file +[LISTBOX Get headers height](listbox-get-headers-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1143 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md index 6ce3c9bf1b9187..1c8bd55fe631e2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET HIERARCHY** vous permet de configurer l'objet list box désigné par les paramètres *objet* et *\** en mode hiérarchique ou non. @@ -55,4 +52,13 @@ Définition des tableaux tPays, tRegion et tVille comme hiérarchie d’une list #### Voir aussi -[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) \ No newline at end of file +[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1098 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md index e5971d5cb23eac..c5a9a89b90b616 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET LOCKED COLUMNS** permet de verrouiller les *nbColonnes* premières colonnes gauches de la list box désignée par les paramètres *objet* et *\**. @@ -33,4 +30,13 @@ Si vous passez 0 ou une valeur négative dans *nbColonnes*, le verrouillage des #### Voir aussi [LISTBOX Get locked columns](listbox-get-locked-columns.md) -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1151 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md index 204d017be972fa..408b9ac4d66bf5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET PROPERTY** permet de définir la *valeur* de la *propriété* de list box ou de colonne de list box désignée par les paramètres *objet* et *\**. @@ -86,4 +83,13 @@ Vous souhaitez modifier la largeur maximale de la colonne nommée "ProductNumber *List box* -[LISTBOX Get property](listbox-get-property.md) \ No newline at end of file +[LISTBOX Get property](listbox-get-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1440 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md index 2f5821e2a29c5f..100287cdc8c3e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -65,4 +62,13 @@ Dans une list box tableau, on souhaite définir des paramétrages de couleur pou *List box* [LISTBOX Get row color](listbox-get-row-color.md) [LISTBOX Get row color as number](listbox-get-row-color-as-number.md) -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1270 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md index d694fb53b8be57..fe2fa68f6ca65a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande fonctionne uniquement avec les list box de type tableau. @@ -79,4 +76,13 @@ Après la deuxième instruction, toutes les cellules de la troisième ligne pass #### Voir aussi [LISTBOX Get row font style](listbox-get-row-font-style.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1268 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md index 46c18b77704556..d57f2546f8bed6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET ROW HEIGHT** permet de modifier la hauteur de la ligne spécifiée dans le paramètre *ligne* dans la List box désignée par les paramètres *objet* et éventuellement *\**. @@ -84,4 +81,13 @@ En revanche, si le code suivant est exécuté : [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1409 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md index e6a410eb4bdab2..018c0dcd00ca6f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET ROWS HEIGHT** permet de modifier par programmation la hauteur des lignes de l’objet list box désigné par les paramètres *objet* et *\**. @@ -38,4 +35,13 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur est exprimée en [LISTBOX Get rows height](listbox-get-rows-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 835 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md index 2c35629249f048..e60a5f2ff68357 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET STATIC COLUMNS** permet de rendre statiques les *nbColonnes* premières colonnes gauches de la list box désignée par les paramètres *objet* et *\**. @@ -29,4 +26,13 @@ Les colonnes statiques (ou colonnes fixes) ne peuvent pas être déplacées dans #### Voir aussi [LISTBOX Get static columns](listbox-get-static-columns.md) -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1153 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md index 693fa834f763ab..000888751db7ab 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SET TABLE SOURCE** vous permet de modifier la source des données affichées dans la list box désignée par les paramètres *\** et *objet*. @@ -38,4 +35,13 @@ Si la list box contenait déjà des colonnes, leur contenu est mis à jour à l #### Voir aussi -[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) \ No newline at end of file +[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1013 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md index ea0e3346454a9b..d021f626390b05 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **LISTBOX SORT COLUMNS** permet de trier (réordonner) toutes les lignes de la list box définie dans les paramètres *objet* et *\** sur la base des valeurs d’une ou plusieurs colonne(s). @@ -34,3 +31,13 @@ Vous pouvez définir des tris multi-niveaux : pour cela, passez autant de paires Conformément au principe de fonctionnement des list box, les colonnes sont synchronisées, ce qui signifie que le tri d’une colonne est automatiquement répercuté sur toutes les colonnes de l’objet. **Note** : La commande **LISTBOX SORT COLUMNS** ne tient pas compte de la propriété *Sortable* de la listbox. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 916 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md index ecf2f4cf33dca5..3af31eedfba9ae 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md @@ -194,3 +194,13 @@ Vous obtenez le résultat suivant (objet stringifié) : ``` **Note :** Pour plus d'informations sur le format de l'[objet](# "Données structurées sous forme d'objet natif 4D") retourné, veuillez contacter les services techniques de 4D. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1528 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md index 1a35a3070cd437..83ab4bb23f9c64 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Load list** crée une liste hiérarchique dont le contenu est copié depuis la liste *nomListe* créée en mode Développement, dans l'éditeur d'énumérations. La fonction retourne le numéro de référence de la liste nouvellement créée. @@ -50,4 +47,13 @@ Imaginons que vous créez une base pour le marché international. Vous voulez po [CLEAR LIST](clear-list.md) [Is a list](is-a-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 383 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md index 3f67d0f1801b2b..678654a5175eb9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md @@ -35,4 +35,13 @@ En environnements multi-utilisateurs et multi-process, lorsque vous devez modifi [Locked](locked.md) [UNLOAD RECORD](unload-record.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 52 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md index 99f20512c78011..8fb4255fdf3345 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md @@ -42,4 +42,14 @@ Si l'utilisateur clique sur Annuler dans la boîte de dialogue d'ouverture de fi #### Voir aussi -[SAVE SET](save-set.md) \ No newline at end of file +[SAVE SET](save-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 185 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md index 0c33a5aa924cce..c6baded31bfcc6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md @@ -44,4 +44,14 @@ La variable système OK prend la valeur 1 si les variables ont été correctemen [BLOB TO VARIABLE](blob-to-variable.md) [DOCUMENT TO BLOB](document-to-blob.md) [RECEIVE VARIABLE](receive-variable.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 74 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md index 673c4c1fc63c3a..eb5036687e2c89 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md @@ -65,4 +65,13 @@ Si la langue courante est, par exemple, le français canadien (fr-ca), la comman #### Voir aussi -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1105 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md index 0bf2f23736dbf1..065e8c7f6ab51a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md @@ -53,4 +53,14 @@ Si la commande a été exécutée correctement, la variable OK prend la valeur 1 #### Voir aussi -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 991 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md index e6694b49b0b400..a1f1221892474c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md @@ -39,4 +39,13 @@ Si l'enregistrement a été verrouillé par une *requête REST $lock*: #### Voir aussi [Locked](locked.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 353 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md index a794d7b709fa3f..24a153c90c3984 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **Locked records info** retourne un [objet](# "Données structurées sous forme d'objet natif 4D") décrivant le ou les enregistrement(s) actuellement verrouillé(s) dans *laTable*. - -**Note :** Cette commande fonctionne uniquement avec 4D et 4D Server. Elle retourne toujours un objet invalide lorsqu'elle est appelée depuis un 4D distant. Elle peut toutefois être appelée depuis un 4D distant si la méthode d'appel dispose de l'option "Exécuter sur serveur" ; elle retourne dans ce cas les informations relatives au serveur. Lorsqu'elle est appelée depuis un composant, elle s'applique à la base hôte. +La commande **Locked records info** retourne un [objet](# "Données structurées sous forme d'objet natif 4D") décrivant le ou les enregistrement(s) actuellement verrouillé(s) dans *laTable*.Cette commande fonctionne uniquement avec 4D et 4D Server. Elle retourne toujours un objet invalide lorsqu'elle est appelée depuis un 4D distant. Elle peut toutefois être appelée depuis un 4D distant si la méthode d'appel dispose de l'option "Exécuter sur serveur" ; elle retourne dans ce cas les informations relatives au serveur. Lorsqu'elle est appelée depuis un composant, elle s'applique à la base hôte. L'objet retourné contient une propriété "records" qui est une collection d'objets : @@ -89,4 +87,13 @@ Si le code est exécuté sur 4D Server et que le verrouillage est causé par un #### Voir aussi -[Locked](locked.md) \ No newline at end of file +[Locked](locked.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1316 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md index 5aed7b65252731..9200089485f268 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md @@ -33,4 +33,13 @@ Au cours d'une transaction, [LOAD RECORD](load-record.md) et **Locked** sont sou [Locked records info](locked-records-info.md) [LOAD RECORD](load-record.md) [LOCKED BY](locked-by.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 147 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md index dad1c4d4baf530..8728e16046a945 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md @@ -62,4 +62,13 @@ A chaque ouverture de la base, cette information sera inscrite dans l’Observat #### Voir aussi -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 667 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md index 04a037db0f21ea..c6d9f6972efc32 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md @@ -94,4 +94,14 @@ La commande **LOG FILE TO JSON** modifie la valeur des variables système OK et #### Voir aussi -[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) \ No newline at end of file +[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1352 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md index c8d2dd03312b66..5aeb83cb36ca64 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md @@ -30,4 +30,14 @@ Si la base fonctionne avec un fichier d’historique, la variable système OK pr #### Voir aussi -[SELECT LOG FILE](select-log-file.md) \ No newline at end of file +[SELECT LOG FILE](select-log-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 928 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md index ea9c9d8c4cff61..6788c23d395b16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**Log** retourne le logarithme népérien de *nombre*. **Log** est la fonction inverse de [Exp](exp.md). +**Log** retourne le logarithme népérien de *nombre*.est la fonction inverse de [Exp](exp.md). **Note :** 4D fournit la constante prédéfinie e number (2,71828...). @@ -30,4 +30,13 @@ L'exemple suivant affiche 1 : #### Voir aussi -[Exp](exp.md) \ No newline at end of file +[Exp](exp.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 22 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md index 35996fbcca3857..2e80cf5e5d778b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md @@ -34,4 +34,13 @@ Vous voulez récupérer les numéros des enregistrements de la sélection couran #### Voir aussi -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 647 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md index d8048b9a341a3d..e21bf5e80eb0fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md @@ -113,4 +113,13 @@ Après l'exécution de ce code : [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 550 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md index ef57946104ecd8..f01520cdd00d55 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md @@ -47,4 +47,13 @@ Cet exemple compare les résultats obtenus suivant que le paramètre *\** a ét #### Voir aussi -[Uppercase](uppercase.md) \ No newline at end of file +[Uppercase](uppercase.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 14 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md index 4e31a5fcc6b43d..71df0da321c554 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh command down** retourne Vrai si la touche **Commande** Macintosh est enfoncée. - -**Note :** Lorsqu'elle est appelée sous Windows, la fonction **Macintosh command down** retourne Vrai si la touche **Ctrl** Windows est enfoncée. +**Macintosh command down** retourne Vrai si la touche **Commande** Macintosh est enfoncée.Lorsqu'elle est appelée sous Windows, la fonction **Macintosh command down** retourne Vrai si la touche **Ctrl** Windows est enfoncée. #### Exemple @@ -30,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 546 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md index bbad2d85bbbcbb..49ac534cdc13c2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh control down** retourne Vrai si la touche **Control** du Macintosh est enfoncée. - -**Note :** Lorsqu'elle est appelée sous Windows, la fonction **Macintosh control down** retourne toujours Faux. Cette touche Macintosh n'a pas d'équivalent sous Windows. +**Macintosh control down** retourne Vrai si la touche **Control** du Macintosh est enfoncée.Lorsqu'elle est appelée sous Windows, la fonction **Macintosh control down** retourne toujours Faux. Cette touche Macintosh n'a pas d'équivalent sous Windows. #### Exemple @@ -30,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 544 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md index f7c127f3ba9877..f4bc92743d9ecd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh option down** retourne Vrai si la touche **Option** Macintosh est enfoncée. - -**Note :** Lorsqu'elle est appelée sous Windows, la fonction **Macintosh option down** retourne Vrai si la touche **Alt** Windows est enfoncée. +**Macintosh option down** retourne Vrai si la touche **Option** Macintosh est enfoncée.Lorsqu'elle est appelée sous Windows, la fonction **Macintosh option down** retourne Vrai si la touche **Alt** Windows est enfoncée. #### Exemple @@ -30,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh control down](macintosh-control-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 545 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md index 141471684bfb2f..db402e6186161e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md @@ -107,3 +107,14 @@ Rajouter une étoile à la fin d’une des deux syntaxes précédentes. #### Gestion des erreurs En cas d’erreur, la commande génère une erreur que vous pouvez intercepter via une méthode installée par la commande APPELER SUR ERREUR. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1019 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md index 8fbeeb6b856f74..67ca4d8c94bb8a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md @@ -70,4 +70,14 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re #### Voir aussi -[Min](min.md) \ No newline at end of file +[Min](min.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 3 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md index 2ce1573eb2cad4..526ea41145f059 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **MAXIMIZE WINDOW** provoque le zoom de la fenêtre dont vous avez passé le numéro de référence dans *fenêtre* ou, si ce paramètre est omis, de toutes les fenêtres de l'application (sous Windows) ou de la fenêtre de premier plan du process courant (sous Mac OS). @@ -82,4 +79,13 @@ Dans le contexte suivant, si l'utilisateur clique sur le bouton : [Is window maximized](is-window-maximized.md) [MINIMIZE WINDOW](minimize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 453 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md index a3c030bf84ec4f..71484ce0839818 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md @@ -26,4 +26,13 @@ A l’issue de l’exécution de la commande, les statistiques demandées sont f #### Voir aussi -[Cache info](cache-info.md) \ No newline at end of file +[Cache info](cache-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1118 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md index be45dc25841b37..25c95dfb1833b0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Menu bar height** retourne la hauteur de la barre de menus, exprimée en pixels. @@ -31,4 +28,13 @@ La commande retourne 0 : [HIDE MENU BAR](hide-menu-bar.md) [Menu bar screen](menu-bar-screen.md) -[SHOW MENU BAR](show-menu-bar.md) \ No newline at end of file +[SHOW MENU BAR](show-menu-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 440 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md index 34378c1727f2a2..faf6474db5dac7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Menu bar screen** retourne le numéro de l'écran dans lequel se trouve la barre de menus. @@ -25,4 +22,13 @@ displayed_sidebar: docs #### Voir aussi [Count screens](count-screens.md) -[Menu bar height](menu-bar-height.md) \ No newline at end of file +[Menu bar height](menu-bar-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 441 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md index d96de71049ee75..a3d8e2d4dd3540 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Menu selected** ne s'utilise que lorsqu'un formulaire est affiché. Cette fonction détecte la commande de menu choisie dans un menu et, dans le cas d'un sous-menu hiérarchique, retourne la référence du sous-menu. @@ -61,4 +58,14 @@ La méthode formulaire suivante utilise la fonction **Menu selected** pour fourn #### Voir aussi -*Gestion des menus* \ No newline at end of file +*Gestion des menus* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 152 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md index 7ea281e008eaf6..3619c8855a360a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **MESSAGE** affiche *message* à l'écran dans une fenêtre spéciale de message qui est ouverte et refermée à chaque fois que vous l'appelez (à moins que vous ne travailliez dans une fenêtre préalablement ouverte par la commande [Open window](open-window.md), cf. ci-dessous). Le message est temporaire et est effacé dès qu'un formulaire est affiché ou dès que l'exécution de la méthode est stoppée. Si une autre commande **MESSAGE** est exécutée, le précédent message est effacé. @@ -116,4 +113,13 @@ Voici le résultat (sous Windows) : [CLOSE WINDOW](close-window.md) [ERASE WINDOW](erase-window.md) [GOTO XY](goto-xy.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 88 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md index 5c41dfb0f6f22d..d673b8ac484f68 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md @@ -61,4 +61,13 @@ L'exemple suivant supprime les thermomètres de progression avant d'effectuer un #### Voir aussi -[MESSAGES ON](messages-on.md) \ No newline at end of file +[MESSAGES ON](messages-on.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 175 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md index 7d0af7791835f0..94f5563a364886 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md @@ -18,4 +18,13 @@ displayed_sidebar: docs #### Voir aussi -[MESSAGES OFF](messages-off.md) \ No newline at end of file +[MESSAGES OFF](messages-off.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 181 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md index f957f2052be4d4..77805c549b4b35 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md @@ -44,4 +44,13 @@ Cette commande est particulièrement utile dans le cadre des composants, car ell #### Voir aussi *Gestionnaire d'erreur* -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 704 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md index f24bb1e699fc8f..6e76b8214e2829 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Method called on event** retourne le nom de la méthode installée par la commande [ON EVENT CALL](on-event-call.md). @@ -24,4 +21,13 @@ Si aucune méthode d’appel sur événement n’a été installée, une chaîne #### Voir aussi -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 705 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md index 02387dca38d1f4..c85f25f18c79f6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD Get attribute** retourne la valeur de l’attribut *typeAttribut* pour la méthode projet désignée par le paramètre *chemin*. Cette commande ne fonctionne qu’avec les méthodes projet. Si vous passez un *chemin* invalide, une erreur est générée. @@ -41,4 +38,13 @@ La commande retourne **Vrai** si un attribut est sélectionné et **Faux** s’i #### Voir aussi -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1169 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md index 9da4e9e5b3403d..07625191d99cc6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md @@ -59,4 +59,13 @@ A l'issue de l'exécution, $att contient, par exemple : #### Voir aussi -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1334 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md index ac9b3bdf7e191e..49dc31becdc8ba 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET CODE** retourne dans le paramètre *code* le contenu de la ou des méthode(s) désignée(s) par le paramètre *chemin*. La commande peut retourner le code de tous les types de méthodes : méthodes base, définitions de classes, triggers, méthodes projet, méthodes formulaire et méthodes objet. @@ -120,4 +117,13 @@ Le document résultant contient alors : #### Voir aussi [METHOD SET CODE](method-set-code.md) -*Utiliser des tokens dans les formules* \ No newline at end of file +*Utiliser des tokens dans les formules* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1190 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md index fc24c60d482185..255e84d8d3d953 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET COMMENTS** retourne dans le paramètre *commentaires* la documentation de la ou des méthode(s) désignée(s) par le paramètre *chemin*. @@ -55,4 +52,13 @@ Si la commande est exécutée depuis un composant, elle s’applique par défaut #### Voir aussi -[METHOD SET COMMENTS](method-set-comments.md) \ No newline at end of file +[METHOD SET COMMENTS](method-set-comments.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1189 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md index 0a1fc716a1034f..f775e3c20265c5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET FOLDERS** retourne dans le tableau *tabNoms* les noms des dossiers créés dans la page Démarrage de l’Explorateur de 4D : @@ -32,4 +29,13 @@ Si la commande est exécutée depuis un composant, elle retourne par défaut les #### Voir aussi -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1206 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md index 8eb0d09462e96b..848794e3957814 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET MODIFICATION DATE** retourne dans les paramètres *dateMod* et *heureMod* les dates et heures de dernière modification de la ou des méthode(s) désignée(s) par le paramètre *chemin*. @@ -70,3 +67,13 @@ Vous souhaitez obtenir les dates de modification des méthodes d'un module, pré ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1170 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md index 133890d4e1f1f0..24844e98fe45af 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md @@ -39,3 +39,13 @@ Exemples d’utilisations types :   // Liste des méthodes projet de la base hôte débutant par une chaîne spécifique  METHOD GET NAMES(t_Noms;"web_@";*) ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1166 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md index ccc9faa1e8834e..d9ba32a69be7aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD Get path** retourne le chemin d’accès interne complet d’une méthode. @@ -66,4 +63,13 @@ Si la commande est exécutée depuis un composant, elle retourne par défaut les [Current method path](current-method-path.md) [METHOD OPEN PATH](method-open-path.md) -[METHOD RESOLVE PATH](method-resolve-path.md) \ No newline at end of file +[METHOD RESOLVE PATH](method-resolve-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1164 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md index 95526cd38da63c..5722abb0a4073e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET PATHS FORM** remplit le tableau *tabChemins* avec les chemins d’accès internes et les noms des méthodes de tous les objets des formulaires, ainsi que des méthodes formulaire. Les méthodes formulaire sont libellées {formMethod}. @@ -70,4 +67,13 @@ Liste de tous les objets des formulaires "input" de la table \[Emp\] à partir d #### Voir aussi -[FORM GET NAMES](form-get-names.md) \ No newline at end of file +[FORM GET NAMES](form-get-names.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1168 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md index ac04182f44304b..aaa5dbea694cf0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD GET PATHS** remplit le tableau *tabChemins* avec les chemins d’accès internes et les noms des méthodes de l’application du type défini par le paramètre *typeMéthode*. @@ -86,4 +83,13 @@ Reportez-vous à l'exemple de la commande [METHOD SET CODE](method-set-code.md). #### Voir aussi [Current method path](current-method-path.md) -[METHOD GET FOLDERS](method-get-folders.md) \ No newline at end of file +[METHOD GET FOLDERS](method-get-folders.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1163 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md index 8493c42729e423..4a69be00a94e87 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD OPEN PATH** ouvre, dans l’éditeur de méthodes de 4D, la méthode dont vous avez passé le chemin d’accès interne dans le paramètre *chemin*. @@ -31,4 +28,13 @@ Vous pouvez exécuter cette commande depuis un composant, mais dans ce cas vous #### Voir aussi *Commandes du thème Accès objets développement* -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1213 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md index 30204bbdf6bd99..3dc46d261544fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD RESOLVE PATH** analyse le chemin d’accès interne passé dans le paramètre *chemin* et retourne ses différentes composantes dans les paramètres *typeMéthode*, *ptrTable*, *nomObjet* et *nomObjetForm*. @@ -84,4 +81,13 @@ Résolution d’un chemin d’objet de méthode formulaire table : #### Voir aussi -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1165 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md index dbb65eb1c731a0..f6ab6d202d0f4c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD SET ACCESS MODE** vous permet de définir le comportement de 4D lorsque vous tentez d’accéder en écriture à un objet déjà chargé en modification par un autre utilisateur ou process.La portée de cette commande est la session. @@ -27,3 +24,13 @@ Passez dans *mode* une des constantes suivantes du thème *Accès objets dévelo | On object locked abort | Entier long | 0 | Le chargement de l’objet est abandonné (fonctionnement par défaut) | | On object locked confirm | Entier long | 2 | 4D affiche une boîte de dialogue vous permettant de choisir de réessayer ou d’abandonner. En mode distant, cette option n’est pas prise en charge (le chargement est abandonné) | | On object locked retry | Entier long | 1 | 4D tente de charger l’objet jusqu’à ce qu’il soit libéré | + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1191 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md index 227d3ac7c83300..517845abcdce94 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD SET ATTRIBUTE** permet de définir la valeur d'un ou plusieurs attribut(s) *typeAttribut* pour la méthode projet désignée par le paramètre *chemin*. Cette commande ne fonctionne qu’avec les méthodes projet. Si vous passez un *chemin* invalide, une erreur est générée. @@ -69,4 +66,13 @@ Définition de plusieurs paires attribut/valeur : *Accès objets développement* [METHOD Get attribute](method-get-attribute.md) -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1192 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md index 9c32c2a0816759..a23a6e0c0d76fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD SET ATTRIBUTES** vous permet de définir les valeurs des *attributs* pour la ou les méthode(s) spécifiée(s) dans le paramètre *chemin*. @@ -64,4 +61,13 @@ Vous souhaiter modifier un seul attribut : #### Voir aussi [METHOD GET ATTRIBUTES](method-get-attributes.md) -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1335 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md index d770455dbd1c80..fbcb5438cd2d89 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD SET CODE** modifie le code de la ou des méthode(s) désignée(s) par le paramètre *chemin* avec le contenu passé dans le paramètre *code*. @@ -99,4 +96,13 @@ Cet exemple permet d’exporter et d’importer la totalité des méthodes proje #### Voir aussi -[METHOD GET CODE](method-get-code.md) \ No newline at end of file +[METHOD GET CODE](method-get-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1194 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md index 1680536b3c5e2f..f66041d8ae0deb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **METHOD SET COMMENTS** remplace la documentation de la ou des méthode(s) désignée(s) par le paramètre *chemin* par ceux définis dans le paramètre *commentaires*. @@ -63,4 +60,13 @@ Ajout d’une date de modification à une documentation de trigger existante : #### Voir aussi -[METHOD GET COMMENTS](method-get-comments.md) \ No newline at end of file +[METHOD GET COMMENTS](method-get-comments.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1193 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md index f8d3983345e905..886a1ddd4f8946 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md @@ -46,4 +46,13 @@ Le code suivant attend jusqu'à 5 secondes qu'un enregistrement soit déverrouil [Current time](current-time.md) [Tickcount](tickcount.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 459 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md index 0f2db6b9e0f682..9ae295252181ff 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md @@ -76,4 +76,14 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re #### Voir aussi -[Max](max.md) \ No newline at end of file +[Max](max.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 4 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md index 6866e246e24350..6ae9ce481dc558 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **MINIMIZE WINDOW** provoque un zoom arrière de la fenêtre dont vous avez passé le numéro de référence dans *fenêtre* ou, si ce paramètre est omis, de toutes les fenêtres de l'application (sous Windows) ou de la fenêtre de premier plan du process courant (sous Mac OS). @@ -49,4 +46,13 @@ Mac OS #### Voir aussi [MAXIMIZE WINDOW](maximize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 454 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md index 58a8037fcd82b5..6c0d6c68c91614 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md @@ -44,4 +44,13 @@ Vous souhaitez réinitialiser toutes les sessions en cours pour toutes les appli #### Voir aussi -[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) \ No newline at end of file +[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1596 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md index cd3848cf28af45..0a9fceeb48bd44 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md @@ -18,9 +18,6 @@ displayed_sidebar: docs #### Description La fonction **Mod** divise *nombre1* par *nombre2* et retourne le reste sous forme d'un nombre entier. - -**Notes :** - * **Mod** accepte des expressions de type Entier, Entier long et Réel (numérique). Cependant, si *nombre1* et/ou *nombre2* sont des nombres réels, ils sont arrondis avant le calcul du **Mod**. * La fonction **Mod** est à utiliser avec précaution avec des nombres réels de grande taille (au-delà de 2^31). Dans ce cas en effet, son fonctionnement peut se heurter aux limites des capacités de calcul des processeurs standard. @@ -35,3 +32,13 @@ L'exemple suivant illustre le fonctionnement de **Mod** dans différents cas de  vRésultat:=Mod(4;2) // vRésultat prend la valeur 0  vRésultat:=Mod(3,5;2) // vRésultat prend la valeur 0 ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 98 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md index 7146785dd2d40c..15805bcdf1506b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md @@ -41,4 +41,13 @@ L'exemple suivant montre une utilisation typique de **Modified record** : [Modified](modified.md) [Old](old.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 314 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md index 5b3f9a656d532e..b29f2e093d6f0d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Modified** retourne **Vrai** si une valeur a été assignée par programmation au champ *leChamp* ou s'il a été modifié lors de la saisie de données. La commande **Modified** ne fonctionne que lorsqu'elle est appelée dans le cadre d'une méthode formulaire (ou d'une sous-méthode appelée par la méthode formulaire). @@ -67,4 +64,13 @@ Vous sélectionnez un enregistrement de la table *\[uneTable\]*, puis vous appel #### Voir aussi [Form event code](form-event-code.md) -[Old](old.md) \ No newline at end of file +[Old](old.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 32 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md index 79dcab010cb116..c9d1c1d920ee71 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **MODIFY RECORD** permet à l'utilisateur de modifier l'enregistrement courant de *laTable*, ou de la table par défaut si ce paramètre est omis. **MODIFY RECORD** charge depuis le disque l'enregistrement courant pour le process en cours (s'il n'est pas déjà chargé par un autre utilisateur/process) et l'affiche dans le formulaire entrée courant. S'il n'y a pas d'enregistrement courant, **MODIFY RECORD** ne fait rien. **MODIFY RECORD** ne change pas la sélection courante. @@ -51,4 +48,15 @@ La variable système OK prend la valeur 1 lorsque l'enregistrement est validé e [Locked](locked.md) [Modified record](modified-record.md) [READ WRITE](read-write.md) -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 57 | +| Thread safe | ✗ | +| Modifie les variables | OK | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md index 32e74883fa4d9b..183d66415de928 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **MODIFY SELECTION** est quasiment identique à la commande [DISPLAY SELECTION](display-selection.md). Reportez-vous à la commande [DISPLAY SELECTION](display-selection.md) pour une description détaillée. @@ -33,4 +30,14 @@ Les seules différences entre ces deux commandes sont les suivantes : [DISPLAY SELECTION](display-selection.md) [Form event code](form-event-code.md) -*Présentation des ensembles* \ No newline at end of file +*Présentation des ensembles* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 204 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md index 6126c03bdb3b52..c7df0fb3c64775 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md @@ -138,4 +138,13 @@ Voir l'exemple de **[START MONITORING ACTIVITY](start-monitoring-activity.md).** #### Voir aussi [START MONITORING ACTIVITY](start-monitoring-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1713 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md index b46b5efde1ab68..55d4af28c2d954 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -**Month of** retourne un nombre représentant le numéro du mois de *laDate*. - -**Note :** C'est le numéro du mois est retourné, et non son nom (reportez-vous à l'exemple ci-dessous). +**Month of** retourne un nombre représentant le numéro du mois de *laDate*.C'est le numéro du mois est retourné, et non son nom (reportez-vous à l'exemple ci-dessous). Pour comparer la valeur retournée par cette fonction, 4D fournit les constantes prédéfinies suivantes, placées dans le thème "*Jours et mois*" : @@ -53,4 +51,13 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md). #### Voir aussi [Day of](day-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 24 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md index 192bd79b63c379..2c3a3790f515db 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md @@ -39,4 +39,13 @@ Reportez-vous à l'exemple de la commande [Pop up menu](pop-up-menu.md). [ON EVENT CALL](on-event-call.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 468 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md index c847220da23b7c..868758617a3efe 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md @@ -50,4 +50,14 @@ L'exemple suivant déplace le document DocNom : #### Voir aussi -[COPY DOCUMENT](copy-document.md) \ No newline at end of file +[COPY DOCUMENT](copy-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 540 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md index 124b2dc3ea3eed..bf1a43da0b840c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md @@ -108,4 +108,13 @@ Si vous souhaitez que le tableau des noms soit utilisé comme troisième critèr [ORDER BY](order-by.md) [SELECTION TO ARRAY](selection-to-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 718 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md index 09fec74a5fb8f6..02f222e9842928 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md @@ -54,4 +54,13 @@ Vous souhaitez sauvegarder une clé de chiffrement dans un fichier .4DKeyChain : [Discover data key](discover-data-key.md) [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[Register data key](register-data-key.md) \ No newline at end of file +[Register data key](register-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1611 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md index 7f1021ab2a8f66..4112a0a17aeddb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **New list** crée une nouvelle liste hiérarchique vide en mémoire et retourne son numéro de référence unique. @@ -46,4 +43,13 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md). [DELETE FROM LIST](delete-from-list.md) [INSERT IN LIST](insert-in-list.md) [LIST TO BLOB](list-to-blob.md) -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 375 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md index bdd2be543a37ba..f2c50965969476 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md @@ -30,3 +30,14 @@ Le fichier est renommé avec les numéros de sauvegarde courants de la base et d En cas d'anomalie, la commande génère une erreur que vous pouvez intercepter à l’aide de la commande [ON ERR CALL](on-err-call.md). + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 926 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md index df26aa11c81e79..161c404dca2b81 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md @@ -105,4 +105,13 @@ Avec cette commande, vous pouvez aisément gérer des objets en boucle : #### Voir aussi -[New shared object](new-shared-object.md) \ No newline at end of file +[New shared object](new-shared-object.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1471 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md index c42f1821e904e5..bfec4aa846aa61 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md @@ -105,4 +105,13 @@ Dans l'éditeur de barres de menus, vous remplacez AJOUT CLIENTS par la méthode [Execute on server](execute-on-server.md) *Introduction aux process* -*Process 4D préemptifs* \ No newline at end of file +*Process 4D préemptifs* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 317 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md index 9cbfb3128a24a4..fff04a57a3f1b8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md @@ -66,4 +66,13 @@ Vous souhaitez créer et modifier un objet partagé. La structure *Utiliser...Fi [New object](new-object.md) [New shared collection](new-shared-collection.md) -*Objets partagés et collections partagées* \ No newline at end of file +*Objets partagés et collections partagées* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1526 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md index 5e47a25f22b8a6..11b4d47b06b476 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md @@ -29,4 +29,14 @@ Reportez-vous à l'exemple de la commande [DISPLAY RECORD](display-record.md). [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 51 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md index 6400c30bfd8425..f309a1e575c784 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Next window** retourne le numéro de référence de la fenêtre située “derrière” la fenêtre dont vous avez passé le numéro de référence dans *fenêtre* (en fonction de l'ordre des fenêtres). #### Voir aussi -[Frontmost window](frontmost-window.md) \ No newline at end of file +[Frontmost window](frontmost-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 448 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md index 365ecdd530e507..8a8979b37c355f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md @@ -40,4 +40,13 @@ Dans une base contenant un formulaire projet nommé “LeForm” et un formulair #### Voir aussi -[DEFAULT TABLE](default-table.md) \ No newline at end of file +[DEFAULT TABLE](default-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 993 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md index fb061c1f737d11..9e2e78d40d76cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md @@ -31,4 +31,13 @@ Dans l'exemple suivant, la valeur [True](true.md) est assignée à une variable. #### Voir aussi [False](false.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 34 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md index 72d2a45bd1927c..b6732b34f1d1ef 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **NOTIFY RESOURCES FOLDER MODIFICATION** permet de "forcer" l’envoi par 4D Server d’une notification indiquant à tous les postes 4D connectés que le contenu du dossier **Resources** de la base a été modifié, afin de leur permettre de synchroniser leur dossier **Resources** local. Cette commande permet en particulier de gérer la synchronisation des dossiers **Resources** téléchargés sur les postes distants lorsque le dossier **Resources** de la base est modifié via une procédure stockée sur le serveur. @@ -33,4 +30,13 @@ Le paramétrage courant peut être défini soit : #### Voir aussi -[Get 4D folder](get-4d-folder.md) \ No newline at end of file +[Get 4D folder](get-4d-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1052 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md index f05567ba1366fe..ad864442930113 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md @@ -131,4 +131,13 @@ Cet exemple compare les différents résultats de la commande [Undefined](undefi [Is field value Null](is-field-value-null.md) [OB SET NULL](ob-set-null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1517 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md index 843f0423974256..3e065c61193738 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md @@ -81,4 +81,13 @@ Cet exemple compare les résultats obtenus en fonction du séparateur “courant [Bool](bool.md) [GET SYSTEM FORMAT](get-system-format.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 11 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md index 6c7f492f21439e..7e1a0b56d23948 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md @@ -39,4 +39,13 @@ Puis, dans une méthode, vous pouvez saisir : #### Voir aussi -[OB Instance of](ob-instance-of.md) \ No newline at end of file +[OB Instance of](ob-instance-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1730 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md index e30468a845744e..a8618a1981613f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md @@ -20,9 +20,6 @@ displayed_sidebar: docs #### Description La commande **OB Copy** retourne un objet contenant une copie complète des propriétés, sous-objets et valeurs de *objet*. - -* Première syntaxe : **OB Copy(objet{; resoudrePtrs})** - Si *objet* contient des valeurs de type pointeur, par défaut la copie contient également les pointeurs. Vous pouvez cependant résoudre les pointeurs au moment de la copie : pour cela, passez **Vrai** dans le paramètre *résoudrePtrs*. Dans ce cas, chaque pointeur présent comme valeur dans *objet* sera évalué au moment de la copie et sa valeur dépointée sera utilisée. **Note :** Si les propriétés de *objet* sont des objets partagés ou des collections partagées, elles sont transformées en objets ou collections standard (non partagés) dans la copie. Utilisez la deuxième syntaxe si vous souhaitez retourner des éléments partagés (voir ci-dessous). @@ -166,4 +163,13 @@ Nous souhaitons copier *$sharedObj* dans *$sharedColl.* Etant donné qu'ils appa #### Voir aussi [OB Get](ob-get.md) -*Objets partagés et collections partagées* \ No newline at end of file +*Objets partagés et collections partagées* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1225 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md index c077bad39a363c..57e44a03be5939 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OB Entries** retourne une collection d'objets dont le contenu correspond à l'*objet* comme une paire de propriétés key/value. @@ -56,4 +53,13 @@ L'utilisation d'un objet comme une hashmap (système clé/valeur) permet d'accé #### Voir aussi [OB Keys](ob-keys.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1720 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md index 1ebd69786f6482..8fe8e320b8c6aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB GET ARRAY** récupère dans *tableau* le tableau de valeurs stocké dans la *propriété* de l’objet de langage désigné par le paramètre *objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB GET ARRAY** récupère dans *tableau* le tableau de valeurs stocké dans la *propriété* de l’objet de langage désigné par le paramètre *objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Passez dans le paramètre *propriété* le libellé de la propriété à lire. Attention, le paramètre *propriété* tient compte des majuscules/minuscules. @@ -52,4 +50,13 @@ On souhaite changer une valeur dans le premier élément du tableau : #### Voir aussi *Conversions de type entre les collections et les tableaux 4D* -[OB SET ARRAY](ob-set-array.md) \ No newline at end of file +[OB SET ARRAY](ob-set-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1229 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md index 9d5a3d020a6094..fc35c5b5d09233 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB GET PROPERTY NAMES** retourne dans *tabPropriétés* les noms des propriétés contenues dans l’objet de langage désigné par le paramètre *objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB GET PROPERTY NAMES** retourne dans *tabPropriétés* les noms des propriétés contenues dans l’objet de langage désigné par le paramètre *objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Passez dans le paramètre *tabPropriétés* un tableau texte. Si le tableau n’existe pas, la commande le crée et le dimensionne automatiquement. @@ -97,4 +95,13 @@ Utilisation d’un élément de tableau d’objets : #### Voir aussi [OB Get type](ob-get-type.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1232 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md index 1df006043d5df6..252e7a2b7a5008 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB Get type** retourne le type de la valeur associée à la *propriété* de l'*objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB Get type** retourne le type de la valeur associée à la *propriété* de l'*objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Passez dans le paramètre *propriété* le libellé de la propriété dont vous souhaitez connaître le type. Attention, le paramètre *propriété* tient compte des majuscules/minuscules. @@ -52,4 +50,13 @@ On souhaite obtenir le type de valeurs standard : #### Voir aussi [OB GET PROPERTY NAMES](ob-get-property-names.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1230 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md index f51770d4e84cc3..7dcd3b64f730b4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -La commande **OB Get** retourne la valeur courante de la *propriété* de l’*objet*, convertie optionnellement dans le *type* défini. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB Get** retourne la valeur courante de la *propriété* de l’*objet*, convertie optionnellement dans le *type* défini.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. **Note :** Cette commande prend en charge les définitions d'attributs dans les *objets* 4D Write Pro, comme la commande *WP GET ATTRIBUTES* (cf. exemple 9). Toutefois, à la différence de *WP GET ATTRIBUTES*, **OB Get** ne permet pas de manipuler directement une variable ou un champ image comme valeur d'attribut. @@ -212,4 +210,13 @@ Vous voulez connaître la taille d'une image stockée dans un objet : [OB Copy](ob-copy.md) [OB SET](ob-set.md) -*Types champs et variables* \ No newline at end of file +*Types champs et variables* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1224 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md index e86d0aed3928af..5b57e5d13bef72 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md @@ -45,4 +45,13 @@ Puis, dans une méthode, vous pouvez saisir : #### Voir aussi -[OB Class](ob-class.md) \ No newline at end of file +[OB Class](ob-class.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1731 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md index e95c9897b04c2d..9431e1b64c002b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB Is defined** retourne **Vrai** si *objet* ou *propriété* est défini, et **Faux** sinon. - -*objet* doit avoir été créé via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB Is defined** retourne **Vrai** si *objet* ou *propriété* est défini, et **Faux** sinon.doit avoir été créé via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Par défaut, si vous omettez le paramètre *propriété*, la commande vérifie que *objet* est défini. Un objet est défini si son contenu a été initialisé. @@ -61,4 +59,13 @@ Ce test équivaut à : #### Voir aussi -[OB Is empty](ob-is-empty.md) \ No newline at end of file +[OB Is empty](ob-is-empty.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1231 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md index 3f367fb398c5aa..44ae8c996ce2ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **OB Is empty** retourne **Vrai** si *objet* est indéfini ou vide, et **Faux** si *objet* est défini (initialisé) et contient au moins une propriété. - -*objet* doit avoir été créé via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB Is empty** retourne **Vrai** si *objet* est indéfini ou vide, et **Faux** si *objet* est défini (initialisé) et contient au moins une propriété.doit avoir été créé via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. #### Exemple @@ -42,4 +40,13 @@ Voici les différents résultats de la commande ainsi que de la commande [OB Is #### Voir aussi -[OB Is defined](ob-is-defined.md) \ No newline at end of file +[OB Is defined](ob-is-defined.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1297 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md index 7b415307dd0da3..fa4ea91588748a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md @@ -19,3 +19,13 @@ displayed_sidebar: docs La commande **OB Is shared** retourne **Vrai** si l'objet ou la collection *toCheck* est partagé , sinon **Faux** (voir *Objets partagés et collections partagées*). Cette commande retourne **Vrai** si vous passez une sélection d'entité partageable dans *toCheck* (voir ). + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1759 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md index fa7cec951bc11e..97357bf9aca0aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OB Keys** retourne une collection de chaînes contenant tous les noms des propriétés énumérables de l'*objet*. @@ -46,4 +43,13 @@ Vous souhaitez une collection avec tous les noms de propriétés de premier nive #### Voir aussi [OB Entries](ob-entries.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1719 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md index 8c05cd6ebbb9b3..7b501a1f55b59c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md @@ -36,4 +36,13 @@ Vous souhaitez supprimer la propriété "age" d’un objet : #### Voir aussi -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1226 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md index ac478f28bfacdd..b2d75f13fcea12 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB SET ARRAY** permet de définir le *tableau* à associer à la *propriété* dans l’objet de langage désigné par le paramètre *objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB SET ARRAY** permet de définir le *tableau* à associer à la *propriété* dans l’objet de langage désigné par le paramètre *objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Passez dans le paramètre *propriété* le libellé de la propriété à créer ou à modifier. Si la propriété existe déjà dans *objet*, sa valeur sera mise à jour. Si elle n’existe pas, elle est créée. Attention, le paramètre *propriété* tient compte des majuscules/minuscules. @@ -121,4 +119,13 @@ Utilisation d'un champ objet : *Conversions de type entre les collections et les tableaux 4D* [OB GET ARRAY](ob-get-array.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1227 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md index 7b264c7a19ea26..c7ceced3c36649 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **OB SET NULL** permet de stocker la valeur **null** dans l’objet de langage désigné par le paramètre *objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB SET NULL** permet de stocker la valeur **null** dans l’objet de langage désigné par le paramètre *objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. Passez dans le paramètre *propriété* le libellé de la propriété dans laquelle stocker la valeur **null**. Si la propriété existe déjà dans *objet*, sa valeur sera mise à jour. Si elle n’existe pas, elle est créée. Attention, le paramètre *propriété* tient compte des majuscules/minuscules. @@ -39,4 +37,13 @@ On souhaite mettre la valeur null dans la propriété "âge" de Léa : [Null](null.md) [OB GET PROPERTY NAMES](ob-get-property-names.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1233 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md index 9bf9d2998504f3..ba5bf7b09e95c1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **OB SET** permet de créer ou de modifier une ou plusieurs paires propriété/valeur dans l’objet de langage désigné par le paramètre *objet*. - -*objet* doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. +La commande **OB SET** permet de créer ou de modifier une ou plusieurs paires propriété/valeur dans l’objet de langage désigné par le paramètre *objet*.doit avoir été défini via la commande [C\_OBJECT](c-object.md) ou désigner un champ objet 4D. **Note :** Cette commande prend en charge les définitions d'attributs dans les *objets* 4D Write Pro, comme la commande *WP SET ATTRIBUTES* (cf. exemple 11). Toutefois, à la différence de *WP SET ATTRIBUTES*, **OB SET** ne permet pas de manipuler directement une variable ou un champ image comme valeur d'attribut. @@ -197,4 +195,13 @@ Vous souhaitez stocker une image dans un champ objet. Vous pouvez écrire : [OB Get](ob-get.md) [OB REMOVE](ob-remove.md) [OB SET ARRAY](ob-set-array.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1220 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md index a9877f8d07674e..fb1581508e4b9f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OB Values** retourne une collection de variants contenant toutes les valeurs des propriétés énumérables de l'*objet*. @@ -46,4 +43,13 @@ Vous souhaitez une collection avec toutes les valeurs des propriétés d'un obje #### Voir aussi [OB Entries](ob-entries.md) -[OB Keys](ob-keys.md) \ No newline at end of file +[OB Keys](ob-keys.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1718 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md index 8209deac32e757..939ff3f7a2fdb7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT DUPLICATE** permet de créer une copie de l’objet désigné par le paramètre *objet* dans le contexte du formulaire en cours d’exécution (mode Application). Le formulaire d’origine, généré en mode Développement, n’est pas modifié. @@ -104,4 +101,14 @@ Création d’un nouveau bouton radio "bRadio6" basé sur le bouton radio exista [OBJECT Get pointer](object-get-pointer.md) [OBJECT MOVE](object-move.md) -*Objets de formulaire (Accès)* \ No newline at end of file +*Objets de formulaire (Accès)* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1111 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md index 35b5caba510648..362fe551799858 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get action** retourne le nom et (s'il existe), le paramètre de l'action standard associée à l'objet désigné par les paramètres *objet* et *\**. @@ -45,4 +42,13 @@ Vous souhaitez associer l'action "Annuler" à tous les objets du formulaire qui #### Voir aussi -[OBJECT SET ACTION](object-set-action.md) \ No newline at end of file +[OBJECT SET ACTION](object-set-action.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1457 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md index bfef4931cc31f8..22be588dc84330 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get auto spellcheck** retourne le statut de l’option **Correction orthographique** du ou des objet(s) désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -28,4 +25,13 @@ La commande retourne **Vrai** si la correction automatique est activée pour l #### Voir aussi -[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) \ No newline at end of file +[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1174 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md index 6709627ba23b79..7acada46281e9f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET BEST SIZE** retourne dans les paramètres *largeurOpti* et *hauteurOpti* la largeur et la hauteur “optimales” de l’objet de formulaire désigné par les paramètres *\** et *objet*. Ces valeurs sont exprimées en pixels. Cette commande est particulièrement utile dans le cadre de l’affichage ou de l’impression d’états complexes, associée à la commande [OBJECT MOVE](object-move.md). @@ -50,4 +47,13 @@ Reportez-vous à l’exemple de la routine [SET PRINT MARKER](set-print-marker.m #### Voir aussi [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 717 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md index aaf88201eba508..c9d3c3ed871bbf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get border style** retourne le style de ligne de bordure de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -40,4 +37,13 @@ La commande retourne une valeur correspondant au style de la bordure. Vous pouve #### Voir aussi -[OBJECT SET BORDER STYLE](object-set-border-style.md) \ No newline at end of file +[OBJECT SET BORDER STYLE](object-set-border-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1263 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md index ed2bc718f77bbf..ed73280c62825b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get context menu** retourne le statut courant de l’option "Menu contextuel" de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -30,4 +27,13 @@ La commande retourne **Vrai** si le menu contextuel est activé pour l’objet e #### Voir aussi -[OBJECT SET CONTEXT MENU](object-set-context-menu.md) \ No newline at end of file +[OBJECT SET CONTEXT MENU](object-set-context-menu.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1252 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md index 3f8878f5ed2224..e619f2e5289d50 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET COORDINATES** retourne dans les variables ou champs *gauche*, *haut*, *droite* et *bas* les coordonnées (en points) du ou des objet(s) du formulaire courant défini(s) par les paramètres *\** et *objet*. @@ -86,4 +83,13 @@ La méthode retourne les coordonnées théoriques. Si la list box est redimensio [CONVERT COORDINATES](convert-coordinates.md) [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) [OBJECT MOVE](object-move.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 663 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md index 0fb0ee4242f213..285d03cb451f29 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get corner radius** retourne la valeur courante du rayon d'angles pour l'objet désigné par le paramètre *objet*. Cette valeur peut avoir été définie au niveau du formulaire en utilisant la propriété (cf. *Rayon d'arrondi (rectangles)*), ou via la commande [OBJECT SET CORNER RADIUS](object-set-corner-radius.md) pour le process courant. @@ -48,4 +45,13 @@ Le code suivant peut être associé à la méthode d'un bouton : #### Voir aussi -[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) \ No newline at end of file +[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1324 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md index 2e2ad587edbefd..b5802b006d8669 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get data source** retourne la source de données courante de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -41,4 +38,13 @@ Vous exécutez le code suivant : #### Voir aussi -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1265 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md index dc9a4349996d67..6624504c62242f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET DRAG AND DROP OPTIONS** retourne les options de glisser-déposer pour l’objet ou les objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -38,4 +35,13 @@ Chaque paramètre retourne Vrai ou Faux suivant que l’option correspondante es #### Voir aussi -[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) \ No newline at end of file +[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1184 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md index 5dbf1977836bf4..b0dcba8f391054 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get enabled** retourne Vrai si l'objet ou le groupe d'objets désigné par *objet* est activé dans le formulaire et Faux s’il est inactivé. @@ -36,4 +33,13 @@ Cette commande peut être appliquée aux types d'objets suivants : #### Voir aussi -[OBJECT SET ENABLED](object-set-enabled.md) \ No newline at end of file +[OBJECT SET ENABLED](object-set-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1079 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md index cf2f3de67faea7..0c8ebafb049b9c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get enterable** retourne Vrai si l'objet ou le groupe d'objets désigné par *objet* dispose de l’attribut **saisissable** et Faux sinon. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1067 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md index 49a950d1836e6a..c8c000961c442f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET EVENTS** vous permet de d’obtenir la configuration courante des événements formulaire du formulaire, de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -48,4 +45,13 @@ Vous souhaitez activer deux événements et obtenir la liste des événements po #### Voir aussi -[OBJECT SET EVENTS](object-set-events.md) \ No newline at end of file +[OBJECT SET EVENTS](object-set-events.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1238 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md index 09aedaf844046c..5090256fb6e964 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get filter** retourne le nom du filtre de saisie éventuellement associé à l'objet ou au groupe d'objets désigné par *objet*. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel \*, vous indiquez que le paramètre *obje #### Voir aussi -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1073 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md index 8a759d553b9d8c..d56b1c040964a1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get focus rectangle invisible** retourne le statut de l’option d’invisibilité du rectangle de focus de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. Ce paramétrage correspond à l’option **Cacher rectangle de focus** disponible pour les objets saisissables dans la Liste des propriétés en mode Développement. La commande retourne le statut courant de l’option, qu’elle ait été définie en mode Développement ou à l’aide de la commande [OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md). @@ -30,4 +27,13 @@ La commande retourne **Vrai** si le rectangle de focus est masqué et **Faux** s #### Voir aussi -[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1178 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md index 0c6272895f18fd..f92fde957dfa43 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get font size** retourne la taille (en points) de la police de caractères utilisée par le ou les objet(s) de formulaire désigné(s) par *objet*. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[OBJECT SET FONT SIZE](object-set-font-size.md) \ No newline at end of file +[OBJECT SET FONT SIZE](object-set-font-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1070 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md index 387e69db78b8bb..9b723ebb3d0c10 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get font style** retourne le style courant de la police de caractères utilisée par le ou les objet(s) de formulaire désigné(s) par *objet*. @@ -35,4 +32,13 @@ Vous pouvez comparer la valeur retournée par la commande à la valeur d’une o #### Voir aussi -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1071 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md index fa3107aea66590..59b9e4883c56a2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get font** retourne le nom de la police de caractères utilisée par le ou les objet(s) de formulaire désigné(s) par *objet*. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1069 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md index a943418fd19837..8d57db1c70708c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get format** retourne le format d’affichage courant appliqué à l’objet spécifié par le paramètre *objet*. @@ -65,4 +62,13 @@ Les formats personnalisés sont retournés inchangés : #### Voir aussi -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 894 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md index 9a3148ae1c505d..d45571bc98c932 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get help tip** retourne le message d’aide associé à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\** dans le process courant. @@ -38,4 +35,13 @@ Le libellé d’un bouton image est stocké sous forme de message d’aide. Ce l #### Voir aussi -[OBJECT SET HELP TIP](object-set-help-tip.md) \ No newline at end of file +[OBJECT SET HELP TIP](object-set-help-tip.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1182 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md index 5360af33052464..14bfa77cbe4780 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get horizontal alignment** retourne un code indiquant le type d’alignement horizontal appliqué à l’objet désigné par les paramètres *objet* et *\**. @@ -58,4 +55,13 @@ Les objets de formulaire auxquels un alignement peut être appliqué sont les su [OBJECT Get vertical alignment](object-get-vertical-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 707 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md index f9b6406b9e6575..ecc5e7edca97db 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get indicator type** retourne le type d’indicateur courant affecté au(x) thermomètre(s) désigné(s) par le(s) paramètre(s) *objet* et *\**. @@ -36,4 +33,13 @@ Vous pouvez comparer la valeur retournée par la commande aux constantes suivant #### Voir aussi -[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) \ No newline at end of file +[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1247 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md index a9f1769f2d2cad..aaa05763b7eff7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get keyboard layout** retourne la configuration clavier courante associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -28,4 +25,13 @@ La commande retourne une chaîne indiquant le code de langue utilisé, basé sur #### Voir aussi -[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) \ No newline at end of file +[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1180 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md index 8827c81b30f64d..a047853bff667a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get list name** retourne le nom de l’énumération associée à l'objet ou au groupe d'objets désigné par *objet*. 4D vous permet d'associer une énumération (créée avec l'éditeur d'énumérations en mode Développement) aux objets de formulaire via l'éditeur de formulaires ou la commande [OBJECT SET LIST BY NAME](object-set-list-by-name.md). @@ -38,4 +35,13 @@ Si aucune liste du type défini n’est associée à l’*objet*, la commande re #### Voir aussi [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1072 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md index 01c262bd7491d8..a5f1abcaff3783 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get list reference** retourne le numéro de référence (*RefListe*) de la liste hiérarchique associée à l’objet ou au groupe d'objets désigné par *objet* et *\**. @@ -38,4 +35,13 @@ Si aucune liste hiérarchique n’est associée à l’objet pour le *typeListe* #### Voir aussi [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1267 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md index 3fd0411348f259..63a6d38ca44607 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET MAXIMUM VALUE** retourne dans la variable *valeurMaxi* la valeur maximum actuelle de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -29,4 +26,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1245 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md index 9ce8ed2e1dac0e..6253002e67df1e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET MINIMUM VALUE** retourne dans la variable *valeurMini* la valeur minimum courante de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -29,4 +26,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1243 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md index fca6c7a98a49ff..5a549c62d72c54 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get multiline** retourne le statut courant de l’option "Multilignes" de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -38,4 +35,13 @@ La valeur retournée correspond à l’une des constantes suivantes du thème "* #### Voir aussi -[OBJECT SET MULTILINE](object-set-multiline.md) \ No newline at end of file +[OBJECT SET MULTILINE](object-set-multiline.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1254 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md index 3c72101528825d..7a22ca5c203233 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get name** retourne le nom d’un objet de formulaire. @@ -40,4 +37,13 @@ Après l’exécution de cette méthode objet, la variable *$nomBtn* contient la [OBJECT Get pointer](object-get-pointer.md) *Objets (Formulaires)* -*Objets de formulaire (Accès)* \ No newline at end of file +*Objets de formulaire (Accès)* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1087 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md index baac4f3f032de0..25892b2410a4cc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get placeholder** retourne le texte d’exemple associé à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. Si aucun texte d’exemple n’est associé à l’objet, la commande retourne une chaîne vide. @@ -38,4 +35,13 @@ Vous souhaitez lire le texte exemple d’un champ : #### Voir aussi -[OBJECT SET PLACEHOLDER](object-set-placeholder.md) \ No newline at end of file +[OBJECT SET PLACEHOLDER](object-set-placeholder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1296 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md index 2424106df2d26a..847a157764ba95 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get pointer** retourne un pointeur vers la variable d’un objet de formulaire. @@ -55,4 +52,13 @@ Soit un formulaire "SF" utilisé deux fois comme sous-formulaire dans le même f [OBJECT Get subform container value](object-get-subform-container-value.md) *Objets (Formulaires)* *Objets de formulaire (Accès)* -[Self](self.md) \ No newline at end of file +[Self](self.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1124 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md index c2a2a59b996c41..bb24e2fb428951 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET PRINT VARIABLE FRAME** vous permet de d’obtenir la configuration courante des options d’impression en taille variable de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -38,4 +35,13 @@ Si l’*objet* est un sous-formulaire et si l’impression en taille variable es #### Voir aussi -[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) \ No newline at end of file +[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1241 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md index 8830771e39b2a7..62e26259613b4e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET RESIZING OPTIONS** retourne les options de redimensionnement courantes de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -45,4 +42,13 @@ Le paramètre *vertical* retourne une valeur indiquant l’option de redimension #### Voir aussi -[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) \ No newline at end of file +[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1176 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md index bc72e4386f008b..76808906bc8d62 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET RGB COLORS** retourne les couleurs d’avant-plan et d’arrière-plan de l'objet ou du groupe d'objets désigné(s) par *objet*. @@ -37,4 +34,13 @@ Pour plus d’informations sur le format des paramètres *couleurAvantPlan*, *co #### Voir aussi -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1074 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md index 1562a613ae5fee..a436c5b04ef53a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET SCROLL POSITION** retourne dans les paramètres *positionLigne* et *positionH* des informations relatives à la position des barres de défilement de l’objet de formulaire désigné par les paramètres *\** et *objet*. @@ -33,4 +30,13 @@ Si *objet* désigne une image (variable ou champ), *positionLigne* retourne le d #### Voir aussi -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1114 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md index 52ce7f04944c73..8bd724d8f751ca 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET SCROLLBAR** permet de connaître le statut affiché/masqué des barres de défilement horizontale et verticale de l'objet ou du groupe d'objets désigné par *objet*. @@ -47,4 +44,13 @@ Pour plus d'informations, reportez-vous à la description de la commande [OBJECT #### Voir aussi -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1076 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md index 5b8d450ea9d419..e2b90c9d285ea5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET SHORTCUT** retourne l’équivalent clavier associé à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -42,4 +39,13 @@ Si aucune touche de modification n’a été définie dans l’équivalent clavi #### Voir aussi -[OBJECT SET SHORTCUT](object-set-shortcut.md) \ No newline at end of file +[OBJECT SET SHORTCUT](object-set-shortcut.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1186 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md index e0a38327d32c29..8b5aea9027586c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get style sheet** retourne le nom de la feuille de style associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -47,4 +44,13 @@ Dans **l'architecture Projet**, seules les trois feuilles de style automatiques #### Voir aussi [OBJECT SET STYLE SHEET](object-set-style-sheet.md) -*Styles de caractères* \ No newline at end of file +*Styles de caractères* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1258 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md index 42505b4ba96091..3490630964611e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET SUBFORM CONTAINER SIZE** retourne la *largeur* et la *hauteur* (en pixels) d’un objet sous-formulaire "courant", affiché dans le formulaire parent. @@ -31,4 +28,13 @@ Cette commande est utile par exemple dans le cas où des objets du sous-formulai #### Voir aussi [OBJECT GET SUBFORM](object-get-subform.md) -[OBJECT SET SUBFORM](object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1148 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md index 8763664379b38c..1bed33c14d3220 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description @@ -26,4 +23,13 @@ displayed_sidebar: docs [Form](form.md) [OBJECT Get pointer](object-get-pointer.md) -[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) \ No newline at end of file +[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1785 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md index 4b8bad136e7cee..d40fc474e7b166 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT GET SUBFORM** vous permet d’obtenir les noms du ou des formulaire(s) associé(s) à l’objet sous-formulaire désigné par les paramètres *objet* et *\**. @@ -41,4 +38,13 @@ S’il n’y a pas de formulaire liste, une chaîne vide est retournée dans le #### Voir aussi [OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) -[OBJECT SET SUBFORM](object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1139 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md index e12fde1d3ec38e..f4f9f173fa9233 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get text orientation** retourne la valeur d’orientation courante appliquée au texte de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -57,4 +54,13 @@ Si, à l’exécution du formulaire, vous appelez l’instruction suivante : #### Voir aussi -[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) \ No newline at end of file +[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1283 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md index d7777ed98ce494..6be38bab1bb663 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get three states checkbox** retourne l’état courant de la propriété "Trois états" de la ou des case(s) à cocher désignée(s) par les paramètres *objet* et *\**. @@ -26,4 +23,13 @@ La propriété "Trois états" peut avoir été définie soit via la Liste des pr #### Voir aussi -[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) \ No newline at end of file +[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1250 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md index d96f522d082060..700fe8990c75cd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get title** retourne le titre (libellé) du ou des objet(s) de formulaire désigné(s) par *objet*. @@ -34,4 +31,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[OBJECT SET TITLE](object-set-title.md) \ No newline at end of file +[OBJECT SET TITLE](object-set-title.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1068 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md index 260bdaeb8fa91c..98c2f4bddc17cb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get type** retourne le type de l’objet désigné par le(s) paramètre(s) *objet* et *\** dans le formulaire courant. @@ -97,4 +94,13 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des #### Voir aussi [FORM LOAD](form-load.md) -[LISTBOX GET OBJECTS](listbox-get-objects.md) \ No newline at end of file +[LISTBOX GET OBJECTS](listbox-get-objects.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1300 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md index c9f99e62aa6f0e..6680d0350eadb6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get value** retourne la valeur courante des sources de données des objets formulaire désignés par le paramètre nomObjet. @@ -40,4 +37,13 @@ Voir l'exemple de la commande [OBJECT SET VALUE](object-set-value.md). #### Voir aussi -[OBJECT SET VALUE](object-set-value.md) \ No newline at end of file +[OBJECT SET VALUE](object-set-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1743 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md index 99e3339d00d7b3..aac9b117fb3c74 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get vertical alignment** retourne une valeur indiquant le type d’alignement vertical appliqué à l’objet désigné par les paramètres *objet* et *\**. @@ -44,4 +41,13 @@ Les objets de formulaire auxquels un alignement vertical peut être appliqué so [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1188 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md index 5297f2c184e639..c41211627b8e67 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Get visible** retourne Vrai si l'objet ou le groupe d'objets désigné(s) par *objet* dispose de l’attribut visible et Faux sinon. @@ -26,4 +23,13 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob #### Voir aussi -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1075 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md index 0aeac6ff1fb4f3..ff32c36e505642 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT Is styled text** retourne **Vrai** si l’option "Multistyle" est cochée pour l’objet ou les objets désigné(s) par les paramètres *objet* et *\**. @@ -44,4 +41,13 @@ Un formulaire comporte un champ représenté par deux objets différents, l’un #### Voir aussi -*Texte multistyle* \ No newline at end of file +*Texte multistyle* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1261 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md index 396a8abe97b9fd..6c2bdbea36a42f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT MOVE** permet de déplacer le ou les objet(s) du formulaire courant, défini(s) par les paramètres *\** et *objet*, de *dépH* pixels horizontalement et de *dépV* pixels verticalement. Il est également possible (optionnellement) de redimensionner le ou les objet(s) de *redimH* pixels horizontalement et de *redimV* pixels verticalement. @@ -63,4 +60,13 @@ L’instruction suivante place le bouton “Bouton\_1” aux coordonnées (10;20 [OBJECT DUPLICATE](object-duplicate.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 664 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md index 88888715bec7d3..ce8d8c1c97dbd5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET ACTION** vous permet de modifier l’action standard associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -40,4 +37,13 @@ Vous souhaitez associer l’action standard de validation à un bouton : #### Voir aussi -[OBJECT Get action](object-get-action.md) \ No newline at end of file +[OBJECT Get action](object-get-action.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1259 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md index d0a4f06b1e1728..0b41f41fc48a51 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET AUTO SPELLCHECK** permet de définir ou de modifier dynamiquement le statut de l’option **Correction orthographique** du ou des objet(s) désigné(s) par les paramètres *objet* et *\** pour le process courant. Cette option permet d’activer ou non la correction orthographique automatique lors de la saisie pour l’objet (objets de type texte uniquement). @@ -28,4 +25,13 @@ Passez **Vrai** dans *correctionAuto* pour activer la correction automatique pou #### Voir aussi -[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) \ No newline at end of file +[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1173 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md index a42b1e7d4863ba..0be0270f7b5441 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET BORDER STYLE** vous permet de modifier le style de la ligne de bordure de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -40,4 +37,13 @@ Passez dans le paramètre *styleBordure* la valeur de style de ligne que vous so #### Voir aussi -[OBJECT Get border style](object-get-border-style.md) \ No newline at end of file +[OBJECT Get border style](object-get-border-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1262 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md index 7f9438ee84e131..3edd0eb29d96eb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET CONTEXT MENU** vous permet d’activer ou de désactiver, pour le process courant, l’association d’un menu contextuel par défaut à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -30,4 +27,13 @@ Passez **Vrai** dans le paramètre *menuContext* pour activer le menu contextuel #### Voir aussi -[OBJECT Get context menu](object-get-context-menu.md) \ No newline at end of file +[OBJECT Get context menu](object-get-context-menu.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1251 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md index 64bc7f3494961b..9f3e04ebb4e81f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET COORDINATES** permet de modifier l’emplacement et, optionnellement, la taille de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -56,4 +53,13 @@ L’instruction suivante place l’objet "bouton\_1" aux coordonnées (10,20) (3 [CONVERT COORDINATES](convert-coordinates.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1248 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md index f5e030a11bfdff..9910bf631e158b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET CORNER RADIUS** vous permet de modifier le rayon des angles du ou des objet(s) que vous avez passés dans le paramètre *objet*. Le nouveau rayon est défini pour le process uniquement, il n'est pas stocké dans le formulaire. @@ -68,4 +65,13 @@ Notez que pour les zones de texte (ainsi que pour les zones de saisie), contrair #### Voir aussi -[OBJECT Get corner radius](object-get-corner-radius.md) \ No newline at end of file +[OBJECT Get corner radius](object-get-corner-radius.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1323 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md index db0da6a122b349..dce1cab0ed1aa9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET DATA SOURCE** vous permet de modifier la source de données de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -51,4 +48,13 @@ Modification de la source de données d’une zone de saisie : #### Voir aussi [LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) -[OBJECT Get data source](object-get-data-source.md) \ No newline at end of file +[OBJECT Get data source](object-get-data-source.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1264 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md index 302012883fd5a5..dd5f60b87dd07e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET DRAG AND DROP OPTIONS** permet de définir ou de modifier dynamiquement les options de glisser-déposer pour l’objet ou les objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -44,4 +41,13 @@ Définition d’une zone de texte en glisser-déposer auto : #### Voir aussi -[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) \ No newline at end of file +[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1183 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md index cd01c0fd1343ee..1f7c1211b77cd5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET ENABLED** permet d’activer ou d’inactiver l’objet ou le groupe d’objets désigné par *objet* dans le formulaire courant. @@ -40,4 +37,13 @@ Cette commande peut être appliquée aux types d'objets suivants : #### Voir aussi -[OBJECT Get enabled](object-get-enabled.md) \ No newline at end of file +[OBJECT Get enabled](object-get-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1123 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md index f66c94f0d02f18..8adcd1e4a32759 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET ENTERABLE** rend saisissable ou non saisissable le ou les objet(s) de formulaire désigné(s) par *objet* et peut fixer l'attribut saisissable. @@ -74,4 +71,13 @@ Voici la méthode objet d’une case à cocher placée dans l’en-tête d’une #### Voir aussi [OBJECT Get enterable](object-get-enterable.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 238 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md index 9a2362597f0bbb..9cb76cbcecc2d3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET EVENTS** vous permet de modifier, pour le process courant, la configuration des événements formulaire du formulaire, de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -165,4 +162,13 @@ Désactivation d’un seul événement du formulaire sans modifier les autres : #### Voir aussi *Evénements formulaire* -[OBJECT GET EVENTS](object-get-events.md) \ No newline at end of file +[OBJECT GET EVENTS](object-get-events.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1239 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md index ac5f7b9f75f37c..e2441872a6bee1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET FILTER** remplace le filtre de saisie pour *objet* par *filtreSaisie* dans le formulaire courant affiché à l'écran. @@ -57,4 +54,13 @@ L'exemple suivant autorise uniquement la saisie des lettres “a”, “b”, #### Voir aussi [OBJECT Get filter](object-get-filter.md) -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 235 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md index 56171b1b128eb8..1359b3ead437f5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET FOCUS RECTANGLE INVISIBLE** permet de définir ou de modifier dynamiquement l’option d’invisibilité du rectangle de focus de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. Ce paramétrage correspond à l’option **Cacher rectangle de focus** disponible pour les objets saisissables dans la Liste des propriétés en mode Développement. @@ -30,4 +27,13 @@ Passez **Vrai** dans le paramètre *invisible* pour cacher le rectangle de focus #### Voir aussi -[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1177 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md index 6bc8f5479e5bc9..331ac99cef967b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET FONT SIZE** définit la taille de la police du ou des objet(s) de formulaire spécifié(s) par *objet*. @@ -51,4 +48,13 @@ L'exemple suivant définit la taille de police de tous les objets de formulaire *Notes de programmation* [OBJECT Get font size](object-get-font-size.md) [OBJECT SET FONT](object-set-font.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 165 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md index ff9cd0172ce196..c964cec0053582 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET FONT STYLE** assigne le style de police *style* à ou aux objet(s) de formulaire désigné(s) par *objet*. @@ -57,4 +54,13 @@ L'exemple suivant définit le style de police Normal pour tous les objets de for [OBJECT Get font style](object-get-font-style.md) [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 166 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md index f0dee9c440fb27..3444a9bc179ac2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET FONT** affiche *objet* avec la police définie dans le paramètre *police*. Le paramètre *police* doit contenir un nom de police valide. @@ -62,4 +59,13 @@ L'exemple suivant utilise l'option spéciale *%password*, destinée à la saisie *Notes de programmation* [OBJECT Get font](object-get-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 164 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md index 137799c04ed6c2..69a243b7fb20cf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OBJECT SET FORMAT** remplace le format d'affichage du ou des objet(s) spécifié(s) par *objet* avec le format que vous avez passé dans *formatAffich*. Le nouveau format est utilisé uniquement pour l'affichage courant, il n'est pas stocké avec le formulaire. @@ -360,4 +357,13 @@ Passage d'un thermomètre en mode "Barber shop" : [GET SYSTEM FORMAT](get-system-format.md) [OBJECT Get format](object-get-format.md) -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 236 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md index e1b3b991ff5762..95cd97b8fc145a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET HELP TIP** permet de définir ou de modifier dynamiquement le message d’aide associé à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -125,4 +122,13 @@ Résultat : #### Voir aussi [OBJECT Get help tip](object-get-help-tip.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1181 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md index cc3bcc29b280a4..140cb0fff730d9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET HORIZONTAL ALIGNMENT** vous permet de fixer le type d’alignement horizontal appliqué à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -58,4 +55,13 @@ Les objets de formulaire auxquels vous pouvez appliquer cette commande sont les [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 706 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md index a759622aa65021..53d5ab45812817 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET INDICATOR TYPE** vous permet de modifier le type d’indicateur de progression du ou des thermomètre(s) désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -36,4 +33,13 @@ Passez dans le paramètre *indicateur* le type d’indicateur à afficher. Vous #### Voir aussi -[OBJECT Get indicator type](object-get-indicator-type.md) \ No newline at end of file +[OBJECT Get indicator type](object-get-indicator-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1246 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md index 07bd68c1f12b86..2d69154b48897b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET KEYBOARD LAYOUT** vous permet de définir ou de modifier dynamiquement la configuration clavier associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -28,4 +25,13 @@ Passez dans le paramètre *codeLangue* une chaîne indiquant le code de langue #### Voir aussi -[OBJECT Get keyboard layout](object-get-keyboard-layout.md) \ No newline at end of file +[OBJECT Get keyboard layout](object-get-keyboard-layout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1179 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md index de34ad096520df..72474515213aaf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET LIST BY NAME** définit, remplace ou dissocie l'*énumération* associée à l'objet ou au groupe d'objets désigné(s) par *objet*. L'énumération dont le nom est passé dans le paramètre *énumération* doit avoir été créée dans l'éditeur d'énumérations, en mode Développement. @@ -91,4 +88,13 @@ Vous souhaitez supprimer des associations de listes : #### Voir aussi [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 237 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md index d0f667c89be8d4..db0a096d49a178 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET LIST BY REFERENCE** définit ou remplace l’énumération associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**, avec la liste hiérarchique référencée dans le paramètre *liste*. @@ -129,4 +126,13 @@ Pour pouvoir mettre à jour la liste associée au pop up géré par tableau, il #### Voir aussi [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1266 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md index 4da3af5dd96031..706293e04d63d9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET MAXIMUM VALUE** permet de modifier la valeur maximum de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -31,4 +28,13 @@ Passez dans *valeurMaxi* la nouvelle valeur maximum à affecter à l’*objet* p #### Voir aussi [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1244 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md index ee7bb831f12878..3adc6f415a112a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET MINIMUM VALUE** permet de modifier la valeur minimum de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -31,4 +28,13 @@ Passez dans *valeurMini* la nouvelle valeur minimum à affecter à l’objet pou #### Voir aussi [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1242 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md index 0bfd82fb1ad1ac..cd953b27fd3798 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET MULTILINE** vous permet de modifier la propriété "Multilignes" de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -45,4 +42,13 @@ Vous souhaitez interdire le multiligne dans une zone de saisie : #### Voir aussi -[OBJECT Get multiline](object-get-multiline.md) \ No newline at end of file +[OBJECT Get multiline](object-get-multiline.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1253 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md index e41f4cbb15b4cf..d9c9a05e4481e4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET PLACEHOLDER** vous permet d’associer un texte d’exemple à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -46,4 +43,13 @@ Vous souhaitez afficher le texte exemple "Recherche" dans une combo box : #### Voir aussi -[OBJECT Get placeholder](object-get-placeholder.md) \ No newline at end of file +[OBJECT Get placeholder](object-get-placeholder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1295 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md index 7f238501c16cfa..89418e3b6c756e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET PRINT VARIABLE FRAME** vous permet de modifier la propriété d’impression en taille variable de l’objet ou des objets désigné(s) par les paramètres *objet* et *\**. @@ -44,4 +41,13 @@ Le paramètre optionnel *fixeSousForm* vous permet de définir une option suppl #### Voir aussi -[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) \ No newline at end of file +[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1240 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md index fd75daeb774487..b9be6cabb8d97a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET RESIZING OPTIONS** permet de définir ou de modifier dynamiquement les options de redimensionnement de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. Ces options définissent l’affichage de l’objet en cas de redimensionnement de la fenêtre du formulaire. @@ -43,4 +40,13 @@ Passez dans le paramètre *vertical* une valeur indiquant l’option de redimens #### Voir aussi -[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) \ No newline at end of file +[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1175 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md index 61da8be421f8db..cce5f59f15dc8e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET RGB COLORS** modifie les couleurs d'avant-plan et d'arrière-plan du ou des objet(s) défini(s) par le paramètre *objet* et le paramètre optionnel *\**. Lorsque la commande est appliquée à un objet de type list box, un paramètre supplémentaire permet de modifier la couleur alternée des lignes. @@ -106,4 +103,13 @@ Passage du fond en transparent avec couleur de police claire : #### Voir aussi [OBJECT GET RGB COLORS](object-get-rgb-colors.md) -[Select RGB Color](select-rgb-color.md) \ No newline at end of file +[Select RGB Color](select-rgb-color.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 628 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md index c4c2be87b98fee..2a3b8db4991de5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET SCROLL POSITION** permet de faire défiler le contenu de plusieurs types d'objets : lignes d’un sous-formulaire, d’un formulaire liste affiché via la commande [MODIFY SELECTION](modify-selection.md) ou [DISPLAY SELECTION](display-selection.md), ou d'une liste hiérarchique, lignes et colonnes d'une List box ou encore pixels d'une image. @@ -92,4 +89,13 @@ Attention dans ce cas, si vous omettez le second paramètre \*, l'image ne défi [HIGHLIGHT RECORDS](highlight-records.md) [LISTBOX SELECT ROW](listbox-select-row.md) -[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) \ No newline at end of file +[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 906 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md index 0987c0ef053b10..a98a7ead678c27 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET SCROLLBAR** permet d’afficher ou de masquer les barres de défilement horizontale et/ou verticale dans l’objet désigné par les paramètres *objet* et *\**. @@ -46,4 +43,13 @@ Le tableau suivant indique les valeurs que vous pouvez passer dans les paramètr [LISTBOX Get property](listbox-get-property.md) [LISTBOX SET GRID](listbox-set-grid.md) [OBJECT GET SCROLLBAR](object-get-scrollbar.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 843 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md index 3f91ab8530434d..2a615fcb1f7937 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET SHORTCUT** permet de définir ou de modifier dynamiquement l’équivalent clavier associé à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -91,4 +88,13 @@ Vous voulez associer un équivalent clavier différent en fonction de la langue #### Voir aussi -[OBJECT GET SHORTCUT](object-get-shortcut.md) \ No newline at end of file +[OBJECT GET SHORTCUT](object-get-shortcut.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1185 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md index 361dbc55d0b21a..6c40f39694f594 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET STYLE SHEET** vous permet de modifier, pour le process courant, la feuille de style associée à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. Une feuille de style modifie la police, la taille de police et (hormis pour les feuilles de style automatique) le style de police. @@ -49,4 +46,13 @@ Dans **l'architecture Projet**, seules les trois feuilles de style automatiques [GET STYLE SHEET INFO](get-style-sheet-info.md) [LIST OF STYLE SHEETS](list-of-style-sheets.md) [OBJECT Get style sheet](object-get-style-sheet.md) -*Styles de caractères* \ No newline at end of file +*Styles de caractères* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1257 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md index 3af771ccc34307..8d3bd313499f98 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description @@ -25,4 +22,13 @@ displayed_sidebar: docs #### Voir aussi [Form](form.md) -[OBJECT Get subform container value](object-get-subform-container-value.md) \ No newline at end of file +[OBJECT Get subform container value](object-get-subform-container-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1784 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md index f8bb61e7bd9ac6..9ac4133d4f1ca4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET SUBFORM** vous permet de modifier dynamiquement le formulaire détaillé ainsi que, optionnellement, le formulaire liste écran associé à l’objet sous-formulaire désigné par les paramètres *objet* et *\**. @@ -45,4 +42,13 @@ Lorsque vous modifiez un sous-formulaire en page, la commande peut être exécut #### Voir aussi [OBJECT GET SUBFORM](object-get-subform.md) -[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) \ No newline at end of file +[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1138 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md index eda58c5384176f..890f3d6966798d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET TEXT ORIENTATION** vous permet de modifier l’orientation du contenu de l’objet ou des objets désigné(s) par les paramètres *objet* et *\** pour le process courant. @@ -50,4 +47,13 @@ Vous souhaitez appliquer une orientation de 270° à une variable de votre formu #### Voir aussi -[OBJECT Get text orientation](object-get-text-orientation.md) \ No newline at end of file +[OBJECT Get text orientation](object-get-text-orientation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1284 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md index ed27312cab5d07..4cfcfa7f44bc32 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET THREE STATES CHECKBOX** vous permet de modifier, pour le process courant, la propriété "Trois états" de la ou des case(s) à cocher désignée(s) par les paramètres *objet* et *\**. @@ -32,4 +29,13 @@ Passez **Vrai** dans le paramètre *troisEtat* pour activer le mode "trois état #### Voir aussi -[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) \ No newline at end of file +[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1249 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md index 4fc6c8add26e8b..0561516457ca8c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET TITLE** change le libellé du ou des objets(s) spécifié(s) dans le paramètre *objet* et le remplace par la valeur définie dans le paramètre *libellé* *.* @@ -73,4 +70,13 @@ Vous souhaitez insérer des libellés sur deux lignes : #### Voir aussi -[OBJECT Get title](object-get-title.md) \ No newline at end of file +[OBJECT Get title](object-get-title.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 194 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md index 843c6616fde021..bac7816d8e47b1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Exemple 1 **OBJECT SET VALUE** fixe la *valeur* des sources de données courantes pour les objets formulaires désignés par le paramètre *nomObjet*. @@ -41,4 +38,13 @@ Vous souhaitez lire la valeur des sources de données d'un objet formulaire, lir #### Voir aussi -[OBJECT Get value](object-get-value.md) \ No newline at end of file +[OBJECT Get value](object-get-value.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1742 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md index f64b5d5a72c3b2..80e6cccd11c833 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET VERTICAL ALIGNMENT** vous permet de modifier par programmation le type d’alignement vertical appliqué à l’objet ou aux objets désigné(s) par les paramètres *objet* et *\**. @@ -43,4 +40,13 @@ Les objets de formulaire auxquels un alignement vertical peut être appliqué so [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) \ No newline at end of file +[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1187 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md index b09f7b429e17a9..111a95b080d6ed 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OBJECT SET VISIBLE** affiche ou masque le ou les objet(s) défini(s) par les paramètres *objet* et *\**. @@ -59,4 +56,13 @@ ou ainsi : #### Voir aussi [OBJECT Get visible](object-get-visible.md) -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 603 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md index af4abcb54e7724..fefaab1cf85f2a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md @@ -54,4 +54,13 @@ Nous voulons dupliquer et renommer un fichier dans son dossier actuel : [File](file.md) [Folder](folder.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1548 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md index 9f7dce77b93b1d..580a335f1e1834 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md @@ -15,13 +15,22 @@ displayed_sidebar: docs #### Description -**OLD RELATED MANY** fonctionne comme la commande [RELATE MANY](relate-many.md), à la différence près que **OLD RELATED MANY** utilise l'ancienne valeur du champ pour activer le lien. - -**Note :** **OLD RELATED MANY** utilise l'ancienne valeur du champ N, telle qu'elle est retournée par la fonction [Old](old.md). Reportez-vous à la description de cette fonction pour plus d'informations. +**OLD RELATED MANY** fonctionne comme la commande [RELATE MANY](relate-many.md), à la différence près que **OLD RELATED MANY** utilise l'ancienne valeur du champ pour activer le lien.**OLD RELATED MANY** utilise l'ancienne valeur du champ N, telle qu'elle est retournée par la fonction [Old](old.md). Reportez-vous à la description de cette fonction pour plus d'informations. **OLD RELATED MANY** modifie la sélection de la table liée. La commande sélectionne le premier enregistrement de la sélection courante et en fait l'enregistrement courant. #### Voir aussi [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 263 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md index e53f89c785040f..40e15d01daff2a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **OLD RELATED ONE** fonctionne de la même manière que [RELATE ONE](relate-one.md), à la différence près que **OLD RELATED ONE** utilise la valeur précédente de *leChamp* pour établir la relation. @@ -33,4 +30,14 @@ Si la commande a été correctement exécutée et si les enregistrements liés o [Old](old.md) [OLD RELATED MANY](old-related-many.md) [RELATE ONE](relate-one.md) -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 44 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md index c90d4b39a444f0..3bf8b4d85c8361 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md @@ -41,4 +41,13 @@ Pour restaurer la valeur originale d'un champ, assignez-lui la valeur retournée #### Voir aussi -[Modified](modified.md) \ No newline at end of file +[Modified](modified.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 35 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md index c0605e6fe8780f..099970f698bf30 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Backup Shutdown database method** est appelée à chaque fois qu’une sauvegarde de la base vient de se terminer. Les causes de l’arrêt de la sauvegarde peuvent être la fin de la copie, l’interruption par l’utilisateur ou une erreur. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md index d6b137c0b2a4c8..5269066528d3b1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Backup Startup database method** est appelée à chaque fois qu’une sauvegarde de la base est sur le point d’avoir lieu (sauvegarde manuelle, sauvegarde automatique périodique ou via la commande [BACKUP](backup.md)). diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md index e2d545769f2792..df73578f288654 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Drop database method** est disponible dans les applications 4D en mode local ou distant. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md index a4133206d0e692..69017557f0cbd9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md @@ -178,4 +178,13 @@ La méthode de gestion d'erreurs suivante ignore les interruptions de l'utilisat [Last errors](last-errors.md) [Last errors](last-errors.md) [Method called on error](method-called-on-error.md) -*Variables système* \ No newline at end of file +*Variables système* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 155 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md index b0a23a6cf2a4ca..6d88037123a5d9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **ON EVENT CALL** installe la méthode dont le nom est passé dans *méthodeEvén* comme méthode de gestion des événements. @@ -117,4 +114,14 @@ Lorsque vous imprimez un état à l'aide la commande [PRINT SELECTION](print-sel [FILTER EVENT](filter-event.md) [MOUSE POSITION](mouse-position.md) [Method called on event](method-called-on-event.md) -[Shift down](shift-down.md) \ No newline at end of file +[Shift down](shift-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 190 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-exit-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-exit-database-method.md index d2789f8d48e338..94fbb62ff340aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-exit-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-exit-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La méthode base **On Exit** est appelée une fois lorsque vous quittez la base. @@ -110,4 +107,13 @@ L'exemple suivant illustre un cas typique où vous lancez un ou plusieurs proces #### Voir aussi [On Startup database method](on-startup-database-method.md) -[QUIT 4D](quit-4d.md) \ No newline at end of file +[QUIT 4D](quit-4d.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 905252 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md index 631f363b686b1a..c5dee3d2fe5a0c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La **On Host Database Event database method** permet aux composants 4D d’exécuter du code lors de l’ouverture et de la fermeture de la base hôte. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md index 550f0fb7bfaecb..88e7535e43e039 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Documentation déplacée** diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md index 7bdd6f86b7adb5..b375b718a31a00 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Documentation déplacée** diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md index e5854d3686f953..6d7803946bae7b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md @@ -17,11 +17,18 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La **On REST Authentication database method** est obsolète dans les projets à partir de 4D 20 R6. L'[authentification Force login](https://developer.4d.com/docs/fr/REST/authUsers/) est désormais fortement recommandée. Dans les projets convertis, vous pouvez mettre à jour votre configuration en cliquant sur le bouton de paramètres [Activer l'authentification REST via la fonction ds.authentify()](https://developer.4d.com/docs/fr/settings/web/#acc%C3%A8s). Consultez également [cet article de blog](https://blog.4d.com/fr/force-login-now-is-the-default-mode-for-all-rest-authentications) pour savoir comment migrer votre code si nécessaire. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 3367 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md index f2c9eabf77d610..1e51579de43e34 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La **On Server Close Connection database method** est exécutée sur le poste serveur à chaque fois qu'un process 4D Client est refermé. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md index 00d984168f6fd7..666305eadf106a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Quand la Méthode base Sur ouverture connexion serveur est-elle appelée ? La **On Server Open Connection database method** est appelée une fois sur la machine serveur chaque fois qu’un poste 4D distant démarre un process de connexion. La **On Server Open Connection database method** n’est appelée que par 4D Server, à l’exclusion de tout autre environnement 4D. @@ -133,3 +130,13 @@ L’exemple suivant interdit toute nouvelle connexion entre 2 et 4 heures du mat    If((?02:00:00?<=Current time)&(Current time ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 16001 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md index d37bb39cb86a3c..3e9b658c678c53 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Server Shutdown database method** est appelée une fois sur le poste serveur lorsque la base courante est refermée sur 4D Server. La **On Server Shutdown database method** n'est appelée dans aucun environnement 4D autre que 4D Server. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md index d8c448b2b973df..33021318f33892 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La méthode base Sur démarrage serveur est appelée une fois sur le poste serveur lorsque vous ouvrez une base avec 4D Server. La méthode base Sur démarrage serveur n'est jamais exécutée dans un environnement autre que 4D Server. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md index a14ddc3a1a29e4..dbcadac665cd02 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On SQL Authentication database method** permet de filtrer les requêtes adressées au serveur SQL intégré de 4D. Le filtrage peut être effectué sur la base du nom, du mot de passe ainsi que (facultativement) de l’adresse IP de l’utilisateur. Le développeur peut utiliser sa propre table d’utilisateurs ou celle des utilisateurs 4D pour évaluer les identifiants de connexion. Une fois la connexion authentifiée, la commande [CHANGE CURRENT USER](change-current-user.md) doit être appelée afin de contrôler les accès de la requête au sein de la base 4D. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-startup-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-startup-database-method.md index b66d3c436fbe25..1b00f357871123 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-startup-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Startup database method** est exécutée une seule fois, au moment de l'ouverture de la base. @@ -47,4 +44,13 @@ Reportez-vous à l'exemple de la section [On Exit database method](on-exit-datab [On Exit database method](on-exit-database-method.md) *Présentation des méthodes base* -[QUIT 4D](quit-4d.md) \ No newline at end of file +[QUIT 4D](quit-4d.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 905263 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-system-event-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-system-event-database-method.md index a5e2f4b579d09c..fd541cc8bfca24 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-system-event-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-system-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La **On System Event database method** est appelée à chaque fois qu’un événement système se produit. Tous les environnements 4D sont concernés : 4D (tous modes), 4D Server ainsi que les applications 4D compilées et fusionnées avec 4D Volume Desktop. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md index 99cb925d6716a4..d55d1e0a619c67 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### La **On Web Connection database method** peut être appelée dans les cas suivants : diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md index a44b35e50f755c..b7a84294efe885 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Note de compatibilité Cette méthode base peut être utilisée uniquement avec d'**anciennes sessions Web**, disponibles dans les bases de données converties à partir de versions antérieures à 4D v18 R6\. Elle n'est jamais appelée lorsque le mode **sessions Web extensibles** est activé (recommandé sous 4D v18 R6 et versions plus récentes). Pour plus d'informations, reportez-vous à la section *Gestion des sessions Web*. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md index a71ca732f5f4b0..af2789ae5a74ca 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md @@ -28,4 +28,15 @@ A l'origine, cette commande était utile pour "replacer" dans la sélection cour [CREATE SELECTION FROM ARRAY](create-selection-from-array.md) *Présentation des Sélections Temporaires* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 189 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md index 4bec39c8b6aa10..fa54f945c1345c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN ADMINISTRATION WINDOW** affiche la fenêtre d’administration du serveur sur le poste qui l’exécute. La fenêtre d’administration de 4D Server permet de visualiser les paramètres courants et d’effectuer diverses opérations de maintenance (cf. Guide de référence de 4D Server). A compter de la version 11 de 4D Server, cette fenêtre peut être affichée depuis un poste client : @@ -51,4 +48,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[OPEN SECURITY CENTER](open-security-center.md) \ No newline at end of file +[OPEN SECURITY CENTER](open-security-center.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1047 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md index 8248bfe5b76298..9d74a2116bc674 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN COLOR PICKER** affiche la boîte de dialogue de sélection de couleur du système. @@ -30,4 +27,13 @@ Si la couleur a été modifiée, l’événement formulaire On After Edit est g #### Voir aussi -[OPEN FONT PICKER](open-font-picker.md) \ No newline at end of file +[OPEN FONT PICKER](open-font-picker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1304 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md index c14eb982b1409c..8fb8096a96fe92 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md @@ -53,4 +53,13 @@ Dans le contexte du déploiement d'une application fusionnée, vous souhaitez ou #### Voir aussi -[CREATE DATA FILE](create-data-file.md) \ No newline at end of file +[CREATE DATA FILE](create-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 312 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md index 937c4a335ca19d..8622f4e0744e6d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md @@ -69,3 +69,13 @@ Vous souhaitez sélectionner un serveur au démarrage, à partir d'une applicati     QUIT 4D  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1321 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md index 06806c5506c706..5645b1d705813e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md @@ -85,4 +85,14 @@ Si vous passez la valeur 3 dans *mode*, la fonction retourne ?00:00:00? (pas de #### Voir aussi [Append document](append-document.md) -[Create document](create-document.md) \ No newline at end of file +[Create document](create-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 264 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md index 5b11d6042c412d..8977b1c91f5517 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN FONT PICKER** affiche la boîte de dialogue de sélection de police du système. @@ -44,4 +41,13 @@ Le code du bouton est le suivant : #### Voir aussi -[OPEN COLOR PICKER](open-color-picker.md) \ No newline at end of file +[OPEN COLOR PICKER](open-color-picker.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1303 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md index 0566fbd32cc776..a9fd66f66bc8e7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Open form window** crée une nouvelle fenêtre utilisant les propriétés de taille et de redimensionnement du formulaire *nomForm*, passé en paramètre. @@ -134,4 +131,13 @@ Résultat : [FORM GET PROPERTIES](form-get-properties.md) [Open window](open-window.md) *Types de fenêtres* -*Types de fenêtres (compatibilité)* \ No newline at end of file +*Types de fenêtres (compatibilité)* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 675 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md index b9003fe0cd81ff..c0a563ec2d1985 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN PRINTING JOB** ouvre une tâche d’impression (print job) et y empile tous les ordres d’impression exécutés par la suite, tant que la commande [CLOSE PRINTING JOB](close-printing-job.md) n’est pas appelée. Cette commande vous permet de contrôler les tâches d’impression, et notamment de vous assurer qu’aucune tâche d’impression “parasite” ne puisse s’intercaler dans une séquence d’impressions. @@ -38,4 +35,14 @@ La variable système OK est définie sur 1 si la tâche d'impression a été ouv #### Voir aussi -[CLOSE PRINTING JOB](close-printing-job.md) \ No newline at end of file +[CLOSE PRINTING JOB](close-printing-job.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 995 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md index 79ca7e314a8a55..14c3a8edb44a10 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Open resource file** ouvre le fichier de ressources dont vous avez passé le nom ou le chemin d'accès complet dans le paramètre *resNomFichier*. @@ -99,4 +96,14 @@ Si le fichier de ressources n'a pas pu être ouvert à la suite d'un problème d #### Voir aussi [CLOSE RESOURCE FILE](close-resource-file.md) -*Ressources* \ No newline at end of file +*Ressources* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 497 | +| Thread safe | ✗ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md index dcf189566667cf..d89260d0cd56e5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md @@ -15,3 +15,13 @@ displayed_sidebar: docs #### Description La commande OPEN RUNTIME EXPLORER affiche l'Explorateur d'exécution dans une fenêtre flottante. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1781 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md index 226b037436661b..c34b63c9135e66 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN SECURITY CENTER** provoque l’affichage de la fenêtre du Centre de sécurité et de maintenance (CSM). Pour plus d'informations, veuillez consulter la page *Centre de Sécurité et de Maintenance*. @@ -26,4 +23,13 @@ displayed_sidebar: docs #### Voir aussi -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1018 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md index 1b1cda7ee4125c..86f10c63656c10 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **OPEN SETTINGS WINDOW** provoque l’ouverture de la boîte de dialogue des Préférences 4D ou des Propriétés de la base courante et l’affichage des paramètres ou de la page correspondant à la clé passée dans le paramètre *sélecteur*. @@ -140,3 +137,14 @@ Accès à la page Interface des Propriétés de la base en mode "Propriétés ut #### Variables et ensembles système Si la boîte de dialogue des préférences/propriétés est validée, la variable système OK retourne 1 ; si elle est annulée, OK retourne 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 903 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md index 641285d06b74f6..364cd3efffe7dd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md @@ -79,4 +79,13 @@ Vous pouvez ouvrir un même fichier texte avec différentes applications en util #### Voir aussi -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 673 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md index 124422dfb67b44..24a7ea8f5ef182 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Open window** ouvre une nouvelle fenêtre dont les dimensions sont définies par les quatre premiers paramètres : @@ -137,4 +134,13 @@ Cet exemple illustre le mécanisme de “retard” d’affichage des fenêtres f [CLOSE WINDOW](close-window.md) *Creer fenetre* -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 153 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md index 9afdcdc580c4d8..b0b5510749f709 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md @@ -111,4 +111,13 @@ Les enregistrements sont dans l'ordre suivant : #### Voir aussi - \ No newline at end of file + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1407 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md index d8db201e032a3b..bb440547f0210c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md @@ -44,4 +44,15 @@ L'exemple suivant trie les enregistrements de la table \[Personnes\] dans l'ordr #### Voir aussi -[ORDER BY](order-by.md) \ No newline at end of file +[ORDER BY](order-by.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 300 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md index b4b544c273ce0f..cb1404d2941345 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md @@ -200,4 +200,15 @@ Quelle que soit la manière dont le tri est défini, si l'opération risque de p #### Voir aussi -[ORDER BY FORMULA](order-by-formula.md) \ No newline at end of file +[ORDER BY FORMULA](order-by-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 49 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md index dc8dbaf70553a9..9271d3146dfca7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Outside call** retourne Vrai pour le cycle d'exécution Appel extérieur. @@ -27,4 +24,13 @@ Si vous voulez que le cycle d'exécution **Outside call** soit généré, vérif #### Voir aussi [Form event code](form-event-code.md) -[POST OUTSIDE CALL](post-outside-call.md) \ No newline at end of file +[POST OUTSIDE CALL](post-outside-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 328 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md index 52c43a3b81e766..54890b24fd7768 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PAGE BREAK** déclenche l'impression des données envoyées à l'imprimante et provoque un saut de page. **PAGE BREAK** s'utilise conjointement avec [Print form](print-form.md) (dans le cadre de l'événement formulaire On Printing Detail) pour forcer des sauts de page et imprimer la dernière page créée en mémoire. @@ -46,4 +43,14 @@ Reportez-vous à l'exemple de la commande [SET PRINT MARKER](set-print-marker.md #### Voir aussi [CANCEL](cancel.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 6 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md index 5c60a187bba493..a20ae3cec411c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Parse formula** inspecte le contenu de la *formule* 4D, vérifie sa syntaxe, et la retourne sous une forme normalisée. Cette opération permet à la formule de rester valide dans le cas où un élément du langage 4D ou de la structure est renommé (commande, constante, table, champ ou plug-in 4D). @@ -104,4 +101,13 @@ Si une erreur de syntaxe est détectée dans la *formule*, un message d'erreur e [Formula from string](formula-from-string.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -*Utiliser des tokens dans les formules* \ No newline at end of file +*Utiliser des tokens dans les formules* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1576 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md index c17e7a16cd86e9..d72b4a3862cddf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Pasteboard data size** vous permet de savoir s'il y a des données du type *typeDonnées* dans le conteneur de données. @@ -96,4 +93,14 @@ Référez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-da *Conteneur de données* [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 400 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md index dbb35c842907c9..69de59243afc89 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md @@ -175,4 +175,13 @@ Vous voulez connaître le nombre de sous-dossiers contenus dans un chemin : [File](file.md) [Folder](folder.md) [Object to path](object-to-path.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1547 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md index 5de96fea0f9f62..cdb06ed5890b74 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md @@ -45,4 +45,13 @@ Exemple de méthode d’import massif de données : #### Voir aussi [DELETE INDEX](delete-index.md) -[RESUME INDEXES](resume-indexes.md) \ No newline at end of file +[RESUME INDEXES](resume-indexes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1293 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md index 95f5cedd3795cc..e7c1e72ad1567b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md @@ -30,4 +30,13 @@ Lorsqu'un process est suspendu, les fenêtres qui lui appartiennent ne sont pas [ABORT PROCESS BY ID](abort-process-by-id.md) [DELAY PROCESS](delay-process.md) [HIDE PROCESS](hide-process.md) -[RESUME PROCESS](resume-process.md) \ No newline at end of file +[RESUME PROCESS](resume-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 319 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md index 5a3d091e06eada..0c38685ddeec6b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - :::info Compatibilité **PHP est obsolète dans 4D**. Il est désormais recommandé d'utiliser la classe [`4D.SystemWorker`](../API/SystemWorkerClass.md). @@ -278,4 +275,13 @@ Pour plus d'informations sur la fonction *trim*, veuillez vous reporter à la do *Exécuter des scripts PHP dans 4D* [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1058 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md index f7139f9f628951..42a2e449f3089d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - :::info Compatibilité **PHP est obsolète dans 4D**. Il est désormais recommandé d'utiliser la classe [`4D.SystemWorker`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Comme les échanges entre 4D et l’interpréteur PHP s’effectuent via FastCGI #### Voir aussi [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1061 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md index f4b21587325d43..8171a9657bef25 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - :::info Compatibilité **PHP est obsolète dans 4D**. Il est désormais recommandé d'utiliser la classe [`4D.SystemWorker`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Passez dans le paramètre *option* une constante du thème *PHP* désignant l’ #### Voir aussi [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1060 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md index 0e3727177b10c5..a6f43a3e0c0433 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - :::info Compatibilité **PHP est obsolète dans 4D**. Il est désormais recommandé d'utiliser la classe [`4D.SystemWorker`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Par défaut, **PHP SET OPTION** définit l’option pour tous les appels à [PHP #### Voir aussi [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1059 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md index d2973aa54ac2e9..46fcefbcef2456 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md @@ -34,4 +34,13 @@ Par défaut, si vous ne passez pas le paramètre *\**, la commande retourne uniq #### Voir aussi *Introduction aux images* -[Is picture file](is-picture-file.md) \ No newline at end of file +[Is picture file](is-picture-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 992 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md index 5937313902305f..f2c06cdf927df9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PICTURE LIBRARY LIST** retourne les numéros de référence et le nom des images stockées dans la bibliothèque d’images de la base de données. @@ -94,4 +91,13 @@ L'exemple suivant exporte la Bibliothèque d’Images vers un document stocké s [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 564 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md index c3b47984cd5d7b..e228377b5a2ce3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md @@ -28,4 +28,13 @@ Les paramètres *hOffset*, *vOffset* et *mode* reçoivent la position et le mode #### Voir aussi -[Picture size](picture-size.md) \ No newline at end of file +[Picture size](picture-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 457 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md index daa7275a18b3f2..26b0ece428a58d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### Voir aussi -[PICTURE PROPERTIES](picture-properties.md) \ No newline at end of file +[PICTURE PROPERTIES](picture-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 356 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md index 1e5d59f47d4cec..a0d8b28f4aaf76 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md @@ -48,4 +48,14 @@ Vous voulez convertir une image depuis un format propriétaire vers le format GI [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 692 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md index 5a380e6eb2cd60..2bed10be23b400 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PLAY** vous permet de jouer des fichiers de son ou multimedia. Sous OS X, la commande permet également de jouer un son système. @@ -58,4 +55,13 @@ Exemple de son système sous OS X : #### Voir aussi -[BEEP](beep.md) \ No newline at end of file +[BEEP](beep.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 290 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md index e9b42ab057f016..77e143a59b0138 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md @@ -27,4 +27,13 @@ displayed_sidebar: docs [COMPONENT LIST](component-list.md) [Get plugin access](get-plugin-access.md) [Is license available](is-license-available.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 847 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md index 1bcbc31af61707..873aef55b50b22 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md @@ -31,4 +31,14 @@ L'exemple suivant récupère l'enregistrement d'un client dans la pile : #### Voir aussi [PUSH RECORD](push-record.md) -*Utiliser la pile d'enregistrements* \ No newline at end of file +*Utiliser la pile d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 177 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md index 1c16cd51b5908f..f01e5e3ca68f81 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Pop up menu** fait apparaître un pop up à l'emplacement courant du curseur de la souris ou à l'emplacement défini par les paramètres facultatifs *coordX* et *coordY*. @@ -89,4 +86,13 @@ Voici le pop up menu tel qu'il s'affiche sous Windows (à gauche) et sous Mac OS #### Voir aussi [Dynamic pop up menu](dynamic-pop-up-menu.md) -[MOUSE POSITION](mouse-position.md) \ No newline at end of file +[MOUSE POSITION](mouse-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 542 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md index a6c20a6c039778..dfff9407a6d7a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md @@ -117,4 +117,13 @@ Dans l'exemple suivant, vous souhaitez recherchez toutes les instances d'une cha #### Voir aussi [Compare strings](compare-strings.md) -[Substring](substring.md) \ No newline at end of file +[Substring](substring.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 15 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md index b4953694d2f8fe..161646b7627572 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **POST CLICK** simule un clic souris. Elle produit les mêmes effets que lorsque l'utilisateur clique réellement avec le bouton de la souris. @@ -30,4 +27,13 @@ Si vous passez le paramètre *process*, le clic est envoyé au process dont vous #### Voir aussi [POST EVENT](post-event.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 466 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md index 5cdf919b1e231e..8be51b5df58c53 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **POST EVENT** simule un événement (clavier ou souris). Elle produit les mêmes effets que lorsque l'utilisateur agit réellement par l'intermédiaire du clavier ou de la souris. @@ -74,4 +71,13 @@ Si vous passez le paramètre *process*, l'événement est envoyé au process don #### Voir aussi [POST CLICK](post-click.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 467 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md index 09b637472e68e5..9e3ce255642a1e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **POST KEY** simule la frappe d'une touche sur le clavier. Elle produit les mêmes effets que lorsque l'utilisateur tape réellement un caractère au clavier. @@ -62,4 +59,13 @@ Reportez-vous à l'exemple de la fonction [Process number](process-number.md). *Codes ASCII* *Codes des touches de fonction* [POST CLICK](post-click.md) -[POST EVENT](post-event.md) \ No newline at end of file +[POST EVENT](post-event.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 465 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md index 197488b3e8cf25..f4f0951d713492 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Note de compatibilité Cette commande était nommée **CALL PROCESS** dans les versions précédentes de 4D. @@ -46,4 +43,14 @@ Reportez-vous à l'exemple de la section [Semaphore](semaphore.md). [Form event code](form-event-code.md) [GET PROCESS VARIABLE](get-process-variable.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 329 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md index eac628be5df1d2..d1f167046d100c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md @@ -25,4 +25,14 @@ Si **PREVIOUS RECORD** place le pointeur d'enregistrement courant avant la séle [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[NEXT RECORD](next-record.md) \ No newline at end of file +[NEXT RECORD](next-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 110 | +| Thread safe | ✓ | +| Change l'enregistrement courant || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md index 1d9f2843808012..60c36e1c951477 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Print form** imprime simplement *formulaire* avec les valeurs courantes des champs et des variables de *laTable*. Cette commande est généralement utilisée pour imprimer des états particulièrement complexes nécessitant un contrôle total du processus d'impression. **Print form** ne gère pas les traitements d'enregistrements, ni les ruptures, sauts de pages, en-têtes ou pieds de pages. Vous devez vous-même prendre en charge ces opérations. **Print form** imprime uniquement des champs et des variables avec une taille fixe, la commande ne gère pas les objets de taille variable. @@ -166,4 +163,13 @@ Le code qui appelle la boîte de dialogue ensuite imprime son corps : [CANCEL](cancel.md) [PAGE BREAK](page-break.md) [PRINT SETTINGS](print-settings.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 5 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md index 48d015af09467c..d49d00a6a57acd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **PRINT LABEL** vous permet d'imprimer des étiquettes à partir des données de la sélection de *laTable*. @@ -111,4 +108,14 @@ L'exemple suivant permet à l'utilisateur d'effectuer une recherche sur la table #### Voir aussi [PRINT SELECTION](print-selection.md) -[QR REPORT](qr-report.md) \ No newline at end of file +[QR REPORT](qr-report.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 39 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md index e7dd2fa8b6ff09..d4df983c718df8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Print object** vous permet d’imprimer le ou les objet(s) de formulaire désigné(s) par les paramètres *objet* et *\**, à l’emplacement défini par les paramètres *posX* et *posY*. @@ -98,4 +95,13 @@ Exemple d’impression d’une list box complète : #### Voir aussi -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1095 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md index fc05ad9b9320bb..9cfa7f6cb03f84 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PRINT OPTION VALUES** retourne dans le tableau *tabNoms* la liste des noms de valeurs disponibles pour l’*option* d’impression définie. Facultativement, vous pouvez récupérer des informations sur chaque valeur dans les tableaux *tabInfo1* et *tabInfo2*. @@ -56,4 +53,13 @@ Toutes les informations retournées par ces commandes sont fournies par le syst #### Voir aussi [GET PRINT OPTION](get-print-option.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 785 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md index f34f4590881ad1..9c6a1d67c5c6fa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description Cette commande provoque l'impression de l'enregistrement courant de *laTable*, sans modifier la sélection courante. Le formulaire sortie courant est utilisé pour l'impression. S’il n’y a pas d’enregistrement courant dans *laTable*, **PRINT RECORD** ne fait rien. @@ -67,4 +64,13 @@ L'exemple suivant imprime le même enregistrement courant dans deux formulaires #### Voir aussi -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 71 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md index dc1f2e053bbd6a..08962b06b00ca7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PRINT SELECTION** imprime la sélection courante de *laTable*. Les enregistrements sont imprimés dans le formulaire sortie courant de la table du process en cours. **PRINT SELECTION** a le même effet que la commande **Imprimer...** du mode Développement. Si la sélection courante est vide, **PRINT SELECTION** ne fait rien. @@ -66,4 +63,14 @@ L'exemple suivant sélectionne la totalité des enregistrements de la table \[Pe [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 60 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md index 0d4fcf40e9b6e9..90650d4389cf8e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Print settings to BLOB** sauvegarde les paramètres d'impression courants de 4D dans le BLOB *paramImpression*. Le paramètre *paramImpression* stocke tous les paramètres utilisés pour l'impression : @@ -56,4 +53,13 @@ Vous voulez sauvegarder les paramètres d'impression courants sur disque : #### Voir aussi -[BLOB to print settings](blob-to-print-settings.md) \ No newline at end of file +[BLOB to print settings](blob-to-print-settings.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1433 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md index 495898c61d1e6b..da84e0e3a5a43a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PRINT SETTINGS** provoque l'affichage d'une boîte de dialogue d'impression. Cette commande doit être appelée avant une série de commandes [Print form](print-form.md) ou la commande [OPEN PRINTING JOB](open-printing-job.md). @@ -42,4 +39,14 @@ Si l'utilisateur clique sur le bouton OK dans chaque boîte de dialogue, la vari [OPEN PRINTING JOB](open-printing-job.md) [PAGE BREAK](page-break.md) [Print form](print-form.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 106 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md index 60c7382bdd6f91..c8cf05eb3691c0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **PRINTERS LIST** remplit le ou les tableau(x) passé(s) en paramètre(s) avec les noms ainsi que, facultativement, les emplacements ou les noms personnalisés et les modèles des imprimantes disponibles pour le poste. @@ -45,4 +42,14 @@ La variable système OK prend la valeur 1 si la commande a été exécutée corr #### Voir aussi [Get current printer](get-current-printer.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 789 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md index 29870570e9a1b2..7385e94fe2b7af 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Printing page** retourne le numéro de la page en cours d'impression. Cette fonction vous permet de numéroter automatiquement les pages d'une impression en cours à l'aide de [PRINT SELECTION](print-selection.md) ou du menu Impression dans le mode Développement. @@ -39,4 +36,13 @@ L'exemple suivant change la position des numéros de page sur un état pour que #### Voir aussi -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 275 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md index ea6132cf2a2ea6..e42284c30356c5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md @@ -71,4 +71,13 @@ Cet exemple permet de générer un texte à l'aide de données dans des tableaux #### Voir aussi -*Balises de transformation 4D* \ No newline at end of file +*Balises de transformation 4D* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 816 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md index 1701208ce2c64b..892e33e3e8bd99 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md @@ -21,4 +21,13 @@ Ce statut se produira très rarement. Les process sont généralement arrêtés #### Voir aussi -[On Exit database method](on-exit-database-method.md) \ No newline at end of file +[On Exit database method](on-exit-database-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 672 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md index 247e89cd325b5d..e17a5b4588b8ad 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md @@ -64,4 +64,13 @@ Avec cette fonction, la méthode projet listée ci-dessous colle le texte reçu [GET PROCESS VARIABLE](get-process-variable.md) [Process info](../commands/process-info.md) [Process state](process-state.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 372 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md index 451175f29eec2d..41be24451b97f2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Process state** retourne le statut du process dont le numéro est passé dans *process*. @@ -61,4 +58,13 @@ L'exemple suivant retourne le nom et le numéro de référence de chaque process #### Voir aussi [Count tasks](count-tasks.md) -[Process info](../commands/process-info.md) \ No newline at end of file +[Process info](../commands/process-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 330 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md index fe88d2d06408af..4e7264aada383f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md @@ -15,7 +15,7 @@ displayed_sidebar: docs #### Description -**PUSH RECORD** "empile" une copie de l'enregistrement courant de *laTable* dans la pile d'enregistrements de la table. **PUSH RECORD** peut être exécuté avant qu'un enregistrement soit sauvegardé. +**PUSH RECORD** "empile" une copie de l'enregistrement courant de *laTable* dans la pile d'enregistrements de la table.peut être exécuté avant qu'un enregistrement soit sauvegardé. Si vous empilez un enregistrement non verrouillé, il sera verrouillé pour tous les autres process et utilisateurs jusqu'à ce que vous le "dépiliez" (c'est-à-dire que vous le déchargiez de la pile). @@ -32,4 +32,13 @@ L'exemple suivant empile l'enregistrement d'un client : #### Voir aussi [POP RECORD](pop-record.md) -*Utiliser la pile d'enregistrements* \ No newline at end of file +*Utiliser la pile d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 176 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md index bc99e19c977544..3154d0e3f19bfa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR BLOB TO REPORT** place l’état contenu dans le paramètre *blob* dans la zone d'état rapide désignée par le paramètre *zone*. @@ -45,4 +42,14 @@ L'instruction suivante affiche l'état stocké dans le champ ChampBlob dans la z #### Voir aussi -[QR REPORT TO BLOB](qr-report-to-blob.md) \ No newline at end of file +[QR REPORT TO BLOB](qr-report-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 771 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md index 2bdeded66b03da..98137a44a8cb29 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Count columns** retourne le nombre de colonnes présentes dans l'état rapide désigné par le paramètre *zone*. @@ -35,4 +32,14 @@ L'exemple suivant permet d'ajouter une colonne supplémentaire à droite de la d #### Voir aussi [QR DELETE COLUMN](qr-delete-column.md) -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 764 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md index 5e4d1f2eb5bdaa..dee81b6be32354 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR DELETE COLUMN** supprime de la *zone* la colonne dont le numéro a été passé dans *numColonne*. Cette commande ne peut pas être utilisée avec les états en tableau croisé. @@ -36,4 +33,14 @@ Cet exemple supprime la troisième colonne de l'état : #### Voir aussi -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 749 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md index a4db97cb9834e9..6eaf1c95e3ee87 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR DELETE OFFSCREEN AREA** efface de la mémoire la zone hors écran dont la référence a été passée dans le paramètre *zone*. @@ -24,4 +21,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 754 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md index d0969fa141a14c..8431a356821379 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR EXECUTE COMMAND** exécute la commande de bouton de la barre d'outils dont la référence est passée dans le paramètre *numCommande*. En général, cette commande est utilisée pour exécuter une commande de menu sélectionnée par l'utilisateur et interceptée dans votre code via la commande [QR ON COMMAND](qr-on-command.md). @@ -39,4 +36,14 @@ Si le paramètre *numCommande* est incorrect, l’erreur -9852 est générée. #### Voir aussi [QR Get command status](qr-get-command-status.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 791 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md index 74951d1cd25bd9..dca3101f4b5183 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Find column** retourne le numéro de la première colonne de la *zone* dont le contenu correspond à l'*expression* passée en paramètre. @@ -49,3 +46,14 @@ suivi de :     QR DELETE COLUMN(MaZone;$NumColonne)  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 776 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md index 84aa00772c6f00..7b1dd9d8fa07d2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get area property** retourne 0 si l'élément d'interface dont la référence est passée dans le paramètre *propriété* est masqué dans la *zone*, sinon elle retourne 1\. @@ -36,4 +33,14 @@ Si le paramètre *propriété* est incorrect, l’erreur -9852 est générée. #### Voir aussi -[QR SET AREA PROPERTY](qr-set-area-property.md) \ No newline at end of file +[QR SET AREA PROPERTY](qr-set-area-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 795 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md index a54389c28c7aff..239310a1cd99da 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET BORDERS** retourne les attributs d'encadrement d'une cellule spécifique de *zone*. @@ -70,4 +67,14 @@ Si le paramètre *encadrement* est incorrect, l’erreur -9854 est générée. #### Voir aussi -[QR SET BORDERS](qr-set-borders.md) \ No newline at end of file +[QR SET BORDERS](qr-set-borders.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 798 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md index 67b1a9111bd78f..22d632030a7bbc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get command status** retourne 0 si la commande désignée par le paramètre *numCommande* est inactivée et 1 si elle est activée. @@ -92,4 +89,14 @@ Si le paramètre *numCommande* est incorrect, l’erreur -9852 est générée. #### Voir aussi [QR EXECUTE COMMAND](qr-execute-command.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 792 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md index 6e0a3d31d41fb8..dc800655334c45 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET DESTINATION** retourne le *type* de destination de l'état rapide contenu dans la *zone*. @@ -36,4 +33,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET DESTINATION](qr-set-destination.md) \ No newline at end of file +[QR SET DESTINATION](qr-set-destination.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 756 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md index 1a0dd331c167f9..9b9c066042b136 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get document property** vous permet de connaître la valeur courante de la *propriété* d'affichage de la boîte de dialogue d'impression ou de l'unité du document présent dans la *zone*. @@ -36,4 +33,13 @@ Si la valeur du paramètre *propriété* est incorrecte, l’erreur -9852 est g #### Voir aussi -[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) \ No newline at end of file +[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 773 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md index 31e61858a62731..fea9a15c0c7514 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get drop column** retourne une valeur indiquant l'emplacement auquel un “déposer” a été effectué dans *zone* : @@ -28,4 +25,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 747 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md index fb5a8365a0e6e3..96a709e69cb012 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET HEADER AND FOOTER** vous permet de récupérer le contenu et la taille de l'en-tête et du pied de page de la *zone*. @@ -67,4 +64,14 @@ La méthode suivante affiche le contenu et la hauteur des libellés des en-tête #### Voir aussi -[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) \ No newline at end of file +[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 775 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md index 8196786cf582ef..bf14307ad2503f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get HTML template** retourne le modèle HTML utilisé pour la zone d'état rapide référencée par *zone*. La valeur retournée, de type texte, contient la totalité du code HTML utilisé comme modèle. @@ -28,4 +25,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET HTML TEMPLATE](qr-set-html-template.md) \ No newline at end of file +[QR SET HTML TEMPLATE](qr-set-html-template.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 751 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md index b805a1044034ae..ef2f051a8b5251 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description ##### Etats en liste @@ -106,4 +103,14 @@ Vous pouvez écrire : [QR Get info row](qr-get-info-row.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 766 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md index 92fb4df151bef5..dd32ba565330a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get info row** indique si la ligne désignée par le paramètre *ligne* est affichée ou masquée dans la *zone*. @@ -41,4 +38,14 @@ Si le paramètre *ligne* est incorrect, l’erreur -9852 est générée. [QR GET INFO COLUMN](qr-get-info-column.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 769 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md index 05f10359d4ea92..80d5d5c18e994b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get report kind** retourne le *type* d'état présent dans la *zone*. @@ -32,4 +29,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET REPORT KIND](qr-set-report-kind.md) \ No newline at end of file +[QR SET REPORT KIND](qr-set-report-kind.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 755 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md index 9a3ef40b196226..2bca35d3e94dd8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get report table** retourne le numéro de la table courante de l'état désigné par le paramètre *zone*. @@ -25,4 +22,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET REPORT TABLE](qr-set-report-table.md) \ No newline at end of file +[QR SET REPORT TABLE](qr-set-report-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 758 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md index a69daf7a330014..3b88e01927071e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET SELECTION** retourne les coordonnées de la sélection courante de la *zone*. @@ -38,4 +35,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET SELECTION](qr-set-selection.md) \ No newline at end of file +[QR SET SELECTION](qr-set-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 793 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md index 79066dbce3d6d8..7a8cb03242802c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET SORTS** remplit deux tableaux réels : @@ -37,4 +34,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR SET SORTS](qr-set-sorts.md) \ No newline at end of file +[QR SET SORTS](qr-set-sorts.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 753 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md index 23746c08cb63eb..ffd9d5d72992bf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR Get text property** retourne la valeur courante de la *propriété* de texte dans la cellule de *zone* désignée par *numColonne* et *numLigne*. @@ -67,4 +64,14 @@ Si le paramètre *propriété* est incorrect, l’erreur -9854 est générée. #### Voir aussi -[QR SET TEXT PROPERTY](qr-set-text-property.md) \ No newline at end of file +[QR SET TEXT PROPERTY](qr-set-text-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 760 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md index 94803972c5351e..e7fc94f0f0d390 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description ##### Etat en liste @@ -70,4 +67,14 @@ Si le paramètre *numRupture* est incorrect, l’erreur -9853 est générée. #### Voir aussi -[QR SET TOTALS DATA](qr-set-totals-data.md) \ No newline at end of file +[QR SET TOTALS DATA](qr-set-totals-data.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 768 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md index 75e93d43dfcce2..9a8eaaa1331f90 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR GET TOTALS SPACING** permet de récupérer la valeur de l'espacement ajouté au-dessous d'une ligne de sous-total. Elle ne peut être utilisée qu'avec des états en liste. @@ -37,4 +34,14 @@ Si le paramètre *sousTotal* est incorrect, l’erreur -9852 est générée. #### Voir aussi -[QR SET TOTALS SPACING](qr-set-totals-spacing.md) \ No newline at end of file +[QR SET TOTALS SPACING](qr-set-totals-spacing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 762 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md index 5918e362719b79..6b03d8b8d5a50f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR INSERT COLUMN** insère ou crée dans *zone* une colonne à un emplacement spécifique. Les colonnes situées à droite de la colonne ajoutée seront décalées en conséquence. @@ -40,4 +37,14 @@ La ligne suivante insère (ou crée) une première colonne dans la zone MaZone e #### Voir aussi -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 748 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md index 8fdadfb3064e8c..78d86b29376e90 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR MOVE COLUMN** déplace la colonne *numColonne* de sa position courante à la position *nouvPosition*. @@ -41,3 +38,13 @@ Si vous exécutez : Vous obtenez : ![](../assets/en/commands/pict2569472.fr.png) + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1325 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md index e2bd056962f277..5a6d5bbaa10ab1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md @@ -13,13 +13,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR NEW AREA** crée une nouvelle zone d'état rapide et stocke son numéro de référence dans la variable de type Entier long référencée par le pointeur *ptr*. #### Voir aussi -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1320 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md index 395770dc824971..5526c152118b66 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR New offscreen area** crée une zone d'Etat rapide hors écran et retourne son numéro de référence. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### Voir aussi [QR DELETE OFFSCREEN AREA](qr-delete-offscreen-area.md) -[QR NEW AREA](qr-new-area.md) \ No newline at end of file +[QR NEW AREA](qr-new-area.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 735 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md index 79b5e6cc1aecf7..7166da7087b2b0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR ON COMMAND** exécute la méthode projet 4D dont le nom est passé dans le paramètre *nomMéthode* lorsqu'une commande de l'éditeur d'états rapides est appelée via la sélection d'un menu ou le clic sur un bouton. @@ -44,4 +41,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. *QR Commandes* [QR EXECUTE COMMAND](qr-execute-command.md) -[QR Get command status](qr-get-command-status.md) \ No newline at end of file +[QR Get command status](qr-get-command-status.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 790 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md index 54431b6fff5c40..78d740876aeff1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR REPORT TO BLOB** place dans le BLOB *blob* (variable ou champ) l’état dont la référence a été passée dans le paramètre *zone*. @@ -33,4 +30,14 @@ L'instruction suivante affecte l'état rapide stocké dans la zone MaZone à un #### Voir aussi -[QR BLOB TO REPORT](qr-blob-to-report.md) \ No newline at end of file +[QR BLOB TO REPORT](qr-blob-to-report.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 770 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md index e7d7de4477f75a..a012f984b2c9a6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR REPORT** imprime un état pour *laTable*, à l'aide de l'Editeur d'états rapides de 4D. Cet éditeur permet à l'utilisateur de construire en totalité son propre état. Pour plus d'informations sur la création d'états à l'aide de l'Editeur d'états rapides, reportez-vous à la section *Etats rapides* dans le manuel *Mode Développement* de 4D. @@ -132,4 +129,14 @@ La méthode maCallbackMeth convertit l’état lorsqu’il est généré : [PRINT LABEL](print-label.md) [PRINT SELECTION](print-selection.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 197 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md index 6c843f3f583c34..49dac03190a884 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR RUN** provoque l'exécution de l'état rapide désigné par le paramètre *zone*. L'état est généré avec ses paramétrages courants, notamment son type de sortie. Vous pouvez utiliser la commande [QR SET DESTINATION](qr-set-destination.md) pour modifier le type de sortie. @@ -25,3 +22,14 @@ L'état est exécuté sur la table à laquelle appartient la zone. Lorsque *zone Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. **4D Server :** Cette commande peut être exécutée sur 4D Server dans le cadre d'une procédure stockée. Dans ce contexte, veillez à ce qu’aucune boîte de dialogue n’apparaisse sur le poste serveur (sauf besoin spécifique). Pour cela, il est nécessaire d’appeler la commande [QR SET DESTINATION](qr-set-destination.md) avec le paramètre "\*". En cas de problème sur l’imprimante (plus de papier, imprimante déconnectée, etc.), aucun message d'erreur n'est généré. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 746 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md index 53bba30aaac3ff..d778f5d6a0bd14 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET AREA PROPERTY** vous permet d'afficher ou de masquer l'élément d'interface dont la référence est passée dans le paramètre *propriété*. @@ -35,4 +32,14 @@ Si le paramètre *propriété* est incorrect, l’erreur -9852 est générée. #### Voir aussi -[QR Get area property](qr-get-area-property.md) \ No newline at end of file +[QR Get area property](qr-get-area-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 796 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md index e2e610950c5046..fec8f826f23078 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET BORDERS** permet de définir le style d'encadrement d'une cellule spécifique. @@ -77,4 +74,14 @@ Si le paramètre *épaisseur* est incorrect, l’erreur -9855 est générée. #### Voir aussi -[QR GET BORDERS](qr-get-borders.md) \ No newline at end of file +[QR GET BORDERS](qr-get-borders.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 797 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md index 52c00215568f70..d2f48c08c1ed01 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET DESTINATION** permet de définir le *type* de destination de sortie de l'état rapide contenu dans la *zone*. @@ -55,4 +52,14 @@ L'exemple suivant définit le fichier texte "MonDoc.txt" comme type de destinati #### Voir aussi -[QR GET DESTINATION](qr-get-destination.md) \ No newline at end of file +[QR GET DESTINATION](qr-get-destination.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 745 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md index f2d57c0ed76202..6e57160e606555 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET DOCUMENT PROPERTY** permet d'afficher la boîte de dialogue d'impression ou de définir l'unité du document présent dans la *zone*. @@ -36,4 +33,14 @@ Si la valeur du paramètre *propriété* ou *valeur* est incorrecte, l’erreur #### Voir aussi -[QR Get document property](qr-get-document-property.md) \ No newline at end of file +[QR Get document property](qr-get-document-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 772 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md index 85c1d05c83163f..25eaf3864496a0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET HEADER AND FOOTER** vous permet de définir le contenu et la taille de l'en-tête et du pied de page de la *zone*. @@ -56,4 +53,14 @@ L'instruction suivante place le libellé “Titre du centre” dans l'en-tête d #### Voir aussi -[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) \ No newline at end of file +[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 774 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md index 8d04a8e482e087..55e0cba36564c3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET HTML TEMPLATE** permet de définir le *modèle* HTML à utiliser pour la zone d'état rapide référencée par *zone*. Ce modèle sera utilisé lors de l'exécution des états au format HTML. @@ -70,4 +67,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR Get HTML template](qr-get-html-template.md) \ No newline at end of file +[QR Get HTML template](qr-get-html-template.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 750 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md index 1b8c195fa0649d..16c44f56edab9a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description ##### Etats en liste @@ -106,4 +103,14 @@ Si le paramètre *numColonne* est incorrect, l’erreur -9852 est générée. [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 765 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md index 3ca3be3493a08b..aee165ee43758f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET INFO ROW** permet d'afficher ou de masquer la ligne dont la référence est passée dans le paramètre *ligne*. @@ -53,4 +50,14 @@ L'instruction suivante masque le contenu de la ligne Détail : [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO COLUMN](qr-set-info-column.md) \ No newline at end of file +[QR SET INFO COLUMN](qr-set-info-column.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 763 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md index cc77df152699d7..41a51e49a85b01 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET REPORT KIND** permet de définir le *type* de l'état rapide présent dans la *zone*. @@ -35,4 +32,14 @@ Si la valeur de *type* est incorrecte, l’erreur -9852 est générée. #### Voir aussi -[QR Get report kind](qr-get-report-kind.md) \ No newline at end of file +[QR Get report kind](qr-get-report-kind.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 738 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md index d3e547ee6398fe..83563967fcf847 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET REPORT TABLE** désigne via le paramètre *numTable* le numéro de la table courante de l'état rapide dont la référence est passée dans le paramètre *zone*. @@ -28,4 +25,14 @@ Si le paramètre *numTable* est incorrect, l’erreur -9852 est générée. #### Voir aussi -[QR Get report table](qr-get-report-table.md) \ No newline at end of file +[QR Get report table](qr-get-report-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 757 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md index 0dc57cfcbe33b1..dcb05c635301be 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET SELECTION** permet de sélectionner une cellule, une ligne, une colonne ou encore la totalité de la *zone*, comme vous le feriez à l'aide de la souris. Cette commande permet également de désélectionner la sélection courante. @@ -38,4 +35,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR GET SELECTION](qr-get-selection.md) \ No newline at end of file +[QR GET SELECTION](qr-get-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 794 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md index e21ce9a5e27430..24ef76aac16ad9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET SORTS** vous permet de définir l'ordre de tri de chaque colonne de l'état rapide dont la référence est passée dans *zone*. @@ -47,4 +44,14 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée. #### Voir aussi -[QR GET SORTS](qr-get-sorts.md) \ No newline at end of file +[QR GET SORTS](qr-get-sorts.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 752 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md index 1987ccd15afeb0..4f34a32d2b8f47 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET TEXT PROPERTY** permet de définir les propriétés de texte de la cellule désignée par les paramètres *numColonne* et *numLigne*. @@ -86,4 +83,14 @@ Cette méthode définit plusieurs attributs pour l'intitulé de la première col #### Voir aussi -[QR Get text property](qr-get-text-property.md) \ No newline at end of file +[QR Get text property](qr-get-text-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 759 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md index 727e89c583f006..9272f57b1367dd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note :** Cette commande ne crée pas de sous-total. @@ -97,4 +94,14 @@ Si le paramètre *numRupture* est incorrect, l’erreur -9853 est générée. #### Voir aussi -[QR GET TOTALS DATA](qr-get-totals-data.md) \ No newline at end of file +[QR GET TOTALS DATA](qr-get-totals-data.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 767 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md index d1e225737cfe74..31545cd6a3f827 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QR SET TOTALS SPACING** permet de définir l'espacement ajouté au-dessous d'une ligne de sous-total. Elle ne peut être utilisée qu'avec des états en liste. @@ -39,4 +36,14 @@ Si le paramètre *sousTotal* est incorrect, l’erreur -9852 est générée. #### Voir aussi -[QR GET TOTALS SPACING](qr-get-totals-spacing.md) \ No newline at end of file +[QR GET TOTALS SPACING](qr-get-totals-spacing.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 761 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md index 2ba7ead7e93160..257f1308ab8293 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -La commande **QUERY BY ATTRIBUTE** recherche les enregistrements répondant au(x) critère(s) de recherche spécifié(s) à l'aide des paramètres *champObjet*, *cheminAttribut*, *opRech* et *valeur* et retourne une sélection d'enregistrements de *laTable*. - -**QUERY BY ATTRIBUTE** modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. Si vous omettez le paramètre *laTable*, la commande s'applique à la table par défaut. Si aucune table par défaut n'a été définie, une erreur est générée. +La commande **QUERY BY ATTRIBUTE** recherche les enregistrements répondant au(x) critère(s) de recherche spécifié(s) à l'aide des paramètres *champObjet*, *cheminAttribut*, *opRech* et *valeur* et retourne une sélection d'enregistrements de *laTable*.modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. Si vous omettez le paramètre *laTable*, la commande s'applique à la table par défaut. Si aucune table par défaut n'a été définie, une erreur est générée. Le paramètre optionnel *opConj* est utilisé pour combiner plusieurs appels à **QUERY BY ATTRIBUTE** en cas de recherche multiple. Les opérateurs de conjonction utilisables sont les mêmes que ceux de la commande [QUERY](query.md) : @@ -410,4 +408,16 @@ La variable OK prend la valeur 0 si : [QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) -*Structure des objets de langage 4D* \ No newline at end of file +*Structure des objets de langage 4D* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1331 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md index 1356322c014b2e..f38696f79f22e0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QUERY BY EXAMPLE** effectue la même action que la commande de menu **Recherche par formulaire**... en mode Développement. Cette commande affiche le formulaire entrée courant comme fenêtre de recherche. **QUERY BY EXAMPLE** cherche dans *laTable* les données que l'utilisateur a saisies dans cette fenêtre. Le formulaire doit contenir les champs sur lesquels vous voulez que l'utilisateur puisse effectuer la recherche. La recherche est optimisée : les champs indexés sont automatiquement utilisés. @@ -43,4 +40,17 @@ Si l'utilisateur clique sur le bouton Valider ou appuie sur la touche Entrée, l #### Voir aussi [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 292 | +| Thread safe | ✗ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md index dd5a6628f088f6..d09e51ddc66738 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**QUERY BY FORMULA** effectue une recherche d'enregistrements dans *laTable*. **QUERY BY FORMULA** modifie la sélection courante de *laTable* pour le process courant et fait du premier enregistrement le nouvel enregistrement courant. +**QUERY BY FORMULA** effectue une recherche d'enregistrements dans *laTable*.modifie la sélection courante de *laTable* pour le process courant et fait du premier enregistrement le nouvel enregistrement courant. **QUERY BY FORMULA** et la commande [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) fonctionnent exactement de la même manière, à la différence près que **QUERY BY FORMULA** effectue sa recherche parmi la totalité des enregistrements de la table alors que [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) se cantonne aux enregistrements de la sélection courante. @@ -79,4 +79,15 @@ Dans cet exemple, on utilise une jointure pour rechercher toutes les lignes de f [QUERY](query.md) [QUERY BY SQL](query-by-sql.md) [QUERY SELECTION](query-selection.md) -[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) \ No newline at end of file +[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 48 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md index 8c67e5a931748c..5a7c8c40a93a68 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **QUERY BY SQL** permet de tirer directement parti du moteur SQL intégré de 4D. Elle exécute une requête SELECT simple qui peut être écrite ainsi : @@ -159,4 +156,16 @@ Si le format de la condition de recherche est correct, la variable système OK p #### Voir aussi -[QUERY BY FORMULA](query-by-formula.md) \ No newline at end of file +[QUERY BY FORMULA](query-by-formula.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 942 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md index 985b22f63ce21c..8e9f5af7314444 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md @@ -44,4 +44,16 @@ Vous souhaitez trouver les personnes âgées entre 20 et 30 ans parmi les enregi #### Voir aussi -[QUERY BY ATTRIBUTE](query-by-attribute.md) \ No newline at end of file +[QUERY BY ATTRIBUTE](query-by-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1424 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md index 5c98d46c461080..6d9be2eb812620 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -La commande **QUERY SELECTION BY FORMULA** vous permet de rechercher des enregistrements dans *laTable*. **QUERY SELECTION BY FORMULA** modifie la sélection courante de *laTable* pour le process courant et fait du premier enregistrement le nouvel enregistrement courant. +La commande **QUERY SELECTION BY FORMULA** vous permet de rechercher des enregistrements dans *laTable*.modifie la sélection courante de *laTable* pour le process courant et fait du premier enregistrement le nouvel enregistrement courant. **QUERY SELECTION BY FORMULA** fonctionne de la même manière que [QUERY BY FORMULA](query-by-formula.md). La différence entre ces deux commandes se situe au niveau de la portée de la recherche : @@ -29,4 +29,15 @@ Pour plus d'informations, reportez-vous à la description de la commande [QUERY [QUERY](query.md) [QUERY BY FORMULA](query-by-formula.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 207 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md index 1ae0fa87eaacae..71619ba61b51fb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md @@ -27,4 +27,14 @@ Pour plus d’informations, reportez-vous à la description de la commande [QUER #### Voir aussi -[QUERY WITH ARRAY](query-with-array.md) \ No newline at end of file +[QUERY WITH ARRAY](query-with-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1050 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md index 69e430216c9116..edab85f6bb00d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -**QUERY SELECTION** recherche des enregistrements dans *laTable*. **QUERY SELECTION** modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. +**QUERY SELECTION** recherche des enregistrements dans *laTable*.modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. **QUERY SELECTION** a un fonctionnement et des effets proches de ceux de [QUERY](query.md). La différence entre ces deux commandes est la portée de la recherche : @@ -42,4 +42,16 @@ Vous trouvez donc toutes les sociétés basées à Paris, dont l'activité est b #### Voir aussi -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 341 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md index cae3f054d5dd66..01c3331ca3036f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md @@ -38,4 +38,14 @@ Cet exemple permet de récupérer les enregistrements des clients français et a #### Voir aussi -[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) \ No newline at end of file +[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 644 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md index 09e9bf39e5e53c..5783a54f7b44ce 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -La commande **QUERY** recherche les enregistrements répondant au(x) critère(s) de recherche spécifié(s) dans *critère* et retourne une sélection d'enregistrements de *laTable*. **QUERY** modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. +La commande **QUERY** recherche les enregistrements répondant au(x) critère(s) de recherche spécifié(s) dans *critère* et retourne une sélection d'enregistrements de *laTable*.modifie la sélection courante de *laTable* pour le process courant. Le premier enregistrement de la nouvelle sélection devient l'enregistrement courant. Si vous omettez le paramètre *laTable*, la commande s'applique à la table par défaut. Si aucune table par défaut n'a été définie, une erreur est générée. @@ -307,4 +307,16 @@ La variable OK prend la valeur 0 si : #### Voir aussi -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 277 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md index 787d4f25b606d2..870e716cbb7d12 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md @@ -63,4 +63,13 @@ La méthode projet suivante est associée à la commande **Quitter** du menu **F #### Voir aussi -[On Exit database method](on-exit-database-method.md) \ No newline at end of file +[On Exit database method](on-exit-database-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 291 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md index 1c93ae01f6a0f3..e5393afb534a6e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md @@ -32,3 +32,13 @@ L'exemple suivant assigne une valeur entière aléatoire entre 10 et 30 à la va ```4d  vRésultat:=(Random% 21)+10 ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 100 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md index 64799ad32d8718..dd456b61074b54 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -La fonction **Read only state** est utilisé pour tester si *laTable* est en mode lecture seulement dans le process où la fonction est appelée. **Read only state** retourne Vrai si *laTable* est en lecture seulement, et Faux si *laTable* est en lecture-écriture. +La fonction **Read only state** est utilisé pour tester si *laTable* est en mode lecture seulement dans le process où la fonction est appelée.retourne Vrai si *laTable* est en lecture seulement, et Faux si *laTable* est en lecture-écriture. #### Exemple @@ -35,4 +35,13 @@ L'exemple suivant teste le statut de la table \[Factures\]. Si elle est en lectu [READ ONLY](read-only.md) [READ WRITE](read-write.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 362 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md index 49f05ac3069427..3850c45d3afa03 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md @@ -25,4 +25,13 @@ Vous pouvez utiliser **READ ONLY** lorsqu'il n'est pas utile de modifier les enr [Read only state](read-only-state.md) [READ WRITE](read-write.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 145 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md index a1ca8369621a22..a34f954cc3a67e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md @@ -39,4 +39,14 @@ Si l’exécution de la commande est correcte, la variable système Document con [BLOB TO PICTURE](blob-to-picture.md) *Introduction aux images* [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 678 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md index d8cfe978862411..1b9f18c49421a4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md @@ -29,4 +29,13 @@ Utilisez **READ WRITE** lorsque vous devez modifier un enregistrement et sauvega [READ ONLY](read-only.md) [Read only state](read-only-state.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 146 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md index 3037f32e993134..f21a1552226b74 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md @@ -132,4 +132,13 @@ Après l'exécution de ce code : [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 552 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md index 1f592c222fe516..2cf3800f72509b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md @@ -63,4 +63,14 @@ Notez que l'accès à la variable interprocess *◊vtBuffer* doit être protég [RECEIVE PACKET](receive-packet.md) [Semaphore](semaphore.md) [SET CHANNEL](set-channel.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 172 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md index bad52d2d8255e8..5b5e7abd2ab42f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md @@ -111,4 +111,14 @@ Après un appel à **RECEIVE PACKET**, la variable système OK prend la valeur 1 [SEND PACKET](send-packet.md) [SET DOCUMENT POSITION](set-document-position.md) [SET TIMEOUT](set-timeout.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 104 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md index eb1fb2c6a9caca..53640e94df8d71 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md @@ -151,4 +151,14 @@ La variable système OK prend la valeur 1 si l'enregistrement est correctement r [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 79 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md index 43f8831fe59b1e..e8159965d87389 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md @@ -38,4 +38,14 @@ La variable système OK prend la valeur 1 si la variable est correctement reçue [ON ERR CALL](on-err-call.md) [RECEIVE RECORD](receive-record.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 81 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md index a56a0b4c6347f9..ac68c475d2dcb4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md @@ -43,4 +43,13 @@ L'exemple suivant sauvegarde le numéro d'enregistrement courant puis cherche da [GOTO RECORD](goto-record.md) [Is new record](is-new-record.md) [Selected record number](selected-record-number.md) -[Sequence number](sequence-number.md) \ No newline at end of file +[Sequence number](sequence-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 243 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md index aab67cc1629ecd..8f0f379a60b716 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md @@ -32,4 +32,13 @@ L'exemple suivant propose une technique de boucle couramment utilisée pour se d #### Voir aussi -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 76 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md index a256f3d4d0c81a..4953ae0839beb7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md @@ -32,4 +32,13 @@ L'exemple suivant affiche une boîte de dialogue d'alerte qui indique le pourcen #### Voir aussi [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 195 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md index 9d45b6b6bacbde..deeda21ab33f2d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md @@ -28,4 +28,13 @@ L'exemple suivant affiche une alerte indiquant le nombre d'enregistrements de la #### Voir aussi -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 83 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md index 296abffddadf53..82850fbe8a01b2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **REDRAW WINDOW** provoque une mise à jour du contenu de la fenêtre dont le numéro de référence est passé dans *fenêtre*. @@ -26,4 +23,13 @@ Si vous omettez le paramètre *fenêtre*, **REDRAW WINDOW** s'appliquera à la f #### Voir aussi -[ERASE WINDOW](erase-window.md) \ No newline at end of file +[ERASE WINDOW](erase-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 456 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md index 57a84b7533812b..b863d7cb73df81 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description Lorsque vous modifiez par programmation le contenu d'un champ affiché dans un sous-formulaire, vous devez exécuter la commande **REDRAW** pour vous assurer que le formulaire est correctement mis à jour. @@ -24,4 +21,13 @@ Dans le contexte des list box en mode sélection, l’instruction **REDRAW** app #### Voir aussi -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 174 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md index 856809161edb3a..6892b81b1af645 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **REDUCE RESTORE WINDOW** réduit/agrandit la fenêtre dont le numéro de référence a été transmis dans la fenêtre vers/depuis la barre des tâches sous Windows ou le dock sous macOS. @@ -31,4 +28,13 @@ La commande permet de basculer l'état de la fenêtre : [Is window reduced](is-window-reduced.md) [MAXIMIZE WINDOW](maximize-window.md) -[MINIMIZE WINDOW](minimize-window.md) \ No newline at end of file +[MINIMIZE WINDOW](minimize-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1829 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md index deb14dfb14cdd6..18cdbe661e0746 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md @@ -57,4 +57,15 @@ L'exemple suivant établit des statistiques pour une compétition mondiale parmi [ORDER BY](order-by.md) *Présentation des ensembles* [QUERY](query.md) -[SCAN INDEX](scan-index.md) \ No newline at end of file +[SCAN INDEX](scan-index.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 351 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md index f0d9ad02ee0da3..b1ea4ba87e4b88 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Refresh license** met à jour la licence 4D Server courante. Elle vous connecte à la base cliente de 4D et active automatiquement les nouvelles licences ou les mises à jour (*ex:* suite à l'achat de nouveaux clients). @@ -47,3 +44,13 @@ Vous souhaitez mettre à jour votre licence et recevoir un message à la fin de     ALERT($res.statusText)  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1336 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md index 052e3bb08b4b2c..3778bf34aff144 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **REGENERATE MISSING TABLE** reconstruit la table manquante dont vous avez passé le nom dans le paramètre *nomTable*. Lorsqu’une table manquante est reconstruite, elle devient visible dans l’éditeur de Structure et ses données sont de nouveau accessibles. @@ -61,4 +58,13 @@ Cette méthode regénère toutes les tables manquantes éventuellement présente #### Voir aussi -[GET MISSING TABLE NAMES](get-missing-table-names.md) \ No newline at end of file +[GET MISSING TABLE NAMES](get-missing-table-names.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1126 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md index 3e86891cce8353..aee8d1f0a3034b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **REGISTER CLIENT** “inscrit” un poste client 4D sous le nom *nomClient* auprès de 4D Server, afin de permettre que d’autres clients ou éventuellement 4D Server (par l’intermédiaire de procédures stockées) puissent y exécuter des méthodes à l’aide de la commande [EXECUTE ON CLIENT](execute-on-client.md). Une fois inscrit, un client 4D peut donc exécuter une ou plusieurs méthodes pour le compte d’autres clients. @@ -120,4 +117,14 @@ Si le poste client est correctement inscrit, la variable système OK prend la va [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 648 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md index e93e7fafa151d5..7c9c8faa4b0d7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md @@ -47,4 +47,13 @@ Passez le paramètre *phraseSecrèteCour* ou *cléDonnéesCour*, qui définit la #### Voir aussi -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1638 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md index 96506164923ef3..47821bb2c40964 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md @@ -38,4 +38,13 @@ Vous souhaitez rejeter puis accepter les nouvelles connexions distantes : [DROP REMOTE USER](drop-remote-user.md) [Application info](application-info.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1635 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md index 2a1df0fa594f3b..4be099fb5103fc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **REJECT** accepte deux syntaxes. Dans la première syntaxe, **REJECT** n'a pas de paramètre. Dans ce cas, la commande rejette la totalité de la saisie et force l'utilisateur à rester dans le formulaire. La seconde syntaxe permet de ne refuser que *leChamp* et force l'utilisateur à rester dans le champ. @@ -64,4 +61,13 @@ L'exemple suivant est une partie de la méthode objet d'un champ *\[Employés\]S [ACCEPT](accept.md) [CANCEL](cancel.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 38 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md index 7fd05059359f74..960ecae9e097af 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -La commande **RELATE MANY SELECTION** crée une sélection d'enregistrements dans la table N basée sur la sélection courante de la table 1, et charge le premier enregistrement de la table N comme enregistrement courant. - -**Note :** **RELATE MANY SELECTION** modifie l'enregistrement courant de la table 1. +La commande **RELATE MANY SELECTION** crée une sélection d'enregistrements dans la table N basée sur la sélection courante de la table 1, et charge le premier enregistrement de la table N comme enregistrement courant.**RELATE MANY SELECTION** modifie l'enregistrement courant de la table 1. #### Exemple @@ -34,4 +32,15 @@ Prenons l'exemple d'une base de données comportant une table *\[Factures\]* don [QUERY](query.md) [RELATE ONE](relate-one.md) -[RELATE ONE SELECTION](relate-one-selection.md) \ No newline at end of file +[RELATE ONE SELECTION](relate-one-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 340 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md index 878b0141f2dfcd..901fb91c0d8d6e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md @@ -59,4 +59,14 @@ Par exemple, la méthode suivante effectue une boucle sur chaque enregistrement #### Voir aussi [OLD RELATED MANY](old-related-many.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 262 | +| Thread safe | ✓ | +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md index 62b40288bcee3f..e05221622734e1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md @@ -55,4 +55,15 @@ L'exemple suivant parvient au même résultat que le précédent : *Présentation des ensembles* [QUERY](query.md) [RELATE MANY SELECTION](relate-many-selection.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 349 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md index 1d36996c054431..746b60fdccc7a1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **RELATE ONE** accepte deux syntaxes. @@ -86,4 +83,16 @@ Si la commande a été correctement exécutée et si les enregistrements liés o #### Voir aussi [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 42 | +| Thread safe | ✗ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md index bcf4703d3396cb..c9374d610f1537 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RELEASE MENU** efface de la mémoire le menu dont vous avez passé l’identifiant dans *menu*. Ce menu doit avoir été créé par la commande [Create menu](create-menu.md). La règle est la suivante : à chaque [Create menu](create-menu.md) doit correspondre un [RELEASE MENU](release-menu.md). @@ -56,4 +53,13 @@ Cet exemple illustre les cas d'utilisation de cette commande : #### Voir aussi -[Create menu](create-menu.md) \ No newline at end of file +[Create menu](create-menu.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 978 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md index d231282eb0d31b..b371f117328ecb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md @@ -25,4 +25,13 @@ Il est alors nécessaire de demander le rechargement des données à l'aide de l #### Voir aussi -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1135 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md index ca4e6a47160b89..bfb3830dc819a8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RELOAD PROJECT** recharge les définitions du fichier source (méthodes, formulaires, etc.) à partir du disque, pour exécuter le projet dans l'environnement 4D courant. Elle peut être utilisée uniquement avec des projets 4D exécutés en **mode** **interprété**. L'exécution de la commande est asynchrone. @@ -36,4 +33,13 @@ Lorsque la commande est appelée depuis : #### Voir aussi - \ No newline at end of file + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1739 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md index 2c7f666d4af256..ad16f75792f70b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Voir aussi -[ADD TO SET](add-to-set.md) \ No newline at end of file +[ADD TO SET](add-to-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 561 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md index a0cd815b94bd5d..bac1603108ae49 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **REMOVE PICTURE FROM LIBRARY** supprime de la bibliothèque d’images l’image dont vous avez passé le numéro de référence dans *refImage* ou le nom dans *nomImage*. @@ -50,4 +47,14 @@ L’exemple suivant supprime de la bibliothèque d’images celles dont le nom c [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 567 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md index 01e6c4e690d4d1..8d1a9f320064f9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md @@ -68,4 +68,13 @@ L'exemple suivant illustre le rôle du paramètre \* dans le cadre d'une évalua [Change string](change-string.md) [Delete string](delete-string.md) -[Insert string](insert-string.md) \ No newline at end of file +[Insert string](insert-string.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 233 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md index b8eeb0fb7c77c6..08d4e7e940108b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md @@ -77,4 +77,14 @@ La ligne de code : #### Voir aussi [ALERT](alert.md) -[CONFIRM](confirm.md) \ No newline at end of file +[CONFIRM](confirm.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 163 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md index 45251776f5f0d4..fa5a8cb7eeadc4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RESIZE FORM WINDOW** permet de modifier la taille de la fenêtre du formulaire courant. @@ -49,4 +46,13 @@ Après l'exécution de cette ligne : [FORM GET PROPERTIES](form-get-properties.md) [FORM SET SIZE](form-set-size.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 890 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md index b93047aabb6448..71e4dea3113d88 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md @@ -31,4 +31,14 @@ Si *cheminAlias* désigne bien un alias/raccourci, la variable système OK prend #### Voir aussi -[CREATE ALIAS](create-alias.md) \ No newline at end of file +[CREATE ALIAS](create-alias.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 695 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md index bb4578ff63bce0..14b5db4bd103f2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md @@ -104,4 +104,13 @@ Voici un exemple de pointeur vers un tableau 2D : [Get pointer](get-pointer.md) [Is a variable](is-a-variable.md) [Is nil pointer](is-nil-pointer.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 394 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md index 2bae74cf7ff9d0..941c97c4b276f5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RESOURCE LIST** remplit les tableaux *resNums* et *resNoms* avec les numéros et les noms des ressources dont vous avez passé le type dans *resType*. @@ -71,4 +68,13 @@ L'exemple suivant copie dans la bibliothèque d'images de la base les ressources #### Voir aussi -[RESOURCE TYPE LIST](resource-type-list.md) \ No newline at end of file +[RESOURCE TYPE LIST](resource-type-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 500 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md index 6021b50e628551..2beda015923861 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RESOURCE TYPE LIST** remplit le tableau *resTypes* avec les types des ressources présentes dans le(s) fichier(s) de resources ouvert(s). @@ -83,4 +80,13 @@ Une fois que cette méthode est implémentée dans votre base, vous pouvez écri #### Voir aussi -[RESOURCE LIST](resource-list.md) \ No newline at end of file +[RESOURCE LIST](resource-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 499 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md index 059fab653506a5..2c405ab74b9749 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md @@ -33,4 +33,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [Get last update log path](get-last-update-log-path.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1292 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md index 698d386a29847f..64020f6d6dbaa0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md @@ -35,4 +35,13 @@ Le type et le contenu des paramètres *info1* et *info2* dépendent de la valeur #### Voir aussi -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 889 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md index 95623f92f59f35..20c4058cf74def 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **RESTORE** permet restituer le ou les fichier(s) inclus dans une archive 4D. Cette commande est utile dans le cadre d’interfaces personnalisées pour la gestion des sauvegardes. @@ -35,4 +32,14 @@ La commande **RESTORE** modifie la valeur des variables *OK* et *Document* : si #### Voir aussi [BACKUP](backup.md) -[RESTORE INFO](restore-info.md) \ No newline at end of file +[RESTORE INFO](restore-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 918 | +| Thread safe | ✗ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md index a3cc2e0e8c0c9f..0514db29a11184 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md @@ -26,4 +26,13 @@ La commande **RESUME INDEXES** ne peut être appelée que depuis 4D Server ou un #### Voir aussi [CREATE INDEX](create-index.md) -[PAUSE INDEXES](pause-indexes.md) \ No newline at end of file +[PAUSE INDEXES](pause-indexes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1294 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md index 9fd96206a678f8..d922b5edff2282 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md @@ -24,4 +24,14 @@ Si *process* a été suspendu, référez-vous aux commandes [PAUSE PROCESS](paus #### Voir aussi [DELAY PROCESS](delay-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 320 | +| Thread safe | ✓ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md index 6da6638e4dab5f..fbbeaccb66b167 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md @@ -22,4 +22,13 @@ Pour plus d'informations, veuillez vous référer à la section *Suspendre des t [Active transaction](active-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspendre des transactions* \ No newline at end of file +*Suspendre des transactions* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1386 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md index b311c8bb7a891a..cd737380c274d1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Right click** retourne Vrai si un clic effectué avec le bouton droit de la souris a été effectué. @@ -25,4 +22,13 @@ Cette commande doit être appelée uniquement dans le cadre de l’événement f #### Voir aussi [Contextual click](contextual-click.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 712 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md index 471eb04f0af493..a717eaaaa804ec 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md @@ -36,4 +36,13 @@ L'exemple suivant illustre la manière dont Arrondi fonctionne dans différents #### Voir aussi -[Trunc](trunc.md) \ No newline at end of file +[Trunc](trunc.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 94 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md index 1be6b57db7809d..6e8644023f11a0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SAVE LIST** sauvegarde la liste dont vous avez passé le numéro de référence dans *liste*, sous le nom que vous avez passé dans *nomListe*. La liste est stockée en tant qu'énumération dans l'éditeur d'énumérations du mode Développement. @@ -27,4 +24,13 @@ Si une énumération de même nom existe déjà, son contenu est remplacé. #### Voir aussi -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 384 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md index 7362505e17d170..68acbdb0ef008b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md @@ -47,4 +47,13 @@ L'exemple suivant est une partie d'une méthode récupérant des enregistrements [CREATE RECORD](create-record.md) [Locked](locked.md) -*Présentation des triggers* \ No newline at end of file +*Présentation des triggers* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 53 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md index 9d0f48fb53dd73..99cd2ff693a2aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [CREATE RELATED ONE](create-related-one.md) [Locked](locked.md) *Présentation des triggers* -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 43 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md index 5ed840a1d28eaf..f535a608c4dd9b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md @@ -40,4 +40,14 @@ Si l'utilisateur clique sur le bouton Annuler dans la boîte de dialogue standar #### Voir aussi -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 184 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md index 1414f7236fbe7d..2acf0e1625f17a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md @@ -47,4 +47,14 @@ Si l'opération s'est correctement déroulée, la variable OK prend la valeur 1, [DOCUMENT TO BLOB](document-to-blob.md) [LOAD VARIABLES](load-variables.md) [VARIABLE TO BLOB](variable-to-blob.md) -*Variables système* \ No newline at end of file +*Variables système* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 75 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md index 677fa1995be494..74b26fda988586 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md @@ -46,4 +46,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) \ No newline at end of file +[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 857 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md index 1a83e616b3371c..47abc0dc0ba4e2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md @@ -73,4 +73,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[SAX GET XML CDATA](sax-get-xml-cdata.md) \ No newline at end of file +[SAX GET XML CDATA](sax-get-xml-cdata.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 856 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md index bb7a52ee645006..6dc738eef9ed1e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md @@ -45,4 +45,14 @@ En cas d’erreur, la commande retourne une erreur qui peut être interceptée v #### Voir aussi -[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) \ No newline at end of file +[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 852 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md index ed0149c5532772..4cfd26e90ca4cd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md @@ -45,4 +45,14 @@ En cas d’erreur, la commande retourne une erreur qui peut être interceptée v #### Voir aussi -[SAX ADD XML COMMENT](sax-add-xml-comment.md) \ No newline at end of file +[SAX ADD XML COMMENT](sax-add-xml-comment.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 851 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md index 912e967036b058..65af31a47307e7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md @@ -50,4 +50,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [SAX GET XML ELEMENT VALUE](sax-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 855 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md index 3479903d747b66..d06d9bda3eff40 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md @@ -36,4 +36,13 @@ Si le dernier élément ouvert est **, l’instruction suivante : #### Voir aussi [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 854 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md index 6a87f1a30fc895..94db0cf722d9fd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md @@ -48,4 +48,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [SAX ADD XML CDATA](sax-add-xml-cdata.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 878 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md index 9ce12ab702895f..f12581ad1742c6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md @@ -25,4 +25,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [SAX ADD XML COMMENT](sax-add-xml-comment.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 874 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md index 6facf1c056fd26..53e4661c880228 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md @@ -29,4 +29,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [SAX Get XML node](sax-get-xml-node.md) -[SAX SET XML DECLARATION](sax-set-xml-declaration.md) \ No newline at end of file +[SAX SET XML DECLARATION](sax-set-xml-declaration.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 873 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md index 63ebf2e555cfa2..74e19408630b7a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md @@ -43,4 +43,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 877 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md index 9db3c87cb15f51..99980349283971 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md @@ -56,4 +56,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 876 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md index 4f8f17c09e0803..33e501c8d802ff 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md @@ -47,4 +47,14 @@ Si la commande a été exécutée correctement, la variable système OK prend la #### Voir aussi -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 879 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md index 295b5b33d68bb6..104099eebf925a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md @@ -55,3 +55,14 @@ Exemple de traitement des événements : #### Variables et ensembles système Si la commande a été exécutée correctement, la variable système OK prend la valeur 1, sinon elle prend la valeur 0 et une erreur est générée. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 860 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md index 21931a96296b08..d0be67e53dccbe 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md @@ -39,4 +39,13 @@ L’instruction suivante retournera “PI” dans *vNom* et “TextProcess” da #### Voir aussi [SAX ADD PROCESSING INSTRUCTION](sax-add-processing-instruction.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 875 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md index 61aa8a4c24f8c6..01d533a575c4c3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md @@ -52,4 +52,13 @@ La méthode suivante : [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 921 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md index c7dc267bfd9c29..1a6c6ba8f3d48a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md @@ -51,4 +51,14 @@ Si un caractère invalide est passé dans *balise*, une erreur est générée. #### Voir aussi [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 853 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md index 6e10ad1611d1cd..f89c34c6d7fe79 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md @@ -43,4 +43,13 @@ Le code suivant : #### Voir aussi -[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) \ No newline at end of file +[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 858 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md index 6bac540e432825..b045c6a597f899 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md @@ -49,4 +49,15 @@ L'exemple suivant envoie des lettres aux 50 plus mauvais clients puis aux 50 mei [ORDER BY](order-by.md) [QUERY](query.md) -[REDUCE SELECTION](reduce-selection.md) \ No newline at end of file +[REDUCE SELECTION](reduce-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 350 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md index 62296cc17b5f2e..deb6c3dac84f16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SCREEN COORDINATES** retourne dans les paramètres *gauche*, *haut*, *droite* et *bas* les coordonnées de l'écran spécifié dans le paramètre *idEcran*. @@ -47,4 +44,13 @@ Les images suivantes illustrent les différences entre la zone de l'écran et la [Count screens](count-screens.md) [Menu bar screen](menu-bar-screen.md) -[SCREEN DEPTH](screen-depth.md) \ No newline at end of file +[SCREEN DEPTH](screen-depth.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 438 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md index 5e27b35e6b1c63..bc0115cd32920f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SCREEN DEPTH** retourne dans les paramètres *profondeur* et *couleur* les caractéristiques du moniteur utilisé. @@ -57,3 +54,13 @@ Votre application affiche de nombreux graphiques en couleurs. Vous pouvez écrir #### Voir aussi [Count screens](count-screens.md) + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 439 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md index aa5b1575d1b823..14dcab8c367043 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description Sous Windows, **Screen height** retourne la hauteur de la fenêtre d'application 4D (fenêtre MDI). Si vous passez le paramètre optionnel *\**, **Screen height** retourne la hauteur de l'écran. @@ -26,4 +23,13 @@ Sous Mac OS, **Screen height** retourne la hauteur de l'écran principal, c'est- #### Voir aussi [SCREEN COORDINATES](screen-coordinates.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 188 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md index f75bdf52051a4b..af116df51abdcd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description Sous Windows, **Screen width** retourne la largeur de la fenêtre d'application 4D (fenêtre MDI). Si vous passez le paramètre optionnel \*, **Screen width** retourne la largeur de l'écran. @@ -26,4 +23,13 @@ Sous Mac OS, **Screen width** retourne la largeur de l'écran principal, c'est- #### Voir aussi [SCREEN COORDINATES](screen-coordinates.md) -[Screen height](screen-height.md) \ No newline at end of file +[Screen height](screen-height.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 187 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md index dfd2d84c4f6366..6cf51d24500c3c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md @@ -95,4 +95,14 @@ Si aucun fichier n’a été sélectionné (par exemple si l’utilisateur a cli #### Voir aussi [Open document](open-document.md) -[Select folder](select-folder.md) \ No newline at end of file +[Select folder](select-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 905 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md index d1f7423b941f16..63d54595454c84 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md @@ -82,4 +82,14 @@ L’exemple suivant permet de sélectionner le dossier dans lequel toutes les im [CREATE FOLDER](create-folder.md) [FOLDER LIST](folder-list.md) -[Select document](select-document.md) \ No newline at end of file +[Select document](select-document.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 670 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md index 54822f50cbd012..67b99f5ea8af2f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SELECT LIST ITEMS BY POSITION** sélectionne le ou les élément(s) dont vous avez passé la position dans *positionElém* et, facultativement, dans *tabPositions*, à l'intérieur de la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -73,4 +70,13 @@ Après l'exécution des lignes de code suivantes : [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 381 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md index b46ffd751df9b8..9ce438dca53a4d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SELECT LIST ITEMS BY REFERENCE** sélectionne le ou les élément(s) dont vous avez passé le numéro de référence dans *réfElément* et, facultativement, dans *tabRéfs*, parmi la liste dont vous avez passé la référence dans *liste*. @@ -51,4 +48,13 @@ En supposant que *hList* est une liste dont les éléments ont des numéros de r [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 630 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md index d88c45310a7a36..212319ce21e820 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SELECT LOG FILE** crée ou ferme le fichier d'historique de la base de données, suivant la valeur que vous passez dans *historique*. @@ -38,4 +35,14 @@ L'erreur -4447 est générée si l'opération ne peut pas être réalisée car l #### Voir aussi -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 345 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md index 90f2073c4f448c..7101d3346a9643 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Select RGB Color** affiche la fenêtre système de sélection de couleur et retourne la valeur RVB de la couleur sélectionnée par l’utilisateur. @@ -41,4 +38,15 @@ La prise en compte de la validation de la boîte de dialogue diffère selon la p #### Voir aussi -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 956 | +| Thread safe | ✗ | +| Modifie les variables | OK | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md index 33999cf1f82d82..aa123a846f29f2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **Selected list items** retourne la **position** ou la **référence** de l'élément sélectionné dans la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -85,4 +82,13 @@ Voici la liste *hList* telle qu'elle apparaît en mode Application : #### Voir aussi [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 379 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md index c6fc6789a55d94..3aefed4fb2c6c0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md @@ -37,4 +37,13 @@ L'exemple suivant stocke le numéro de l'enregistrement courant de la sélection *A propos des numéros d'enregistrements* [GOTO SELECTED RECORD](goto-selected-record.md) -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 246 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md index de3ea37448b25b..c2bbf46fc431d5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md @@ -105,4 +105,13 @@ Utilisation des 50 premiers enregistrements courants de la table \[Factures\] po [ON ERR CALL](on-err-call.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 368 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md index a643aaf2d3d30e..70e71dc849d623 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md @@ -19,9 +19,7 @@ displayed_sidebar: docs #### Description -La commande **SELECTION TO ARRAY** crée un ou plusieurs tableau(x) et y copie les valeurs des champ(s) ou les numéros d'enregistrement(s) de la sélection courante. - -**SELECTION TO ARRAY** s'applique à la sélection courante de la table désignée par le premier paramètre (nom de table ou nom de champ). La commande peut réaliser les opérations suivantes : +La commande **SELECTION TO ARRAY** crée un ou plusieurs tableau(x) et y copie les valeurs des champ(s) ou les numéros d'enregistrement(s) de la sélection courante.s'applique à la sélection courante de la table désignée par le premier paramètre (nom de table ou nom de champ). La commande peut réaliser les opérations suivantes : * Charger les valeurs d'un ou plusieurs champs, * Charger les numéros des enregistrements de la table, à l'aide de la syntaxe *\[table\];tableau* @@ -78,4 +76,13 @@ Le même exemple peut être écrit : [MULTI SORT ARRAY](multi-sort-array.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 260 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md index e6ac630af847b1..33627a20fae6ef 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md @@ -88,4 +88,13 @@ Vous utilisez la syntaxe avec *template* afin d'exporter des champs de différen #### Voir aussi -[JSON TO SELECTION](json-to-selection.md) \ No newline at end of file +[JSON TO SELECTION](json-to-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1234 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md index 10d2f6338378c1..76207b80bf855c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Note de compatibilité Cette commande est conservée pour des raisons de compatibilité uniquement. A compter de la version 12 de 4D, il est conseillé d'utiliser la commande [OBJECT Get pointer](object-get-pointer.md). @@ -40,4 +37,13 @@ Référez-vous à l'exemple de la commande [RESOLVE POINTER](resolve-pointer.md) [OBJECT Get pointer](object-get-pointer.md) [RESOLVE POINTER](resolve-pointer.md) -[This](this.md) \ No newline at end of file +[This](this.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 308 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md index 0703c7fa43cd20..8197f3d0db8901 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md @@ -147,4 +147,13 @@ Syntaxe : [CLEAR SEMAPHORE](clear-semaphore.md) *Sémaphores et signaux* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 143 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md index 7d04e1dca9571b..dfb31191d977c5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md @@ -51,4 +51,13 @@ Vous souhaitez envoyer un message à tous les utilisateurs, puis à un utilisate #### Voir aussi -[DROP REMOTE USER](drop-remote-user.md) \ No newline at end of file +[DROP REMOTE USER](drop-remote-user.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1632 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md index 56c7d4fb9e73f0..a4d35b0f176a34 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md @@ -80,4 +80,13 @@ Cet exemple illustre l’envoi et la récupération de caractères étendus via [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 103 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md index 3b040578e422ed..fe73eb0e2c2825 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md @@ -33,4 +33,13 @@ Reportez-vous à l'exemple de la commande [RECEIVE RECORD](receive-record.md). [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 78 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md index ea1a75a663e447..3aa230f62634cb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md @@ -31,4 +31,13 @@ Reportez-vous à l'exemple de la commande [RECEIVE RECORD](receive-record.md). [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 80 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md index 29c276cbb7c34e..bb543c34a8af3a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md @@ -55,4 +55,13 @@ L'exemple suivant fait partie d'une méthode formulaire. Ces lignes de code test *A propos des numéros d'enregistrements* [Record number](record-number.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 244 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md index 6ec77be2759035..6e234fcda046ac 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md @@ -51,4 +51,13 @@ Cette méthode modifie la valeur d'une propriété "settings" stockée dans l'ob #### Voir aussi -[Process activity](../commands/process-activity.md) \ No newline at end of file +[Process activity](../commands/process-activity.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1839 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md index 28f672bbd78947..5c51fc2c142e64 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET ABOUT** remplace la ligne de menu **A propos de 4D...** du menu **Aide** (sous Windows) ou du menu **application** (Mac OS X) par *libelléLigne*. @@ -45,4 +42,13 @@ L'exemple suivant réinitialise la commande de menu d'A propos de 4D : #### Voir aussi -[SET HELP MENU](set-help-menu.md) \ No newline at end of file +[SET HELP MENU](set-help-menu.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 316 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md index 685fd0168a5758..ba93b6d2fda3d0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET APPLICATION COLOR SCHEME** définit le schéma de couleurs à utiliser au niveau de l'application pour la session courante. Ce schéma sera appliqué aux formulaires qui ne déclarent pas déjà un schéma spécifique (un schéma de couleurs défini au niveau du formulaire est prioritaire sur le niveau de l'application). @@ -38,4 +35,13 @@ displayed_sidebar: docs #### Voir aussi [FORM Get color scheme](form-get-color-scheme.md) -[Get application color scheme](get-application-color-scheme.md) \ No newline at end of file +[Get application color scheme](get-application-color-scheme.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1762 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md index b837e85cc41db2..dc7cd18130a408 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md @@ -37,4 +37,13 @@ Désactivation globale des assertions : [ASSERT](assert.md) [Asserted](asserted.md) -[Get assert enabled](get-assert-enabled.md) \ No newline at end of file +[Get assert enabled](get-assert-enabled.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1131 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md index d6fdda773c789a..2e499edb070a68 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md @@ -43,4 +43,13 @@ L'exemple suivant rend tous les liens N vers 1 automatiques et rétablit en manu *Présentation des liens* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 310 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md index 4422a258552d8f..359c84ff74ea3f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md @@ -49,4 +49,13 @@ L'exemple suivant crée un BLOB de 16 Ko et remplit chaque octet avec la valeur #### Voir aussi -[BLOB size](blob-size.md) \ No newline at end of file +[BLOB size](blob-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 606 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md index 551bacc65f2eb9..a3aa91f2ae16c4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md @@ -47,4 +47,13 @@ Dans la , vous souhaitez fixer une priorité très haute pour les "blobs" de la #### Voir aussi [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) -[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) \ No newline at end of file +[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1425 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md index 6b639098d9bb92..ea49c7587bb242 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md @@ -38,4 +38,13 @@ Vous voulez ajouter 100 Mo à la taille du cache de votre base. Vous pouvez écr #### Voir aussi -[Get cache size](get-cache-size.md) \ No newline at end of file +[Get cache size](get-cache-size.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1399 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md index 608eb4f88e73bc..579037d955a572 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md @@ -170,4 +170,14 @@ Reportez-vous aux exemples des commandes [RECEIVE BUFFER](receive-buffer.md), [S [SEND PACKET](send-packet.md) [SEND RECORD](send-record.md) [SEND VARIABLE](send-variable.md) -[SET TIMEOUT](set-timeout.md) \ No newline at end of file +[SET TIMEOUT](set-timeout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 77 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md index b04d086802c044..e0ba4c7565e3f6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET CURRENT PRINTER** permet de désigner l’imprimante à utiliser pour les impressions avec l’application 4D courante. @@ -66,4 +63,14 @@ Création d'un document PDF sous Windows : #### Voir aussi [Get current printer](get-current-printer.md) -[PRINTERS LIST](printers-list.md) \ No newline at end of file +[PRINTERS LIST](printers-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 787 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md index 4815cba852eb36..2acd7f0407b351 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET CURSOR** remplace le pointeur (graphique) de la souris par le pointeur système dont vous avez passé le numéro d'ID dans le paramètre *curseur*. @@ -62,3 +59,13 @@ Vous souhaitez que le curseur se transforme en ![](../assets/en/commands/pict247     SET CURSOR(9019)  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 469 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md index 7835b6fb9a76b3..8fd4f915d877da 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET DATABASE LOCALIZATION** permet de modifier la langue courante de la base pour la session courante. @@ -71,4 +68,14 @@ L’interface de votre application utilise la chaîne statique ":xliff:shopping" #### Voir aussi -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1104 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md index 4a0496baf219bd..22d35ac3028a82 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET DATABASE PARAMETER** permet de modifier divers paramètres internes de la base de données 4D. @@ -149,4 +146,13 @@ Vous souhaitez exporter des données en JSON contenant une date 4D convertie. A [Get database parameter](get-database-parameter.md) [LOG EVENT](log-event.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 642 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md index 7480b782db4361..630395cddb0d2f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md @@ -61,3 +61,13 @@ Notez que cette commande n'affecte que l'interprétation des dates lorsque les a * Si vous saisissez la date 25/01/2007, 4D considère que vous voulez indiquer le 25 janvier 2007 Cette commande affecte uniquement la saisie des données. Elle n'influe pas sur le stockage des données, les calculs, etc. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 392 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md index c63183188365cb..831a79009ab03e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -Cette commande ne fonctionne qu'avec un document déjà ouvert, dont vous avez passé le numéro de référence dans le paramètre *docRef*. - -**SET DOCUMENT POSITION** définit la position que vous passez dans *offset* comme étant celle à laquelle la prochaine lecture ([RECEIVE PACKET](receive-packet.md)) ou écriture ([SEND PACKET](send-packet.md)) aura lieu. +Cette commande ne fonctionne qu'avec un document déjà ouvert, dont vous avez passé le numéro de référence dans le paramètre *docRef*.définit la position que vous passez dans *offset* comme étant celle à laquelle la prochaine lecture ([RECEIVE PACKET](receive-packet.md)) ou écriture ([SEND PACKET](send-packet.md)) aura lieu. Si vous omettez le paramètre optionnel *ancre*, la position est définie par rapport au début du document. Sinon, vous pouvez passer dans le paramètre *ancre* une des valeurs listées ci-dessus. @@ -29,4 +27,13 @@ En fonction de l'*ancre* définie, vous pouvez passer des valeurs positives ou n [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 482 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md index 6211ff5209679e..4478dfee465df2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md @@ -34,4 +34,14 @@ L'heure et la date de création et de dernière modification sont gérées par l #### Voir aussi -[GET DOCUMENT PROPERTIES](get-document-properties.md) \ No newline at end of file +[GET DOCUMENT PROPERTIES](get-document-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 478 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md index 9e89ac04c4503f..547e76bddb50a9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md @@ -26,4 +26,13 @@ Sous Mac OS, c'est la taille de la data fork du document qui est modifiée. [Get document position](get-document-position.md) [Get document size](get-document-size.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 480 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md index 277a7d6196edd9..048b4fd7c5e455 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET DRAG ICON** vous permet d’associer l’image *icône* au curseur lors des glisser-déposer gérés par programmation. @@ -59,4 +56,13 @@ A noter que vous pouvez modifier la position du curseur par rapport à l’image #### Voir aussi -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1272 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md index a5a24b5f4b2e44..e50b55537aa1ac 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md @@ -41,4 +41,13 @@ Reportez-vous aux exemples de la commande [LAUNCH EXTERNAL PROCESS](launch-exter #### Voir aussi -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 812 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md index 63f3493e1e78a4..195565bd4de4b6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md @@ -57,4 +57,13 @@ Vous souhaitez enregistrer dans le champ image un fichier existant, stocké à l #### Voir aussi [Get external data path](get-external-data-path.md) -[RELOAD EXTERNAL DATA](reload-external-data.md) \ No newline at end of file +[RELOAD EXTERNAL DATA](reload-external-data.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1134 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md index 4a84a3a9e9e302..57d09a8ad936c2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md @@ -53,4 +53,14 @@ Le code suivant vous permet uniquement de configurer ls liens utiles comme autom [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 919 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md index ad8b813832ab13..fee1a5c6ef26bf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **SET FIELD TITLES** vous permet de masquer, renommer et réordonner les champs d'une table de votre base lorsqu'ils apparaissent dans les éditeurs standard de 4D en mode Application (lorsque le mode de lancement est le mode **Application**, ou après avoir sélectionné "**Tester l'application**" dans le menu **Exécution**). @@ -59,4 +56,13 @@ Reportez-vous à l'exemple de la commande [SET TABLE TITLES](set-table-titles.md [GET FIELD TITLES](get-field-titles.md) [Last field number](last-field-number.md) [Parse formula](parse-formula.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 602 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md index 3975eb287d08ee..32af5bf8a13557 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md @@ -27,4 +27,13 @@ La valeur NULL est exploitée par le moteur SQL de 4D. Pour plus d’information #### Voir aussi [Is field value Null](is-field-value-null.md) -[Null](null.md) \ No newline at end of file +[Null](null.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 965 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md index 0d705efa80ae3a..44a73dda26b856 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET FILE TO PASTEBOARD** ajoute dans le conteneur de données le chemin d’accès complet du fichier passé dans le paramètre *fichier*. Cette commande permet de mettre en place des interfaces autorisant le glisser-déposer d’objets 4D vers des fichiers sur le bureau par exemple. @@ -29,4 +26,13 @@ La commande admet l’étoile *\** en paramètre optionnel. Par défaut, lorsque #### Voir aussi -[Get file from pasteboard](get-file-from-pasteboard.md) \ No newline at end of file +[Get file from pasteboard](get-file-from-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 975 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md index 149dd229f3567f..eb08f6166f2786 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md @@ -42,4 +42,14 @@ Vous souhaitez ajouter l'utilisateur courant aux groupes "admin" et "plugins" da [Get group access](get-group-access.md) [Get plugin access](get-plugin-access.md) [SET PLUGIN ACCESS](set-plugin-access.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1737 | +| Thread safe | ✓ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md index 49bcf2dc0e3251..9aabd5809fcf2c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Set group properties** vous permet de modifier et de mettre à jour les propriétés d'un groupe existant dont vous passez le numéro de référence unique dans *réfGroupe*, ou d'ajouter un nouveau groupe. @@ -58,4 +55,14 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **Set group [GET GROUP LIST](get-group-list.md) [GET GROUP PROPERTIES](get-group-properties.md) -[GET USER LIST](get-user-list.md) \ No newline at end of file +[GET USER LIST](get-user-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 614 | +| Thread safe | ✗ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md index b74ff98571354d..5d6cc080efb8bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET HELP MENU** vous permet de remplacer le menu **Aide** par défaut de 4D par la collection d'éléments de menu MenuCol dans le mode d'application. @@ -61,4 +58,13 @@ Vous souhaitez personnaliser le menu **Aide** de votre application : #### Voir aussi -[SET ABOUT](set-about.md) \ No newline at end of file +[SET ABOUT](set-about.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1801 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md index 077273870629fe..cc716ebdac45a2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md @@ -47,4 +47,13 @@ Dans la , vous souhaitez définir une priorité très haute pour les index du ch #### Voir aussi [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) -[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) \ No newline at end of file +[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1401 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md index efed56f0e80426..eb322bd7b539c8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md @@ -87,4 +87,13 @@ Création d'un index de mots-clés : [DELETE INDEX](delete-index.md) [GET FIELD PROPERTIES](get-field-properties.md) [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 344 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md index 399e5eacdf25c3..ae1782215208d5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST ITEM FONT** modifie la police de caractères de l’élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d’objet dans *liste*. @@ -43,4 +40,13 @@ Appliquer la police Times à l’élément courant de la liste : [Get list item font](get-list-item-font.md) [OBJECT SET FONT](object-set-font.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 953 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md index e033ade53b6052..65f054993d79aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST ITEM ICON** permet de modifier l’icône associée à l’élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d’objet dans *liste*. @@ -47,4 +44,13 @@ Affectation d'une même image à deux éléments différents. Ce code est optimi [SET LIST ITEM](set-list-item.md) [SET LIST ITEM FONT](set-list-item-font.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 950 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md index 2eb7e457eadfde..2b5d7919acae7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST ITEM PARAMETER** permet de modifier le paramètre *sélecteur* pour l’élément *réfElément* de la liste hiérarchique dont vous avez passé la référence ou le nom d’objet dans le paramètre *liste*. @@ -62,4 +59,13 @@ Vous souhaitez définir comme énumération d'un pop up menu hiérarchique une l [Action info](action-info.md) [GET LIST ITEM PARAMETER](get-list-item-parameter.md) [GET LIST ITEM PARAMETER ARRAYS](get-list-item-parameter-arrays.md) -[INSERT IN LIST](insert-in-list.md) \ No newline at end of file +[INSERT IN LIST](insert-in-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 986 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md index 9ec0a0e4adea0a..238f5a28492a66 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST ITEM PROPERTIES** modifie l'élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -79,4 +76,13 @@ L’exemple suivant passe le texte de l’élément courant de *liste* en gras e [GET LIST ITEM PROPERTIES](get-list-item-properties.md) *Listes hiérarchiques* [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 386 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md index cda0ef2153c394..2b668892f29ca3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST ITEM** modifie l'élément désigné par le paramètre *réfElément* de la liste dont vous avez passé le numéro de référence ou le nom d'objet dans *liste*. @@ -77,4 +74,13 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md). [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [SET LIST ITEM FONT](set-list-item-font.md) [SET LIST ITEM ICON](set-list-item-icon.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 385 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md index 5ed46b3cf429cc..0dfc6da872deda 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET LIST PROPERTIES** définit la hauteur de ligne et le fonctionnement de la liste hiérarchique dont la référence est passée dans le paramètre *liste*. @@ -61,4 +58,13 @@ Vous souhaitez interdire le déploiement/contraction sur double-clic. Vous pouve [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [GET LIST PROPERTIES](get-list-properties.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 387 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md index 8b725b10822caa..603e486cca71c8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MACRO PARAMETER** insère le texte *paramTexte* dans la méthode depuis laquelle elle a été appelée. @@ -58,4 +55,13 @@ Cette macro construit un nouveau texte qui sera retourné à la méthode appelan #### Voir aussi -[GET MACRO PARAMETER](get-macro-parameter.md) \ No newline at end of file +[GET MACRO PARAMETER](get-macro-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 998 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md index 5476f18deec694..bff09406a766d5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU BAR** remplace la barre de menus courante par la barre de menus *barre*, pour le process en cours uniquement. Vous pouvez passer dans le paramètre *barre* soit le numéro soit le nom de la nouvelle barre. Vous pouvez également passer une référence unique de menu (type [RefMenu](# "Référence unique de menu (16 caractères alphanumériques)"), chaîne de 16 caractères). Lorsque vous travaillez avec des références, les menus peuvent être utilisés comme barres de menus et inversement (cf. section *Gestion des menus*). @@ -117,4 +114,13 @@ Dans cet exemple complet, nous allons créer par programmation une barre comport #### Voir aussi -*Gestion des menus* \ No newline at end of file +*Gestion des menus* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 67 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md index 6ee37c1d717866..9858df28ab4018 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM ICON** permet de modifier l’icône associée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -46,4 +43,13 @@ Utilisation d'une image se trouvant dans le dossier Resources de la base : #### Voir aussi -[GET MENU ITEM ICON](get-menu-item-icon.md) \ No newline at end of file +[GET MENU ITEM ICON](get-menu-item-icon.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 984 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md index de8a52b1a36993..a0b6a7db9e1714 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM MARK** remplace la marque (ou "coche") de la ligne de menu dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu* par le premier caractère de la chaîne que vous avez passée dans *marque* (sous Mac OS) ou par la coche standard (sous Windows). Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -39,4 +36,14 @@ Reportez-vous à l'exemple de la commande [Get menu item mark](get-menu-item-mar #### Voir aussi -[Get menu item mark](get-menu-item-mark.md) \ No newline at end of file +[Get menu item mark](get-menu-item-mark.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 208 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md index 72340d6f38dee8..add9cb5200f185 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM METHOD** permet de modifier la méthode projet 4D associée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -36,4 +33,13 @@ Reportez-vous aux exemple de la commande [SET MENU BAR](set-menu-bar.md). #### Voir aussi -[Get menu item method](get-menu-item-method.md) \ No newline at end of file +[Get menu item method](get-menu-item-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 982 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md index d870dbcd52767a..b8ffc26b1d155e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM PARAMETER** vous permet d’associer une chaîne de caractères personnalisée à la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -43,4 +40,13 @@ Ce code permet de proposer un menu comportant le libellé des fenêtres ouvertes [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[Get selected menu item parameter](get-selected-menu-item-parameter.md) \ No newline at end of file +[Get selected menu item parameter](get-selected-menu-item-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1004 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md index 3f9556ddeac4cb..ae58f06e338ba4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM PROPERTY** permet de fixer la *valeur* de la *propriété* pour la ligne de menu désignée par les paramètres *menu* et *ligneMenu*. @@ -52,4 +49,13 @@ Pour plus d’informations sur les propriétés standard des lignes de menus, re #### Voir aussi [Dynamic pop up menu](dynamic-pop-up-menu.md) -[GET MENU ITEM PROPERTY](get-menu-item-property.md) \ No newline at end of file +[GET MENU ITEM PROPERTY](get-menu-item-property.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 973 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md index b5c5781fa64cf3..6c7d7bb547b1c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM SHORTCUT** remplace la touche du raccourci clavier associé à la ligne de menu désignée par *menu* et *ligneMenu*, par le caractère dont vous avez passé le code de caractère ou le texte dans *touche*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. La touche définie sera combinée à la touche **Ctrl** (Windows) ou **Commande** (Macintosh) pour définir le nouveau raccourci clavier. @@ -81,4 +78,14 @@ Définition du raccourci F4 pour l'élément de menu "Fermer" : #### Voir aussi [Get menu item key](get-menu-item-key.md) -[Get menu item modifiers](get-menu-item-modifiers.md) \ No newline at end of file +[Get menu item modifiers](get-menu-item-modifiers.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 423 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md index e9963475750584..01cebc99cb47f7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM STYLE** remplace le style de police de la ligne de menu, dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*, par le style de police que vous avez passé dans *styleLigne*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -38,4 +35,14 @@ Vous pouvez définir le style de l'élément dans le paramètre *styleLigne*. Vo #### Voir aussi -[Get menu item style](get-menu-item-style.md) \ No newline at end of file +[Get menu item style](get-menu-item-style.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 425 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md index 257d7b2e875a13..6375f3e400b700 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET MENU ITEM** remplace le libellé de la ligne de menu, dont vous avez passé le numéro ou la référence de menu et le numéro de ligne dans *menu* et *ligneMenu*, par le libellé que vous avez passé dans *texteLigne*. Vous pouvez passer -1 dans *ligneMenu* afin de désigner la dernière ligne ajoutée au *menu*. @@ -34,4 +31,14 @@ Si vous omettez le paramètre *process*, **SET MENU ITEM** s'applique à la barr [APPEND MENU ITEM](append-menu-item.md) [Get menu item](get-menu-item.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 348 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md index be748fceeb803d..f5e7edc083dfae 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md @@ -25,4 +25,13 @@ Le nom par défaut est utilisé comme nom de fichier en cas d’exportation de l #### Voir aussi [Get picture file name](get-picture-file-name.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1172 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md index d3a11249721506..e4dc71e93367d4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md @@ -79,4 +79,14 @@ Lorsque toutes les métadonnées sont manipulées via une référence d’élém [GET PICTURE KEYWORDS](get-picture-keywords.md) [GET PICTURE METADATA](get-picture-metadata.md) *Noms des métadonnées images* -*Valeurs des métadonnées images* \ No newline at end of file +*Valeurs des métadonnées images* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1121 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md index 3d7aac847634d2..7ff67c7bd5a36d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PICTURE TO LIBRARY** crée une nouvelle image ou remplace une image existante dans la bibliothèque d’images. @@ -94,4 +91,15 @@ S'il n'y a pas assez de mémoire pour retourner l’image, l'erreur –108 est g [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) \ No newline at end of file +[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 566 | +| Thread safe | ✗ | +| Modifie les variables | error | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md index ad85062f8132d3..72db2643c9fac7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **SET PICTURE TO PASTEBOARD** place dans le conteneur de données une copie de l'image que vous avez passée dans *image*. Les données éventuellement présentes dans le conteneur sont préalablement effacées. @@ -48,4 +45,14 @@ Si une copie de l'image est correctement collée dans le conteneur, la variable #### Voir aussi [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) \ No newline at end of file +[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 521 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md index f45b2f4b7b2443..018f640ea98393 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PLUGIN ACCESS** permet de spécifier par programmation le groupe d’utilisateurs autorisé à utiliser chaque plug-in “sérialisé” installé dans la base. Cette définition permet de gérer la répartition des licences des plug-ins. @@ -45,4 +42,13 @@ Passez dans le paramètre *groupe* le nom du groupe dont les utilisateurs seront [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 845 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md index d99a78c88efad7..ea6f37e2048b8f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PRINT MARKER** permet de définir la position d’un taquet au moment de l’impression. Combinée aux commandes [Get print marker](get-print-marker.md), [OBJECT MOVE](object-move.md) ou [Print form](print-form.md), cette commande permet d’ajuster la taille des zones d’impression. @@ -182,4 +179,13 @@ La méthode du formulaire Print\_List3 est la suivante : [PAGE BREAK](page-break.md) [Print form](print-form.md) [PRINT RECORD](print-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 709 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md index af4e3450987e75..cc03decaa12357 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PRINT OPTION** permet de modifier par programmation la valeur d’une option d’impression. Chaque option définie à l’aide de cette commande est appliquée aux [paramètres courants de l'impression 4D](https://developer.4d.com/docs/fr/settings/compatibility/) tant qu’aucune autre commande modifiant les paramètres d’impression ([PRINT SETTINGS](print-settings.md), [PRINT SELECTION](print-selection.md) sans le paramètre *\>*, etc.) n’est appelée. Si une tâche d'impression a été ouverte (ex : avec [OPEN PRINTING JOB](open-printing-job.md)), l'option est définie pour la tâche et n'est pas modifiable tant que la tâche n'est pas terminée (à l'exception de Orientation option, voir ci-dessous) . @@ -80,4 +77,14 @@ Si la valeur passée pour une *option* est invalide ou si elle n'est pas disponi *Options d'impression* [Print form](print-form.md) [PRINT OPTION VALUES](print-option-values.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 733 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md index 9bb7e3e74b7fe0..3acfb6e9a1624b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PRINT PREVIEW** vous permet de sélectionner ou de désélectionner l'option d'**aperçu** dans la boîte de dialogue standard d'impression. Si vous passez Vrai dans *aperçu*, l'option "à l'écran" sera cochée. Si vous passez Faux, elle ne sera pas cochée. Ce paramétrage est local au process et n'affecte pas les autres process ou utilisateurs. @@ -38,4 +35,13 @@ L'exemple suivant sélectionne l'option **A l'écran** pour afficher le résulta #### Voir aussi [Get print preview](get-print-preview.md) -[Is in print preview](is-in-print-preview.md) \ No newline at end of file +[Is in print preview](is-in-print-preview.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 364 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md index 501a3b82eb5416..8162fac1edf5c2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PRINTABLE MARGIN** permet de fixer les valeurs des différentes marges d’impression lors de l’utilisation des commandes [Print form](print-form.md), [PRINT SELECTION](print-selection.md) et [PRINT RECORD](print-record.md). @@ -59,4 +56,13 @@ L’exemple suivant permet d’obtenir la taille du papier : [GET PRINTABLE MARGIN](get-printable-margin.md) [Get printed height](get-printed-height.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 710 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md index bc740bae765f65..b303c73ac0a87b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET PROCESS VARIABLE** écrit la ou les valeur(s) de *exprSource* (*exprSource2*, etc.) dans la ou les variable(s) process *varDestination* (*varDestination2*, etc.) du process de destination dont le numéro est passé dans *process*. @@ -99,4 +96,13 @@ L'exemple suivant écrit l'instance des variables *v1*, *v2*, *v3* dans le proce [GET PROCESS VARIABLE](get-process-variable.md) *Introduction aux process* [POST OUTSIDE CALL](post-outside-call.md) -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 370 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md index e9954ee50802fa..845f8625fe5c84 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md @@ -68,4 +68,14 @@ Si la commande est appelée hors du contexte d’une transaction, une erreur est #### Voir aussi -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 661 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md index d7f4c103457746..0d732df877d3de 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md @@ -250,4 +250,13 @@ Lorsque cette méthode est implémentée dans votre application, vous pouvez éc [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 396 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md index 68a0be06815719..d7b374b3f66d3d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md @@ -62,4 +62,13 @@ Référez-vous au deuxième exemple de la commande [SET QUERY DESTINATION](set-q [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 395 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md index d61ca07600483e..853a26734bf040 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET REAL COMPARISON LEVEL** définit la valeur *epsilon* utilisée par 4D lors d'une comparaison d'égalité des valeurs et expressions de type Réel. @@ -37,3 +34,13 @@ Modifier l'epsilon affecte seulement la comparaison d'égalité des réels. Cela **ATTENTION :** Cette commande doit être utilisée dans des cas spécifiques, comme par exemple un tri sur un champ dont les valeurs sont inférieures à 10^-6\. En général, vous n'avez pas besoin de modifier la valeur par défaut d'epsilon. **Note :** La commande **SET REAL COMPARISON LEVEL** n'a pas d'effet sur les recherches et les tris effectués avec les champs de type réel. Elle s'applique uniquement au langage de 4D. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 623 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md index 07e2ba1396d121..15a8dd4fd0a362 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET RECENT FONTS** permet de modifier la liste des polices récentes affichées dans le menu contextuel des "polices récentes". @@ -43,4 +40,13 @@ Le menu contient alors : #### Voir aussi -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1305 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md index edd88add5f1ae7..f62d9dcda91ee5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md @@ -48,4 +48,13 @@ Dans la , vous souhaitez fixer une priorité très haute pour les données scala [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) -[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) \ No newline at end of file +[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1400 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md index 6554b8132c79b5..da0b0bab8546ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **SET TABLE TITLES** vous permet de masquer, renommer et réordonner les tables de votre base qui apparaissent dans les éditeurs standard de 4D en mode Application (lorsque le mode de lancement est le mode **Application**, ou après avoir sélectionné "**Tester l'application**" dans le menu **Exécution**) . @@ -181,4 +178,13 @@ Vous voulez supprimer tous les noms de tables et de champs personnalisés défin [GET TABLE TITLES](get-table-titles.md) [Parse formula](parse-formula.md) [SET FIELD TITLES](set-field-titles.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 601 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md index 7faa492df9d92f..e95572144f4644 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **SET TEXT TO PASTEBOARD** place une copie du texte que vous avez passé dans *texte* dans le conteneur de données. Les données éventuellement présentes dans le conteneur sont auparavant effacées. @@ -39,4 +36,14 @@ Si la copie du texte est correctement placée dans le conteneur de données, la #### Voir aussi [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 523 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md index 95235d2c75d913..e18eddd550bf9d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md @@ -48,4 +48,14 @@ L'exemple suivant fixe le port série devant recevoir des données et le timeout [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) [RECEIVE RECORD](receive-record.md) -[RECEIVE VARIABLE](receive-variable.md) \ No newline at end of file +[RECEIVE VARIABLE](receive-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 268 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md index 5b525405c3cab3..92b092aaa59caa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET TIMER** permet d’activer l’événement formulaire On Timer et de fixer, pour le process et le formulaire courants, le nombre de ticks (1 tick = 1/60ème de seconde) entre chaque événement formulaire On Timer. @@ -47,4 +44,13 @@ Vous souhaitez que, lorsqu’un formulaire est affiché à l’écran, un bip so #### Voir aussi [Form event code](form-event-code.md) -[REDRAW](redraw.md) \ No newline at end of file +[REDRAW](redraw.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 645 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md index e39159af46e79b..861463d7b3936b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET UPDATE FOLDER** permet de définir le dossier contenant la mise à jour de l’application 4D fusionnée courante. Cette information est mémorisée durant la session 4D jusqu’à l’appel de la commande [RESTART 4D](restart-4d.md). Si l’application est quittée manuellement, cette information n'est pas conservée. @@ -57,4 +54,14 @@ Vous avez créé un dossier "MesMisesAJour" sur votre disque, dans lequel vous a #### Voir aussi [Get last update log path](get-last-update-log-path.md) -[RESTART 4D](restart-4d.md) \ No newline at end of file +[RESTART 4D](restart-4d.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1291 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md index c7107610380cd9..fe28ff2d406cf0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md @@ -39,4 +39,14 @@ Vos utilisateurs sont gérés via une table personnalisée et utilisent le même [CHANGE CURRENT USER](change-current-user.md) [Current user](current-user.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1666 | +| Thread safe | ✓ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md index a76092fe68403a..0cf348075e51aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Set user properties** vous permet de modifier et de mettre à jour les propriétés d'un compte actif d'utilisateur existant dont le numéro de référence est passé dans le paramètre *réfUtilisateur*, ou d'ajouter un nouvel utilisateur. @@ -62,4 +59,13 @@ Si vous n'avez pas les privilèges d'accès pour appeler **Set user properties** [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 612 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md index 56e0ad6520fc15..eecfc9e6b2bea3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET WINDOW RECT** modifie les coordonnées globales de la fenêtre dont vous avez passé le numéro de référence [RefFen](# "Expression de type Entier long identifiant de façon unique une fenêtre ouverte") dans le paramètre *fenêtre*. Si la fenêtre n'existe pas, la commande ne fait rien. @@ -60,4 +57,13 @@ La fenêtre apparaît ainsi : [CONVERT COORDINATES](convert-coordinates.md) [DRAG WINDOW](drag-window.md) [GET WINDOW RECT](get-window-rect.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 444 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md index 7148b9e6a3bf62..b2c5361e74d1aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SET WINDOW TITLE** remplace le titre de la fenêtre dont le numéro de référence est passé dans *fenêtre* par le texte passé dans *titre* (longueur maximale 80 caractères). @@ -51,4 +48,13 @@ Vous effectuez une saisie dans un formulaire et vous cliquez sur un bouton qui d #### Voir aussi -[Get window title](get-window-title.md) \ No newline at end of file +[Get window title](get-window-title.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 213 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md index 10f9112d824a3a..6d8a899dd6ab49 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md @@ -50,4 +50,13 @@ La méthode objet du bouton *bUnBouton* effectue des actions différentes en fon [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 543 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md index 7d3a7b5546038d..b9e08cbdc34914 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SHOW MENU BAR** rend visible la barre de menus. @@ -29,4 +26,14 @@ Reportez-vous à l'exemple de la commande [HIDE MENU BAR](hide-menu-bar.md). [HIDE MENU BAR](hide-menu-bar.md) [HIDE TOOL BAR](hide-tool-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 431 | +| Thread safe | ✗ | +| Interdite sur le serveur || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md index 542574a6672f3f..117b39d62302e1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md @@ -46,3 +46,14 @@ Ces exemples illustrent le fonctionnement de la commande. #### Variables et ensembles système La variable système OK prend la valeur 1 si la commande est correctement exécutée, sinon elle prend la valeur 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 922 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md index cd46262a2b43fe..640d6b7b9a2a47 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **SHOW PROCESS** fait apparaître l'ensemble des fenêtres appartenant à *process*. Cette commande ne passe pas les fenêtres de *process* au premier plan, utilisez pour cela la commande [BRING TO FRONT](bring-to-front.md). @@ -34,4 +31,13 @@ L'exemple suivant affiche le process "Clients", s'il était caché auparavant. L [BRING TO FRONT](bring-to-front.md) [HIDE PROCESS](hide-process.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 325 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md index f71a836ec1c3e8..ca74cb34f8c849 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SHOW TOOL BAR** permet de gérer l'affichage des barres d'outils personnalisées créées par la commande [Open form window](open-form-window.md) pour le process courant. @@ -27,4 +24,13 @@ Reportez-vous à l'exemple de la commande [HIDE TOOL BAR](hide-tool-bar.md). #### Voir aussi -[HIDE TOOL BAR](hide-tool-bar.md) \ No newline at end of file +[HIDE TOOL BAR](hide-tool-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 433 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md index cde1a2391f0a43..624964694dca6b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SHOW WINDOW** permet d'afficher la fenêtre dont vous avez passé le numéro de référence dans *fenêtre* ou, si ce paramètre est omis, la fenêtre de premier plan du process courant. @@ -28,4 +25,13 @@ Voir l'exemple de la commande [HIDE WINDOW](hide-window.md). #### Voir aussi -[HIDE WINDOW](hide-window.md) \ No newline at end of file +[HIDE WINDOW](hide-window.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 435 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md index 7a1b1396c3a7f0..27770323ef89e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Cos](cos.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 17 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md index f913064cb84032..de866a3cb137c1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md @@ -45,4 +45,13 @@ L'exemple suivant retourne le nombre de colonnes d'une ligne d'un tableau à deu #### Voir aussi [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 274 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md index 5f092990c26779..8d0fb1da39b888 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md @@ -189,4 +189,13 @@ Cet exemple illustre l'effet des différents types de déclarations : [Is data file locked](is-data-file-locked.md) [SOAP Get info](soap-get-info.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 782 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md index eb5005c6633152..a62fe16685c0ee 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md @@ -32,4 +32,13 @@ Passez dans le paramètre *numInfo* le numéro du type d’information SOAP à c #### Voir aussi [SET DATABASE PARAMETER](set-database-parameter.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 784 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md index 0cd1f4e1683c18..7c6525a38e0504 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md @@ -35,4 +35,13 @@ Vous souhaitez rejeter les nouvelles requêtes reçues par votre serveur Web Ser #### Voir aussi [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[WEB Get server info](web-get-server-info.md) \ No newline at end of file +[WEB Get server info](web-get-server-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1636 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md index 1665a17c2cb87c..0c932dab9d72b9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md @@ -21,4 +21,13 @@ Cette commande peut être utilisée pour des raisons de sécurité dans la *Mét #### Voir aussi -[SOAP DECLARATION](soap-declaration.md) \ No newline at end of file +[SOAP DECLARATION](soap-declaration.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 783 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md index 002d868fec8f79..94b1802f6472b3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md @@ -42,4 +42,13 @@ Pour reprendre l’exemple du Web Service “Racine\_carree” fourni dans la de #### Voir aussi [SOAP DECLARATION](soap-declaration.md) -[SOAP Get info](soap-get-info.md) \ No newline at end of file +[SOAP Get info](soap-get-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 781 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md index 3f623c5fc7f2a8..5f84fae5c8aed0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md @@ -18,8 +18,6 @@ displayed_sidebar: docs La commande **SORT ARRAY** trie un ou plusieurs tableau(x) par ordre croissant ou décroissant. -**Notes :** - * Vous ne pouvez pas trier de tableaux de type [Pointeur](# "A reference to another variable (including arrays and array elements), table, or field") ou [Image](# "Can be any Windows or Macintosh picture"). Vous pouvez trier un élément d'un tableau à deux dimensions (c'est-à-dire *t2DTableau{$vlCetElément}*), mais vous ne pouvez pas trier le tableau 2D lui-même (c'est-à-dire *t2DTableau*). * Vous pouvez trier les tableaux de type Object. Les éléments Null sont regroupés et les éléments du tableau sont triés selon un ordre interne. @@ -81,4 +79,13 @@ Vous affichez les noms d'une table \[Personnes\] dans une fenêtre flottante. Ce [Find in sorted array](find-in-sorted-array.md) [MULTI SORT ARRAY](multi-sort-array.md) [ORDER BY](order-by.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 229 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md index 1b0f67aee9c182..28e40eb8870bdc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SORT LIST** effectue un tri sur la liste dont vous avez passé le numéro de référence dans le paramètre *liste*. @@ -57,4 +54,13 @@ Après l'exécution du code suivant : #### Voir aussi -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 391 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md index a13eea5c2073cc..cf87f17df4e6df 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL ADD TO USER DICTIONARY** permet d’ajouter un ou plusieurs mot(s) au dictionnaire utilisateur courant. @@ -38,4 +35,13 @@ Ajout de noms propres au dictionnaire utilisateur : #### Voir aussi -[SPELL CHECK TEXT](spell-check-text.md) \ No newline at end of file +[SPELL CHECK TEXT](spell-check-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1214 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md index 8d82a2d6b6adcb..e5e462c4fec627 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL CHECK TEXT** vérifie le contenu du paramètre *leTexte* à partir du caractère *posVérif* et retourne la position du premier mot inconnu rencontré (le cas échéant). @@ -55,4 +52,14 @@ On souhaite compter le nombre de fautes potentielles dans un texte : #### Voir aussi [SPELL ADD TO USER DICTIONARY](spell-add-to-user-dictionary.md) -[SPELL CHECKING](spell-checking.md) \ No newline at end of file +[SPELL CHECKING](spell-checking.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1215 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md index 381ed0010622d1..4d2fc17d46ed67 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL CHECKING** déclenche la vérification de l’orthographe du champ ou de la variable ayant le focus dans le formulaire affiché à l’écran. L’objet vérifié doit être de type Alpha ou Texte. @@ -35,4 +32,13 @@ La vérification débute par le premier mot du champ ou de la variable. Si un mo #### Voir aussi [SPELL CHECK TEXT](spell-check-text.md) -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 900 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md index f1fb3d0e7812b1..00cd19c4ce10b8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL Get current dictionary** retourne le numéro d’ID du dictionnaire en cours d’utilisation. @@ -35,4 +32,13 @@ On souhaite afficher la langue du dictionnaire courant : #### Voir aussi -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1205 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md index 97d9960f92a9f3..baebe9c2d1db32 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL GET DICTIONARY LIST** retourne dans les tableaux *langID*, *langFichiers* et *langNoms* les IDs, les noms de fichiers et les noms des langues correspondant aux fichiers de dictionnaires Hunspell installés sur la machine. @@ -53,4 +50,13 @@ Vous avez placé "fr-classique+reforme1990.aff" et "fr-classique+reforme1990.dic #### Voir aussi -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1204 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md index bb6fb0704af3bd..1e41b0d8894e15 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SPELL SET CURRENT DICTIONARY** provoque le remplacement du dictionnaire courant par celui spécifié par le paramètre *dictionnaire*. Le dictionnaire courant est utilisé pour la correction orthographique intégrée de 4D (pour plus d’informations, reportez-vous au manuel *Mode Développement*) ainsi qu'à celle de 4D Write Pro. La modification du dictionnaire courant est immédiatement répercutée dans tous les process de la base pour la session, ainsi que dans les zones 4D Write Pro. @@ -52,4 +49,14 @@ Chargement du dictionnaire "fr-classique" présent dans le dossier Hunspell : [SPELL CHECKING](spell-checking.md) [SPELL Get current dictionary](spell-get-current-dictionary.md) -[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) \ No newline at end of file +[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 904 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md index 864a7c471c9e22..63ec0270fae2d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md @@ -56,4 +56,13 @@ Le paramètre *séparateur* peut être une chaîne de plusieurs caractères : #### Voir aussi -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1554 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md index eed04962f5b8d6..85a8098514374d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL CANCEL LOAD** met fin à la requête SELECT courante et initialise les paramètres du curseur. @@ -53,4 +50,14 @@ Si la commande a été correctement exécutée, la variable système OK retourne #### Voir aussi [SQL LOAD RECORD](sql-load-record.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 824 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md index 9c591bd111c4a2..fa7084db16ed4e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL End selection** indique si les limites de l’ensemble résultat ont été atteintes. @@ -40,3 +37,13 @@ Le code ci-dessous se connecte à une source de données externe (Oracle) à l ``` Cet exemple retournera dans la variable 4D *vName* les noms (ename) stockés dans la table nommée emp. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 821 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md index 79dea5b4747cb2..698027875a45f6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL EXECUTE SCRIPT** vous permet d’exécuter une suite d’instructions SQL placées dans le fichier de script désigné par *cheminScript*. Cette commande ne peut être exécutée que sur un poste local (4D local ou procédure stockée sur 4D Server). Elle fonctionne avec la base courante (base interne ou base externe). @@ -59,3 +56,14 @@ Si le script est correctement exécuté (aucune erreur rencontrée), la variable * Si *actionErreur* vaut SQL On error continue (valeur 3), la variable *OK* vaut toujours 1\. **Note :** Si vous utilisez cette commande pour exécuter des actions consommatrices de mémoire telles que l’importation massive de données, vous pouvez envisager de faire appel à la nouvelle commande SQL *ALTER DATABASE* afin de désactiver temporairement des options SQL. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1089 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md index 2609160bc71b5b..38ee3db4a20705 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL EXECUTE** permet d’exécuter une commande SQL et d’associer le résultat à des objets 4D (tableaux, variables ou champs) liés. @@ -160,4 +157,14 @@ Si la commande a été correctement exécutée, la variable système OK retourne #### Voir aussi -[SQL LOAD RECORD](sql-load-record.md) \ No newline at end of file +[SQL LOAD RECORD](sql-load-record.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 820 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md index 097ff85ab19c28..16b6786ef496be 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL EXPORT DATABASE** exporte au format SQL tous les enregistrements de toutes les tables de la base. En SQL, cette opération d’exportation globale est appelée "Dump". @@ -57,4 +54,14 @@ Si l’export s’est déroulé correctement, la variable *OK* prend la valeur 1 #### Voir aussi -[SQL EXPORT SELECTION](sql-export-selection.md) \ No newline at end of file +[SQL EXPORT SELECTION](sql-export-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1065 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md index 3f8d42c756fe16..e88461b21b4e0a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL EXPORT SELECTION** exporte au format SQL les enregistrements de la sélection courante de la table 4D désignée par le paramètre *laTable*. @@ -38,4 +35,14 @@ Si l’export s’est déroulé correctement, la variable *OK* prend la valeur 1 #### Voir aussi -[SQL EXPORT DATABASE](sql-export-database.md) \ No newline at end of file +[SQL EXPORT DATABASE](sql-export-database.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1064 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md index 55960a8b3bcde6..c44b6b5cfad8b8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL Get current data source** retourne le nom de la source de données courante de l’application. La source de données courante reçoit les requêtes SQL exécutées au sein de structures [Begin SQL](begin-sql.md)/[End SQL](end-sql.md). @@ -28,4 +25,13 @@ Cette commande vous permet de contrôler la source de données courante, génér [End SQL](end-sql.md) [SQL GET DATA SOURCE LIST](sql-get-data-source-list.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 990 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md index 7efeb154482d4b..1b23dbf1424527 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL GET DATA SOURCE LIST** retourne dans les tableaux *tabNomsSources* et *tabPilotes* les noms et les pilotes des sources de données de type *typeSource* définies dans le gestionnaire ODBC du système d’exploitation. @@ -55,4 +52,14 @@ Si la commande est correctement exécutée, la variable système OK prend la val [SQL Get current data source](sql-get-current-data-source.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 989 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md index e0060eaec76ae0..b451e5a507fb04 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL GET LAST ERROR** retourne des informations relatives à la dernière erreur rencontrée lors de l’exécution d’une commande ODBC. L’erreur peut provenir de l’application 4D, du réseau, de la source ODBC, etc. @@ -36,4 +33,13 @@ Les deux derniers paramètres ne sont remplis que si l’erreur provient de la s #### Voir aussi [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 825 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md index 83bc3c74954be2..dd24ebf15c7f28 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL GET OPTION** retourne la *valeur* courante de l’option passée dans le paramètre *option*. @@ -29,4 +26,14 @@ Si la commande a été correctement exécutée, la variable système OK retourne #### Voir aussi -[SQL SET OPTION](sql-set-option.md) \ No newline at end of file +[SQL SET OPTION](sql-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 819 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md index a0248cf6351905..84f601d9953d7c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL LOAD RECORD** récupère dans 4D un ou plusieurs enregistrement(s) provenant de la source de données ouverte dans la connexion courante. @@ -35,4 +32,14 @@ Si la commande a été correctement exécutée, la variable système OK retourne #### Voir aussi [SQL CANCEL LOAD](sql-cancel-load.md) -[SQL EXECUTE](sql-execute.md) \ No newline at end of file +[SQL EXECUTE](sql-execute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 822 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md index dbcc38b650819d..bf14680bc274c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL LOGIN** vous permet d’ouvrir une connexion avec une source de données SQL, définie dans le paramètre *source*. Elle désigne la cible des requêtes SQL exécutées ultérieurement dans le process courant : @@ -205,4 +202,14 @@ Si la connexion est correctement établie, la variable système OK prend la vale [Begin SQL](begin-sql.md) [End SQL](end-sql.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 817 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md index c5f7f4c84b69fb..efce3e5721034c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL LOGOUT** referme la connexion avec une source ODBC ouverte dans le process courant (le cas échéant). S’il n’y a pas de connexion ODBC ouverte, la commande ne fait rien. @@ -25,4 +22,14 @@ Si la connexion a été correctement refermée, la variable système OK prend la #### Voir aussi -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 872 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md index 1aa7725ab8eb64..a6030548f7d2a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL SET OPTION** permet de modifier la *valeur* de l’option passée dans le paramètre *option*. @@ -46,4 +43,14 @@ Si la commande a été correctement exécutée, la variable système OK retourne #### Voir aussi -[SQL GET OPTION](sql-get-option.md) \ No newline at end of file +[SQL GET OPTION](sql-get-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 818 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md index 45486b4d6cb08c..9e4b70ffc0adfa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SQL SET PARAMETER** permet d’utiliser la valeur d’une variable, d’un tableau ou d’un champ 4D dans les requêtes SQL. @@ -79,3 +76,14 @@ Même exemple que le précédent, mais en utilisant la commande **SQL SET PARAME #### Variables et ensembles système Si la commande a été correctement exécutée, la variable système OK retourne 1, sinon elle retourne 0. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 823 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md index f44b19ffcf7b03..180aecd05fcba4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md @@ -41,3 +41,13 @@ La méthode listée ci-dessous retourne l'hypoténuse du triangle rectangle dont ``` Par exemple, Hypoténuse (4;3) retourne 5. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 539 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md index a14df840fbafa8..02c289be96e7bd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST COMPUTE EXPRESSIONS** met à jour les expressions 4D dynamiques situées dans le champ ou la variable de texte multistyle ou de 4D Write Pro désigné(e) par le paramètre *objet*. @@ -69,4 +66,14 @@ Vous souhaitez mettre à jour les références incluses dans la sélection de te #### Voir aussi [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1285 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md index f800a14a857670..fc910392b5351d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST FREEZE EXPRESSIONS** "gèle" le contenu des expressions situées dans le champ ou la variable texte multistyle ou 4D Write Pro désigné(e) par le paramètre *objet*. Cette action convertit les expressions dynamiques en textes statiques ou (zones 4D Write Pro uniquement) en images et supprime de l’*objet* les références associées. @@ -67,4 +64,13 @@ Vous souhaitez insérer l’heure courante au début du texte et la figer avant #### Voir aussi [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1282 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md index bed4c90ed5d29f..d68f83a3e94c2e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST GET ATTRIBUTES** permet de récupérer la valeur courante d’un attribut de style dans une sélection de texte du ou des objet(s) de formulaire désigné(s) par *objet*. @@ -100,4 +97,14 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une #### Voir aussi -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1094 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md index 60be6d5d9a5b9c..72a630e4e16c5a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST Get content type** retourne le type de contenu présent dans le champ ou la variable de texte multistyle désigné(e) par le paramètre *objet*. @@ -103,3 +100,14 @@ Vous souhaitez afficher des commandes d’un menu contextuel en fonction du type        ...  End case ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1286 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md index 6bf07f1a506a49..c5224c98ed5bc6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST Get expression** retourne la première expression présente dans la sélection courante du champ ou de la variable de texte multistyle désigné(e) par le paramètre *objet*. @@ -93,4 +90,14 @@ Vous souhaitez exécuter une méthode 4D en réponse à un clic sur un lien util #### Voir aussi -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1287 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md index 1732c9078daca0..fe674091285a10 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST GET OPTIONS** permet d’obtenir la valeur courante d’une ou plusieurs options de fonctionnement du champ ou de la variable de texte multistyle désigné(e) par le paramètre *objet*. @@ -36,4 +33,13 @@ Passez dans *option* le code de l’option à lire. La commande retourne dans *v #### Voir aussi -[ST SET OPTIONS](st-set-options.md) \ No newline at end of file +[ST SET OPTIONS](st-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1290 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md index 6f332a22db0de0..b61354b4e63f3b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST Get plain text** supprime toute balise de style du champ ou de la variable texte désigné(e) par les paramètres *\** et *objet*, et retourne le texte brut. @@ -109,4 +106,14 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une [ST Get text](st-get-text.md) [ST SET PLAIN TEXT](st-set-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1092 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md index 71b175f4ab0b3c..babada2f37e18b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST Get text** retourne le texte multistyle présent dans le champ ou la variable de texte désigné(e) par le paramètre *objet*. @@ -61,4 +58,14 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une [ST Get plain text](st-get-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1116 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md index 75e3eada2fca56..f1bffdf037fa16 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST GET URL** retourne le libellé et l’adresse du premier URL détecté dans le champ ou la variable de texte multistyle désigné(e) par le paramètre *objet*. @@ -72,4 +69,13 @@ Sur un événement double-clic, vous vérifiez que vous êtes bien en présence #### Voir aussi -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1288 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md index 13b82efaede722..32beeb1cad7422 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST INSERT EXPRESSION** insère une référence à l’*expression* dans le champ ou la variable de texte multistyle désigné(e) par le paramètre *objet*. @@ -86,4 +83,14 @@ Vous souhaitez remplacer le texte sélectionné par la valeur d'un champ : [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) [ST Get expression](st-get-expression.md) -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1281 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md index dc8996619011d6..3d10a091b4e74e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST INSERT URL** insère un lien URL dans le champ ou la variable de texte stylé désigné(e) par le paramètre *objet*. @@ -65,4 +62,14 @@ Vous souhaitez insérer un lien vers le site Web de 4D à la place de la sélect #### Voir aussi [ST GET URL](st-get-url.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1280 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md index 7ae49e511026b4..4be641eb30568e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST SET ATTRIBUTES** permet de modifier un ou plusieurs attribut(s) de style dans le ou les objet(s) de formulaire désigné(s) par *objet*. @@ -102,4 +99,14 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une #### Voir aussi [FONT LIST](font-list.md) -[ST GET ATTRIBUTES](st-get-attributes.md) \ No newline at end of file +[ST GET ATTRIBUTES](st-get-attributes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1093 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md index 638489e17188ad..3131cbebf29ecf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST SET OPTIONS** vous permet de modifier une ou plusieurs options de fonctionnement du champ ou de la variable de texte stylé désigné(e) par le paramètre *objet*. @@ -63,4 +60,13 @@ Le code suivant vous permet de basculer le mode d’affichage de la zone : #### Voir aussi -[ST GET OPTIONS](st-get-options.md) \ No newline at end of file +[ST GET OPTIONS](st-get-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1289 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md index 1a62ca88834dc3..ef17c7846995be 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST SET PLAIN TEXT** insère le texte passé dans le paramètre *nouvTexte* dans le champ ou la variable de texte multistyle désigné(e) par le paramètre *objet*. Cette commande s’applique uniquement au texte brut du paramètre *objet*, sans modifier les éventuelles balises de style qu’il contient. @@ -94,4 +91,14 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une #### Voir aussi [ST Get plain text](st-get-plain-text.md) -[ST SET TEXT](st-set-text.md) \ No newline at end of file +[ST SET TEXT](st-set-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1136 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md index ae690288be5a59..24be5fb97acbde 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **ST SET TEXT** insère le texte passé dans le paramètre *nouvTexte* dans le champ ou la variable de texte multistyle désigné(e) par le paramètre *objet*. Cette commande s’applique uniquement au texte brut du paramètre *objet*, sans modifier les éventuelles balises de style qu’il contient. Elle permet de modifier par programmation du texte multistyle affiché à l’écran. @@ -91,4 +88,14 @@ Reportez-vous à l'exemple de la commande [ST SET PLAIN TEXT](st-set-plain-text. [ST Get plain text](st-get-plain-text.md) [ST Get text](st-get-text.md) -[ST SET PLAIN TEXT](st-set-plain-text.md) \ No newline at end of file +[ST SET PLAIN TEXT](st-set-plain-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1115 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md index 7103d494a532dd..6fe66b54124414 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md @@ -91,4 +91,13 @@ Vous souhaitez lancer/arrêter le suivi et revoir les activités de données 4D #### Voir aussi [Monitored activity](monitored-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1712 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md index 877a43442de9e7..1e19d78b2db39b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **START SQL SERVER** démarre le serveur SQL intégré de l’application 4D sur laquelle elle a été exécutée. Une fois lancé, le serveur SQL peut répondre aux requêtes SQL externes. @@ -27,4 +24,14 @@ Si le serveur SQL a été correctement lancé, la variable système OK prend la #### Voir aussi -[STOP SQL SERVER](stop-sql-server.md) \ No newline at end of file +[STOP SQL SERVER](stop-sql-server.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 962 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md index c6aa93bbe8d290..767d5f86a3889e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md @@ -24,4 +24,13 @@ A compter de la version 11 de 4D, vous pouvez imbriquer plusieurs transactions ( [In transaction](in-transaction.md) [Transaction level](transaction-level.md) *Utiliser des transactions* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 239 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md index eb8ae34a412813..26358c071eee06 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md @@ -59,4 +59,13 @@ Cet exemple vous permet d’obtenir l’écart type d’une série de valeurs pl [Average](average.md) [Sum](sum.md) [Sum squares](sum-squares.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 26 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md index 9ab83d792e740c..4db4adc0d04c97 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md @@ -25,4 +25,13 @@ Voir l'exemple de **[START MONITORING ACTIVITY](start-monitoring-activity.md)**. #### Voir aussi [Monitored activity](monitored-activity.md) -[START MONITORING ACTIVITY](start-monitoring-activity.md) \ No newline at end of file +[START MONITORING ACTIVITY](start-monitoring-activity.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1721 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md index 3db1c7b666b7ed..98ee04c9a2152b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **STOP SQL SERVER** stoppe le serveur SQL intégré de l’application 4D sur laquelle elle a été exécutée. Si le serveur SQL était lancé, toutes les connexions SQL sont interrompues et le serveur n’accepte plus aucune requête SQL externe. Si le serveur SQL n’était pas lancé, la commande ne fait rien. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### Voir aussi -[START SQL SERVER](start-sql-server.md) \ No newline at end of file +[START SQL SERVER](start-sql-server.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 963 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md index 801aaaca5a2ac4..5c73aff1da7d04 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md @@ -81,4 +81,13 @@ Cet exemple montre la manière standard de définir les valeurs de **Storage** : #### Voir aussi -*Objets partagés et collections partagées* \ No newline at end of file +*Objets partagés et collections partagées* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1525 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md index 9b3938d0c18458..a9b230f263587c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **STRING LIST TO ARRAY** remplit le tableau *chaînes* avec : @@ -48,4 +45,14 @@ La variable système OK prend la valeur 1 si la ressource est trouvée, sinon el [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[Get text resource](get-text-resource.md) \ No newline at end of file +[Get text resource](get-text-resource.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 511 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md index 7d6cef8299f546..6b7525b24e8ae9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md @@ -158,4 +158,13 @@ Dans ce cas, le paramètre *format*, s'il est passé, est ignoré. [Date](date.md) [Num](num.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 10 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md index c58ab1bcda4119..536a508fc72df8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md @@ -16,10 +16,7 @@ displayed_sidebar: docs #### Description -La fonction **Structure file** retourne le chemin d'accès du fichier de structure de la base en cours d'utilisation. - -* Avec les bases binaires, la commande retourne le chemin d'accès du fichier **.4db.** -* Avec les bases projets, la commande retourne le chemin d'accès du fichier **.4dproject.** +La fonction **Structure file** retourne le chemin d'accès du fichier de structure de la base en cours d'utilisation.* Avec les bases projets, la commande retourne le chemin d'accès du fichier **.4dproject.** **Note :** Dans le cas particulier d'une base compilée et fusionnée avec 4D Volume Desktop, cette commande retourne le chemin d'accès du fichier de l'application (fichier exécutable) sous Windows et macOS. Sous macOS, ce fichier est situé à l’intérieur du progiciel, dans le dossier \[Contents:MacOS\]. Ce fonctionnement provient d’un ancien mécanisme, conservé pour des raisons de compatibilité. Si vous souhaitez obtenir le nom long du progiciel lui-même, il est préférable d’utiliser la commande [Application file](application-file.md). L’astuce consiste à tester l’application à l’aide de la commande [Application type](application-type.md) puis à exécuter **Structure file** ou [Application file](application-file.md) en fonction du contexte. @@ -66,4 +63,13 @@ L’exemple suivant permet de savoir si la méthode est appelée depuis un compo [Application file](application-file.md) [COMPONENT LIST](component-list.md) -[Data file](data-file.md) \ No newline at end of file +[Data file](data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 489 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md index e0fbc8804b6a31..93691fa237614a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md @@ -64,4 +64,13 @@ La méthode projet suivante ajoute au tableau de type texte ou alpha, dont le po #### Voir aussi -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 12 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md index 8776eeb8e6a690..1830008c7a4b33 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Subtotal** retourne le sous-total de *valeurs* pour le niveau de rupture courant ou précédent. **Subtotal** ne fonctionne que dans le cadre d'une sélection triée imprimée par l'intermédiaire de la commande [PRINT SELECTION](print-selection.md) ou de la commande de menu **Imprimer** du mode Développement. Le paramètre *valeurs* doit être de type numérique, entier ou entier long. Vous devez assigner le résultat de la fonction **Subtotal** à une variable placée dans la zone de rupture du formulaire. @@ -58,4 +55,13 @@ La commande **Subtotal** permet d'afficher des calculs de sous-totaux dans des f [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 97 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md index 47a0c650db69d0..e644e761105291 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md @@ -57,4 +57,13 @@ Cet exemple vous permet d’obtenir la somme des carrés des valeurs placées da [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 28 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md index c070c9e67419d5..41d0a0061afc4c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md @@ -71,4 +71,14 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re [Min](min.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md index 5ccb2053bdaea5..9baed943f7b6a7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md @@ -22,4 +22,13 @@ Pour plus d'informations, veuillez vous référer à la section *Suspendre des t [Active transaction](active-transaction.md) [RESUME TRANSACTION](resume-transaction.md) -*Suspendre des transactions* \ No newline at end of file +*Suspendre des transactions* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1385 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md index b5c8d0b9a63792..7eefaea32ccb7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **SVG EXPORT TO PICTURE** permet de sauvegarder dans la variable ou le champ image désigné(e) par le paramètre *vVarImage* une image au format SVG contenue dans un arbre XML. - -**Note :** Pour plus d'informations sur le format SVG, reportez-vous à la section *Présentation des commandes XML génériques*. +La commande **SVG EXPORT TO PICTURE** permet de sauvegarder dans la variable ou le champ image désigné(e) par le paramètre *vVarImage* une image au format SVG contenue dans un arbre XML.Pour plus d'informations sur le format SVG, reportez-vous à la section *Présentation des commandes XML génériques*. Passez dans *refElément* la référence de l’élément XML racine contenant l’image SVG. @@ -53,4 +51,13 @@ L’exemple suivant permet d’afficher “Hello World” dans une image 4D : #### Voir aussi [DOM EXPORT TO FILE](dom-export-to-file.md) -[DOM EXPORT TO VAR](dom-export-to-var.md) \ No newline at end of file +[DOM EXPORT TO VAR](dom-export-to-var.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1017 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md index 3724055a946da7..3174ba944c8d58 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SVG Find element ID by coordinates** retourne l’ID (attribut "id" ou "xml:id") de l’élément XML situé à l’emplacement défini par les coordonnées (*x*,*y*) dans l’image SVG désignée par le paramètre *objetImage*. Cette commande permet notamment de créer des interfaces graphiques interactives utilisant des objets SVG. @@ -54,4 +51,14 @@ Si *objetImage* ne contient pas une image SVG valide, la commande retourne une c #### Voir aussi -[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) \ No newline at end of file +[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1054 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md index 8d0de91ef7a9c6..2f772d146b4989 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SVG Find element IDs by rect** remplit le tableau texte *tabIds* avec les IDs (attribut "id" ou "xml:id") des éléments XML dont le rectangle englobant est en intersection avec le rectangle de sélection à l’emplacement défini par les paramètres *x* et *y*. @@ -42,4 +39,13 @@ Tous les ID d’éléments dont le rectangle englobant est en intersection avec #### Voir aussi -[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) \ No newline at end of file +[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1109 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md index 0b987f6347b93d..b98bfff5f92666 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SVG GET ATTRIBUTE** permet de lire la valeur courante de l’attribut *nomAttribut* dans un objet ou une image SVG. @@ -42,4 +39,13 @@ Pour plus d’informations sur les attributs SVG, reportez-vous à la descriptio #### Voir aussi -[SVG SET ATTRIBUTE](svg-set-attribute.md) \ No newline at end of file +[SVG SET ATTRIBUTE](svg-set-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1056 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md index 352448992dc8ca..0ae7971880704a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md @@ -93,4 +93,14 @@ Modification du contenu d’un élément de type texte : #### Voir aussi -[SVG GET ATTRIBUTE](svg-get-attribute.md) \ No newline at end of file +[SVG GET ATTRIBUTE](svg-get-attribute.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1055 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md index 26706a471508e3..d04d4883d318b0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **SVG SHOW ELEMENT** déplace le document SVG *objetImage* de façon à rendre visible l’élement dont l’attribut "id" est désigné par le paramètre *id*. @@ -30,3 +27,14 @@ La commande déplace le document SVG de manière à ce que la totalité de l’o Cette commande n’a d’effet qu’en mode d’affichage "top left" (avec barres de défilement). Si la commande est exécutée en-dehors du contexte d'un formulaire ou si un *objetImage* invalide est passé, la variable OK prend la valeur 0\. Si la commande a été exécutée correctement, elle prend la valeur 1\. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1108 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md index 629f709bbd4c06..44a49de4709457 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md @@ -47,4 +47,13 @@ Vous passez dans *type* un code représentant le type de dossier. 4D fournit les #### Voir aussi [Get 4D folder](get-4d-folder.md) -[Temporary folder](temporary-folder.md) \ No newline at end of file +[Temporary folder](temporary-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 487 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md index fa03e777be9d99..da6096c80526af 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md @@ -145,4 +145,13 @@ retourne un objet contenant les informations suivantes : [Application info](application-info.md) [Is macOS](is-macos.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1571 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md index f7ae0e7e6f8367..46426e2e9dcde1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md @@ -40,4 +40,13 @@ Cette méthode de maintenance permet de demander le compactage du fichier de don #### Voir aussi -[Compact data file](compact-data-file.md) \ No newline at end of file +[Compact data file](compact-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1127 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md index 6de4cd7d435644..172379d347c4ce 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md @@ -37,4 +37,13 @@ La méthode suivante est un exemple de méthode générique qui affiche les enre [Last table number](last-table-number.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 256 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md index dfae8bf6b40a41..32cb53249e5cc6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -**Table** a trois syntaxes différentes. - -* Si vous passez un numéro de table dans *numTable*, **Table** retourne un pointeur sur la table. +**Table** a trois syntaxes différentes.retourne un pointeur sur la table. * Si vous passez un pointeur de table dans *unPtr*, **Table** retourne le numéro de la table. * Si vous passez un pointeur de champ dans *unPtr*, **Table** retourne le numéro de table du champ. @@ -58,4 +56,13 @@ Dans l'exemple suivant, la variable *numTable* est égale au numéro de la table [Field](field.md) [Last table number](last-table-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 252 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md index 56c521a7ea54b8..63791d8580bae3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Cos](cos.md) -[Sin](sin.md) \ No newline at end of file +[Sin](sin.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 19 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md index 0a22b7458b33e3..def5401bf78044 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md @@ -23,4 +23,13 @@ Reportez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-dat #### Voir aussi -[System folder](system-folder.md) \ No newline at end of file +[System folder](system-folder.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 486 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md index e58892e8e43a2f..b2e9ee4afae68a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md @@ -48,4 +48,13 @@ L'exemple suivant teste la présence du document “Journal” dans le dossier d [Create document](create-document.md) [CREATE FOLDER](create-folder.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 476 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md index 9b78598b5852ae..b47de914a770bc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md @@ -44,4 +44,13 @@ Cet exemple permet de connaître l’état d’un traitement (en l’occurrence, #### Voir aussi [CLEAR SEMAPHORE](clear-semaphore.md) -[Semaphore](semaphore.md) \ No newline at end of file +[Semaphore](semaphore.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 652 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md index 0107b8334367f3..6d42864d688ac6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **TEXT TO ARRAY** permet de transformer une variable texte en tableau texte. Le texte d’origine (stylé ou non) est découpé et chaque morceau devient un élément du tableau *tabTexte* qui est retourné par la commande. Cette commande peut être utilisée par exemple pour remplir des pages ou des colonnes de texte de taille fixe. @@ -109,4 +106,13 @@ Vous devez imprimer dans une zone de 400 pixels de large un texte d’un maximum [Split string](split-string.md) [ST Get plain text](st-get-plain-text.md) -[ST Get text](st-get-text.md) \ No newline at end of file +[ST Get text](st-get-text.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1149 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md index 35cd9d1100c5f2..c8c4fb878eeaa1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md @@ -104,4 +104,13 @@ Après l'exécution de ce code : [CONVERT FROM TEXT](convert-from-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[REAL TO BLOB](real-to-blob.md) \ No newline at end of file +[REAL TO BLOB](real-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 554 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md index 4845a4707a406f..2ecd016e993e6d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md @@ -79,4 +79,13 @@ Exemple permettant à l’utilisateur de désigner l’emplacement du fichier à #### Voir aussi [Document to text](document-to-text.md) -*Documents système* \ No newline at end of file +*Documents système* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1237 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md index a8ed09b8ffbfe1..4cc5f220b33a1e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **throw** crée une erreur qui sera levée soit immédiatement, soit lorsque la méthode appelante retournera à l'appelant (mode différé). @@ -109,4 +106,13 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi [ASSERT](assert.md) [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1805 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md index 37b2a38fe86ee1..aa7c5c54111ac9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Tickcount** retourne le nombre de ticks (1 tick = 1/60ème de seconde) écoulés depuis le démarrage de la machine. - -**Note :** **Tickcount** retourne une valeur de type Entier long. +**Tickcount** retourne le nombre de ticks (1 tick = 1/60ème de seconde) écoulés depuis le démarrage de la machine.**Tickcount** retourne une valeur de type Entier long. #### Exemple @@ -26,4 +24,13 @@ Référez-vous à l'exemple de la fonction [Milliseconds](milliseconds.md). #### Voir aussi [Current time](current-time.md) -[Milliseconds](milliseconds.md) \ No newline at end of file +[Milliseconds](milliseconds.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 458 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md index 6df8edaf787993..129e261e3a9e97 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md @@ -35,4 +35,13 @@ L'exemple suivant affiche une boîte de dialogue d'alerte avec le message “468 #### Voir aussi [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 180 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md index 286e49efe36425..1690be09bf72d6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md @@ -50,4 +50,13 @@ Vous pouvez exprimer toute valeur numérique sous forme d’heure : [Bool](bool.md) [String](string.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 179 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md index e960a27038ce6a..3f27a7810b4d99 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md @@ -41,4 +41,13 @@ Résultat : [Milliseconds](milliseconds.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1445 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md index 7485ba47beefea..abe4ba8f23c8ed 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Tool bar height** retourne la hauteur de la barre d'outils visible courante, exprimée en pixels. Suivant le contexte, il peut s'agir soit de la barre d'outils du mode Développement de 4D, soit d'une barre d'outils personnalisée créée avec [Open form window](open-form-window.md) (la barre d'outils du mode Développement est automatiquement masquée lorsqu'une barre d'outils personnalisée est affichée). @@ -26,4 +23,13 @@ displayed_sidebar: docs [HIDE TOOL BAR](hide-tool-bar.md) [Menu bar height](menu-bar-height.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1016 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md index ad691207d12e64..ee9e771c7693a8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md @@ -60,3 +60,13 @@ La méthode projet DEBUG est listée ci-dessous :     End if  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 157 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md index d818e66f468bb0..95c22fb62a87c3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md @@ -21,4 +21,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Utiliser des transactions* \ No newline at end of file +*Utiliser des transactions* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 961 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md index 7883bbf6284dbd..789b36767e7f7a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -La commande **TRANSFORM PICTURE** permet d’appliquer une transformation de type *opérateur* à l’image passée dans le paramètre *image*. - -**Note :** Cette commande reprend et étend les fonctionnalités proposées par les opérateurs “classiques” de transformation d’images (+/, etc., cf. section [C\_BOOLEAN](c-boolean.md)). Ces opérateurs restent parfaitement utilisables dans 4D. +La commande **TRANSFORM PICTURE** permet d’appliquer une transformation de type *opérateur* à l’image passée dans le paramètre *image*.Cette commande reprend et étend les fonctionnalités proposées par les opérateurs “classiques” de transformation d’images (+/, etc., cf. section [C\_BOOLEAN](c-boolean.md)). Ces opérateurs restent parfaitement utilisables dans 4D. L’*image* source est modifiée directement à l’issue de l’exécution de la commande. A noter cependant que certaines opérations ne sont pas destructives et peuvent être annulées via l’opération inverse ou l’opération “Réinitialisation”. Par exemple, une image réduite à 1 % retrouvera sa taille originale sans altération si elle est agrandie 100 fois par la suite. Les transformations ne modifient pas le type d’origine de l’image : par exemple, une image vectorielle restera vectorielle à l’issue de la transformation. @@ -72,4 +70,13 @@ Voici un exemple de recadrage (l’image est affichée dans le formulaire avec l #### Voir aussi -[COMBINE PICTURES](combine-pictures.md) \ No newline at end of file +[COMBINE PICTURES](combine-pictures.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 988 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md index e12f1c9ff426d5..81fc7e0697ea2d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md @@ -50,4 +50,13 @@ Utilisez la fonction **Trigger event** pour structurer vos triggers comme ci-des [In transaction](in-transaction.md) *Présentation des triggers* [Trigger level](trigger-level.md) -[TRIGGER PROPERTIES](trigger-properties.md) \ No newline at end of file +[TRIGGER PROPERTIES](trigger-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 369 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md index 9dcf748de38947..843997249cd662 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md @@ -23,4 +23,13 @@ Reportez-vous à la description des *Triggers en cascade*. *Présentation des triggers* [Trigger event](trigger-event.md) -[TRIGGER PROPERTIES](trigger-properties.md) \ No newline at end of file +[TRIGGER PROPERTIES](trigger-properties.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 398 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md index dc166d8455ddca..e5c3c8621a84c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md @@ -37,4 +37,13 @@ Le numéro de table et d'enregistrement pour l'enregistrement concerné par l'é *A propos des numéros d'enregistrements* *Présentation des triggers* [Trigger event](trigger-event.md) -[Trigger level](trigger-level.md) \ No newline at end of file +[Trigger level](trigger-level.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 399 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md index 942c774fbed7d3..8b5765e9969b94 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md @@ -28,4 +28,13 @@ L'exemple suivant met la variable *vbOptions* à Vrai : #### Voir aussi [False](false.md) -[Not](not.md) \ No newline at end of file +[Not](not.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 214 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md index f7a23394f297ff..dc053a311e6739 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -**Trunc** retourne *nombre* dont la partie décimale a été tronquée à partir du nombre de décimales spécifié par *nbDécimales*. **Trunc** arrondit toujours *nombre* à la valeur inférieure. +**Trunc** retourne *nombre* dont la partie décimale a été tronquée à partir du nombre de décimales spécifié par *nbDécimales*.arrondit toujours *nombre* à la valeur inférieure. Si *nbDécimales* est positif, la troncature se fait sur la partie décimale de *nombre*. Si *nbDécimales* est négatif, la troncature se fait sur la partie entière de *nombre*. @@ -34,4 +34,13 @@ L'exemple suivant illustre la manière dont **Trunc** fonctionne dans différent #### Voir aussi -[Round](round.md) \ No newline at end of file +[Round](round.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 95 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md index d6ff3b694ebead..890f1e516ab895 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md @@ -37,4 +37,16 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi -[DELETE SELECTION](delete-selection.md) \ No newline at end of file +[DELETE SELECTION](delete-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1051 | +| Thread safe | ✓ | +| Modifie les variables | OK | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md index 1f04d9c9501b19..97425408308f63 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md @@ -144,4 +144,13 @@ Référez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-da [Is a variable](is-a-variable.md) [Undefined](undefined.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 295 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md index 555c48a40b660b..0e0cf98dc430e1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -La commande **Undefined** retourne Vrai si le résultat de l'évaluation d'*expression* n'est pas une valeur définie, sinon elle retourne Faux si *expression* a été définie. - -* Une variable est définie si elle a été créée via une directive de compilation ou si une valeur lui a été assignée. Elle est indéfinie dans tous les autres cas. Si la base de données a été compilée, la fonction **Undefined** retourne Faux pour toutes les variables. +La commande **Undefined** retourne Vrai si le résultat de l'évaluation d'*expression* n'est pas une valeur définie, sinon elle retourne Faux si *expression* a été définie.retourne Faux pour toutes les variables. * Une propriété d'objet est indéfinie si elle n'existe pas dans l'objet. * La commande **Undefined** retourne toujours Faux pour les champs. @@ -59,4 +57,13 @@ Cet exemple compare les différents résultats de la commande [Undefined](undefi #### Voir aussi -[CLEAR VARIABLE](clear-variable.md) \ No newline at end of file +[CLEAR VARIABLE](clear-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 82 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md index 84bad4e849fa42..3bc71469ca85a3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md @@ -49,4 +49,13 @@ L'exemple suivant ajoute des enregistrements à l'ensemble des meilleurs clients #### Voir aussi [DIFFERENCE](difference.md) -[INTERSECTION](intersection.md) \ No newline at end of file +[INTERSECTION](intersection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 120 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md index f1af403b1e5060..69b8f1424c6cc8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md @@ -28,4 +28,13 @@ Si les enregistrements contiennent une quantité importante de données, de cham #### Voir aussi [LOAD RECORD](load-record.md) -*Verrouillage d'enregistrements* \ No newline at end of file +*Verrouillage d'enregistrements* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 212 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md index c8fd9c6e3934f9..51a2385b9783e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **UNREGISTER CLIENT** “désinscrit” le client 4D de 4D Server. Il doit avoir été préalablement inscrit à l’aide de la commande [REGISTER CLIENT](register-client.md). @@ -35,4 +32,14 @@ Si le client est correctement désinscrit, la variable système OK prend la vale [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[REGISTER CLIENT](register-client.md) \ No newline at end of file +[REGISTER CLIENT](register-client.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 649 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md index 2045ae8c22d0fc..b531f2e75e428e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md @@ -36,4 +36,13 @@ Reportez-vous à l'exemple de [Lowercase](lowercase.md). #### Voir aussi -[Lowercase](lowercase.md) \ No newline at end of file +[Lowercase](lowercase.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 13 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md index c39e2abe173813..0126f077c6d0dc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md @@ -48,4 +48,14 @@ La variable système OK prend la valeur 1 si le filtre est correctement chargé, [IMPORT TEXT](import-text.md) [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 205 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md index 0190f4060dae03..be98bbfe72f873 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md @@ -29,4 +29,15 @@ Différents événements peuvent rendre une sélection temporaire obsolète : la [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[CUT NAMED SELECTION](cut-named-selection.md) \ No newline at end of file +[CUT NAMED SELECTION](cut-named-selection.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 332 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md index 824cb959d70890..2827ba5036d39d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md @@ -36,4 +36,15 @@ L'exemple suivant utilise [LOAD SET](load-set.md) pour charger un ensemble des s #### Voir aussi [CLEAR SET](clear-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 118 | +| Thread safe | ✓ | +| Change l'enregistrement courant || +| Change la sélection courante || + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md index 847e80d8fda53d..6ebdc90f758bfa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La fonction **User in group** retourne Vrai si *nomUtilisateur* appartient au *groupe*. @@ -44,4 +41,13 @@ L'exemple suivant recherche des factures. Si l'utilisateur courant est dans le g #### Voir aussi -[Current user](current-user.md) \ No newline at end of file +[Current user](current-user.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 338 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md index 66f06c1786f551..febb98f3898d90 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description **Note de compatibilité :** Cette commande fonctionne uniquement dans les bases binaires. Elle retourne toujours un BLOB vide dans les projets. @@ -32,4 +29,14 @@ Ce principe permet de conserver une sauvegarde des utilisateurs parmi les donné #### Voir aussi -[BLOB TO USERS](blob-to-users.md) \ No newline at end of file +[BLOB TO USERS](blob-to-users.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 849 | +| Thread safe | ✗ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md index 5da8dd09a12a73..b6f3904670b629 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Validate password** retourne Vrai si la chaîne passée dans *motDePasse* est le mot de passe du compte utilisateur dont le n° de référence ou le nom est passé dans *utilisateur*. @@ -62,4 +59,13 @@ Dans la [On REST Authentication database method](on-rest-authentication-database [GET USER PROPERTIES](get-user-properties.md) [Set user properties](set-user-properties.md) -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 638 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md index 41ddf647c1ad09..4d98b4797f91d9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md @@ -14,7 +14,7 @@ displayed_sidebar: docs #### Description -**VALIDATE TRANSACTION** accepte la transaction ouverte par la commande [START TRANSACTION](start-transaction.md) de niveau correspondant dans le process courant. **VALIDATE TRANSACTION** sauvegarde toutes les modifications effectuées sur les données de la base pendant la transaction. +**VALIDATE TRANSACTION** accepte la transaction ouverte par la commande [START TRANSACTION](start-transaction.md) de niveau correspondant dans le process courant.sauvegarde toutes les modifications effectuées sur les données de la base pendant la transaction. A compter de la version 11 de 4D, vous pouvez imbriquer plusieurs transactions (sous-transactions). Si la transaction principale est annulée, toutes les sous-transactions sont annulées, même si elles ont été validées individuellement à l'aide de cette commande. @@ -29,4 +29,14 @@ A noter que lorsque OK vaut 0, la transaction est automatiquement annulée en in [CANCEL TRANSACTION](cancel-transaction.md) [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Utiliser des transactions* \ No newline at end of file +*Utiliser des transactions* + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 240 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md index 72e2d32d0a16d1..e80fd1a6d15d8f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md @@ -112,4 +112,13 @@ Vous souhaitez obtenir la somme de toutes les valeurs numériques dans une colle #### Voir aussi [OB Get type](ob-get-type.md) -[Type](type.md) \ No newline at end of file +[Type](type.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1509 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md index 5b6c168f3f14ca..69f2db075b15c2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md @@ -131,4 +131,14 @@ Lorsque ces méthodes ont été ajoutées à votre application, vous pouvez écr [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 532 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md index 46ec721a98f2db..438963712e4cac 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **VARIABLE TO VARIABLE** écrit la valeur de la ou des variable(s) *varSource1* (*varSource2*, etc.), dans la ou les variable(s) process *varDestination* (*varDestination2*, etc.) du process de destination dont vous avez passé le numéro dans *process*. @@ -61,4 +58,13 @@ L'exemple suivant récupère un tableau process depuis le process désigné par [GET PROCESS VARIABLE](get-process-variable.md) *Introduction aux process* -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 635 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md index 44bde9f8a180bb..d1f535301a8cbf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md @@ -65,4 +65,13 @@ Cet exemple vous permet d’obtenir la variance des valeurs placées dans un tab [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Sum squares](sum-squares.md) \ No newline at end of file +[Sum squares](sum-squares.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 27 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md index 2ad73ada1adad8..4925a73e3723d7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md @@ -41,4 +41,14 @@ Si la méthode de rétro-appel passée n’existe pas, la vérification n’est #### Voir aussi -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1008 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md index 592f743971e193..e249de5845d02d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -La commande **VERIFY DATA FILE** effectue une vérification structurelle des objets contenus dans le fichier de données 4D désigné par *cheminStructure* et *cheminDonnées*. - -**Note :** Pour plus d’informations sur le processus de vérification des données, reportez-vous au manuel Mode Développement. +La commande **VERIFY DATA FILE** effectue une vérification structurelle des objets contenus dans le fichier de données 4D désigné par *cheminStructure* et *cheminDonnées*.Pour plus d’informations sur le processus de vérification des données, reportez-vous au manuel Mode Développement. *cheminStructure* désigne le fichier de structure (compilé ou non) associé au fichier de données à vérifier. Il peut s’agir du fichier de structure ouvert ou de tout autre fichier de structure. Vous devez passer un chemin d’accès complet, exprimé avec la syntaxe du système d’exploitation. Vous pouvez également passer une chaîne vide, dans ce cas une boîte de dialogue standard d’ouverture de fichiers apparaît, permettant à l’utilisateur de désigner le fichier de structure à utiliser. @@ -171,4 +169,14 @@ Si la méthode de rétro-appel passée n’existe pas, la vérification n’est #### Voir aussi -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 939 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md index bd86c653caab68..11c5de385de185 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md @@ -52,4 +52,13 @@ Cet exemple compare un hash de mot de passe créé par la commande [Generate pas #### Voir aussi -[Generate password hash](generate-password-hash.md) \ No newline at end of file +[Generate password hash](generate-password-hash.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1534 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md index 576c57d22722f1..afdb241f17da6c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md @@ -42,4 +42,13 @@ Ce test permet d’exécuter du code différent selon que la version est une app #### Voir aussi [Application type](application-type.md) -[Application version](application-version.md) \ No newline at end of file +[Application version](application-version.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 495 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md index 1e9416fba90ed2..17cfc636d6be1d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md @@ -96,4 +96,14 @@ Votre application comprend des opérations par lots qui sont exécutées la nuit #### Voir aussi -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 472 | +| Thread safe | ✓ | +| Modifie les variables | OK, error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md index 7ccb747ae674fe..8eb22af790bc58 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md @@ -38,4 +38,13 @@ A l'aide de la zone de défilement *ttVolumes*, vous voulez afficher la liste de [DOCUMENT LIST](document-list.md) [FOLDER LIST](folder-list.md) -[VOLUME ATTRIBUTES](volume-attributes.md) \ No newline at end of file +[VOLUME ATTRIBUTES](volume-attributes.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 471 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md index ca4a5964f65ea1..f6bda309e22261 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Back URL available** permet de savoir s’il existe un URL précédent disponible dans la séquence d’URLs ouverts dans la zone Web désignée par les paramètres *\** et *objet*. @@ -27,4 +24,13 @@ La commande retourne Vrai si un URL existe et Faux sinon. Cette commande permet #### Voir aussi [WA Forward URL available](wa-forward-url-available.md) -[WA OPEN BACK URL](wa-open-back-url.md) \ No newline at end of file +[WA OPEN BACK URL](wa-open-back-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1026 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md index 03ec6d7f515356..df57d16cc8676a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Create URL history menu** crée et remplit un menu pouvant être utilisé directement pour la navigation parmi les URLs visités au cours de la session dans la zone Web désignée par les paramètres *\** et *objet*. Elle permet de construire une interface de navigation personnalisée. @@ -64,4 +61,13 @@ Le code suivant pourrait être associé à un bouton 3D avec pop up menu libell [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[WA GET URL HISTORY](wa-get-url-history.md) \ No newline at end of file +[WA GET URL HISTORY](wa-get-url-history.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1049 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md index 013e697ac45694..f48b37db0c6861 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Evaluate JavaScript** exécute dans la zone Web désignée par les paramètres *\** et *objet* le code JavaScript passé dans *codeJS* et retourne le résultat. Cette commande doit être appelée après le chargement complet de la page (l'événement formulaire On End URL Loading doit avoir été généré). @@ -103,4 +100,13 @@ Vous pouvez alors évaluer le code JavaScript depuis 4D : #### Voir aussi -[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) \ No newline at end of file +[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1029 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md index 5a2b4ff6003730..b0ea7e1315f81f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA EXECUTE JAVASCRIPT FUNCTION** exécute dans la zone Web désignée par les paramètres *\** et *objet* la fonction JavaScript *fonctionJS* et retourne facultativement son résultat dans le paramètre *résultat*. @@ -59,4 +56,13 @@ La fonction JavaScript "getCustomerInfos" reçoit un identifiant numérique en p #### Voir aussi -[WA Evaluate JavaScript](wa-evaluate-javascript.md) \ No newline at end of file +[WA Evaluate JavaScript](wa-evaluate-javascript.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1043 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md index 1197b7eec90ed1..cc278016ffeb0f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Forward URL available** permet de savoir s’il existe un URL suivant disponible dans la séquence d’URLs ouverts dans la zone Web désignée par les paramètres *\** et *objet*. @@ -27,4 +24,13 @@ La commande retourne Vrai si un URL existe et Faux sinon. Cette commande permet #### Voir aussi [WA Back URL available](wa-back-url-available.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1027 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md index 8fda3ad6ee4650..d96e911e2a16e5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Get current URL** retourne l’adresse URL de la page affichée dans la zone Web désignée par les paramètres *\** et *objet*. @@ -37,4 +34,13 @@ La page affichée est l’URL "www.apple.com" et la page "www.4d.com" est en cou #### Voir aussi -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1025 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md index cb83a0a98702d4..2cb5463224d178 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA GET EXTERNAL LINKS FILTERS** retourne dans les tableaux *tabFiltres* et *tabAutorisRefus* les filtres de liens externes de la zone Web désignée par les paramètres *\** et *objet*. Si aucun filtre n’est actif, les tableaux sont retournés vides. @@ -28,4 +25,13 @@ Les filtres sont installés par la commande [WA SET EXTERNAL LINKS FILTERS](wa-s #### Voir aussi [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1033 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md index e055c4bb662faa..272634ceb6fccd 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Get last filtered URL** retourne le dernier URL ayant été filtré dans la zone Web désignée par les paramètres *\** et *objet*. @@ -35,4 +32,13 @@ Il est judicieux d’appeler cette commande dans le contexte des événements fo [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) [WA GET URL FILTERS](wa-get-url-filters.md) [WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1035 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md index 542eb690f1aa6a..b18d392d07a1d6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA GET LAST URL ERROR** vous permet de récupérer plusieurs informations relatives à la dernière erreur ayant eu lieu dans la zone Web désignée par les paramètres *\** et *objet*. @@ -35,4 +32,13 @@ Il est judicieux d’appeler cette commande dans le cadre de l’événement for #### Voir aussi -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1034 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md index ceedb7c7f08aed..f0ba3ff475f8c9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Get page content** retourne le code HTML de la page courante ou en cours d’affichage dans la zone Web désignée par les paramètres *\** et *objet*. @@ -26,4 +23,13 @@ Cette commande retourne une chaîne vide si le contenu de la page courante n’e #### Voir aussi -[WA SET PAGE CONTENT](wa-set-page-content.md) \ No newline at end of file +[WA SET PAGE CONTENT](wa-set-page-content.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1038 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md index 64d4ce1780d05b..824d1691a712c4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Get page title** retourne le titre de la page courante ou en cours d’affichage dans la zone Web désignée par les paramètres *\** et *objet*. Le titre correspond à la balise HTML "Title". @@ -26,4 +23,13 @@ Cette commande retourne une chaîne vide s’il n’y a pas de titre disponible #### Voir aussi -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1036 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md index 2d8ee2e80bd282..4ccddc745b8830 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA GET PREFERENCE** permet de lire la valeur courante d’une préférence dans la zone Web désignée par les paramètres *\** et *objet*. @@ -38,4 +35,13 @@ Passez dans le paramètre *valeur* une variable devant recevoir la valeur couran #### Voir aussi -[WA SET PREFERENCE](wa-set-preference.md) \ No newline at end of file +[WA SET PREFERENCE](wa-set-preference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1042 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md index e4beb2c64b0dc6..114525b3dacead 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA GET URL FILTERS** retourne dans les tableaux *tabFiltres* et *tabAutorisRefus* les filtres actifs dans la zone Web désignée par les paramètres *\** et *objet*. Si aucun filtre n’est actif, les tableaux sont retournés vides. @@ -28,4 +25,13 @@ Les filtres sont installés par la commande [WA SET URL FILTERS](wa-set-url-filt #### Voir aussi [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1031 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md index 3954300d5f60c4..fe133d2b6786e9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA GET URL HISTORY** retourne un ou deux tableaux contenant les URLs visités au cours de la session dans la zone Web désignée par les paramètres *\** et *objet*. Elle permet de construire une interface de navigation personnalisée. @@ -45,4 +42,13 @@ S’il est passé, le paramètre *tabTitres* contient la liste des noms de fenê #### Voir aussi -[WA Create URL history menu](wa-create-url-history-menu.md) \ No newline at end of file +[WA Create URL history menu](wa-create-url-history-menu.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1048 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md index b9bfaa2c25b022..7534b5153ae589 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA OPEN BACK URL** charge dans la zone Web désignée par les paramètres *\** et *objet* l’URL précédent dans la séquence d’URLs ouverts. @@ -26,4 +23,13 @@ S’il n’y a pas d’URL précédent, la commande ne fait rien. Vous pouvez te #### Voir aussi [WA OPEN FORWARD URL](wa-open-forward-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1021 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md index 11685bcec00a99..5220acd482625d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA OPEN FORWARD URL** charge dans la zone Web désignée par les paramètres *\** et *objet* l’URL suivant dans la séquence d’URLs ouverts. @@ -26,4 +23,13 @@ S’il n’y a pas d’URL suivant (c’est-à-dire si l’utilisateur n’a jam #### Voir aussi [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1022 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md index 3bbf0b61197c0e..6edba5b4edcdda 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA OPEN URL** charge dans la zone Web désignée par les paramètres *\** et *objet* l’URL passé dans le paramètre *url*. @@ -49,4 +46,13 @@ Cette commande a le même effet que la modification de la valeur de la variable [OPEN URL](open-url.md) [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1020 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md index 19b6ae6c8db6c9..fbc34942981c91 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA OPEN WEB INSPECTOR** ouvre un inspecteur web pour la zone web désignée par les paramètres *\** et *objet*. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Voir aussi *Gestion programmée des zones Web* -[WA Run offscreen area](wa-run-offscreen-area.md) \ No newline at end of file +[WA Run offscreen area](wa-run-offscreen-area.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1736 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md index 58700b4d12ea3a..923d5226d17960 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA REFRESH CURRENT URL** provoque le rechargement de l’URL courant affiché dans la zone Web désignée par les paramètres *\** et *objet*. #### Voir aussi -[WA STOP LOADING URL](wa-stop-loading-url.md) \ No newline at end of file +[WA STOP LOADING URL](wa-stop-loading-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1023 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md index c75180877cba84..28b5b1a60ab532 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA Run offscreen area** crée une zone web dans la mémoire qui peut être utilisée pour charger et parser automatiquement des pages web. @@ -97,4 +94,14 @@ La variable système OK est définie sur 0 si le timeout a été atteint ou si l [FORM Event](form-event.md) *Gestion programmée des zones Web* -[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) \ No newline at end of file +[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1727 | +| Thread safe | ✗ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md index 3a052fd0ec5316..0f54cda0f029e0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA SET EXTERNAL LINKS FILTERS** permet de mettre en place un ou plusieurs filtre(s) de liens externes pour la zone Web désignée par les paramètres *\** et *objet*. Les filtres de liens externes déterminent si un URL associé à la page courante via un lien doit être ouvert dans la zone Web ou dans le navigateur Web par défaut de la machine. @@ -74,4 +71,13 @@ Cet exemple combine des filtrages de sites et de liens externes : #### Voir aussi [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1032 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md index 0de1a0ac09b73a..3699cab2ee7647 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Note de compatibilité Cette commande historique n'est plus vraiment utile. Avec le renforcement de la sécurité dans les navigateurs modernes, il existe de plus en plus de restrictions sur la modification du contenu des pages "à la volée". Une approche plus fiable consiste à créer un fichier local (par exemple dans le dossier temporaire) et à utiliser [WA OPEN URL](wa-open-url.md) pour le charger. Pour effacer le contenu, il suffit d'appeler **WA OPEN URL**(myArea;”about:blank”). @@ -46,4 +43,13 @@ Affichage de la phrase "Hello world !" et définition d’un URL de base "file:/ #### Voir aussi -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1037 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md index 6149b6608f6769..4ab31499a9b8d5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA SET PREFERENCE** permet de fixer différentes préférences pour la zone Web désignée par les paramètres *\** et *objet*. @@ -51,4 +48,13 @@ Vous souhaitez autoriser le déposer d'URLs dans la zone Web 'myarea' : #### Voir aussi -[WA GET PREFERENCE](wa-get-preference.md) \ No newline at end of file +[WA GET PREFERENCE](wa-get-preference.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1041 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md index 81275ab183d637..5a507493904c21 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA SET URL FILTERS** permet de mettre en place un ou plusieurs filtre(s) pour la zone Web désignée par les paramètres *\** et *objet*. @@ -132,4 +129,13 @@ Vous souhaitez interdire des adresses IP spécifiques : #### Voir aussi [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1030 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md index 0ac2d6eb380f85..df3a08913d25fa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA STOP LOADING URL** stoppe le chargement des ressources de l’URL courant de la zone Web désignée par les paramètres *\** et *objet*. #### Voir aussi -[WA REFRESH CURRENT URL](wa-refresh-current-url.md) \ No newline at end of file +[WA REFRESH CURRENT URL](wa-refresh-current-url.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1024 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md index 1cbd25ac0ea36a..1e398afd290763 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA ZOOM IN** augmente la taille du texte affiché dans la zone Web désignée par les paramètres *\** et *objet*. @@ -27,4 +24,13 @@ Sous Windows, la portée de cette commande est globale : le paramétrage est con #### Voir aussi -[WA ZOOM OUT](wa-zoom-out.md) \ No newline at end of file +[WA ZOOM OUT](wa-zoom-out.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1039 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md index 8671d74b570f6f..553f8d508d4550 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WA ZOOM OUT** réduit la taille du texte affiché dans la zone Web désignée par les paramètres *\** et *objet*. @@ -27,4 +24,13 @@ Sous Windows, la portée de cette commande est globale : le paramétrage est con #### Voir aussi -[WA ZOOM IN](wa-zoom-in.md) \ No newline at end of file +[WA ZOOM IN](wa-zoom-in.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1040 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md index d801f3c9cea55a..80dba06cefab7f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md @@ -23,4 +23,13 @@ Reportez-vous à l'exemple de la commande [WEB GET BODY PART](web-get-body-part. #### Voir aussi -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1211 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md index e4d364ad77c1f5..4695c7d59c7f3c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md @@ -91,4 +91,13 @@ Voici le code de la méthode GetFile : [WEB Get body part count](web-get-body-part-count.md) [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET VARIABLES](web-get-variables.md) \ No newline at end of file +[WEB GET VARIABLES](web-get-variables.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1212 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md index a9d67067c9ba2d..7ffacfa7da9190 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md @@ -22,4 +22,13 @@ Si cette commande est appelée hors du contexte d’une session Web, elle retour #### Voir aussi *Gestion des sessions Web* -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1162 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md index 60e241469c66a5..3126d942c84afc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md @@ -47,4 +47,13 @@ Lorsque le formulaire est soumis au serveur Web, la variable $texteRequete reço #### Voir aussi [WEB GET BODY PART](web-get-body-part.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 814 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md index 3660db3595088b..48fb3026e269a5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md @@ -115,4 +115,13 @@ A titre indicatif, voici une liste non exhaustive des champs HTTP pouvant être #### Voir aussi [WEB GET HTTP BODY](web-get-http-body.md) -[WEB SET HTTP HEADER](web-set-http-header.md) \ No newline at end of file +[WEB SET HTTP HEADER](web-set-http-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 697 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md index b761756c608c6d..9c952a13026d18 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md @@ -62,4 +62,13 @@ Lorsque vous utilisez le *sélecteur* Web debug log, vous pouvez récupérer une #### Voir aussi -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1209 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md index 9eceb562500f19..615ec0eecc832e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md @@ -125,4 +125,13 @@ $webServerInfo:=WEB Get server info(True) [License info](license-info.md) [Process activity](../commands/process-activity.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1531 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md index 74b4988b9253cd..b4df583dd71897 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md @@ -60,3 +60,13 @@ Dans la méthode projet STATS, écrivez le code suivant : ``` Vous pouvez envoyer la page "stats.shtm" via un lien URL ou à l'aide de commande [WEB SEND FILE](web-send-file.md). + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 658 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md index c951545c35f78b..b2366fd2e71bf2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md @@ -58,4 +58,13 @@ On obtient alors : #### Voir aussi -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 683 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md index de1c4d804e04b2..fb7259f93bb7a0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md @@ -24,4 +24,13 @@ Cette commande permet par exemple, le cas échéant, de refuser les tentatives d #### Voir aussi -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 698 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md index 2489d2778a4208..fc112242643db0 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md @@ -36,3 +36,13 @@ Vous souhaitez tester si le serveur Web de 4D est lancé :     ... //effectuer les actions appropriées  End if ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1313 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md index bb5a2a6a59d977..25b49830fe6588 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md @@ -34,4 +34,13 @@ Après l’exécution de cette commande, si un client Web envoie une requête ut #### Voir aussi *Gestion des sessions Web* -[On Web Legacy Close Session database method](on-web-legacy-close-session-database-method.md) \ No newline at end of file +[On Web Legacy Close Session database method](on-web-legacy-close-session-database-method.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1208 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md index 1e58c2460be6a4..0f0f82a28ac1aa 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md @@ -37,4 +37,13 @@ Le paramètre *dateExp* reçoit la date d’expiration et le paramètre *heureEx *Gestion des sessions Web* [WEB Get Current Session ID](web-get-current-session-id.md) -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1207 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md index 4ba7e655b1c9c6..bef1637d783c7a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md @@ -78,4 +78,13 @@ Reportez-vous à l’exemple de la routine [PICTURE TO BLOB](picture-to-blob.md) #### Voir aussi -[WEB SEND FILE](web-send-file.md) \ No newline at end of file +[WEB SEND FILE](web-send-file.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 654 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md index 252014b16f1095..c78b66b1a40141 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md @@ -47,4 +47,14 @@ Si le fichier à envoyer existe et si le timeout n’est pas dépassé, la varia #### Voir aussi -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 619 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md index 22a37e190015e7..64ca19d9c1d613 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md @@ -54,3 +54,13 @@ Dans la [QR SET DESTINATION](qr-set-destination.md), placez les instructions sui        ... //Placez ici le code de la recherche  End case ``` + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 659 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md index 92d488d40428da..ad1abfc8273e65 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md @@ -78,4 +78,13 @@ Cet exemple illustre l’emploi de l’option chunked avec la commande **WEB SEN #### Voir aussi [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 815 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md index bbf1efcafd3890..ca9d33db7bda38 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md @@ -42,4 +42,13 @@ La méthode suivante : #### Voir aussi -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 677 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md index 3f869e342e4d3e..c1c3155e190313 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md @@ -51,4 +51,13 @@ Authentification auprès d’un Web Service situé derrière un proxy : #### Voir aussi [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE Get info](web-service-get-info.md) \ No newline at end of file +[WEB SERVICE Get info](web-service-get-info.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 786 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md index 487eb287452ab4..aa4d81275e6519 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md @@ -152,4 +152,14 @@ Si la requête est correctement acheminée et que le Web Service l’a acceptée #### Voir aussi [WEB SERVICE GET RESULT](web-service-get-result.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 778 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md index 70eb1fdef3ef8d..7b035ef10c26ce 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md @@ -28,3 +28,13 @@ Le paramètre *typeInfo* vous permet d’indiquer le type d’information que vo | Web Service HTTP status code | Entier long | 2 | Code de statut HTTP (à utiliser en cas d’erreur principale 9912). | Une chaîne vide est retournée lorsqu’aucune information n’est disponible, en particulier si la dernière requête SOAP n'a pas généré d'erreur. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 780 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md index a9858e06053a25..300b6613b7cee5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -La commande **WEB SERVICE GET RESULT** permet de récupérer une valeur renvoyée par le Web Service à l’issue du traitement effectué. - -**Note :** Cette commande doit être utilisée uniquement après la commande [WEB SERVICE CALL](web-service-call.md). +La commande **WEB SERVICE GET RESULT** permet de récupérer une valeur renvoyée par le Web Service à l’issue du traitement effectué.Cette commande doit être utilisée uniquement après la commande [WEB SERVICE CALL](web-service-call.md). Le paramètre *valeurRetour* reçoit la valeur renvoyée par le Web Service. Passez dans ce paramètre une variable 4D. Cette variable est généralement *$0*, correspondant à la valeur retournée par la méthode proxy. Il est toutefois possible d’utiliser des variables intermédiaires (vous devez utiliser des variables process uniquement). @@ -52,4 +50,13 @@ Imaginons un Web Service retournant l’heure courante dans n’importe quelle v #### Voir aussi [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 779 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md index b6207a04f9ae3f..69089e04c25936 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md @@ -60,4 +60,13 @@ Utilisation de la version 1.2 du protocole SOAP : #### Voir aussi -[WEB SERVICE CALL](web-service-call.md) \ No newline at end of file +[WEB SERVICE CALL](web-service-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 901 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md index 2197b94aacb52b..b61512f6e1234e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md @@ -70,4 +70,13 @@ Cet exemple définit deux paramètres : #### Voir aussi [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE GET RESULT](web-service-get-result.md) \ No newline at end of file +[WEB SERVICE GET RESULT](web-service-get-result.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 777 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md index ea6ddc55fcc7b3..2aa820b3442536 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md @@ -26,3 +26,13 @@ Vous passez dans le paramètre *homePage* le nom de la page HTML d’accueil ou Pour ne plus envoyer *homePage* comme page d’accueil pour le process Web courant, appelez de nouveau la commande **WEB SET HOME PAGE** en passant une chaîne vide ("") dans *homePage*. **Note :** La page d’accueil par défaut du serveur Web est définie dans les Propriétés de la base. + + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 639 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md index 3e16b2055f4ba0..9ad7cdab60e70b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md @@ -63,4 +63,13 @@ Si vous ne spécifiez pas de statut, celui-ci est automatiquement HTTP/1.0 200 O #### Voir aussi -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 660 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md index 2de6bbae036e38..2f83cd2f2aac4f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md @@ -79,4 +79,13 @@ Voici un exemple d'entrée enregistrée dans le fichier d'historique : #### Voir aussi [WEB GET OPTION](web-get-option.md) -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 5 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md index e7bf6b7be0bdf9..168a70e368c703 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md @@ -36,4 +36,14 @@ Si vous passez un chemin d'accès invalide, une erreur liée à la gestion de fi #### Voir aussi [Get 4D folder](get-4d-folder.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 634 | +| Thread safe | ✓ | +| Modifie les variables | error | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md index 253920d6f4e754..abff4f5ebe2cd1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md @@ -24,4 +24,14 @@ Si le serveur Web est correctement démarré, OK prend la valeur 1, sinon OK pre #### Voir aussi -[WEB STOP SERVER](web-stop-server.md) \ No newline at end of file +[WEB STOP SERVER](web-stop-server.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 617 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md index 576430216835b2..6455e46f874e20 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md @@ -20,4 +20,13 @@ Si le serveur Web n'était pas lancé, la commande ne fait rien. #### Voir aussi -[WEB START SERVER](web-start-server.md) \ No newline at end of file +[WEB START SERVER](web-start-server.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 618 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md index ef939f242d7e94..392bdca9627bbc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md @@ -55,4 +55,13 @@ Exemple de *Méthode base Sur authentification Web* en mode Digest #### Voir aussi [Generate digest](generate-digest.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 946 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md index a639c44919dcde..758ac564f12ab5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Window kind** retourne le type de fenêtre 4D dont vous avez passé la référence dans *fenêtre*. Si la fenêtre n'existe pas, **Window kind** retourne 0 (zéro). @@ -40,4 +37,13 @@ Reportez-vous à l'exemple de la commande [WINDOW LIST](window-list.md). [GET WINDOW RECT](get-window-rect.md) [Get window title](get-window-title.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 445 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md index 2e5715c1474a1c..a6735e85a83ae6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **WINDOW LIST** remplit le tableau *fenêtres* avec les numéros de référence des fenêtres actuellement ouvertes dans tous les process (process moteur et process utilisateur). Seules les fenêtres "visibles" (i.e. non cachées) sont retournées. @@ -52,4 +49,13 @@ La méthode projet suivante place en "mosaïque" toutes les fenêtres ouvertes ( #### Voir aussi [Window kind](window-kind.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 442 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md index b5d9cb16db6a03..24a0f165d835c7 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* - - #### Description La commande **Window process** retourne le numéro du process qui exécute la fenêtre dont le numéro de référence est passé dans *fenêtre*. Si la fenêtre n'existe pas, la commande retourne *0* (zéro). @@ -25,4 +22,13 @@ Si vous omettez le paramètre *fenêtre*, **Window process** retourne le numéro #### Voir aussi -[Current process](current-process.md) \ No newline at end of file +[Current process](current-process.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 446 | +| Thread safe | ✗ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md index cb7dc288969bd9..70e78cb6d440e6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Windows Alt down** retourne Vrai si la touche **Alt** Windows est enfoncée. - -**Note :** Lorsqu'elle est appelée sous Mac OS, **Windows Alt down** retourne Vrai si la touche Macintosh **Option** est enfoncée. +**Windows Alt down** retourne Vrai si la touche **Alt** Windows est enfoncée.Lorsqu'elle est appelée sous Mac OS, **Windows Alt down** retourne Vrai si la touche Macintosh **Option** est enfoncée. #### Exemple @@ -30,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 563 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md index 3a0f9550ce3cac..a12e64be8b4b91 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Windows Ctrl down** retourne Vrai si la touche **Ctrl** Windows est enfoncée. - -**Note :** Lorsqu'elle est appelée sous Mac OS, **Windows Ctrl down** retourne Vrai si la touche Macintosh **Commande** est enfoncée. +**Windows Ctrl down** retourne Vrai si la touche **Ctrl** Windows est enfoncée.Lorsqu'elle est appelée sous Mac OS, **Windows Ctrl down** retourne Vrai si la touche Macintosh **Commande** est enfoncée. #### Exemple @@ -30,4 +28,13 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 562 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md index 017197241bf8dd..6310f6130ffe3a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md @@ -45,4 +45,14 @@ Si l’exécution de la commande est correcte, la variable système Document con *Introduction aux images* [PICTURE TO BLOB](picture-to-blob.md) [READ PICTURE FILE](read-picture-file.md) -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 680 | +| Thread safe | ✓ | +| Modifie les variables | OK, Document | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md index f899f9b3ddfb9a..7435865c899fe9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md @@ -71,4 +71,13 @@ Exemple de document XML : #### Voir aussi [BASE64 DECODE](base64-decode.md) -[BASE64 ENCODE](base64-encode.md) \ No newline at end of file +[BASE64 ENCODE](base64-encode.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1091 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md index 0254e134d22002..43a5ca6903e9cf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md @@ -28,4 +28,14 @@ Si la commande a été correctement exécutée, la variable système OK prend la #### Voir aussi -[DOM Get XML information](dom-get-xml-information.md) \ No newline at end of file +[DOM Get XML information](dom-get-xml-information.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 732 | +| Thread safe | ✓ | +| Modifie les variables | OK | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md index 9bd3d2f8e63390..13384df755c8c4 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md @@ -36,4 +36,13 @@ Passez dans *sélecteur* une des constantes du thème *XML* ci-dessous, indiquan #### Voir aussi -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1096 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md index 002824b6a9bf48..dd75f17213c30f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md @@ -64,4 +64,13 @@ Insertion d’une image SVG : [DOM SET XML DECLARATION](dom-set-xml-declaration.md) [DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[XML GET OPTIONS](xml-get-options.md) \ No newline at end of file +[XML GET OPTIONS](xml-get-options.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 1090 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md index fd579dc1e82df5..1c2a59c27c59bf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md @@ -37,4 +37,13 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md). #### Voir aussi [Day of](day-of.md) -[Month of](month-of.md) \ No newline at end of file +[Month of](month-of.md) + +#### Propriétés + +| | | +| --- | --- | +| Numéro de commande | 25 | +| Thread safe | ✓ | + + diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/4d.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/4d.md index 4e660867e24ebf..4c02995e2a293d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/4d.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/4d.md @@ -6,8 +6,8 @@ displayed_sidebar: docs **4D** -> Object -| Paramètres | Type | | Description | -| ---------- | ------ | - | ---------------------------------------------- | -| classStore | Object | ← | Class Store containing all built-in 4D classes | +| Paramètres | Type | | Description | +| ---------- | ------ | - | ----------------------------------------------------- | +| classStore | Object | ← | Class store contenant toutes les classes 4D intégrées | -The **4D** keyword is described in the [**Concept page for Classes**](../Concepts/classes.md#4d). +Le mot-clé **4D** est décrit dans la [**Page de concepts pour les classes**](../Concepts/classes.md#4d). diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md index 6f1ebbef1db4f5..c87f9fa7ac8ba2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md @@ -8,28 +8,28 @@ displayed_sidebar: docs -| Paramètres | Type | | Description | -| ---------- | ------- | - | ----------------- | -| Résultat | Integer | ← | Form event number | +| Paramètres | Type | | Description | +| ---------- | ------- | - | ----------------------------- | +| Résultat | Integer | ← | Numéro d'événement formulaire | -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* #### Description -**Form event code** returns a numeric value identifying the type of form event that has just occurred. Usually, you will use **Form event code** from within a form or object method. +**Form event code** retourne une valeur numérique qui identifie le type d'événement formulaire qui vient de se produire. Habituellement, vous utiliserez **Form event code** dans une méthode formulaire ou une méthode objet. -4D provides predefined constants (found in the *Form Events* theme) in order to compare the values returned by the **Form event code** command. Certain events are generic (generated for any type of object) and others are specific to a particular type of object. +4D fournit des constantes prédéfinies (placées dans le thème *Evénements formulaire*) permettant de comparer les valeurs retournées par la commande **Form event code**. Certains événements sont génériques (générés pour tout type d'objet), d'autres sont spécifiques à un type d'objet particulier. -For a description of events, please refer to the [**Form Events**](../Events/overview.md) section. +Pour une description des événements, veuillez vous référer à la section [**Evénements formulaire**](../Events/overview.md). #### Exemple 1 -This example shows the On Validate event being used to automatically assign (to a field) the date that the record is modified: +Cet exemple montre l'utilisation de l'événement On Validate pour assigner automatiquement (à un champ) la date de modification de l'enregistrement : ```4d -  //Method of a form +  //Méthode formulaire  Case of   // ...     :(Form event code=On Validate) @@ -39,10 +39,10 @@ This example shows the On Validate event being used to automatically assign (to #### Exemple 2 -In this example, the complete handling of a drop-down list (initialization, user clicks, and object release) is encapsulated in the method of the object: +Dans l'exemple suivant, la gestion complète d'un menu déroulant (initialisation, clics et relâchement de l'objet) est placée dans la méthode de l'objet : ```4d -  //asBurgerSize Drop-down list Object Method +  //Méthode objet du menu déroulant taTaille  Case of     :(Form event code=On Load)        ARRAY TEXT(asBurgerSize;3) @@ -51,7 +51,7 @@ In this example, the complete handling of a drop-down list (initialization, user        asBurgerSize{1}:="Large"     :(Form event code=On Clicked)        If(asBurgerSize#0) -          ALERT("You chose a "+asBurgerSize{asBurgerSize}+" burger.") +          ALERT("Vous avez choisi la taille "+asBurgerSize{asBurgerSize}+".")        End if     :(Form event code=On Unload)        CLEAR VARIABLE(asBurgerSize) @@ -60,94 +60,94 @@ In this example, the complete handling of a drop-down list (initialization, user #### Exemple 3 -This example is a template for a form method. It shows each of the possible events that can occur when a summary report uses a form as an output form: +L'exemple suivant est une méthode formulaire générique. Elle fait apparaître chacun des événements qui peuvent survenir lorsqu'un formulaire est utilisé comme formulaire sortie : ```4d -  //Method of a form being used as output form for a summary report +  //Méthode d'un formulaire sortie  $vpFormTable:=Current form table  Case of   //...     :(Form event code=On Header) -  //A header area is about to be printed +  //La zone en-tête va être imprimée ou affichée        Case of           :(Before selection($vpFormTable->)) -  //Code for the first break header goes here +  //Le code pour la première rupture d'en-tête doit être placé ici           :(Level=1) -  //Code for a break header level 1 goes here +  //Le code pour la rupture d'en-tête niveau 1 doit être placé ici           :(Level=2) -  //Code for a break header level 2 goes here +  //Le code pour la rupture d'en-tête niveau 2 doit être placé ici   //...        End case     :(Form event code=On Printing Detail) -  //A record is about to be printed -  //Code for each record goes here +  //Un enregistrement va être imprimé +  //Le code pour chaque enregistrement doit être placé ici     :(Form event code=On Printing Break) -  //A break area is about to be printed +  //Une rupture va être imprimée        Case of           :(Level=0) -  //Code for a break level 0 goes here +  //Le code pour la rupture 0 doit être placé ici           :(Level=1) -  //Code for a break level 1 goes here +  //Le code pour la rupture 1 doit être placé ici   //...        End case     :(Form event code=On Printing Footer)        If(End selection($vpFormTable->)) -  //Code for the last footer goes here +  //Le code pour le dernier pied de page doit être placé ici        Else -  //Code for a footer goes here +  //Le code pour un pied de page doit être placé ici        End if  End case ``` #### Exemple 4 -This example shows the template of a form method that handles the events that can occur for a form displayed using the [DISPLAY SELECTION](../commands-legacy/display-selection.md) or [MODIFY SELECTION](../commands-legacy/modify-selection.md) commands. For didactic purposes, it displays the nature of the event in the title bar of the form window. +L'exemple suivant montre une méthode formulaire générique qui gère les événements pouvant survenir dans un formulaire sortie quand il s'affiche à l'aide de la commande [DISPLAY SELECTION](../commands-legacy/display-selection.md) ou [MODIFY SELECTION](../commands-legacy/modify-selection.md). Dans un but informatif, elle affiche l'événement dans la barre de titre de la fenêtre. ```4d -  //A form method - Case of -    :(Form event code=On Load) -       $vsTheEvent:="The form is about to be displayed" -    :(Form event code=On Unload) -       $vsTheEvent:="The output form has been exited and is about to disappear from the screen" -    :(Form event code=On Display Detail) -       $vsTheEvent:="Displaying record #"+String(Selected record number([TheTable])) -    :(Form event code=On Menu Selected) -       $vsTheEvent:="A menu item has been selected" -    :(Form event code=On Header") -       $vsTheEvent:="The header area is about to be drawn" -    :(Form event code=On Clicked") -       $vsTheEvent:="A record has been clicked" -    :(Form event code=On Double Clicked") -       $vsTheEvent:="A record has been double clicked" -    :(Form event code=On Open Detail) -       $vsTheEvent:="The record #"+String(Selected record number([TheTable]))+" is double-clicked" -    :(Form event code=On Close Detail) -       $vsTheEvent:="Going back to the output form" -    :(Form event code=On Activate) -       $vsTheEvent:="The form's window has just become the frontmost window" -    :(Form event code=On Deactivate) -       $vsTheEvent:="The form's window is no longer the frontmost window" -    :(Form event code=On Menu Selected) -       $vsTheEvent:="A menu item has been chosen" -    :(Form event code=On Outside Call) -       $vsTheEvent:="A call from another has been received" -    Else -       $vsTheEvent:="What's going on? Event #"+String(Form event) - End case - SET WINDOW TITLE($vsTheEvent) +// Une méthode formulaire exemple + Case of + :(Form event code=On Load) + $vaEvénement:="Le formulaire va être affiché" + :(Form event code=On Unload) + $vaEvénement:="Le formulaire sortie vient de se fermer et va disparaître de l'écran" + :(Form event code=On Display Detail) + $vaEvénement:="Affichage de l'enregistrement n°"+String(Numero dans selection([LaTable])) + :(Form event code=On Menu Selected) + $vaEvénement:="Une commande de menu a été sélectionnée" + :(Form event code=Sur entête) + $vaEvénement:="L'en-tête va être imprimé ou affiché" + :(Form event code=On Clicked) + $vaEvénement:="On a cliqué sur un enregistrement" + :(Form event code=On Double Clicked) + $vaEvénement:="On a double-cliqué sur un enregistrement" + :(Form event code=On Open Detail) + $vaEvénement:="On a double-cliqué sur l'enregistrement n°"+String(Numero dans selection([LaTable])) + :(Form event code=On Close Detail) + $vaEvénement:="Retour au formulaire sortie" + :(Form event code=On Activate) + $vaEvénement:="La fenêtre du formulaire passe au premier plan" + :(Form event code=On Deactivate) + $vaEvénement:="La fenêtre du formulaire n'est plus au premier plan" + :(Form event code=On Menu Selected) + $vaEvénement:="Une ligne de menu a été sélectionnée" + :(Form event code=On Outside Call) + $vaEvénement:="Un appel extérieur a été reçu" + Else + $vaEvénement:="Que se passe-t-il ? L'événement n°"+String(Evenement formulaire) + End case + SET WINDOW TITLE($vaEvénement) ``` #### Exemple 5 -For examples on how to handle [`On Before Keystroke`](../Events/onBeforeKeystroke.md) and [`On After Keystroke`](../Events/onAfterKeystroke.md) events, see examples for the [Get edited text](../commands-legacy/get-edited-text.md), [Keystroke](../commands-legacy/keystroke.md) and [FILTER KEYSTROKE](../commands-legacy/filter-keystroke.md) commands. +Pour des exemples de gestion des événements [`On Before Keystroke`](../Events/onBeforeKeystroke.md) et [`On After Keystroke`](../Events/onAfterKeystroke.md), voir les exemples des commandes [Get edited text](../commandes-legacy/get-edited-text.md), [Keystroke](../commandes-legacy/keystroke.md) et [FILTER KEYSTROKE](../commandes-legacy/filter-keystroke.md). #### Exemple 6 -This example shows how to treat clicks and double clicks in the same way in a scrollable area: +Cet exemple montre comment traiter les clics et les doubles clics de la même manière dans une zone de défilement : ```4d -  //asChoices scrollable area object method +  //Méthode objet pour la zone de défilement asChoices  Case of     :(Form event code=On Load)        ARRAY TEXT(asChoices;...) @@ -155,7 +155,7 @@ This example shows how to treat clicks and double clicks in the same way in a sc        asChoices:=0     :((Form event code=On Clicked)|(Form event code=On Double Clicked))        If(asChoices#0) -  //An item has been clicked, do something here +  //On a cliqué sur un élément, faire quelque chose   //...        End if   //... @@ -164,10 +164,10 @@ This example shows how to treat clicks and double clicks in the same way in a sc #### Exemple 7 -This example shows how to treat clicks and double clicks using a different response. Note the use of the element zero for keeping track of the selected element: +L'exemple suivant montre comment traiter les clics et double-clics de manière différente. Notez l'utilisation de l'élément zéro pour conserver la valeur de l'élément sélectionné : ```4d -  //asChoices scrollable area object method +  //Méthode objet pour la zone de défilement asChoices  Case of     :(Form event code=On Load)        ARRAY TEXT(asChoices;...) @@ -177,9 +177,9 @@ This example shows how to treat clicks and double clicks using a different respo     :(Form event code=On Clicked)        If(asChoices#0)           If(asChoices#Num(asChoices)) -  //A new item has been clicked, do something here +  //On a cliqué sur un élément, faire quelque chose   //... -  //Save the new selected element for the next time +  //Sauvegarder l'élément nouvellement sélectionné pour la prochaine fois              asChoices{0}:=String(asChoices)           End if        Else @@ -187,7 +187,7 @@ This example shows how to treat clicks and double clicks using a different respo        End if     :(Form event code=On Double Clicked)        If(asChoices#0) -  //An item has been double clicked, do something different here +  //On a double-cliqué sur un élément, faire autre chose        End if   // ...  End case @@ -195,10 +195,10 @@ This example shows how to treat clicks and double clicks using a different respo #### Exemple 8 -This example shows how to maintain a status text information area from within a form method, using the [`On Getting Focus`](../Events/onGettingFocus.md) and [`On Losing Focus`](../Events/onLosingFocus.md) events: +L'exemple suivant montre comment maintenir une zone contenant du texte à partir d'une méthode formulaire à l'aide des événements [`On Getting Focus`](../Events/onGettingFocus.md) et [`On Losing Focus`](../Events/onLosingFocus.md) : ```4d -  //[Contacts];"Data Entry" form method +  //Méthode formulaire [Contacts];"Data Entry"  Case of     :(Form event code=On Load)        var vtStatusArea : Text @@ -208,10 +208,10 @@ This example shows how to maintain a status text information area from within a        If(($vlTableNum#0)&($vlFieldNum#0))           Case of              :($vlFieldNum=1) //Last name field -                vtStatusArea:="Enter the Last name of the Contact; it will be capitalized automatically" +                vtStatusArea:="Saisissez le nom du contact, il sera automatiquement mis en majuscules"   //...              :($vlFieldNum=10) //Zip Code field -                vtStatusArea:="Enter a 5-digit zip code; it will be checked and validated automatically" +                vtStatusArea:="Saisissez un code postal, il sera automatiquement vérifié et validé"   //...           End case        End if @@ -226,13 +226,13 @@ This example shows how to maintain a status text information area from within a Cet exemple illustre comment vous pouvez répondre à un événement de fermeture de fenêtre à l'aide d'un formulaire utilisé pour la saisie de données d'enregistrement : ```4d -  //Method for an input form +  //Méthode pour un formulaire entrée  $vpFormTable:=Current form table  Case of   //...     :(Form event code=On Close Box)        If(Modified record($vpFormTable->)) -          CONFIRM("This record has been modified. Save Changes?") +          CONFIRM("Cet enregistrement a été modifié. Voulez-vous sauvegarder les modifications ?")           If(OK=1)              ACCEPT           Else @@ -245,12 +245,12 @@ Cet exemple illustre comment vous pouvez répondre à un événement de fermetur  End case ``` -#### Example 10 +#### Exemple 10 -This example shows how to capitalize a text or alphanumeric field each time its data source value is modified: +L'exemple suivant montre comment mettre en majuscules un champ Texte ou Alphanumérique chaque fois que la valeur est modifiée : ```4d -  //[Contacts]First Name Object method +  //Méthode objet de [Contacts]First Name  Case of   //...     :(Form event code=On Data Change) @@ -259,12 +259,12 @@ This example shows how to capitalize a text or alphanumeric field each time its  End case ``` -#### Example 11 +#### Exemple 11 -The following example illustrates how to manage a deletion action in a hierarchical list: +L'exemple suivant propose une manière de gérer une action de suppression dans une liste hiérarchique : ```4d - ... //method of hierarchical list + ... //méthode objet de la liste hiérarchique :(Form event code=On Delete Action)  ARRAY LONGINT($itemsArray;0)  $Ref:=Selected list items(<>HL;$itemsArray;*) @@ -272,12 +272,12 @@ The following example illustrates how to manage a deletion action in a hierarchi    Case of     :($n=0) -       ALERT("No item selected") +       ALERT("Pas d’élément sélectionné")        OK:=0     :($n=1) -       CONFIRM("Do you want to delete this item?") +       CONFIRM("Voulez-vous supprimer cet élément ?")     :($n>1) -       CONFIRM("Do you want to delete these items?") +       CONFIRM("Voulez-vous supprimer ces éléments ?")  End case    If(OK=1) @@ -287,25 +287,25 @@ The following example illustrates how to manage a deletion action in a hierarchi  End if ``` -#### Example 12 +#### Exemple 12 -In this example, the [`On Scroll`](../Events/onScroll.md) form event allows us to synchronize the display of two pictures in a form. The following code is added in the "satellite" object method (picture field or variable): +Dans cet exemple, l'événement formulaire [`On Scroll`](../Events/onScroll.md) permet de synchroniser l'affichage de deux images dans un formulaire. Le code suivant est ajouté dans la méthode de l'objet "satellite" (champ ou variable image) : ```4d  Case of     :(Form event code=On Scroll) -  // we take the position of the left picture +  // on relève la position de l'image de gauche        OBJECT GET SCROLL POSITION(*;"satellite";vPos;hPos) -  // and we apply it to the right picture +  // on l'applique à l'image de droite        OBJECT SET SCROLL POSITION(*;"plan";vPos;hPos;*)  End case ``` -Result: https://www.youtube.com/watch?v=YIRfsW1BmHE +Résultat : https://www.youtube.com/watch?v=YIRfsW1BmHE -#### Example 13 +#### Exemple 13 -You want to draw a red rectangle around the selected cell of a list box, and you want the rectangle to move along with the list box if it is scrolled vertically by the user. In the list box object method, you can write: +Vous souhaitez dessiner un rectangle rouge autour de la cellule sélectionnée d'une list box, et vous voulez que le rectangle se déplace si l'utilisateur fait défiler verticalement la list box. Dans la méthode objet de la list box, vous pouvez écrire : ```4d  Case of @@ -313,18 +313,19 @@ You want to draw a red rectangle around the selected cell of a list box, and you     :(Form event code=On Clicked)        LISTBOX GET CELL POSITION(*;"LB1";$col;$raw)        LISTBOX GET CELL COORDINATES(*;"LB1";$col;$raw;$x1;$y1;$x2;$y2) -       OBJECT SET VISIBLE(*;"RedRect";True) //initialize a red rectangle +       OBJECT SET VISIBLE(*;"RedRect";True) //initialiser rectangle rouge        OBJECT SET COORDINATES(*;"RedRect";$x1;$y1;$x2;$y2)       :(Form event code=On Scroll)        LISTBOX GET CELL POSITION(*;"LB1";$col;$raw)        LISTBOX GET CELL COORDINATES(*;"LB1";$col;$raw;$x1;$y1;$x2;$y2)        OBJECT GET COORDINATES(*;"LB1";$xlb1;$ylb1;$xlb2;$ylb2) -       $toAdd:=LISTBOX Get headers height(*;"LB1") //height of the header so as not to overlap it -       If($ylb1+$toAdd<$y1)&($ylb2>$y2) //if we are inside the list box -  //to keep it simple, we only handle headers -  //but we should handle horizontal clipping -  //as well as scroll bars +       $toAdd:=LISTBOX Get headers height(*;"LB1") +       //tenir compte de la hauteur de l'entête pour ne pas que le rectangle empiète dessus +       If($ylb1+$toAdd<$y1)&($ylb2>$y2) //si nous sommes dans la list box +  //pour simplifier, on ne tient compte que des en-têtes +  //mais il faudrait également gérer le clipping horizontal +  //ainsi que les barres de défilement           OBJECT SET VISIBLE(*;"RedRect";True)           OBJECT SET COORDINATES(*;"RedRect";$x1;$y1;$x2;$y2)        Else @@ -334,7 +335,7 @@ You want to draw a red rectangle around the selected cell of a list box, and you  End case ``` -As a result, the red rectangle follows the scrolling of the list box: +En résultat, le rectangle rouge suit bien le défilement de la list box : ![](../assets/en/commands/pict1900395.en.png) diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/form-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/form-event.md index 4169194a560fee..f646e7e3727c55 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/form-event.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/form-event.md @@ -17,17 +17,17 @@ displayed_sidebar: docs #### Description -**FORM Event** returns an object containing information about the form event that has just occurred.**FORM Event** returns an object containing information about the form event that has just occurred.**FORM Event** returns an object containing information about the form event that has just occurred. Usually, you will use **FORM Event** from within a form or object method. +**FORM Event** returns an object containing information about the form event that has just occurred.**FORM Event** returns an object containing information about the form event that has just occurred.**FORM Event** returns an object containing information about the form event that has just occurred. Habituellement, vous utiliserez **FORM Event** à partir d'une méthode formulaire ou objet. **Objet retourné** Each returned object includes the following main properties: -| **Property** | **Type** | **Description** | -| ------------ | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| objectName | text | Nom de l'objet générant l'événement - Non inclus si l'événement est déclenché par le formulaire | -| code | integer | Valeur numérique de l'événement formulaire. | -| Description | text | Name of the form event (*e.g.* "On After Edit"). See the [**Form Events**](../Events/overview.md) section. | +| **Propriété** | **Type** | **Description** | +| ------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| objectName | text | Nom de l'objet générant l'événement - Non inclus si l'événement est déclenché par le formulaire | +| code | integer | Valeur numérique de l'événement formulaire. | +| Description | text | Name of the form event (*e.g.* "On After Edit"). See the [**Form Events**](../Events/overview.md) section. | For example, in the case of a click on a button, the object contains the following properties: diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/license-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/license-info.md index e23a7377651c95..4b83833602f151 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/license-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/license-info.md @@ -56,7 +56,7 @@ L'objet retourné contient les propriétés suivantes : } ``` -| **Property** | **Type** | **Description** | **Example** | +| **Propriété** | **Type** | **Description** | **Example** | | ------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | | name | string | Commercial name | "4D Developer Professional vXX" | | key | number | ID of the installed product. A unique number is associated to a 4D application (such as 4D Server, 4D in local mode, 4D Desktop, etc.) installed on a machine. This number is encrypted. | 12356789 | @@ -73,15 +73,15 @@ L'objet retourné contient les propriétés suivantes : Each object of the `products` collection can have the following properties: -| **Property** | | **Type** | **Description** | **Example** | -| ------------ | ------------------------------------------------------------------------------------------ | --------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -| id | | number | License number | For available values, see the [Is license available](../commands-legacy/is-license-available.md) command | -| name | | string | License name | "4D Write - 4D Write Pro" | -| usedCount | | number | Number of consumed connections | 8 | -| allowedCount | | number | Total connections allowed for the product against the expiry dates | 15 | -| rights | | collection of objects | Rights for the product (one element per expiration date) | | -| | \[ \].count | number | Number of allowed connections | 15 (32767 means unlimited) | -| | \[ \].expirationDate | object | Date of expiration (optional, same format as above) | {"day":1, "month":11, "year":2017} | +| **Propriété** | | **Type** | **Description** | **Example** | +| ------------- | ------------------------------------------------------------------------------------------ | --------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| id | | number | License number | For available values, see the [Is license available](../commands-legacy/is-license-available.md) command | +| name | | string | License name | "4D Write - 4D Write Pro" | +| usedCount | | number | Number of consumed connections | 8 | +| allowedCount | | number | Total connections allowed for the product against the expiry dates | 15 | +| rights | | collection of objects | Rights for the product (one element per expiration date) | | +| | \[ \].count | number | Number of allowed connections | 15 (32767 means unlimited) | +| | \[ \].expirationDate | object | Date of expiration (optional, same format as above) | {"day":1, "month":11, "year":2017} | #### Exemple diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/process-activity.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/process-activity.md index 9217d6795288da..1d54d8788c54b6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/process-activity.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/process-activity.md @@ -10,7 +10,7 @@ displayed_sidebar: docs | Paramètres | Type | | Description | | ---------- | ------- | - | -------------------------------------------------------------------------------------- | -| sessionID | Text | → | Session ID | +| sessionID | Text | → | ID de session | | options | Integer | → | Return options | | Résultat | Object | ← | Snapshot of running processes and/or (4D Server only) user sessions | diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md index d4cf28d97a8a77..77e82b4cdeecfc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md @@ -38,7 +38,7 @@ L'objet retourné contient les propriétés suivantes : | name | Text | Nom du process | | number | Integer | Process number | | preemptive | Boolean | True if run preemptive, false otherwise | -| sessionID | Text | Session UUID | +| sessionID | Text | UUID de la session | | state | Integer | Current status. Possible values: see below | | systemID | Text | ID for the user process, 4D process or spare process | | type | Integer | Running process type. Possible values: see below | @@ -122,7 +122,7 @@ L'objet retourné contient les propriétés suivantes : ::: -Here is an example of output object: +Voici un exemple d'objet de sortie : ```json diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md index dabb1bb77f7c7b..2f482c9639ff15 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md @@ -16,39 +16,39 @@ displayed_sidebar: docs -| Paramètres | Type | | Description | -| ---------- | ------- | :-: | ----------------------------- | -| sessionID | Integer | → | Session ID | -| Résultat | Object | ← | Information about the session | +| Paramètres | Type | | Description | +| ---------- | ------- | :-: | --------------------------- | +| sessionID | Integer | → | ID de session | +| Résultat | Object | ← | Informations sur la session | #### Description -The `Session info` command returns an object describing the session whose ID you pass in the *sessionID* parameter.. If you pass an invalid *sessionID*, the command returns a null object. +La commande `Session info` retourne un objet décrivant la session dont vous passez l'ID dans le paramètre *sessionID*. Si vous transmettez une *sessionID* invalide, la commande renvoie un objet nul. L'objet retourné contient les propriétés suivantes : -| Nom de propriété | Type | Description | -| ---------------- | --------------------------------------- | -------------------------------------------------------------------------------------------------- | -| type | Text (enum) | Session type. Possible values: "remote", "storedProcedure", "rest" | -| userName | Text | Nom d'utilisateur | -| machineName | Text | Name of the remote machine | -| systemUserName | Text | Name of the system session opened on the remote machine | -| IPAddress | Text | Adresse IP de la machine distante | -| hostType | Text (enum) | Host type. Possible values: "windows", "mac", "browser" | -| creationDateTime | Text (Date ISO 8601) | Date and time of connection of the remote machine | -| state | Text (enum) | Session state. Possible values: "active", "postponed", "sleeping" | -| ID | Text | Session UUID | -| persistentID | Text | ID persistant de la session | +| Nom de propriété | Type | Description | +| ---------------- | --------------------------------------- | --------------------------------------------------------------------------------------------------------- | +| type | Text (enum) | Type de session. Valeurs possibles : "remote", "storedProcedure", "rest" | +| userName | Text | Nom d'utilisateur | +| machineName | Text | Nom de la machine distante | +| systemUserName | Text | Nom de la session système ouverte sur la machine distante | +| IPAddress | Text | Adresse IP de la machine distante | +| hostType | Text (enum) | Type d'hôte. Valeurs possibles : "windows", "mac", "browser" | +| creationDateTime | Text (Date ISO 8601) | Date et heure de connexion de la machine distante | +| state | Text (enum) | État de la session. Valeurs possibles : "active", "postponed", "sleeping" | +| ID | Text | UUID de la session | +| persistentID | Text | ID persistant de la session | :::note -This command returns the [`.info`](../API/SessionClass.md#info) property of the *sessionID* session. To get information about the current session, you can directly call `Session.info`. +Cette commande renvoie la propriété [`.info`](../API/SessionClass.md#info) de la session *sessionID*. Pour obtenir des informations sur la session en cours, vous pouvez appeler directement `Session.info`. ::: -Here is an example of output object: +Voici un exemple d'objet de sortie : ```json diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md index b16fd0935b4ea9..da3c5d186bca7b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md @@ -15,7 +15,7 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.* #### Description diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md index 99896f652bd064..b6619915684906 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md @@ -15,7 +15,7 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* +*Cette commande n'est pas thread-safe, elle ne peut pas être utilisée dans du code préemptif.*
Historique diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md index 845e9f37831a4b..1ec955de2a9482 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md @@ -1018,6 +1018,21 @@ Vous n'obtiendrez pas le résultat souhaité car la valeur null sera évaluée p $vSingles:=ds.Person.query("spouse = null") //syntaxe valide ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + + #### Not equal to et les collections Lors d'une recherche parmi les attributs objet d'une dataclass contenant des collections, le comparateur "not equal to *value*" (`#` or `!=`) trouvera les éléments dont TOUTES les propriétés sont différentes de *value* (et non ceux dont AU MOINS une propriété est différente de *value*, ce qui est le cas avec les autres comparateurs). Fondamentalement, cela équivaut à rechercher "Not(chercher éléments de la collection pour lesquels la propriété vaut *value*"). Par exemple, avec les entités suivantes : diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20/API/EntityClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-20/API/EntityClass.md index 43b88e3318a88c..86789d1d895c5f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20/API/EntityClass.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20/API/EntityClass.md @@ -234,7 +234,7 @@ $diff2: vCompareResult3:=$e1.diff($e2;$e1.touchedAttributes()) ``` -vCompareResult3 (seules les différences sur les attributs touchés de $e1 sont retournées) +vCompareResult1 (toutes les différences sont retournées) : ```4d [ @@ -283,7 +283,7 @@ vCompareResult2 (seules les différences sur $attributesToInspect sont retourné ] ``` -vCompareResult1 (toutes les différences sont retournées) : +vCompareResult3 (seules les différences sur les attributs touchés de $e1 sont retournées) ```4d [ @@ -445,7 +445,7 @@ Même exemple avec l'option `dk force drop if stamp changed` : La fonction `.first()` retourne une référence vers l'entité en première position dans l'entity selection à laquelle appartient l'entité. -| +Pour plus d'informations, veuillez consulter la section [Verrouillage d'une entité](ORDA/entities.md#verrouillage-d-une-entite). #### Exemple @@ -1087,7 +1087,7 @@ S'il n'y a pas d'entité suivante valide dans l'entity selection (i.e. vous ête La fonction `.previous()` retourne une référence vers l'entité précédente dans l'entity selection à laquelle appartient l'entité. -| +vrai si l'action de suppression a été effectuée avec succès, sinon Faux. Si l'entité n'appartient à aucune entity selection (i.e. [.getSelection( )](#getselection) retourne Null), la fonction renvoie une valeur Null. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20/FormObjects/text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20/FormObjects/text.md index f997adcd957e54..d9e8a14f9224b1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20/FormObjects/text.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20/FormObjects/text.md @@ -51,4 +51,4 @@ Une fois qu’un texte a été orienté, il reste possible de modifier sa taille
-[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color(properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md index 18146b6b229584..61ef27106552e9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md @@ -321,25 +321,26 @@ ECDSA キーのみ: キーの楕円曲線
履歴 -| リリース | 内容 | -| ----- | -- | -| 18 R4 | 追加 | +| リリース | 内容 | +| ----- | -------------------------- | +| 20 R8 | Support of message as Blob | +| 18 R4 | 追加 |
-.**sign** (*message* : Text ; *options* : Object) : Text +.**sign** (*message* : Text ; *options* : Object) : Text
.**sign** (*message* : Blob ; *options* : Object) : Text -| 引数 | 型 | | 説明 | -| ------- | ------ | --------------------------- | ----------------------------------------------- | -| message | Text | -> | 署名をするメッセージ | -| options | Object | -> | 署名オプション | -| 戻り値 | Text | <- | "encoding" オプションに応じて Base64 または Base64URL 形式の署名 | +| 引数 | 型 | | 説明 | +| ------- | ------------ | --------------------------- | ----------------------------------------------- | +| message | Text OR Blob | -> | Message to sign | +| options | Object | -> | 署名オプション | +| 戻り値 | Text | <- | "encoding" オプションに応じて Base64 または Base64URL 形式の署名 | -`.sign()` 関数は、`CryptoKey` オブジェクトキーおよび指定された *options* を使って、 utf8 形式の *message* 文字列を署名します。 `options.encoding` 属性に指定した値に応じて、base64 または base64URL 形式の署名を返します。 +The `.sign()` function signs the utf8 representation of a *message* string or Blob using the `CryptoKey` object keys and provided *options*. `options.encoding` 属性に指定した値に応じて、base64 または base64URL 形式の署名を返します。 `CryptoKey` は有効な **秘密** 鍵を格納していなくてはなりません。 @@ -350,11 +351,11 @@ ECDSA キーのみ: キーの楕円曲線 | hash | text | 使用する Digest アルゴリズム。 例: "SHA256", "SHA384", "SHA512"。 JWT の生成に使われた場合、ハッシュサイズは PS@, ES@, RS@, または PS@ のアルゴリズムサイズと同じでなくてはなりません。 | | encodingEncrypted | text | バイナリの暗号化メッセージを文字列に変換するためのエンコーディング。 可能な値: "Base64" または "Base64URL"。 デフォルト値: "Base64" | | pss | boolean | 確率的署名スキーム (PSS) を使用する。 RSA キーでない場合は無視されます。 PS@ アルゴリズム用の JWT を生成する場合は `true` を渡します。 | -| encoding | text | 戻り値の署名のエンコード方式。 可能な値: "Base64" または "Base64URL"。 デフォルト値: "Base64" | +| encoding | text | Representation to be used for result signature. 可能な値: "Base64" または "Base64URL"。 デフォルト値: "Base64" | #### *結果* -utf8 形式の *message* 文字列。 +The utf8 representation of the *message*. @@ -404,22 +405,23 @@ RSA キーのみ: キーのサイズ (ビッ
履歴 -| リリース | 内容 | -| ----- | -- | -| 18 R4 | 追加 | +| リリース | 内容 | +| ----- | -------------------------- | +| 20 R8 | Support of message as Blob | +| 18 R4 | 追加 |
-**.verify**( *message* : Text ; *signature* : Text ; *options* : Object) : Object +**.verify**( *message* : Text ; *signature* : Text ; *options* : Object) : Object
*.verify**( *message* : Blob ; *signature* : Text ; *options* : Object) : Object -| 引数 | 型 | | 説明 | -| --------- | ------ | --------------------------- | ----------------------------------------------------------- | -| message | Text | -> | 署名生成時に使われたメッセージ文字列 | -| signature | Text | -> | 検証の対象である、`options.encoding` に応じて Base64 または Base64URL 形式の署名 | -| options | Object | -> | 署名オプション | -| 戻り値 | Object | <- | 検証ステータス | +| 引数 | 型 | | 説明 | +| --------- | ------------ | --------------------------- | ----------------------------------------------------------- | +| message | Text OR Blob | -> | Message that was used to produce the signature | +| signature | Text | -> | 検証の対象である、`options.encoding` に応じて Base64 または Base64URL 形式の署名 | +| options | Object | -> | 署名オプション | +| 戻り値 | Object | <- | 検証ステータス | diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/DataClassClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/DataClassClass.md index 63217c023f155d..3c104cce25b6d8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/API/DataClassClass.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/DataClassClass.md @@ -1038,6 +1038,20 @@ $vSingles:=ds.Person.query("spouse = :1";Null) // 機能しません $vSingles:=ds.Person.query("spouse = null") // 正しいシンタックス ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### コレクションにおける "等しくない" コレクションを含むデータクラス属性内を検索する場合、"*値* と等しくない" 比較演算子 (`#` または `!=`) は、すべてのプロパティが *値* と異なる要素を検索します (ほかの比較演算子とは異なり、少なくとも 1つのプロパティが *値* と異なる要素は検索しません)。 つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/classes.md b/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/classes.md index 8a72e5c840d32c..57db8014de582d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/classes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/classes.md @@ -182,7 +182,7 @@ Class オブジェクトそのものは [共有オブジェクト](shared.md) - `property`: オブジェクトのスタティックプロパティを型定義します。 - `Function get ` と `Function set `: オブジェクトの計算プロパティを定義します。 - `Class extends `: 継承を定義します。 -- `This` and `Super` are commands that have special +- `This` および `Super` は特殊な用途を持つコマンドです。 ### `Function` @@ -195,7 +195,7 @@ Class オブジェクトそのものは [共有オブジェクト](shared.md) :::note -There is no ending keyword for function code. The 4D language automatically detects the end of a function's code by the next `Function` keyword or the end of the class file. +関数コードにおいては、終了キーワードはありません。 4D ランゲージは、次の`Function` キーワードまたはクラスファイルの終了を持って、自動的に関数のコードの終わりを検知します。 ::: @@ -335,7 +335,7 @@ Function getRectArea($width : Integer; $height : Integer) : Integer :::note -There is no ending keyword for class constructor function code. The 4D language automatically detects the end of a function's code by the next `Function` keyword or the end of the class file. +クラスコンストラクター関数コードにおいては、終了キーワードはありません。 4D ランゲージは、次の`Function` キーワードまたはクラスファイルの終了を持って、自動的に関数のコードの終わりを検知します。 ::: @@ -343,7 +343,7 @@ There is no ending keyword for class constructor function code. The 4D language クラスコンストラクターが定義されていると、[`new()`](API/ClassClass.md#new) 関数を呼び出したときに、当該コンストラクターが呼び出されます (コンストラクターで引数を指定している場合は `new()` 関数に渡します)。 -コンストラクター関数は、1つのクラスに 1つしか存在できません (そうでない場合はエラーが返されます)。 The [`Super`](../commands/super.md) command allows calls to the [`superclass`](../API/ClassClass#superclass), i.e. the parent class of the function. The [`Super`](../commands/super.md) command allows calls to the [`superclass`](../API/ClassClass#superclass), i.e. the parent class of the function. +コンストラクター関数は、1つのクラスに 1つしか存在できません (そうでない場合はエラーが返されます)。 [`Super`](../commands/super.md) コマンドを使用すると、[`スーパークラス`](../API/ClassClass#superclass)、つまり関数の親クラスを呼ぶことができます。 コンストラクター内でインスタンスのプロパティを作成し、型宣言することができます (例題参照)。 コンストラクター内でインスタンスのプロパティを作成し、型宣言することができます (例題参照)。 コンストラクター内でインスタンスのプロパティを作成し、型宣言することができます (例題参照)。 また、インスタンスプロパティの値が、コンストラクターに渡される引数に依存しない場合は、[`property`](#property) キーワードを使用して定義することができます。 @@ -609,19 +609,19 @@ Class constructor ($side : Integer) $area:=This.height*This.width ``` -## Class function commands +## クラス関数コマンド -The following commands have specific features when they are used within class functions: +以下のコマンドは、クラス関数内で使用された場合には特定の機能を持っています: ### `Super` -The [`Super`](../commands/super.md) command allows calls to the [`superclass`](../API/ClassClass#superclass), i.e. the parent class of the function. It can be called in the [class constructor](#class-constructor) or in a class function code. +[`Super`](../commands/super.md) コマンドを使用すると、[`スーパークラス`](../API/ClassClass#superclass)、つまり関数の親クラスを呼び出すことができます。 これは[Class constructor](#class-constructor) またはクラス関数コード内で呼び出すことができます。 -For more details, see the [`Super`](../commands/super.md) command description. +詳細な情報については、[`Super`](../commands/super.md) コマンドの説明を参照してください。 ### `This` -The [`This`](../commands/this.md) command returns a reference to the currently processed object. In most cases, the value of `This` is determined by how a class function is called. Usually, `This` refers to the object the function was called on, as if the function were on the object. +[`This`](../commands/this.md) コマンドは現在処理されているオブジェクトへの参照を返します。 多くの場合、`This` の値はクラス関数がどのように呼ばれたかによって決まります。 通常、`This` は、まるでその関数がオブジェクト上にあるかのように、関数が呼ばれたオブジェクトを参照します。 例: @@ -632,7 +632,7 @@ Function f() : Integer return This.a+This.b ``` -Then you can write in a method: +メソッド内において、以下のように書くことができます: ```4d $o:=cs.ob.new() @@ -641,7 +641,7 @@ $o.b:=3 $val:=$o.f() //8 ``` -For more details, see the [`This`](../commands/this.md) command description. +詳細な情報については、[`This`](../commands/this.md) コマンドの説明を参照してください。 ## クラスコマンド @@ -754,8 +754,8 @@ shared Function Bar($value : Integer) :::note -- Session singletons are automatically shared singletons (there's no need to use the `shared` keyword in the class constructor). -- Singleton shared functions support [`onHttpGet` keyword](../ORDA/ordaClasses.md#onhttpget-keyword). +- セッションシングルトンは、自動的に共有シングルトンとなります(クラスコンストラクターにおいて`shared` キーワードを使用する必要はありません)。 +- シングルトンの共有関数は、[`onHttpGet` キーワード](../ORDA/ordaClasses.md#onhttpget-keyword) をサポートします。 ::: @@ -848,7 +848,7 @@ shared function addItem($item:object) This.itemList.push($item) ``` -ItemInventorクラスをセッションシングルトンとして定義することで、各セッションと各ユーザーが独自の在庫を持つことができます。 ユーザー在庫へのアクセスは以下のように簡単です: ユーザー在庫へのアクセスは以下のように簡単です: ユーザー在庫へのアクセスは以下のように簡単です: +ItemInventory クラスをセッションシングルトンとして定義することで、各セッションと各ユーザーが独自の在庫を持つことができます。 ユーザー在庫へのアクセスは以下のように簡単です: ```4d // ユーザーセッションにおいて diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/dt_number.md b/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/dt_number.md index f14114a3f832bb..9cf96f9e3231cb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/dt_number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/dt_number.md @@ -1,25 +1,25 @@ --- id: number -title: Number (Real, Integer) +title: 数値(実数、整数) --- 数値とは、以下を示す総称です: - 実数のフィールド、変数、または式。 実数データタイプの範囲は、±1.7e±308 (有効数字13桁) です。 -- Integer variable or expression. The range for the Integer data type is -2^31..(2^31)-1 (4-byte Integer, aka *Long* or *Longint*). +- 整数の変数または式。 整数データタイプの範囲は -2^31..(2^31)-1 です(4-バイト整数、別名*Long* または *Longint*)。 :::info 互換性 -Usually when working with Integers, you handle *Long* values (4-byte Integer). However, there are two cases where Integers are stored as *Shorts* values (2-byte Integer), i.e. in the range -32,768..32,767 (2^15..(2^15)-1): +通常、整数を使用する場合には、*Long* を扱います(4-バイト整数)。 しかしながら、整数が*Shots* 値(2-バイト整数)として保存される場合が二つあります。その際、範囲は-32,768..32,767 (2^15..(2^15)-1) となります: -- Database fields with `Integer` type, -- Elements of arrays declared with [`ARRAY INTEGER`](../commands-legacy/array-integer.md). +- `Integer` 型のデータベースフィールド +- [`ARRAY INTEGER`](../commands-legacy/array-integer.md) として宣言した配列の要素 -These legacy data types are automatically converted in *Longs* when used in the 4D Language. +旧式のデータタイプは、4D ランゲージで使用される際に自動的に*Long* へと変換されます。 ::: -数値データタイプは、異なる数値データタイプに代入することができます。このとき、4Dが必要に応じて変換、切り捨て、丸め処理をおこないます。 ただし、値が範囲外の場合には、変換は正しい値を返しません。 You can mix number data types in expressions. +数値データタイプは、異なる数値データタイプに代入することができます。このとき、4Dが必要に応じて変換、切り捨て、丸め処理をおこないます。 ただし、値が範囲外の場合には、変換は正しい値を返しません。 数値データタイプは式の中において混在させて使用することができます。 ## 数値リテラル @@ -31,7 +31,7 @@ These legacy data types are automatically converted in *Longs* when used in the 0.0076 ``` -> デフォルトの小数点はシステム言語に関係なくピリオド (.) です。 "地域特有のシステム設定を使う" オプション (メソッドページ 参照) にチェックがされている場合、システムで定義されている小数点を使用する必要があります。 +> デフォルトの小数点はシステム言語に関係なくピリオド (.) です。 環境設定の"地域特有のシステム設定を使う" オプションにチェックがされている場合、自分のシステムで定義されている小数点を使用する必要があります。 負の数値は、マイナス記号 (-) を付けて指定します。 例: @@ -75,7 +75,7 @@ These legacy data types are automatically converted in *Longs* when used in the :::warning -モジューロ演算子 % は倍長整数の範囲内 (-2^31 から (2^31)-1 まで) の数値に対して有効な値を返します。 To calculate the modulo with numbers outside of this range, use the [`Mod`](../commands-legacy/mod.md) command. +モジューロ演算子 % は倍長整数の範囲内 (-2^31 から (2^31)-1 まで) の数値に対して有効な値を返します。 範囲外の数値に対してモジューロを計算したい場合には、[`Mod`](../commands-legacy/mod.md) コマンドを使用してください。 ::: @@ -85,11 +85,11 @@ These legacy data types are automatically converted in *Longs* when used in the ### 実数の比較 -To compare two reals for equality, the 4D language actually compares the absolute value of the difference with *epsilon*. See the [`SET REAL COMPARISON LEVEL`](../commands-legacy/set-real-comparison-level.md) command. +2つの実数が等しいかどうかを比較するために、4Dランゲージは実際には差の絶対値を *イプシロン値* と比較します。 詳細関しては[`SET REAL COMPARISON LEVEL`](../commands-legacy/set-real-comparison-level.md) コマンドを参照してください。 :::note -For consistency, the 4D database engine always compares database fields of the real type using a 10^-6 value for *epsilon* and does not take the [`SET REAL COMPARISON LEVEL`](../commands-legacy/set-real-comparison-level.md) setting into account. +一貫性のため、4Dデータベースエンジンは実数型のデータベースフィールドを比較する際には常に *イプシロン値* として 10^-6 の値を使用し、[`SET REAL COMPARISON LEVEL`](../commands-legacy/set-real-comparison-level.md) の設定を考慮しません。 ::: @@ -115,15 +115,15 @@ For consistency, the 4D database engine always compares database fields of the r ## ビットワイズ演算子 -The bitwise operators operates on (Long) Integers expressions or values. +ビットワイズ演算子は、(倍長)整数の式や値に対して演算をおこないます。 -> If you pass a (Short) Integer or a Real value to a bitwise operator, 4D evaluates the value as a Long value before calculating the expression that uses the bitwise operator. +> ビットワイズ演算子に(ショート)整数値または実数値を渡すと、4Dは値を倍長整数値として評価してから、ビットワイズ演算子を使用した式を計算します。 -While using the bitwise operators, you must think about a Long value as an array of 32 bits. これらのビットには、右から左に0~31の番号が付けられます。 +ビットワイズ演算子を使用する場合、倍長整数値を32ビットの配列と考える必要があります。 これらのビットには、右から左に0~31の番号が付けられます。 -それぞれのビットは0か1なので、倍長整数値は32のブール値を格納できる値と考えることもできます。 A bit equal to 1 means **True** and a bit equal to 0 means **False**. +それぞれのビットは0か1なので、倍長整数値は32のブール値を格納できる値と考えることもできます。 1に等しいビットは**True** 、0に等しいビットは**False** を意味します。 -An expression that uses a bitwise operator returns a Long value, except for the Bit Test operator, where the expression returns a Boolean value. 次の表にビットワイズ演算子とそのシンタックスを示します: +ビットワイズ演算子を使用する式は倍長整数値を返します。 Bit Test 演算子の場合、式は例外的にブール値を返します。 次の表にビットワイズ演算子とそのシンタックスを示します: | 演算 | 演算子 | シンタックス | 戻り値 | | ----------------------------------------- | ---------------------------------------------------- | -------------------------------------------------------------- | ----------------------------------- | @@ -138,21 +138,21 @@ An expression that uses a bitwise operator returns a Long value, except for the #### 注記 -1. For the `Left Bit Shift` and `Right Bit Shift` operations, the second operand indicates the number of positions by which the bits of the first operand will be shifted in the resulting value. したがって、この2番目のオペランドは、0~31の間でなければなりません。 0ビットシフトするとその値がそのまま返されます。また、31ビットより多くシフトするとすべてのビットがなくなるので、0x00000000が返されます。 それ以外の値を2番目のオペランドとして渡した場合、結果は意味のない値になります。 -2. For the `Bit Set`, `Bit Clear` and `Bit Test` operations , the second operand indicates the number of the bit on which to act. したがって、この2番目のオペランドは0 ~ 31の間です。そうでない場合、式の結果は意味のないものになります。 +1. `Left Bit Shift` および`Right Bit Shift` 演算では、2番目のオペランドは、結果値において1番目のオペランドのビットがシフトされるビット数を示します。 したがって、この2番目のオペランドは、0~31の間でなければなりません。 0ビットシフトするとその値がそのまま返されます。また、31ビットより多くシフトするとすべてのビットがなくなるので、0x00000000が返されます。 それ以外の値を2番目のオペランドとして渡した場合、結果は意味のない値になります。 +2. `Bit Set`、`Bit Clear`、`Bit Test` 演算では、2番目のオペランドは、作用の対象となるビット番号を示します。 したがって、この2番目のオペランドは0 ~ 31の間です。そうでない場合、式の結果は意味のないものになります。 次の表は、ビットワイズ演算子とその効果を示します: -| 演算 | 説明 | -| ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Bitwise AND | それぞれの結果ビットは2つのオペランドのビットの論理ANDです。 Here is the logical AND table:
  • 1 & 1 --> 1
  • 0 & 1 --> 0
  • 1 & 0 --> 0
  • 0 & 0 --> 0
  • In other words, the resulting bit is 1 if the two operand bits are 1; otherwise the resulting bit is 0. | -| Bitwise OR (inclusive) | Each resulting bit is the logical OR of the bits in the two operands.Here is the logical OR table:
  • 1 \| 1 --> 1
  • 0 \| 1 --> 1
  • 1 \| 0 --> 1
  • 0 \| 0 --> 0
  • In other words, the resulting bit is 1 if at least one of the two operand bits is 1; otherwise the resulting bit is 0. | -| Bitwise OR (exclusive) | Each resulting bit is the logical XOR of the bits in the two operands.Here is the logical XOR table:
  • 1 ^ \| 1 --> 0
  • 0 ^ \| 1 --> 1
  • 1 ^ \| 0 --> 1
  • 0 ^ \| 0 --> 0
  • In other words, the resulting bit is 1 if only one of the two operand bits is 1; otherwise the resulting bit is 0. | -| Left Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ左にシフトします。 左側のビットがなくなり、右側の新しいビットは0に設定されます。 **Note:** Taking into account only positive values, shifting to the left by N bits is the same as multiplying by 2^N. | -| Right Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ右にシフトします。 The bits on the right are lost and the new bits on the left are set to 0.**Note:** Taking into account only positive values, shifting to the right by N bits is the same as dividing by 2^N. | -| Bit Set | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが1に設定されます。 他のビットはそのままです。 | -| Bit Clear | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが0に設定されます。 他のビットはそのままです。 | -| Bit Test | 最初のオペランドのうち、2番目のビットで示されたビットが1の場合、trueが返されます。 最初のオペランドのうち、2番目のビットで示されたビットが0の場合、falseが返されます。 | +| 演算 | 説明 | +| ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Bitwise AND | それぞれの結果ビットは2つのオペランドのビットの論理ANDです。 論理AND の表は以下のようになります:
  • 1 & 1 --> 1
  • 0 & 1 --> 0
  • 1 & 0 --> 0
  • 0 & 0 --> 0
  • 言い換えると、結果のビットは両方のオペランドが1であれば1となり、それ以外の場合には結果のビットは0 となります。 | +| Bitwise OR (inclusive) | それぞれの結果ビットは2つのオペランドのビットの論理OR です。論理OR の表は以下のようになります。:
  • 1 \| 1 --> 1
  • 0 \| 1 --> 1
  • 1 \| 0 --> 1
  • 0 \| 0 --> 0
  • 言い換えると、結果のビットは、少なくともどちらかのオペランドが1であれば1となり、それ以外の場合には結果のビットは0 となります。 | +| Bitwise OR (exclusive) | それぞれの結果ビットは2つのオペランドの論理XOR です。論理XOR の表は以下のようになります:
  • 1 ^ \| 1 --> 0
  • 0 ^ \| 1 --> 1
  • 1 ^ \| 0 --> 1
  • 0 ^ \| 0 --> 0
  • 言い換えると、結果のビットは2つのオペランドのどちらか1つが1の場合にのみ1となり、それ以外の場合には結果のビットは0 となります。 | +| Left Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ左にシフトします。 左側のビットがなくなり、右側の新しいビットは0に設定されます。 **注記:** 正の数だけを考えると、Nビット左にシフトすることは、2^N を掛けることと同じです。 | +| Right Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ右にシフトします。 右側のビットがなくなり、左側の新しいビットは 0 に設定されます。 **注記:** 正の数だけを考えると、Nビット右にシフトすることは、2^Nで割ることと同じです。 | +| Bit Set | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが1に設定されます。 他のビットはそのままです。 | +| Bit Clear | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが0に設定されます。 他のビットはそのままです。 | +| Bit Test | 最初のオペランドのうち、2番目のビットで示されたビットが1の場合、trueが返されます。 最初のオペランドのうち、2番目のビットで示されたビットが0の場合、falseが返されます。 | ### 例題 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/error-handling.md b/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/error-handling.md index 3bc8283497ca00..4c10f64a8d776b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/error-handling.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/error-handling.md @@ -97,8 +97,8 @@ ON ERR CALL("componentHandler";ek errors from components) // コンポーネン 4D は、いくつかの [**システム変数**](variables.md#システム変数) と呼ばれる専用の変数を自動的に管理しています。 ::: -- [`Last errors`](https://doc.4d.com/4dv19/help/command/ja/page1799.html) コマンドは、4Dアプリケーションのカレントエラースタックに関する情報をコレクションとして返します。 You can also use the [`Last errors`](https://doc.4d.com/4dv19/help/command/en/page1015.html) command that returns the same information as arrays. -- the `Call chain` command that returns a collection of objects describing each step of the method call chain within the current process. +- [`Last errors`](https://doc.4d.com/4dv19/help/command/ja/page1799.html) コマンドは、4Dアプリケーションのカレントエラースタックに関する情報をコレクションとして返します。 また同じ情報を配列として返す[`Last errors`](https://doc.4d.com/4dv19/help/command/en/page1015.html) コマンドを使用することもできます。 +- `Call chain` コマンドは、カレントプロセス内におけるメソッド呼び出しチェーンの各ステップを説明するオブジェクトのコレクションを返します。 #### 例題 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/basics.md b/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/basics.md index 37b97946549c5c..ee80f821fb1b74 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/basics.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/basics.md @@ -70,27 +70,31 @@ title: デバッガー - **続行**: 実行が継続されます。 エラーが発生した行は、エラーの位置によっては一部のみ実行済みである場合があります。 慎重に実行を継続してください: エラーが原因で、メソッドの残り部分が正常に実行できない場合があります。 `SET WINDOW TITLE` のように、コードの残りの部分の実行やテストの妨げにならない単純な呼び出しでエラーが発生している場合にのみ、**続行** ボタンをクリックすることを推奨します。 -> Tips: ループ中などで繰り返し発生するエラーの場合には、**続行** ボタンを **無視** ボタンに変更できます。 **続行**ボタンが最初に現れたときに、**Alt**キー (Windows) または **Option**キー (macOS) を押しながらボタンをクリックします。 すると、同じエラーによってダイアログが呼び出されたときには、ボタンラベルが **無視** へと変化します。 +:::tip -- **アボート**: メソッドが中断され、メソッドの実行を開始する前の状態に戻ります: +To ignore an error that occurs repeatedly (for example, in loops), you can turn the **Continue** button into an **Ignore** button. Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. + +::: + +- **Abort**: Stops method execution and returns to the state before the method started executing: - イベントに対してフォームメソッドまたはオブジェクトメソッドが実行されている場合には、これらは停止され、フォームに戻ります。 - メソッドがアプリケーションモードから実行されている場合には、このモードに戻ります。 -- **コピー**: デバッグ情報をクリップボードにコピーします。 この情報はエラーの内部環境 (番号や内部コンポーネント等) を説明します。 情報はタブ区切り形式で記述されます。 +- **Copy**: Copies the debugging information into the clipboard. この情報はエラーの内部環境 (番号や内部コンポーネント等) を説明します。 情報はタブ区切り形式で記述されます。 -- **保存...**: シンタックスエラーウィンドウの内容とコールチェーンを `.txt` ファイルに保存します。 +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## デバッガー -エラー検出の際によくある初歩的な失敗は、シンタックスエラーウィンドウの **アボート** ボタンをクリックし、コードエディターに戻り、コードを表示して原因を確認しようとすることです。 これは止めてください。 **デバッガー** を常に使用すれば、相当の時間と労力を節減することができます。 +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. これは止めてください。 You will save plenty of time and energy by always using the [**Debugger**](debugger.md). デバッガーを使うと、メソッドをステップごとにゆっくりと実行することができます。 デバッガーは、エラーが発生した理由を知るために必要な情報を表示できます。 この情報があれば、エラーの修正方法はわかります。 -デバッガーを使用するもう 1つの理由は、コードの作成です。 いつも以上に複雑なアルゴリズムを作成してしまう場合があります。 達成感こそありますが、コーディングが正しいかどうかは 100%確かとはいえません。 見当もつかないまま実行するのではなく、コードの最初で `TRACE` コマンドを使用します。 その後、コードをステップごとに実行して、動作を監視することができます。 +デバッガーを使用するもう 1つの理由は、コードの作成です。 いつも以上に複雑なアルゴリズムを作成してしまう場合があります。 達成感こそありますが、コーディングが正しいかどうかは 100%確かとはいえません。 Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## ブレーク -デバッグ作業では、コードの一部のトレースを特定の行までスキップする必要がある場合があります。 また、ある式が特定の値になった時 (例: "$myVar > 1000") や、特定の 4Dコマンドが呼び出されるたびにコードをトレースしたい場合もあります。 +デバッグ作業では、コードの一部のトレースを特定の行までスキップする必要がある場合があります。 Or, you may want to trace the code when a given expression has a certain value (e.g. `$myVar > 1000`), or every time a specific 4D command is called. -このようなニーズに対応するために、**ブレークポイント** と **キャッチコマンド** 機能が用意されています。 これらの機能は、コードエディター、デバッガー、ランタイムエクスプローラーから設定できます。 +These needs are covered by **breakpoints** and **command catching** features. これらの機能は、コードエディター、デバッガー、ランタイムエクスプローラーから設定できます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md b/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md index ca6eb55c083a59..0a90de0991f963 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md @@ -15,7 +15,7 @@ title: ブレークポイントとキャッチコマンド ブレークポイントを設定するには、デバッガーまたはコードエディターのソースコードエリアの左マージン内をクリックします。 -次の図では、ブレークポイント (赤い点) がデバッガー内で、`If ($in.dataClass#Null)` の行に設定されています: +In the following example, a break point (the red bullet) has been set, in the debugger, on the line `If (Value type(request.reponse.headers...`: ![break-point](../assets/en/Debugging/break.png) diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugger.md b/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugger.md index c246ce67e1f20c..ad389f5e5705cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugger.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugger.md @@ -18,7 +18,7 @@ If you are used to coding with **VS Code**, you can also use this editor to debu デバッガーを開くには、次のような方法があります: - [シンタックスエラーウィンドウ](basics.md#シンタックスエラーウィンドウ) で **トレース** ボタンをクリックする。 -- [`TRACE`](https://doc.4d.com/4dv19/help/command/ja/page157.html) コマンドを使用する。 +- Using the [`TRACE`](../commands-legacy/trace.md) command - メソッド実行ウィンドウで **デバッグ** ボタンをクリックする、またはコードエディターで **実行してデバッグ** ボタンを選択する。 - メソッド実行中に **Alt+Shift+右クリック** (Windows) または **Ctrl+Option+Cmd+クリック** (Macintosh) をおこない、表示されるポップアップウィンドウ内でトレースするプロセスを選択する: @@ -29,8 +29,8 @@ If you are used to coding with **VS Code**, you can also use this editor to debu デバッガーウィンドウは、現在トレースしているメソッドまたはクラス関数の名前や、デバッガーが表示される原因となったアクションの情報を表示します。 上のウィンドウの例では、次の情報が表示されています: -- 現在トレースされているメソッドは _Clients_BuildLogo_ メソッドです。 -- デバッガーウィンドウが表示されているのは、キャッチコマンドの対象に設定された `C_PICTURE` コマンドへの呼び出しが検出されたためです。 +- _drop_ is the method being traced +- The debugger window appeared because of a break point. 新しいデバッガーウィンドウの表示には、同じセッション内で表示された最後のデバッガーウィンドウと同じ構成 (ウィンドウのサイズと位置、分割線の配置および式評価エリアの内容) を使用します。 複数のユーザープロセスを実行した場合には、それぞれのプロセスを個別にトレースできます。つまり、各プロセスにつき 1つのデバッガーウィンドウを表示できます。 @@ -52,39 +52,43 @@ If you are used to coding with **VS Code**, you can also use this editor to debu ![execution-control-toolbar-buttons](../assets/en/Debugging/executionToolbarButtons.png) -> デフォルトのショートカットは、環境設定ダイアログボックスのショートカットページで変更できます。 +:::note + +Default shortcuts can be customized in the [Shortcuts Page](../Preferences/shortcuts.md) of the Preferences dialog box. + +::: #### トレース終了 トレースが停止され、通常のメソッド実行が再開されます。 -> **Shift** + **F5** または **Shift** を押しながら **トレース終了** ボタンをクリックすると、実行が再開されます。 この操作により、以降のカレントプロセスでの全ての TRACE 呼び出しが無効になります。 +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. この操作により、以降のカレントプロセスでの全ての TRACE 呼び出しが無効になります。 #### 次行に進む 現在のメソッド行 (プログラムカウンターと呼ばれる黄色い矢印で示されている行) が実行されます。 その後、デバッガは次の行に移動します。 -"次の行に進む" ボタンは、サブルーチンや関数に移動することはなく、現在トレースの対象となっているメソッドのレベルにとどまります。 呼び出されるサブルーチンや関数もトレースしたい場合には、**呼び出しメソッドもトレース** ボタンを使用します。 +"次の行に進む" ボタンは、サブルーチンや関数に移動することはなく、現在トレースの対象となっているメソッドのレベルにとどまります。 If you want to also trace subroutines and functions calls, use the **Step Into** button. -リモートデバッグにおいて、メソッドがサーバー上で実行されていた場合には、メソッドの最後の行の実行後にその親メソッドが呼ばれます。 その時、親メソッドがリモート側で実行されていた場合には、このボタンは **トレース終了** ボタンと同じように振る舞います。 +リモートデバッグにおいて、メソッドがサーバー上で実行されていた場合には、メソッドの最後の行の実行後にその親メソッドが呼ばれます。 If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### 呼び出しメソッドもトレース 別のメソッド (サブルーチンまたは関数) を呼び出す行が実行される時にこのボタンを使用すると、呼び出されたメソッドがデバッガーウィンドウに表示され、ステップ実行できます。 -デバッガーウィンドウの [呼び出し連鎖エリア](#呼び出し連鎖エリア) では、新しく呼び出されたメソッドがカレント (一番上) となります。 +The new method becomes the current (top) method in the [Call Chain Pane](#call-chain-pane) of the Debugger window. -別のメソッドを呼び出していない行が実行される場合には、このボタンは **次行に進む** ボタンと同じように振る舞います。 +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. -#### 呼び出し元に進む +#### Step Out -サブルーチンや関数をトレースしている場合にこのボタンをクリックすると、現在トレース中のメソッド全体を実行し、呼び出し元メソッドに戻ることができます。 デバッガーウィンドウは、コールチェーンの一つ前のメソッドに戻ります。 トレース中のメソッドがコールチェーンの最後のメソッドである場合には、デバッガーウィン ドウが閉じられます。 +If you are tracing subroutines and functions, clicking on this button allows you to execute the entire method currently being traced and to step back to the caller method. The Debugger window is brought back to the previous method in the call chain. If the current method is the last method in the call chain, the Debugger window is closed. -リモートデバッグにおいては、メソッドの最後の行の実行時に、サーバー上でメソッドが実行されている場合には、親メソッドが呼び出されます。 その時、親メソッドがリモート側で実行されていた場合には、このボタンは トレース終了 ボタンと同じように振る舞います。 +In remote debugging, on execution of the last line of the method, if the method is executed on the server, the parent method is called. If the parent method is executed on the remote side, the button acts in the same manner as the No Trace button. -#### 別プロセスもトレース +#### Step Into Process -新しいプロセスを作成する (New process コマンドを呼び出す) 行を実行する際にこのボタンを使用すると新しいデバッガーウィンドウが表示され、作成されたプロセスでトレースを続行することができます。 新しいプロセスを作成しない行を実行する際には、このボタンは 次行に進む ボタンと同等に動作します。 +On execution of a line that creates a new process (i.e., calling the New process command), this button opens a new Debugger window that allows you to trace the process method of the newly created process. On execution of a line that does not creates a new process, this button acts in the same manner as the Step Over button. #### 中断 @@ -95,9 +99,9 @@ If you are used to coding with **VS Code**, you can also use this editor to debu #### 中断&編集 -コードエディターウィンドウが開いて、**中断&編集** ボタンがクリックされた時点で実行していたメソッドを表示します。 +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Tip**: このボタンは、コードにどのような変更が必要かが明らかであり、メソッドのテストを続行するためにその変更が必要な場合に使用してください。 変更が完了したら、メソッドを再実行できます。 +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. 変更が完了したら、メソッドを再実行できます。 #### 編集 @@ -105,18 +109,20 @@ If you are used to coding with **VS Code**, you can also use this editor to debu このボタンをクリックしてメソッドを編集した場合には、現在の実行は中断されないため、編集内容の反映は次回実行時になります。 -> **Tip**: このボタンは、コードに必要な変更内容がわかっている場合で、その変更がコードの残り部分の実行やトレースの妨げにならない場合に使用します。 +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. -#### 設定保存 +## Auto-saving -現在のデバッガウィンドウの構成を、デフォルト構成として保存します。 構成には次の内容が含まれます: +The current state of the debugger window is automatically saved in the project. 構成には次の内容が含まれます: -- ウィンドウのサイズと位置 -- 分割線の配置および式評価エリアの内容 +- the size and position of the window, +- the position of the division lines, +- the [display mode](#display-mode), +- the expressions currently displayed in the custom watch pane expressions. By default, expressions are saved with the current method or function. You can [**pin an expression**](#pin-an-expression) to keep it displayed in all contexts. -これらは、プロジェクト内に保存されます。 +The **Default window configuration** button restores the default position and size of the current window (including the division lines and the window itself). -このアクションはリモートデバッグモードでは利用できません ([リモートマシンからのデバッグ](debugging-remote.md) 参照)。 +![factory-settings-button](../assets/en/Debugging/debugger-factory.png) ## ウォッチエリア @@ -134,9 +140,9 @@ If you are used to coding with **VS Code**, you can also use this editor to debu ### 式リスト -#### ラインオブジェクト +#### Line Expressions -このテーマには、次のような要素や式の値が表示されます: +This theme lets you keep track of the values of expressions: - 実行されるコードの行 (プログラムカウンターにより、[ソースコードエリア](#ソースコードエリア) 内で黄色の矢印でマークされている行) で使用されている。 - コードの前の行で使用されている。 @@ -294,8 +300,9 @@ You can also use the [Call chain](https://doc.4d.com/4dv19/help/command/en/page1 カスタムウォッチエリアは、式を評価するために使用します。 [ウォッチエリア](#ウォッチエリア) と似ていますが、ここでは任意の式を表示することができます。 どのようなタイプの式でも評価できます: -- フィールド - 変数 +- object and object property +- フィールド - ポインター - 演算 - 4Dコマンド @@ -304,39 +311,70 @@ You can also use the [Call chain](https://doc.4d.com/4dv19/help/command/en/page1 ![custom-Watch-pane](../assets/en/Debugging/custom-watch-pane.png) -テキスト形式で表示できる式であれば、どのような式でも評価することができます。 ピクチャーや BLOBフィールドおよび変数は表示できません。 BLOB の内容を表示するには、[BLOB to text](https://doc.4d.com/4dv19/help/command/ja/page555.html) のような BLOBコマンドを使用してください。 +テキスト形式で表示できる式であれば、どのような式でも評価することができます。 ピクチャーや BLOBフィールドおよび変数は表示できません。 To display BLOB contents, you can use BLOB commands, such as [BLOB to text](../commands-legacy/blob-to-text.md). + +### Display mode + +You select the display mode to be used for all debugger windows using the **Display** option of the Custom Watch pane's [contextual menu](#contextual-menu). + +![custom-Watch-pane](../assets/en/Debugging/custom-watch-pane-display-menu.png) + +次のオプションから選択することができます: + +- **Local variables**: Displays and evaluates automatically local variables as soon as they are initialized in the running source code. +- **Line Expressions**: Displays and evaluates automatically the same contents as the [Line Expressions](#line-expressions) item of the Expression List. +- **Expressions**: Only displays custom expressions that you have entered manually. Custom expressions have a specific blue icon ![custom-expression-icon](../assets/en/Debugging/custom-expression-icon.png). + +:::note + +Whatever the display mode, you can add custom expressions at any moment. + +::: ### 新しい式の挿入 +You can enter any expression to evaluate. A custom expression is only displayed in the current debugger window, except if you [pin it](#pin-an-expression). + リストに式を追加する方法は複数あります: - ウォッチエリアまたは呼び出し連鎖エリアから項目や式をドラッグ&ドロップします。 - [ソースコードエリア](#ソースコードエリア) で式を選択し、**ctrl+D** (Windows) または **cmd+D** (macOS) を押します。 - カスタムウォッチエリアの空スペースのどこかをダブルクリックします (プレースホルダー名を持つ編集可能な式が追加されます)。 - -値を返すフォーミュラであれば、なんでも追加できます。 +- Select a [display option](#display-mode) that automatically inserts expressions. +- Select **New Expression...** in the Custom Watch pane's [contextual menu](#contextual-menu) to add an expression using the **Formula Editor**. 値を返すフォーミュラであれば、なんでも追加できます。 式を編集するには、その式をクリックして選択し、再びクリックすると (または**Enter**キーを押す) 編集モードになります。 -式を削除するには、その式をクリックして選択し、**Backspace** または **Delete**キーを押します。 +To delete a custom expression, click on it to select it, then press **Backspace** or **Delete** on your keyboard, or click on the **x** icon. -> **警告**: システム変数 (たとえば OK変数) の値を変更するような 4D式を評価する場合、その後のメソッド実行に影響することに注意してください。 +:::warning -### コンテキストメニュー +Be careful when you evaluate a 4D expression modifying the value of one of the System Variables (for instance, the OK variable) because the execution of the rest of the method may be altered. -カスタムウォッチエリアのコンテキストメニューを使って、4D のフォーミュラエディターにアクセスできます: +::: -![custom-watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-context-menu.png) +### Pinning an expression + +You can click on the pushpin icon to pin an expression: + +![pinning-expression](../assets/en/Debugging/pin-expression.png) -**新しい式...**: 新しい式を挿入し、4D のフォーミュラエディターを表示します。 +The expression will then be displayed in all debugger windows. -![custom-Watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-formula-editor.png) +### コンテキストメニュー + +The Custom Watch Pane’s menu is available on a contextual click or using the ![menu](../assets/en/Debugging/custom-watch-pane-menu.png) icon: + +![custom-watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-context-menu.png) -フォーミュラエディターの詳細については、[4Dデザインリファレンスマニュアル](https://doc.4d.com/4Dv19/4D/19/4D-Design-Reference.100-5416591.ja.html) を参照ください。 +- **Display**: Selects the [display mode](#display-mode) to be used for all debugger windows. +- **New Expression...**: Inserts a new expression and displays the 4D Formula Editor. + ![custom-Watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-formula-editor.png) + For more information on the Formula Editor, see the [4D Design Reference manual](https://doc.4d.com/4Dv20/4D/20.2/Description-of-formula-editor.300-6750169.en.html). -- **コマンド挿入...**: 4Dコマンドを新しい式として挿入するためのショートカット。 -- **すべて削除**: 現在カスタムウォッチエリアに表示されている式をすべて削除します。 -- **標準式**: ウォッチエリアの式リストをコピーします。 +* **Insert Command...**: Displays a menu allowing to insert a 4D command as a new expression. +* **すべて削除**: 現在カスタムウォッチエリアに表示されている式をすべて削除します。 +* **Standard Expressions**: Copies the Watch Pane's list of expressions as custom expressions. > このオプションは [リモートデバッグモード](debugging-remote.md)では利用できません。 @@ -353,6 +391,12 @@ You can also use the [Call chain](https://doc.4d.com/4dv19/help/command/en/page1 このエリアでは、[**ブレークポイント**](breakpoints.md) の追加や削除も可能です。 +### Prototype + +The prototype of the currently executed method or function in the Call chain is displayed on the top of the pane: + +![prototype](../assets/en/Debugging/prototype.png) + ### Tips 式の上にマウスカーソルを移動すると、Tipsとして次の内容が表示されます: @@ -410,12 +454,9 @@ You can also use the [Call chain](https://doc.4d.com/4dv19/help/command/en/page1 ![source-code-pane-context-window](../assets/en/Debugging/sourceCodePaneContext.png) -- **定義に移動...**: 選択された要素の定義に移動します。 このコマンドは以下の要素に使用できます: - - _プロジェクトメソッド_: 新しいコードエディターウィンドウにメソッドの内容を表示します。 - - _フィールド_: ストラクチャーウィンドウのインスペクターにフィールドプロパティを表示します。 - - _テーブル_: ストラクチャーウィンドウのインスペクターにテーブルプロパティを表示します。 - - _フォーム_: フォームエディターにフォームを表示します。 - - _変数_ (ローカル、プロセス、インタープロセス、$n 引数): カレントメソッド内の宣言行を表示、または変数が宣言されたコンパイラーメソッドを表示します。 +- **Show documentation**: Opens the documentation for the target element. このコマンドは以下の要素に使用できます: + - _Project methods_, _user classes_: Selects the method in the Explorer and switches to the documentation tab + - _4D commands, functions, class names:_ Displays the online documentation. - **参照を検索...** (コードエディターでも利用可能): 現在の要素が参照されているすべてのメソッドとフォームを検索します。 現在の要素とは、選択されているものまたはカーソルが置かれているものをいいます。 これにはフィールド、変数、コマンド、文字列等が含まれます。 検索結果は、標準の検索結果ウィンドウに表示されます。 - **コピー**: 選択された式が標準のペーストボードへとコピーされます。 - **式ペインにコピー**: 選択された式をカスタムウォッチエリアにコピーします。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md b/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md index 0a6bc294afb97f..766c0326b5082b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md @@ -20,14 +20,12 @@ title: リモートマシンからのデバッグ - ローカルの 4D Serverデバッガー (デフォルト) - サーバーがヘッドレス実行されていない場合 - リモート4Dクライアントのデバッガー - リモートセッションがデザインモードにアクセス可能な場合 - 4D Server 上の [Qodly デバッガー](../WebServer/qodly-studio.md#4d-server-で-qodlyデバッガーを使用する) - Qodly Studio へのアクセスがサーバーで許可されている場合。 -- the VS Code debugger, provided you installed the [4D-Debugger](https://github.com/4d/4D-Debugger-VSCode) extension. - -::: +- the **VS Code** debugger, provided you installed the [4D-Debugger](https://github.com/4d/4D-Debugger-VSCode) extension. 有効化済デバッガーは、4D Server が次のいずれかに遭遇した場合に呼び出されます: - ブレークポイント -- `TRACE` コマンド +- a `TRACE` command - キャッチコマンド - エラー @@ -35,7 +33,7 @@ title: リモートマシンからのデバッグ 注: -- `On Server Startup` データベースメソッドで実行されたコードはリモートでデバッグすることができません。 これはサーバー側でしかデバッグすることができません。 +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. これはサーバー側でしかデバッグすることができません。 - デバッガーが有効化されていない場合、実行中のコードがデバッグコマンドによって中断されることはありません。 ## デバッガーの有効化 @@ -51,20 +49,20 @@ title: リモートマシンからのデバッグ サーバーのデバッガーをリモート4Dクライアントで有効化するには: -1. 4D Server のメニューバーから、**編集** > **デバッガを無効化する** を選択し、リモートマシンからデバッガーを利用できるようにします (4D Server がヘッドレス実行されている場合、この操作はなにもしません)。 -2. サーバーに接続されたリモート4Dクライアントから、**実行** > **リモートデバッガを有効化する** を選択します。 +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -有効化に成功した場合 ([有効化リクエストの拒否](#有効化リクエストの拒否) 参照)、メニューコマンドは **リモートデバッガを無効化する** へと変わります。 +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. これで、サーバーのデバッガーはリモート4Dクライアントで有効化され、以下のタイミングまで有効化されたままです: - ユーザーセッションが終了するまで -- ユーザーが `リモートデバッガを無効化する` を選択するまで +- until you select `Detach Remote Debugger` デバッガーを再度サーバー側で有効化するには: -1. デバッガーが有効化されているリモート4Dクライアントにおいて、**実行** > **リモートデバッガを無効化する** を選択します。 -2. 4D Server のメニューバーから、**編集** > **デバッガを有効化する** を選択します。 +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > サーバー上でデバッガーが有効化されていると (デフォルト)、デバッグを可能にするため、サーバープロセスはすべて自動的にコオオペラティブモードで実行されます。 これは、パフォーマンスに大きな影響を与えかねません。 サーバーマシン上でデバッグする必要がない場合は、デバッガーを無効化し、必要に応じてリモートマシンで有効化することが推奨されます。 @@ -72,13 +70,13 @@ title: リモートマシンからのデバッグ デバッガーは、リモート4Dクライアントまたはサーバーの開始時に自動的に有効化することができます: -- サーバー側の場合 (ヘッドレスモードでなければ)、このオプションは **デバッガを開始時に有効化する** という名前です。 サーバーが開始されると、自動的にデバッガーが有効化されます (デフォルト): +- On the server (if not headless), this option is named **Attach Debugger At Startup**. サーバーが開始されると、自動的にデバッガーが有効化されます (デフォルト): -> **警告**: のちにヘッドレスモードで起動されるサーバーにおいてこのオプションが選択されたままの場合、このサーバーのデバッガーは利用できません。 +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- リモート4Dクライアントでは、このオプションは **リモートデバッガを開始時に有効化する** という名前です。 このオプションが選択されている場合、リモート4Dクライアントは、その後同じ 4D Serverデータベースに接続するたびに、自動的にリモートデバッガーを有効化しようとします。 成功した場合 ([有効化リクエストの拒否](#有効化リクエストの拒否) 参照)、リモートデバッガーは自動的にリモート4Dクライアントで有効化され、メニューコマンドは **リモートデバッガを無効化する** へと変わります。 +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. このオプションが選択されている場合、リモート4Dクライアントは、その後同じ 4D Serverデータベースに接続するたびに、自動的にリモートデバッガーを有効化しようとします。 If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. -> この設定はプロジェクトごとに、[`.4DPreferences`](Project/architecture.md#userpreferencesusername) ファイル内にローカル保存されます。 +> This setting is applied per project and is stored locally in the [`.4DPreferences`](Project/architecture.md#userpreferencesusername) file. ## 有効化リクエストの拒否 @@ -92,5 +90,5 @@ title: リモートマシンからのデバッグ このような場合に、デバッガーを有効化するには、以下のどちらかの条件が必要です: -- 有効化済デバッガーを、**リモートデバッガを無効化する** メニューコマンドでリモート4Dクライアントから外す、あるいは **デバッガを無効化する** コマンドを使用してサーバーから外す。 +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - 有効化済デバッガーを使用しているリモート4Dクライアントセッションが閉じられる。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/text.md b/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/text.md index 1f5dda017cc8e1..95a72412cecbe4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/text.md @@ -47,27 +47,4 @@ title: Text
    -[タイプ](properties_Object.md#タイプ) - -[オブジェクト名](properties_Object.md#オブジェクト名) - -[タイトル](properties_Object.md#タイトル) - -[CSSクラス](properties_Object.md#cssクラス) - -[左](properties_CoordinatesAndSizing.md#左) - -[上](properties_CoordinatesAndSizing.md#上) - -[右](properties_CoordinatesAndSizing.md#右) - -[下](properties_CoordinatesAndSizing.md#下) - -[幅](properties_CoordinatesAndSizing.md#幅) - -[高さ](properties_CoordinatesAndSizing.md#高さ) - -[角の半径](properties_CoordinatesAndSizing.md#角の半径) - -[横方向サイズ変更](properties_ResizingOptions.md#横方向サイズ変更) - -[縦方向サイズ変更](properties_ResizingOptions.md#縦方向サイズ変更) - -[表示状態](properties_Display.md#表示状態) - -[塗りカラー](properties_BackgroundAndBorder.md#背景色塗りカラー) - -[境界線スタイル](properties_BackgroundAndBorder.md#境界線スタイル) - -[フォント](properties_Text.md#フォント) - -[フォントサイズ](properties_Text.md#フォントサイズ) - -[太字](properties_Text.md#太字) - -[イタリック](properties_Text.md#イタリック) - -[下線](properties_Text.md#下線) - -[フォントカラー](properties_Text.md#フォントカラー) - -[方向](properties_Text.md#方向) - -[横揃え](properties_Text.md#横揃え) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Notes/updates.md b/i18n/ja/docusaurus-plugin-content-docs/current/Notes/updates.md index 71e1e328f11874..281cdde3a40cf3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/Notes/updates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/Notes/updates.md @@ -13,9 +13,12 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R - Expressions used in [form object properties](../FormObjects/properties_Reference.md) now benefit from syntax checking in the [Property list](../FormEditor/formEditor.md#property-list) and in the [Compiler](../Project/compiler.md#check-syntax). - You can [associate a class to a form](../FormEditor/properties_FormProperties.md#form-class) to enable code type-ahead and automatic instantiation of form data when using the [`Form`](../commands/form.md) command. - Support of [standalone sessions](../API/SessionClass.md) to simplify local coding for client/server applications. +- [4D debugger](../Debugging/debugger.md): new design and auto-save, display mode features. - [New built component architecture](../Desktop/building.md#build-component) for a better compliance with Apple notarization guidelines. +- Dependencies: Use the Dependency manager to [check for new versions](../Project/components.md#checking-for-new-versions) and [update](../Project/components.md#updating-dependencies) GitHub components. - 4D Language: - Modified commands: [`FORM EDIT`](../commands/form-edit.md) + - [`.sign()`](../API/CryptoKeyClass.md#sign) and [`.verify()`](../API/CryptoKeyClass.md#verify) functions of the [4D.CryptoKey class](../API/CryptoKeyClass.md) support Blob in the _message_ parameter. - [**Fixed bug list**](https://bugs.4d.fr/fixedbugslist?version=20_R8): list of all bugs that have been fixed in 4D 20 R8. #### 動作の変更 @@ -31,7 +34,7 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R - 時間型のリストボックスの列とヘッダーは、["blankIfNull" オプション](../FormObjects/properties_Display.md#時間フォーマット) をサポートするようになりました。 - New properties in [`.getBoxInfo()`](../API/IMAPTransporterClass.md#getboxinfo) and [`.getBoxList()`](../API/IMAPTransporterClass.md#getboxlist). - [コンポーネントマネージャーのインターフェースを使用してコンポーネントを追加および削除](../Project/components.md#依存関係の追加と削除) できるようになりました。 -- コンパイラー設定の新しい [**直接型指定モード**](../Project/compiler.md#直接型指定の有効化): コード内のすべての変数および引数を `var` と `#DECLARE`/`Function` キーワードで宣言します (新規プロジェクトではこのモードのみサポートされます)。 これに伴い、[シンタックスチェック機能](../Project/compiler.md#シンタックスチェック) が強化されました。 +- コンパイラー設定の新しい [**直接型指定モード**](../Project/compiler.md#直接型指定の有効化): コード内のすべての変数および引数を `var` と `#DECLARE`/`Function` キーワードで宣言します (新規プロジェクトではこのモードのみサポートされます)。 これに伴い、[シンタックスチェック機能](../Project/compiler.md#シンタックスチェック) が強化されました。 これに伴い、[シンタックスチェック機能](../Project/compiler.md#シンタックスチェック) が強化されました。 これに伴い、[シンタックスチェック機能](../Project/compiler.md#シンタックスチェック) が強化されました。 これに伴い、[シンタックスチェック機能](../Project/compiler.md#シンタックスチェック) が強化されました。 - [セッションシングルトン](../Concepts/classes.md#シングルトンクラス) と、新しい [`.isSessionSingleton`](../API/ClassClass.md#issessionsingleton) クラスプロパティをサポート。 - New [`onHttpGet` function keyword](../ORDA/ordaClasses.md#onhttpget-keyword) to define singleton or ORDA functions that can be called through [HTTP REST GET requests](../REST/ClassFunctions.md#function-calls). - New [`4D.OutgoingMessage`](../API/OutgoingMessageClass.md) class for the REST server to return any web contents. @@ -49,8 +52,9 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R #### 動作の変更 -- [4Dランゲージ](../commands/command-index.md) よび [4D Write Pro ランゲージ](../WritePro/commands/command-index.md) のドキュメントが、developer.4d.com で利用できるようになりました。 これらのドキュメントに関する新機能と変更点については、このリリースノートを参照ください。 +- [4Dランゲージ](../commands/command-index.md) よび [4D Write Pro ランゲージ](../WritePro/commands/command-index.md) のドキュメントが、developer.4d.com で利用できるようになりました。 これらのドキュメントに関する新機能と変更点については、このリリースノートを参照ください。 これらのドキュメントに関する新機能と変更点については、このリリースノートを参照ください。 これらのドキュメントに関する新機能と変更点については、このリリースノートを参照ください。 これらのドキュメントに関する新機能と変更点については、このリリースノートを参照ください。 - [`File`](../commands/file.md) コマンド (および [`4D.File.new()`](../API/FileClass.md#4dfilenew) コマンド) は、引数として与えられた _path_ のシンタックスをより厳しくチェックする様になりました。 +- The **describe** action [permission](../ORDA/privileges.md#permission-actions) has been removed from available actions. Access to [`/rest/$catalog`](../REST/$catalog.md) urls is no longer controlled. Session _describe_ privileges are now ignored. ## 4D 20 R6 @@ -58,7 +62,7 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R #### ハイライト -- [オブジェクト参照](../Concepts/dt_object.md#オブジェクト演算子) と [コレクション参照](../Concepts/dt_collection.md#コレクション演算子) を対象とした比較演算子をサポート。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 +- [オブジェクト参照](../Concepts/dt_object.md#オブジェクト演算子) と [コレクション参照](../Concepts/dt_collection.md#コレクション演算子) を対象とした比較演算子をサポート。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 - [宣言された名前空間](../Extensions/develop-components.md#コンポーネント名前空間の宣言) をコンポーネントが持つ場合、そのクラスは [`cs.`](../Concepts/classes.md#cs) を介して、ホストプロジェクトに読み込まれているすべてのコンポーネント間で自動的に共有されるようになりました。 - コンポーネントマネージャー: [GitHub に保存されたコンポーネント](../Project/components.md#github-に保存されたコンポーネントの宣言) のサポート。 - 新しい [`entitySelection.clean()`](../API/EntitySelectionClass.md#clean) 関数と [`$clean`](../REST/$clean.md) REST API が追加されました。これらは、対象のエンティティセレクションから削除済みエンティティを除外したエンティティセレクションを新規に取得します。 @@ -90,7 +94,7 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R - [`Try...Catch...End try`](../Concepts/error-handling.md#trycatchend-try) エラー処理構文のサポート。 - QUICネットワークレイヤーは [ブロードキャスト](../Desktop/clientServer.md#リモートプロジェクトを開く)、[SSO](https://doc.4d.com/4Dv20R5/4D/20-R5/Single-Sign-On-SSO-on-Windows.300-6932709.ja.html)、および [IPv6](https://doc.4d.com/4Dv20R5/4D/20-R5/IP-Settings.300-6932707.ja.html) に対応しました。 - [制限付エンティティセレクション](../ORDA/entities.md#制限付エンティティセレクション) をサポート。 -- [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 新しいクラスプロパティ: [`.isShared`](../API/ClassClass.md#isshared), [`.isSingleton`](../API/ClassClass.md#isingleton), [`.me`](../API/ClassClass.md#me). +- [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 新しいクラスプロパティ: [`.isShared`](../API/ClassClass.md#isshared), [`.isSingleton`](../API/ClassClass.md#isingleton), [`.me`](../API/ClassClass.md#me). [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 新しいクラスプロパティ: [`.isShared`](../API/ClassClass.md#isshared), [`.isSingleton`](../API/ClassClass.md#isingleton), [`.me`](../API/ClassClass.md#me). - [宣言と同時にクラスプロパティを初期化](../Concepts/classes.md/#宣言と同時にプロパティを初期化する) できるようになりました。 - RESTリクエスト用の新しい [強制ログインモード](../REST/authUsers.md#強制ログインモード) と、[Qodly Studio for 4D での専用サポート](../WebServer/qodly-studio.md#強制ログイン)。 - 新しい [$format](../REST/$format.md) RESTパラメーター。 @@ -101,8 +105,8 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R #### 動作の変更 -- _4D Internet Commands_ および _4D for OCI_ プラグインは、4Dインストーラーに含まれなくなりました。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 -- ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) に加えた変更は、`catalog_editor.json` という個別ファイルに保存されるようになりました。このファイルはプロジェクトの [`Sources`フォルダー](../Project/architecture.md#sources) に保存されます。 +- _4D Internet Commands_ および _4D for OCI_ プラグインは、4Dインストーラーに含まれなくなりました。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 +- ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) に加えた変更は、`catalog_editor.json` という個別ファイルに保存されるようになりました。このファイルはプロジェクトの [`Sources`フォルダー](../Project/architecture.md#sources) に保存されます。 ## 4D 20 R4 @@ -128,8 +132,8 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R - 引数を宣言するための従来のシンタックス (例: `C_TEXT($1)` や `var $1 : Text`) は非推奨となり、コードの入力時、シンタックスチェック、コンパイル時に警告が生成されます。 - セレクション内レコードの削除後に、別レコードが新規作成された場合でも、セレクションの一貫性が保持されるようになりました ([このブログ記事](https://blog.4d.com/ja/4d-keeps-your-selections-of-records-consistent-regarding-deletion-of-records/) を参照ください)。 -- 更新された [OpenSSL ライブラリ](#ライブラリの一覧) では、デフォルトの SSL/TLS セキュリティレベルが 1 から 2 に変更されました。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 -- In order to allow password verification when the [4D user directory uses the bcrypt algorithm](https://blog.4d.com/bcrypt-support-for-passwords/), the "password" value in the _connectionInfo_ parameter of the [`Open datastore`](../commands/open-datastore.md) command is now sent in clear form by default. "On REST authentication" データベースメソッドが、パスワードを平文の状態で扱えるようにし (3番目のパラメーターは **False**)、`Open datastore` に渡す _connectionInfo_ で "tls" オプションを **True** にすることで、接続が暗号化されるようにする必要があります。 In specific cases, a new "passwordAlgorithm" option can also be used for compatibility (see [`Open datastore`](../commands/open-datastore.md) command). +- 更新された [OpenSSL ライブラリ](#ライブラリの一覧) では、デフォルトの SSL/TLS セキュリティレベルが 1 から 2 に変更されました。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 +- "On REST authentication" データベースメソッドが、パスワードを平文の状態で扱えるようにし (3番目のパラメーターは **False**)、`Open datastore` に渡す _connectionInfo_ で "tls" オプションを **True** にすることで、接続が暗号化されるようにする必要があります。 In specific cases, a new "passwordAlgorithm" option can also be used for compatibility (see [`Open datastore`](../commands/open-datastore.md) command). In order to allow password verification when the [4D user directory uses the bcrypt algorithm](https://blog.4d.com/bcrypt-support-for-passwords/), the "password" value in the _connectionInfo_ parameter of the [`Open datastore`](../commands/open-datastore.md) command is now sent in clear form by default. In specific cases, a new "passwordAlgorithm" option can also be used for compatibility (see [`Open datastore`](../commands/open-datastore.md) command). ## 4D 20 R3 @@ -140,7 +144,7 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R - 新しい [`collection.multiSort()`](../API/CollectionClass.md#multisort) 関数を追加しました。 - Support of _context_ parameter in [`Formula from string`](../commands/formula-from-string.md). - [4D.WebSocket.new](../API/WebSocketClass.md#4dwebsocketnew) の _connectionHandler_ パラメーターで `headers` プロパティをサポート。 -- データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 +- データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 - ピクチャー/Blob属性へのファイル参照の代入は、[ORDAでサポートされています](../ORDA/entities.md#d#ピクチャーまたは-blob属性にファイルを代入する)。 - [宣言と同時に変数のデータ型と値を初期化](../Concepts/variables/#宣言と同時に変数を初期化する) できるようになりました。 - ログファイルの設定は、[カレントデータファイル](../Backup/settings.md#ログ管理) とともに保存されるようになりました。 @@ -153,7 +157,7 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R #### 動作の変更 - いくつかのエラーは、[エラー処理メソッド](../Concepts/error-handling.md) によってインタプリタモードのみでキャッチ可能でした。 この問題の修正後、以下のエラーがコンパイルモードでも検出されるようになりました: _範囲外のインデックス_、_互換性のない型_、_Null ポインターの逆参照_。 ただし、Intelプロセッサーでは、このようなエラーによって以前と同様に処理が中断されますが、Apple Siliconプロセッサーでは、[`ABORT`](https://doc.4d.com/4dv20/help/command/ja/page156.html)コマンドを呼び出さない限り、処理は中断されません。 -- 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 +- 4D は内部的な PHPインタプリターを実装しなくなりました。 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 ## 4D 20 R2 @@ -161,7 +165,7 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R :::warning セキュリティに関する注記 -4Dアプリケーションが TLS接続を使用する場合は、4D 20 R2 HF1 build 100440以上へのアップグレードが推奨されます。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 +4Dアプリケーションが TLS接続を使用する場合は、4D 20 R2 HF1 build 100440以上へのアップグレードが推奨されます。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 ::: @@ -177,7 +181,7 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R #### 動作の変更 -- **警告**: [4D.FileHandle](../API/FileHandleClass.md) オブジェクトの [`offset`](../API/FileHandleClass.md#offset) の開始値が誤って 0 ではなく 1 に設定されていました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 +- **警告**: [4D.FileHandle](../API/FileHandleClass.md) オブジェクトの [`offset`](../API/FileHandleClass.md#offset) の開始値が誤って 0 ではなく 1 に設定されていました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 ## 4D 20.x LTS @@ -185,20 +189,20 @@ See [**Release Notes for 4D 20.x LTS**](../../versioned_docs/version-20/Notes/up ## ライブラリの一覧 -| ライブラリ | 現在のバージョン | 更新された 4D バージョン | 説明 | -| --------- | -------------------------------------- | -------------- | ----------------------------------------------------------------------------------------- | -| BoringSSL | 0aa300b | 20 R6 | QUIC に使用 | -| CEF | 121 | 20 R5 | Chromium 6167 | -| Hunspell | 1.7.2 | 20 | 4D フォームと 4D Write Pro でスペルチェックに使用されます。 | -| ICU | 73.2 | 20 | このアップグレードにより、英数字とテキスト、オブジェクトのインデックスが自動的に再構築されます。 | -| libldap | 2.6.7 | 20 R6 | | -| libsasl | 2.1.28 | 20 | | -| Libuv | 1.48 | 20 R6 | QUIC に使用 | -| libZip | 1.9.2 | 20 | Zip クラス、4D Write Pro、svg および serverNet コンポーネントによって使用。 | -| LZMA | 5.4.1 | 20 | | -| OpenSSL | 3.3.2 | **20 R7** | デフォルトの TLS/SSL セキュリティレベルがアップグレードされました。 リリース v20R4 の[動作の変更](#動作の変更)参照。 | -| PDFWriter | 4.3 | 20 | 12.2.1 で FreeType依存 | -| PHP | 8.2.4 | 20 | | -| SpreadJS | 17.1.0 | **20 R7** | 新機能の概要については、[このブログ記事](https://blog.4d.com/ja/4d-view-pro-whats-new-in-4d-20-r7/) を参照ください。 | -| webKit | WKWebView | 19 | | -| Zlib | 1.2.13 | 20 | | +| ライブラリ | 現在のバージョン | 更新された 4D バージョン | 説明 | +| --------- | -------------------------------------- | -------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| BoringSSL | 0aa300b | 20 R6 | QUIC に使用 | +| CEF | 121 | 20 R5 | Chromium 6167 | +| Hunspell | 1.7.2 | 20 | 4D フォームと 4D Write Pro でスペルチェックに使用されます。 | +| ICU | 73.2 | 20 | このアップグレードにより、英数字とテキスト、オブジェクトのインデックスが自動的に再構築されます。 | +| libldap | 2.6.7 | 20 R6 | | +| libsasl | 2.1.28 | 20 | | +| Libuv | 1.48 | 20 R6 | QUIC に使用 | +| libZip | 1.9.2 | 20 | Zip クラス、4D Write Pro、svg および serverNet コンポーネントによって使用。 | +| LZMA | 5.4.1 | 20 | | +| OpenSSL | 3.3.2 | **20 R7** | デフォルトの TLS/SSL セキュリティレベルがアップグレードされました。 リリース v20R4 の[動作の変更](#動作の変更)参照。 リリース v20R4 の[動作の変更](#動作の変更)参照。 リリース v20R4 の[動作の変更](#動作の変更)参照。 | +| PDFWriter | 4.3 | 20 | 12.2.1 で FreeType依存 | +| PHP | 8.2.4 | 20 | | +| SpreadJS | 17.1.0 | **20 R7** | 新機能の概要については、[このブログ記事](https://blog.4d.com/ja/4d-view-pro-whats-new-in-4d-20-r7/) を参照ください。 | +| webKit | WKWebView | 19 | | +| Zlib | 1.2.13 | 20 | | diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/glossary.md b/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/glossary.md index d35cb7c6e21b68..6157dadefc225e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/glossary.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/glossary.md @@ -9,11 +9,11 @@ title: 用語集 ## アクション -[リソース上](#リソース) に対しておこなえるアクションを指します。 利用可能なアクションは、create (作成)、read (読み取り)、update (更新)、drop (削除)、execute (実行)、promote (昇格)、および describe (記述) です。 +[リソース上](#リソース) に対しておこなえるアクションを指します。 [リソース上](#リソース) に対しておこなえるアクションを指します。 [リソース上](#リソース) に対しておこなえるアクションを指します。 Available actions are: create, read, update, drop, execute, and promote. ## 属性 -属性とは、リレーショナルデータベース内における最小の保存セルです ([リレーション属性](#リレーション属性) も参照してください)。 データクラス属性とエンティティ属性を混同しないようにしてください: +属性とは、リレーショナルデータベース内における最小の保存セルです ([リレーション属性](#リレーション属性) も参照してください)。 データクラス属性とエンティティ属性を混同しないようにしてください: データクラス属性とエンティティ属性を混同しないようにしてください: - データクラスオブジェクトにおける各プロパティは、対応するテーブルの対応するフィールドへとマップするデータクラス属性です (同じ名前と型)。 - エンティティオブジェクトにおけるエンティティ属性は、対応するデータストア属性の値を格納するプロパティです。 @@ -30,7 +30,7 @@ title: 用語集 ## 計算属性 -計算属性は、実際には情報を保存しません。 代わりに、同じエンティティや他のエンティティ、属性、関数などから得られる値に基づいて、その属性値を決定します。 計算属性が参照されると、それを定義する "計算" が評価され、値が決定されます。 計算属性の値を算出するにあたっては、ユーザー定義のコードによって、その評価中に評価の仕方を決定することも可能です。 +計算属性は、実際には情報を保存しません。 代わりに、同じエンティティや他のエンティティ、属性、関数などから得られる値に基づいて、その属性値を決定します。 計算属性が参照されると、それを定義する "計算" が評価され、値が決定されます。 計算属性の値を算出するにあたっては、ユーザー定義のコードによって、その評価中に評価の仕方を決定することも可能です。 代わりに、同じエンティティや他のエンティティ、属性、関数などから得られる値に基づいて、その属性値を決定します。 計算属性が参照されると、それを定義する "計算" が評価され、値が決定されます。 計算属性の値を算出するにあたっては、ユーザー定義のコードによって、その評価中に評価の仕方を決定することも可能です。 ## データモデルクラス @@ -46,7 +46,7 @@ ORDA データモデルクラスの関数。 ## データクラス -データクラスとは、データを記述するオブジェクトモデルです。 データストアによって提供されるデータベースのテーブルは、データクラスを通して管理されます。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 +データクラスとは、データを記述するオブジェクトモデルです。 データストアによって提供されるデータベースのテーブルは、データクラスを通して管理されます。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データクラスとは、データを記述するオブジェクトモデルです。 データストアによって提供されるデータベースのテーブルは、データクラスを通して管理されます。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データクラスとは、データを記述するオブジェクトモデルです。 データストアによって提供されるデータベースのテーブルは、データクラスを通して管理されます。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データストアによって提供されるデータベースのテーブルは、データクラスを通して管理されます。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データクラスは単一のデータストアにリレートされています。 @@ -56,7 +56,7 @@ ORDA データモデルクラスの関数。 ## データストア -データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 `ds` コマンドによって返されるメインデータベースは、データストア (メインデータストア) として利用可能です。 +データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 `ds` コマンドによって返されるメインデータベースは、データストア (メインデータストア) として利用可能です。 データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 `ds` コマンドによって返されるメインデータベースは、データストア (メインデータストア) として利用可能です。 データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 `ds` コマンドによって返されるメインデータベースは、データストア (メインデータストア) として利用可能です。 データストアは以下のものを提供します: @@ -65,7 +65,7 @@ ORDA データモデルクラスの関数。 利用できるデータベースは、スタンダロンまたはクライアント/サーバーで開いているメインの 4D データベース (メインデータストア)、および REST リソースとして公開された 4D Server データベースです (リモートデータストア)。 -データストアは単一のデータベースのみを参照しますが、 複数のデータベースをアクセスするために複数のデータストアを開くことも可能です。 +データストアは単一のデータベースのみを参照しますが、 データストアは単一のデータベースのみを参照しますが、 データストアは単一のデータベースのみを参照しますが、 複数のデータベースをアクセスするために複数のデータストアを開くことも可能です。 データストアは単一のデータベースのみを参照しますが、 データストアは単一のデータベースのみを参照しますが、 複数のデータベースをアクセスするために複数のデータストアを開くことも可能です。 ## DataStore クラス @@ -81,11 +81,11 @@ ORDA データモデルクラスの関数。 ## ds -`ds` は、[データストア](dsMapping.md#データストア) のオブジェクト参照を返す 4Dランゲージコマンドです。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 +`ds` は、[データストア](dsMapping.md#データストア) のオブジェクト参照を返す 4Dランゲージコマンドです。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 ## エンティティ -エンティティとは、データクラスモデルに対応するオブジェクトです。 エンンティティには、データクラスと同じ属性が格納されます。 +エンティティとは、データクラスモデルに対応するオブジェクトです。 エンンティティには、データクラスと同じ属性が格納されます。 エンンティティには、データクラスと同じ属性が格納されます。 属性とプロパティは似た概念です。 _属性_ と _プロパティ_ は似た概念です。 "属性" はデータを保存するデータクラスプロパティを指定するのに使われるのに対し、"プロパティ"はより一般的な概念でオブジェクト内で保存されるデータを定義します。 エンティティは、データクラスのインスタンスとも解釈可能なオブジェクトです。 しかしながら、エンティティはリレートされたデータも格納しています。 エンティティの目的はデータの管理 (作成、更新、削除) です。 @@ -93,7 +93,7 @@ ORDA データモデルクラスの関数。 ## エンティティセレクション -エンティティセレクションは、一つのオブジェクトです。 データストアをクエリすると、エンティティセレクションが返されます。 エンティティセレクションとは、同じデータクラスに所属するエンティティへの参照のセットのことです。 +エンティティセレクションは、一つのオブジェクトです。 エンティティセレクションは、一つのオブジェクトです。 データストアをクエリすると、エンティティセレクションが返されます。 エンティティセレクションとは、同じデータクラスに所属するエンティティへの参照のセットのことです。 エンティティセレクションは、一つのオブジェクトです。 エンティティセレクションは、一つのオブジェクトです。 データストアをクエリすると、エンティティセレクションが返されます。 エンティティセレクションとは、同じデータクラスに所属するエンティティへの参照のセットのことです。 エンティティセレクションとは、同じデータクラスに所属するエンティティへの参照のセットのことです。 エンティティセレクションは以下を格納します: @@ -105,21 +105,21 @@ ORDA データモデルクラスの関数。 ## 汎用クラス -エンティティやデータクラスなどの ORDA オブジェクト用のビルトインクラス。 汎用クラスのプロパティや関数は、ユーザー拡張クラス (例: `EmployeeEntity`) において自動で利用可能です。 +エンティティやデータクラスなどの ORDA オブジェクト用のビルトインクラス。 エンティティやデータクラスなどの ORDA オブジェクト用のビルトインクラス。 汎用クラスのプロパティや関数は、ユーザー拡張クラス (例: `EmployeeEntity`) において自動で利用可能です。 エンティティやデータクラスなどの ORDA オブジェクト用のビルトインクラス。 汎用クラスのプロパティや関数は、ユーザー拡張クラス (例: `EmployeeEntity`) において自動で利用可能です。 ## レイジーローディング -エンティティは参照として管理されているため、データは必要なときにのみロードされます。つまりコードや、インターフェースウィジェットを通してアクセスしたときなどです。 この最適化原理は、レイジーローディングと呼ばれています。 +エンティティは参照として管理されているため、データは必要なときにのみロードされます。つまりコードや、インターフェースウィジェットを通してアクセスしたときなどです。 この最適化原理は、レイジーローディングと呼ばれています。 この最適化原理は、レイジーローディングと呼ばれています。 ## メインデータストア -開かれている 4Dデータベース (シングルユーザーまたはクライアント/サーバー) に対応するデータストアオブジェクト。 メインデータストアは ds コマンドによって返されます。 +開かれている 4Dデータベース (シングルユーザーまたはクライアント/サーバー) に対応するデータストアオブジェクト。 メインデータストアは ds コマンドによって返されます。 メインデータストアは ds コマンドによって返されます。 メインデータストアは ds コマンドによって返されます。 メインデータストアは ds コマンドによって返されます。 ## メソッド -データストア、データクラス、エンティティセレクション、エンティティなどの ORDA オブジェクトは、オブジェクトのクラスを定義します。 これらのクラスには、オブジェクトを直接操作するための専用のメソッドが提供されています。 これらのメソッドはメンバー関数とも呼ばれます。 このメソッドを使用するには、オブジェクトのインスタンスに対して呼び出します。 +データストア、データクラス、エンティティセレクション、エンティティなどの ORDA オブジェクトは、オブジェクトのクラスを定義します。 これらのクラスには、オブジェクトを直接操作するための専用のメソッドが提供されています。 これらのメソッドはメンバー関数とも呼ばれます。 このメソッドを使用するには、オブジェクトのインスタンスに対して呼び出します。 これらのクラスには、オブジェクトを直接操作するための専用のメソッドが提供されています。 これらのメソッドはメンバー関数とも呼ばれます。 このメソッドを使用するには、オブジェクトのインスタンスに対して呼び出します。 -たとえば、`query()` メソッドはデータクラスのメンバー関数です。 `$myClass` 変数にデータクラスオブジェクトを格納している場合、次のように書くことができます: +たとえば、`query()` メソッドはデータクラスのメンバー関数です。 たとえば、`query()` メソッドはデータクラスのメンバー関数です。 たとえば、`query()` メソッドはデータクラスのメンバー関数です。 `$myClass` 変数にデータクラスオブジェクトを格納している場合、次のように書くことができます: たとえば、`query()` メソッドはデータクラスのメンバー関数です。 たとえば、`query()` メソッドはデータクラスのメンバー関数です。 `$myClass` 変数にデータクラスオブジェクトを格納している場合、次のように書くことができます: ```code4d $myClass.query("name = smith") @@ -127,7 +127,7 @@ $myClass.query("name = smith") ## ミックスデータ型 -このドキュメントでは、データクラス属性に保存可能な値の様々な型を指定するために、"ミックス" データ型が使用されます。 : +このドキュメントでは、データクラス属性に保存可能な値の様々な型を指定するために、"ミックス" データ型が使用されます。 : : : : - 数値 - text @@ -156,11 +156,11 @@ _(\*) ピクチャー型は_ `entitySelection.max( )` _などの統計型メソ [属性](#属性) を参照してください。 -> 属性とプロパティは似た概念です。 "属性" はデータを保存するデータクラスプロパティを指定するのに使われるのに対し、"プロパティ"はより一般的な概念でオブジェクト内で保存されるデータを定義します。 +> 属性とプロパティは似た概念です。 _属性_ と _プロパティ_ は似た概念です。 "属性" はデータを保存するデータクラスプロパティを指定するのに使われるのに対し、"プロパティ"はより一般的な概念でオブジェクト内で保存されるデータを定義します。 ## プロパティパス -プロパティパスとは、あるオブジェクトのプロパティへのパスです。 プロパティが複数の階層にネストされている場合、各階層はドット (".") によって区切られます。 +属性パスとは、あるデータクラスあるいはエンティティ内の属性へのパスです。 [プロパティパス](#プロパティパス) も参照ください。 プロパティが複数の階層にネストされている場合、各階層はドット (".") によって区切られます。 ## 通常クラス @@ -189,23 +189,23 @@ ORDA オブジェクトとは関わりのないユーザークラス。 ## リモートデータストア -4D または (HTTP経由で利用可能な) 4D Server 上で開かれている、REST リソースとして公開された 4Dデータベース。 このデータベースは他のマシンにおいてデータストアとしてローカルに参照することができ、その際には割り当てられた locaID で識別されます。 リモートデータストアは ORDA の概念 (データストア、データクラス、エンティティセレクション等) を使って利用できます。 利用にあたってはライセンスが消費されます。 +4D または (HTTP経由で利用可能な) 4D Server 上で開かれている、REST リソースとして公開された 4Dデータベース。 このデータベースは他のマシンにおいてデータストアとしてローカルに参照することができ、その際には割り当てられた locaID で識別されます。 リモートデータストアは ORDA の概念 (データストア、データクラス、エンティティセレクション等) を使って利用できます。 利用にあたってはライセンスが消費されます。 このデータベースは他のマシンにおいてデータストアとしてローカルに参照することができ、その際には割り当てられた locaID で識別されます。 リモートデータストアは ORDA の概念 (データストア、データクラス、エンティティセレクション等) を使って利用できます。 利用にあたってはライセンスが消費されます。 ## リソース -[権限](#権限) における [アクション](#アクション) の許可・拒否の対象となる ORDA 要素。 利用可能なリソースは、データストア、データクラス、データクラス属性、ORDAデータモデル関数のいずれかです。 +[権限](#権限) における [アクション](#アクション) の許可・拒否の対象となる ORDA 要素。 利用可能なリソースは、データストア、データクラス、データクラス属性、ORDAデータモデル関数のいずれかです。 利用可能なリソースは、データストア、データクラス、データクラス属性、ORDAデータモデル関数のいずれかです。 ## ロール -ロールとは、管理者が使用することを目的とした、公開された [権限](#権限) のことです。 ロールは 1つ以上の権限を持つことができます。 +ロールとは、管理者が使用することを目的とした、公開された [権限](#権限) のことです。 ロールは 1つ以上の権限を持つことができます。 ロールは 1つ以上の権限を持つことができます。 ロールは 1つ以上の権限を持つことができます。 ## セッション -4Dアプリケーションがリモートデータストアに接続すると、4D Server (HTTP) 上では セッション が作成されます。 セッションcookie が生成され、ローカルデータストアID と紐づけられます。 +4Dアプリケーションがリモートデータストアに接続すると、4D Server (HTTP) 上では セッション が作成されます。 セッションcookie が生成され、ローカルデータストアID と紐づけられます。 セッションcookie が生成され、ローカルデータストアID と紐づけられます。 セッションcookie が生成され、ローカルデータストアID と紐づけられます。 セッションcookie が生成され、ローカルデータストアID と紐づけられます。 -新規セッションが開始されるごとに、ライセンスが消費されます。 セッションが閉じられると、ライセンスは解放されます。 +新規セッションが開始されるごとに、ライセンスが消費されます。 セッションが閉じられると、ライセンスは解放されます。 セッションが閉じられると、ライセンスは解放されます。 セッションが閉じられると、ライセンスは解放されます。 セッションが閉じられると、ライセンスは解放されます。 -アクティビティのないセッションはタイムアウト後に自動的に終了します。 デフォルトのタイムアウトは 48時間で、任意に設定することができます (最少時間は 60分)。 +アクティビティのないセッションはタイムアウト後に自動的に終了します。 デフォルトのタイムアウトは 48時間で、任意に設定することができます (最少時間は 60分)。 デフォルトのタイムアウトは 48時間で、任意に設定することができます (最少時間は 60分)。 デフォルトのタイムアウトは 48時間で、任意に設定することができます (最少時間は 60分)。 ## シャロウコピー @@ -217,4 +217,4 @@ ORDA オブジェクトとは関わりのないユーザークラス。 ## ストレージ属性 -ストレージ属性 (スカラー属性と呼ばれることも) は、データストアクラスの属性の中で最も基本的なタイプであり、リレーショナルデータベースのフィールドに最も直接的に対応するものです。 ストレージ属性は、データクラスのエンティティ毎に 1つの値を持ちます。 +ストレージ属性 (スカラー属性と呼ばれることも) は、データストアクラスの属性の中で最も基本的なタイプであり、リレーショナルデータベースのフィールドに最も直接的に対応するものです。 ストレージ属性は、データクラスのエンティティ毎に 1つの値を持ちます。 ストレージ属性は、データクラスのエンティティ毎に 1つの値を持ちます。 ストレージ属性は、データクラスのエンティティ毎に 1つの値を持ちます。 ストレージ属性は、データクラスのエンティティ毎に 1つの値を持ちます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/privileges.md b/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/privileges.md index 87194921d8670d..82589101d395e8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/privileges.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/privileges.md @@ -3,13 +3,13 @@ id: privileges title: 権限 --- -データ保護と、承認ユーザーによる迅速かつ容易なデータアクセスを両立することは、Webアプリケーションにとって大きな課題です。 ORDA のセキュリティアーキテクチャーはデータストアの中心に実装されており、プロジェクト内のさまざまなリソース (データストア、データクラス、関数など) に対して、すべての Web または REST ユーザーセッションに特定の権限を定義することができます。 +データ保護と、承認ユーザーによる迅速かつ容易なデータアクセスを両立することは、Webアプリケーションにとって大きな課題です。 データ保護と、承認ユーザーによる迅速かつ容易なデータアクセスを両立することは、Webアプリケーションにとって大きな課題です。 ORDA のセキュリティアーキテクチャーはデータストアの中心に実装されており、プロジェクト内のさまざまなリソース (データストア、データクラス、関数など) に対して、すべての Web または REST ユーザーセッションに特定の権限を定義することができます。 ## 概要 ORDA のセキュリティアーキテクチャーは、権限、許諾アクション (read、create など)、およびリソースの概念に基づいています。 -Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 +Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 セッション内で送信されるユーザーリクエストは、プロジェクトの `roles.json` ファイルで定義された権限に対して評価されます。 @@ -36,12 +36,12 @@ Webユーザーまたは RESTユーザーがログインすると、そのセッ あるレベルにおいて定義されたパーミッションは基本的に下位レベルに継承されますが、パーミッションは複数のレベルで設定することもできます: - データストアレベルで定義されたパーミッションは、自動的にすべてのデータクラスに割り当てられます。 -- データクラスレベルで定義されたパーミッションは、データストアの設定をオーバーライドします (あれば)。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 -- データクラスとは異なり、属性レベルで定義されたパーミッションは、親のデータクラスの設定をオーバーライドするのではなく、それに追加されます。 たとえば、同じ許諾アクションに対し、データクラスのレベルでは "general" という権限名を、データクラスの属性のレベルでは "detail" という権限名を割り当てた場合、その属性にアクセスするには、セッションに "general" と "detail" の両方の権限が設定されている必要があります。 +- データクラスレベルで定義されたパーミッションは、データストアの設定をオーバーライドします (あれば)。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 データクラスレベルで定義されたパーミッションは、データストアの設定をオーバーライドします (あれば)。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 +- データクラスとは異なり、属性レベルで定義されたパーミッションは、親のデータクラスの設定をオーバーライドするのではなく、それに追加されます。 データクラスとは異なり、属性レベルで定義されたパーミッションは、親のデータクラスの設定をオーバーライドするのではなく、それに追加されます。 たとえば、同じ許諾アクションに対し、データクラスのレベルでは "general" という権限名を、データクラスの属性のレベルでは "detail" という権限名を割り当てた場合、その属性にアクセスするには、セッションに "general" と "detail" の両方の権限が設定されている必要があります。 データクラスとは異なり、属性レベルで定義されたパーミッションは、親のデータクラスの設定をオーバーライドするのではなく、それに追加されます。 たとえば、同じ許諾アクションに対し、データクラスのレベルでは "general" という権限名を、データクラスの属性のレベルでは "detail" という権限名を割り当てた場合、その属性にアクセスするには、セッションに "general" と "detail" の両方の権限が設定されている必要があります。 データクラスとは異なり、属性レベルで定義されたパーミッションは、親のデータクラスの設定をオーバーライドするのではなく、それに追加されます。 たとえば、同じ許諾アクションに対し、データクラスのレベルでは "general" という権限名を、データクラスの属性のレベルでは "detail" という権限名を割り当てた場合、その属性にアクセスするには、セッションに "general" と "detail" の両方の権限が設定されている必要があります。 :::info -パーミッションは、データストアオブジェクトや関数へのアクセスを制御します。 特定の条件に基づいて読み取りデータをフィルタリングしたい場合は、[制限付エンティティセレクション](entities.md#制限付エンティティセレクション) の利用がより適切かもしれません。 +パーミッションは、データストアオブジェクトや関数へのアクセスを制御します。 パーミッションは、データストアオブジェクトや関数へのアクセスを制御します。 特定の条件に基づいて読み取りデータをフィルタリングしたい場合は、[制限付エンティティセレクション](entities.md#制限付エンティティセレクション) の利用がより適切かもしれません。 ::: @@ -49,15 +49,14 @@ Webユーザーまたは RESTユーザーがログインすると、そのセッ 利用可能なアクションは対象となるリソースによります。 -| アクション | データストア | データクラス | 属性 | データモデル関数またはシングルトン関数 | -| ------------ | ---------------------------------------------------------------------- | --------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| **create** | 任意のデータクラスにおいてエンティティを作成 | 当該データクラスにおいてエンティティを作成 | 当該属性に許可されたデフォルト値とは異なる値を持つエンティティを作成 (エイリアス属性の場合は無視されます) | n/a | -| **read** | 任意のデータクラスにおいて属性を読み取り | 当該データクラスにおいて属性を読み取り | 当該属性を読み取り | n/a | -| **update** | 任意のデータクラスにおいて属性を更新 | 当該データクラスにおいて属性を更新 | 当該属性を更新 (エイリアス属性の場合は無視されます) | n/a | -| **drop** | 任意のデータクラスにおいてデータを削除 | 当該データクラスにおいてデータを削除 | 当該属性の null でない値を削除 (エイリアス属性と計算属性を除く) | n/a | -| **execute** | プロジェクトの任意の関数を実行 (データストア、データクラス、エンティティセレクション、エンティティ) | データクラスの任意の関数を実行。 データクラス関数、エンティティ関数、エンティティセレクション関数は、データクラスの関数として扱われます。 | n/a | 当該関数を実行 | -| **describe** | /rest/$catalog API ですべてのデータクラスが利用可能 | /rest/$catalog API で当該データクラスが利用可能 | /rest/$catalog API で当該属性が利用可能 | /rest/$catalog API で当該データクラス関数が利用可能 (シングルトン関数は利用できません) | -| **promote** | n/a | n/a | n/a | 関数の実行に指定の権限を関連付けます。 権限は一時的にセッションに追加され、関数の実行終了とともに削除されます。 セキュリティ上、セッション全体ではなく、当該関数を実行するプロセスのみに権限が追加されます。 | +| アクション | データストア | データクラス | 属性 | データモデル関数またはシングルトン関数 | +| ----------- | ---------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **create** | 任意のデータクラスにおいてエンティティを作成 | 当該データクラスにおいてエンティティを作成 | 当該属性に許可されたデフォルト値とは異なる値を持つエンティティを作成 (エイリアス属性の場合は無視されます) | n/a | +| **read** | 任意のデータクラスにおいて属性を読み取り | 当該データクラスにおいて属性を読み取り | 当該属性を読み取り | n/a | +| **update** | 任意のデータクラスにおいて属性を更新 | 当該データクラスにおいて属性を更新 | 当該属性を更新 (エイリアス属性の場合は無視されます) | n/a | +| **drop** | 任意のデータクラスにおいてデータを削除 | 当該データクラスにおいてデータを削除 | 当該属性の null でない値を削除 (エイリアス属性と計算属性を除く) | n/a | +| **execute** | プロジェクトの任意の関数を実行 (データストア、データクラス、エンティティセレクション、エンティティ) | データクラスの任意の関数を実行。 データクラスの任意の関数を実行。 データクラスの任意の関数を実行。 データクラスの任意の関数を実行。 データクラス関数、エンティティ関数、エンティティセレクション関数は、データクラスの関数として扱われます。 | n/a | 当該関数を実行 | +| **promote** | n/a | n/a | n/a | 関数の実行に指定の権限を関連付けます。 権限は一時的にセッションに追加され、関数の実行終了とともに削除されます。 関数の実行に指定の権限を関連付けます。 権限は一時的にセッションに追加され、関数の実行終了とともに削除されます。 セキュリティ上、セッション全体ではなく、当該関数を実行するプロセスのみに権限が追加されます。 | **注:** @@ -67,18 +66,15 @@ Webユーザーまたは RESTユーザーがログインすると、そのセッ - デフォルト値: 現在の実装では、_Null_ のみデフォルト値として利用可能です。 - REST の [強制ログインモード](../REST/authUsers.md/#強制ログインモード) では、[`authentify()`関数](../REST/authUsers.md#function-authentify) は、権限の設定に関係なく常にゲストユーザーによって実行可能です。 -許諾の設定は一貫している必要があります。とくに: - -- **update** および **drop** アクションには **read** が必要です (**create** には不要です) -- データモデル関数の場合、**promote** アクションには **describe** が必要です。 +Setting permissions requires to be consistent, in particular **update** and **drop** permissions also need **read** permission (but **create** does not need it). ## 権限とロール -**権限** とは、**リソース** に対して **アクション** を実行する技術的な能力であり、**ロール** は、管理者が使用するために公開された権限のことです。 基本的にロールとは、ビジネスユーザーのプロフィールを定義するためにいくつかの権限を集めたものです。 たとえば、"manageInvoices" (請求書管理) は権限の例で、"secretary" (秘書) は ("manageInvoices" および他の権限を持つ) ロールの例です。 +**権限** とは、**リソース** に対して **アクション** を実行する技術的な能力であり、**ロール** は、管理者が使用するために公開された権限のことです。 基本的にロールとは、ビジネスユーザーのプロフィールを定義するためにいくつかの権限を集めたものです。 たとえば、"manageInvoices" (請求書管理) は権限の例で、"secretary" (秘書) は ("manageInvoices" および他の権限を持つ) ロールの例です。 基本的にロールとは、ビジネスユーザーのプロフィールを定義するためにいくつかの権限を集めたものです。 たとえば、"manageInvoices" (請求書管理) は権限の例で、"secretary" (秘書) は ("manageInvoices" および他の権限を持つ) ロールの例です。 権限は、複数の "リソース+アクション" の組み合わせと関連付けることができます。 また、一つのアクションに複数の権限を関連付けることができます。 権限は、他の権限を含むことができます。 -- 権限やロールの **作成** は `roles.json` ファイル内にておこないます (後述参照)。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 +- 権限やロールの **作成** は `roles.json` ファイル内にておこないます (後述参照)。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 - 各ユーザーセッションに権限やロールを **許可** するには、`Session` クラスの [`.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数を使用します。 @@ -140,7 +136,6 @@ exposed Function authenticate($identifier : Text; $password : Text)->$result : T "create": ["none"], "update": ["none"], "drop": ["none"], - "describe": ["none"], "execute": ["none"], "promote": ["none"] } @@ -153,17 +148,20 @@ exposed Function authenticate($identifier : Text; $password : Text)->$result : T ``` -最高レベルのセキュリティのため、データストア ("ds") のすべての許諾アクションに "none" の権限名が割り当てられています。したがって、デフォルトでは `ds` オブジェクト全体へのデータアクセスが無効になっています。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 +最高レベルのセキュリティのため、データストア ("ds") のすべての許諾アクションに "none" の権限名が割り当てられています。したがって、デフォルトでは `ds` オブジェクト全体へのデータアクセスが無効になっています。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 :::caution -`roles.json` ファイルに特定のパラメーターが定義されていない場合、アクセスは制限されません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 +`roles.json` ファイルに特定のパラメーターが定義されていない場合、アクセスは制限されません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 ::: :::note 互換性 -以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 4D 20 R6 以降、`roles.json`ファイルを含まない、または `"forceLogin": true` の設定が含まれていない既存のプロジェクトを開く場合、[設定ダイアログボックスの **Web機能** ページ](../settings/web.md#アクセス権) で **ds.authentify() 関数を通しての REST認証を有効化** ボタンが利用可能になります。 このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 4D 20 R6 以降、`roles.json`ファイルを含まない、または `"forceLogin": true` の設定が含まれていない既存のプロジェクトを開く場合、[設定ダイアログボックスの **Web機能** ページ](../settings/web.md#アクセス権) で **ds.authentify() 関数を通しての REST認証を有効化** ボタンが利用可能になります。 このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +::: このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +::: このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +::: このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 ::: :::note Qodly Studio @@ -176,41 +174,40 @@ Qodly Studio for 4D では、権限パネルの [**強制ログイン**オプシ `roles.json` ファイルの構文は次のとおりです: -| プロパティ名 | | | 型 | 必須 | 説明 | -| ----------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | ------------------------------- | -- | ------------------------------------------------------------------------------------------------------------------ | -| privileges | | | `privilege` オブジェクトの Collection | ○ | 定義された権限のリスト | -| | \[].privilege | | Text | | アクセス権の名称 | -| | \[].includes | | String の Collection | | 内包する権限名のリスト | -| roles | | | `role` オブジェクトの Collection | | 定義されたロールのリスト | -| | \[].role | | Text | | ロール名 | -| | \[].privileges | | String の Collection | | 内包する権限名のリスト | -| permissions | | | Object | ○ | 設定されたパーミッションのリスト | -| | allowed | | `permission` オブジェクトの Collection | | 許可されたパーミッションのリスト | -| | | \[].applyTo | Text | ○ | 対象の [リソース](#リソース) 名 | -| | | \[].type | Text | ○ | [リソース](#リソース) タイプ: "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | -| | | \[].read | String の Collection | | 権限名のリスト | -| | | \[].create | String の Collection | | 権限名のリスト | -| | | \[].update | String の Collection | | 権限名のリスト | -| | | \[].drop | String の Collection | | 権限名のリスト | -| | | \[].describe | String の Collection | | 権限名のリスト | -| | | \[].execute | String の Collection | | 権限名のリスト | -| | | \[].promote | String の Collection | | 権限名のリスト | -| forceLogin | | | Boolean | | ["forceLogin" モード](../REST/authUsers.md#force-login-mode) を有効にする場合は true | +| プロパティ名 | | | 型 | 必須 | 説明 | +| ----------- | ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ------------------------------- | -- | ------------------------------------------------------------------------------------------------------------------ | +| privileges | | | `privilege` オブジェクトの Collection | ○ | 定義された権限のリスト | +| | \[].privilege | | Text | | アクセス権の名称 | +| | \[].includes | | String の Collection | | 内包する権限名のリスト | +| roles | | | `role` オブジェクトの Collection | | 定義されたロールのリスト | +| | \[].role | | Text | | ロール名 | +| | \[].privileges | | String の Collection | | 内包する権限名のリスト | +| permissions | | | Object | ○ | 設定されたパーミッションのリスト | +| | allowed | | `permission` オブジェクトの Collection | | 許可されたパーミッションのリスト | +| | | \[].applyTo | Text | ○ | 対象の [リソース](#リソース) 名 | +| | | \[].type | Text | ○ | [リソース](#リソース) タイプ: "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | +| | | \[].read | String の Collection | | 権限名のリスト | +| | | \[].create | String の Collection | | 権限名のリスト | +| | | \[].update | String の Collection | | 権限名のリスト | +| | | \[].drop | String の Collection | | 権限名のリスト | +| | | \[].execute | String の Collection | | 権限名のリスト | +| | | \[].promote | String の Collection | | 権限名のリスト | +| forceLogin | | | Boolean | | ["forceLogin" モード](../REST/authUsers.md#force-login-mode) を有効にする場合は true | :::caution 注記 -- "WebAdmin" 権限名は、アプリケーションによって予約されています。 この名前をカスタムの権限名に使用することは推奨されません。 +- "WebAdmin" 権限名は、アプリケーションによって予約されています。 この名前をカスタムの権限名に使用することは推奨されません。 この名前をカスタムの権限名に使用することは推奨されません。 この名前をカスタムの権限名に使用することは推奨されません。 この名前をカスタムの権限名に使用することは推奨されません。 - `privileges` および `roles` の名称においては文字の大小が区別されます。 ::: ### `Roles_Errors.json` ファイル -`roles.json` ファイルは、4D 起動時に解析されます。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 +`roles.json` ファイルは、4D 起動時に解析されます。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 -`roles.json` ファイルを解析する際にエラーが発生した場合、4D はプロジェクトを読み込みますが、グローバルアクセス保護は無効になります。これにより、開発者はエラー修正のためファイルにアクセスすることができます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 +`roles.json` ファイルを解析する際にエラーが発生した場合、4D はプロジェクトを読み込みますが、グローバルアクセス保護は無効になります。これにより、開発者はエラー修正のためファイルにアクセスすることができます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 -`Roles_Errors.json` ファイルが [Logs フォルダー](../Project/architecture.md#logs) に存在するかどうか、起動時に確認することをお勧めします。存在する場合、解析エラーが発生し、アクセスが制限されないことを意味します。 たとえば、次のように書くことができます: +`Roles_Errors.json` ファイルが [Logs フォルダー](../Project/architecture.md#logs) に存在するかどうか、起動時に確認することをお勧めします。存在する場合、解析エラーが発生し、アクセスが制限されないことを意味します。 たとえば、次のように書くことができます: たとえば、次のように書くことができます: たとえば、次のように書くことができます: たとえば、次のように書くことができます: ```4d title="/Sources/DatabaseMethods/onStartup.4dm" If (Not(File("/LOGS/"+"Roles_Errors.json").exists)) @@ -224,7 +221,7 @@ End if ## 権限設定の例 -グッドプラクティスは、"none" 権限によってすべてのデータアクセスをデフォルトでロックしておき、`roles.json` ファイルを設定して、許可されたセッションにのみ限定的に一部を開放することです。 たとえば、制限されたアクセスをゲストセッションに対して許可する場合: +グッドプラクティスは、"none" 権限によってすべてのデータアクセスをデフォルトでロックしておき、`roles.json` ファイルを設定して、許可されたセッションにのみ限定的に一部を開放することです。 たとえば、制限されたアクセスをゲストセッションに対して許可する場合: たとえば、制限されたアクセスをゲストセッションに対して許可する場合: たとえば、制限されたアクセスをゲストセッションに対して許可する場合: たとえば、制限されたアクセスをゲストセッションに対して許可する場合: ```json title="/Project/Sources/roles.json" @@ -256,9 +253,6 @@ End if "execute": [ "none" ], - "describe": [ - "none" - ], "promote": [ "none" ] diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md b/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md index 2a52c091400f0b..998c492f199ef1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md @@ -7,13 +7,13 @@ title: リモートデータストア The local 4D application connects to and references the remote datastore through a call to the [`Open datastore`](../commands/open-datastore.md) command. -リモートマシン上で、4D は [セッション](../WebServer/sessions.md) を開いて、`Open datastore` を呼び出したアプリケーションからのリクエストを処理します。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 +リモートマシン上で、4D は [セッション](../WebServer/sessions.md) を開いて、`Open datastore` を呼び出したアプリケーションからのリクエストを処理します。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 ## Webセッションの使用 When you work with a remote datastore referenced through calls to the [`Open datastore`](../commands/open-datastore.md) command, the connection with the requesting processes is handled via [web sessions](../WebServer/sessions.md) on the remote machine. -リモートデータストア上で作成される Webセッションは内部的にセッションID によって識別され、4Dアプリケーション上では `localID` と紐づいています。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 +リモートデータストア上で作成される Webセッションは内部的にセッションID によって識別され、4Dアプリケーション上では `localID` と紐づいています。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 `localID` はリモートデータストアに接続しているマシンにおけるローカルな識別IDです: @@ -39,17 +39,17 @@ When you work with a remote datastore referenced through calls to the [`Open dat ## セッションの終了 -[セッションの有効期限](../WebServer/sessions.md#セッションの有効期限) の段落で説明されているように、アクティビティなしにタイムアウト時間が経過すると、4D は自動的にセッションを終了します。 デフォルトのタイムアウト時間は 60分です。 _Open datastore_ コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 +[セッションの有効期限](../WebServer/sessions.md#セッションの有効期限) の段落で説明されているように、アクティビティなしにタイムアウト時間が経過すると、4D は自動的にセッションを終了します。 デフォルトのタイムアウト時間は 60分です。 _Open datastore_ コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 デフォルトのタイムアウト時間は 60分です。 _Open datastore_ コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 デフォルトのタイムアウト時間は 60分です。 _Open datastore_ コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 デフォルトのタイムアウト時間は 60分です。 _Open datastore_ コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 -セッション終了後にリクエストがリモートデータストアに送信された場合、セッションは可能な限り (ライセンスがあり、サーバーが停止していない、など) 再開されます。 ただしセッションが再開しても、ロックやトランザクションに関わるコンテキストは失われていることに留意が必要です (後述参照)。 +セッション終了後にリクエストがリモートデータストアに送信された場合、セッションは可能な限り (ライセンスがあり、サーバーが停止していない、など) 再開されます。 ただしセッションが再開しても、ロックやトランザクションに関わるコンテキストは失われていることに留意が必要です (後述参照)。 ただしセッションが再開しても、ロックやトランザクションに関わるコンテキストは失われていることに留意が必要です (後述参照)。 ただしセッションが再開しても、ロックやトランザクションに関わるコンテキストは失われていることに留意が必要です (後述参照)。 ## ロッキングとトランザクション エンティティロッキングやトランザクションに関連した ORDA 機能は、ORDA のクライアント / サーバーモードと同様に、リモートデータストアにおいてもプロセスレベルで管理されます: -- あるプロセスがリモートデータストアのエンティティをロックした場合、セッションの共有如何に関わらず、他のすべてのプロセスに対してそのエンティティはロックされた状態です ([エンティティロッキング](entities.md#エンティティロッキング) 参照)。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 -- トランザクションは `dataStore.startTransaction( )`、`dataStore.cancelTransaction( )`、`dataStore.validateTransaction( )` のメソッドを使って、リモートデータストアごとに個別に開始・認証・キャンセルすることができます。 これらの操作は他のデータストアには影響しません。 -- 従来の 4Dランゲージコマンド (`START TRANSACTION`, `VALIDATE TRANSACTION`, `CANCEL TRANSACTION`) は `ds` で返されるメインデータストアに対してのみ動作します。 +- あるプロセスがリモートデータストアのエンティティをロックした場合、セッションの共有如何に関わらず、他のすべてのプロセスに対してそのエンティティはロックされた状態です ([エンティティロッキング](entities.md#エンティティロッキング) 参照)。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 +- トランザクションは `dataStore.startTransaction( )`、`dataStore.cancelTransaction( )`、`dataStore.validateTransaction( )` のメソッドを使って、リモートデータストアごとに個別に開始・認証・キャンセルすることができます。 これらの操作は他のデータストアには影響しません。 これらの操作は他のデータストアには影響しません。 これらの操作は他のデータストアには影響しません。 これらの操作は他のデータストアには影響しません。 +- Classic 4D language commands ([`START TRANSACTION`](../commands-legacy/start-transaction.md), [`VALIDATE TRANSACTION`](../commands-legacy/validate-transaction.md), [`CANCEL TRANSACTION`](../commands-legacy/cancel-transaction.md)) only apply to the main datastore (returned by `ds`). リモートデータストアのエンティティがあるプロセスのトランザクションで使われている場合、セッションの共有如何に関わらず、他のすべてのプロセスはそのエンティティを更新できません。 - 次の場合にエンティティのロックは解除され、トランザクションはキャンセルされます: - プロセスが強制終了された diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Project/components.md b/i18n/ja/docusaurus-plugin-content-docs/current/Project/components.md index 9f5c75a489d96d..a32d16919252a9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/Project/components.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/Project/components.md @@ -3,9 +3,9 @@ id: components title: コンポーネント --- -4D のコンポーネントとは、プロジェクトに追加可能な、1つ以上の機能を持つ 4Dコードや 4Dフォームの一式です。 たとえば、[4D SVG](https://github.com/4d/4D-SVG)コンポーネント は、SVGファイルの表示するための高度なコマンドと統合されたレンダリングエンジンを追加します。 +4D のコンポーネントとは、プロジェクトに追加可能な、1つ以上の機能を持つ 4Dコードや 4Dフォームの一式です。 4D のコンポーネントとは、プロジェクトに追加可能な、1つ以上の機能を持つ 4Dコードや 4Dフォームの一式です。 たとえば、[4D SVG](https://github.com/4d/4D-SVG)コンポーネント は、SVGファイルの表示するための高度なコマンドと統合されたレンダリングエンジンを追加します。 -独自の 4Dコンポーネントを [開発](../Extensions/develop-components.md) し、[ビルド](../Desktop/building.md) することもできますし、4Dコミュニティによって共有されているパブリックコンポーネントを [GitHubで見つけて](https://github.com/search?q=4d-component\&type=Repositories) ダウンロードすることもできます。 +独自の 4Dコンポーネントを [開発](../Extensions/develop-components.md) し、[ビルド](../Desktop/building.md) することもできますし、4Dコミュニティによって共有されているパブリックコンポーネントを [GitHubで見つけて](https://github.com/search?q=4d-component\\&type=Repositories) ダウンロードすることもできます。 4D で開発する際、コンポーネントファイルはコンピューター上または Githubリポジトリ上に、透過的に保存することができます。 @@ -14,7 +14,7 @@ title: コンポーネント Components can be interpreted or [compiled](../Desktop/building.md). - インタープリターモードで動作する 4Dプロジェクトは、インタープリターまたはコンパイル済みどちらのコンポーネントも使用できます。 -- コンパイルモードで実行される 4Dプロジェクトでは、インタープリターのコンポーネントを使用できません。 この場合、コンパイル済みコンポーネントのみが利用可能です。 +- コンパイルモードで実行される 4Dプロジェクトでは、インタープリターのコンポーネントを使用できません。 この場合、コンパイル済みコンポーネントのみが利用可能です。 この場合、コンパイル済みコンポーネントのみが利用可能です。 ### Package folder @@ -35,7 +35,7 @@ The "Contents" folder architecture is recommended for components if you want to :::note -このページでは、**4D** と **4D Server** 環境でのコンポーネントの使用方法について説明します。 他の環境では、コンポーネントの管理は異なります: +このページでは、**4D** と **4D Server** 環境でのコンポーネントの使用方法について説明します。 他の環境では、コンポーネントの管理は異なります: 他の環境では、コンポーネントの管理は異なります: - [リモートモードの 4D](../Desktop/clientServer.md) では、サーバーがコンポーネントを読み込み、リモートアプリケーションに送信します。 - 統合されたアプリケーションでは、コンポーネントは [ビルドする際に組み込まれます](../Desktop/building.md#プラグインコンポーネントページ)。 @@ -47,7 +47,7 @@ The "Contents" folder architecture is recommended for components if you want to 4Dプロジェクトにコンポーネントを読み込むには、以下の方法があります: - [プロジェクトの **Components** フォルダー](architecture.md#components) にコンポーネントファイルをコピーします。 -- または、プロジェクトの **dependencies.json** ファイルでコンポーネントを宣言します。これは、[**依存関係インターフェースを使用して依存関係を追加**](#依存関係の追加) するときに、ローカルファイルに対して自動的におこなわれます。 +- or, declare the component in the **dependencies.json** file of your project; this is done automatically for local files when you [**add a dependency using the Dependency manager interface**](#adding-a-github-dependency). **dependencies.json** ファイルで宣言されているコンポーネントは、異なる場所に保存できます: @@ -61,7 +61,7 @@ The "Contents" folder architecture is recommended for components if you want to #### dependencies.json -**dependencies.json** ファイルは、4Dプロジェクトに必要なすべてのコンポーネントを宣言します。 このファイルは、4Dプロジェクトフォルダーの **Sources** フォルダーに置く必要があります。例: +**dependencies.json** ファイルは、4Dプロジェクトに必要なすべてのコンポーネントを宣言します。 このファイルは、4Dプロジェクトフォルダーの **Sources** フォルダーに置く必要があります。例: このファイルは、4Dプロジェクトフォルダーの **Sources** フォルダーに置く必要があります。例: ``` /MyProjectRoot/Project/Sources/dependencies.json @@ -95,14 +95,16 @@ The "Contents" folder architecture is recommended for components if you want to ```mermaid flowchart TB - id1("1\nプロジェクトの Components フォルダーにあるコンポーネント")~~~ - id2("2\ndependencies.json にリストされたコンポーネント")~~~ - id2 -- environment4d.json にパスがある --> id4("environment4d.json に\n宣言されたパスの\nコンポーネントをロード") + id1("1
    Components from project's Components folder") + ~~~ + id2("2
    Components listed in dependencies.json") + ~~~ + id2 -- environment4d.json gives path --> id4("Load component based on path declared in environment4d.json") ~~~ - id3("3\nユーザー 4D コンポーネント") - id2 -- environment4d.json にパスがない --> id5("パッケージフォルダーの\n隣に配置されている\nコンポーネントをロード") + id3("3
    User 4D components") + id2 -- environment4d.json doesn't give path --> id5("Load component next to package folder") ~~~ - id3("3\nユーザー 4D コンポーネント") + id3("3
    User 4D components") ``` 同じコンポーネントの別のインスタンス (A) がより高い優先度レベルにあるためにコンポーネント (B) を読み込めない場合、AとBのコンポーネントにはそれぞれ専用の [ステータス](#依存関係のステータス) が付与されます: 読み込まれなかったコンポーネント (B) には _Overloaded_ ステータス、読み込まれたコンポーネント (A) には _Overloading_ ステータスが与えられます。 @@ -165,7 +167,7 @@ flowchart TB パスは、POSIXシンタックスで表します ([POSIXシンタックス](../Concepts/paths#posix-シンタックス) 参照)。 -相対パスは、[`environment4d.json`](#environment4djson) ファイルを基準とした相対パスです。 絶対パスは、ユーザーのマシンにリンクされています。 +相対パスは、[`environment4d.json`](#environment4djson) ファイルを基準とした相対パスです。 絶対パスは、ユーザーのマシンにリンクされています。 絶対パスは、ユーザーのマシンにリンクされています。 コンポーネントアーキテクチャーの柔軟性と移植性のため、ほとんどの場合、相対パスを使用することが **推奨** されます (特に、プロジェクトがソース管理ツールにホストされている場合)。 @@ -173,7 +175,7 @@ flowchart TB ### GitHub に保存されたコンポーネント -GitHubリリースとして利用可能な 4Dコンポーネントを参照して、4Dプロジェクトに自動で読み込むことができます。 +4D components available as GitHub releases can be referenced and automatically loaded and updated in your 4D projects. :::note @@ -206,7 +208,7 @@ GitHub に保存されているコンポーネントは [**dependencies.json** } ``` -... 上記の場合、"myGitHubComponent1" は宣言とパス定義の両方がされていますが、"myComponent2" は宣言されているだけです。 そのため、[**environment4d.json**](#environment4djson) ファイルにパスを定義する必要があります: +... 上記の場合、"myGitHubComponent1" は宣言とパス定義の両方がされていますが、"myComponent2" は宣言されているだけです。 **environment4d.json** ファイルは必須ではありません。 このファイルは、**dependencies.json** ファイル内で宣言された一部またはすべてのコンポーネントのついて、**カスタムパス** を定義するのに使用します。 このファイルは、プロジェクトパッケージフォルダーまたはその親フォルダーのいずれかに保存することができます (ルートまでの任意のレベル)。 ```json { @@ -222,9 +224,9 @@ GitHub に保存されているコンポーネントは [**dependencies.json** #### タグとバージョン -GitHub ではリリースを作成するときに、**タグ** と **バージョン** を指定します。 +When a release is created in GitHub, it is associated to a **tag** and a **version**. The Dependency manager uses these information to handle automatic availability of components. -- **タグ** はリリースを一意に参照するテキストです。 [**dependencies.json** ファイル](#dependencyjson) および [**environment4d.json**](#environment4djson) ファイルでは、プロジェクトで使用するリリースタグを指定することができます。 たとえば: +- **タグ** はリリースを一意に参照するテキストです。 **タグ** はリリースを一意に参照するテキストです。 [**dependencies.json** ファイル](#dependencyjson) および [**environment4d.json**](#environment4djson) ファイルでは、プロジェクトで使用するリリースタグを指定することができます。 たとえば: たとえば: ```json { @@ -237,7 +239,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ } ``` -- リリースは **バージョン** によっても識別されます。 使用されるバージョニング方法は、最も一般的に使用される _セマンティックバージョニング_ のコンセプトに基づいています。 各バージョン番号は次のように識別されます: `majorNumber.minorNumber.pathNumber`。 タグと同様に、プロジェクトで使用したいコンポーネントのバージョンを指定することができます。例: +- リリースは **バージョン** によっても識別されます。 リリースは **バージョン** によっても識別されます。 The versioning system used is based on the [_Semantic Versioning_](https://regex101.com/r/Ly7O1x/3/) concept, which is the most commonly used. 各バージョン番号は次のように識別されます: `majorNumber.minorNumber.pathNumber`。 各バージョン番号は次のように識別されます: `majorNumber.minorNumber.pathNumber`。 タグと同様に、プロジェクトで使用したいコンポーネントのバージョンを指定することができます。例: ```json { @@ -250,7 +252,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ } ``` -バージョンは、使用できるバージョンを定義するために使用します。 [標準的なセマンティックバージョン](https://regex101.com/r/Ly7O1x/3/) を使用します。 範囲は、最小値と最大値を示す 2つのセマンティックバージョンと演算子 ('`< | > | >= | <= | =`') で定義します。 `*` はすべてのバージョンのプレースホルダーとして使用できます。 ~ および ^ の接頭辞は、数字で始まるバージョンを定義し、それぞれ次のメジャーバージョンおよびマイナーバージョンまでの範囲を示します。 +範囲は、最小値と最大値を示す 2つのセマンティックバージョンと演算子 ('`< | > | >= | <= | =`') で定義します。 `*` はすべてのバージョンのプレースホルダーとして使用できます。 ~ および ^ の接頭辞は、数字で始まるバージョンを定義し、それぞれ次のメジャーバージョンおよびマイナーバージョンまでの範囲を示します。 `*` はすべてのバージョンのプレースホルダーとして使用できます。 ~ および ^ の接頭辞は、数字で始まるバージョンを定義し、それぞれ次のメジャーバージョンおよびマイナーバージョンまでの範囲を示します。 以下にいくつかの例を示します: @@ -268,6 +270,8 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ タグやバージョンを指定しない場合、4D は自動的に "latest" バージョンを取得します。 +The Dependency manager checks periodically if component updates are available on Github. If a new version is available for a component, an update indicator is then displayed for the component in the dependency list, [depending on your settings](#defining-a-github-dependency-version-range). + #### プライベートリポジトリ プライベートリポジトリにあるコンポーネントを統合したい場合は、アクセストークンを使用して接続するよう 4D に指示する必要があります。 @@ -280,32 +284,18 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ ::: -次に、[**environment4d.json**](#environment4djson) ファイルに "github" キーを挿入します: - -```json -{ - "github": { - "token": "ghpXXXXXXXXXXXXUvW8x9yZ" - }, - "dependencies": { - - "mySecondGitHubComponent": { - "github": "JohnSmith/mySecondGitHubComponent" - } - } -} -``` +You then need to [provide your connection token](#providing-your-github-access-token) to the Dependency manager. #### 依存関係のローカルキャッシュ -参照された GitHubコンポーネントはローカルのキャッシュフォルダーにダウンロードされ、その後環境に読み込まれます。 ローカルキャッシュフォルダーは以下の場所に保存されます: +参照された GitHubコンポーネントはローカルのキャッシュフォルダーにダウンロードされ、その後環境に読み込まれます。 ローカルキャッシュフォルダーは以下の場所に保存されます: ローカルキャッシュフォルダーは以下の場所に保存されます: - macOs: `$HOME/Library/Caches//Dependencies` - Windows: `C:\Users\\AppData\Local\\Dependencies` ... 上記で `` は "4D"、"4D Server"、または "tool4D" となります。 -#### dependency-lock.json +### dependency-lock.json プロジェクトの [`userPreferences` フォルダー](architecture.md#userpreferencesusername) に `dependency-lock.json` ファイルが作成されます。 @@ -313,7 +303,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ ## プロジェクトの依存関係の監視 -開かれているプロジェクトでは、**依存関係** パネルで依存関係の追加・削除ができるほか、現在の読み込み状態に関する情報を取得することができます。 +In an opened project, you can add, remove, update, and get information about dependencies and their current loading status in the **Dependencies** panel. 依存関係パネルを表示するには: @@ -327,15 +317,80 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ ![dependency](../assets/en/Project/dependency.png) -依存関係インターフェースでは、依存関係を管理することができます (4Dシングルユーザーと4D Server)。 **ローカル** と **GitHub** の依存関係を追加または削除できます。 +The Dependencies panel interface allows you to manage dependencies (on 4D single-user and 4D Server). + +### Filtering dependencies + +デフォルトでは、依存関係マネージャーによって識別されたすべての依存関係は、それらの [ステータス](#依存関係のステータス) に関係なくリストされます。 依存関係パネル上部のタブを選択することで、依存関係のステータスに応じてリストの表示をフィルタリングできます: + +![dependency-tabs](../assets/en/Project/dependency-tabs.png) + +- **アクティブ**: プロジェクトに読み込まれ、使用できる依存関係。 実際にロードされた _Overloading_ な依存関係が含まれます。 _Overloaded_ である方の依存関係は、その他の競合している依存関係とともに **コンフリクト** パネルに表示されます。 +- **非アクティブ**: プロジェクトに読み込まれておらず、利用できない依存関係。 このステータスには様々な理由が考えられます: ファイルの欠落、バージョンの非互換性など… +- **コンフリクト**: プロジェクトに読み込まれてはいるものの、先に読み込まれた [優先度](#優先順位) の高い依存関係と競合している依存関係。 _Overloaded_ な依存関係も表示されるため、競合の原因を確認し、適切に対処することができます。 + +### Dependency status + +デベロッパーの注意を必要とする依存関係は、行の右側の **ステータスラベル** と背景色で示されます。 + +![dependency-status](../assets/en/Project/dependency-conflict2.png) + +使用されるステータスラベルは次のとおりです: + +- **Overloaded**: 依存関係は読み込まれていません。より上位の [優先順位](#優先順位) において、同じ名前の依存関係がすでに読み込まれています。 +- **Overloading**: 依存関係は読み込まれていますが、下位の [優先順位](#優先順位) において読み込まれなかった同じ名前の依存関係が存在します。 +- **Not found**: dependencies.jsonファイルで依存関係が宣言されていますが、見つかりません。 +- **Inactive**: プロジェクトと互換性がないため、依存関係は読み込まれていません (例: 現在のプラットフォーム用にコンポーネントがコンパイルされていない、など)。 +- **Duplicated**: 依存関係は読み込まれていません。同じ名前を持つ別の依存関係が同じ場所に存在し、すでに読み込まれています。 +- **Available after restart**: The dependency reference has just been added or updated [using the interface](#monitoring-project-dependencies), it will be loaded once the application restarts. +- **Unloaded after restart**: [インターフェースによって](#プロジェクトの依存関係の監視) 依存関係の参照が削除されました。この依存関係は、アプリケーションの再起動時にアンロードされます。 +- **Update available \**: A new version of the GitHub dependency matching your [component version configuration](#defining-a-github-dependency-version-range) has been detected. +- **Refreshed after restart**: The [component version configuration](#defining-a-github-dependency-version-range) of the GitHub dependency has been modified, it will be adjusted the next startup. +- **Recent update**: A new version of the GitHub dependency has been loaded at startup. + +依存関係の行にマウスオーバーするとツールチップが表示され、ステータスに関する追加の情報を提供します: + +![dependency-tips](../assets/en/Project/dependency-tip1.png) + +### Dependency origin + +依存関係パネルには、各依存関係のオリジン (由来) にかかわらず、プロジェクトの依存関係すべてがリストされます。 依存関係のオリジンは、名前の下に表示されるタグによって判断することができます: 依存関係のオリジンは、名前の下に表示されるタグによって判断することができます: + +![dependency-origin](../assets/en/Project/dependency-origin.png) + +以下のオリジンがありえます: + +| オリジンタグ | 説明 | +| --------------------------------- | --------------------------------------------------------------- | +| 4Dコンポーネント | 4Dアプリケーションの `Components` フォルダーに保存されているビルトインの 4Dコンポーネント | +| dependencies.json | [`dependencies.json`](#dependenciesjson) ファイルで宣言されているコンポーネント | +| 環境 | [`environment4d.json`](#environment4djson) ファイルで宣言されているコンポーネント | +| プロジェクトコンポーネント | [`Components`](architecture.md#components) フォルダー内に置かれているコンポーネント | + +依存関係の行で **右クリック** し、**ディスク上に表示** を選択すると、依存関係の保管場所が表示されます: + +![dependency-show](../assets/en/Project/dependency-show.png) + +:::note + +依存関係が非アクティブの場合は、ファイルが見つからないためこの項目は表示されません。 + +::: + +コンポーネントアイコンとロケーションロゴが追加情報を提供します: + +- コンポーネントロゴは、それが 4D またはサードパーティーによる提供かを示します。 +- ローカルコンポーネントと GitHubコンポーネントは、小さなアイコンで区別できます。 + +![dependency-origin](../assets/en/Project/dependency-github.png) ### ローカルな依存関係の追加 -ローカルな依存関係を追加するには、パネルのフッターエリアにある **+** ボタンをクリックします。 次のようなダイアログボックスが表示されます: +ローカルな依存関係を追加するには、パネルのフッターエリアにある **+** ボタンをクリックします。 次のようなダイアログボックスが表示されます: 次のようなダイアログボックスが表示されます: ![dependency-add](../assets/en/Project/dependency-add.png) -**ローカル** タブが選択されていることを確認し、**...** ボタンをクリックします。 標準の "ファイルを開く" ダイアログボックスが表示され、追加するコンポーネントを選択できます。 [**.4DZ**](../Desktop/building.md#コンポーネントをビルド) または [**.4DProject**](architecture.md#applicationname4dproject-ファイル) ファイルを選択できます。 +**ローカル** タブが選択されていることを確認し、**...** ボタンをクリックします。 標準の "ファイルを開く" ダイアログボックスが表示され、追加するコンポーネントを選択できます。 **ローカル** タブが選択されていることを確認し、**...** ボタンをクリックします。 標準の "ファイルを開く" ダイアログボックスが表示され、追加するコンポーネントを選択できます。 [**.4DZ**](../Desktop/building.md#コンポーネントをビルド) または [**.4DProject**](architecture.md#applicationname4dproject-ファイル) ファイルを選択できます。 選択した項目が有効であれば、その名前と場所がダイアログボックスに表示されます。 @@ -346,7 +401,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ プロジェクトに依存関係を追加するには、**追加** をクリックします。 - プロジェクトパッケージフォルダーの隣 (デフォルトの場所) にあるコンポーネントを選択すると、[**dependencies.json**](#dependenciesjson)ファイル内で宣言されます。 -- プロジェクトのパッケージフォルダーの隣にないコンポーネントを選択した場合、そのコンポーネントは [**dependencies.json**](#dependenciesjson) ファイルで宣言され、そのパスも [**environment4d.json**](#environmen4djson) ファイルで宣言されます (注記参照)。 依存関係パネルでは、[相対パスまたは絶対パス](#相対パス-vs-絶対パス) のどちらを保存するか尋ねられます。 +- プロジェクトのパッケージフォルダーの隣にないコンポーネントを選択した場合、そのコンポーネントは [**dependencies.json**](#dependenciesjson) ファイルで宣言され、そのパスも [**environment4d.json**](#environmen4djson) ファイルで宣言されます (注記参照)。 依存関係パネルでは、[相対パスまたは絶対パス](#相対パス-vs-絶対パス) のどちらを保存するか尋ねられます。 依存関係パネルでは、[相対パスまたは絶対パス](#相対パス-vs-絶対パス) のどちらを保存するか尋ねられます。 :::note @@ -354,7 +409,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ ::: -この依存関係は、[非アクティブな依存関係のリスト](#依存関係のステータス) に **Available after restart** (再起動後に利用可能) というステータスで追加されます。 このコンポーネントはアプリケーションの再起動後にロードされます。 +この依存関係は、[非アクティブな依存関係のリスト](#依存関係のステータス) に **Available after restart** (再起動後に利用可能) というステータスで追加されます。 このコンポーネントはアプリケーションの再起動後にロードされます。 このコンポーネントはアプリケーションの再起動後にロードされます。 ### GitHubの依存関係の追加 @@ -362,11 +417,11 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ ![dependency-add-git](../assets/en/Project/dependency-add-git.png) -依存関係の GitHubリポジトリのパスを入力します。 **リポジトリURL** または **GitHubアカウント名/リポジトリ名 の文字列** が使えます。例: +依存関係の GitHubリポジトリのパスを入力します。 **リポジトリURL** または **GitHubアカウント名/リポジトリ名 の文字列** が使えます。例: **リポジトリURL** または **GitHubアカウント名/リポジトリ名 の文字列** が使えます。例: ![dependency-add-git-2](../assets/en/Project/dependency-add-git-2.png) -接続が確立されると、入力エリアの右側に GitHubアイコン ![dependency-gitlogo](../assets/en/Project/dependency-gitlogo.png) が表示されます。 このアイコンをクリックすると、既定のブラウザーでリポジトリを開くことができます。 +接続が確立されると、入力エリアの右側に GitHubアイコン ![dependency-gitlogo](../assets/en/Project/dependency-gitlogo.png) が表示されます。 このアイコンをクリックすると、既定のブラウザーでリポジトリを開くことができます。 このアイコンをクリックすると、既定のブラウザーでリポジトリを開くことができます。 :::note @@ -374,7 +429,15 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ ::: -次に、依存関係の [タグとバージョン](#タグとバージョン) オプションを定義することができます。 +Define the [dependency version range](#tags-and-versions) to use for this project. By defaut, "Latest" is selected, which means that the lastest version will be automatically used. + +プロジェクトに依存関係を追加するには、**追加** ボタンをクリックします。 + +すると、GitHub 依存関係は [**dependencies.json**](#dependenciesjson) ファイルに宣言され、[非アクティブな依存関係のリスト](#依存関係のステータス) に **Available after restart** (再起動後に利用可能) というステータスで追加されます。 このコンポーネントはアプリケーションの再起動後にロードされます。 このコンポーネントはアプリケーションの再起動後にロードされます。 + +#### Defining a GitHub dependency version range + +You can define the [tag or version](#tags-and-versions) option for a dependency: ![dependency-git-tag](../assets/en/Project/dependency-git-tag.png) @@ -383,99 +446,116 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ - **次のマイナーバージョンまで上げる**: 上と同様に、更新を次のマイナーバージョンまでに制限します。 - **バージョンを指定 (Tag)**: 利用可能なリストから [特定のタグ](#セマンティックバージョン範囲]) を選択するか、手動で入力します。 -プロジェクトに依存関係を追加するには、**追加** ボタンをクリックします。 +The current GitHub dependency version is displayed on the right side of the dependency item: -すると、GitHub 依存関係は [**dependencies.json**](#dependenciesjson) ファイルに宣言され、[非アクティブな依存関係のリスト](#依存関係のステータス) に **Available after restart** (再起動後に利用可能) というステータスで追加されます。 このコンポーネントはアプリケーションの再起動後にロードされます。 +![dependency-origin](../assets/en/Project/dependency-version.png) -#### GitHubアクセストークンの提供 +#### Modifying the GitHub dependency version range -コンポーネントが [GitHub のプライベートリポジトリ](#プライベートリポジトリ) に保存されている場合には、パーソナルアクセストークン (personal access token) を依存関係マネージャーに提供する必要があります。 これをおこなうには: +You can modify the [version setting](#defining-a-github-dependency-version-range) for a listed GitHub dependency: select the dependency to modify and select **Modify the dependency...** from the contextual menu. In the "Modify the dependency" dialog box, edit the Dependency Rule menu and click **Apply**. -- "依存関係を追加..." ダイアログボックスで、GitHub のプライベートリポジトリパスを入力した後に表示される \*\*パーソナルアクセストークンを追加... \*\* ボタンをクリックします。 -- または、依存関係マネージャーのメニューで、**GitHubパーソナルアクセストークンを追加...** をいつでも選択できます。 +Modifying the version range is useful for example if you use the automatic update feature and want to lock a dependency to a specific version number. -![dependency-add-token](../assets/en/Project/dependency-add-token.png) +### Updating GitHub dependencies -すると、パーソナルアクセストークンを入力することができます: +The Dependency manager provides an integrated handling of updates on GitHub. The following features are supported: -![dependency-add-token-2](../assets/en/Project/dependency-add-token-2.png) +- Automatic and manual checking of available versions +- Automatic and manual updating of components -パーソナルアクセストークンは 1つしか入力できません。 入力されたトークンは編集することができます。 +Manual operations can be done **per dependency** or **for all dependencies**. -### 依存関係の削除 +#### Checking for new versions -依存関係パネルから依存関係を削除するには、対象の依存関係を選択し、パネルの **-** ボタンをクリックするか、コンテキストメニューから **依存関係の削除...** を選択します。 依存関係は複数選択することができ、その場合、操作は選択したすべての依存関係に適用されます。 +Dependencies are regularly checked for updates on GitHub. This checking is done transparently in background. :::note -依存関係パネルを使用して削除できるのは、[**dependencies.json**](#dependenciesjson) ファイルで宣言されている依存関係に限られます。 選択した依存関係を削除できない場合、**-** ボタンは無効化され、**依存関係の削除...** メニュー項目は非表示になります。 +If you provide an [access token](#providing-your-github-access-token), checks are performed more frequently, as GitHub then allows a higher frequency of requests to repositories. ::: -確認用のダイアログボックスが表示されます。 依存関係が **environment4d.json** ファイルで宣言されている場合、以下のオプションでそれを削除することができます: +In addition, you can check for updates at any moment, for a single dependency or for all dependencies: -![dependency-remove](../assets/en/Project/remove-comp.png) +- To check for updates of a single dependency, right-click on the dependency and select **Check for updates** in the contextual menu. -ダイアログボックスを確定すると、削除された依存関係の [ステータス](#依存関係のステータス) には "Unloaded after restart" (再起動時にアンロード) フラグが自動的に付きます。 このコンポーネントはアプリケーションの再起動時にアンロードされます。 +![check component](../assets/en/Project/check-component-one.png) -### 依存関係のオリジン +- To check for updates of all dependencies, click on the **options** menu at the bottom of the Dependency manager window and select **Check for updates**. -依存関係パネルには、各依存関係のオリジン (由来) にかかわらず、プロジェクトの依存関係すべてがリストされます。 依存関係のオリジンは、名前の下に表示されるタグによって判断することができます: +![check components](../assets/en/Project/check-component-all.png) -![dependency-origin](../assets/en/Project/dependency-origin.png) +If a new component version matching your [component versioning configuration](#defining-a-github-dependency-version-range) is detected on GitHub, a specific dependency status is displayed: -以下のオリジンがありえます: +![dependency-new-version](../assets/en/Project/dependency-available.png) -| オリジンタグ | 説明 | -| --------------------------------- | --------------------------------------------------------------- | -| 4Dコンポーネント | 4Dアプリケーションの `Components` フォルダーに保存されているビルトインの 4Dコンポーネント | -| dependencies.json | [`dependencies.json`](#dependenciesjson) ファイルで宣言されているコンポーネント | -| 環境 | [`environment4d.json`](#environment4djson) ファイルで宣言されているコンポーネント | -| プロジェクトコンポーネント | [`Components`](architecture.md#components) フォルダー内に置かれているコンポーネント | +You can decide to [update the component](#updating-dependencies) or not. -依存関係の行で **右クリック** し、**ディスク上に表示** を選択すると、依存関係の保管場所が表示されます: +If you do not want to use a component update (for example you want to stay with a specific version), just let the current status (make sure the [**Automatic update**](#automatic-update) feature is not checked). -![dependency-show](../assets/en/Project/dependency-show.png) +#### Updating dependencies -:::note +**Updating a dependency** means downloading a new version of the dependency from GitHub and keeping it ready to be loaded the next time the project is started. -依存関係が非アクティブの場合は、ファイルが見つからないためこの項目は表示されません。 +You can update dependencies at any moment, for a single dependency or for all dependencies: -::: +- To update a single dependency, right-click on the dependency and select **Update \ on next startup** in the contextual menu or in the **options** menu at the bottom of the Dependency manager window: -コンポーネントアイコンとロケーションロゴが追加情報を提供します: +![check component](../assets/en/Project/update-component-one.png) -- コンポーネントロゴは、それが 4D またはサードパーティーによる提供かを示します。 -- ローカルコンポーネントと GitHubコンポーネントは、小さなアイコンで区別できます。 +- To update all dependencies at once, click on the **options** menu at the bottom of the Dependency manager window and select **Update all remote dependencies on next startup**: -![dependency-origin](../assets/en/Project/dependency-github.png) +![check components](../assets/en/Project/update-component-all.png) -### 依存関係のフィルタリング +In any cases, whatever the current dependency status, an automatic checking is done on GitHub before updating the dependency, to make sure the most recent version is retrieved, [according to your component versioning configuration](#defining-a-github-dependency-version-range). -デフォルトでは、依存関係マネージャーによって識別されたすべての依存関係は、それらの [ステータス](#依存関係のステータス) に関係なくリストされます。 依存関係パネル上部のタブを選択することで、依存関係のステータスに応じてリストの表示をフィルタリングできます: +When you select an update command: -![dependency-tabs](../assets/en/Project/dependency-tabs.png) +- a dialog box is displayed and proposes to **restart the project**, so that the updated dependencies are immediately available. It is usually recommended to restart the project to evaluate updated dependencies. +- if you click Later, the update command is no longer available in the menu, meaning the action has been planned for the next startup. -- **アクティブ**: プロジェクトに読み込まれ、使用できる依存関係。 実際にロードされた _Overloading_ な依存関係が含まれます。 _Overloaded_ である方の依存関係は、その他の競合している依存関係とともに **コンフリクト** パネルに表示されます。 -- **非アクティブ**: プロジェクトに読み込まれておらず、利用できない依存関係。 このステータスには様々な理由が考えられます: ファイルの欠落、バージョンの非互換性など… -- **コンフリクト**: プロジェクトに読み込まれてはいるものの、先に読み込まれた [優先度](#優先順位) の高い依存関係と競合している依存関係。 _Overloaded_ な依存関係も表示されるため、競合の原因を確認し、適切に対処することができます。 +#### Automatic update -### 依存関係のステータス +The **Automatic update** option is available in the **options** menu at the bottom of the Dependency manager window. -デベロッパーの注意を必要とする依存関係は、行の右側の **ステータスラベル** と背景色で示されます。 +When this option is checked (default), new GitHub component versions matching your [component versioning configuration](#defining-a-github-dependency-version-range) are automatically updated for the next project startup. This option facilitates the day-to-day management of dependency updates, by eliminating the need to manually select updates. -![dependency-status](../assets/en/Project/dependency-conflict2.png) +When this option is unchecked, a new component version matching your [component versioning configuration](#defining-a-github-dependency-version-range) is only indicated as available and will require a [manual updating](#updating-dependencies). Unselect the **Automatic update** option if you want to monitor dependency updates precisely. -使用されるステータスラベルは次のとおりです: +### GitHubアクセストークンの提供 -- **Overloaded**: 依存関係は読み込まれていません。より上位の [優先順位](#優先順位) において、同じ名前の依存関係がすでに読み込まれています。 -- **Overloading**: 依存関係は読み込まれていますが、下位の [優先順位](#優先順位) において読み込まれなかった同じ名前の依存関係が存在します。 -- **Not found**: dependencies.jsonファイルで依存関係が宣言されていますが、見つかりません。 -- **Inactive**: プロジェクトと互換性がないため、依存関係は読み込まれていません (例: 現在のプラットフォーム用にコンポーネントがコンパイルされていない、など)。 -- **Duplicated**: 依存関係は読み込まれていません。同じ名前を持つ別の依存関係が同じ場所に存在し、すでに読み込まれています。 -- **Available after restart**: [インターフェースによって](#プロジェクトの依存関係の監視) 依存関係の参照が追加されました。この依存関係は、アプリケーションの再起動後に読み込まれます。 -- **Unloaded after restart**: [インターフェースによって](#プロジェクトの依存関係の監視) 依存関係の参照が削除されました。この依存関係は、アプリケーションの再起動時にアンロードされます。 +Registering your personal access token in the Dependency manager is: -依存関係の行にマウスオーバーするとツールチップが表示され、ステータスに関する追加の情報を提供します: +- mandatory if the component is stored on a [private GitHub repository](#private-repositories), +- recommended for a more frequent [checking of dependency updates](#updating-github-dependencies). -![dependency-tips](../assets/en/Project/dependency-tip1.png) +To provide your GitHub access token, you can either: + +- "依存関係を追加..." ダイアログボックスで、GitHub のプライベートリポジトリパスを入力した後に表示される \*\*パーソナルアクセストークンを追加... \*\* ボタンをクリックします。 +- または、依存関係マネージャーのメニューで、**GitHubパーソナルアクセストークンを追加...** をいつでも選択できます。 + +![dependency-add-token](../assets/en/Project/dependency-add-token.png) + +すると、パーソナルアクセストークンを入力することができます: + +![dependency-add-token-2](../assets/en/Project/dependency-add-token-2.png) + +パーソナルアクセストークンは 1つしか入力できません。 入力されたトークンは編集することができます。 入力されたトークンは編集することができます。 + +The provided token is stored in a **github.json** file in the [active 4D folder](../commands-legacy/get-4d-folder.md#active-4d-folder). + +### 依存関係の削除 + +依存関係パネルから依存関係を削除するには、対象の依存関係を選択し、パネルの **-** ボタンをクリックするか、コンテキストメニューから **依存関係の削除...** を選択します。 依存関係は複数選択することができ、その場合、操作は選択したすべての依存関係に適用されます。 + +:::note + +依存関係パネルを使用して削除できるのは、[**dependencies.json**](#dependenciesjson) ファイルで宣言されている依存関係に限られます。 選択した依存関係を削除できない場合、**-** ボタンは無効化され、**依存関係の削除...** メニュー項目は非表示になります。 選択した依存関係を削除できない場合、**-** ボタンは無効化され、**依存関係の削除...** メニュー項目は非表示になります。 + +::: + +確認用のダイアログボックスが表示されます。 確認用のダイアログボックスが表示されます。 依存関係が **environment4d.json** ファイルで宣言されている場合、以下のオプションでそれを削除することができます: + +![dependency-remove](../assets/en/Project/remove-comp.png) + +ダイアログボックスを確定すると、削除された依存関係の [ステータス](#依存関係のステータス) には "Unloaded after restart" (再起動時にアンロード) フラグが自動的に付きます。 このコンポーネントはアプリケーションの再起動時にアンロードされます。 このコンポーネントはアプリケーションの再起動時にアンロードされます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md index 9c4175c8d77648..aa52c0f2014943 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md @@ -9,52 +9,52 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ----------- | ------- | - | ---------------------------------- | -| section | Object | → | 4D Write Pro section | -| wpDoc | Object | → | 4D Write Pro document | -| indexNumber | Integer | → | Index of the section to be deleted | -| count | Integer | → | Number of sections to be deleted | +| 引数 | 型 | | 説明 | +| ----------- | ------- | - | ------------------- | +| section | Object | → | 4D Write Pro セクション | +| wpDoc | Object | → | 4D Write Pro ドキュメント | +| indexNumber | Integer | → | 削除するセクションのインデックス | +| count | Integer | → | 削除するセクションの数 | #### 説明 -The **WP DELETE SECTION** command deletes the passed *section* object, or deletes one or more sections starting at *indexNumber* and depending on the *count* passed. When a section is removed, everything associated with it, including the header, footer, part of the body, anchored pictures, text boxes, and the ending section break (whether a section break or continuous section break), is also removed. +**WP DELETE SECTION** コマンドは*section* 引数に渡されたオブジェクトのセクションを削除します。または、*indexNumber* 引数で指定されたセクションから*count* 引数で指定された個数分だけ1つ以上のセクションを削除します。. セクションが削除されると、ヘッダー、フッター、本文の一部、アンカーされた画像、テキストボックス、終了セクションブレーク(セクションブレークまたは継続的なセクションブレークかに関わらず)など、そのセクションに関連づけられていたものも削除されます。 -An error is raised if the **WP DELETE SECTION** command requests to delete all sections or if the document contains only one section. +**WP DELETE SECTION** コマンドを使用して全てのセクションを削除しようとした場合、あるいはドキュメントにセクションが1つしか含まれていないような場合にはエラーが発生します。 -**WP DELETE SECTION** re-indexes the anchorSection attribute of text boxes and pictures to adjust their anchors to their sections after changes. For example, if a document has four sections and the second section is deleted, sections 3 and 4 will become sections 2 and 3 and text boxes and pictures that were previously anchored to sections 3 and 4 will now be anchored to sections 2 and 3. +**WP DELETE SECTION** は、テキストボックスとピクチャーの属性を再インデックスし、変更後のセクションへと合致するようにアンカーを調整します。 例えばドキュメントに四つのセクションがあり、2番目のセクションが削除された場合、セクション3と4はそれぞれセクション2と3となり、実行前にはセクション3と4にアンカーされていたテキストボックスおよびピクチャーはセクション2と3にアンカーされます。 :::note -If an image or textbox is anchored to a page (e.g., page 20) and this page no longer exists after a section has been deleted, the image (or textbox) will remain in the document and will reappear on page 20 if this page ever exists again later. +画像またはテキストボックスがページ(例:20ページ目)へとアンカーされていて、セクションが削除された後にそのページが残っていない場合には、画像(またはテキストボックス)はドキュメント内に残り続け、後に20ページ目がまたあらわれた場合には、その20ページ目に画像(またはテキストボックス)が再度発生します。 ::: #### 例題 -To remove the first section of the document: +ドキュメントの最初のセクションを削除したい場合を考えます: ```4d wpDoc:=WP Import document("test.wp") -// remove section 1 only (without error unless there is only one section in the document) +// セクション1のみを削除する(ドキュメント内にセクションが1つしかない場合を除きエラーは発生しない) WP DELETE SECTION(wpDoc ; 1) ``` -To remove section 5 of the document: +ドキュメント内のセクション5を削除したい場合を考えます: ```4d wpDoc:=WP Import document("test.wp") -// remove section 5 only +// セクション 5のみを削除します WP DELETE SECTION(wpDoc ; 5) ``` -To remove section 5, 6 and 7 of the document: +ドキュメント内のセクション5、6、7を削除したい場合を考えます: ```4d @@ -63,24 +63,24 @@ WP DELETE SECTION(wpDoc ; 5 ; 3 ) ``` -To remove all sections starting from 5: +セクション5以降の全てのセクションを削除したい場合を考えます: ```4d wpDoc:=WP Import document("test.wp") -// remove all sections starting at section 5 (without error unless section 5 does not exist) +// セクション5 以降の全てのセクションを削除する(セクション5 が存在しない場合を除き、エラーは発生しない) WP DELETE SECTION(wpDoc ; 5 ; MAXLONG ) ``` -To retrieve and remove section 5: +セクション5を取得して削除したい場合を考えます: ```4d wpDoc:=WP Import document("test.wp") -// get section 5 +// セクション5 を取得 $section:=WP Get section(wpDoc, 5) -// remove $section +// $section を削除 WP DELETE SECTION($section) ``` diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md index a91c986ff83703..87ddcbe94e721b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md @@ -9,21 +9,21 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| -------------- | ------- | - | ---------------------------------------------------------------------------------- | -| wpSection | Object | → | 4D Write Pro section | -| subSectionType | Integer | → | Subsection type (wk first page, wk left page, or wk right page) | -| subSection | Object | → | 4D Write Pro subsection | +| 引数 | 型 | | 説明 | +| -------------- | ------- | - | ---------------------------------------------------------------------------- | +| wpSection | Object | → | 4D Write Pro セクション | +| subSectionType | Integer | → | サブセクションのタイプ(wk first page、wk left page、または wk right page) | +| subSection | Object | → | 4D Write Pro サブセクション | #### 説明 -The **WP DELETE SUBSECTION** command removes the *subSectionType* subsection elements from the *wpSection* 4D Write Pro section, or it directly removes the passed *subSection*. Subsection elements include headers, footers, columns, anchored pictures, etc. Note that the body of the document is left untouched. +**WP DELETE SUBSECTION** コマンドは引数で指定した4D Write Pro セクションから、引数で指定したサブセクション要素を削除します。または*subSection* 引数で指定したサブセクションを直接削除します。 サブセクション要素にはヘッダー、フッター、カラム、アンカーされた画像などが含まれます。 ドキュメントの本文はそのまま残されるという点に注意してください。 -In *wpSection*, pass the section from which you want to remove the subsection elements. The section can be obtained using the [WP Get sections](../commands-legacy/wp-get-sections.md) or [WP Get section](../commands-legacy/wp-get-section.md) commands. +*wpSection* 引数には、サブセクション要素を削除したいセクションを渡します。 セクションは、[WP Get sections](../commands-legacy/wp-get-sections.md) または [WP Get section](../commands-legacy/wp-get-section.md) コマンドを使用することで取得できます。 -The *subSectionType* parameter specifes the subsection to delete. You can pass one of the following constants: +*subSectionType* 引数は削除するサブセクションを指定します。 以下の定数のいずれかを渡すことができます: | 定数 | 型 | 値 | | ------------- | ------- | - | @@ -33,33 +33,33 @@ The *subSectionType* parameter specifes the subsection to delete. You can pass o :::note -Deleting a left page or right page subsection will automatically delete the opposite subsection. For example, if you delete a right page subsection, the left page subsection is automatically deleted. +左ページまたは右ページサブセクションを削除すると、反対側のサブセクションも自動的に削除されます。 例えば、右ページサブセクションを削除した場合、左ページサブセクションも自動的に削除されます。 ::: -If the *subSectionType* does not exist, the command does nothing (no error is generated). +*subSectionType* 引数で指定したタイプのサブセクションが存在しない場合、コマンドは何もしません(エラーは生成されません)。 :::note -When a subsection is deleted, the header and footer are removed, as well as anchored pictures and textboxes but the body remains untouched. +サブセクションが削除されると、ヘッダーとフッターに加えアンカーされた画像とテキストボックスも削除されますが、本文はそのまま残されます。 ::: #### 例題 1 -You want to delete the first page subsection of the first section: +最初のセクションの最初のページのサブセクションを削除したい場合を考えます: ```4d var $section;$subsection : Object - // get first section + // 最初のセクションを取得 $section:=WP Get section(wpDoc;1) - // Delete the subsection + // サブセクションを削除 WP DELETE SUBSECTION($section;wk first page) ``` #### 例題 2 -You want to delete the right page subsection of section 3: +セクション3 の右ページサブセクションを削除したい場合を考えます: ```4d diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md index 7f6ce6143b1d0b..9790b09313d78e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md @@ -9,43 +9,43 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ------------------- | ------ | - | ------------------------------------------------- | -| targetObj | Object | → | Range or element or 4D Write Pro document | -| sectionOrSubsection | Object | → | Section or subsection of a 4D Write Pro document | -| attribName | Text | → | Name of attribute(s) to remove | +| 引数 | 型 | | 説明 | +| ------------------- | ------ | - | ----------------------------------- | +| targetObj | Object | → | レンジまたは要素または4D Write Pro ドキュメント | +| sectionOrSubsection | Object | → | 4D Write Pro ドキュメントのセクションまたはサブセクション | +| attribName | Text | → | 削除したい属性の名前 | #### 説明 -The **WP RESET ATTRIBUTES** command allows you to reset the value of one or more attributes in the range, element, or document passed as parameter. This command can remove any kind of 4D Write Pro internal attribute: character, paragraph, document, table, or image. You can pass the attribute name to be reset in *attribName* or, in the case of a section or a subsection, the *sectionOrSubsection* object can be passed alone and all the attributes are reset at once. +**WP RESET ATTRIBUTES** コマンドは引数として渡されたレンジ、要素、またはドキュメントの1つ以上の値をリセットすることができます。このコマンドは任意の4D Write Pro 内部属性(文字、段落、ドキュメント、表または画像)を削除することができます。 リセットしたい属性の名前を*attribName* 引数に渡すことができます。あるいは削除したいのがセクションまたはサブセクションの場合、*sectionOrSubsection* オブジェクト単体を渡すだけで、全ての属性を一度にリセットすることができます。 -In the *targetObj* parameter, you can pass either: +*targetObj* 引数には、以下のいずれかを渡すことができます: -- a range, or -- an element (header / footer / body / table / paragraph / anchored or inline picture / section / subsection / style sheet), or -- a 4D Write Pro document +- レンジ +- 要素(ヘッダー / フッター / 本文 / 表 / 段落 / アンカーされた画像またはインラインの画像 / セクション / サブセクション / スタイルシート) +- 4D Write Pro ドキュメント -When an attribute value is removed using the **WP RESET ATTRIBUTES** command, the default value is applied to *targetObj* or *sectionOrSubsection*. Default values are listed in the *4D Write Pro Attributes* section. +**WP RESET ATTRIBUTES** コマンドを使用して属性の値が削除された場合、*targetObj* あるいは *sectionOrSubsection* にはデフォルトの値が適用されます。 デフォルトの値については、*4D Write Pro Attributes* の章に記載されています。 :::note 注記 -- When **WP RESET ATTRIBUTES** is applied to a section/sub-section object, attributes are then inherited from the parent section or document. -- When **WP RESET ATTRIBUTES** is applied to a style sheet object, the attributes are removed from the style sheet unless it is the default ("Normal") style sheet. In this case, the default value is applied to the attribute (the "Normal" style sheet defines all style sheet attributes). -- When *sectionOrSubsection* is not a section nor a subsection and if no attribute is provided, then an error is raised. +- **WP RESET ATTRIBUTES** がセクション/サブセクションオブジェクトに対して適用された場合、属性はその親セクションまたはドキュメントから継承されます。 +- **WP RESET ATTRIBUTES** がスタイルシートオブジェクトに対して適用された場合、スタイルシートがデフォルト("Normal")スタイルシートである場合を除き、その属性はスタイルシートから削除されます。 この場合、デフォルトの値が属性に対して適用されます(スタイルシートは全てのスタイルシート属性を定義します)。 +- *sectionOrSubsection* 引数がセクションでもサブセクションでもなく、また属性が何も指定されたなかった場合には、エラーが生成されます。 ::: -If the attribute to be reset was not defined in the element passed as a parameter, the command does nothing. +引数として渡された要素の中にリセットしたい属性が定義されていなかった場合、コマンドは何もしません。 #### 例題 1 -You want to remove several attributes from the following selection: +以下の選択範囲から複数の属性を削除したい場合を考えます: ![](../../assets/en/WritePro/commands/pict2643861.en.png) -You can execute: +この場合、以下のように書くことができます: ```4d $range:=WP Get selection(*;"WParea") @@ -56,7 +56,7 @@ You can execute: WP RESET ATTRIBUTES($range;wk border style) ``` -The resulting document is: +実行後のドキュメントはこうなります: ![](../../assets/en/WritePro/commands/pict2643863.en.png) @@ -64,9 +64,9 @@ The resulting document is: ```4d $section:=WP Get section($document; 3) -WP RESET ATTRIBUTES($section) // All attributes of the section are removed +WP RESET ATTRIBUTES($section) // セクションの全ての属性が削除される $subSection:=WP Get subsection(WP Get section($document; 3); wk left page) -WP RESET ATTRIBUTES($subSection) // All attributes of the subSection are removed +WP RESET ATTRIBUTES($subSection) // サブセクションの全ての属性が削除される ``` #### 参照 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png index 87f2c7ec6cc15d..f350cb995a59fd 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png index 35222f97254a0d..cba6de249cf77a 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png new file mode 100644 index 00000000000000..723465a0e2af57 Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png index f4372b543ee6b7..8718fded2a0b4c 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png new file mode 100644 index 00000000000000..21e28b40a2becf Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png new file mode 100644 index 00000000000000..97e0485cac6531 Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png index 282eef4ee9e9f9..e3c0e17dd9d02b 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png new file mode 100644 index 00000000000000..723465a0e2af57 Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png new file mode 100644 index 00000000000000..34e97fb3ae5556 Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png index cf71bd2d50e871..ddc56eac8963bd 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png index 5790890448635f..a2bf8c9b7a7bce 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png index 3ebacf28c5868d..ba0f3543b2a69a 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png new file mode 100644 index 00000000000000..f2e18d4d1ae84c Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png new file mode 100644 index 00000000000000..ef983192ecd1c3 Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png index 704002e1efdbe2..62e449d25b5084 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png index b70d73b8d2d592..69183c18d0472b 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png new file mode 100644 index 00000000000000..e69c0a944123d4 Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png new file mode 100644 index 00000000000000..a28b341c2f5711 Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png new file mode 100644 index 00000000000000..7d703a9fdb9d0a Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png index aca6352b6228e0..894064ff9c279c 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png index 3a8dde7cb02f1d..560e17bb42a38e 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png index 9d43fe6bd4f506..3b750ab5dbaf05 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png index ed358b57e41768..d862bd91343a59 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png index 05788609ab8a91..50830ff5e6adcb 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png new file mode 100644 index 00000000000000..b37014fd85bc8b Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png index 34127bf5a3d063..2515791f19c790 100644 Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png new file mode 100644 index 00000000000000..8c88840165538b Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png new file mode 100644 index 00000000000000..3494e7faee10c5 Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png new file mode 100644 index 00000000000000..0c734b11774382 Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png differ diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md index 7c4ea946ad6c20..30b306cbaf4db3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**ABORT PROCESS BY ID** コマンドは4D Server 上の特定のプロセスを中止します。 - -*uniqueID* 引数には、サーバー上で実行中で中止したいプロセスの固有IDを渡します。プロセスIDは、[Process activity](../commands/process-activity.md) あるいは [Process info](../commands/process-info.md) コマンドを使用することで取得できます。 +**ABORT PROCESS BY ID** コマンドは4D Server 上の特定のプロセスを中止します。引数には、サーバー上で実行中で中止したいプロセスの固有IDを渡します。プロセスIDは、[Process activity](../commands/process-activity.md) あるいは [Process info](../commands/process-info.md) コマンドを使用することで取得できます。 **注**: @@ -41,4 +39,13 @@ displayed_sidebar: docs #### 参照 -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1634 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort.md index 02a14e0f20a5bd..1d825d87cafa8c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort.md @@ -34,4 +34,13 @@ ABORT コマンドはエラー処理プロジェクトメソッド内でのみ #### 参照 -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 156 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abs.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abs.md index f372ccdc079da2..052aa4460e834f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abs.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abs.md @@ -25,3 +25,13 @@ displayed_sidebar: docs ```4d  vlVector:=Abs(-10.3) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 99 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accept.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accept.md index 82de5812f194d7..6247a320dc36d6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accept.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accept.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ACCEPT** コマンドは以下の目的で、フォームメソッドまたはオブジェクトメソッド(またはサブルーチン)で使用されます: @@ -37,4 +34,14 @@ displayed_sidebar: docs #### 参照 -[CANCEL](cancel.md) \ No newline at end of file +[CANCEL](cancel.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 269 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md index 1a4e16b6e4668f..238906558c48b8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ACCUMULATEは、[PRINT SELECTION](print-selection.md "PRINT SELECTION")コマンドを使ってプリントするフォームレポート中で累計するフィールドまたは変数を指定します。 @@ -37,4 +34,13 @@ displayed_sidebar: docs [BREAK LEVEL](break-level.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 303 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md index f6446ba9b028e5..55c1036dbecdc0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**Action info** コマンドはカレントのアプリケーションコンテキストに応じて、*target* 引数で指定したターゲット内で定義されている*action* 引数で指定した標準アクションについて、利用可能状況やステータスなどを含む様々な情報を返します。 - -*action* 引数には、チェックしたい標準アクションの名前を渡します。文字列あるいは*標準アクション* テーマの定数を渡すことができます。アクションの詳細リストは4D*デザインリファレンス*マニュアルの*標準アクション* の章にて提供されています。 +**Action info** コマンドはカレントのアプリケーションコンテキストに応じて、*target* 引数で指定したターゲット内で定義されている*action* 引数で指定した標準アクションについて、利用可能状況やステータスなどを含む様々な情報を返します。引数には、チェックしたい標準アクションの名前を渡します。文字列あるいは*標準アクション* テーマの定数を渡すことができます。アクションの詳細リストは4D*デザインリファレンス*マニュアルの*標準アクション* の章にて提供されています。 **注:** 4D Write Pro ドキュメントに対しては、特定のアクションが追加されています。これらについては、4D Write Pro リファレンスマニュアル内の*4D Write Pro標準アクションの使用* の章に詳細な説明があります。 @@ -62,4 +60,13 @@ displayed_sidebar: docs #### 参照 [INVOKE ACTION](invoke-action.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1442 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activated.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activated.md index 2b061e3875debf..f6ef6a22b36170 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activated.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Activated** コマンドは、(廃止予定)フォームを含むウインドウがプロセスの最前面のウインドウになると、そのフォームメソッドで**True** を返します。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 [Deactivated](deactivated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 346 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md index dcfb728486a713..8f70e49399fe06 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md @@ -42,4 +42,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [RESUME TRANSACTION](resume-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*トランザクションの停止* \ No newline at end of file +*トランザクションの停止* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1387 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md index 010151a115adbc..08e5da22604a20 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md @@ -105,3 +105,13 @@ displayed_sidebar: docs 以下の様な配列が返されます: ![](../assets/en/commands/pict1213741.en.png) + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1277 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md index 459ea17907672a..51d1e49121d807 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 互換性に関する注意 *このコマンドは4D の初期のリリースに実装されたものでプロトタイプや基本的な開発には引き続き有用です。しかしながら、ビルドされ、カスタマイズされた現代的なインターフェースにおいては、データフローに関してより高度な機能とコントロールを提供する* *[DIALOG](../commands/dialog.md) コマンドに基づいた一般的なフォームを使用することが推奨されます。* @@ -91,4 +88,17 @@ displayed_sidebar: docs [CANCEL](cancel.md) [CREATE RECORD](create-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 56 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md index 6227bd5ac9b307..5e5577bd008053 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md @@ -35,3 +35,13 @@ displayed_sidebar: docs   // この行は$vdTomorrow:=Current 日付+1と同等です  $vdTomorrow:=Add to date(Current date;0;0;1) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 393 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md index 0f778440223796..b93effb60ecc58 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### 参照 -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 119 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md index 13093c519157d3..dea61b5ba1ada0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md @@ -51,4 +51,13 @@ displayed_sidebar: docs #### 参照 [Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1431 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md index 4c2ffbec71d31a..066b2018539a21 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md @@ -51,4 +51,13 @@ displayed_sidebar: docs #### 参照 [Get adjusted index cache priority](get-adjusted-index-cache-priority.md) -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1430 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md index 7a85d91ef3ca77..01922671a9f9f3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md @@ -49,4 +49,13 @@ displayed_sidebar: docs #### 参照 [Get adjusted table cache priority](get-adjusted-table-cache-priority.md) -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1429 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/after.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/after.md index cc04e4684a9b41..dc662639f31558 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/after.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/after.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **After** はAfter 実行サイクルでTrue を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 31 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/alert.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/alert.md index 27d0da567a340e..1ef36aa7dea80f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/alert.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/alert.md @@ -66,4 +66,13 @@ displayed_sidebar: docs [CONFIRM](confirm.md) [DISPLAY NOTIFICATION](display-notification.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 41 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md index 7d182005de2a8d..c8c5b5c57fdc92 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md @@ -33,4 +33,15 @@ displayed_sidebar: docs [ORDER BY](order-by.md) [QUERY](query.md) [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 47 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md index be99026f52e294..aeaab612723d75 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 APPEND DATA TO PASTEBOARD コマンドは、*dataType*で指定されたデータタイプで*data*BLOB内にあるデータをペーストボードに追加します。 @@ -219,4 +216,14 @@ GET RECORD FROM PASTEBOARDメソッドを使用して、このレコードイメ [CLEAR PASTEBOARD](clear-pasteboard.md) [SET PICTURE TO PASTEBOARD](set-picture-to-pasteboard.md) -[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) \ No newline at end of file +[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 403 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md index 6e8e41bce0f49a..ed586952f2d847 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md @@ -37,4 +37,14 @@ Append documentの使用についての詳細は、[Open document](open-document #### 参照 [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 265 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md index 8609817f753613..8132e3b20f4cfb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **APPEND MENU ITEM** コマンドは、*menu*引数に渡されたメニュー番号または参照を持つメニューに新規メニュー項目を追加します。 @@ -81,4 +78,14 @@ displayed_sidebar: docs [DELETE MENU ITEM](delete-menu-item.md) [INSERT MENU ITEM](insert-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 411 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md index 9d12ba88eceb5b..0b7ef48eeb0172 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 911 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md index 3f3e0a5266c1bc..f23eb31d677e2f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **APPEND TO LIST** コマンドは、*list*に渡した参照番号を持つ階層リストに新規項目を追加します。 @@ -162,4 +159,13 @@ displayed_sidebar: docs [INSERT IN LIST](insert-in-list.md) [SET LIST ITEM](set-list-item.md) [SET LIST ITEM PARAMETER](set-list-item-parameter.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 376 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md index 71cbd612a7341d..d4f136474513f8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md @@ -40,4 +40,13 @@ Windows上で、4Dの起動時に、DLLライブラリが4D実行形式のファ #### 参照 [Data file](data-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 491 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md index 4943e9cdf44cea..8ab42ece40c791 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md @@ -130,4 +130,13 @@ displayed_sidebar: docs [Execute on server](execute-on-server.md) [Get database parameter](get-database-parameter.md) [System info](system-info.md) -[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) \ No newline at end of file +[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1599 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md index 358fb05eb24c53..3ac729ae74bbc6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md @@ -41,4 +41,13 @@ displayed_sidebar: docs #### 参照 [Application version](application-version.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 494 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md index a89e2a8faf1433..40ee5d44335e96 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md @@ -118,4 +118,13 @@ displayed_sidebar: docs #### 参照 [Application type](application-type.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 493 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md index fc89d7451dd5cd..76d373c1a265f7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -**APPLY TO SELECTION** は、*aTable*のカレントセレクションに対して*statement*を適用します。*statement*は1行のステートメントまたはメソッドのどちらでも構いません。*statement*が*aTable*のレコードを修正した場合、そのレコードをディスクに保存されます、レコードを修正しない場合には保存しません。カレントセレクションが空の場合、**APPLY TO SELECTION** は何も行いません。リレーションが自動であれば、*statement*はリレート先のテーブルのフィールドを含むことができます。 +**APPLY TO SELECTION** は、*aTable*のカレントセレクションに対して*statement*を適用します。は何も行いません。リレーションが自動であれば、*statement*はリレート先のテーブルのフィールドを含むことができます。 **警告:** 引数($1...$n) は*statement* 引数ではサポートされていません。 @@ -61,4 +61,14 @@ APPLY TO SELECTION実行中にレコードを修正して、そのレコード #### 参照 [EDIT FORMULA](edit-formula.md) -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 70 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md index ac8dfbd1691b83..eb1e29d34e69de 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md @@ -32,4 +32,13 @@ displayed_sidebar: docs [Cos](cos.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 20 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md index b7a78f336eab76..687eb8b751df1c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**ARRAY BLOB**コマンドは、メモリ上にBLOB型の要素の配列を作成・リサイズします。 - -*arrayName* 引数には配列の名前を渡します。 +**ARRAY BLOB**コマンドは、メモリ上にBLOB型の要素の配列を作成・リサイズします。引数には配列の名前を渡します。 *size* 引数には、配列の要素の数を渡します。 @@ -59,4 +57,13 @@ displayed_sidebar: docs #### 参照 -*配列を作成する* \ No newline at end of file +*配列を作成する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1222 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md index 92b2a82fc33c40..866e0c422c6ea7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md @@ -61,4 +61,13 @@ ARRAY BOOLEANを既存の配列に適用する場合、 #### 参照 -[ARRAY INTEGER](array-integer.md) \ No newline at end of file +[ARRAY INTEGER](array-integer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 223 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md index 343f421d0df1c8..96da445163716c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md @@ -56,3 +56,13 @@ ARRAY DATEを既存の配列に適用する場合、     <>adValues{$vlElem}:=Current date+$vlElem  End for ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 224 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md index 764d09022eef14..30704b71a189bf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md @@ -60,4 +60,13 @@ ARRAY INTEGERを既存の配列に適用する場合、 #### 参照 [ARRAY LONGINT](array-longint.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 220 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md index d72e4f7ae90da3..2f2f7411d9bc79 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md @@ -60,4 +60,13 @@ ARRAY LONGINTを既存の配列に適用する場合、 #### 参照 [ARRAY INTEGER](array-integer.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 221 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md index 3bba7c9802f5a1..9a62e0b4becdd7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**ARRAY OBJECT**コマンドは、メモリ上にランゲージオブジェクト型の要素の配列を作成・リサイズします。 - -*arrayName* 引数には配列の名前を渡します。4Dのルールに則った名前であればどんな名前でも使用することができます。 +**ARRAY OBJECT**コマンドは、メモリ上にランゲージオブジェクト型の要素の配列を作成・リサイズします。引数には配列の名前を渡します。4Dのルールに則った名前であればどんな名前でも使用することができます。 *size* 引数には、配列の要素の数を渡します。 @@ -68,4 +66,13 @@ displayed_sidebar: docs [C\_OBJECT](c-object.md) *オブジェクト(ランゲージ)* -*配列を作成する* \ No newline at end of file +*配列を作成する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1221 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md index acc9bc626457ea..8b2d866aef4d1d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md @@ -63,3 +63,13 @@ ARRAY PICTURE を既存の配列に適用する場合、  End for  ARRAY PICTURE(<>agValues;$vlPictElem) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 279 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md index c3de58d5a95248..6bff02d509bfc3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md @@ -58,3 +58,13 @@ displayed_sidebar: docs     End if  End for ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 280 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md index 1743dda1ba5267..b65d5247ee9416 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md @@ -60,4 +60,13 @@ ARRAY REALを既存の配列に適用する場合、 #### 参照 [ARRAY INTEGER](array-integer.md) -[ARRAY LONGINT](array-longint.md) \ No newline at end of file +[ARRAY LONGINT](array-longint.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 219 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md index cc642b048bc19e..32992a34241c2e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md @@ -57,3 +57,13 @@ ARRAY TEXTを既存の配列に適用する場合、  End for ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 222 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md index ea612ca6b17e83..2ba41b98957511 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**ARRAY TIME**コマンドは、メモリ上に時間型の要素の配列を作成・リサイズします。 - -**リマインダ:** 4Dでは時間は数の値として処理されるということに注意して下さい。以前のバージョンの4Dでは、時間の配列を管理するためには倍長整数配列と表示フォーマットを組み合わせる必要がありました。 +**ARRAY TIME**コマンドは、メモリ上に時間型の要素の配列を作成・リサイズします。4Dでは時間は数の値として処理されるということに注意して下さい。以前のバージョンの4Dでは、時間の配列を管理するためには倍長整数配列と表示フォーマットを組み合わせる必要がありました。 *arrayName* 引数には配列の名前を渡します。 @@ -64,4 +62,13 @@ displayed_sidebar: docs #### 参照 [Time](time.md) -*配列を作成する* \ No newline at end of file +*配列を作成する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1223 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md index 66a859fc556cfe..66962d4be635b1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md @@ -81,4 +81,13 @@ displayed_sidebar: docs #### 参照 [COLLECTION TO ARRAY](collection-to-array.md) -*コレクションと4D配列間での型の変換* \ No newline at end of file +*コレクションと4D配列間での型の変換* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1563 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md index 25e1ff1995c4d6..3c529fcf1d0fa2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ARRAY TO LIST コマンドは、配列*array*の要素を使用して、(デザインモードのリストエディタで作成される)階層リストまたは選択リスト*list*リストを作成または置き換えます。 @@ -62,4 +59,14 @@ ARRAY TO LIST コマンドを使い、配列の要素に基づくリストを作 [LIST TO ARRAY](list-to-array.md) [Load list](load-list.md) [ON ERR CALL](on-err-call.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 287 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md index 71af2fe9a3651b..b1965db9d692de 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md @@ -79,4 +79,14 @@ displayed_sidebar: docs #### 参照 [SELECTION TO ARRAY](selection-to-array.md) -*システム変数* \ No newline at end of file +*システム変数* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 261 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/assert.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/assert.md index 28b174d235934b..6cf959108cef2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/assert.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/assert.md @@ -54,4 +54,14 @@ displayed_sidebar: docs [Asserted](asserted.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1129 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md index bff02522b5feba..8d27003dd3710d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md @@ -40,4 +40,14 @@ displayed_sidebar: docs [ASSERT](assert.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1132 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/average.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/average.md index a662a30bbc8bac..aaba64d50c12d6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/average.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/average.md @@ -89,4 +89,14 @@ displayed_sidebar: docs [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) [Subtotal](subtotal.md) -[Sum](sum.md) \ No newline at end of file +[Sum](sum.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 2 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md index 3fed73bbace4ff..edc836d2220d44 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -BACKUP INFO コマンドを使用して、データベースのデータに対して行われた前回のバックアップに関連する情報を取得できます。 - -*selector*には取得する情報タイプを渡します。*info1* と *info2* の型および内容は、*selector* の値によって決まります。“*Backup and Restore*”テーマの次の定数を使用できます: +BACKUP INFO コマンドを使用して、データベースのデータに対して行われた前回のバックアップに関連する情報を取得できます。と *info2* の型および内容は、*selector* の値によって決まります。“*Backup and Restore*”テーマの次の定数を使用できます: | 定数 | 型 | 値 | コメント | | ----------------------- | ---- | - | ----------------------------------------------------------------------------------------------------------------------------------- | @@ -30,4 +28,13 @@ displayed_sidebar: docs #### 参照 -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 888 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup.md index 764aa63cf92922..cdd3e63101ee9d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **BACKUP**コマンドは、現在のバックアップ設定を用いて、データベースのバックアップを開始します。確認ダイアログボックスは表示されませんが、進捗バーが画面上に現れます。 @@ -38,4 +35,14 @@ displayed_sidebar: docs [BACKUP INFO](backup-info.md) *On Backup Startupデータベースメソッド* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 887 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md index 836d2b7f8b14f9..b5c74698ac449c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md @@ -54,4 +54,13 @@ displayed_sidebar: docs [BASE64 ENCODE](base64-encode.md) [Generate digest](generate-digest.md) [XML DECODE](xml-decode.md) -*XML DOMコマンドの概要* \ No newline at end of file +*XML DOMコマンドの概要* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 896 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md index e362880c2340ec..2ad2524a77a902 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md @@ -37,4 +37,13 @@ Bse64 エンコーディングは、8-bit のコードされたデータを編 [BASE64 DECODE](base64-decode.md) [Generate digest](generate-digest.md) [XML DECODE](xml-decode.md) -*XML DOMコマンドの概要* \ No newline at end of file +*XML DOMコマンドの概要* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 895 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/beep.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/beep.md index 774a20ff09f9db..57891b4f8ff43e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/beep.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/beep.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[PLAY](play.md) \ No newline at end of file +[PLAY](play.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 151 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md index 02d11a3ea959c0..579e20db5b2020 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -**Before selection** は、カレントレコードポインタが*aTable*のカレントセレクションの前にある場合にTRUEを返します。**Before selection** は、一般に[PREVIOUS RECORD](previous-record.md) により、カレントレコードポインタが先頭レコードの前に移動したかどうかを調べるために使用します。カレントセレクションが空の場合、**Before selection** はTRUEを返します。 +**Before selection** は、カレントレコードポインタが*aTable*のカレントセレクションの前にある場合にTRUEを返します。は、一般に[PREVIOUS RECORD](previous-record.md) により、カレントレコードポインタが先頭レコードの前に移動したかどうかを調べるために使用します。カレントセレクションが空の場合、**Before selection** はTRUEを返します。 カレントレコードポインタをセレクションに内に戻すには、[FIRST RECORD](first-record.md)、[LAST RECORD](last-record.md) または [GOTO SELECTED RECORD](goto-selected-record.md) を使用します。[NEXT RECORD](next-record.md) ではポインタはセレクション内に戻りません。 @@ -61,4 +61,13 @@ displayed_sidebar: docs [FIRST RECORD](first-record.md) [Form event code](../commands/form-event-code.md) [PREVIOUS RECORD](previous-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 198 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before.md index 2b31e21e1a6200..5b17320ae4f017 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Before** はBefore 実行サイクルでTrue を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 29 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md index aaf101e33374d4..d6f849baa285ca 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md @@ -45,4 +45,13 @@ displayed_sidebar: docs [End SQL](end-sql.md) [SQL Get current data source](sql-get-current-data-source.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 948 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md index 814725b7b0e19b..2832515d919e16 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md @@ -77,4 +77,13 @@ BLOBが圧縮された後、以下のプロジェクトメソッドは圧縮で #### 参照 [COMPRESS BLOB](compress-blob.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 536 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md index 231fbcaaa1f589..551f8ebb2013b9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 -[SET BLOB SIZE](set-blob-size.md) \ No newline at end of file +[SET BLOB SIZE](set-blob-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 605 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md index 3ab3ffdbee8a6a..7dddbd16251f16 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -BLOB TO DOCUMENT は、*blob*に格納されているデータを使用して*document*の内容全体を上書きします。*document*にはドキュメント名を渡します。*document*が存在しない場合、コマンドはドキュメントを作成します。既存のドキュメント名を渡す場合、それが開かれていないことを確認してください。ファイルが開かれているとエラーが生成されます。ドキュメントをユーザが選択できるようにするには、[Open document](open-document.md) または[Create document](create-document.md) 、およびプロセス変数*document* を使用します(例題を参照)。 +BLOB TO DOCUMENT は、*blob*に格納されているデータを使用して*document*の内容全体を上書きします。を使用します(例題を参照)。 #### 例題 @@ -49,4 +49,14 @@ displayed_sidebar: docs [Create document](create-document.md) [DOCUMENT TO BLOB](document-to-blob.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 526 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md index 6c54b17d53aeff..0ffa0744769752 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md @@ -61,4 +61,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 549 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md index 1c729fd7d16309..d47d2d5639008d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 BLOB to list コマンドは*blob*中、*offset*で指定されたバイトオフセット(ゼロから開始)に格納されているデータを使用して新しい階層リストを作成し、このリストのリスト参照番号を返します。 @@ -63,4 +60,14 @@ BLOB to listや[LIST TO BLOB](list-to-blob.md "LIST TO BLOB")は、 BLOBに格 #### 参照 -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 557 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md index 385c814a987ae9..eb1f77cb22f9b3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md @@ -59,4 +59,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 551 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md index fde308a100b0d4..7496ff01e6958c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md @@ -50,4 +50,14 @@ displayed_sidebar: docs [PICTURE CODEC LIST](picture-codec-list.md) [PICTURE TO BLOB](picture-to-blob.md) -[READ PICTURE FILE](read-picture-file.md) \ No newline at end of file +[READ PICTURE FILE](read-picture-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 682 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md index 0d56f35249572c..114e79066bb93b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **BLOB to print settings** コマンドは、4Dの現プリンタ設定を *printSettings* BLOBに格納された内容で置き換えます。このBLOBは [Print settings to BLOB](print-settings-to-blob.md) または 4D Pack コマンドで生成されていなければなりません (後述参照)。 @@ -77,4 +74,13 @@ The **BLOB to print settings** コマンドは、コマンドに比べてより #### 参照 -[Print settings to BLOB](print-settings-to-blob.md) \ No newline at end of file +[Print settings to BLOB](print-settings-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1434 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md index 36985f1a777bb8..1771c694701a90 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md @@ -60,4 +60,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 553 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md index d2fcc4d95788cd..30f01ae6cd6ed8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md @@ -20,9 +20,7 @@ displayed_sidebar: docs #### 説明 -BLOB to text コマンドはBLOB *blob*からテキストを読みだして、返します。 - -*textFormat* 引数は、読み込むテキスト値の内部フォーマットと文字セットを指定します。4Dバージョン11以降で作成されたデータベースでは、4Dはテキストの処理にデフォルトでUnicode (UTF-8) を使用します。互換性を保つため、このコマンドに、以前のバージョンの4Dで使用されていたMac Roman文字セットへの変換を強制することもできます。文字セットは*textFormat* 引数で指定します。これを行うには、*BLOB* テーマの以下の定数のうちいずれかを*textFormat* 引数に渡します: +BLOB to text コマンドはBLOB *blob*からテキストを読みだして、返します。引数は、読み込むテキスト値の内部フォーマットと文字セットを指定します。4Dバージョン11以降で作成されたデータベースでは、4Dはテキストの処理にデフォルトでUnicode (UTF-8) を使用します。互換性を保つため、このコマンドに、以前のバージョンの4Dで使用されていたMac Roman文字セットへの変換を強制することもできます。文字セットは*textFormat* 引数で指定します。これを行うには、*BLOB* テーマの以下の定数のうちいずれかを*textFormat* 引数に渡します: | 定数 | 型 | 値 | | ------------------------ | ---- | - | @@ -60,4 +58,13 @@ displayed_sidebar: docs [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 555 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md index 39d9bdd49fd19f..5d0a37355d5ea1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 BLOB TO USERS コマンドは、データベース内で管理者によって作成されたユーザーアカウントとグループを *users* BLOBに格納されたアカウントとグループで上書きします。 *users* BLOBは暗号化されており、[USERS TO BLOB](users-to-blob.md) コマンドを使用して作成されていなければなりません。 @@ -48,4 +45,14 @@ displayed_sidebar: docs #### 参照 -[USERS TO BLOB](users-to-blob.md) \ No newline at end of file +[USERS TO BLOB](users-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 850 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md index f5ca0997fa3ce8..d795134ac9200b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md @@ -43,4 +43,14 @@ BLOB TO VARIABLEと[VARIABLE TO BLOB](variable-to-blob.md)は4Dの内部フォ #### 参照 -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 533 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bool.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bool.md index bda2960a2c1e00..a602ce22ca5065 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bool.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bool.md @@ -46,4 +46,13 @@ displayed_sidebar: docs [Date](date.md) [Num](num.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1537 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md index 47fe96e8ac48b0..af641bb76b6806 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md @@ -31,4 +31,13 @@ displayed_sidebar: docs #### 参照 -[CREATE SET FROM ARRAY](create-set-from-array.md) \ No newline at end of file +[CREATE SET FROM ARRAY](create-set-from-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 646 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md index dff64fcadadaed..2680a02791671d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **BREAK LEVEL**は、[PRINT SELECTION](print-selection.md)コマンドを使ってプリントするレポートのブレークの数を指定します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs [ACCUMULATE](accumulate.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 302 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md index 68e98ca6cdbd48..7aeca83acff7b6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 BRING TO FRONTは*process*に属するすべてのウィンドウを最前面に配置します。このプロセスが既に最前のプロセスの場合は、このコマンドは何も行いません。プロセスが非表示の場合に、[SHOW PROCESS](show-process.md "SHOW PROCESS")コマンドでプロセスを表示しないとBRING TO FRONTコマンドは効果がありません。 @@ -38,4 +35,13 @@ displayed_sidebar: docs [HIDE PROCESS](hide-process.md) [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 326 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md index 8ec80250c66a73..c5670e9405914d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 BUILD APPLICATION コマンドはアプリケーションの生成処理を開始します。処理に使用されるのは、カレントのアプリケーションビルド設定ファイル、または*buildAppSettings* 引数で渡した設定ファイルのパラメーターです。 @@ -53,4 +50,15 @@ displayed_sidebar: docs #### 参照 -[Compile project](../commands/compile-project.md) \ No newline at end of file +[Compile project](../commands/compile-project.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 871 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、Document、error | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md index cc6e453569725e..3dd37d9497ed76 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md @@ -52,4 +52,13 @@ displayed_sidebar: docs #### 参照 -[MEMORY STATISTICS](memory-statistics.md) \ No newline at end of file +[MEMORY STATISTICS](memory-statistics.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1402 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md index a3ee77061723af..f6bfe5e6750df7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md @@ -48,3 +48,13 @@ displayed_sidebar: docs ```json [   {    "type":"formObjectMethod",    "name":"detailForm.Button",    "line":1,    "database":"myDatabase"   },   {    "type":"formMethod",    "name”:"detailForm",    "line":2,    "database":"myDatabase"   },   {    "type":"projectMethod",    "name”:"showDetailForm",    "line":2,    "database":"myDatabase”   }] ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1662 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md index 6d99a3d67a82a0..f42b1526b023dd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md @@ -100,4 +100,13 @@ displayed_sidebar: docs [CALL WORKER](call-worker.md) -[DIALOG](../commands/dialog.md) \ No newline at end of file +[DIALOG](../commands/dialog.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1391 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md index ee6bbc0254942e..24c666dfe230bc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CALL SUBFORM CONTAINER** コマンドを使用してサブフォームインスタンスからそれを含むサブフォームコンテナにイベントを送信できます。そしてサブフォームコンテナは親フォームのコンテキストでイベントを処理できます。 @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 [Form event code](../commands/form-event-code.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1086 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md index b95effe474b415..2cfdc4c033b58c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**CALL WORKER** コマンドは、*process* に受け渡した名称または ID のワーカープロセスを作成、または呼び出して、任意の *param* パラメーターを使って *formula* 引数で指定されたコードの実行をそのコンテキスト内において要求します。 - -**CALL WORKER** コマンドは *params* をカプセル化し、メッセージの形でワーカーが持つメッセージボックスに受け渡します。ワーカープロセスについての詳細は*ワーカーについて* を参照ください。 +**CALL WORKER** コマンドは、*process* に受け渡した名称または ID のワーカープロセスを作成、または呼び出して、任意の *param* パラメーターを使って *formula* 引数で指定されたコードの実行をそのコンテキスト内において要求します。コマンドは *params* をカプセル化し、メッセージの形でワーカーが持つメッセージボックスに受け渡します。ワーカープロセスについての詳細は*ワーカーについて* を参照ください。 *process* パラメーターに指定するプロセス名またはプロセス番号により、ワーカーは特定されます: @@ -72,7 +70,16 @@ displayed_sidebar: docs #### 参照 -[CALL FORM](../commands/call-form.md) +[CALL FORM](call-form.md) [Current process name](current-process-name.md) [KILL WORKER](kill-worker.md) -*ワーカーについて* \ No newline at end of file +*ワーカーについて* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1389 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md index 1c972785e8af23..37c556d147872b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [START TRANSACTION](start-transaction.md) [Transaction level](transaction-level.md) [VALIDATE TRANSACTION](validate-transaction.md) -*トランザクションを使用する* \ No newline at end of file +*トランザクションを使用する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 241 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md index d7fdbe43eb5c39..0bf8a879be71e5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CANCEL** コマンドは以下の目的で、フォームあるいはオブジェクトメソッド (またはそこから呼ばれるサブルーチンで) 使用されます: @@ -52,4 +49,14 @@ CANCELコマンドが実行される (フォームや印刷がキャンセルさ [ACCEPT](accept.md) [PAGE BREAK](page-break.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 270 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md index c90232fffaee8d..9b0479025f1b93 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md @@ -28,4 +28,13 @@ displayed_sidebar: docs [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 547 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md index 86badb1dd0a266..a7bf7f5482307d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CHANGE CURRENT USER** コマンドを使用すると、データベースを終了させずに、カレントユーザーを変更できます。ユーザーはデータベース接続ダイアログボックス (引数なしでコマンドが呼び出された場合) を使用して、またはコマンドから直接、ログインユーザーを変更することが可能です。ユーザーがログインを変更すると、選択されたユーザーが保有する権限を優先す るため、以前のアクセス権はすべて放棄されます。 @@ -66,4 +63,13 @@ displayed_sidebar: docs #### 参照 [CHANGE PASSWORD](change-password.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 289 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md index 1f0a0706acafa1..7d4adc908c6abb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 CHANGE LICENSES コマンドは、4Dライセンス管理ダイアログボックスを表示します。 @@ -41,4 +38,14 @@ CHANGE LICENSES は、顧客に配付されたコンパイル済みのシング #### 参照 [License info](license-info.md) -[Is license available](is-license-available.md) \ No newline at end of file +[Is license available](is-license-available.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 637 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md index 4a36dd4cb3ffac..4f60f1df0d5130 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 CHANGE PASSWORD コマンドを使用して、カレントユーザのパスワードを変更できます。このコマンドは現在のパスワードを、引数 *password* に渡した新しいパスワードに置き換えます。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 [CHANGE CURRENT USER](change-current-user.md) -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 186 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md index 4699d0d4a74d1a..ce782770b5385d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md @@ -37,4 +37,13 @@ Change stringの使用例を次に示します。結果を変数*vtResult*に代 [Delete string](delete-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 234 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/char.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/char.md index 1afe346736797b..eb215c24b5ae4f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/char.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/char.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Char** コマンド は文字コードが*charCode*である文字を返します。 - -*charCode* にはUTF-16値(1から65535の間) を渡します。 +**Char** コマンド は文字コードが*charCode*である文字を返します。にはUTF-16値(1から65535の間) を渡します。 **Tip:** メソッド作成時、 **Char** は通常キーボードから入力できない文字や、メソッドエディタでは編集コマンドとして解釈される文字を指定するために使用します。 @@ -34,4 +32,13 @@ displayed_sidebar: docs [Character code](character-code.md) *Unicodeコード* -*文字参照記号* \ No newline at end of file +*文字参照記号* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 90 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md index 7e0ba9534b0b48..f227278ca11e3b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md @@ -82,4 +82,13 @@ characterが1文字より多い場合、 **Character code** は最初の文字 #### 参照 [Char](char.md) -*文字参照記号* \ No newline at end of file +*文字参照記号* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 91 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md index 3960d3b006d1b7..4caf0c7bb16161 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CHECK LOG FILE** コマンドは、データベースのカレントログファイルの内容をブラウズできるダイアログを表示します。このダイアログにはMaintenance & Security Centerからもアクセスできます: @@ -36,4 +33,14 @@ displayed_sidebar: docs #### 参照 [RESTORE](restore.md) -*バックアップマネージャエラー (1401 -> 1421)* \ No newline at end of file +*バックアップマネージャエラー (1401 -> 1421)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 799 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/choose.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/choose.md index 27436219e5a3b0..ed761643225e91 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/choose.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/choose.md @@ -78,3 +78,13 @@ displayed_sidebar: docs        vStatus:="Divorced"  End case ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 955 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md index 6d9dde87b6b965..5d3adb537e8566 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 CLEAR LIST コマンドは、*list*に渡したリスト参照番号を持つ階層リストを廃棄します。 @@ -54,4 +51,13 @@ displayed_sidebar: docs [BLOB to list](blob-to-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 377 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md index 6c63e2078f54c2..7c6f90c5a511c0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md @@ -23,4 +23,13 @@ displayed_sidebar: docs [COPY NAMED SELECTION](copy-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 333 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md index 67d70c98c868c3..8b2ac11d82476e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 CLEAR PASTEBOARD コマンドは、クリップボードの内容をすべて消去します。クリップボードに同じデータの複数のインスタンスが含まれる場合には、すべてのインスタンスが消去されます。CLEAR PASTEBOARDコマンドを呼び出した後、クリップボードは空になります。 @@ -41,4 +38,13 @@ CLEAR PASTEBOARDを1回呼び出してから、[APPEND DATA TO PASTEBOARD](appen #### 参照 -[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) \ No newline at end of file +[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 402 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md index 27f754c0b4b97f..84a70e3cd0888e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md @@ -27,4 +27,13 @@ displayed_sidebar: docs [Semaphore](semaphore.md) [Test semaphore](test-semaphore.md) -*セマフォーとシグナル* \ No newline at end of file +*セマフォーとシグナル* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 144 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md index a85d2cc2488384..15f2b776ee8b3e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md @@ -25,4 +25,13 @@ displayed_sidebar: docs [CREATE EMPTY SET](create-empty-set.md) [CREATE SET](create-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 117 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md index 37e536e19ff22f..186994d9ec962b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 89 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md index 48f2b16c9464fc..894bca73d6eb52 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Clickcount** コマンドは、マウスクリックイベントのコンテキストにおいて、ユーザー同じマウスボタンを素早く連続でクリックした回数を返します。通常、このコマンドはダブルクリックを意味する2を返します。 @@ -61,3 +58,13 @@ On Clicked と On Double Clicked フォームイベントが両方とも有効     End case  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1332 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md index 5b487206e94398..56fb5c5097d0ec 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md @@ -36,4 +36,13 @@ displayed_sidebar: docs [Append document](append-document.md) [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 267 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md index c597057cf90068..be5860308bf9e7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CLOSE PRINTING JOB** コマンドは、[OPEN PRINTING JOB](open-printing-job.md) コマンドで開かれたプリントジョブを閉じ、組み立てたプリントドキュメントをカレントプリンタに送信するために使用できます。 @@ -23,4 +20,13 @@ displayed_sidebar: docs #### 参照 -[OPEN PRINTING JOB](open-printing-job.md) \ No newline at end of file +[OPEN PRINTING JOB](open-printing-job.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 996 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md index 150a67c020cab5..06500d89906dfb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CLOSE RESOURCE FILE**コマンドは、引数*resFile*に渡された参照番号を持つリソースファイルを閉じます。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[Open resource file](open-resource-file.md) \ No newline at end of file +[Open resource file](open-resource-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 498 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md index 3132b33993832b..ed33af87b9844f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 CLOSE WINDOW はカレントプロセスで[Open window](open-window.md "Open window") や [Open form window](open-form-window.md "Open form window") コマンドで開かれたアクティブウィンドウを閉じます。カスタムウィンドウが開かれていない場合、CLOSE WINDOWは効果を持ちません (システムウィンドウは閉じられません)。CLOSE WINDOW はウィンドウ中でフォームがアクティブであるときに呼び出されても効力を持ちません。CLOSE WINDOWは[Open window](open-window.md "Open window") や [Open form window](open-form-window.md "Open form window") で開いたウィンドウの利用が終了したときに呼び出します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 [Open form window](open-form-window.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 154 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md index e16e6f34d55e0e..43f293243722ac 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md @@ -64,4 +64,13 @@ displayed_sidebar: docs #### 参照 [ARRAY TO COLLECTION](array-to-collection.md) -*コレクションと4D配列間での型の変換* \ No newline at end of file +*コレクションと4D配列間での型の変換* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1562 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md index 02ba05166c0102..fe301ab78c3c0e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md @@ -50,4 +50,13 @@ displayed_sidebar: docs #### 参照 -[TRANSFORM PICTURE](transform-picture.md) \ No newline at end of file +[TRANSFORM PICTURE](transform-picture.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 987 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md index 3656c2202454ed..4d9fccd2eeb20b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**Command name** コマンドは、引数*command*に渡したコマンド番号のコマンド名に加え、コマンドのプロパティ(任意)を返します。 - -**注:** コマンド毎の番号はエクスプローラー内と、ドキュメントのプロパティエリア内に書かれています。 +**Command name** コマンドは、引数*command*に渡したコマンド番号のコマンド名に加え、コマンドのプロパティ(任意)を返します。コマンド毎の番号はエクスプローラー内と、ドキュメントのプロパティエリア内に書かれています。 **互換性に関する注意:** 以前はコマンド名が 4Dのバージョンによって異なったり (コマンドの改名)、アプリケーション言語によって異なる場合もあったため、特にトークナイズドされていない部分のコードについて、コマンドを番号を用いて指定することが有用な場合もありました。この目的に応じた **Command name** コマンドの有用性は、4Dが時間をかけて進化する中で少しずつ縮小されてきました。トークナイズドされていない宣言 (式) に対して、4Dは現在トークンシンタックスを提供しています。これはコマンド名の変化やテーブル等といった他の要素に起因する潜在的な問題を避けられる一方、 これらの名前を読みやすい方法でタイプすることができる方法です (この点についての詳細は、*フォーミュラ内でのトークンの使用* の章を参照ください)。それに加え、4D v15以降ではデフォルトで英語がランゲージとして使用されます。しかしながら、データベース設定の [Is a list](is-a-list.md) の "リージョンシステム設定を使用" オプションを使用することによって、フランス語版の4Dにおいては引き続きフランス語をランゲージとして使用できます。 @@ -102,4 +100,14 @@ displayed_sidebar: docs #### 参照 [EXECUTE FORMULA](execute-formula.md) -*プリエンプティブ4Dプロセス* \ No newline at end of file +*プリエンプティブ4Dプロセス* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 538 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md index f3825dbbfe72f7..4bdab4467aa993 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md @@ -67,4 +67,14 @@ Timestamp log file nameオプションを渡していた場合、ログファイ #### 参照 [Table fragmentation](table-fragmentation.md) -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 937 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md index 0db703ec689b7a..ef894517b543e7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**Compare strings** コマンドは、*aString* 引数の文字列が*bString* 引数の文字列比較して低い/等しい/高いと評価されるかによって負の値/ゼロ/正の値を返します。 - -*aString* 引数にはtext 型の値を渡します。 +**Compare strings** コマンドは、*aString* 引数の文字列が*bString* 引数の文字列比較して低い/等しい/高いと評価されるかによって負の値/ゼロ/正の値を返します。引数にはtext 型の値を渡します。 *bString* 引数には、*aString* 引数と比較するtext 型の値を渡します。 @@ -105,4 +103,13 @@ displayed_sidebar: docs #### 参照 -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1756 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md index 9bf048dd752775..a454cb8be7255c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[PLUGIN LIST](plugin-list.md) \ No newline at end of file +[PLUGIN LIST](plugin-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1001 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md index 1bd6cc58b8f4c8..e5fbf1e8ba01cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md @@ -90,4 +90,14 @@ BLOBが正しく圧縮されると、システム変数OKは1に設定されま #### 参照 [BLOB PROPERTIES](blob-properties.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 534 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md index 2f506b9f27b2b3..4939d5cd3c6cd5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -CONFIRM コマンドは、注意アイコンとメッセージ、OKボタン、キャンセルボタンで構成される確認ダイアログボックスを表示します。 - -*message* 引数には表示するメッセージを渡します。 +CONFIRM コマンドは、注意アイコンとメッセージ、OKボタン、キャンセルボタンで構成される確認ダイアログボックスを表示します。引数には表示するメッセージを渡します。 デフォルトでは、OKボタンのタイトルは“OK”で、キャンセルボタンのタイトルは"キャンセル"です。これらのボタンタイトルを変更するには、オプションの*okButtonTitle* や*cancelButtonTitle* 引数に新しいカスタムボタンタイトルを指定します。必要であれば、渡したカスタムタイトルの幅に応じて、ボタンの幅を左方向にリサイズします。 @@ -91,4 +89,14 @@ Windowsにおいて以下のような確認ダイアログボックスを表示 #### 参照 [ALERT](alert.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 162 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md index 960942fa094ace..d2673d13cb7ada 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Contextual click コマンドは、コンテキストクリックが行われた場合に[True](true.md "True")を返します。 @@ -42,4 +39,13 @@ displayed_sidebar: docs #### 参照 [Form event code](../commands/form-event-code.md) -[Right click](right-click.md) \ No newline at end of file +[Right click](right-click.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 713 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md index 53bd41310b6e0b..0a3d9310b4484a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CONVERT COORDINATES**コマンドは、ある点の(x;y)座標を一つの座標系から別の座標系へと変換します。サポートされる入力・出力座標系はフォーム(およびサブフォーム)、ウィンド、そしてスクリーンです。例えば、このコマンドを使用して、メインフォーム内にある、サブフォームに属しているオブジェクトの座標を取得する事ができます。これにより、どんなカスタムオプションに対してもコンテキストメニューを作成する事が容易になります。 @@ -86,4 +83,13 @@ displayed_sidebar: docs [GET WINDOW RECT](get-window-rect.md) [OBJECT GET COORDINATES](object-get-coordinates.md) [OBJECT SET COORDINATES](object-set-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1365 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md index c4c2d6c34356b0..10c32b8d2a3d3b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -CONVERT FROM TEXTコマンドは、現在の4Dの文字セットで記述されているテキストを、他の文字セットで記述されているテキストへ変換するために使用できます。 - -*4Dtext* 引数には変換するテキストを渡します。このテキストは、4Dが使用する文字セットで記述されています。4Dのバージョン11では、デフォルトでUnicode 文字セットが使用されています。 +CONVERT FROM TEXTコマンドは、現在の4Dの文字セットで記述されているテキストを、他の文字セットで記述されているテキストへ変換するために使用できます。引数には変換するテキストを渡します。このテキストは、4Dが使用する文字セットで記述されています。4Dのバージョン11では、デフォルトでUnicode 文字セットが使用されています。 *charSet* には変換に使用する文字セットを渡します。セットの標準名 (例えば、"ISO-8859-1" や "UTF-8" ) 、またはMIBEnum識別子を渡すことができます。 @@ -191,4 +189,14 @@ CONVERT FROM TEXTと[Convert to text](convert-to-text.md "Convert to text")コ #### 参照 -[Convert to text](convert-to-text.md) \ No newline at end of file +[Convert to text](convert-to-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1011 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md index eeb5fe2977fc8a..67a57ec95698db 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md @@ -53,4 +53,13 @@ Windowsでの例題: [Convert path system to POSIX](convert-path-system-to-posix.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1107 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md index 0a387587d47d8a..1ec1cc25bcdaed 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md @@ -60,4 +60,13 @@ Windowsでの例題 [Convert path POSIX to system](convert-path-posix-to-system.md) [Object to path](object-to-path.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1106 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md index d9a6baeb698a8c..71830ff2ef0591 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -CONVERT PICTURE コマンドは*picture*を新しいタイプに変換します。 - -*codec* 引数で生成するピクチャのタイプを指定します。Codecには拡張子 (例 “.gif”), またはMimeタイプ(例 “image/jpeg”)が使用できます。利用可能なCodecのリストは [PICTURE CODEC LIST](picture-codec-list.md) コマンドを使用して取得できます。 +CONVERT PICTURE コマンドは*picture*を新しいタイプに変換します。引数で生成するピクチャのタイプを指定します。Codecには拡張子 (例 “.gif”), またはMimeタイプ(例 “image/jpeg”)が使用できます。利用可能なCodecのリストは [PICTURE CODEC LIST](picture-codec-list.md) コマンドを使用して取得できます。 *picture* フィールドや変数が複合型 (例えばコピー/ペーストアクションの結果のピクチャ) の場合、codecタイプに対応する情報のみが結果ピクチャに保持されます。 @@ -48,4 +46,13 @@ vpPhoto ピクチャをjpegフォーマットに変換: #### 参照 -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1002 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md index 9355b870c555c1..d537d64471c2bf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md @@ -29,4 +29,14 @@ Convert to textはByte Order Marks (BOM) をサポートします。指定され #### 参照 -[CONVERT FROM TEXT](convert-from-text.md) \ No newline at end of file +[CONVERT FROM TEXT](convert-from-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1012 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md index a6840633d7124b..8999f0cd275c2e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -COPY ARRAY コマンドは*destination* 配列を、*source* 配列と同じ内容、サイズ、およびタイプで作成または上書きします。 - -**注:** 異なるタイプの数値型配列の場合、*destination* 配列の型が採用されます。 +COPY ARRAY コマンドは*destination* 配列を、*source* 配列と同じ内容、サイズ、およびタイプで作成または上書きします。異なるタイプの数値型配列の場合、*destination* 配列の型が採用されます。 *source*と*destination*の配列はローカル、プロセス、インタープロセス配列の組み合わせが可能です。変数のスコープが違っていても、配列を複製するのに問題はありません。 @@ -36,3 +34,13 @@ displayed_sidebar: docs  SELECTION TO ARRAY([People]Company;C) // companyフィールドのデータをCにコピー  COPY ARRAY(C;D) // C配列をD配列にコピー ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 226 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md index 13293a94b053e7..e41e12568dc392 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 [DELETE FROM BLOB](delete-from-blob.md) -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 558 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md index 3815724da8427d..6db66d06f9f212 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md @@ -19,8 +19,6 @@ displayed_sidebar: docs #### 説明 **COPY DOCUMENT**コマンドを使用して、*sourceName*によって指定されたファイルやフォルダーを*destinationName*によって指定された場所にコピーします。 - -* **ファイルのコピー** この場合*sourceName*引数には以下のどちらかを渡す事ができます。 * ボリュームのルートから始まる完全なファイルパス名 * データベースフォルダーから相対的なパス名 @@ -121,4 +119,14 @@ displayed_sidebar: docs #### 参照 [MOVE DOCUMENT](move-document.md) -*システムドキュメント* \ No newline at end of file +*システムドキュメント* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 541 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md index 63022c5bc72f4c..903e6f413e9fda 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Copy list コマンドは*list*に渡されたリスト参照番号を持つリストの複製を作成し、新しいリストのリスト参照番号を返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs [CLEAR LIST](clear-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 626 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md index fdd7ba3df59792..7d8fa05ed21aeb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md @@ -49,4 +49,13 @@ displayed_sidebar: docs [CLEAR NAMED SELECTION](clear-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 331 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md index 2f0c495bc52b03..9c6a82a37f11df 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md @@ -79,4 +79,13 @@ displayed_sidebar: docs #### 参照 -[Count parameters](count-parameters.md) \ No newline at end of file +[Count parameters](count-parameters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1790 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md index 44377336023ef3..fbccf8da78bdd6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md @@ -38,4 +38,13 @@ displayed_sidebar: docs #### 参照 -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 600 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cos.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cos.md index 096dfb39c5feaf..dd72fc40517d0a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cos.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cos.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 18 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md index 71d69a62dc8da3..bdb33a11e17a5c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md @@ -56,4 +56,13 @@ displayed_sidebar: docs #### 参照 [Find in array](find-in-array.md) -[Find in sorted array](find-in-sorted-array.md) \ No newline at end of file +[Find in sorted array](find-in-sorted-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 907 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md index 2fe3222634ffb0..0c9a249e9bbe68 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Count list items** コマンドは、*list*に渡した参照番号またはオブジェクト名のリスト上で現在表示中または項目総数を返します。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 [List item position](list-item-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 380 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md index 6eef946e43844d..5e5b6d9129c688 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Count menu items コマンドは、*menu*引数に渡されたメニュー番号または参照を持つメニュー内にあるメニュー項目の数を返します。 @@ -28,4 +25,14 @@ displayed_sidebar: docs #### 参照 -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 405 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md index 4ecdf9fb6f302d..a60dc1f2ae3cb2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Count menus コマンドは、メニューバー上にあるメニューの数を返します。 @@ -25,4 +22,14 @@ displayed_sidebar: docs #### 参照 -[Count menu items](count-menu-items.md) \ No newline at end of file +[Count menu items](count-menu-items.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 404 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md index c726ee2d7d8c95..69c0de4849d041 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Count parameters コマンドは、プロジェクトメソッドに渡された引数の数を返します。 - -**警告:** Count parametersは、他のメソッド(プロジェクトメソッド、その他)から呼び出されるプロジェクトメソッド内でのみ意味を持ちます。Count parametersを呼び出すプロジェクトメソッドがメニューに割り当てられている場合、Count parametersは0を返します。 +Count parameters コマンドは、プロジェクトメソッドに渡された引数の数を返します。Count parametersは、他のメソッド(プロジェクトメソッド、その他)から呼び出されるプロジェクトメソッド内でのみ意味を持ちます。Count parametersを呼び出すプロジェクトメソッドがメニューに割り当てられている場合、Count parametersは0を返します。 #### 例題 1 @@ -94,4 +92,13 @@ MyMethod内でCount parametersを使用し、実際の引数の数を取得し #### 参照 [Copy parameters](copy-parameters.md) -*コンパイラコマンド* \ No newline at end of file +*コンパイラコマンド* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 259 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md index 3df2c46ee5047e..245272308ac3ae 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Count screensコマンドは、マシンに接続されている画面モニターの数を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs [SCREEN COORDINATES](screen-coordinates.md) [SCREEN DEPTH](screen-depth.md) [Screen height](screen-height.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 437 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md index d5cfd7f1ed6ae7..55296b07eee459 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md @@ -28,4 +28,13 @@ displayed_sidebar: docs [Count user processes](count-user-processes.md) [Count users](count-users.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 335 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md index a5a021dd56634f..14d91ebac90498 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md @@ -23,4 +23,13 @@ Count user processesは、ユーザが直接あるいは間接に開いたプロ #### 参照 [Count tasks](count-tasks.md) -[Count users](count-users.md) \ No newline at end of file +[Count users](count-users.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 343 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md index faae8a0fd9bc86..97b753eef306b1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md @@ -22,4 +22,13 @@ displayed_sidebar: docs #### 参照 [Count tasks](count-tasks.md) -[Count user processes](count-user-processes.md) \ No newline at end of file +[Count user processes](count-user-processes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 342 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md index 0d7d51ab0c2c3e..d3e848708d783a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md @@ -66,4 +66,14 @@ displayed_sidebar: docs #### 参照 -[RESOLVE ALIAS](resolve-alias.md) \ No newline at end of file +[RESOLVE ALIAS](resolve-alias.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 694 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md index f00181650da623..49af4ae2db2596 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[OPEN DATA FILE](open-data-file.md) \ No newline at end of file +[OPEN DATA FILE](open-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 313 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md index f8ba54fee1be2b..94a1117858edcc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Create deployment license** コマンドは、*mergedApp* 引数で指定したビルドされたアプリのライセンスフォルダ内に、埋め込みライセンスファイルを作成します。 *mergedApp* 引数で指定した組み込みアプリ内にライセンスフォルダが存在しない場合、フォルダはコマンドによって作成されます。 @@ -58,4 +55,13 @@ displayed_sidebar: docs #### 参照 - \ No newline at end of file + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1811 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md index b3ced3fd16ba89..f5255f16fb926b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**Create document**コマンドは新しいドキュメントを作成し、ドキュメント参照番号を返します。 - -*document*には新しいドキュメントの名前、または完全なパス名を渡します。*document*が既にディスクに存在する場合、それは上書きされます。しかし*document* がロックされていたり既に開いている場合は、エラーが生成されます。 +**Create document**コマンドは新しいドキュメントを作成し、ドキュメント参照番号を返します。がロックされていたり既に開いている場合は、エラーが生成されます。 *document*に空の文字列を渡すと、別名で保存ダイアログボックスが表示され、作成したいドキュメントの名前を入力できます。ダイアログをキャンセルした場合ドキュメントは作成されません。**Create document**はヌルDocRefを返し、OK変数に0を代入します。 @@ -70,4 +68,14 @@ Windowsでは、Windowsのファイル拡張子を渡すか、*\_o\_MAP FILE TYP #### 参照 [Append document](append-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 266 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md index ba33754c227f8d..83b8c47834369a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md @@ -27,4 +27,13 @@ displayed_sidebar: docs #### 参照 [CLEAR SET](clear-set.md) -[CREATE SET](create-set.md) \ No newline at end of file +[CREATE SET](create-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 140 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md index 296832d2d3f36d..6f765069799942 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md @@ -70,4 +70,14 @@ displayed_sidebar: docs #### 参照 [FOLDER LIST](folder-list.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 475 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md index 95a80f268d12c1..7153caca4fa50a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md @@ -86,4 +86,13 @@ displayed_sidebar: docs [DELETE INDEX](delete-index.md) [RESUME INDEXES](resume-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 966 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md index 23ecc1f661ffd4..88327400f0b99e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Create menu コマンドはメモリに新しいメニューを作成するために使用します。このメニューはメモリ上にのみ存在し、デザインモードの メニューバーには追加されません。セッション中にこのメニューに対して行われた更新は、データベースのすべてのプロセスの、このメニューすべてのインスタ ンスに即座に反映されます。 @@ -42,4 +39,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 408 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md index 254ff8c38b2993..84e3fe0fe7afb4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md @@ -45,4 +45,14 @@ displayed_sidebar: docs [ADD RECORD](add-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 68 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md index 96100c44fdacf8..2a26e73aff539e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 65 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md index 92bac2d1c57f7b..216b495ca83daf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md @@ -47,4 +47,15 @@ displayed_sidebar: docs [CREATE SET FROM ARRAY](create-set-from-array.md) [LONGINT ARRAY FROM SELECTION](longint-array-from-selection.md) [SELECTION TO ARRAY](selection-to-array.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 640 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md index c9b67451f785ae..df0dab5826d59d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md @@ -37,4 +37,14 @@ displayed_sidebar: docs #### 参照 [BOOLEAN ARRAY FROM SET](boolean-array-from-set.md) -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 641 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md index 6e3293d2867c99..86acd20156fb2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md @@ -31,4 +31,13 @@ displayed_sidebar: docs #### 参照 [CLEAR SET](clear-set.md) -[CREATE EMPTY SET](create-empty-set.md) \ No newline at end of file +[CREATE EMPTY SET](create-empty-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 116 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md index e81e9fbb54d691..4d1bb78b74f490 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md @@ -53,3 +53,13 @@ displayed_sidebar: docs **注:** Scaled to fit proportional および Scaled to fit prop centeredを使用すると、空いたスペースが白く表示されます。しかし、これらのモードが4Dフォームのピクチャフィールドまたはピクチャ変数に適用されると、この空きスペースは透明になります。 *depth* 引数は無視され、省略されなければなりません。コマンドは常に現在のスクリーン深度 (色数) を使用します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 679 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md index 5859fd02fd616a..07ac12423d1c6a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md @@ -72,3 +72,13 @@ Windows セッションのログインに基づいてクライアントにアク * Active Driectory の情報を 4D のユーザーとグループ名に複製して自動的にマッピング * 戻り値をカスタムの \[user\] テーブルと照合 * LDAP を使ってユーザー情報を取得 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1355 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md index 4f87ffe31a3cc0..5804a470cc840e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Current date コマンドは、システムクロックに保持された日付を現在の日付として返します。 - -**4D Server:** リモートモードの4Dでこの関数を実行する際にアスタリスク (\*) 引数を渡すと、サーバの現在の日付が返されます。 +Current date コマンドは、システムクロックに保持された日付を現在の日付として返します。リモートモードの4Dでこの関数を実行する際にアスタリスク (\*) 引数を渡すと、サーバの現在の日付が返されます。 #### 例題 1 @@ -97,4 +95,13 @@ displayed_sidebar: docs [Day of](day-of.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 33 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md index 5a534a84f9a90d..863f4671eeaf97 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md @@ -29,4 +29,13 @@ displayed_sidebar: docs [DEFAULT TABLE](default-table.md) [Table](table.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 363 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md index ad0a923e9f36cd..e56261abc12f1d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Current form name**コマンドは、プロセスのために定義されたカレントのフォームの名前を返します。カレントフォームはプロジェクトフォームでもテーブルフォームでも可能です。 @@ -59,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1298 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md index 4236e683d05adf..170f1473eeab96 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Current form tableコマンドは、カレントプロセスで表示または印刷されているフォームが属するテーブルのポインタを返します。 @@ -64,4 +61,13 @@ displayed_sidebar: docs [DIALOG](../commands/dialog.md) [FORM SET INPUT](form-set-input.md) [FORM SET OUTPUT](form-set-output.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 627 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md index 4b22f2373bb237..8d37cfb275aaf0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Current form window コマンドはカレントフォームウィンドウの参照を返します。カレントフォームにウィンドウが設定されていない場合、コマンドは0を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs [Open form window](open-form-window.md) [Open window](open-window.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 827 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md index 0896c94c7522e1..34dcce9b579cec 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md @@ -29,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[Current system user](current-system-user.md) \ No newline at end of file +[Current system user](current-system-user.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 483 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md index 4fac1ac0ea5544..bbe24185650c99 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md @@ -37,3 +37,13 @@ displayed_sidebar: docs このコマンドを4Dフォーミュラ内で呼び出すことはできません。 **注:** コンパイルモードでこのコマンドを使用するには、このコマンドを**範囲チェック**が無効化されたコード内に含めてはなりません。(*範囲チェック* 参照) + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 684 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md index 08d7db108fd752..8326077d29a8d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md @@ -15,11 +15,18 @@ displayed_sidebar: docs #### 説明 -**Current method path**コマンドは実行中のデータベースメソッド、トリガー、プロジェクトメソッド、フォームメソッド、またはオブジェクトメソッドの内部的なパス名を返します。 - -**注:** 4Dマクロコマンドのコンテキストでは、**タグが実行中のメソッドのフルパス名で置き換えられます。 +**Current method path**コマンドは実行中のデータベースメソッド、トリガー、プロジェクトメソッド、フォームメソッド、またはオブジェクトメソッドの内部的なパス名を返します。4Dマクロコマンドのコンテキストでは、**タグが実行中のメソッドのフルパス名で置き換えられます。 #### 参照 [METHOD Get path](method-get-path.md) -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1201 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md index 7c87e0a043659b..61824be4dc2781 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md @@ -31,4 +31,13 @@ displayed_sidebar: docs [CALL WORKER](call-worker.md) [KILL WORKER](kill-worker.md) -*ワーカーについて* \ No newline at end of file +*ワーカーについて* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1392 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md index 47c8466ad4b000..77a6c79a44be46 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md @@ -25,4 +25,13 @@ displayed_sidebar: docs [Process number](process-number.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 322 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md index 30f61f36de5825..8a25e1e3ec3ced 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[Current machine](current-machine.md) \ No newline at end of file +[Current machine](current-machine.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 484 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md index c87428bd414c26..fed36b7a11daa5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md @@ -48,4 +48,13 @@ displayed_sidebar: docs [Milliseconds](milliseconds.md) [String](string.md) -[Tickcount](tickcount.md) \ No newline at end of file +[Tickcount](tickcount.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 178 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md index 33426a2f55efd7..22451184737e68 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Current user コマンドは、カレントユーザのエイリアス、またはユーザ名を返します。 - -*user* 引数が省略されていた場合、デフォルトで、セッション中に[SET USER ALIAS](set-user-alias.md) コマンドでユーザーに対してエイリアスが定義されていた場合には、コマンドはユーザーエイリアスを返します。そうでない場合、コマンドは4D ユーザーアカウント名を返します。 +Current user コマンドは、カレントユーザのエイリアス、またはユーザ名を返します。引数が省略されていた場合、デフォルトで、セッション中に[SET USER ALIAS](set-user-alias.md) コマンドでユーザーに対してエイリアスが定義されていた場合には、コマンドはユーザーエイリアスを返します。そうでない場合、コマンドは4D ユーザーアカウント名を返します。 任意の引数には、返される情報を指定する、以下の定数を渡すことができます: @@ -37,4 +35,13 @@ displayed_sidebar: docs [CHANGE CURRENT USER](change-current-user.md) [CHANGE PASSWORD](change-password.md) [SET USER ALIAS](set-user-alias.md) -[User in group](user-in-group.md) \ No newline at end of file +[User in group](user-in-group.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 182 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md index b099ccadf5bcbf..a9cdc7870599a4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md @@ -35,4 +35,14 @@ CUT NAMED SELECTIONは[COPY NAMED SELECTION](copy-named-selection.md "COPY NAMED [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 334 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md index 1f3c2eedbd3766..cf31c6c1166f2b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md @@ -67,4 +67,13 @@ displayed_sidebar: docs #### 参照 -[Encrypt data file](encrypt-data-file.md) \ No newline at end of file +[Encrypt data file](encrypt-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1609 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md index 04e1b58859d18d..1ed2038d40487d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md @@ -31,4 +31,13 @@ Macintosh上 #### 参照 [Application file](application-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 490 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md index d45fa92c9f4443..7bad7a4981b40c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md @@ -328,3 +328,13 @@ displayed_sidebar: docs  OB SET($oParams;"historyLength";2*60)  $measures:=Database measures($oParams) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1314 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/date.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/date.md index d299796e44c3fb..51a1fa87654586 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/date.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Date**コマンドは、*expression* を解釈し、日付を返します。 - -*expression* 引数は、ISO日付フォーマットかシステムレベルで設定される地域設定に従わなければなりません。 +**Date**コマンドは、*expression* を解釈し、日付を返します。引数は、ISO日付フォーマットかシステムレベルで設定される地域設定に従わなければなりません。 **ISO日付フォーマット** この文字列は"YYYY-MM-DDTHH:MM:SS"という書式で構成されます。例えば"2013-11-20T10:20:00"と表現され、地域設定と関わり無く、Dateコマンドは引数として渡された*expression* を正しく評価します。ピリオドのあとの小数以下の秒はサポートされています(例:"2013-11-20T10:20:00.9854") @@ -94,4 +92,13 @@ displayed_sidebar: docs #### 参照 [Bool](bool.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 102 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md index d06b8ded9f117f..08586577dc3e8b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Day number コマンドは、*aDate*に対応するの曜日を数値で返します。 - -**Note:** Day number は日付がヌルの時、*2* を返します。 +Day number コマンドは、*aDate*に対応するの曜日を数値で返します。Day number は日付がヌルの時、*2* を返します。 4Dは "" テーマで以下の定義済み定数を提供します: @@ -60,4 +58,13 @@ displayed_sidebar: docs #### 参照 -[Day of](day-of.md) \ No newline at end of file +[Day of](day-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 114 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md index 662bb7ea1ad144..461b71d0da7664 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Day of コマンドは、*date*から日を返します。 - -**Note:** Day of は1から31までの値を返します。日付から曜日を取得するには、[Day number](day-number.md "Day number")コマンドを使用します。 +Day of コマンドは、*date*から日を返します。Day of は1から31までの値を返します。日付から曜日を取得するには、[Day number](day-number.md "Day number")コマンドを使用します。 #### 例題 1 @@ -37,4 +35,13 @@ displayed_sidebar: docs [Day number](day-number.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 23 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md index 3e94f3f6956817..524ace8282487d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Deactivated**コマンドはプロセスの最前面のウインドウが後ろに移動すると、そのフォームメソッドでTrue を返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [Activated](activated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 347 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dec.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dec.md index 4860478207daff..44a2f9578cd3f8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dec.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dec.md @@ -29,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[Int](int.md) \ No newline at end of file +[Int](int.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 9 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md index 37153b35ab4d7b..9aef0cc82b2f63 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md @@ -33,4 +33,13 @@ DECRYPT BLOBコマンドは、(意図的かどうかに関わらず)BLOB内 #### 参照 [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 690 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md index 37fca392da3666..70d434daca99ff 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md @@ -58,4 +58,13 @@ BLOB を復号化するのには、*keyObject* または *passPhrase* のいづ [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1774 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md index 6bb6cef32b3c77..140c64d9487f1e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md @@ -73,4 +73,13 @@ displayed_sidebar: docs #### 参照 [Current default table](current-default-table.md) -[NO DEFAULT TABLE](no-default-table.md) \ No newline at end of file +[NO DEFAULT TABLE](no-default-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 46 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md index a7b8012b9b8b16..812584259f06a2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md @@ -37,4 +37,13 @@ displayed_sidebar: docs #### 参照 [HIDE PROCESS](hide-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 323 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md index 3d3e79d2611999..cfdd608d9d7676 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md @@ -49,4 +49,14 @@ displayed_sidebar: docs #### 参照 -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 159 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md index e43984277205a6..9dca478051e5dc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -DELETE FOLDER コマンドは*folder* に渡したフルパスまたは名前を持つフォルダーを削除します。 - -*deleteOption* パラメーターを省略した場合のデフォルトでは、安全のため **DELETE FOLDER** は空のフォルダーのみ削除します。空でないフォルダーを削除するには *deleteOption* を使います。*deleteOption* には "*System Documents*" テーマの次の定数を受け渡すことができます: +DELETE FOLDER コマンドは*folder* に渡したフルパスまたは名前を持つフォルダーを削除します。パラメーターを省略した場合のデフォルトでは、安全のため **DELETE FOLDER** は空のフォルダーのみ削除します。空でないフォルダーを削除するには *deleteOption* を使います。*deleteOption* には "*System Documents*" テーマの次の定数を受け渡すことができます: | 定数 | 型 | 値 | コメント | | -------------------- | ---- | - | ------------------ | @@ -41,4 +39,14 @@ displayed_sidebar: docs #### 参照 -[DELETE DOCUMENT](delete-document.md) \ No newline at end of file +[DELETE DOCUMENT](delete-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 693 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md index e6049e161bde6b..26d1e4bc777e2f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 228 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md index abe7144b8c14ba..f10a73c2c84856 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 560 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md index ec022f62f996fc..ca88deac10b79d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DELETE FROM LIST コマンドは、*list*に指定した参照番号またはオブジェクト名を持つリストから、*itemRef*引数で指定した項目を削除します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 [CLEAR LIST](clear-list.md) -[GET LIST ITEM](get-list-item.md) \ No newline at end of file +[GET LIST ITEM](get-list-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 624 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md index 341ba42e31c563..c1fba72fa8c8ef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md @@ -45,4 +45,13 @@ displayed_sidebar: docs [CREATE INDEX](create-index.md) [PAUSE INDEXES](pause-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 967 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md index 2d62b6e1025e1a..b28af36ef64508 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DELETE MENU ITEM コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニューから、*menuItem*引数にメニュー項目番号で指定したメニュー項目を削除します。*menuItem*に-1を渡すと、*menu*に最後に追加された項目を指定します。 @@ -34,4 +31,14 @@ displayed_sidebar: docs #### 参照 [APPEND MENU ITEM](append-menu-item.md) -[INSERT MENU ITEM](insert-menu-item.md) \ No newline at end of file +[INSERT MENU ITEM](insert-menu-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 413 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md index 94ffc10a286f9a..f6bc26068f5870 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md @@ -41,4 +41,14 @@ displayed_sidebar: docs #### 参照 [Locked](locked.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 58 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md index 6fa42d19cf983d..6d3e27a0ffe7a2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md @@ -64,4 +64,14 @@ displayed_sidebar: docs [MODIFY SELECTION](modify-selection.md) [TRUNCATE TABLE](truncate-table.md) *セット* -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 66 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md index 44bc22612f0742..cd1ebd0f5d9f69 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md @@ -43,4 +43,13 @@ Delete stringの使用例を次に示します。結果を変数*vtResult*に代 [Change string](change-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 232 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md index 54e187ec68fde1..0d943d5b45ea58 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DELETE USER コマンドは、引数 *userID* に渡したユニークなユーザID番号を持つユーザを削除します。 この場合、必ず[GET USER LIST](get-user-list.md "GET USER LIST") コマンドによって返された有効なユーザID番号を渡さなければなりません。 @@ -35,4 +32,14 @@ DesignerとAdministratorのみがユーザを削除できます。Administrator [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 615 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md index 76e268a63b415c..247f63e36897b5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md @@ -66,4 +66,13 @@ $vResultPath : #### 参照 [Last query path](last-query-path.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1044 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/difference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/difference.md index 104edcc3746702..b3aeb5c90bbb6e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/difference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/difference.md @@ -54,4 +54,13 @@ displayed_sidebar: docs #### 参照 [INTERSECTION](intersection.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 122 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md index eef03375053b94..a60fcd55f462f0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DISABLE MENU ITEM コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目を選択不可にします。*menuItem*に-1を渡すと、*menu*に最後に追加された項目を指定します。 @@ -32,4 +29,14 @@ displayed_sidebar: docs #### 参照 -[ENABLE MENU ITEM](enable-menu-item.md) \ No newline at end of file +[ENABLE MENU ITEM](enable-menu-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 150 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md index a1cbaf760c51e6..c99de6621e644c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md @@ -48,4 +48,13 @@ displayed_sidebar: docs #### 参照 -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1639 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md index 9b299c877216bc..8150337a4945e6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DISPLAY NOTIFICATION コマンドは ユーザーへの通知メッセージを表示します。 @@ -42,4 +39,13 @@ Windows 環境下では、メッセージウィンドウは何らかの動作が #### 参照 -[ALERT](alert.md) \ No newline at end of file +[ALERT](alert.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 910 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md index 798e550bca46b8..986b225e4be1bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DISPLAY RECORDコマンドは、カレント入力フォームを使って、*aTable*のカレントレコードを表示します。レコードはイベントがウィンドウを更新するまでのみ表示されます。このイベントとは、[ADD RECORD](add-record.md "ADD RECORD")を実行する、または入力フォームへ戻る、メニューバーに戻ることです。DISPLAY RECORDは、カレントレコードが存在しない場合には何も行いません。 @@ -42,4 +39,13 @@ DISPLAY RECORDは、しばしばオリジナルの進捗メッセージを表示 #### 参照 -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 105 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md index 4097bd7d7ffb8a..826c3e565c87f8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DISPLAY SELECTION は、出力フォームを使用して、*aTable*の カレントセレクションを表示します。レコードはデザインモードの一覧に類似のスクロール可能な一覧として表示されます。ユーザがレコー ドをダブルクリックすると、デフォルトでそのレコードはカレント入力フォーム上に表示されます。リストは最前面にあるウインドウに表示されます。 @@ -96,4 +93,14 @@ c. 以下のプロジェクトメソッドをメニューに関連付けます: [Form event code](../commands/form-event-code.md) [MODIFY SELECTION](modify-selection.md) -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 59 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md index 7b2c7b2ae8c947..e75ad0e7058671 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Displayed line number コマンドはOn Display Detailフォームイベントでのみ機能します。このコマンドはレコードリストまたはリストボックスで画面に行が表示される際、処理中の行の番号を返します。Displayed line numberがリストまたはリストボックス表示以外の場面で呼び出されると、0を返します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 [Form event code](../commands/form-event-code.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 897 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md index 58037483dac8f9..58bfb56252f3fb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**DISTINCT ATTRIBUTE PATHS** コマンドは、*objectField* に受け渡したインデックスがついているオブジェクトフィールドが所属するテーブルのカレントセレクションについて、同オブジェクトフィールドから検出される、重複しないパスのリストを返します。 - -*objectField* に受け渡すオブジェクトフィールドはインデックスされている必要があり、そうでない場合にはエラーが返されます。 +**DISTINCT ATTRIBUTE PATHS** コマンドは、*objectField* に受け渡したインデックスがついているオブジェクトフィールドが所属するテーブルのカレントセレクションについて、同オブジェクトフィールドから検出される、重複しないパスのリストを返します。に受け渡すオブジェクトフィールドはインデックスされている必要があり、そうでない場合にはエラーが返されます。 *pathArray* は実行後、セレクション内から検出された重複しないパスの数と同じ要素数を持ちます。ネストされた属性へのパスは標準のドット表記で取得されます (例: "company.address.number")。オブジェクトの属性名は文字の大小を区別することに留意が必要です。このコマンドはカレントセレクションやカレントレコードを変更しません。 @@ -66,4 +64,13 @@ displayed_sidebar: docs #### 参照 -[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) \ No newline at end of file +[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1395 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md index deb06880fec9bd..a5f6fa0f78a19e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md @@ -92,4 +92,13 @@ displayed_sidebar: docs #### 参照 -[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) \ No newline at end of file +[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1397 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md index 66b30bae9d1736..9dddae08cc6855 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md @@ -81,4 +81,13 @@ displayed_sidebar: docs [GET TEXT KEYWORDS](get-text-keywords.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 339 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md index 4d93fc6bcae203..150f803880a565 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**DOCUMENT LIST**コマンド は、*pathname*に渡すパス名にあるドキュメントの名前を要素とするテキスト配列*documents*を生成します。 - -**注:** 引数*pathname* は絶対パス名だけを受け入れます。 +**DOCUMENT LIST**コマンド は、*pathname*に渡すパス名にあるドキュメントの名前を要素とするテキスト配列*documents*を生成します。引数*pathname* は絶対パス名だけを受け入れます。 *options* 引数を省略した場合、デフォルトで *documents* 配列にドキュメント名のみが返されます。*options* 引数に*System Documents*テーマの以下の定数を渡すと、この動作を変更できます: @@ -114,4 +112,14 @@ displayed_sidebar: docs #### 参照 [FOLDER LIST](folder-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 474 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md index a44cdc35f2a237..2f010664602445 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md @@ -49,4 +49,14 @@ displayed_sidebar: docs #### 参照 [BLOB TO DOCUMENT](blob-to-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 525 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md index 04ef460e99e913..068716948ed06e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**Document to text**コマンドは、ディスク上のファイルの中身を、4Dのテキスト変数またはテキストフィールドへと直接取り出すことができます。 - -*fileName* 引数には、読みだしたいファイル名またはパス名を渡します。ファイルはディスク上に存在している必要があり、そうでない場合にはエラーが生成されます。渡せるものは以下の通りです: +**Document to text**コマンドは、ディスク上のファイルの中身を、4Dのテキスト変数またはテキストフィールドへと直接取り出すことができます。引数には、読みだしたいファイル名またはパス名を渡します。ファイルはディスク上に存在している必要があり、そうでない場合にはエラーが生成されます。渡せるものは以下の通りです: * ファイル名のみ。例えば "myFile.txt" など。この場合、ファイルはアプリケーションのストラクチャーファイルの隣にある必要があります。 * アプリケーションのストラクチャファイルからの相対パス。例えばWindowsでは "\\\\docs\\\\myFile.txt" またはmacOS では ":docs:myFile.txt" @@ -76,4 +74,13 @@ id    name    price    vat3    4D Tags    99    19.6 #### 参照 *System Documents* -[TEXT TO DOCUMENT](text-to-document.md) \ No newline at end of file +[TEXT TO DOCUMENT](text-to-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1236 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md index edea886508035f..84d8efc3462334 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md @@ -145,4 +145,13 @@ Result: #### 参照 [DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1080 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md index 5e0b87292175f7..364fe7186e63ac 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -DOM Append XML element コマンドは*targetElementRef* 引数に渡した参照を持つXML要素の子要素を新しいXML要素に追加します。 - -*sourceElementRef* 引数には追加する要素の参照を渡します。この要素はDOMツリー上に既に存在するXML要素の参照として渡さなければなりません。これは*targetElementRef* の子要中最後の既存の要素の後に追加されます。 +DOM Append XML element コマンドは*targetElementRef* 引数に渡した参照を持つXML要素の子要素を新しいXML要素に追加します。引数には追加する要素の参照を渡します。この要素はDOMツリー上に既に存在するXML要素の参照として渡さなければなりません。これは*targetElementRef* の子要中最後の既存の要素の後に追加されます。 #### 例題 @@ -27,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[DOM Insert XML element](dom-insert-xml-element.md) \ No newline at end of file +[DOM Insert XML element](dom-insert-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1082 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md index abd766ef772a73..e2826e1498c8cd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md @@ -26,4 +26,14 @@ displayed_sidebar: docs #### 参照 [DOM Parse XML source](dom-parse-xml-source.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 722 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md index 08e3b90fbf92fd..bff74a48d54545 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md @@ -51,4 +51,14 @@ displayed_sidebar: docs #### 参照 -[DOM Count XML elements](dom-count-xml-elements.md) \ No newline at end of file +[DOM Count XML elements](dom-count-xml-elements.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 727 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md index 73cb4688df8f30..ed31722b13cea2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -DOM Count XML elements コマンドは*elementRef* で参照されるXML要素中、要素名が*elementName*である子要素の数を返します。 - -**注:** デフォルトでは、**DOM Count XML elements** は*elementName* 引数については大文字と小文字を区別します(xml準拠のため)。コマンドの大文字と小文字の区別については、[XML SET OPTIONS](xml-set-options.md) コマンドのXML DOM case sensitivity セレクターを使用することで管理可能です。 +DOM Count XML elements コマンドは*elementRef* で参照されるXML要素中、要素名が*elementName*である子要素の数を返します。デフォルトでは、**DOM Count XML elements** は*elementName* 引数については大文字と小文字を区別します(xml準拠のため)。コマンドの大文字と小文字の区別については、[XML SET OPTIONS](xml-set-options.md) コマンドのXML DOM case sensitivity セレクターを使用することで管理可能です。 #### システム変数およびセット @@ -28,4 +26,14 @@ displayed_sidebar: docs #### 参照 [DOM Get XML element](dom-get-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 726 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md index a5eb0d3f62c82f..f0fd49a96db597 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md @@ -60,4 +60,13 @@ displayed_sidebar: docs #### 参照 -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1097 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md index d9b9bd1d240703..70e8552a02ae0b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md @@ -19,9 +19,7 @@ displayed_sidebar: docs #### 説明 -**DOM Create XML element** コマンドは、*elementRef* で参照されるXML中の*xPath* 引数で指定された位置に新しい要素を作成し、また必要であれば属性を追加します。 - -*elementRef* にはルートの要素参照 (例えば[DOM Create XML Ref](dom-create-xml-ref.md) コマンドで作成された) を渡します。 +**DOM Create XML element** コマンドは、*elementRef* で参照されるXML中の*xPath* 引数で指定された位置に新しい要素を作成し、また必要であれば属性を追加します。にはルートの要素参照 (例えば[DOM Create XML Ref](dom-create-xml-ref.md) コマンドで作成された) を渡します。 *xPath* 引数には、XPath 記法を使用して表現された、作成するパスを渡します(詳細な情報については、*XPath記法のサポート (DOM)*の章を参照してください)。以下のパス式がサポートされます: @@ -159,4 +157,14 @@ $aAttrName1:="Font" [DOM Create XML element arrays](dom-create-xml-element-arrays.md) [DOM Get XML element](dom-get-xml-element.md) -[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) \ No newline at end of file +[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 865 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md index f24e1411015fd9..78161d11cef3ea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md @@ -19,9 +19,7 @@ displayed_sidebar: docs #### 説明 -DOM Create XML Ref コマンドは空のXMLツリーをメモリに作成し、その参照を返します。 - -*root* 引数にはXMLツリーのルート要素名を渡します。 +DOM Create XML Ref コマンドは空のXMLツリーをメモリに作成し、その参照を返します。引数にはXMLツリーのルート要素名を渡します。 オプションの*nameSpace* 引数にはツリーの名前空間値の定義を渡します (例えば“http://www.4d.com”)。 *root*引数に名前空間名とコロン、そしてルート要素名を結合した文字列を渡せることができます (例えば“MyNameSpace:MyRoot”)。この場合、名前空間を指定する*nameSpace*引数は必須となります。 @@ -96,4 +94,14 @@ NSName2="http://www.4D.com/Mkt/namespace"/> #### 参照 [DOM CLOSE XML](dom-close-xml.md) -[DOM SET XML DECLARATION](dom-set-xml-declaration.md) \ No newline at end of file +[DOM SET XML DECLARATION](dom-set-xml-declaration.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 861 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md index 0971016931d79b..ab2062842a557c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -DOM EXPORT TO FILE コマンドは、XMLツリーをディスク上のファイルに格納します。 - -*elementRef* 引数には書き出すXMLのルート要素参照を渡します。 +DOM EXPORT TO FILE コマンドは、XMLツリーをディスク上のファイルに格納します。引数には書き出すXMLのルート要素参照を渡します。 *filePath*には使用する、または作成するファイルのフルパスを渡します。ファイルが存在しない場合は作成されます。 @@ -57,4 +55,14 @@ XMLにおいて、改行はそれがXML要素の内側あるいは間いずれ #### 参照 [DOM EXPORT TO VAR](dom-export-to-var.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 862 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md index 560274f4ad43af..09501ca9479587 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md @@ -50,4 +50,14 @@ XMLにおいて、改行はそれがXML要素の内側あるいは間いずれ #### 参照 [DOM EXPORT TO FILE](dom-export-to-file.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 863 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md index 380a21a0bdbb3d..7d786906fe1bd1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md @@ -27,4 +27,14 @@ displayed_sidebar: docs #### 参照 -[DOM Find XML element](dom-find-xml-element.md) \ No newline at end of file +[DOM Find XML element](dom-find-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1010 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md index 7a593836a7fcf6..c268e18dcacd2d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md @@ -116,4 +116,14 @@ displayed_sidebar: docs #### 参照 [DOM Count XML elements](dom-count-xml-elements.md) -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 864 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md index d9bb8461ec1af5..8f4a28b5d53542 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md @@ -57,4 +57,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 723 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md index 5bac99c418fcda..4fe020e71648ae 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md @@ -42,4 +42,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 925 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md index e6eedbe20e973e..a80eae85f9911e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md @@ -59,4 +59,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 724 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md index 09c648217d61ae..336738979e905c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md @@ -33,4 +33,14 @@ documentノードにこのコマンドを適用すると、コマンドはヌル [DOM Get first child XML element](dom-get-first-child-xml-element.md) [DOM Get last child XML element](dom-get-last-child-xml-element.md) -[DOM Get Root XML element](dom-get-root-xml-element.md) \ No newline at end of file +[DOM Get Root XML element](dom-get-root-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 923 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md index faabfd5ebdde5c..f709ac61511657 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md @@ -33,4 +33,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 924 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md index f3d8268fdb7a0f..beb7ec8f2c26ca 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get parent XML element](dom-get-parent-xml-element.md) \ No newline at end of file +[DOM Get parent XML element](dom-get-parent-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1053 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md index ee23b63099bf50..be7ef469dd2189 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**DOM GET XML ATTRIBUTE BY INDEX** コマンドは、属性のインデックスを使用して、属性名と値を取得するために使用します。 - -*elementRef* にはXML要素参照を、*attribIndex*には名前を知りたい要素のインデックス番号を渡します。名前が*attribName* 引数に、値が*attribValue* 引数に返されます。4Dは取得した値を引数として渡した変数と同じ型に変換します。変数の型が定義されていない場合、値はデフォルトでテキスト型で返されます。 +**DOM GET XML ATTRIBUTE BY INDEX** コマンドは、属性のインデックスを使用して、属性名と値を取得するために使用します。にはXML要素参照を、*attribIndex*には名前を知りたい要素のインデックス番号を渡します。名前が*attribName* 引数に、値が*attribValue* 引数に返されます。4Dは取得した値を引数として渡した変数と同じ型に変換します。変数の型が定義されていない場合、値はデフォルトでテキスト型で返されます。 **Note:** 配列のインデックス番号はXMLファイル中に表示される属性の順番通りではありません。XML中、属性のインデックスはnameのアルファベット順に並びかえられた属性の位置を示します。この点については[DOM Count XML attributes](dom-count-xml-attributes.md) コマンドの説明を参照してください。 @@ -37,4 +35,14 @@ displayed_sidebar: docs #### 参照 [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 729 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md index 7687c11abfd284..c49bb3c01deb3c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -DOM GET XML ATTRIBUTE BY NAME コマンドを使用して、属性名に対応する属性値を取得できます。 - -*elementRef* に要素参照を、*attribName*には属性値を取得したい属性の名前を渡します。値は*attribValue* 引数に返されます。4Dは取得した値を渡した変数と同じ型に変換します。変数の型が定義されていない場合、値はデフォルトでテキスト型で返されます。 +DOM GET XML ATTRIBUTE BY NAME コマンドを使用して、属性名に対応する属性値を取得できます。に要素参照を、*attribName*には属性値を取得したい属性の名前を渡します。値は*attribValue* 引数に返されます。4Dは取得した値を渡した変数と同じ型に変換します。変数の型が定義されていない場合、値はデフォルトでテキスト型で返されます。 *attribName* 属性がXML要素中に存在しない場合、エラーが返されます。複数の同じ名前を持つ属性がXML要素中に存在する場合、最初の属性のみが返されます。 @@ -48,4 +46,14 @@ displayed_sidebar: docs #### 参照 [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 728 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md index 798af3fb744814..7355a2847f4222 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md @@ -61,4 +61,13 @@ $typeArrと$textArr配列には以下の値が含まれます: #### 参照 [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1081 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md index 44b7d7efe6a1c8..2656c147116cfc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md @@ -52,4 +52,13 @@ displayed_sidebar: docs #### 参照 [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) \ No newline at end of file +[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1088 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md index d4bde3d1206895..3eaa68e031db96 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -DOM GET XML ELEMENT NAME コマンドは、*elementRef* で指定したXML要素の名前を*elementName* 引数に返します。*elementName* 引数の型が定義されてない場合、デフォルトでテキスト型が使用されます。 +DOM GET XML ELEMENT NAME コマンドは、*elementRef* で指定したXML要素の名前を*elementName* 引数に返します。引数の型が定義されてない場合、デフォルトでテキスト型が使用されます。 XML要素名に関する詳細は*XML DOMコマンドの概要* の節を参照してください。 @@ -39,4 +39,14 @@ XML要素名に関する詳細は*XML DOMコマンドの概要* の節を参照 [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) \ No newline at end of file +[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 730 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md index cafc4e238c69cf..d66347b94c9b09 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md @@ -42,4 +42,14 @@ displayed_sidebar: docs [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) -[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) \ No newline at end of file +[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 731 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md index 53993f91fe4776..fcd5653230d570 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md @@ -32,4 +32,14 @@ displayed_sidebar: docs #### 参照 [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 725 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md index e5596bcf72a409..3d5592de0f9f44 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[XML GET ERROR](xml-get-error.md) \ No newline at end of file +[XML GET ERROR](xml-get-error.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 721 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md index 3a19e2fb95903a..56a599a5a2cd6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md @@ -73,4 +73,13 @@ displayed_sidebar: docs #### 参照 -[DOM Append XML element](dom-append-xml-element.md) \ No newline at end of file +[DOM Append XML element](dom-append-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1083 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md index 04e02e4b7a55bb..3598ece6b54c6a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md @@ -93,4 +93,14 @@ DTDやXSDが存在しなかったりURLが正しくない場合など検証が #### 参照 [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 719 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md index 2343bba9f80e39..c70ce6bcf29e3f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md @@ -83,4 +83,14 @@ DTDやXSDが存在しなかったり、URLが正しくない場合など検証 #### 参照 [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML source](dom-parse-xml-source.md) \ No newline at end of file +[DOM Parse XML source](dom-parse-xml-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 720 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md index d3ae48ccf2fdbd..6ff3b270c131fc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md @@ -43,4 +43,14 @@ displayed_sidebar: docs [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) -[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) \ No newline at end of file +[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1084 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md index 6d89bcfa82fd3a..3c46fa530bd3ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md @@ -25,4 +25,14 @@ displayed_sidebar: docs #### 参照 [DOM Create XML element](dom-create-xml-element.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 869 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md index f74719a3a6b204..ffff92b130c1a4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md @@ -65,4 +65,14 @@ displayed_sidebar: docs [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 866 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md index 8cf90dd15c95b3..7d60a63702663a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md @@ -36,4 +36,13 @@ displayed_sidebar: docs #### 参照 [DOM Create XML Ref](dom-create-xml-ref.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 859 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md index f68a0bf3f61ac5..4dcefb496c3097 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md @@ -57,4 +57,14 @@ displayed_sidebar: docs #### 参照 -[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) \ No newline at end of file +[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 867 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md index 69a274aa3040d6..f2fef8e07e4ba5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md @@ -115,4 +115,14 @@ XML処理のルールに準拠するため、行末文字シークエンス(CR #### 参照 [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 868 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md index e56f9c1b014cd9..52488832fb7710 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DRAG WINDOW コマンドは、ユーザがマウスのクリックと移動を行うと、ウィンドウをドラッグします。通常このコマンドは (非表示ボタンなど) マウスクリックに瞬時に反応するオブジェクトのオブジェクトメソッドから呼び出します。 @@ -48,4 +45,13 @@ displayed_sidebar: docs #### 参照 [GET WINDOW RECT](get-window-rect.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 452 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md index 84d14ac78b4273..9e265084a92464 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Drop position**コマンドは、 “複合” オブジェクトに対して行われたドロップのドロップ位置を知るために使用します。 @@ -94,4 +91,13 @@ displayed_sidebar: docs #### 参照 -*ドラッグ&ドロップ* \ No newline at end of file +*ドラッグ&ドロップ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 608 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md index b2de9db518ecbe..54315099139090 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**DROP REMOTE USER** コマンドは4D Server にリモートで接続している特定のユーザーの接続を解除します。 - -*userSession* 引数には、サーバーから接続を解除したいユーザーのセッションID を渡します。セッションID は、[Process activity](../commands/process-activity.md) コマンドを使用することで取得できます。 +**DROP REMOTE USER** コマンドは4D Server にリモートで接続している特定のユーザーの接続を解除します。引数には、サーバーから接続を解除したいユーザーのセッションID を渡します。セッションID は、[Process activity](../commands/process-activity.md) コマンドを使用することで取得できます。 **注:** このコマンドは非同期に実行され、また4D Server でしか実行することができません。このコマンドを呼び出しているメソッドがリモートクライアントでローカルに実行されるか、あるいはシングルユーザー版4D で実行された場合、**DROP REMOTE USER** は何もしません。 @@ -40,4 +38,13 @@ displayed_sidebar: docs #### 参照 [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) \ No newline at end of file +[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1633 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md index 96bdaf7d280ce9..0bc71c78f5dea3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md @@ -23,4 +23,14 @@ DUPLICATE RECORDはデータ入力中にも実行可能です。これにより #### 参照 -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 225 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md index 5d26a699dff057..63974fe7c98d62 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Dynamic pop up menu**はマウスの現在位置またはオプションの*xCoord* と *yCoord*引数で指定した位置に階層ポップアップメニューを表示します。 @@ -93,4 +90,13 @@ displayed_sidebar: docs [Get selected menu item parameter](get-selected-menu-item-parameter.md) [Pop up menu](pop-up-menu.md) [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1006 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md index fe3c6576b55b2f..bcef5d19258b88 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 EDIT ACCESS コマンドを使用して、ユーザにパスワードシステムの編集環境を提供します。このコマンドが実行されると、ユーザとユーザグループページのみから成るツールボックスウィンドウが表示されます。 @@ -36,4 +33,14 @@ DesignerとAdministratorは新規ユーザの追加、およびグループへ #### 参照 [CHANGE CURRENT USER](change-current-user.md) -[CHANGE PASSWORD](change-password.md) \ No newline at end of file +[CHANGE PASSWORD](change-password.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 281 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md index de6546fc963574..c22f363fc6102a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **EDIT FORMULA**コマンドを使用してフォーミュラーエディターを開き、ユーザーはフォーミュラーを作成したり変更したりできます。次の項目をデフォルトとして表示することができます。 @@ -55,4 +52,14 @@ displayed_sidebar: docs [APPLY TO SELECTION](apply-to-selection.md) [EXECUTE FORMULA](execute-formula.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 806 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md index 97bb0a4f395631..1bc54f3356dc90 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **EDIT ITEM** コマンドは*object* 引数で指定された項目、または指定された配列やリスト中*item* で指定された項目を編集状態にします。 @@ -74,4 +71,13 @@ displayed_sidebar: docs [GOTO OBJECT](goto-object.md) [INSERT IN LIST](insert-in-list.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 870 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md index 7bcbbcf7a19ac6..fa076f17b0e8b0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ENABLE MENU ITEM コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目を選択可にします。*menuItem*に-1を渡すと、*menu*に最後に追加された項目を指定します。 @@ -32,4 +29,14 @@ displayed_sidebar: docs #### 参照 -[DISABLE MENU ITEM](disable-menu-item.md) \ No newline at end of file +[DISABLE MENU ITEM](disable-menu-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 149 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md index 0d12c62fade88b..bac22ed090c33e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md @@ -179,4 +179,13 @@ displayed_sidebar: docs [DECRYPT BLOB](decrypt-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 689 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md index e75de5855dfd28..e8bbda88751b62 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md @@ -58,4 +58,13 @@ BLOB を暗号化するのには、*keyObject* または *passPhrase* のいづ [Decrypt data BLOB](decrypt-data-blob.md) [ENCRYPT BLOB](encrypt-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1773 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md index 3ddc5ba694f1eb..1dcce1b4a24232 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Encrypt data file** コマンドはを使用数と、*structurePath* 引数で指定されたストラクチャーに割り当てられている、*dataPath* 引数で指定されたデータファイルを暗号化または再暗号化することができます。またこれを使用してデータベースから暗号化を取り除くこともできます。このコマンドは元のファイルに対する編集は行わず、元のデータファイルのバックアップを取るために作成された完全なパス名を返します。 @@ -134,4 +131,13 @@ displayed_sidebar: docs [Data file encryption status](data-file-encryption-status.md) [Decrypt data BLOB](decrypt-data-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1610 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md index c48ad184d5e790..cd0abb76a2c9c1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md @@ -60,4 +60,13 @@ displayed_sidebar: docs [Form event code](../commands/form-event-code.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 36 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md index 36f3c4ddb894a1..657ada2c77980e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### 参照 -[Begin SQL](begin-sql.md) \ No newline at end of file +[Begin SQL](begin-sql.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 949 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md index 5d181f099c0695..bc9de43f81934c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**Equal pictures**コマンドは2つのピクチャーの寸法と内容を厳密に比較します。 - -*picture1* には元のピクチャーを、*picture2* には比較したいピクチャーを渡します。 +**Equal pictures**コマンドは2つのピクチャーの寸法と内容を厳密に比較します。には元のピクチャーを、*picture2* には比較したいピクチャーを渡します。 * ピクチャーの寸法が異なる場合、コマンドは**False**を返し、*mask* 引数には空のピクチャーが返されます。 * ピクチャーの寸法が同じで内容が異なる場合、コマンドは**False**を返し、*mask* 引数には2つのピクチャーを比較したピクチャーマスクの結果が返されます。この比較はピクセルごとに行われ、黒の背景上に、一致しないピクセルが白で表されます。 @@ -41,3 +39,14 @@ displayed_sidebar: docs ```4d  $equal :=Equal pictures($pict1;$pict2;$mask) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1196 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md index d25289d21f5c54..ea846c09c41b6a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ERASE WINDOW コマンドは*window*で指定されたウィンドウの内容をクリアします。 @@ -29,4 +26,13 @@ ERASE WINDOWはウィンドウの内容をクリアします。スクリーン #### 参照 [GOTO XY](goto-xy.md) -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 160 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md index e9d152f20f088a..acad4782963182 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md @@ -80,3 +80,13 @@ displayed_sidebar: docs   //イタリアリラに変換  $InLires:=Euro converter($value;French Franc;Italian Lire) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 676 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md index 03e923ce787555..4474d49bc13032 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md @@ -61,4 +61,13 @@ displayed_sidebar: docs [Command name](command-name.md) [EDIT FORMULA](edit-formula.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 63 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md index 83802bd0565fc2..8d76f32f181dea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **EXECUTE METHOD IN SUBFORM** コマンドを使用して サブフォームオブジェクト*subformObject* のコンテキストにおいて*formula* 引数で指定したコードを実行できます。 @@ -75,3 +72,14 @@ displayed_sidebar: docs #### システム変数およびセット コマンドが正しく実行されるとシステム変数OKに1が設定され、そうでなければ0が設定されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1085 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md index 38216f31ecfbb4..4fb7e9b49d699a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md @@ -31,4 +31,14 @@ displayed_sidebar: docs #### 参照 -[EXECUTE FORMULA](execute-formula.md) \ No newline at end of file +[EXECUTE FORMULA](execute-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1007 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md index e2a384d59164a2..c4cd1b2c77d160 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 EXECUTE ON CLIENT コマンドは、*clientName*という名前で登録されている4D Clientで、必要であれば*param1... paramN*を引数とし、*methodName*メソッドを実行します。4D Clientの登録名は[REGISTER CLIENT](register-client.md "REGISTER CLIENT") コマンドで定義します。 @@ -63,4 +60,14 @@ OKシステム変数は、4D Serverがメソッドの実行要求を正しく受 [Execute on server](execute-on-server.md) [GET REGISTERED CLIENTS](get-registered-clients.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 651 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md index 1bc36cb4b09598..889dd4e70454e1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Execute on server コマンドはサーバマシン上 (クライアント/サーバで実行された場合) 、または同じマシン上 (シングルユーザで実行された場合) で新しいプロセスを開始し、そのプロセスのプロセス番号を返します。 @@ -191,4 +188,13 @@ WriteLog メソッドはサーバー側で実行されます。メソッドの #### 参照 [EXECUTE ON CLIENT](execute-on-client.md) -[New process](new-process.md) \ No newline at end of file +[New process](new-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 373 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/exp.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/exp.md index 87d3ba407661ea..979be6927b56dd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/exp.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/exp.md @@ -30,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[Log](log.md) \ No newline at end of file +[Log](log.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 21 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md index f04efac0d6055c..0e55763e83670c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md @@ -63,4 +63,14 @@ BLOBが正しく解凍されるとOK変数は1に、そうでなければ0に設 #### 参照 [BLOB PROPERTIES](blob-properties.md) -[COMPRESS BLOB](compress-blob.md) \ No newline at end of file +[COMPRESS BLOB](compress-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 535 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md index a74af2a2970ce7..26275b87873e4b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **EXPORT DATA**コマンドは、データを*fileName*ファイルに書き出します。4Dからは以下のフォーマットでデータの書き出しを行えます: テキスト、固定長テキスト、XML、SYLK、DIF、DBF(dBase)および4Dフォーマット @@ -99,4 +96,14 @@ displayed_sidebar: docs [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) -[IMPORT DATA](import-data.md) \ No newline at end of file +[IMPORT DATA](import-data.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 666 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md index e99b204686a9ff..857238aa35f74f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 EXPORT DIF コマンドは、カレントプロセスにおける*aTable*のカレントセレクションのレコードをディスクに書き出します。このデータは*document*に書き込まれます。*document*は、WindowsまたはMacintoshの標準的なDIF形式のドキュメントです。 @@ -51,4 +48,14 @@ EXPORT DIF を使用する際、デフォルトのフィールド区切り文字 [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 84 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md index 1202d580493562..af957531a50d7b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Export structure file** コマンドは、カレントの4D データベースストラクチャーを、*folderPath* 引数で指定したパスに、テキストベースのファイルやネイティブのピクチャーファイルなどのセットに分解し、書き出し、保存します。デフォルトでは、データベースストラクチャー全体(メソッド、フォーム、カタログ、等)が書き出されます。*options* 引数を使用することで書き出す中身をフィルターすることができます。 @@ -116,4 +113,13 @@ displayed_sidebar: docs #### 参照 -[FORM Convert to dynamic](form-convert-to-dynamic.md) \ No newline at end of file +[FORM Convert to dynamic](form-convert-to-dynamic.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1565 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md index 67d58daee65529..5170a6bfd4ecf9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md @@ -55,4 +55,13 @@ XML フォーマットで書き出されたストラクチャー定義は他の #### 参照 -[IMPORT STRUCTURE](import-structure.md) \ No newline at end of file +[IMPORT STRUCTURE](import-structure.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1311 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md index 611d077db26103..38eead8d541ae3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 EXPORT SYLK コマンドは、カレントプロセスにおける*aTable*のカレントセレクションのレコードをディスクに書き出します。このデータは*document*に書き込まれます。*document*は、WindowsまたはMacintoshの標準的なSYLK形式のドキュメントです。 @@ -51,4 +48,14 @@ EXPORT SYLKを使用する際、デフォルトのフィールド区切り文字 [EXPORT DIF](export-dif.md) [EXPORT TEXT](export-text.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 85 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md index 085057a6a22655..dfc1e34bd7c808 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 EXPORT TEXT コマンドは、カレントプロセスにおける*aTable*のカレントセレクションのレコードをディスクに書き出します。このデータは*document*に書き込まれます。*document*は、WindowsまたはMacintoshのテキストドキュメントです。 @@ -53,4 +50,14 @@ EXPORT TEXT を使用する際、デフォルトのフィールド区切り文 [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 167 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/false.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/false.md index a0f92f9c54e0dc..70f266411291d8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/false.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/false.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 [Not](not.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 215 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md index 28ba6764ce29e1..f01aaca2b9cb8a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md @@ -48,4 +48,13 @@ displayed_sidebar: docs [Field](field.md) [Last field number](last-field-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 257 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field.md index d1f0812a1db0ee..be7cdf68499f66 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field.md @@ -58,4 +58,13 @@ displayed_sidebar: docs [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last field number](last-field-number.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 253 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md index 72c25e90dd82c9..2e03ebf1bbc332 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FILTER EVENT** コマンドは、[ON EVENT CALL](on-event-call.md) コマンドでインストールされたイベント処理プロジェクトメソッドから呼び出されます。 @@ -40,4 +37,14 @@ displayed_sidebar: docs #### 参照 -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 321 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md index 07eb662e3fd8e8..58ab084fbc6647 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FILTER KEYSTROKE は、ユーザがフィールドや入力可エリアに入力した文字を、*filteredChar* に渡した文字列の最初の文字で置き換えます。 @@ -247,3 +244,13 @@ Get highlighted text メソッド: [Get edited text](get-edited-text.md) [Is editing text](is-editing-text.md) [Keystroke](keystroke.md) + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 389 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md index 4fc12c5fcf9517..b50bb9f5c80dba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md @@ -108,4 +108,13 @@ Find in array コマンドは、タイプがテキスト、数値、日付、ポ [DELETE FROM ARRAY](delete-from-array.md) [Find in sorted array](find-in-sorted-array.md) [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 230 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md index 8ea10030f57ac7..d013939a99bd1e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md @@ -62,3 +62,13 @@ displayed_sidebar: docs **備考:** 演算子 >= が示しているのは、全てのレコード番号を対象としていることです。本コマンドはレコード番号を返しますが、レコード番号の最小値は0なので、全てのレコード番号が対象となります。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 653 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md index 3f77fa26c11a90..d7528773bff87f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Find in list コマンドは、*value*に渡した文字列と同じ値を持つ項目を*list*リスト中で検索し、最初に見つけた項目の位置または項目参照番号を返します。複数の項目を見つけた場合、コマンドは *itemsArray* 配列にそれらの一または項目参照番号を返します。 @@ -64,3 +61,13 @@ displayed_sidebar: docs  $vlItemPos:=(hList;"Date";0;*)   //$vlItemPos は0 ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 952 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md index 8aa93477a37dc1..89dd35b2f55534 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md @@ -70,4 +70,13 @@ displayed_sidebar: docs [Count in array](count-in-array.md) [Find in array](find-in-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1333 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md index 48b3dd643bda36..de8f6594bd2f96 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Find window コマンドは、*left* と *top*に渡した座標のポイントにある最初のウィンドウの参照を返します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 [Frontmost window](frontmost-window.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 449 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md index 2fbd3de1b174e8..cad469df944c0f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md @@ -33,4 +33,14 @@ displayed_sidebar: docs [End selection](end-selection.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 50 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md index 1b24b8b9bed6c0..3c44384022a653 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md @@ -29,4 +29,13 @@ displayed_sidebar: docs #### 参照 [Get database parameter](get-database-parameter.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 297 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md index c2efcbbf526659..71345ac023c4cb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 互換性に関する注意 このコマンドは互換性の目的で保持されています。4D v12からは[OBJECT Get pointer](object-get-pointer.md "OBJECT Get pointer")コマンドの利用が推奨されます。 @@ -46,4 +43,13 @@ Focus object はカレントフォーム中でフォーカスを持つオブジ #### 参照 -[OBJECT Get pointer](object-get-pointer.md) \ No newline at end of file +[OBJECT Get pointer](object-get-pointer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 278 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md index a5ef706779b551..9c07c2c8cfd1f6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md @@ -16,13 +16,21 @@ displayed_sidebar: docs #### 説明 -FOLDER LIST コマンド は、*pathname*に渡すパス名にあるフォルダの名前を要素とするテキストまたは文字列配列*directories*を生成します。 - -**Note:** 引数*pathname* は完全なパス名だけを受け入れます。 +FOLDER LIST コマンド は、*pathname*に渡すパス名にあるフォルダの名前を要素とするテキストまたは文字列配列*directories*を生成します。引数*pathname* は完全なパス名だけを受け入れます。 指定した場所にフォルダがない場合、コマンドは空の配列を返します。*pathname*に渡すパス名が無効だと、FOLDER LISTはファイルマネジャエラーを生成します。このエラーは[ON ERR CALL](on-err-call.md "ON ERR CALL")メソッドを使用して検知することができます。 #### 参照 [DOCUMENT LIST](document-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 473 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md index 88e22c0d5f2d28..7979061eb3b59c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md @@ -47,4 +47,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1700 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md index 4f931ffcaf242a..9b13482fcc7098 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**FONT LIST**コマンドは、テキスト配列の*fonts*引数を作成し、システム上で使用可能なスケーラブルなフォントの名前を格納します。 - -*listType* 引数は取得したいフォントリストの型を指定します。指定するためには、 "*Font Type List*"テーマ内の以下の定数のいづれかを *listType* 引数に渡して下さい: +**FONT LIST**コマンドは、テキスト配列の*fonts*引数を作成し、システム上で使用可能なスケーラブルなフォントの名前を格納します。引数は取得したいフォントリストの型を指定します。指定するためには、 "*Font Type List*"テーマ内の以下の定数のいづれかを *listType* 引数に渡して下さい: | 定数 | 型 | 値 | コメント | | -------------- | ---- | - | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | @@ -72,4 +70,13 @@ Windows環境下では、この原理は4D v15 R4から採用されています *Font Type List* [OBJECT SET FONT](object-set-font.md) [SET RECENT FONTS](set-recent-fonts.md) -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 460 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md index 6c51c1296cb04e..3df40e17ff1cbb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md @@ -57,4 +57,13 @@ displayed_sidebar: docs #### 参照 -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1362 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md index c139e209c65a4c..08d1db3b8b1fc2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM Convert to dynamic** コマンドは、*formName* 引数で指定したフォーム(クラシックフォーム)をダイナミックフォームへと変換し、それをオブジェクト型で返します。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 [DIALOG](../commands/dialog.md) -[Export structure file](export-structure-file.md) \ No newline at end of file +[Export structure file](export-structure-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1570 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md index ba717bd7517894..a6f3ff92ed3650 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM FIRST PAGE コマンドは、現在表示されているフォームページを先頭のフォームページに変更します。フォームが表示されていない、または[FORM LOAD](../commands/form-load.md) コマンドによってロードされてない場合や、すでに最初のフォームページが表示されている場合、FORM FIRST PAGE コマンドは何も行いません。 @@ -33,4 +30,13 @@ displayed_sidebar: docs [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 250 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md index 615062f93acf4e..f9f1f540ce9eab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM Get color scheme** コマンドは、現在表示されているフォームの実際のカラースキームの名前を返します。カレントのフォームがない場合には、このコマンドは空の文字列を返します。 @@ -45,4 +42,13 @@ displayed_sidebar: docs #### 参照 [Get application color scheme](get-application-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1761 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md index b022258014b3e7..462b1c6d02b34a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM Get current page**コマンドは、現在表示されているフォームページ、または[FORM LOAD](../commands/form-load.md) コマンドによってロードされたカレントフォームの番号を返します。 @@ -69,4 +66,13 @@ displayed_sidebar: docs [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 276 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md index 7ac1e69dcd0236..494b552cccc8a0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM GET ENTRY ORDER** コマンドは フォーム上のオブジェクトの名前を、その入力順に並べて *objectNames* に返します。 @@ -53,4 +50,13 @@ displayed_sidebar: docs #### 参照 -[FORM SET ENTRY ORDER](form-set-entry-order.md) \ No newline at end of file +[FORM SET ENTRY ORDER](form-set-entry-order.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1469 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md index 4dc300ace0dbe7..c5e01f226d04cd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM GET HORIZONTAL RESIZING コマンドはカレントフォームの水平サイズ変更プロパティを*resize*、*minWidth*、そして*maxWidth*変数に返します。これらのプロパティはデザインモードのフォームエディタ、またはカレントプロセス用に[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md "FORM SET HORIZONTAL RESIZING") コマンドで設定されます。 #### 参照 -[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) \ No newline at end of file +[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1077 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md index 3c5baf35041a71..00faf9f4126a93 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM GET NAMES**コマンドはアプリケーション中のフォーム名を*arrNames*配列に返します。 @@ -62,5 +59,14 @@ displayed_sidebar: docs #### 参照 -[METHOD GET PATHS FORM](../commands/method-get-paths-form.md) -*フォーム* \ No newline at end of file +[METHOD GET PATHS FORM](method-get-paths-form.md) +*フォーム* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1167 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md index 26c587cea0e8a5..3e0718027fd9a4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM GET OBJECTS コマンドは、カレントフォーム に存在する全オブジェクトのリストを配列形式で返します。このリストは、カレントフォームページのオブジェクトに限定することができ、また継承されたフォームのオブジェクトを除外することができます。このコマンドは、入力フォームおよび出力フォームの双方で使用することができます。 @@ -125,4 +122,13 @@ displayed_sidebar: docs [FORM GET PROPERTIES](form-get-properties.md) *Form Objects (Access)* -*オブジェクト(フォーム)* \ No newline at end of file +*オブジェクト(フォーム)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 898 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md index 7a856390153f38..eef9e399b2b861 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM GET PROPERTIES コマンドは*formName*フォームのプロパティを返します。 @@ -43,4 +40,13 @@ displayed_sidebar: docs [FORM GET OBJECTS](form-get-objects.md) [FORM SET SIZE](form-set-size.md) -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 674 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md index d7b3d8133f1dbe..4082b355d34f10 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM GET VERTICAL RESIZING コマンドは カレントフォームの垂直サイズ変更プロパティを*resize*、*minHeight*、そして*maxHeight*変数に返します。これらのプロパティはデザインモードのフォームエディタ、またはカレントプロセス用に[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md "FORM SET VERTICAL RESIZING") コマンドで設定されます。 #### 参照 -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1078 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md index 0d48df36b886bc..90cbe7e4567025 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM GOTO PAGE**コマンドは、現在表示されているフォームページを*pageNumber*で指定したフォームページに変更します。 @@ -49,4 +46,13 @@ displayed_sidebar: docs [FORM Get current page](form-get-current-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 247 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md index 78670be3b1ab41..e1f7a0981015e1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM LAST PAGE コマンドは、現在表示されているフォームページを最終のフォームページに変更します。フォームが表示されていない、または[FORM LOAD](../commands/form-load.md) コマンドによってロードされてない場合や、すでに最終のフォームページが表示されている場合、FORM LAST PAGEコマンドは何も行いません。 @@ -33,4 +30,13 @@ displayed_sidebar: docs [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 251 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md index 41a2fdb7855cfd..0a0f8270fd098f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM NEXT PAGE コマンドは、現在表示されているフォームページから次のフォームページに移動します。フォームが表示されていない、または[FORM LOAD](../commands/form-load.md) コマンドによってロードされてない場合や、すでに最終のフォームページが表示されている場合、FORM NEXT PAGE コマンドは何も行いません。 @@ -33,4 +30,13 @@ displayed_sidebar: docs [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 248 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md index 3d56e08854f2d9..f73a4550d610da 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM PREVIOUS PAGE コマンドは、現在表示されているフォームページから前のフォームページに移動します。フォームが表示されていない、または[FORM LOAD](../commands/form-load.md) コマンドによってロードされてない場合や、すでに先頭のフォームページが表示されている場合、FORM PREVIOUS PAGE コマンドは何も行いません。 @@ -33,4 +30,13 @@ displayed_sidebar: docs [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM NEXT PAGE](form-next-page.md) \ No newline at end of file +[FORM NEXT PAGE](form-next-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 249 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md index 1193c54af18c93..7c2abcd4462883 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM SCREENSHOT コマンドはフォームをピクチャーにして返します。このコマンドは2つのシンタックスを受け入れます。使用されるシンタックスに応じてフォームのピクチャー、またはフォームエディター内のフォームのピクチャーが返されます。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 940 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md index b4049ec956bd0a..4134f1177b659b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM SET ENTRY ORDER** コマンドは カレントプロセスのカレントフォームにおいて、*objectNames* に渡した配列に基づき入力順を動的に指定します。 @@ -55,4 +52,13 @@ displayed_sidebar: docs #### 参照 -[FORM GET ENTRY ORDER](form-get-entry-order.md) \ No newline at end of file +[FORM GET ENTRY ORDER](form-get-entry-order.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1468 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md index 3c6c460bc5c697..e5606892133dcb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM SET HORIZONTAL RESIZING コマンドを使用すると、プログラムからカレントフォームの水平リサイズプロパティを変更することができます。デフォルトとして、これらのプロパティはデザインモードのフォームエディタにおいて設定することができます。新しいプロパティはカレントプロセスに対して設定され、フォームと一緒に保存されません。 @@ -36,4 +33,13 @@ displayed_sidebar: docs [FORM GET HORIZONTAL RESIZING](form-get-horizontal-resizing.md) [FORM SET SIZE](form-set-size.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 892 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md index cfe626885355ba..ceaf31bf4ac6b1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM SET INPUT** コマンドは、*aTable*のカレント入力フォームを*form*または*userForm*に設定します。フォームは*aTable*に属していなければなりません。 @@ -108,4 +105,13 @@ displayed_sidebar: docs [MODIFY RECORD](modify-record.md) [MODIFY SELECTION](modify-selection.md) [Open window](open-window.md) -[QUERY BY EXAMPLE](query-by-example.md) \ No newline at end of file +[QUERY BY EXAMPLE](query-by-example.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 55 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md index 836064ee4692af..e99da7eceda313 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM SET OUTPUT** コマンドは、*form*または*userForm*を*aTable*のカレント出力フォームとして設定します。このフォームは*aTable*に属するものでなければなりません。 @@ -71,4 +68,13 @@ displayed_sidebar: docs [FORM SET INPUT](form-set-input.md) [MODIFY SELECTION](modify-selection.md) [PRINT LABEL](print-label.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 54 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md index f9cd117a22bab3..bfcc3cc6a8e574 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM SET SIZE** コマンドを使用すると、プログラムからカレントフォームのサイズを変更することができます。新しいサイズは、カレントプロセスに対して定義され、フォームには保存されません。 @@ -123,4 +120,13 @@ displayed_sidebar: docs #### 参照 [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 891 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md index 134b96cf4642ac..b765cfffd70d32 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM SET VERTICAL RESIZINGコマンドを使用すると、プログラムからカレントフォームの垂直リサイズプロパティを変更することができます。デフォルトで、これらのプロパティはデザインモードのフォームエディタにおいて設定することができます。新しいプロパティはカレントプロセスに対して設定され、フォームと一緒に保存されません。 @@ -36,4 +33,13 @@ displayed_sidebar: docs [FORM GET VERTICAL RESIZING](form-get-vertical-resizing.md) [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET SIZE](form-set-size.md) \ No newline at end of file +[FORM SET SIZE](form-set-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 893 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md index e94844b1be9baf..7319b6b030e215 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM UNLOAD**コマンドは、[FORM LOAD](../commands/form-load.md)コマンドで指定したカレントのフォームをメモリーから解放します。. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### 参照 -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1299 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md index 791f4d032dbf4b..1c75e69cf4795c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Frontmost processは、ウィンドウが最前面にあるプロセスの番号を返します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 [BRING TO FRONT](bring-to-front.md) -[WINDOW LIST](window-list.md) \ No newline at end of file +[WINDOW LIST](window-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 327 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md index 1f8f4c795fc3a2..76fa76ce271f1e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Frontmost window コマンドは最前面のウィンドウの参照番号を返します。 @@ -24,4 +21,13 @@ displayed_sidebar: docs #### 参照 [Frontmost process](frontmost-process.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 447 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md index c0f4f8a42f3c3b..8c57c6ffe36bc5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md @@ -84,4 +84,13 @@ displayed_sidebar: docs #### 参照 [GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 691 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md index 4320a12ddfa48d..fe69752c525d29 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**Generate digest**コマンドはBLOBやテキストのDigestキーを指定したアルゴリズムで生成して返します。 - -*param* 引数にはテキストまたはBLOBフィールドや変数を渡します。**Generate digest**コマンドはダイジェストキーを文字列として返します。 +**Generate digest**コマンドはBLOBやテキストのDigestキーを指定したアルゴリズムで生成して返します。引数にはテキストまたはBLOBフィールドや変数を渡します。**Generate digest**コマンドはダイジェストキーを文字列として返します。 *algorithm* 引数で使用するハッシュ関数を指定します。*Digest Type*テーマ内にある以下の定数を使用できます: @@ -83,4 +81,13 @@ displayed_sidebar: docs [BASE64 ENCODE](base64-encode.md) [Generate password hash](generate-password-hash.md) [WEB Validate digest](web-validate-digest.md) -*暗号化プロトコル* \ No newline at end of file +*暗号化プロトコル* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1147 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md index 997ab42cbe60e5..5fd705341fba95 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md @@ -50,4 +50,13 @@ TLS/SSLプロトコルの暗号化機能はこの原理に基づいており、 [DECRYPT BLOB](decrypt-blob.md) [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 688 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md index 47feab7e5a0768..46889842eeec42 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**Generate password hash** ファンクションは*password* 引数のパスワードから暗号化ハッシュアルゴリズムによって生成された、安全なパスワードハッシュを返します。 - -*password* 引数には、文字列を渡します。**Generate password hash** はパスワードのハッシュ化された文字列を返します。同じパスワードを複数回渡した場合、ハッシュ化された文字列は毎回異なる結果が返されます。 +**Generate password hash** ファンクションは*password* 引数のパスワードから暗号化ハッシュアルゴリズムによって生成された、安全なパスワードハッシュを返します。引数には、文字列を渡します。**Generate password hash** はパスワードのハッシュ化された文字列を返します。同じパスワードを複数回渡した場合、ハッシュ化された文字列は毎回異なる結果が返されます。 *options* オブジェクト引数には、パスワードハッシュを生成する際に使用したいプロパティを渡します。利用可能な値は以下の表にまとめてあります: @@ -66,4 +64,13 @@ bcryptは、Blowfish暗号に基づいたパスワードハッシュ機能です [Generate digest](generate-digest.md) -[Verify password hash](verify-password-hash.md) \ No newline at end of file +[Verify password hash](verify-password-hash.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1533 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md index 0f1ab381e457de..42f5c135a8965a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md @@ -29,3 +29,13 @@ UUIDを生成して変数に代入する:  var MyUUID : Text  MyUUID:=Generate UUID ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1066 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md index 8c8fb81560606a..63b00faf4ca5af 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md @@ -66,4 +66,13 @@ User settings file for data および User settings file の両ファイルに #### 参照 -[File](file.md) \ No newline at end of file +[File](file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1418 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md index 2aa1c8fd6fa3e2..742364b5bc7b74 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md @@ -51,8 +51,9 @@ displayed_sidebar: docs アクティブな4Dフォルダーは、デフォルトでは以下の場所に作成されます: -* Windows: *{Disk}:\\Users\\* *\\AppData\\Roaming\\* -* macOS: *{Disk}:Users:* *:Library:Application Support:* +* Windows: *{Disk}:\\Users\\{userName}\\AppData\\Roaming\\{applicationName}* +* macOS: *{Disk}:Users:{userName}:Library:Application Support:{applicationName}* + ##### Licenses Folder @@ -205,4 +206,14 @@ displayed_sidebar: docs [System folder](system-folder.md) [Temporary folder](temporary-folder.md) [Test path name](test-path-name.md) -[WEB SET ROOT FOLDER](web-set-root-folder.md) \ No newline at end of file +[WEB SET ROOT FOLDER](web-set-root-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 485 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md index 1e95e1ef485895..7fdf37f7bc9cab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### 説明 -**Get adjusted blobs cache priority** コマンドは*aTable* 引数で指定されたテーブルの"blob"データにキャッシュマネージャーによって適用されたカレントの調整済みキャッシュ優先度値を返します。 - -**注:** このコマンドはローカルモード(4D Server と4D)でのみ動作します。リモートモードの4Dでは使用できません。 +**Get adjusted blobs cache priority** コマンドは*aTable* 引数で指定されたテーブルの"blob"データにキャッシュマネージャーによって適用されたカレントの調整済みキャッシュ優先度値を返します。このコマンドはローカルモード(4D Server と4D)でのみ動作します。リモートモードの4Dでは使用できません。 #### 参照 [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) [SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) -*データベースキャッシュ内の優先度を管理* \ No newline at end of file +*データベースキャッシュ内の優先度を管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1428 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md index b99230a280333b..5a89d26d27a5ce 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### 説明 -**Get adjusted index cache priority** コマンドは、*aField* 引数で指定されたフィールドのインデックスに対しキャッシュマネージャーによって適用されたキャッシュ優先度値を返します。 - -**注:** このコマンドはローカルモード(4D Serverおよび4D)においてのみ動作します。リモートモードでは使用できません。 +**Get adjusted index cache priority** コマンドは、*aField* 引数で指定されたフィールドのインデックスに対しキャッシュマネージャーによって適用されたキャッシュ優先度値を返します。このコマンドはローカルモード(4D Serverおよび4D)においてのみ動作します。リモートモードでは使用できません。 #### 参照 [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [SET INDEX CACHE PRIORITY](set-index-cache-priority.md) -*データベースキャッシュ内の優先度を管理* \ No newline at end of file +*データベースキャッシュ内の優先度を管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1427 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md index 498934f768585c..fea030eb667b50 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Get adjusted table cache priority**コマンドは *aTable*引数で指定したテーブルのスカラーデータのキャッシュに、キャッシュマネージャーによって適用された、調整されたキャッシュ優先度値を返します。 - -**注:** このコマンドはローカルモード(4D Server と4D)でのみ動作します。リモートモードの4Dでは使用できません。 +**Get adjusted table cache priority**コマンドは *aTable*引数で指定したテーブルのスカラーデータのキャッシュに、キャッシュマネージャーによって適用された、調整されたキャッシュ優先度値を返します。このコマンドはローカルモード(4D Server と4D)でのみ動作します。リモートモードの4Dでは使用できません。 スカラーデータフィールド型には、日付/時間、数値、文字列型のフィールドが含まれます。 @@ -26,4 +24,13 @@ displayed_sidebar: docs [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) [SET TABLE CACHE PRIORITY](set-table-cache-priority.md) -*データベースキャッシュ内の優先度を管理* \ No newline at end of file +*データベースキャッシュ内の優先度を管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1426 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md index a8e9aab228b679..87e98c25846fd0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET ALLOWED METHODS コマンドは、フォーミュラの作成に使用できるメソッド名を引数*methodsArray*に返します。これらのメソッドは、エディタ上のコマンドリストの最後に一覧表示されます。 @@ -45,4 +42,13 @@ GET ALLOWED METHODSコマンドは、[SET ALLOWED METHODS](../commands/set-allow #### 参照 -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 908 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md index c1deb1cf19e2c7..330e678acb9826 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get application color scheme** コマンドは、アプリケーションレベルで使用されている実際のカラースキームの名前を返します。 @@ -45,4 +42,13 @@ displayed_sidebar: docs #### 参照 [FORM Get color scheme](form-get-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1763 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md index 937e2144de1f93..de77f0d386d485 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md @@ -23,4 +23,13 @@ displayed_sidebar: docs [ASSERT](assert.md) [Asserted](asserted.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1130 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md index 10746ba898e5f1..928855aa412b90 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md @@ -31,4 +31,13 @@ displayed_sidebar: docs [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 899 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md index 08373303ab84db..d4bff82a141a25 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**Get cache size**コマンドは、カレントデータベースのキャッシュサイズをバイト単位で返します。 - -**注:** このコマンドはローカルモード (4D Server および 4D) でのみ正しい情報を返します。リモートモードの4Dでの使用は想定されていないことに注意してください。 +**Get cache size**コマンドは、カレントデータベースのキャッシュサイズをバイト単位で返します。このコマンドはローカルモード (4D Server および 4D) でのみ正しい情報を返します。リモートモードの4Dでの使用は想定されていないことに注意してください。 #### 例題 @@ -25,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[SET CACHE SIZE](set-cache-size.md) \ No newline at end of file +[SET CACHE SIZE](set-cache-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1432 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md index 2e94c2c06e2c13..5dd2e409f16c11 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get current printer** コマンドは、4Dアプリケーションに定義されたカレントプリンター名を返します。デフォルトで4Dの起動時には、システムで定義されたプリンターがカレントプリンターとなります。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 [PRINTERS LIST](printers-list.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 788 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md index 51beaea58f3b03..60cb54153e1dc0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md @@ -49,4 +49,13 @@ displayed_sidebar: docs #### 参照 [Localized document path](localized-document-path.md) -[SET DATABASE LOCALIZATION](set-database-localization.md) \ No newline at end of file +[SET DATABASE LOCALIZATION](set-database-localization.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1009 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md index 2e520632412cd8..ce9e08175b9abc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get database parameter**コマンドを使用して、現在の4Dデータベースパラメーターの値を知ることができます。パラメーター値が文字列の場合、それは*stringValue* 引数に返されます。 @@ -134,4 +131,13 @@ displayed_sidebar: docs [DISTINCT VALUES](distinct-values.md) [Application info](application-info.md) [QUERY SELECTION](query-selection.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 643 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md index a2afd4c094234a..bd152b49561119 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get default user コマンドは、データベース設定において "デフォルトユーザー" として定義されたユーザーのユニークなユーザーIDを返します。 @@ -23,3 +20,13 @@ displayed_sidebar: docs ![](../assets/en/commands/pict36789.en.png) デフォルトユーザーが設定されていない場合、コマンドは0を返します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 826 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md index 00f07e5322bd9e..9b216f8ba68ccb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### 説明 -GET DOCUMENT ICONコマンドは、*filePath*に渡した名前または完全なパス名を持つドキュメントのアイコンを4Dのピクチャ変数またはフィールド*icon*に返します。*filePath* はあらゆるタイプのファイル (実行ファイル、ドキュメント、ショートカットまたは別名など) またはフォルダを指定します。 +GET DOCUMENT ICONコマンドは、*filePath*に渡した名前または完全なパス名を持つドキュメントのアイコンを4Dのピクチャ変数またはフィールド*icon*に返します。はあらゆるタイプのファイル (実行ファイル、ドキュメント、ショートカットまたは別名など) またはフォルダを指定します。 *filePath*には、完全なドキュメントのパス名が含まれていなければなりません。あるいはドキュメント名または相対パス名を渡すこともできます。しかしこの場合、ドキュメントはカレントのワーキングディレクトリに存在していなければなりません (通常、データベースストラクチャファイルを含んでいるフォルダ) 。 @@ -26,3 +26,14 @@ displayed_sidebar: docs 4Dのピクチャフィールドまたは変数を*icon*に渡します。コマンドが実行されるとこの引数にはファイル (PICTフォーマット) のアイコンが返されます。 任意の引数*size*によって、返されたアイコンのサイズをピクセルで設定できます。この値は、実際にアイコンを含む正方形の両方の側面の長さを表します。通常アイコンは32x32ピクセル(大きいアイコン) または16x16ピクセル(小さいアイコン) で定義されます。0を渡したり、この引数を省略する場合、使用できる最大のアイコンが返されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 700 | +| スレッドセーフである | ✓ | +| システム変数を更新する | Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md index 5d12ad6ff81504..841ad5edf4f40c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md @@ -24,4 +24,13 @@ Get document positionは、ドキュメントの最初から見て、次の読 [RECEIVE PACKET](receive-packet.md) [SEND PACKET](send-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 481 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md index 05b0b66d20cd3d..075e40aa5404ff 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md @@ -203,4 +203,14 @@ displayed_sidebar: docs #### 参照 -[SET DOCUMENT PROPERTIES](set-document-properties.md) \ No newline at end of file +[SET DOCUMENT PROPERTIES](set-document-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 477 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md index 8e01d35fe05854..92517cdf935fe7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md @@ -28,4 +28,14 @@ Macintoshでは、任意の引数 *\** を渡さない場合、データフォ [Get document position](get-document-position.md) [SET DOCUMENT POSITION](set-document-position.md) -[SET DOCUMENT SIZE](set-document-size.md) \ No newline at end of file +[SET DOCUMENT SIZE](set-document-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 479 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md index 8844f23e0d22fd..12bf03b448ca27 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get edited text**コマンドは、主にOn After Edit フォームイベントで入力中のテキストを取得するために使用します。またOn Before Keystroke および On After Keystroke フォームイベントで使用することもできます。これらのフォームイベントについてのより詳細な情報は[Form event code](../commands/form-event-code.md)の説明を参照してください。 @@ -67,4 +64,13 @@ displayed_sidebar: docs #### 参照 [Form event code](../commands/form-event-code.md) -[Is editing text](is-editing-text.md) \ No newline at end of file +[Is editing text](is-editing-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 655 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md index 489ba2a857b793..f9e0373358917e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md @@ -30,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1133 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md index 8602b61f69ae3c..ed7846fd93f7a0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET FIELD ENTRY PROPERTIESコマンドは、*tableNum*および*fieldNum*、または*fieldPtr*で指定したフィールドのデータ入力プロパティを返します。 @@ -43,4 +40,13 @@ displayed_sidebar: docs [GET FIELD PROPERTIES](get-field-properties.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[GET TABLE PROPERTIES](get-table-properties.md) \ No newline at end of file +[GET TABLE PROPERTIES](get-table-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 685 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md index a9ffd953f1186d..756eefd0416ea4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md @@ -72,4 +72,13 @@ displayed_sidebar: docs [Field](field.md) [Field name](field-name.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 258 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md index e08ce41bb44f91..5749cb926eca40 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md @@ -83,4 +83,13 @@ displayed_sidebar: docs [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET RELATION PROPERTIES](get-relation-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 920 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md index 6643a7ef840a1b..78626df1614050 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET FIELD TITLES コマンドを使用して、目的の *table* に対してデータベースフィールドの名前と番号を配列 *fieldTitles* と *fieldNums* に受け取ります。これら2つの配列内容は同期化されています。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 [GET TABLE TITLES](get-table-titles.md) -[SET FIELD TITLES](set-field-titles.md) \ No newline at end of file +[SET FIELD TITLES](set-field-titles.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 804 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md index 6adf1552994ca0..73754d8519991f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get file from pasteboard コマンドは、ドラッグ&ドロップ処理に含まれるファイルの完全パス名を返します。複数のファイルを同時に選択し、移動することができます。*xIndex* 引数を使用して選択したファイル中でファイルを指定することができます。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) \ No newline at end of file +[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 976 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md index 85c0741c00228e..83ca22e2b945d5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md @@ -34,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1738 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md index 17db9df7815f95..1f250758cf279d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET GROUP LIST コマンドは、パスワードエディターに表示されるグループ名とユニークなID番号を配列 *groupNames* と *groupNumbers* に返します。 @@ -34,4 +31,14 @@ displayed_sidebar: docs [GET GROUP PROPERTIES](get-group-properties.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 610 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md index a16564de48e2cb..52ff91016d23ed 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET GROUP PROPERTIES コマンドは、引数 *groupID* に渡したユニークなグループID番号を持つグループのプロパティを返します。[GET GROUP LIST](get-group-list.md) コマンドによって返される有効なグループID番号を必ず渡さなければなりません。 @@ -41,4 +38,14 @@ displayed_sidebar: docs [GET GROUP LIST](get-group-list.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 613 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md index 7298f273ec1f5e..22d0d31adbbb69 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET HIGHLIGHT**コマンドは、*object*中で現在反転表示されているテキストを検出するために使用します。 @@ -64,4 +61,13 @@ End if [FILTER KEYSTROKE](filter-keystroke.md) [HIGHLIGHT TEXT](highlight-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 209 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md index ed5a23652852f8..f2282cb9c6cae5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET HIGHLIGHTED RECORDS コマンドは、*aTable*中で (例: リストフォームでユーザにより選択されて) ハイライトされたレコードを*setName*で指定したセットに格納します。*aTable*を省略すると、カレントフォームまたはサブフォームのテーブルが使用されます。 @@ -44,4 +41,14 @@ GET HIGHLIGHTED RECORDSコマンドはフォーム以外のコンテキストで #### 参照 -[HIGHLIGHT RECORDS](highlight-records.md) \ No newline at end of file +[HIGHLIGHT RECORDS](highlight-records.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 902 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md index 91168f5248ee68..ed3069505a02b6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get indexed string コマンドは以下の値を返します: @@ -46,4 +43,14 @@ displayed_sidebar: docs [Get string resource](get-string-resource.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 510 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md index ce5b5c8d229029..c8748408ab4dd2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md @@ -24,4 +24,13 @@ displayed_sidebar: docs #### 参照 [RESTART 4D](restart-4d.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1301 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md index f7a8324980681f..bc202fbf03e830 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get list item font コマンドは、リスト参照またはオブジェクト名で指定した*list*リストの、*itemRef* 引数で指定した項目のフォント名を返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[SET LIST ITEM FONT](set-list-item-font.md) \ No newline at end of file +[SET LIST ITEM FONT](set-list-item-font.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 954 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md index 96bef83e55cdc0..6a9e66701e3ab2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET LIST ITEM ICON コマンドは、*list*に参照番号またはオブジェクト名を渡したリスト内の、*itemRef*項目参照の項目に割り当てられたアイコンを*icon*に返します。 @@ -38,4 +35,13 @@ iconにはピクチャ変数を渡します。コマンド実行後、(スタテ #### 参照 [GET LIST ITEM PROPERTIES](get-list-item-properties.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 951 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md index 49f11d4ee5d1f0..307cdc7c219862 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET LIST ITEM PARAMETER ARRAYS**コマンドは*list* 引数で指定した参照またはオブジェクト名を持つ階層リスト中で、*itemRef* で指定した項目に割り当てられたパラメーター (およびその値) を一回の呼び出しで取り出すことができます。 @@ -76,4 +73,13 @@ displayed_sidebar: docs #### 参照 -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1195 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md index 2d1734c86cebf5..af4f522b149e37 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET LIST ITEM PARAMETER** コマンドは、*list* 引数にリスト参照やオブジェクト名で指定したリストの、*itemRef* 項目の、*selector* パラメタに対応する現在値を取得するために使用します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 *Hierarchical Lists* -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 985 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md index 3629b1220e5187..8ae28f8d9ccfd1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET LIST ITEM PROPERTIES** コマンドは、引数*list*に渡されたリスト参照番号またはオブジェクト名のリスト内で、引数*itemRef*によって指定された項目のプロパティを返します。 @@ -53,4 +50,13 @@ displayed_sidebar: docs [GET LIST ITEM](get-list-item.md) [GET LIST ITEM ICON](get-list-item-icon.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 631 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md index 0e3ffda827dcba..f7ea261200456a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET LIST ITEM コマンドは、リスト参照番号またはオブジェクト名が*list*であるリスト中、*itemPos*で指定した項目に関する情報を返します。 @@ -67,4 +64,13 @@ displayed_sidebar: docs [List item position](list-item-position.md) [Selected list items](selected-list-items.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 378 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md index 6ad1bce099f480..f0285b0a6387a2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET LIST PROPERTIES** コマンドは、*list*で指定された参照番号を持つ階層リストについての情報を返します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[SET LIST PROPERTIES](set-list-properties.md) \ No newline at end of file +[SET LIST PROPERTIES](set-list-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 632 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md index be6afc3ccaa0e1..44d4701aa2e19e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET MACRO PARAMETERコマンドは、呼び出されたメソッドテキストのすべてまたは一部を引数*textParam*に返します。 @@ -36,4 +33,13 @@ Full method textを*selector*に渡すと、メソッドのテキストはすべ #### 参照 -[SET MACRO PARAMETER](set-macro-parameter.md) \ No newline at end of file +[SET MACRO PARAMETER](set-macro-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 997 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md index 6e23f87251bfd0..0ddf363eaca6a0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get menu bar reference** コマンドはカレントのメニューバーあるいは指定されたプロセスのメニューバーのIDを返します。 @@ -41,4 +38,13 @@ displayed_sidebar: docs #### 参照 -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 979 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md index 6a9fa76cd7dd54..5925d001339c7f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET MENU ITEM ICON コマンドは*iconRef*変数に、*menu* と *menuItem*引数で指定されたメニュー項目に関連付けられたアイコンの参照を返します。この参照はピクチャーのパス名または番号です。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[SET MENU ITEM ICON](set-menu-item-icon.md) \ No newline at end of file +[SET MENU ITEM ICON](set-menu-item-icon.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 983 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md index 2743b0c772cf5e..691a5ed3d8298e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item key コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目の、Ctrl (Windows) または Command (Macintosh) ショートカットコードを返します。*menuItem*に-1を渡して*menu*に最後に追加された項目を指定することもできます。 @@ -52,4 +49,14 @@ displayed_sidebar: docs #### 参照 [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 424 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md index c61b322a2874b9..b9c09e27cf258f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item mark コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目の、チェックマークを返します。*menuItem*に-1を渡して*menu*に最後に追加された項目を指定することもできます。 @@ -41,4 +38,14 @@ displayed_sidebar: docs #### 参照 -[SET MENU ITEM MARK](set-menu-item-mark.md) \ No newline at end of file +[SET MENU ITEM MARK](set-menu-item-mark.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 428 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md index a3c89267f14f10..36f51d175f52fc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item method コマンドは、*menu*と*menuItem*引数で指定されたメニュー項目に関連付けられた4Dプロジェクトメソッド名を返します。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[SET MENU ITEM METHOD](set-menu-item-method.md) \ No newline at end of file +[SET MENU ITEM METHOD](set-menu-item-method.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 981 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md index e789d25aba1b68..4f24bb3575e25b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item modifiers コマンドは、*menu*と*menuItem*引数で指定したメニュー項目の、標準ショートカットに割り当てられた追加のモディファイアキーを返します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs #### 参照 [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 980 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md index 74ef97be58112b..b4487fd5800031 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item parameter コマンドは、*menu*と*menuItem*引数で指定されるメニュー項目に割り当てられたカスタム文字列を返します。この文字列は事前に[SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER")コマンドで指定されていなければなりません。 @@ -26,4 +23,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get selected menu item parameter](get-selected-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1003 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md index 4e77270cdffe77..63367cb45b4d1c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET MENU ITEM PROPERTY** コマンドは、*menu*と*menuItem*引数で指定したメニュー項目の、現在のプロパティ値を返します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 972 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md index 9006d8fb87d081..8ca6f79c57c981 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item style コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目のフォントスタイルを返します。*menuItem*に-1を渡して*menu*に最後に追加された項目を指定することもできます。 @@ -48,4 +45,14 @@ Get menu item style はテーマの定義済み定数 (ひとつまたは和) #### 参照 -[SET MENU ITEM STYLE](set-menu-item-style.md) \ No newline at end of file +[SET MENU ITEM STYLE](set-menu-item-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 426 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md index 333c1fd6e6a0dc..e68ea96587762e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item コマンドは、引数*menu*と*menuItem*に渡されたメニューおよびメニュー項目番号を持つメニュー項目のテキストを返します。*menuItem*に-1を渡して*menu*に最後に追加された項目を指定することもできます。 @@ -30,4 +27,14 @@ displayed_sidebar: docs #### 参照 [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM](set-menu-item.md) \ No newline at end of file +[SET MENU ITEM](set-menu-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 422 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md index 520b4d53a0b6a0..e78a96ef4b9fdd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET MENU ITEMS コマンドは、*menu*引数で指定したメニューまたはメニューバーのタイトルとIDを*menuTitlesArray* と *menuRefsArray* 配列に返します。 @@ -36,3 +33,13 @@ displayed_sidebar: docs  MenuBarRef:=Get menu bar reference(Frontmost process)  GET MENU ITEMS(MenuBarRef;menuTitlesArray;menuRefsArray) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 977 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md index ddaca8bbff091a..2c04e7f2152cdc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu title コマンドは、*menu*に渡されたメニュー番号または参照を持つメニューのタイトルを返します。 @@ -28,4 +25,14 @@ displayed_sidebar: docs #### 参照 -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 430 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md index 67d717e20c64cc..af5339882215fc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[REGENERATE MISSING TABLE](regenerate-missing-table.md) \ No newline at end of file +[REGENERATE MISSING TABLE](regenerate-missing-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1125 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md index 12da9cc85dd02d..59a38063eef9fd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PASTEBOARD DATA TYPE コマンドは、ペーストボードに含まれるデータタイプリストを取得するために使用します。このコマンドは一般的にドラッグ&ドロップのコンテキストで、ドロップ先オブジェクトのOn Drop または On Drag Over フォームイベント内で使用されます。特に、ペーストボードに特定のデータタイプが存在するかどうかをチェックするために使用します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 -*ペーストボードの管理* \ No newline at end of file +*ペーストボードの管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 958 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md index 071bd6723ee291..9b16c528727e02 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PASTEBOARD DATA コマンドはペーストボード中*dataType*で指定したタイプのデータを、BLOB フィールドまたは変数 *data* に返します。 (例えばペーストボードに4D内でコピーされたテキストが含まれている場合、BLOBの文字コードはUTF-16です) @@ -55,4 +52,14 @@ displayed_sidebar: docs [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 401 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md index b8f80e1ee43bbd..094425079c3efd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md @@ -24,4 +24,13 @@ displayed_sidebar: docs #### 参照 -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1171 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md index 57a01b113af1a3..ebe00cac957ee7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 - \ No newline at end of file + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1406 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md index 941f6112a4e545..de87846b8bb56a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PICTURE FROM LIBRARY コマンドは、*picRef*に渡された参照番号または*picName*に渡された名前を持つピクチャライブラリの画像を*picture*引数に返します。 @@ -56,4 +53,14 @@ displayed_sidebar: docs [PICTURE LIBRARY LIST](picture-library-list.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 565 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md index decf53395419c3..9b79ccfdcda6c7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET PICTURE FROM PASTEBOARD** は、ペーストボード内に存在するピクチャーを*picture*フィールドや変数に返します。 @@ -42,4 +39,14 @@ displayed_sidebar: docs [GET PASTEBOARD DATA](get-pasteboard-data.md) [Get text from pasteboard](get-text-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 522 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md index 5eb0d6c44345c7..4c3501bfeffe30 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**GET PICTURE KEYWORDS**コマンドは引数に渡したピクチャーに割り当てられたキーワードのリストを*arrKeywords*配列に返します。 - -**IPTC/Keywords** メタデータを使用して設定されたキーワードだけが返されます。他のタイプのメタデータはこのコマンドから無視されます。このコマンドは、このタイプのメタデータをサポートするピクチャー (JPEG, TIFF, 等) に対してのみ動作します。 +**GET PICTURE KEYWORDS**コマンドは引数に渡したピクチャーに割り当てられたキーワードのリストを*arrKeywords*配列に返します。メタデータを使用して設定されたキーワードだけが返されます。他のタイプのメタデータはこのコマンドから無視されます。このコマンドは、このタイプのメタデータをサポートするピクチャー (JPEG, TIFF, 等) に対してのみ動作します。 **注:** 4DはIPTC/Keywordsタイプのメタデータをインデックスすることが可能です (デザインリファレンスマニュアルを参照)。 @@ -32,4 +30,13 @@ displayed_sidebar: docs #### 参照 [GET PICTURE METADATA](get-picture-metadata.md) -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1142 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md index 164c11af04e4b0..82cf49290e421e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md @@ -99,4 +99,14 @@ DOMツリーストラクチャを使用する [GET PICTURE KEYWORDS](get-picture-keywords.md) *Picture Metadata Names* *Picture Metadata Values* -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1122 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md index 3d0211972e5b7a..2e8de06f683284 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PICTURE RESOURCE コマンドは、*resID*のIDを持つピクチャ ("PICT") リソースに格納されているピクチャを*resData*のピクチャフィールドまたは変数に返します。 @@ -43,4 +40,14 @@ displayed_sidebar: docs #### 参照 -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 502 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md index a57fb659d059be..7e9921139d8410 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get plugin accessコマンドは引数 *plugIn* に渡した番号を持つプラグインの使用を許可されているユーザグループの名前を返します。プラグインに割り当てられているグループが存在しない場合、コマンドは空の文字列 ("") を返します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 [SET GROUP ACCESS](set-group-access.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 846 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md index 8888171ad4d21c..aa8e296fee4514 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md @@ -49,4 +49,13 @@ displayed_sidebar: docs #### 参照 [Field](field.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 304 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md index 4cff6edbbe285b..ab86fc346bde07 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get print marker コマンドを使用し、印刷中にマーカの現在位置を取得することができます。 @@ -63,4 +60,13 @@ displayed_sidebar: docs #### 参照 [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 708 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md index 6e6d72cd50cfad..a892fa75c52387 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET PRINT OPTION** コマンドは、プリントオプションの現在の値を返します。 @@ -51,4 +48,14 @@ PDFオプションコードは2つの部分、OptionT*ype*と*OptionName*から #### 参照 [PRINT OPTION VALUES](print-option-values.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 734 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md index a5699e0b1d61f8..9ab8f665c0a12e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get print preview**コマンドはカレントプロセスで[SET PRINT PREVIEW](set-print-preview.md)が**True**で呼ばれている場合、Trueを返します。 @@ -25,4 +22,13 @@ displayed_sidebar: docs #### 参照 [Is in print preview](is-in-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1197 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md index d0621487b5cbd9..dcd13afa286479 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PRINTABLE AREA コマンドは、印刷可能領域のサイズを引数*height*および*width*へピクセル単位で返します。このサイズは、現在の印刷設定、用紙方向等によって異なります。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 [GET PRINTABLE MARGIN](get-printable-margin.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 703 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md index bfa2e651cc00b0..a1e94e5fed1fc6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PRINTABLE MARGIN コマンドは、[Print form](../commands/print-form.md)、[PRINT SELECTION](print-selection.md) そして [PRINT RECORD](print-record.md) コマンドに使用されるマージンの現在値を返します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs [GET PRINTABLE AREA](get-printable-area.md) [Print form](../commands/print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 711 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md index 581ad2c265e2a1..3835d449f72a92 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get printed height** コマンドは、 [Print form](../commands/print-form.md) コマンドを使って印刷された部分全体の高さ(ピクセル単位)を返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs [GET PRINTABLE AREA](get-printable-area.md) [Print form](../commands/print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 702 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md index 1cf9ddbcb64ba4..bc71d3a039829f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PROCESS VARIABLE コマンドは、*process*引数に渡した番号のソースプロセスから*srcVar* (*srvVar2*等) プロセス変数を読み込み、その現在の値をカレントプロセスの*dstVar* (*dstVar2*等) 変数に返します。 @@ -118,4 +115,13 @@ DRAG AND DROP PROPERTIESコマンドの例題参照 [SET PROCESS VARIABLE](set-process-variable.md) [VARIABLE TO VARIABLE](variable-to-variable.md) *ドラッグ&ドロップ* -*プロセス* \ No newline at end of file +*プロセス* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 371 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md index 5705038ecb9a9f..ef3212bece6420 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md @@ -55,4 +55,13 @@ displayed_sidebar: docs #### 参照 -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1155 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md index 63918954721680..9499c45485b53a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1156 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md index 7a1abdfd9d0ea3..3caad2944cb0d6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET REGISTERED CLIENTS コマンドは2つの配列を作成します: @@ -48,4 +45,14 @@ displayed_sidebar: docs [EXECUTE ON CLIENT](execute-on-client.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 650 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md index 17956f0cc498fc..bbc07b8f543182 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md @@ -42,4 +42,13 @@ displayed_sidebar: docs [GET FIELD PROPERTIES](get-field-properties.md) [GET TABLE PROPERTIES](get-table-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 686 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md index 2efca40a64a9f0..88fca993000653 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get resource name**コマンドは、*resType*のタイプで*resID*のIDを持つリソースの名前を返します。 @@ -26,3 +23,13 @@ displayed_sidebar: docs *resFile*に有効なリソースファイル参照番号を渡すと、リソースはそのリソースファイル内でのみ検索されます。*resFile*を省略した場合は、現在開かれているすべてのリソースファイル内で検索されます。 リソースが存在しない場合、**Get resource name**は空の文字列を返します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 513 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md index e5331f8e702c28..d3bc7df68bf8dc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get resource properties**コマンドは、*resType*に渡されるタイプかつ*resID*に渡されるIDを持つリソースの属性を返します。 @@ -36,3 +33,14 @@ displayed_sidebar: docs #### システム変数およびセット リソースが存在しない場合OK変数は0に、そうでなければ1に設定されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 515 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md index 7ed83dde47ff58..c1ffd90fc9ff80 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET RESOURCE コマンドは、*resType*と*resID*に渡されるタイプとIDを持つリソースの内容を、BLOBフィールドまたはBLOB変数の*resData*に返します。 @@ -50,4 +47,14 @@ SET RESOURCEコマンドの例題参照 #### 参照 -*リソース* \ No newline at end of file +*リソース* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 508 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md index 13cbafa50ea1c2..14bb1084ed8091 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get selected menu item parameter コマンドは、選択されたメニュー項目に割り当てられたカスタム文字列を返します。このパラメタは事前に[SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER")コマンドを使用してあらかじめ設定されていなければなりません。 @@ -25,4 +22,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1005 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md index aaea4c3a90c078..18f307d4fafb4d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md @@ -48,4 +48,13 @@ Mac OS Xでは、USBシリアルアダプターの使用時に、OSがポート #### 参照 -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 909 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md index 80560440daa418..70f0fac5205f56 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get string resource コマンドは、*resID*に渡されるIDを持つストリング ("STR ") リソースに格納されている文字列を返します。 @@ -44,4 +41,14 @@ displayed_sidebar: docs [Get indexed string](get-indexed-string.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 506 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md index d1b934aa9e62f8..8b30a01ce2f347 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET STYLE SHEET INFO**コマンドは、*styleSheetName*パラメーターで指定したスタイルシートの現在の構成を返します。 @@ -66,4 +63,14 @@ displayed_sidebar: docs #### 参照 [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1256 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md index ec0eb5747e4700..0a6a6859946ce1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Get subrecord key**コマンドは、変換されたサブテーブルを使用する4Dコードから、標準のテーブルに対して作業を行うコードへの移行を容易にします。 - -**注意:** 4Dバージョン11よりサブテーブルはサポートされていません。旧バージョンのデータベースを変換すると、既存のサブテーブルは標準のテーブルに変換され、自動リレーションにより親テーブルとリンクされます。以前のサブテーブルはNテーブルとなり、親テーブルは1テーブルになります。1テーブル中、以前のサブテーブルフィールドは"サブテーブルリレーション"型の特別なフィールドに変換され、Nテーブルには特別な"サブテーブルリレーション"型のフィールドが“id\_added\_by\_converter”という名称で追加されます。 +**Get subrecord key**コマンドは、変換されたサブテーブルを使用する4Dコードから、標準のテーブルに対して作業を行うコードへの移行を容易にします。4Dバージョン11よりサブテーブルはサポートされていません。旧バージョンのデータベースを変換すると、既存のサブテーブルは標準のテーブルに変換され、自動リレーションにより親テーブルとリンクされます。以前のサブテーブルはNテーブルとなり、親テーブルは1テーブルになります。1テーブル中、以前のサブテーブルフィールドは"サブテーブルリレーション"型の特別なフィールドに変換され、Nテーブルには特別な"サブテーブルリレーション"型のフィールドが“id\_added\_by\_converter”という名称で追加されます。 これは変換されたデータベースにおいてサブテーブルの動作の互換性を保持するためのものです。しかし変換されたデータベースにおいて、すべてのサブテーブルメカニズムを標準のテーブルを使用したメカニズムに置き換えることを強く推奨します。 @@ -80,3 +78,13 @@ displayed_sidebar: docs ``` 上記のコードは、特殊なリレーションに対しても通常のリレーションに対しても有効です。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1137 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md index 8d02eeff79dc30..d71f8c1a090d25 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md @@ -41,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 994 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md index 3b7afa1b3a84fb..bb8ef48e51e1ef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md @@ -33,4 +33,13 @@ displayed_sidebar: docs [GET FIELD ENTRY PROPERTIES](get-field-entry-properties.md) [GET FIELD PROPERTIES](get-field-properties.md) -[GET RELATION PROPERTIES](get-relation-properties.md) \ No newline at end of file +[GET RELATION PROPERTIES](get-relation-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 687 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md index 1cad842377ae6f..d0ae50155ab8bd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET TABLE TITLES コマンドを使用して、ストラクチャウィンドウで、または[SET TABLE TITLES](set-table-titles.md "SET TABLE TITLES") コマンドを用いて定義されたデータベーステーブルの番号と名前を配列 *tableTitles* と *tableNums* に取得します。これら2つの配列の内容は同期化されています。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [GET FIELD TITLES](get-field-titles.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 803 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md index 55a633344ea614..4e07ddb8b06f36 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get text from pasteboard は、ペーストボードに存在するテキストを返します。 @@ -34,4 +31,14 @@ displayed_sidebar: docs [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 524 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md index 4b22d75f2f3cb3..e6cb9ddbc77768 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md @@ -82,4 +82,13 @@ displayed_sidebar: docs #### 参照 -[DISTINCT VALUES](distinct-values.md) \ No newline at end of file +[DISTINCT VALUES](distinct-values.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1141 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md index b700c2f443c518..75313072763ef0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get text resource コマンドは、*resID*に渡されるIDを持つテキスト ("TEXT") リソースに格納されているテキストを返します。 @@ -44,4 +41,14 @@ displayed_sidebar: docs [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 504 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md index 487cd103f3486d..ec163622a472a0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET USER LIST コマンドは、パスワードエディターに表示されるユーザー名とユニークなユーザーID番号を配列 *userNames* と *userNumbers* に返します。 @@ -37,4 +34,14 @@ displayed_sidebar: docs [GET GROUP LIST](get-group-list.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 609 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md index 043a72426496a2..c9301e19de3199 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET USER PROPERTIES コマンドは、引数 *userID* に渡したユニークなユーザーID番号を持つユーザーに関する情報を返します。必ず [GET USER LIST](get-user-list.md) コマンドによって返される有効なユーザーID番号を渡さなければなりません。 @@ -54,4 +51,14 @@ displayed_sidebar: docs [GET USER LIST](get-user-list.md) [Is user deleted](is-user-deleted.md) [Set user properties](set-user-properties.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 611 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md index 73d047f8972cee..dcc75759ee3b71 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET WINDOW RECT** コマンドは*window*に渡された参照番号を持つウィンドウの座標を返します。ウィンドウが存在しない場合、変数引数は変更されません。 @@ -37,4 +34,13 @@ displayed_sidebar: docs #### 参照 [CONVERT COORDINATES](convert-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 443 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md index e9794bc76641a5..00e6b31e931e24 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get window title コマンドは、*window*に渡されたウィンドウ参照番号を持つウィンドウのタイトルを返します。ウィンドウが存在しない場合、空の文字列が返されます。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 -[SET WINDOW TITLE](set-window-title.md) \ No newline at end of file +[SET WINDOW TITLE](set-window-title.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 450 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md index 7e4eb163b2eca5..72af5481fff765 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GOTO OBJECTコマンドは、フォームのアクティブエリアとしてデータ入力オブジェクト*object* を選択するために使用します。これはユーザがフィールドや変数をクリックしたりタブでフォーカスを移動したりするのと同じです。 @@ -51,4 +48,13 @@ GOTO OBJECTコマンドは以下のように使用します: #### 参照 [CALL SUBFORM CONTAINER](call-subform-container.md) -[REJECT](reject.md) \ No newline at end of file +[REJECT](reject.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 206 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md index a090e9a78f79ca..c09e0804a9e71f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md @@ -27,4 +27,15 @@ displayed_sidebar: docs #### 参照 [Record number](record-number.md) -*レコード番号について* \ No newline at end of file +*レコード番号について* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 242 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md index efac4093e77b13..48c3b52240a368 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md @@ -60,4 +60,14 @@ displayed_sidebar: docs #### 参照 -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 245 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md index 8db1c7accf29f1..f5e2d2b2f8fa83 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GOTO XY コマンドは、[Open window](open-window.md "Open window")で開いたウインドウに[MESSAGE](message.md "MESSAGE")コマンドでメッセージを表示する際に使用できます。 @@ -60,4 +57,13 @@ GOTO XY コマンドでカーソルの位置を指定してから、[MESSAGE](me #### 参照 -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 161 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md index c2a24ccc90898a..eb1d96ed490d80 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GRAPH SETTINGS はフォームに表示されるグラフの設定を変更します。グラフは [GRAPH](graph.md) コマンドで定義済みでなければなりません。 GRAPH SETTINGS は円グラフには効果ありません。このコマンドはフォームと同じプロセスで呼び出されていなければなりません。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[GRAPH](graph.md) \ No newline at end of file +[GRAPH](graph.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 298 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph.md index 5dc1c079838197..12f58868678255 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph.md @@ -276,4 +276,13 @@ SVGグラフ中で見つけられる要素には自動で特定のIDが割り当 *Graph Parameters* [GRAPH SETTINGS](graph-settings.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 169 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md index dc294914615e32..380b51342f88c7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 HIDE MENU BARコマンドは、メニューバーを隠します。 @@ -45,4 +42,14 @@ displayed_sidebar: docs [HIDE TOOL BAR](hide-tool-bar.md) [SHOW MENU BAR](show-menu-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 432 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md index 6e51bdf86f4665..e25fb3d002f801 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 HIDE PROCESSは*process*に属するすべてのウィンドウを非表示にします。*process*のすべてのインタフェース要素は、次に[SHOW PROCESS](show-process.md "SHOW PROCESS")コマンドを実行するまで非表示となります。そのプロセスのメニューバーも非表示になります。したがって、プロセスが非表示になっているときにウィンドウを開いても画面が再描画されたり表示されません。プロセスが既に非表示になっている場合、このコマンドは何も実行しません。 @@ -37,4 +34,13 @@ displayed_sidebar: docs #### 参照 [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 324 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md index 33f62d49a62f52..9c110cbb91f728 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **HIDE TOOL BAR** コマンドは、カレントプロセスにおいて[Open form window](open-form-window.md) コマンドで作成されたカスタムのツールバーの表示を管理します。 @@ -41,4 +38,13 @@ OS X において、カスタムのツールバーとHas full screen mode Mac #### 参照 -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 434 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md index 4ac2a07fa8295a..4203bebcbaa55c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 HIDE WINDOWコマンドは、*window*で指定したウィンドウ参照番号を持つウィンドウまたはこの引数省略時はカレントプロセスの最前面ウィンドウを、隠すために使用します。例えばこのコマンドを使用して、複数のプロセスで構成されるアプリケーションで、アクティブなプロセスのウィンドウだけを表示できます。 @@ -47,4 +44,13 @@ HIDE WINDOWコマンドで画したウィンドウを表示するには: #### 参照 -[SHOW WINDOW](show-window.md) \ No newline at end of file +[SHOW WINDOW](show-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 436 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md index 25aaf06851a85f..a696ac3963cc8f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 HIGHLIGHT RECORDS コマンドは、出力フォーム内で指定されたレコードをハイライトします。この動作は、クリックまたは**Shift+クリック**、**Ctrl+クリック** (Windows) や**Command+クリック** (Mac OS) キーコンビネーションを使用し、リストモードでレコードを手動で選択する場合と同じです。カレントセレクションは変更されません。 @@ -49,4 +46,13 @@ displayed_sidebar: docs #### 参照 [GET HIGHLIGHTED RECORDS](get-highlighted-records.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 656 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md index 7894c88ffd252d..45ca92b32f8f67 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **HIGHLIGHT TEXT**コマンドは、*object* 内にあるテキストの一部を反転表示します。 @@ -64,4 +61,13 @@ displayed_sidebar: docs #### 参照 -[GET HIGHLIGHT](get-highlight.md) \ No newline at end of file +[GET HIGHLIGHT](get-highlight.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 210 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md index 613b6be17a4767..90b8a6997210ba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md @@ -25,9 +25,7 @@ displayed_sidebar: docs #### 説明 -**HTTP AUTHENTICATE**コマンドはクライアントアプリケーションの認証を要求するサーバーへのHTTPリクエストを可能にします。 - -*name* *と* *password*引数には必要な認証情報 (ユーザー名とパスワード) を渡します。この情報はエンコードされ、[HTTP Request](http-request.md)または[HTTP Get](http-get.md)を使用して送信されるHTTPリクエストに追加されます。 +**HTTP AUTHENTICATE**コマンドはクライアントアプリケーションの認証を要求するサーバーへのHTTPリクエストを可能にします。*と* *password*引数には必要な認証情報 (ユーザー名とパスワード) を渡します。この情報はエンコードされ、[HTTP Request](http-request.md)または[HTTP Get](http-get.md)を使用して送信されるHTTPリクエストに追加されます。 オプションの*authMethod*引数を使用して、使用する認証メソッドを指定できます。*HTTP Client*テーマの以下の定数を使用できます: @@ -56,4 +54,13 @@ displayed_sidebar: docs #### 参照 -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1161 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md index 3128d2311e1eb3..7fe97992cd71b5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md @@ -40,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1307 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md index f103c0866169e5..40ae4d4661b20d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md @@ -42,4 +42,13 @@ displayed_sidebar: docs #### 参照 -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1159 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md index fa86d1a34374d0..d742402abbbc99 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md @@ -29,9 +29,7 @@ displayed_sidebar: docs #### 説明 -**HTTP Get**コマンドは指定したURLにHTTP GETリクエストを送信し、HTTPサーバーからのレスポンスを処理します。 - -*url* 引数にはリクエストの送信先URLを渡します。シンタックスは以下の通りです: +**HTTP Get**コマンドは指定したURLにHTTP GETリクエストを送信し、HTTPサーバーからのレスポンスを処理します。引数にはリクエストの送信先URLを渡します。シンタックスは以下の通りです: ```RAW http://[{user}:[{password}]@]host[:{port}][/{path}][?{queryString}] @@ -104,4 +102,14 @@ RFCを取得する: #### 参照 -[HTTP Request](http-request.md) \ No newline at end of file +[HTTP Request](http-request.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1157 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md index 14a14eef21f64d..33ffbce29183e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md @@ -14,9 +14,16 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 このコマンドのドキュメントは、[developer.4d.com](https://developer.4d.com/docs/API/HTTPRequestClass/) にあります。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1824 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md index 730b861eaa2832..ec8beb4eaddb99 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md @@ -30,9 +30,7 @@ displayed_sidebar: docs #### -**HTTP Request**コマンドは指定したURLに任意のメソッドでHTTPリクエストを送信し、HTTPサーバーのレスポンスを処理することを可能にします。 - -*httpMethod* 引数にはHTTPリクエストのメソッドを渡します。*HTTP Client*テーマの以下の定数を使用できます: +**HTTP Request**コマンドは指定したURLに任意のメソッドでHTTPリクエストを送信し、HTTPサーバーのレスポンスを処理することを可能にします。引数にはHTTPリクエストのメソッドを渡します。*HTTP Client*テーマの以下の定数を使用できます: | 定数 | 型 | 値 | コメント | | ------------------- | --- | ------- | ---------------------------------------------- | @@ -123,4 +121,13 @@ http://[{user}:[{password}]@]host[:{port}][/{path}][?{queryString}] #### 参照 -[HTTP Get](http-get.md) \ No newline at end of file +[HTTP Get](http-get.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1158 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md index 3940633a3e48ef..6c5190d20a7327 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md @@ -57,4 +57,13 @@ displayed_sidebar: docs #### 参照 [GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) -[HTTP Get certificates folder](http-get-certificates-folder.md) \ No newline at end of file +[HTTP Get certificates folder](http-get-certificates-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1306 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md index 3fb815bc8eb2d5..94e2341ccb5d09 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 [HTTP AUTHENTICATE](http-authenticate.md) -[HTTP GET OPTION](http-get-option.md) \ No newline at end of file +[HTTP GET OPTION](http-get-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1160 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/idle.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/idle.md index 41b75bd102a795..0aed689a6ba3a1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/idle.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/idle.md @@ -50,4 +50,13 @@ EVENT METHODは以下のとおりです: #### 参照 [ON EVENT CALL](on-event-call.md) -*コンパイラコマンド* \ No newline at end of file +*コンパイラコマンド* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 311 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md index 9d9c1e55bde306..b6df86992722b3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md @@ -46,4 +46,14 @@ displayed_sidebar: docs [EXPORT DATA](export-data.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[IMPORT TEXT](import-text.md) \ No newline at end of file +[IMPORT TEXT](import-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 665 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md index dab9bff5dc7a89..45ea8e1c8f0c6d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 IMPORT DIF コマンドは、WindowsまたはMacintoshの標準的なDIF形式のドキュメント*document*から *aTable*にデータを読み込み、新しいレコードを作成します。 @@ -53,4 +50,14 @@ IMPORT DIF を使用する際、デフォルトのフィールド区切り文字 [EXPORT DIF](export-dif.md) [IMPORT SYLK](import-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 86 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md index 47adeeeb72669d..0ce81ac144e737 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **IMPORT STRUCTURE** コマンドは、カレントデータベース内に、 *xmlStructure* に渡した4D XMLストラクチャー定義を読み込みます。 @@ -49,4 +46,13 @@ displayed_sidebar: docs #### 参照 -[EXPORT STRUCTURE](export-structure.md) \ No newline at end of file +[EXPORT STRUCTURE](export-structure.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1310 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md index 92aa6d13e448c4..96605374249a26 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 IMPORT SYLK コマンドは、WindowsまたはMacintoshの標準的なSYLK形式のドキュメント*document*から *aTable*にデータを読み込み、新しいレコードを作成します。 @@ -53,4 +50,14 @@ IMPORT SYLK を使用する際、デフォルトのフィールド区切り文 [EXPORT SYLK](export-sylk.md) [IMPORT DIF](import-dif.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 87 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md index 4a6c83dc5c728c..611da8ec182c4c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 IMPORT TEXT コマンドは、WindowsまたはMacintoshの標準的なテキスト形式のドキュメント*document*から *aTable* にデータを読み込み、新しいレコードを作成します。 @@ -55,4 +52,14 @@ IMPORT TEXT を使用する際、デフォルトのフィールド区切り文 [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 168 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md index aeea3f2ca57caa..e1df7d3c2a3d79 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **In break** はIn break 実行サイクルでTrueを返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [In footer](in-footer.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 113 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md index 5d316a847fe0dc..b4cc2a571d2acd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **In footer** はIn footer 実行サイクルに対してTrueを返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [In break](in-break.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 191 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md index 4fa4a2298537b9..c90d9861e688bd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **In header** はIn header実行サイクルに対してTrueを返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [In break](in-break.md) -[In footer](in-footer.md) \ No newline at end of file +[In footer](in-footer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 112 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md index a83b15ad8fae7b..54e3b9f70fba01 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md @@ -29,4 +29,13 @@ displayed_sidebar: docs [CANCEL TRANSACTION](cancel-transaction.md) [START TRANSACTION](start-transaction.md) [VALIDATE TRANSACTION](validate-transaction.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 397 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md index b1722e998d96aa..aa804d3b1e5c00 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md @@ -44,4 +44,13 @@ displayed_sidebar: docs #### 参照 [DELETE FROM ARRAY](delete-from-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 227 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md index 35f56d91be9e69..230475d006af2b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md @@ -30,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[DELETE FROM BLOB](delete-from-blob.md) \ No newline at end of file +[DELETE FROM BLOB](delete-from-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 559 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md index ed8049fa091146..7fef73a3b9a10d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 INSERT IN LIST コマンドは、*list*に渡されたリスト参照番号またはオブジェクト名のリストに *itemRef*が指定する新規項目を挿入します。 @@ -52,4 +49,13 @@ displayed_sidebar: docs #### 参照 [APPEND TO LIST](append-to-list.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 625 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md index 924fe99235c726..8fb8e670012b69 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **INSERT MENU ITEM** コマンドは、*menu*に渡されたメニュー番号または参照を持つメニューにおいて、*afterItem*に渡された番号の既存のメニュー項目の後ろに新しいメニュー項目を挿入します。 @@ -56,4 +53,14 @@ displayed_sidebar: docs #### 参照 [APPEND MENU ITEM](append-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 412 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md index c8b2182a3aa386..16c2977e82cd6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md @@ -40,4 +40,13 @@ Insert string関数の使用例を次に示します。結果を変数*vtResult* [Change string](change-string.md) [Delete string](delete-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 231 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/int.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/int.md index 24ef72ba5cbb5c..31b5f53f5afe93 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/int.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/int.md @@ -29,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[Dec](dec.md) \ No newline at end of file +[Dec](dec.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 8 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md index 47b8ce8027eac5..19e97e58dd6f8c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md @@ -115,4 +115,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [BLOB to text](blob-to-text.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 548 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md index 941ccaef7e200d..d25d0d6decc51e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md @@ -98,4 +98,14 @@ Blobまたはピクチャーの値の場合、その保存場所に応じて異 #### 参照 -[LOG FILE TO JSON](log-file-to-json.md) \ No newline at end of file +[LOG FILE TO JSON](log-file-to-json.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1312 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md index 7a38a5f8193284..6b133a12f4dce0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md @@ -48,4 +48,13 @@ displayed_sidebar: docs #### 参照 [DIFFERENCE](difference.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 121 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md index df05e333fdc18e..6199f655dd0bb3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **INVOKE ACTION**コマンドは*action* 引数で定義された標準アクションを、任意の*target* 引数で指定したコンテキストでトリガーします。 @@ -65,4 +62,13 @@ displayed_sidebar: docs #### 参照 -[Action info](action-info.md) \ No newline at end of file +[Action info](action-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1439 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md index 49d1a2d1d1b781..bc70b828d66287 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Is a list コマンドは、*list* 引数で指定された値が階層リストの有効な参照の場合[True](true.md "True")を返します。それ以外の場合[False](false.md "False")を返します。 @@ -25,3 +22,13 @@ displayed_sidebar: docs [CLEAR LIST](clear-list.md "CLEAR LIST")コマンドの例題参照 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 621 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md index 16a55de4d33432..349fcf121771f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 [Is nil pointer](is-nil-pointer.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 294 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md index 0c155f6fe9712f..e774502583e8bd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md @@ -40,4 +40,13 @@ displayed_sidebar: docs #### 参照 [IDLE](idle.md) -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 492 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md index 336525aba3f901..9624d10a7c58fa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md @@ -29,3 +29,13 @@ displayed_sidebar: docs     QUIT 4D  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 716 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md index d43100477b2646..6bbd060f2a01f8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Is editing text** は、ユーザーが入力フォームオブジェクトに値を入力中であれば**True** を、それ以外の場合には**False** を返します。 @@ -60,4 +57,13 @@ displayed_sidebar: docs [FILTER KEYSTROKE](filter-keystroke.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1744 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md index bbfc453c89fb67..077d77ba02cf4c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md @@ -24,4 +24,13 @@ displayed_sidebar: docs #### 参照 [Last table number](last-table-number.md) -[Is table number valid](is-table-number-valid.md) \ No newline at end of file +[Is table number valid](is-table-number-valid.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1000 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md index bdd27ff79dd67e..f23786dba1e096 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md @@ -27,4 +27,13 @@ displayed_sidebar: docs #### 参照 [Null](null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 964 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md index 79814e33f2b638..94c499a2631fea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Is in print preview**コマンドは印刷ダイアログボックスで印刷プレビューオプションが選択されている場合Trueを返し、そうでなければFalseを返します。この設定はカレントプロセスに対し有効です。 @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 [Get print preview](get-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1198 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md index 214e82aeca9c8d..11f48f119f6e42 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md @@ -34,4 +34,13 @@ displayed_sidebar: docs #### 参照 [ADD TO SET](add-to-set.md) -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 273 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md index 9ff79ec1127635..db0c783b89a633 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Is license available コマンドを使用して、プラグインの有効性を確認することができます。例えば、プラグインが必要な機能を表示または非表示にする際に有効です。 @@ -47,4 +44,13 @@ Is license available コマンドは次のような3通りの使用が可能で [License info](license-info.md) [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 714 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md index 109609ea45c71b..ad38462acaad70 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 [System info](system-info.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1572 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md index 1ec5d0d791b182..ad52d788aaf5cb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Is new record コマンドは、カレントプロセス内で、指定された*aTable*のカレントレコードが未保存の新規レコードの場合に[True](true.md "True")を返します。 - -**互換性メモ:** [Record number](record-number.md "Record number")コマンドが-3を返すかどうかで同じ情報を得ることができます。 +Is new record コマンドは、カレントプロセス内で、指定された*aTable*のカレントレコードが未保存の新規レコードの場合に[True](true.md "True")を返します。[Record number](record-number.md "Record number")コマンドが-3を返すかどうかで同じ情報を得ることができます。 しかしこの目的では[Record number](record-number.md "Record number")の代りにIs new recordを使用することを強くお勧めします。実際、Is new recordコマンドは4Dの将来のバージョンとのより優れた互換性を保証します。 **4D Server:** このコマンドは、On Validateフォームイベントにおいては、4Dローカルモードと4Dリモートモードで異なる値を返します。ローカルモードでは[False](false.md "False") (レコードは既に作成されていると扱われるため) を返します。リモートモードでは[True](true.md "True")を返します。なぜならば、レコードは4D Server上に作成されていますが、クライアントにこの情報はまだ通知されていないためです。 @@ -43,4 +41,13 @@ displayed_sidebar: docs #### 参照 [Modified record](modified-record.md) -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 668 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md index 4934ee004f8244..f9e38cd9afb1bc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md @@ -35,4 +35,13 @@ displayed_sidebar: docs #### 参照 [Is a variable](is-a-variable.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 315 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md index 94b751dcc6b47d..aac7605c1d4dfa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md @@ -27,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1113 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md index 1081916f485c8a..11ab78e29a6227 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Is record loaded** コマンドは、*aTable*のカレントレコードがカレントプロセス内にロードされていれば[True](true.md "True")を返します。 - -**4D Server**: 原理的には、テーブル同士が自動リレーションでリンクされている場合、リレート先テーブルのカレントレコードは自動でロードされます (*リレーションについて* 参照)。しかし 4D Server は最適化のため、リレートレコードのフィールドの読み込みや編集などの必要なときにだけ、これらのレコードをロードします。そのため、ローカルモードでは **Is record loaded** コマンドが True を返すような場合でも、リモートモードでは同コマンドは False を返します。 +**Is record loaded** コマンドは、*aTable*のカレントレコードがカレントプロセス内にロードされていれば[True](true.md "True")を返します。参照)。しかし 4D Server は最適化のため、リレートレコードのフィールドの読み込みや編集などの必要なときにだけ、これらのレコードをロードします。そのため、ローカルモードでは **Is record loaded** コマンドが True を返すような場合でも、リモートモードでは同コマンドは False を返します。 #### 例題 @@ -43,3 +41,13 @@ displayed_sidebar: docs     End if  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 669 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md index 386fa9545e793f..909a4716804252 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 999 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md index dfa6052b88b11c..f3359d4bec8f1f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Is user deleted コマンドを使用して、引数 *userID* に渡したユニークなユーザーID番号を持つユーザーアカウントをテストします。 @@ -31,4 +28,14 @@ displayed_sidebar: docs [DELETE USER](delete-user.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 616 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md index 299b6f0fc84e85..f237aa2eb7210a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 The **Is waiting mouse up** コマンドはカレントオブジェクトがクリックされて、かつマウスボタンがリリースされておらず、親ウィンドウにフォーカスが入っている場合に**True**を返します。そうでない場合、例えばマウスボタンがリリースされる前に親ウィンドウのフォーカスが外れてしまった場合などには**False**を返します。 @@ -52,4 +49,13 @@ displayed_sidebar: docs #### 参照 -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1422 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md index 1a272bd0be5e97..462c15141e27fd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Is window maximized** コマンドは*window* 引数に参照を渡したウィンドウが現在最大化されていれば **True** を、それ以外の場合には**False** を返します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 [Is window reduced](is-window-reduced.md) -[MAXIMIZE WINDOW](maximize-window.md) \ No newline at end of file +[MAXIMIZE WINDOW](maximize-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1830 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md index eaf36ac46cfbc7..f2ddb673a03c45 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Is window reduced** コマンドは*window* 引数に参照を渡したウィンドウがタスクバー(Windows)またはDock(macOS)に収納されている場合には**True** を、それ以外の場合には**False** を返します。 @@ -24,4 +21,13 @@ displayed_sidebar: docs #### 参照 [Is window maximized](is-window-maximized.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1831 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md index f30a2a51ce33b4..2dec3d55c189c2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 [System info](system-info.md) -[Is macOS](is-macos.md) \ No newline at end of file +[Is macOS](is-macos.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1573 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md index 07e3edf2780afd..c0bd87379b9f98 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md @@ -57,4 +57,13 @@ displayed_sidebar: docs #### 参照 [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1219 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md index e4d220711fddcb..12b1fc3101f8e5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md @@ -184,4 +184,13 @@ beta[1].golf:{line:10,offset:12}}} *Field and Variable Types* [JSON PARSE ARRAY](json-parse-array.md) [JSON Stringify](json-stringify.md) -[JSON Validate](json-validate.md) \ No newline at end of file +[JSON Validate](json-validate.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1218 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md index 1aa18241208a6f..998b9d2c7154a3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md @@ -229,4 +229,13 @@ JSON ポインターは再帰的に解決されます。これはつまりポイ #### 参照 - \ No newline at end of file + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1478 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md index 9e0860db0f0f41..7b040493f41c82 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md @@ -107,4 +107,13 @@ displayed_sidebar: docs #### 参照 [JSON PARSE ARRAY](json-parse-array.md) -[JSON Stringify](json-stringify.md) \ No newline at end of file +[JSON Stringify](json-stringify.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1228 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md index a5368a7f7ebc8b..9db6372577df1f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md @@ -172,4 +172,13 @@ $myTxtCol="[33,"mike","2017-08-28",false]" #### 参照 [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1217 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md index a6aa9010cf02f8..2a88bd7bc655c2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md @@ -67,4 +67,13 @@ displayed_sidebar: docs #### 参照 -[Selection to JSON](selection-to-json.md) \ No newline at end of file +[Selection to JSON](selection-to-json.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1235 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md index e17de526397ab5..4a2407480a2ead 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md @@ -103,4 +103,13 @@ JSON オブジェクトをスキーマで評価して、その評価エラーの -[JSON Parse](json-parse.md) \ No newline at end of file +[JSON Parse](json-parse.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1456 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md index 1241a3c046e686..43eaf9e4c0115e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Keystroke はユーザがフィールドや入力可能エリアに入力した文字を返します。 @@ -170,4 +167,13 @@ $2->:=$vtNewValue [FILTER KEYSTROKE](filter-keystroke.md) [Form event code](../commands/form-event-code.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 390 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md index fc9b1fecc34833..c1155624ecbe15 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md @@ -52,4 +52,13 @@ displayed_sidebar: docs [CALL WORKER](call-worker.md) [Current process name](current-process-name.md) -*ワーカーについて* \ No newline at end of file +*ワーカーについて* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1390 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md index 3cd0db434f5b69..ed3d7f9f84a252 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md @@ -31,4 +31,13 @@ displayed_sidebar: docs #### 参照 [ON ERR CALL](on-err-call.md) -[throw](throw.md) \ No newline at end of file +[throw](throw.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1799 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md index 0bf75572f767e4..12551575bfcd98 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md @@ -41,4 +41,13 @@ displayed_sidebar: docs [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 255 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md index a9fcbb6cbe2d77..2cbb709877b23c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1045 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md index 610e6862dc6309..30719995344b53 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md @@ -33,4 +33,13 @@ displayed_sidebar: docs #### 参照 [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query path](last-query-path.md) \ No newline at end of file +[Last query path](last-query-path.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1046 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md index 144281b17f0edc..a3b72b0714238b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md @@ -31,4 +31,14 @@ displayed_sidebar: docs [End selection](end-selection.md) [FIRST RECORD](first-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 200 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md index 0e63c6aaff9285..fc1a43b5eb7911 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md @@ -38,4 +38,13 @@ displayed_sidebar: docs [Last field number](last-field-number.md) [Is table number valid](is-table-number-valid.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 254 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md index 3a0885ccd0bfba..55c28ee4d827b2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md @@ -139,4 +139,14 @@ Application/UtilitiesフォルダにあるmacOS ターミナルを使用しま #### 参照 [OPEN URL](open-url.md) -[SET ENVIRONMENT VARIABLE](set-environment-variable.md) \ No newline at end of file +[SET ENVIRONMENT VARIABLE](set-environment-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 811 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md index ad95b36fc0fe20..bf3dfcb84b648d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LDAP LOGIN** コマンドは*url* 引数で指定したLDAPサーバーに対し、*login* 引数と *password* 引数に渡された識別子をもって読み込み専用の接続を開きます。サーバーに受け入れられた場合、[LDAP LOGOUT](ldap-logout.md) コマンドが実行されるまで(あるいはプロセスが閉じられるまで)、カレントプロセスにおいてその後に実行される全てのLDAP検索にはこの接続が使用されます。 @@ -97,4 +94,13 @@ LDAPサーバーにログインして、検索をしたい場合を考えます: #### 参照 *LDAP* -[LDAP LOGOUT](ldap-logout.md) \ No newline at end of file +[LDAP LOGOUT](ldap-logout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1326 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md index 43f5c23b75a355..35daea38d04859 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md @@ -12,13 +12,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LDAP LOGOUT** コマンドカレントプロセスにおいて、LDAPサーバーとの接続を(開いていた場合)閉じます。接続がなかった場合、1003エラーが返されて、ログインしていないことが警告されます。 #### 参照 -[LDAP LOGIN](ldap-login.md) \ No newline at end of file +[LDAP LOGIN](ldap-login.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1327 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md index e5155f23298435..0adc0764a1d76f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LDAP SEARCH ALL** コマンドは、ターゲットとなるLDAPサーバー内のオカレンスのうち、定義された条件に合致するものを全て検索します。このコマンドは*LDAP LOGIN*によって開かれたLDAPサーバーへの接続の中で実行される必要があります(それ以外の場合にはエラー1003が返されます)。 @@ -117,4 +114,13 @@ LDAPサーバーには通常、検索のために受け付けられるエント #### 参照 *LDAP* -[LDAP Search](ldap-search.md) \ No newline at end of file +[LDAP Search](ldap-search.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1329 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md index 4691ab32e12f29..1da2115e6d732d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LDAP Search** コマンドはターゲットとなるLDAPサーバー内にて、定義された条件に合致する最初のオカレンスを検索します。このコマンドは*RuntimeVLIncludeIt* によって開かれたLDAPサーバーへの接続の中で実行される必要があります(それ以外の場合にはエラー1003が返されます)。 @@ -85,4 +82,13 @@ displayed_sidebar: docs #### 参照 *LDAP* -[LDAP SEARCH ALL](ldap-search-all.md) \ No newline at end of file +[LDAP SEARCH ALL](ldap-search-all.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1328 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/length.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/length.md index 1e3686ec4e360c..f2a42824e9bd87 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/length.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/length.md @@ -28,3 +28,13 @@ Lengthの使用例を次に示します。結果を変数*vlResult*に代入し  vlResult:=Length("Topaz") // vlResultは5  vlResult:=Length("Citizen") // vlResultは7 ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 16 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/level.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/level.md index 56758c25886eb0..1326477a4d08bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/level.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Levelは、現在のブレークまたはヘッダのレベルを調べるために使用します。このコマンドは、On HeaderおよびOn Printing Breakイベント中でレベル数を返します。 @@ -68,4 +65,13 @@ displayed_sidebar: docs [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Form event code](../commands/form-event-code.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 101 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md index 75b161023ba975..68d1873fb923e0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md @@ -71,3 +71,13 @@ displayed_sidebar: docs | sessionID | テキスト | REST セッションID | | IPAddress | テキスト | REST セッションを開始したクライアントのID | | isDatastore | ブール | REST リクエストがデータストアから来たものであればTrue | + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1782 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md index 548a0659142925..94287da33864fb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 List item parent コマンドは、親項目の項目参照番号を返します。 @@ -70,4 +67,13 @@ displayed_sidebar: docs [GET LIST ITEM](get-list-item.md) [List item position](list-item-position.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 633 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md index a480dcb5a5ccf3..b0caf48acea3e8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 List item position コマンドは、*list*に渡された項目参照番号またはオブジェクト名リスト中で、*itemRef*で指定した項目の位置を返します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 [Count list items](count-list-items.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 629 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md index dc8b1ea1ac580d..637d531c506d80 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md @@ -14,11 +14,18 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LIST OF CHOICE LISTS コマンドは同期された*numsArr* と *namesArr* 配列に、デザインモードのリストエディタで定義された選択リストの番号と名前を返します。 選択リストの番号はそれが作られた順番に対応します。リストエディタ中、リストは名前順に表示されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 957 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md index 1b937ab53f40c8..59735caf9b7497 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LIST OF STYLE SHEETS**コマンドは、*arrStyleSheets*配列にアプリケーション内のスタイルシートのリストを返します。. @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 [GET STYLE SHEET INFO](get-style-sheet-info.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1255 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md index db042a187d97f3..429e6c24fb56f3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LIST TO ARRAY コマンドは、*list* で指定したリストまたは選択リストの第一レベルの項目で、配列*array*を作成または上書きします。 @@ -86,4 +83,13 @@ displayed_sidebar: docs [ARRAY TO LIST](array-to-list.md) [Load list](load-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 288 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md index 6c9cae39f99814..b956b59a44441c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LIST TO BLOB コマンドは、*blob*に階層リスト*list*を格納します。 @@ -49,4 +46,14 @@ LIST TO BLOBや[BLOB to list](blob-to-list.md "BLOB to list")は、 BLOBに格 [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) [SAVE LIST](save-list.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 556 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md index 83f126b45876a0..1cbba9945ed558 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX COLLAPSE コマンドを使用して *object*と*\** で指定したリストボックスのブレーク行を折りたたみます。 @@ -52,4 +49,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX EXPAND](listbox-expand.md) \ No newline at end of file +[LISTBOX EXPAND](listbox-expand.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1101 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md index e45f50127d695d..7e0bbe60920fb7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX DELETE COLUMN コマンドは、引数*object*および *\** で指定されたリストボックスから1つ以上の列 (表示または非表示) を取り除きます。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get number of columns](listbox-get-number-of-columns.md) -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 830 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md index fe7456585ec3cc..7edf079a445041 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX DELETE ROWS**コマンドは、*object*引数および *\** で指定されたリストボックスから、*rowPosition* から始まるひとつ以上の行(表示または非表示)を削除します。 @@ -37,4 +34,14 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get number of rows](listbox-get-number-of-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 914 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md index 4b42adc99fcd4b..bcc95c0fdca9f0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX DUPLICATE COLUMN**コマンドは、 *object* と *\** 演算子によって指定された列を、プログラムによって実行中のフォームにおいて複製します。(アプリケーションモード) @@ -95,4 +92,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX MOVE COLUMN](listbox-move-column.md) \ No newline at end of file +[LISTBOX MOVE COLUMN](listbox-move-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1273 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md index a7261e8e7d1701..6412dfbb7fd695 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX EXPAND コマンドは*object*と*\**で指定したリストボックスオブジェクトのブレーク行を展開するために使用します。 @@ -81,4 +78,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX COLLAPSE](listbox-collapse.md) \ No newline at end of file +[LISTBOX COLLAPSE](listbox-collapse.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1100 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md index 7fe7712abe6ad9..c061593afa1a2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -62,4 +59,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX GET ARRAYS](listbox-get-arrays.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1278 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md index ad81f1a2cc07a5..d759d85ec1ff5c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET ARRAYS**コマンドは一連の同期化された配列を返し、*object*引数および *\** で指定されたリストボックスの各列(表示または非表示)に関する情報を提供します。 @@ -51,4 +48,13 @@ displayed_sidebar: docs [LISTBOX Get array](listbox-get-array.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 832 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md index 110a349e0fd25f..8d90ff66550589 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get auto row height** コマンドは、*object* 引数および *\** 引数を使用して指定したリストボックスオブジェクトの行の高さのカレンとの最小値あるいは最大値を返します。 @@ -57,4 +54,13 @@ displayed_sidebar: docs [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) \ No newline at end of file +[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1502 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md index fad257c1456f62..37aa7dd3c2319f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX GET CELL COORDINATES コマンドは引数 *\** および*object*によって指定されたリストボックス内の、*column* と *row* 引数で指定したセルの*left*、*top*、*right* および *bottom*にそれぞれ左端、上端、右端、下端の座標を(ポイント単位で)返します。 @@ -55,4 +52,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[OBJECT GET COORDINATES](object-get-coordinates.md) \ No newline at end of file +[OBJECT GET COORDINATES](object-get-coordinates.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1330 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md index f2ceefe85551a4..6f66e11ddd44d1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET CELL POSITION** コマンドは、*object*および *\** で指定されたリストボックスの最後にクリックされた位置に対応する位置、あるいはキーボードアクションで選択されたセルの位置、あるいはマウスの水平・垂直座標を*column* と*row* 引数に返します。 @@ -55,4 +52,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) -[LISTBOX SELECT BREAK](listbox-select-break.md) \ No newline at end of file +[LISTBOX SELECT BREAK](listbox-select-break.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 971 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md index 95f32e93378ab3..592f1e517e04da 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get column formula**コマンドは*object*と*\** 引数で指定したリストボックス列に割り当てられたフォーミュラを返します。フォーミュラはリストボックスプロパティのデータソースが**カレントセレクション**、**命名セレクション**、あるいは**コレクションまたはエンティティセレクション**の場合のみ使用できます。列にフォーミュラが割り当てられていない場合、コマンドは空の文字列を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) \ No newline at end of file +[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1202 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md index dc4736d0e50033..f7ffd97d84a59b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX Get column width コマンドは、*object*引数および *\** で指定された列の幅(ピクセル単位)を返します。*object*引数には、リストボックスの列や列ヘッダを渡すことができます。 @@ -31,4 +28,13 @@ LISTBOX Get column width は列サイズ変更の制限値を *minWidth* と *ma #### 参照 -[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) \ No newline at end of file +[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 834 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md index f43a9e013cec28..a24f789665994f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get footer calculation**コマンドは*object*と*\** 引数で指定したリストボックスのフッターエリアに割り当てられた自動計算のタイプを返します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) \ No newline at end of file +[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1150 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md index 4ec44bd8b834c5..7bd0196cc562e8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get footers height**コマンドは*object*と*\** 引数で指定したリストボックスのフッター行の高さを返します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) \ No newline at end of file +[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1146 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md index be29e029cc165e..af42f45068d50b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET GRID COLORS**コマンドは*object*と*\** 引数で指定したリストボックスの縦横グリッドカラーをそれぞれ返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1200 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md index 3d6e36fb5e9cce..7abc608499f41d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET GRID**コマンドは*object* と *\** 引数で指定したリストボックスオブジェクトの縦横グリッド線の表示/非表示状態をそれぞれ返します。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET GRID](listbox-set-grid.md) \ No newline at end of file +[LISTBOX SET GRID](listbox-set-grid.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1199 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md index f2d1bb1acc47a2..16beb22983d423 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get headers height**コマンドは*object*と*\** 引数で指定したリストボックスのヘッダー行の高さを返します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) \ No newline at end of file +[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1144 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md index 7090223bd0cf0b..c8bc5dd6fe18f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX GET HIERARCHY コマンドを使用して *object*と*\**で指定したリストボックスのプロパティが階層であるかどうかを知ることができます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) \ No newline at end of file +[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1099 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md index 9dc77469ed132f..64a62ab7773f3a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get locked columns**コマンドは*object*と *\** 引数で指定したリストボックスで横スクロールしない列数を返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1152 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md index 48ad469bd58e4f..86473ffd12c546 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX Get number of columns コマンドは、*object*引数および *\** で指定されたリストボックスに存在する列(表示または非表示)の合計数を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX DELETE COLUMN](listbox-delete-column.md) \ No newline at end of file +[LISTBOX DELETE COLUMN](listbox-delete-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 831 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md index 3ba9844695a35a..e4a72bcc9f000c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX Get number of rowsコマンドは、*object*引数および *\** で指定されたリストボックスの行の数を返します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX DELETE ROWS](listbox-delete-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 915 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md index 1703b38ed189ab..0f3994ceb01956 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET OBJECTS** コマンドは 、*object* と*\** 演算子で指定したリストボックスを構成するオブジェクトの、それぞれの名前を含んだ配列を返します。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 [FORM LOAD](../commands/form-load.md) -[OBJECT Get type](object-get-type.md) \ No newline at end of file +[OBJECT Get type](object-get-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1302 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md index c4209f791801a3..7d367fcac45d0c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX GET PRINT INFORMATION コマンドは *object*と*\**で指定したリストボックスオブジェクトの印刷に関連する現在の情報を返します。このコマンドを使用してリストボックスの内容の印刷を制御します。 @@ -69,3 +66,13 @@ displayed_sidebar: docs     PAGE BREAK  Until($GlobalPrinted>=500) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1110 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md index 25e0b6343d932e..6634a2f60d7dad 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get property**コマンドは、引数*object*および *\** で指定されたリストボックスまたはカラムについて、*property* の値を返します。 @@ -103,4 +100,13 @@ displayed_sidebar: docs [LISTBOX SET GRID](listbox-set-grid.md) [LISTBOX SET PROPERTY](listbox-set-property.md) -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 917 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md index bb32225f97afa7..30b33a57482d27 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -61,4 +58,13 @@ displayed_sidebar: docs *List Box* [LISTBOX Get row color](listbox-get-row-color.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1271 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md index 4c8354339e49c9..97cdc1f8fb83ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型リストボックスに対してのみ利用できます。 @@ -59,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1658 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md index 151c0404e7eeed..808e53a4f11418 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1269 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md index 0ecc33126ffa14..cf164706057c78 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get row height** コマンドは、*object* および *\** パラメーターで指定されたリストボックスの、*row* で指定された行の高さを返します。行の高さは、[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md)コマンド、あるいはプロパティリストを使うなどしてグローバルに指定するほかに、[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) コマンドを使って個別に指定することもできます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1408 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md index f05bedc6e54e65..027266e26b245f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get rows height**コマンドは、*object*引数および *\** で指定されたリストボックスの現在の行の高さを返します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get row height](listbox-get-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 836 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md index ba86f384815370..e19c610f32a57d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get static columns**コマンドは*object* と*\** 引数で指定したリストボックス中のドラッグで移動しない列数を返します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1154 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md index 588c66834eb049..0c01224fb22fa7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET TABLE SOURCE**コマンドを使用して、*object*と *\** 引数で指定したリストボックスに表示されるデータの現在のソースを知ることができます。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) \ No newline at end of file +[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1014 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md index cb3c03ff8737e5..8d90d1b78fe073 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX INSERT COLUMN FORMULA**コマンドは、*object*引数および *\** で指定されたリストボックスに列を挿入します。 @@ -121,4 +118,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 970 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md index 8c28bf0f9be107..8611fce46ee710 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX INSERT COLUMN**コマンドは、*object*引数および *\** で指定されたリストボックスに列を挿入します。 @@ -98,4 +95,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX DELETE COLUMN](listbox-delete-column.md) -[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) \ No newline at end of file +[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 829 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md index a8e6e391793d6d..afe6522637d5be 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX INSERT ROWS**コマンドは、*object*引数および *\** で指定されたリストボックスにひとつ以上の新しい行を挿入します。 @@ -35,4 +32,14 @@ displayed_sidebar: docs #### 参照 -[LISTBOX DELETE ROWS](listbox-delete-rows.md) \ No newline at end of file +[LISTBOX DELETE ROWS](listbox-delete-rows.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 913 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md index 4871e569e57fc7..31eecc46622a0f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX MOVE COLUMN**コマンドは、 *object* と *\** によって指定された列を、プログラムによって実行中のフォームにおいて移動させます。(アプリケーションモード)デザインモードで生成されたオリジナルのフォームは変更されません。 @@ -42,4 +39,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) \ No newline at end of file +[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1274 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md index 619bb50f4b07da..64ef74b849ecf6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX MOVED COLUMN NUMBER コマンドは、引数*object*および *\** で指定されたリストボックス内で移動された列の以前の位置*oldPosition*と新しい位置*newPosition*を返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) \ No newline at end of file +[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 844 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md index 8a1f4c79b1acac..b5611f7bae00d2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX MOVED ROW NUMBER コマンドは、引数*object*および *\** で指定されたリストボックス内で移動された行の以前の位置*oldPosition*と新しい位置*newPosition*を返します。 @@ -34,4 +31,13 @@ displayed_sidebar: docs #### 参照 [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) \ No newline at end of file +[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 837 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md index 61c2bbfd6975f5..0436c386a3a610 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SELECT BREAK** を使用して *object*と*\**で指定したリストボックス中でブレーク行を選択できます。リストボックスは階層モードで表示されていなければなりません。 @@ -63,4 +60,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1117 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md index bb79203a517f41..dd49baf3a603b9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SELECT ROW** コマンドは、 *object* 引数および *\** で指定されたリストボックス内において、*position* に渡した番号の行を選択します。 @@ -55,4 +52,13 @@ displayed_sidebar: docs [LISTBOX INSERT ROWS](listbox-insert-rows.md) [LISTBOX SELECT BREAK](listbox-select-break.md) [LISTBOX SELECT ROWS](listbox-select-rows.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 912 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md index 573d8ed8d0a178..e9171622ddae08 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SELECT ROWS** コマンドはエンティティセレクション型リストボックス/コレクション型リストボックスにおいて、*selection* 引数で指定したエンティティまたはオブジェクトに対応する行を選択します。 @@ -85,4 +82,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1715 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md index e1b686acce1a00..00b185621a545e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -66,4 +63,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get array](listbox-get-array.md) -[LISTBOX GET ARRAYS](listbox-get-arrays.md) \ No newline at end of file +[LISTBOX GET ARRAYS](listbox-get-arrays.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1279 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md index 8b21472f9af281..a631b23ab48187 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET AUTO ROW HEIGHT** コマンドは、*object* 引数および *\** 引数を使用して指定したリストボックスオブジェクトの行の高さの最小値あるいは最大値を、*value* 引数で設定します。 @@ -59,4 +56,13 @@ displayed_sidebar: docs [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1501 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md index e72fd226169b05..48272bf52cb418 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET COLUMN FORMULA**コマンドは*object*と*\** 引数で指定したリストボックス列に割り当てられた*formula*を変更します。フォーミュラはリストボックスプロパティのデータソースが**カレントセレクション**、**命名セレクション**、あるいは**コレクションまたはエンティティセレクション**の場合のみ使用できます。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get column formula](listbox-get-column-formula.md) -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1203 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md index 248cd58f845803..76f9add7712a1e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET COLUMN WIDTH** コマンドを使用し、 *object*引数および *\** で指定されたオブジェクト(リストボックス、列、またはヘッダ)の任意の列の幅、またはすべての列の幅をプログラムから変更することができます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX Get column width](listbox-get-column-width.md) \ No newline at end of file +[LISTBOX Get column width](listbox-get-column-width.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 833 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md index 41da071d7e4f67..c99f85a7a082cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET FOOTER CALCULATION**コマンドは*object* と *\** 引数で指定したリストボックスのフッターに割り当てる自動計算を設定します。 @@ -52,4 +49,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) \ No newline at end of file +[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1140 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md index 872a97d86f50e0..58b14f9254e0c3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET FOOTERS HEIGHT**コマンドは*object*と*\** 引数で指定したリストボックスのフッター行の高さを変更します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX Get footers height](listbox-get-footers-height.md) \ No newline at end of file +[LISTBOX Get footers height](listbox-get-footers-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1145 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md index ae6a23cafa3956..b102a9a181802a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET GRID COLOR** コマンドを使用し、 *object* 引数および *\** で指定されたリストボックスオブジェクト上のグリッドの色を変更することができます。 @@ -37,4 +34,13 @@ displayed_sidebar: docs [LISTBOX GET GRID COLORS](listbox-get-grid-colors.md) [LISTBOX SET GRID](listbox-set-grid.md) -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 842 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md index c0b56139681287..753f292505d87c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET GRID**コマンドを使用し、*object*引数および *\** で指定されたリストボックスのグリッドを構成する、横および縦グリッドラインを表示、または非表示に設定することができます。 @@ -31,4 +28,13 @@ displayed_sidebar: docs [LISTBOX GET GRID](listbox-get-grid.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 841 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md index 63da043d97dbb3..0c46da0afbaf5f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET HEADERS HEIGHT**コマンドは*object*と*\** 引数で指定したリストボックスのヘッダー行の高さを変更します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX Get headers height](listbox-get-headers-height.md) \ No newline at end of file +[LISTBOX Get headers height](listbox-get-headers-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1143 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md index a5d28d3b5a0eb7..a161a911a6cc34 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX SET HIERARCHY コマンドを使用して*object*と*\**で指定されたリストボックスを階層モードにするか非階層モードにするか設定できます。. @@ -53,4 +50,13 @@ aCountry、aRegion、そしてaCity配列をリストボックスの階層とし #### 参照 -[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) \ No newline at end of file +[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1098 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md index 445f2082126417..3635886c1131c6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET LOCKED COLUMNS**コマンドは*object* と*\** 引数で指定したリストボックスで左端からはじめて*numColumns*列をロックします。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get locked columns](listbox-get-locked-columns.md) -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1151 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md index a17d7d1e80cff3..622c71ba48c4af 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET PROPERTY**コマンドは、引数*object*および *\** で指定されたリストボックスまたはカラムについて、*property* に *value* の値を設定します。 @@ -86,4 +83,13 @@ displayed_sidebar: docs *List Box* -[LISTBOX Get property](listbox-get-property.md) \ No newline at end of file +[LISTBOX Get property](listbox-get-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1440 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md index 2e74b8400fcae2..5ac3b5f1250ec3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -66,4 +63,13 @@ displayed_sidebar: docs *List Box* [LISTBOX Get row color](listbox-get-row-color.md) [LISTBOX Get row color as number](listbox-get-row-color-as-number.md) -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1270 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md index 0b26154c878f4a..f4a26a315c8bf5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -79,4 +76,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get row font style](listbox-get-row-font-style.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1268 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md index c85b81ee5a0ee8..16f233cc53af69 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET ROW HEIGHT** コマンドは、*object* および *\** パラメーターで指定されたリストボックスの、*row* で指定された行の高さを変更します。 @@ -84,4 +81,13 @@ displayed_sidebar: docs [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1409 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md index 896c2e54ca24d7..5e545381486f92 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET ROWS HEIGHT**コマンドを使用すると、*object*引数および *\** で指定されたリストボックス内の行の高さをプログラムで変更することができます。 @@ -38,4 +35,13 @@ displayed_sidebar: docs [LISTBOX Get rows height](listbox-get-rows-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 835 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md index 21f05c5d4af231..cd8b1b4783bbb2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET STATIC COLUMNS**コマンドは*object* と *\** 引数で指定したリストボックス中のスタティック列の数を左端から*numColumns*に設定します。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get static columns](listbox-get-static-columns.md) -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1153 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md index 1eb99343ff9e58..c0f51c2658d822 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET TABLE SOURCE**コマンドは、*\** と *object* 引数で指定されるリストボックスに表示されるデータのソースを変更するために使用します。 @@ -39,4 +36,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) \ No newline at end of file +[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1013 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md index 4055361a11db3a..c2f800ffa9654c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX SORT COLUMNS コマンドは、1つ以上の列の値に基づいて、*object* 引数および*\**で指定されたリストボックスの行に対して、標準の並べ替えを適用します。 @@ -36,3 +33,13 @@ displayed_sidebar: docs リストボックス操作の原則に従い、それぞれの列は同期化されます。つまり列の並び順は、自動的にそのオブジェクトの他のすべての列に受け継がれます。 **注意:** **LISTBOX SORT COLUMNS** コマンドは、*Sortable* リストボックスプロパティを考慮しません。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 916 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md index fc477d34443f8a..162af557eae50f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md @@ -194,3 +194,13 @@ displayed_sidebar: docs ``` **注:** 返されるobject についてのフォーマットについてのより詳細な情報については、4D テクニカルサービスにお問い合わせください。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1528 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md index a67e10a2b591a1..2d3018f066dc68 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Load list は、*listName*で指定した名前のリストのコピーを作成し、そのリスト参照番号を返します。 @@ -51,4 +48,13 @@ displayed_sidebar: docs [CLEAR LIST](clear-list.md) [Is a list](is-a-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 383 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md index 4db1b8b72c4000..e519f205a359e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md @@ -34,4 +34,13 @@ displayed_sidebar: docs [Locked](locked.md) [UNLOAD RECORD](unload-record.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 52 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md index 7780a598e0508a..0e8db361c9c049 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md @@ -41,4 +41,14 @@ displayed_sidebar: docs #### 参照 -[SAVE SET](save-set.md) \ No newline at end of file +[SAVE SET](save-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 185 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md index 3d7c00a3fdead5..834eea16d4c81b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md @@ -44,4 +44,14 @@ displayed_sidebar: docs [BLOB TO VARIABLE](blob-to-variable.md) [DOCUMENT TO BLOB](document-to-blob.md) [RECEIVE VARIABLE](receive-variable.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 74 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md index 7e23d212036a66..43f103cc843084 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md @@ -65,4 +65,13 @@ Resources フォルダの中身は以下のようになっています: #### 参照 -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1105 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md index 1501ee75b53ffe..20c8d20a566c91 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md @@ -54,4 +54,14 @@ Note: XLIFFは大文字小文字を区別します。 #### 参照 -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 991 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md index 604c30d76ab5c9..4311ebe128a437 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md @@ -19,7 +19,7 @@ displayed_sidebar: docs #### 説明 -LOCKED BY は、レコードをロックしたユーザやプロセスに関する情報を返します。*process*, *4Duser*, *sessionUser*, そして*processName* 変数にはそれぞれプロセス番号(\*)、4Dアプリケーションのユーザ名、システムユーザ名、そしてプロセス名が返されます。レコードがロックされている場合、これらの情報を使用してカスタムダイアログ内でユーザに警告できます。 +LOCKED BY は、レコードをロックしたユーザやプロセスに関する情報を返します。変数にはそれぞれプロセス番号(\*)、4Dアプリケーションのユーザ名、システムユーザ名、そしてプロセス名が返されます。レコードがロックされている場合、これらの情報を使用してカスタムダイアログ内でユーザに警告できます。 (\*) これは実際にレコードをロックしたコードが実行されているマシン上でのプロセス番号です。サーバー上で実行されているトリガやメソッドの場合は、サーバーマシン上での"ツイン"プロセスの番号が返されます。リモートアプリケーションで実行されているメソッドの場合には、リモートマシン上のプロセス番号が返されます。 @@ -39,4 +39,13 @@ displayed_sidebar: docs #### 参照 [Locked](locked.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 353 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md index cef247f1025968..64f431948a5d66 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Locked records info** コマンドは、*aTable* で指定したテーブル内で現在ロックされているレコードについての様々な情報を含んだobject を返します。 - -**注:** このコマンドは 4D と 4D Server に対してのみ有効です。4D リモートまたはコンポーネントから呼び出された場合には無効なオブジェクトを返します。ただし、呼び出しメソッドに"Execute on server" オプションが有効化されている場合には呼び出し可能です。この場合返されるオブジェクトには、サーバーの情報が含まれます。コンポーネントから呼び出された場合には、常にホストデータベースに対して適用されます。 +**Locked records info** コマンドは、*aTable* で指定したテーブル内で現在ロックされているレコードについての様々な情報を含んだobject を返します。このコマンドは 4D と 4D Server に対してのみ有効です。4D リモートまたはコンポーネントから呼び出された場合には無効なオブジェクトを返します。ただし、呼び出しメソッドに"Execute on server" オプションが有効化されている場合には呼び出し可能です。この場合返されるオブジェクトには、サーバーの情報が含まれます。コンポーネントから呼び出された場合には、常にホストデータベースに対して適用されます。 返されたオブジェクトは、オブジェクトのコレクションである"records"プロパティを格納しています: @@ -89,4 +87,13 @@ displayed_sidebar: docs #### 参照 -[Locked](locked.md) \ No newline at end of file +[Locked](locked.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1316 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked.md index 804fcb52db7aab..907f33a7cc18d2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked.md @@ -33,4 +33,13 @@ displayed_sidebar: docs [Locked records info](locked-records-info.md) [LOAD RECORD](load-record.md) [LOCKED BY](locked-by.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 147 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md index 907be5ce482e6e..97f4b8e326d201 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md @@ -61,3 +61,13 @@ Windowsでデータベースが開かれた時の情報をログしたい場合 #### 参照 [SET DATABASE PARAMETER](set-database-parameter.md) + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 667 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md index c93c54e429dd71..3292cc559f8e89 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md @@ -95,4 +95,14 @@ Blobおよびピクチャーフィールドの場合、保存場所によって #### 参照 -[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) \ No newline at end of file +[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1352 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md index 0336f46198ba15..ab2a0f33789ca1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md @@ -30,4 +30,14 @@ displayed_sidebar: docs #### 参照 -[SELECT LOG FILE](select-log-file.md) \ No newline at end of file +[SELECT LOG FILE](select-log-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 928 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log.md index 37acbbb6f95fc2..489b0c9a32a460 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log.md @@ -30,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[Exp](exp.md) \ No newline at end of file +[Exp](exp.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 22 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md index d10784ca2b28d1..95c2af4513f1a7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md @@ -34,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 647 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md index 1f7cd083652a27..369df4d2011d0e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md @@ -115,4 +115,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 550 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md index 80dce520c58616..176601deea54a1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md @@ -47,4 +47,13 @@ displayed_sidebar: docs #### 参照 -[Uppercase](uppercase.md) \ No newline at end of file +[Uppercase](uppercase.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 14 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md index a933aed0acfc2e..45ea010b8536e4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Macintosh command downはMacintoshのcommandキーが押されていると[True](true.md "True")を返します。 - -**Note:** Windowsのプラットフォーム上で呼び出された場合は、WindowsのCtrlキーが押されていると、Macintosh command down はTRUEを返します。 +Macintosh command downはMacintoshのcommandキーが押されていると[True](true.md "True")を返します。Windowsのプラットフォーム上で呼び出された場合は、WindowsのCtrlキーが押されていると、Macintosh command down はTRUEを返します。 #### 例題 @@ -30,4 +28,13 @@ displayed_sidebar: docs [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 546 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md index f45195685b51f0..9991737153ffb6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Macintosh control down コマンドはMacintoshのControlキーが押されていると[True](true.md "True")を返します。 - -**Note:** Windowsのプラットフォーム上で呼び出された場合は、Macintosh control down コマンドは常に[False](false.md "False")を返します。このMacintosh用の同等のキーは、Windows上にありません。 +Macintosh control down コマンドはMacintoshのControlキーが押されていると[True](true.md "True")を返します。Windowsのプラットフォーム上で呼び出された場合は、Macintosh control down コマンドは常に[False](false.md "False")を返します。このMacintosh用の同等のキーは、Windows上にありません。 #### 例題 @@ -30,4 +28,13 @@ displayed_sidebar: docs [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 544 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md index 444da4535a6a68..de9f2b74711a05 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Macintosh option down はMacintoshのoptionキーが押されていると[True](true.md "True")を返します。 - -**Note:** Windowsのプラットフォーム上で呼び出された場合は、WindowsのAltキーが押されていると、Macintosh option down は[True](true.md "True")を返します。 +Macintosh option down はMacintoshのoptionキーが押されていると[True](true.md "True")を返します。Windowsのプラットフォーム上で呼び出された場合は、WindowsのAltキーが押されていると、Macintosh option down は[True](true.md "True")を返します。 #### 例題 @@ -30,4 +28,13 @@ displayed_sidebar: docs [Macintosh control down](macintosh-control-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 545 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md index 72cee13bee036e..754368424d435c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md @@ -108,3 +108,14 @@ vfound:=Match regex( pattern;mytext; start; pos\_found\_array; length\_found\_ar #### エラー管理 エラーのイベントでは、コマンドはエラーを生成しますが、[ON ERR CALL](on-err-call.md "ON ERR CALL")コマンドを用いてインストールされたメソッドで、これを検知することができます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1019 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/max.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/max.md index 0ed8a2d824fe16..b7744d384355d6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/max.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/max.md @@ -68,4 +68,14 @@ displayed_sidebar: docs #### 参照 -[Min](min.md) \ No newline at end of file +[Min](min.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 3 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md index 6dc924a6821120..afcb13a307fb36 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 MAXIMIZE WINDOW コマンドは、*window*に渡された参照番号のウィンドウを最大化します。この引数が省略されると、同じ効果がカレントプロセスのすべての最前面ウィンドウ (Windows) またはカレントプロセスの最前面ウィンドウ (Mac OS) に適用されます。 @@ -86,4 +83,13 @@ Mac OSのズームボックス [Is window maximized](is-window-maximized.md) [MINIMIZE WINDOW](minimize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 453 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md index 76d0948d5ce195..6e5ff9182294a8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md @@ -26,4 +26,13 @@ displayed_sidebar: docs #### 参照 -[Cache info](cache-info.md) \ No newline at end of file +[Cache info](cache-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1118 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md index 1a3797bd0f7c11..dc0c3ca4a21752 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Menu bar height はメニューバーの高さをピクセル数で返します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs [HIDE MENU BAR](hide-menu-bar.md) [Menu bar screen](menu-bar-screen.md) -[SHOW MENU BAR](show-menu-bar.md) \ No newline at end of file +[SHOW MENU BAR](show-menu-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 440 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md index 4e219dd1afdba8..345ebebce4a665 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Menu bar screen はメニューバーが表示されている画面の番号を返します。 @@ -25,4 +22,13 @@ displayed_sidebar: docs #### 参照 [Count screens](count-screens.md) -[Menu bar height](menu-bar-height.md) \ No newline at end of file +[Menu bar height](menu-bar-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 441 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md index 4e7c8d1a3a7d18..115bfd4c415451 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Menu selected** はフォームが表示されているときのみ使用できます。このコマンドはメニューから選択されたメニュー項目を検出し、階層サブメニューの場合はサブメニューの参照を返します。 @@ -61,4 +58,14 @@ displayed_sidebar: docs #### 参照 -*メニューの管理* \ No newline at end of file +*メニューの管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 152 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/message.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/message.md index d5b6d2efae1469..7a49fab348c3dd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/message.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/message.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 MESSAGE コマンドは、通常ユーザに対して何らかの動作を知らせるために使用します。このコマンドは画面上の特別なメッセージウィンドウに *message* を表示します。このメッセージウィンドウは、 [Open window](open-window.md) を使って(後述)あらかじめ開かれたウィンドウを使用していないかぎり、MESSAGE コマンドをコールするたびに表示されたり閉じられたりします。このメッセージは一時的なもので、フォームを表示する、またはメソッドの実行が終了するとすぐに消去されます。別のMESSAGE コマンドを実行すると古いメッセージは、消去されます。 @@ -114,4 +111,13 @@ MESSAGEをコールするたびに、以下のウィンドウが表示されて [CLOSE WINDOW](close-window.md) [ERASE WINDOW](erase-window.md) [GOTO XY](goto-xy.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 88 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md index 5cc3c3ad36021c..d7d6197b237ba9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md @@ -66,4 +66,13 @@ displayed_sidebar: docs #### 参照 -[MESSAGES ON](messages-on.md) \ No newline at end of file +[MESSAGES ON](messages-on.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 175 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md index 9be54db6dc2497..90fb9ae93ec568 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md @@ -18,4 +18,13 @@ displayed_sidebar: docs #### 参照 -[MESSAGES OFF](messages-off.md) \ No newline at end of file +[MESSAGES OFF](messages-off.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 181 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md index 827aed4e3686de..87fac4fb0d1bed 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Method called on error** コマンドはカレントプロセス、または*scope* 引数で指定したスコープにおいて[ON ERR CALL](on-err-call.md) コマンドでインストールされたメソッドの名前を返します。 - -*scope* 引数には、エラー処理メソッドの名前を取得したい実行コンテキストを渡します。以下の定数のいずれか1つを使用することができます: +**Method called on error** コマンドはカレントプロセス、または*scope* 引数で指定したスコープにおいて[ON ERR CALL](on-err-call.md) コマンドでインストールされたメソッドの名前を返します。引数には、エラー処理メソッドの名前を取得したい実行コンテキストを渡します。以下の定数のいずれか1つを使用することができます: | 定数 | 値 | コメント | | ------------------------- | - | ------------------------------------------------ | @@ -44,4 +42,13 @@ displayed_sidebar: docs #### 参照 *Error Handler* -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 704 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md index 1ccb35e64016e4..f5067adcc10f61 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Method called on event コマンドは、[ON EVENT CALL](on-event-call.md "ON EVENT CALL")コマンドでインストールされたメソッド名を返します。 @@ -24,4 +21,13 @@ displayed_sidebar: docs #### 参照 -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 705 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md index bb5aaa9ecfaa8d..9c8b579e9741ff 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD Get attribute**コマンドは*path*引数で指定されたプロジェクトメソッドの*attribType*属性値を返します。このコマンドはプロジェクトメソッドに対してのみ動作します。無効なパスを渡すとエラーが生成されます。 @@ -41,4 +38,13 @@ displayed_sidebar: docs #### 参照 -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1169 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md index 057e02b2aab111..6b6cc376e09aea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md @@ -61,4 +61,13 @@ displayed_sidebar: docs #### 参照 -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1334 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md index 0258b8658f2026..0232690d70d916 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET CODE**コマンドは*path*引数で指定したメソッドの内容を*code*に返します。このコマンドはデータベースメソッド、クラス定義、トリガー、プロジェクトメソッド、フォームメソッド、そしてオブジェクトメソッド等すべてのタイプのメソッドコードを返すことができます。 @@ -120,4 +117,13 @@ displayed_sidebar: docs #### 参照 [METHOD SET CODE](method-set-code.md) -*フォーミュラ内でのトークンの使用* \ No newline at end of file +*フォーミュラ内でのトークンの使用* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1190 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md index c0a128594e17a2..cfc3b3ba7eff18 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET COMMENTS**コマンドは*path*引数で指定したメソッドのドキュメンテーションを*comments*引数に返します。 @@ -55,4 +52,13 @@ displayed_sidebar: docs #### 参照 -[METHOD SET COMMENTS](method-set-comments.md) \ No newline at end of file +[METHOD SET COMMENTS](method-set-comments.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1189 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md index 1ea32ab587b4b8..8b452849bf4a73 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET FOLDERS**コマンドは4Dエクスプローラーのホームページに作成されたフォルダー名を*arrNames*配列に返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1206 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md index 7f64a8ccbc9242..bc52de4ead1a70 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET MODIFICATION DATE**コマンドは*path*引数で指定されたメソッドの更新日と時刻をそれぞれ*modDate*と*modTime*引数に返します。 @@ -70,3 +67,13 @@ displayed_sidebar: docs ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1170 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md index b43df18c8e875c..01a631ca654422 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md @@ -39,3 +39,13 @@ displayed_sidebar: docs   // ホストデータベース内で、特定の文字から始まるメソッドのみをリストする  METHOD GET NAMES(t_Names;"web_@";*) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1166 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md index 9aa2893d19aaad..9bdeef9371969c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD Get path**コマンドはメソッドの完全な内部パス名を返します。 @@ -66,4 +63,13 @@ displayed_sidebar: docs [Current method path](current-method-path.md) [METHOD OPEN PATH](method-open-path.md) -[METHOD RESOLVE PATH](method-resolve-path.md) \ No newline at end of file +[METHOD RESOLVE PATH](method-resolve-path.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1164 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md index 8275fb345871af..ba32f3a0150eb7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET PATHS FORM**コマンドはすべてのフォームオブジェクトとフォームメソッドの内部的なパス名と名前を*arrPaths*配列に返します。フォームメソッドには{formMethod}とラベルが付けられます。 @@ -71,4 +68,13 @@ displayed_sidebar: docs #### 参照 -[FORM GET NAMES](form-get-names.md) \ No newline at end of file +[FORM GET NAMES](form-get-names.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1168 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md index e4b2b3050874ae..44e519ca241bfe 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET PATHS**コマンドはアプリケーションのうち、*methodType*引数で指定したタイプであるメソッドの内部的なパス名と名前を*arrPaths*配列に返します。 @@ -86,4 +83,13 @@ displayed_sidebar: docs #### 参照 [Current method path](current-method-path.md) -[METHOD GET FOLDERS](method-get-folders.md) \ No newline at end of file +[METHOD GET FOLDERS](method-get-folders.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1163 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md index 5f9ad542f50724..2845d5c5bd1a30 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD OPEN PATH**コマンドは内部パス名が*path* 引数であるメソッドを4Dメソッドエディターで開きます。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 [METHOD Get path](method-get-path.md) -*デザインオブジェクトアクセスコマンド* \ No newline at end of file +*デザインオブジェクトアクセスコマンド* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1213 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md index bb3ca92d214ed9..feb2a0772f8f9d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD RESOLVE PATH**コマンドは*path*引数に渡された内部パス名を解決し、*methodType*、*ptrTable*、*objectName*、そして *formObjectName*引数にそれぞれ情報を返します。 @@ -84,4 +81,13 @@ displayed_sidebar: docs #### 参照 -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1165 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md index 268f476d69fa63..7bf594bccbdba6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD SET ACCESS MODE**コマンドは他のユーザーやプロセスによって更新のためにさきにロードされているオブジェクトに書き込みアクセスを行おうとした時の振る舞いを設定します。このコマンドのスコープはカレントセッションです。 @@ -27,3 +24,13 @@ displayed_sidebar: docs | On object locked abort | 倍長整数 | 0 | オブジェクトのロードが中断された (デフォルト動作) | | On object locked confirm | 倍長整数 | 2 | 再試行するか中断するか選択できるようにするためダイアログを表示します。リモートモードではこのオプションはサポートされません (ロードは中断されます)。 | | On object locked retry | 倍長整数 | 1 | オブジェクトがリリースされるまでオブジェクトのロードを試行します。 | + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1191 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md index c748a1f6ba9df1..f5b5f2fb24f103 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD SET ATTRIBUTE**コマンドは*path*引数で指定されたプロジェクトメソッドの*attribType*属性の値を設定します。このコマンドはプロジェクトメソッドに対してのみ動作します。無効な *path*を渡すとエラーが生成されます。 @@ -69,4 +66,13 @@ displayed_sidebar: docs *Design Object Access* [METHOD Get attribute](method-get-attribute.md) -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1192 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md index b77ff31d30170c..4663cf5eff957a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD SET ATTRIBUTES** コマンドは、*path* 引数で指定したメソッドの、*attributes* 引数で指定した値を設定することができます。 @@ -53,4 +50,13 @@ displayed_sidebar: docs #### 参照 [METHOD GET ATTRIBUTES](method-get-attributes.md) -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1335 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md index 3a74d1bad8beb0..1f867f74377b34 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD SET CODE**コマンドは*path*引数で指定したメソッドのコードを*code*引数に渡した内容で置き換えます。 @@ -101,4 +98,13 @@ displayed_sidebar: docs #### 参照 -[METHOD GET CODE](method-get-code.md) \ No newline at end of file +[METHOD GET CODE](method-get-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1194 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md index 1b9240474374d4..e87a33a15883b4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD SET COMMENTS**コマンドは*path*引数で指定したメソッドのドキュメンテーションを*comments*引数の内容で置き換えます。 @@ -65,4 +62,13 @@ displayed_sidebar: docs #### 参照 -[METHOD GET COMMENTS](method-get-comments.md) \ No newline at end of file +[METHOD GET COMMENTS](method-get-comments.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1193 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md index 5751a79299edff..dd2752d7673910 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md @@ -46,4 +46,13 @@ displayed_sidebar: docs [Current time](current-time.md) [Tickcount](tickcount.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 459 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/min.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/min.md index 5936f77010387e..c9badb349bf2da 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/min.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/min.md @@ -76,4 +76,14 @@ displayed_sidebar: docs #### 参照 -[Max](max.md) \ No newline at end of file +[Max](max.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 4 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md index 6ca4cdca0f0ad3..2a44d526849a71 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 MINIMIZE WINDOW コマンドは、*window*に渡された参照番号のウィンドウサイズを、最大化される前に戻します。この引数が省略されると、アプリケーションのそれぞれのウィンドウ (Windows) またはカレントプロセスの最前面ウィンドウ (Mac OS) に適用されます。 @@ -53,4 +50,13 @@ Mac OS #### 参照 [MAXIMIZE WINDOW](maximize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 454 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md index 2c84850a355cd6..698792a4b58e57 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md @@ -44,4 +44,13 @@ displayed_sidebar: docs #### 参照 -[On Mobile App Authentication データベースメソッド](on-mobile-app-authentication-database-method.md) \ No newline at end of file +[On Mobile App Authentication データベースメソッド](on-mobile-app-authentication-database-method.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1596 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mod.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mod.md index 4232fabb4d458e..4cb76b676eb29e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mod.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mod.md @@ -19,8 +19,6 @@ displayed_sidebar: docs **Mod**コマンドは、*number1*を*number2*で割り算し、その余りの整数を返します。 -**Notes:** - * **Mod**は整数、倍長整数、実数を受け入れます。しかし*number1*または*number2*が実数の場合、それらの値は丸められてから**Mod**計算を実行します。 * (2^31を超える) サイズの大きな実数を用いてModを使用する場合は注意が必要です。この場合、処理が標準的なプロセッサの計算能力の限界に達してしまう可能性があります。 @@ -37,3 +35,13 @@ displayed_sidebar: docs  vlResult:=Mod(4;2) // vlResult gets 0  vlResult:=Mod(3.5;2) // vlResult gets 0 ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 98 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md index 1dbece835ef7b8..98ae0de23cd836 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md @@ -41,4 +41,13 @@ displayed_sidebar: docs [Modified](modified.md) [Old](old.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 314 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified.md index 76b2991c03dd4f..1afcf622de3549 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Modified** はデータ入力中、プログラムを使用して*field* に値が代入されていたり、データ入力中に値が編集された場合に、[True](true.md "True")を返します。**Modified** コマンドはフォームメソッド(またはフォームメソッドから呼ばれたサブルーチン)で使用されなければなりません。 @@ -69,4 +66,13 @@ displayed_sidebar: docs #### 参照 [Form event code](../commands/form-event-code.md) -[Old](old.md) \ No newline at end of file +[Old](old.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 32 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md index 3bcebe382d3585..7a35e9f521d838 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 MODIFY RECORDコマンドは、*aTable*テーブルまたは*aTable*引数を省略した場合デフォルトテーブルのカレントレコードを修正するために使用します。MODIFY RECORDは、カレントプロセスにレコードがまだロードされていない場合にレコードをロードし、カレント入力フォームにレコードを表示します。カレントレコードがなければ、MODIFY RECORDは何も行いません。またMODIFY RECORDはカレントセレクションに影響を与えません。 @@ -47,4 +44,15 @@ MODIFY RECORDを使用したが、ユーザがレコードのデータを変更 [Locked](locked.md) [Modified record](modified-record.md) [READ WRITE](read-write.md) -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 57 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md index d4b3c3be6117f9..d916c692a5f83e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 MODIFY SELECTIONは、[DISPLAY SELECTION](display-selection.md "DISPLAY SELECTION")とほぼ同じ機能を提供します。詳細については[DISPLAY SELECTION](display-selection.md "DISPLAY SELECTION")の説明を参照してください。2つのコマンドの違いを以下にあげます: @@ -31,4 +28,14 @@ displayed_sidebar: docs [DISPLAY SELECTION](display-selection.md) [Form event code](../commands/form-event-code.md) -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 204 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md index d7101d16f018d1..733d91d57f30cf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md @@ -138,4 +138,13 @@ displayed_sidebar: docs #### 参照 [START MONITORING ACTIVITY](start-monitoring-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1713 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md index 247ae17eef5a25..0676c9f041b8eb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Month of コマンドは*aDate*の月を返します。 - -**Note:** Month of は月の数値を返します。月の名前ではありません (例題 1参照)。 +Month of コマンドは*aDate*の月を返します。Month of は月の数値を返します。月の名前ではありません (例題 1参照)。 この関数から返される値を比較するために、4Dは*Days and Months*テーマに定義済み定数を提供しています: @@ -54,4 +52,13 @@ displayed_sidebar: docs #### 参照 [Day of](day-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 24 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md index 5439860c666a97..493f4e93d1d07d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md @@ -39,4 +39,13 @@ displayed_sidebar: docs [ON EVENT CALL](on-event-call.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 468 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md index 5eabe8739aa036..5b33442b12f7a5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -MOVE DOCUMENTコマンドを使用して、ドキュメントを移動、ドキュメント名を変更します。 - -*srcPathname* に既存ドキュメントへの完全なパス名、*dstPathname*に新しい名前と位置を指定します。 +MOVE DOCUMENTコマンドを使用して、ドキュメントを移動、ドキュメント名を変更します。に既存ドキュメントへの完全なパス名、*dstPathname*に新しい名前と位置を指定します。 **警告:** MOVE DOCUMENTを使用して、同じボリュームのディレクトリの間でドキュメントを移動させることができます。2つの異なるボリュームの間でドキュメントを移動させたい場合、[COPY DOCUMENT](copy-document.md "COPY DOCUMENT") を使用して、ドキュメントを移動させます。そして[DELETE DOCUMENT](delete-document.md "DELETE DOCUMENT")を使用してそのドキュメントのオリジナルのコピーを削除します。 @@ -50,4 +48,14 @@ displayed_sidebar: docs #### 参照 -[COPY DOCUMENT](copy-document.md) \ No newline at end of file +[COPY DOCUMENT](copy-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 540 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md index 7ce45b47d35d91..e53865b381bc1c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md @@ -111,4 +111,13 @@ displayed_sidebar: docs [ORDER BY](order-by.md) [SELECTION TO ARRAY](selection-to-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 718 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md index d692d23a88521e..3cbbc853def230 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md @@ -54,4 +54,13 @@ displayed_sidebar: docs [Discover data key](discover-data-key.md) [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[Register data key](register-data-key.md) \ No newline at end of file +[Register data key](register-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1611 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md index 68d48c67fff4c2..ac5d108f3000be 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 New list は、新しい空の階層リストをメモリに作成し、ユニークなリスト参照番号を返します。 @@ -46,4 +43,13 @@ New listを使用して階層リストを作成した後は、以下のことが [DELETE FROM LIST](delete-from-list.md) [INSERT IN LIST](insert-in-list.md) [LIST TO BLOB](list-to-blob.md) -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 375 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md index bb45f3f71918d7..e271d307b352e5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md @@ -32,3 +32,14 @@ displayed_sidebar: docs エラーが発生すると、コマンドは[ON ERR CALL](on-err-call.md "ON ERR CALL") コマンドでとらえることが可能なエラーコードを生成します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 926 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md index 690dac4b823f8d..943a28b8b79f5a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md @@ -105,4 +105,13 @@ displayed_sidebar: docs #### 参照 -[New shared object](new-shared-object.md) \ No newline at end of file +[New shared object](new-shared-object.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1471 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md index 93b6a574c8c25e..8430ac50694571 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md @@ -104,4 +104,13 @@ displayed_sidebar: docs [Execute on server](execute-on-server.md) *プリエンプティブ4Dプロセス* -*プロセス* \ No newline at end of file +*プロセス* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 317 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md index 9319ed85622da0..f22e39f574090a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md @@ -66,4 +66,13 @@ displayed_sidebar: docs [New object](new-object.md) [New shared collection](new-shared-collection.md) -*共有オブジェクトと共有コレクション* \ No newline at end of file +*共有オブジェクトと共有コレクション* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1526 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md index b79376a1b5b9f2..08e0afacbd6a84 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md @@ -29,4 +29,14 @@ NEXT RECORDでカレントセレクションの最後を超えてカレントレ [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 51 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md index 9ce73706ae319d..d04d2dff83c080 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Next window コマンドは、*window* に渡したウィンドウの後ろにあるウィンドウの参照番号を、ウィンドウの重なり順に基づき、返します。 #### 参照 -[Frontmost window](frontmost-window.md) \ No newline at end of file +[Frontmost window](frontmost-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 448 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md index 80ee4bdfe55476..356a25903ac7eb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md @@ -42,4 +42,13 @@ displayed_sidebar: docs #### 参照 -[DEFAULT TABLE](default-table.md) \ No newline at end of file +[DEFAULT TABLE](default-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 993 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/not.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/not.md index ff57b7e9e5f48e..800af1aa1af9cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/not.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/not.md @@ -31,4 +31,13 @@ displayed_sidebar: docs #### 参照 [False](false.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 34 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md index c81d3c62a12c1f..e5da9853002166 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 NOTIFY RESOURCES FOLDER MODIFICATION コマンドを使用して、接続されたすべての4D マシンに、**Resources**フォルダが更新された旨の通知の送信を、4D Server に強制することができます。この結果、リモートの4Dマシンはローカル**Resources**フォルダを同期できます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[Get 4D folder](get-4d-folder.md) \ No newline at end of file +[Get 4D folder](get-4d-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1052 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/null.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/null.md index 7135ad7efd2e05..310b8fc2695109 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/null.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/null.md @@ -132,4 +132,13 @@ displayed_sidebar: docs [Is field value Null](is-field-value-null.md) [OB SET NULL](ob-set-null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1517 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/num.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/num.md index a13fd64b310750..5fd45c37c9dae8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/num.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/num.md @@ -83,4 +83,13 @@ Num が特別に扱う3つの指定された文字があります。(*separator* [Bool](bool.md) [GET SYSTEM FORMAT](get-system-format.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 11 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md index 3f801acc54de01..cc16ef162721e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md @@ -42,4 +42,13 @@ Polygon というクラスを作成した場合を考えます: #### 参照 -[OB Instance of](ob-instance-of.md) \ No newline at end of file +[OB Instance of](ob-instance-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1730 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md index fe65ab47750537..672f12ee52f0fd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md @@ -20,9 +20,6 @@ displayed_sidebar: docs #### 説明 **OB Copy**コマンドは、 *object*のプロパティ、オブジェクト内オブジェクト、値を内包した完全なコピー(ディープコピー)のオブジェクトを返します。 - -* 第一シンタックス: **OB Copy(object{; resolvePtrs})** - *object* で指定したオブジェクトがポインター型の値を格納している場合、複製先にもポインターが格納されます。あるいは、*resolvePtrs* 引数に **True** を渡すことで、複製時に値を解決させることもできます。この場合、*object* 内で値を指定しているポインターは解決され、解決済みの値が使用されます。 **注:** *object* 引数のオブジェクトのプロパティが共有オブジェクトあるいは共有コレクションであった場合、それらのプロパティは返されたコピーの中では標準の(共有でない)オブジェクトになります。共有オブジェクトを返したい場合には第二シンタックスを使用してください(以下参照) @@ -166,4 +163,13 @@ displayed_sidebar: docs #### 参照 [OB Get](ob-get.md) -*共有オブジェクトと共有コレクション* \ No newline at end of file +*共有オブジェクトと共有コレクション* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1225 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md index 4b1c504ff7775c..9787a33d9e4fe4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OB Entries** コマンドは*object* 引数で指定したオブジェクトのコンテンツを、キー/値のペアとして格納したオブジェクトのコレクションを返します。 @@ -56,4 +53,13 @@ displayed_sidebar: docs #### 参照 [OB Keys](ob-keys.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1720 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md index 37bc2e3eaf25bc..286b90451cf15b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB GET ARRAY**コマンドは、 *object* 引数で指定したランゲージオブジェクトの、*property* 引数で指定したプロパティの中に保存されている値の配列を *array* という配列に返します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB GET ARRAY**コマンドは、 *object* 引数で指定したランゲージオブジェクトの、*property* 引数で指定したプロパティの中に保存されている値の配列を *array* という配列に返します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数には、値を取得したいプロパティのラベルを渡します。*property* 引数では、大文字と小文字は区別されることに注意して下さい。 @@ -52,4 +50,13 @@ displayed_sidebar: docs #### 参照 [OB SET ARRAY](ob-set-array.md) -*コレクションと4D配列間での型の変換* \ No newline at end of file +*コレクションと4D配列間での型の変換* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1229 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md index cd79060e561061..920dd4773d8b4c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB GET PROPERTY NAMES**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中に含まれているプロパティの名前を、 *arrProperties* という名前のテキスト配列に入れて返します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB GET PROPERTY NAMES**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中に含まれているプロパティの名前を、 *arrProperties* という名前のテキスト配列に入れて返します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *arrProperties* 引数にはテキスト配列を渡します。配列が存在しない場合、コマンドが自動的に作成してリサイズします。 @@ -97,4 +95,13 @@ displayed_sidebar: docs #### 参照 [OB Get type](ob-get-type.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1232 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md index c0fe1aef9ae103..ebdc5cdd2d7fc2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB Get type**コマンドは、*object* で指定したランゲージオブジェクトの *property* に関連付けられた値の型を返します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB Get type**コマンドは、*object* で指定したランゲージオブジェクトの *property* に関連付けられた値の型を返します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数には、値の型を取得したいプロパティのラベルを渡します。 *property* 引数では、大文字と小文字は区別されることに注意して下さい。 @@ -53,4 +51,13 @@ displayed_sidebar: docs #### 参照 [OB GET PROPERTY NAMES](ob-get-property-names.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1230 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md index 3cacc4fc975784..4ace99a7ba853e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md @@ -221,4 +221,13 @@ displayed_sidebar: docs *Field and Variable Types* [OB Copy](ob-copy.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1224 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md index 77a1c88c61bd95..85112533b5ad36 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB Instance of** コマンドは*object* 引数のオブジェクトが*class* 引数で指定されたクラスまたはその子クラスに属していればtrue を、それ以外の場合にはfalse を返します。 - -*class* 引数のクラスが有効なクラスオブジェクトでない場合、エラー-10745 が返されます。 +**OB Instance of** コマンドは*object* 引数のオブジェクトが*class* 引数で指定されたクラスまたはその子クラスに属していればtrue を、それ以外の場合にはfalse を返します。引数のクラスが有効なクラスオブジェクトでない場合、エラー-10745 が返されます。 #### 例題 @@ -52,4 +50,13 @@ Polygon というクラスを作成した場合を考えます: #### 参照 -[OB Class](ob-class.md) \ No newline at end of file +[OB Class](ob-class.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1731 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md index 8d3f29b8fb284a..375851be14b0c1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB Is defined**コマンドは、*object* または *property* が定義済みである場合にはTrueを返し、それ以外の場合にはFalseを返します。 - -*object* 引数で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB Is defined**コマンドは、*object* または *property* が定義済みである場合にはTrueを返し、それ以外の場合にはFalseを返します。引数で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数を省略した場合、コマンドは *object* が定義済みかどうかを調べます。オブジェクトの中身が初期化されていれば定義済みであるとみなされます。 @@ -61,4 +59,13 @@ displayed_sidebar: docs #### 参照 -[OB Is empty](ob-is-empty.md) \ No newline at end of file +[OB Is empty](ob-is-empty.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1231 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md index a449c97c9bf83d..9a34674d6760bd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**OB Is empty**コマンドは、*object* が未定義か空である場合にはTrueを返し、*object* が定義済み(初期化済み)で少なくとも一つのプロパティを内包している場合にはFalseを返します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB Is empty**コマンドは、*object* が未定義か空である場合にはTrueを返し、*object* が定義済み(初期化済み)で少なくとも一つのプロパティを内包している場合にはFalseを返します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 #### 例題 @@ -42,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[OB Is defined](ob-is-defined.md) \ No newline at end of file +[OB Is defined](ob-is-defined.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1297 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md index cb70758be23ffe..1135697f6ce846 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md @@ -19,3 +19,13 @@ displayed_sidebar: docs **OB Is shared** コマンドは*toCheck* 引数のオブジェクトまたはコレクションが共有の場合には**True** を返します。それ以外の場合には**False** を返します(*共有オブジェクトと共有コレクション*参照)。 このコマンドは*toCheck* 引数に共有可能なエンティティセレクションを渡した場合には**True** を返します(参照)。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1759 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md index e7837bd5c0da01..a81730e93e33dd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OB Keys** コマンドは、*object* 引数で指定したオブジェクト内の列挙可能な全てのプロパティ名を文字列として格納したコレクションを返します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 [OB Entries](ob-entries.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1719 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md index 21e63826440758..9ae4901cf3405b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**OB REMOVE**コマンドは、*object* 引数で指定したランゲージオブジェクトの、 *property* 引数で指定したプロパティを削除します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して定義されているか、4Dオブジェクトフィールドが指定されている必要があります。 +**OB REMOVE**コマンドは、*object* 引数で指定したランゲージオブジェクトの、 *property* 引数で指定したプロパティを削除します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して定義されているか、4Dオブジェクトフィールドが指定されている必要があります。 *property* 引数には、削除したいプロパティのラベルを渡します。 *property* 引数では、大文字と小文字は区別されることに注意して下さい。 @@ -37,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1226 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md index 3d3604ffd18105..ce2b4f2e1c7fdf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB SET ARRAY**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中の *property* と関連付ける配列 *array* を定義します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB SET ARRAY**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中の *property* と関連付ける配列 *array* を定義します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数には、作成または修正したいプロパティのラベル(名前)を渡して下さい。オブジェクト内に指定されたプロパティが存在する場合、その値は指定した値で上書きされます。プロパティが存在しない場合、新たにプロパティが作成されます。 *property* 引数では、大文字と小文字は区別されることに注意して下さい。 @@ -133,4 +131,13 @@ displayed_sidebar: docs [OB GET ARRAY](ob-get-array.md) [OB SET](ob-set.md) -*コレクションと4D配列間での型の変換* \ No newline at end of file +*コレクションと4D配列間での型の変換* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1227 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md index 041c1763fb6b81..959e7bddad8e1e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**OB SET NULL**コマンドは、*object* 引数で指定したランゲージオブジェクトの中に**null値**を保存します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB SET NULL**コマンドは、*object* 引数で指定したランゲージオブジェクトの中に**null値**を保存します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数には、 **null** の値を保存したいプロパティのラベル(名前)を指定します。オブジェクト内に指定されたプロパティが存在する場合、その値は **null** で上書きされます。プロパティが存在しない場合、新たにプロパティが作成されます。 *property* 引数では、大文字と小文字は区別されることに注意して下さい。 @@ -40,4 +38,13 @@ Lea の "age" というプロパティにnull を入れる場合: [Null](null.md) [OB GET PROPERTY NAMES](ob-get-property-names.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1233 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md index c929c54cd2afb0..ef388d8bc04725 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB SET**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中に、一つ以上の *プロパティ*/*値* のペアを作成もしくは変更します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB SET**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中に、一つ以上の *プロパティ*/*値* のペアを作成もしくは変更します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数には、作成または修正したいプロパティのラベル(名前)を渡して下さい。*object* 内に指定されたプロパティが存在する場合、その値は指定した値で上書きされます。プロパティが存在しない場合、新たにプロパティが作成されます。 @@ -197,4 +195,13 @@ displayed_sidebar: docs [OB Get](ob-get.md) [OB REMOVE](ob-remove.md) [OB SET ARRAY](ob-set-array.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1220 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md index 2f7c6c5a23b0e1..0d8ce5ed7ac900 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OB Values** コマンドは、*object* 引数で指定したオブジェクトの内の列挙可能なプロパティの値を格納したバリアントのコレクションを返します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 [OB Entries](ob-entries.md) -[OB Keys](ob-keys.md) \ No newline at end of file +[OB Keys](ob-keys.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1718 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md index b05b9bcaaf716c..93fe050bcaf75a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT DUPLICATE**コマンドを使用して、*object*引数で指定したオブジェクトのコピーを作成できます。コピーはアプリケーションモードで実行されているフォームのコンテキストで生成されます。デザインモードのソースフォームは変更されません。 @@ -104,4 +101,14 @@ displayed_sidebar: docs *Form Objects (Access)* [OBJECT Get pointer](object-get-pointer.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1111 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md index 4047eb0074827b..bfd3cc46ac98d4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get action** コマンドは*object* 引数と*\** 引数によって指定されたオブジェクトに割り当てられた標準アクションの名前と引数(あれば)を返します。 @@ -45,4 +42,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET ACTION](object-set-action.md) \ No newline at end of file +[OBJECT SET ACTION](object-set-action.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1457 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md index c753ce75b4928f..39ec2fd8935d9b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get auto spellcheck**コマンドは*object*と*\** 引数で指定したオブジェクトのカレントプロセスの自動スペルチェックオプションに関する設定値を返します。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) \ No newline at end of file +[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1174 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md index e059af076edb98..47502f75180c8c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET BEST SIZE** コマンドは、引数 *\** と *object*で指定されたフォームオブジェクトの“最適な”幅と高さを、引数*bestWidth* と *bestHeight*に返します。これらの値はピクセルで表わされます。このコマンドは複雑なレポートの表示や印刷に役立ち、[OBJECT MOVE](object-move.md) コマンドとともに使用します。 @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 717 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md index 46c4e56434a490..cbc31dacf6df4a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get border style**コマンドは、*object*引数で指定したオブジェクトに設定された境界線スタイルを返します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET BORDER STYLE](object-set-border-style.md) \ No newline at end of file +[OBJECT SET BORDER STYLE](object-set-border-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1263 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md index 29b400c05c6632..7b731dcc08629a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get context menu**コマンドは、引数 *object* と *\** で指定したオブジェクトの、"コンテキストメニュー"オプションのカレントの状態を返します。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET CONTEXT MENU](object-set-context-menu.md) \ No newline at end of file +[OBJECT SET CONTEXT MENU](object-set-context-menu.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1252 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md index 6b5cd2f9a29132..89be8ac896a769 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT GET COORDINATES コマンドは、引数 *\** および*object*によって指定された、現在のフォームのオブジェクトの*left*, *top*, *right* および *bottom*の座標 (ポイント) を返します。 @@ -86,4 +83,13 @@ displayed_sidebar: docs [CONVERT COORDINATES](convert-coordinates.md) [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) [OBJECT MOVE](object-move.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 663 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md index 5073913805221c..99f0ea6ad01b4f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get corner radius** コマンドは*object* 引数で指定されたオブジェクトの角の半径のカレントの値を返します。この値は、*角の半径プロパティ* を使用してフォームレベルで設定されているか、あるいは[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) コマンドを使用してカレントプロセスに対して設定することが可能です。 @@ -48,4 +45,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) \ No newline at end of file +[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1324 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md index 9e2f0ecf254a78..ddaa41ebeb94ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get data source**コマンドは、引数 *object* と *\** で指定したオブジェクトの、カレントのデータソースを返します。 @@ -41,4 +38,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1265 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md index 87dbe2e0548c50..c838d32f3718e0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET DRAG AND DROP OPTIONS**コマンドは*object*と*\** 引数で指定したオブジェクトのカレントプロセスのドラッグ&ドロップオプションを返します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) \ No newline at end of file +[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1184 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md index 1012e8811e052a..e0a3a7b74d7c42 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get enabled コマンドは *object*で指定されたオブジェクトまたはオブジェクトグループがフォーム中で有効ならTrueを、無効ならFalseを返します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET ENABLED](object-set-enabled.md) \ No newline at end of file +[OBJECT SET ENABLED](object-set-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1079 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md index d1a2b7392c8659..9e64321771e35d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get enterable コマンドはobjectで指定されたオブジェクトまたはオブジェクトグループが**入力可属性**を持つ場合にTrueを、そうでなければFalseを返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1067 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md index 84ee4065fbb266..2343b1aec28635 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET EVENTS**コマンドは、引数 *object* と *\** で指定したオブジェクトの、フォームイベントのカレントの設定を取得します。 @@ -48,4 +45,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET EVENTS](object-set-events.md) \ No newline at end of file +[OBJECT SET EVENTS](object-set-events.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1238 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md index 39b77704f764ee..ccbd31bc9a282f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get filter コマンドは *object*で指定されたオブジェクトまたはオブジェクトグループに割り当てられたフィルターの名前を返します。. @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1073 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md index 706cc643ac4d07..e5d442d03376ff 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get focus rectangle invisible**コマンドは*object* と *\** 引数で指定したオブジェクトのフォーカスの四角に関するカレントプロセス内の表示オプションを返します。この設定は、フォームエディターのプロパティリストの入力可能オブジェクトで利用できる**フォーカスの四角を隠す**オプションに対応します。 このコマンドはデザインモードや[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md)コマンドを使用して指定されたこのオプションに関する現在の設定値を返します。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1178 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md index f5483fced35fe6..f055540bab5924 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get font size コマンドは*object*で指定されたフォームオブジェクトで使用されている文字フォントのサイズをポイント単位で返します。 . @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FONT SIZE](object-set-font-size.md) \ No newline at end of file +[OBJECT SET FONT SIZE](object-set-font-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1070 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md index c6f8de693f0a58..01df774fddc210 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get font style コマンドは、*object*で指定されたフォームオブジェクトで使用されている文字フォントの現在のスタイルを返します。. @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1071 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md index 68809bb803135b..d2ec1e9919e828 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get font**コマンドは *object*指定されたフォームオブジェクトで使用されている文字フォントの名前を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1069 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md index ca4abb1459b084..83d99813e196ba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get format** コマンドは、*object*引数で指定されたオブジェクトに適用された現在の表示フォーマットを返します。 @@ -65,4 +62,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 894 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md index 395b9ccabdf97c..9d6c17e51e525a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get help tip**コマンドは*object* と*\** 引数で指定したオブジェクトに割り当てられたカレントプロセスのヘルプメッセージを返します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET HELP TIP](object-set-help-tip.md) \ No newline at end of file +[OBJECT SET HELP TIP](object-set-help-tip.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1182 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md index f2cd32212ebd95..8b2be7980651ea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get horizontal alignment**コマンドは、引数*object*および *\** で指定されたオブジェクトに適用された整列タイプを示すコードを返します。 @@ -58,4 +55,13 @@ displayed_sidebar: docs [OBJECT Get vertical alignment](object-get-vertical-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 707 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md index e215b7e07f7260..571ba7ecb0e909 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get indicator type**コマンドは、引数 *object* と *\** で指定したサーモメーターに割り当てられた、カレントのインジケーターの型を返します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) \ No newline at end of file +[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1247 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md index e8820cd2432c8d..89f36cc1c4376a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get keyboard layout**コマンドは*object* と *\** 引数で指定したオブジェクトにカレントプロセスで割り当てられたカレントキーボードレイアウトを返します。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) \ No newline at end of file +[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1180 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md index eedb1e0be2ff79..8a2150924eb2f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get list name コマンドは *object*で指定されたオブジェクトまたはオブジェクトグループに割り当てられた選択リストの名前を返します。 4Dではフォームエディタあるいは [OBJECT SET LIST BY NAME](object-set-list-by-name.md) コマンドを使用してフォームオブジェクトに (デザインモードのリストエディタで作成された) 選択リストを割り当てることができます。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1072 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md index f87d2034dde4e7..32e4efcb1b19c1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get list reference**コマンドは、引数 *object* と *\** で指定したオブジェクトまたはオブジェクトのグループに関連付けられた階層リストの参照番号(ListRef)を返します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1267 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md index 0eb0bf2dc28034..db141554b2e416 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET MAXIMUM VALUE**コマンドは、引数 *object* と *\** で指定したオブジェクトのカレントの最大値を、 *maxValue* 変数の中に返します。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1245 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md index a5808a9d753f8e..c495add57257fa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET MINIMUM VALUE**コマンドは、引数 *object* と *\** で指定したオブジェクトの最小値を、 *minValue* 変数の中に返します。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1243 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md index fc475d9d5a28c6..ffe2b8d9bfc27e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get multiline**コマンドは、引数 *object* と *\** で指定したオブジェクトの、"複数行"のオプションのカレントの状態を返します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET MULTILINE](object-set-multiline.md) \ No newline at end of file +[OBJECT SET MULTILINE](object-set-multiline.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1254 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md index e5710dfb0651ff..9ed9e0540f7b35 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get name コマンドはフォームオブジェクトの名前を返します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs *Form Objects (Access)* [OBJECT Get pointer](object-get-pointer.md) -*オブジェクト(フォーム)* \ No newline at end of file +*オブジェクト(フォーム)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1087 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md index 6450d203bccd44..0ad7000b1151cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get placeholder**コマンドは、引数 *object* と *\** で指定したオブジェクトと関連付けられたプレースホルダーテキストを返します。オブジェクトにプレースホルダーテキストが何も関連付けられていない場合は、空の文字列を返します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET PLACEHOLDER](object-set-placeholder.md) \ No newline at end of file +[OBJECT SET PLACEHOLDER](object-set-placeholder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1296 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md index d65ef685646091..fe68724a29cfaa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get pointer**コマンドはフォームオブジェクトの変数へのポインタを返します。 @@ -57,4 +54,13 @@ displayed_sidebar: docs [OBJECT Get name](object-get-name.md) [OBJECT Get subform container value](object-get-subform-container-value.md) [Self](self.md) -*オブジェクト(フォーム)* \ No newline at end of file +*オブジェクト(フォーム)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1124 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md index 7da5f48945d417..a931e77c395cb3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET PRINT VARIABLE FRAME**コマンドは、引数 *object* と *\** で指定したオブジェクトの印刷時可変オプションのカレントの設定を取得します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) \ No newline at end of file +[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1241 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md index 8e328777bb2cd9..4dadffcf37654d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET RESIZING OPTIONS**コマンドは*object*と*\** 引数で指定したオブジェクトのカレントプロセスのリサイズオプションを返します。 @@ -45,4 +42,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) \ No newline at end of file +[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1176 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md index 5e43f35021b77d..0802e184173a9a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT GET RGB COLORS コマンドは*object*で指定されたオブジェクトまたはオブジェクトグループの描画色や背景色を返します。. @@ -37,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1074 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md index f1bcf597fa7508..31ddc09414433b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT GET SCROLL POSITION は*object*で指定されたフォームオブジェクトの、スクロールバーの位置に関連する情報を*vPosition*と*hPosition*引数に返します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1114 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md index fb749353a95c17..87e89ce5b91bc4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT GET SCROLLBAR コマンドは、*object*で指定されたオブジェクトまたはオブジェクトグループの縦横スクロールバーの表示/非表示状態を知るために使用します。. @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1076 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md index 73f8af8297b0e2..669dae54bf02ef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET SHORTCUT**コマンドは*object*と*\**引数で指定されたオブジェクトに割り当てられたカレントプロセスのキーボードショートカットを返します。 @@ -42,4 +39,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET SHORTCUT](object-set-shortcut.md) \ No newline at end of file +[OBJECT SET SHORTCUT](object-set-shortcut.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1186 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md index be0b83ee590ce1..41d68ee92c0a7e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get style sheet**コマンドは、引数 *object* と *\** で指定したオブジェクトに関連付けられたスタイルシートの名前を返します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs #### 参照 *Font Styles* -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1258 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md index 92fece4193336b..879da3ff09c765 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET SUBFORM CONTAINER SIZE**コマンドは親フォーム中に表示されているカレントサブフォームオブジェクトの幅と高さをピクセル単位で返します。 @@ -32,5 +29,14 @@ displayed_sidebar: docs #### 参照 -[OBJECT GET SUBFORM](../commands/object-get-subform.md) -[OBJECT SET SUBFORM](../commands/object-set-subform.md) \ No newline at end of file +[OBJECT GET SUBFORM](object-get-subform.md) +[OBJECT SET SUBFORM](object-set-subform.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1148 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md index 4ac98eabb776d0..38496ca2e305a8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get subform container value** コマンドは親フォームに表示されたサブフォームコンテナにバインドされたデータソースのカレントの値を返します。 @@ -57,4 +54,13 @@ displayed_sidebar: docs [Form](../commands/form.md) [OBJECT Get pointer](object-get-pointer.md) -[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) \ No newline at end of file +[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1785 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md index f13264b082a5ca..29dcb3339c1e6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET SUBFORM**コマンドは*object*と*\**引数で指定したサブフォームオブジェクトに関連付けられたフォームの名前を返します。 @@ -41,4 +38,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) -[OBJECT SET SUBFORM](../commands/object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1139 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md index 6fa763048bd658..d42c6e34964568 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get text orientation**コマンドは、引数 *object* と *\** で指定したオブジェクトのテキストに適用されたカレントの方向の値を返します。 @@ -57,4 +54,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) \ No newline at end of file +[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1283 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md index 5311e7aba7a244..de1d19d6dfc6d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get three states checkbox**コマンドは、引数 *object* と *\** で指定したチェックボックスの"スリーステート"プロパティの、カレントの状態を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) \ No newline at end of file +[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1250 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md index 206dc64f06c0e7..24e884566f32dc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get titleコマンドは *object*で指定されたフォームオブジェクトのタイトル (ラベル) を返します。このコマンドはラベルを表示するすべてのタイプのシンプルオブジェクトに使用できます: @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET TITLE](object-set-title.md) \ No newline at end of file +[OBJECT SET TITLE](object-set-title.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1068 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md index 1ae5ce8363ea9c..a48dd602ff43b5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get type**コマンドは、カレントフォーム内の、引数 *object* と *\** で指定したオブジェクトのタイプを返します。 @@ -96,4 +93,13 @@ displayed_sidebar: docs #### 参照 [FORM LOAD](../commands/form-load.md) -[LISTBOX GET OBJECTS](listbox-get-objects.md) \ No newline at end of file +[LISTBOX GET OBJECTS](listbox-get-objects.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1300 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md index dadd3b4c57236d..870cdd4cf504cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get value** コマンドは、*objectName* 引数で指定されたフォームオブジェクトのデータソースのカレント値を返します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET VALUE](object-set-value.md) \ No newline at end of file +[OBJECT SET VALUE](object-set-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1743 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md index c4914521fcaba4..f9e9b2dd012b73 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get vertical alignment**コマンドは*object* と*\** 引数で指定したオブジェクトのテキスト縦位置タイプを示す値を返します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1188 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md index 878ffaf9e539b2..e3c24291c0bc24 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get visible コマンドは *object*で指定されたオブジェクトまたはオブジェクトグループが 表示属性を持っていればTrueを、そうでなければFalseを返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1075 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md index 43ff2896cc537b..9e8a040ce8d8de 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Is styled text**コマンドは、 *object* と *\** によって指定されたオブジェクトの"マルチスタイル"オプションにチェックが入っているときに **True** を返します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -*スタイル付きテキスト* \ No newline at end of file +*スタイル付きテキスト* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1261 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md index 1b19489b1f4f00..fd21af90403cb2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT MOVEコマンドは、 *\** と*object*引数で指定されたカレントフォーム内のオブジェクトを、水平方向に*moveH*ピクセル、垂直方向に*moveV*ピクセル移動させます。 @@ -67,4 +64,13 @@ displayed_sidebar: docs [OBJECT DUPLICATE](object-duplicate.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 664 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md index 1ca06cfebdc4d0..d1ce20899f0b47 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET ACTION**コマンドは、引数 *object* と *\** で指定したオブジェクトと関連付けられた標準アクションを、カレントプロセスにおいて変更します。 @@ -89,4 +86,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get action](object-get-action.md) \ No newline at end of file +[OBJECT Get action](object-get-action.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1259 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md index 48d7c3cf2fe5b4..ae2317bc7f98e5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET AUTO SPELLCHECK**コマンドは*object*と*\**引数で指定されたオブジェクトの自動スペルチェックオプションをカレントプロセス内で動的に設定します。このオプションを使用して、オブジェクト (テキスト型オブジェクトのみ) にデータが入力される際の自動スペルチェックを有効/無効にできます。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) \ No newline at end of file +[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1173 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md index a9004341225429..89dddccf809c3a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET BORDER STYLE**コマンドは、引数 *object* と *\** で指定したオブジェクトの境界線スタイルを変更します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get border style](object-get-border-style.md) \ No newline at end of file +[OBJECT Get border style](object-get-border-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1262 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md index 58b4918cc2a16e..45d0e9625585e7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET CONTEXT MENU**コマンドは、引数 *object* と *\** で指定したオブジェクトのデフォルトでのコンテキストメニューの関連付けを、カレントプロセスにおいて有効化または無効化します。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get context menu](object-get-context-menu.md) \ No newline at end of file +[OBJECT Get context menu](object-get-context-menu.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1251 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md index 08ed88d467291f..c75ee705950f76 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET COORDINATES**コマンドは、引数 *object* と *\** で指定したオブジェクトの位置とそれに伴うサイズを、カレントのプロセスにおいて変更します。 @@ -56,4 +53,13 @@ displayed_sidebar: docs [CONVERT COORDINATES](convert-coordinates.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1248 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md index bf18700e95e938..8fd2f436f53e9e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET CORNER RADIUS** コマンドは、*object* 引数で指定したオブジェクトの角の半径を*radius* 引数で指定した半径に変更します。新しい半径はそのプロセスに対してのみ有効で、フォーム内には保存されません。 @@ -68,4 +65,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get corner radius](object-get-corner-radius.md) \ No newline at end of file +[OBJECT Get corner radius](object-get-corner-radius.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1323 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md index 2dd000b475b4d3..367e0ec29fcde0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET DATA SOURCE**コマンドは、引数 *object* と *\** で指定したオブジェクトのデータソースを変更します。 @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) -[OBJECT Get data source](object-get-data-source.md) \ No newline at end of file +[OBJECT Get data source](object-get-data-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1264 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md index b8b894ce087894..1f8f9cbd10d597 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET DRAG AND DROP OPTIONS**コマンドは*object* と *\** 引数で指定したオブジェクトのドラッグ&ドロップオプションをカレントプロセス内で動的に設定します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) \ No newline at end of file +[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1183 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md index 1677564acb40c8..329ca594688bd5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET ENABLED コマンドは*object*で指定されたカレントフォーム中のオブジェクトあるいはオブジェクトグループを、有効または無効にするために使用します。有効なオブジェクトはマウスクリックやキーボードショートカットに反応します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get enabled](object-get-enabled.md) \ No newline at end of file +[OBJECT Get enabled](object-get-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1123 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md index 9fcb4e4e14917e..9647300d5d9c03 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET ENTERABLE** コマンドは、*object* で指定したフォームオブジェクトを入力可または入力不可に設定するとともに、*フォーカス可能* 属性も設定します。 @@ -74,4 +71,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get enterable](object-get-enterable.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 238 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md index 086864b112f0bb..551f7234794c6c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET EVENTS**コマンドは、引数 *object* と *\** で指定したフォームまたはオブジェクトのフォームイベントの設定を、カレントのプロセスにおいて変更します。 @@ -168,4 +165,13 @@ displayed_sidebar: docs #### 参照 *Form Events* -[OBJECT GET EVENTS](object-get-events.md) \ No newline at end of file +[OBJECT GET EVENTS](object-get-events.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1239 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md index bb80aba06066ce..8094e8956a6dbb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET FILTER は、*object*で指定されたオブジェクトの入力フィルタを*entryFilter*に設定します。 @@ -57,4 +54,13 @@ OBJECT SET FILTER は、入力フォームおよびダイアログ用フォー #### 参照 [OBJECT Get filter](object-get-filter.md) -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 235 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md index e76a5f8b53e4a6..59157eec4c2084 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET FOCUS RECTANGLE INVISIBLE**コマンドは*object* と *\** 引数で指定したオブジェクトのフォーカス四角のカレントプロセスの表示オプションを変更します。この設定は、フォームエディターのプロパティリストの入力可能オブジェクトで利用できる**フォーカスの四角を隠す**オプションに対応します。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1177 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md index 10bbfb6191cccc..f984fe61b6ed9b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET FONT SIZE** は*object* で指定したフォームオブジェクトが、*size*に渡したフォントサイズを使用して表示されるよう設定します。 @@ -51,4 +48,13 @@ displayed_sidebar: docs [OBJECT Get font size](object-get-font-size.md) [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT STYLE](object-set-font-style.md) -*プログラミングに関する注意* \ No newline at end of file +*プログラミングに関する注意* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 165 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md index b387b99512882d..64de9739cfd29f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET FONT STYLE は*object* で指定したフォームオブジェクトが、*styles*に渡したフォントスタイルを使用して表示されるよう設定します。 @@ -56,4 +53,13 @@ displayed_sidebar: docs [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) [SET LIST ITEM PROPERTIES](set-list-item-properties.md) -*プログラミングに関する注意* \ No newline at end of file +*プログラミングに関する注意* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 166 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md index f00f7b4f0119de..a34b88b886c1ef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET FONT は*object* で指定したフォームオブジェクトに、*font* に渡したフォント名またはフォント番号のフォントが表示されるよう設定します。 *font* 引数には有効なフォント名を渡さなければなりません。 @@ -62,4 +59,13 @@ displayed_sidebar: docs [OBJECT Get font](object-get-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) [OBJECT SET FONT STYLE](object-set-font-style.md) -*プログラミングに関する注意* \ No newline at end of file +*プログラミングに関する注意* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 164 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md index aaf3cc84782d6e..acd94f6580f80d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET FORMAT** は、*object*で指定したオブジェクトの表示フォーマットを*displayFormat*で渡したフォーマットに設定します。新しいフォーマットは現在の表示にのみ有効です。フォームには保存されません。 @@ -331,4 +328,13 @@ This example formats a date variable and a time variable using [customized forma [GET SYSTEM FORMAT](get-system-format.md) [OBJECT Get format](object-get-format.md) -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 236 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md index d303e930c1f504..48dc3d9c19d874 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET HELP TIP**コマンドは*object* と*\** 引数で指定したオブジェクトに割り当てられたヘルプをカレントプロセス内で動的に変更します。 @@ -130,4 +127,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get help tip](object-get-help-tip.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1181 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md index 0d2565206781a3..0ca2bbb5879bd8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET HORIZONTAL ALIGNMENT**コマンドは、引数*object* および *\** で指定したオブジェクトを整列します。 @@ -56,4 +53,13 @@ displayed_sidebar: docs [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 706 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md index 533e0dbe77b68d..3c6a9452459f25 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET INDICATOR TYPE**コマンドは、引数 *object* と *\** で指定したサーモメーターの進捗インジケーターのタイプを、カレントプロセスにおいて変更します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get indicator type](object-get-indicator-type.md) \ No newline at end of file +[OBJECT Get indicator type](object-get-indicator-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1246 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md index d5339160457472..fd546ef3a87e07 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET KEYBOARD LAYOUT**コマンドは*object* と*\** 引数で指定したオブジェクトに割り当てられたキーボードレイアウトをカレントプロセス内で動的に変更します。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get keyboard layout](object-get-keyboard-layout.md) \ No newline at end of file +[OBJECT Get keyboard layout](object-get-keyboard-layout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1179 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md index 497d9961e5213a..5a49f7bcb4d481 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET LIST BY NAME**コマンドは、*object*引数で指定されたオブジェクトあるいはオブジェクトグループの選択リストを、*list*に渡したリスト (デザインモードのリストエディタで定義) に設定あるいは置き換えます。 *list* 引数に名前を渡すリストは、リストエディターまたはデザインモードを使用して予め作成されている必要があります。 @@ -91,4 +88,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 237 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md index 9e598c712bfefa..74bf8cc3ddc9d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET LIST BY REFERENCE**コマンドは、引数 *object* と *\** で指定したオブジェクトと関連付けられたリストを、 *list* 引数で指定した階層リストで置き換えもしくは定義します。 @@ -129,4 +126,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1266 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md index f3631904fcf81c..a897a0fe212791 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET MAXIMUM VALUE**コマンドは、引数 *object* と *\** で指定したオブジェクトの最大値を、カレントプロセスにおいて変更します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1244 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md index c886eed8d4bbcf..f8836097144f37 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET MINIMUM VALUE**コマンドは、引数 *object* と *\** で指定したオブジェクトの最小値を、カレントプロセスにおいて変更します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1242 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md index 838f86bba22b9f..67c8276e7faf92 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET MULTILINE**コマンドは、引数 *object* と *\** で指定したオブジェクトの"複数行"のプロパティを変更します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get multiline](object-get-multiline.md) \ No newline at end of file +[OBJECT Get multiline](object-get-multiline.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1253 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md index 85e7e580b56e9a..815942af880867 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET PLACEHOLDER**コマンドは、引数 *object* と *\** で指定したオブジェクトにプレースホルダーテキストを関連付けます。 @@ -47,4 +44,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get placeholder](object-get-placeholder.md) \ No newline at end of file +[OBJECT Get placeholder](object-get-placeholder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1295 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md index e6f873846fbfcb..d8bd73c90439a3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET PRINT VARIABLE FRAME**コマンドは、引数 *object* と *\** で指定したオブジェクトの印刷時可変のプロパティを、変更します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) \ No newline at end of file +[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1240 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md index 9028a60de527bc..b35de0fddd63e2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET RESIZING OPTIONS**コマンドは*object*と*\** で指定したオブジェクトのリサイズオプションをカレントプロセス内で動的に変更します。これらのオプションを使用して、フォームウィンドウのサイズが変更されたときにオブジェクトをどのように表示するかを指定できます。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) \ No newline at end of file +[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1175 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md index e333c6c02719f4..f15a621608ad81 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET RGB COLORS** コマンドは、引数*object*とオプション引数の *\** によって指定されるオブジェクトの前景色と背景色を変更します。コマンドがリストボックスに対して適用される場合、引数を更に使用して奇数行の背景色を変更することができます。 @@ -105,4 +102,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET RGB COLORS](object-get-rgb-colors.md) -[Select RGB Color](select-rgb-color.md) \ No newline at end of file +[Select RGB Color](select-rgb-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 628 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md index be49d27b2e12ab..7f7d0a4a9cc78f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET SCROLL POSITION**コマンドを使用して、 ([MODIFY SELECTION](modify-selection.md)または[DISPLAY SELECTION](display-selection.md)コマンドを用いて表示される) リストフォーム、サブフォーム、階層リストなどの行、あるいはリストボックスの列や行、そしてさらにピクチャのピクセルをスクロールすることができます。 @@ -93,4 +90,13 @@ displayed_sidebar: docs [HIGHLIGHT RECORDS](highlight-records.md) [LISTBOX SELECT ROW](listbox-select-row.md) -[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) \ No newline at end of file +[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 906 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md index 2517a1b7e13848..293e190682208c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET SCROLLBARコマンドは、引数*object* と *\** で指定したオブジェクトの水平/垂直スクロールバーの表示/非表示を設定します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs [LISTBOX Get property](listbox-get-property.md) [LISTBOX SET GRID](listbox-set-grid.md) [OBJECT GET SCROLLBAR](object-get-scrollbar.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 843 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md index 531123d0cc539a..21443000d3caf8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET SHORTCUT**コマンドは*object* と*\** で指定したオブジェクトのキーボードショートカットをカレントプロセスで動的に変更します。 @@ -89,4 +86,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT GET SHORTCUT](object-get-shortcut.md) \ No newline at end of file +[OBJECT GET SHORTCUT](object-get-shortcut.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1185 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md index 16244373a85038..ff518a6c741b14 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET STYLE SHEET**コマンドは、引数 *object* と *\** で指定したオブジェクトと関連付けられたスタイルシートを、カレントのプロセスにおいて変更します。スタイルシートを変更すると、フォント、フォントサイズ、そしてフォントスタイルが変更されます(ただし自動スタイルシートではフォントスタイルは除く)。 @@ -50,4 +47,13 @@ displayed_sidebar: docs *Font Styles* [GET STYLE SHEET INFO](get-style-sheet-info.md) [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT Get style sheet](object-get-style-sheet.md) \ No newline at end of file +[OBJECT Get style sheet](object-get-style-sheet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1257 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md index e95a8720c87a1a..e597b97027b9aa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET SUBFORM CONTAINER VALUE** コマンドは、オヤフォーム内に表示されたサブフォームコンテナにバインドされたデータソースのカレント値を設定します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 [Form](../commands/form.md) -[OBJECT Get subform container value](object-get-subform-container-value.md) \ No newline at end of file +[OBJECT Get subform container value](object-get-subform-container-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1784 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md index bb86d344c725fd..c1794e34c4945e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET SUBFORM**コマンドは*\** 引数および*object* 引数で指定したサブフォームオブジェクトに割り当てられる詳細フォームおよびオプションでリストフォームを動的に変更します。 @@ -42,5 +39,14 @@ displayed_sidebar: docs #### 参照 -[OBJECT GET SUBFORM](../commands/object-get-subform.md) -[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) \ No newline at end of file +[OBJECT GET SUBFORM](object-get-subform.md) +[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1138 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md index b02eeace1c39be..d1428b6efaea8a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET TEXT ORIENTATION**コマンドは、引数 *object* と *\** で指定したオブジェクトの方向を、カレントプロセスにおいて変更します。 @@ -50,4 +47,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get text orientation](object-get-text-orientation.md) \ No newline at end of file +[OBJECT Get text orientation](object-get-text-orientation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1284 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md index ae0b1c42f5003c..44d73ea7544b6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET THREE STATES CHECKBOX**コマンドは、引数 *object* と *\** で指定したチェックボックスの"スリーステート"のプロパティを、カレントのプロセスにおいて変更します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) \ No newline at end of file +[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1249 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md index 3105af30f74d5c..aae09c214077a7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET TITLE**コマンドは、*object* 引数で指定されたボタンのタイトルを*title*で渡した値に変更します。 @@ -73,4 +70,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get title](object-get-title.md) \ No newline at end of file +[OBJECT Get title](object-get-title.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 194 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md index faf4d424d1efe9..8ff58c11a88f13 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 例題 1 **OBJECT SET VALUE** は、*objectName* 引数で指定したフォームオブジェクトのカレントのデータソースに対して*value* 引数の値を設定します。 @@ -41,4 +38,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get value](object-get-value.md) \ No newline at end of file +[OBJECT Get value](object-get-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1742 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md index 9115749bcaf51a..91e02e8dca4bd2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET VERTICAL ALIGNMENT**コマンドは*object* と*\** 引数で指定されたオブジェクトに適用される行揃えのタイプを変更します。 @@ -43,4 +40,13 @@ displayed_sidebar: docs [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) \ No newline at end of file +[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1187 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md index 6ce64413b11ce2..70a5c1efadbcd1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET VISIBLE コマンドは、*object*によって指定されるオブジェクトを表示、あるいは非表示にします。 @@ -60,4 +57,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get visible](object-get-visible.md) -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 603 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md index 6c51c55433981d..6a37207af0621c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md @@ -54,4 +54,13 @@ displayed_sidebar: docs [File](file.md) [Folder](folder.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1548 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md index fbaa8ae9122152..71cdb51edc09d1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md @@ -24,4 +24,15 @@ OLD RELATED MANYはリレートテーブルのセレクションを変更し、 #### 参照 [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 263 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md index 9052a7312a2409..3a8eb6de08a9bf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OLD RELATED ONEは、リレーションを実行する際に*aField*の古い値を使用することを除き、[RELATE ONE](relate-one.md "RELATE ONE")と同じ処理を行います。 @@ -33,4 +30,14 @@ OLD RELATED ONEは、更新前のカレントレコードの内容にリレー [Old](old.md) [OLD RELATED MANY](old-related-many.md) [RELATE ONE](relate-one.md) -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 44 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old.md index 36e4ef90448edd..5ee0ba689fdb8b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old.md @@ -40,4 +40,13 @@ Oldは、すべてのフィールドタイプに適用できます。 #### 参照 -[Modified](modified.md) \ No newline at end of file +[Modified](modified.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 35 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md index 2b3fb54a4b3114..129b4894155ea4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Backup Shutdownデータベースメソッド**は、データベースのバックアップが終了するたびに呼び出されます。バックアップが終了する理由には、コピーの終了、 ユーザによる中断、そしてエラーがあります。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md index 242329799251e9..195a82cc2da5e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Backup Startupデータベースメソッド**は、データベースのバックアップを開始しようとするたびに呼び出されます(手動でのバックアップ、定期的自動バックアップ、または[BACKUP](backup.md "BACKUP") コマンドによるバックアップ)。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md index b91d44b009ca3e..0204bf0904b4b9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Dropデータベースメソッド**はローカルおよびリモートモードの4Dで使用できます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md index 95fba9f4d09091..a64ee0cad2e0f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md @@ -180,4 +180,13 @@ IO ERROR HANDLERプロジェクトメソッドは以下のようになります: [Last errors](last-errors.md) [Last errors](last-errors.md) [Method called on error](method-called-on-error.md) -*システム変数* \ No newline at end of file +*システム変数* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 155 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md index 71edbc0b70c90c..7eaa21d97b0ac9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ON EVENT CALL** コマンドは、イベントを検知するメソッドである*eventMethod*をインストールします。このメソッドは、**イベント処理メソッド**または**イベントキャッチメソッド**と呼ばれます。 @@ -116,4 +113,14 @@ Ctrl+ピリオドが押されると、イベント処理メソッド内で*<>vbW [FILTER EVENT](filter-event.md) [MOUSE POSITION](mouse-position.md) [Method called on event](method-called-on-event.md) -[Shift down](shift-down.md) \ No newline at end of file +[Shift down](shift-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 190 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md index 70df4e06c84438..006ff79a8d8551 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Exitデータベースメソッド**は、データベースを終了すると一回呼び出されます。 @@ -108,4 +105,13 @@ displayed_sidebar: docs #### 参照 [On Startupデータベースメソッド](on-startup-database-method.md) -[QUIT 4D](quit-4d.md) \ No newline at end of file +[QUIT 4D](quit-4d.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 905252 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md index b453a09a86ccd7..e546ee33cce254 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 詳細 **On Host Database Event データベースメソッド** はデータベースが開いた時と閉じられた時に 4D コンポーネントにコードを実行させることが出来るようになりました。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md index baea0de40d30ef..eba59c057b007f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ドキュメンテーションは移動しました** diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md index a4258b14f99039..ed722661239096 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ドキュメンテーションは移動しました** diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md index 3b57d2cd3586be..b243914e34c931 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md @@ -17,11 +17,18 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **On REST Authentication データベースメソッド** は4D 20 R6 以降は廃止予定となります。 今後は[強制ログイン認証](https://developer.4d.com/docs/ja/REST/authUsers/) の使用が強く推奨されます。変換されたプロジェクトにおいては、**[ds.authentify() 関数を通してのREST認証を有効化](https://developer.4d.com/docs/ja/settings/web/#%E3%82%A2%E3%82%AF%E3%82%BB%E3%82%B9)** 設定ボタンをクリックすることで設定をアップグレードすることができます。コードの移行が必要であれば、その方法については[こちらの blog記事](https://blog.4d.com/force-login-now-is-the-default-mode-for-all-rest-authentications) を参照してください。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 3367 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md index ac066ebcb1fb4c..af7f8aeb4e8abf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **On Server Close Connectionデータベースメソッド**は、4Dクライアントプロセスが終了するたびに、サーバマシン上で一度呼び出されます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md index 49f529c4082ddf..a94e2bb87fd448 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### On Server Open Connection データベースメソッドはいつ呼び出されるか **On Server Open Connectionデータベースメソッド**は、4Dリモートワークステーションが接続プロセスを開始するたびに、サーバーマシン上で一度、呼び出されます。4D Server 以外の4D 環境では**On Server Open Connectionデータベースメソッド**が起動されることはありません。 @@ -133,3 +130,13 @@ displayed_sidebar: docs    If((?02:00:00?<=Current time)&(Current time ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 16001 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md index b73593c8558837..53c4301585de40 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Server Shutdownデータベースメソッド**は、カレントのデータベースが4D Server上で閉じられるときに、サーバマシン上で一度呼び出されます。4D Server以外の4D 環境では**On Server Shutdownデータベースメソッド**が起動されることはありません。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md index d0e98e4bdffd13..a9f2d506ee2d1c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Server Startupデータベースメソッド**は、4D Server でデータベースを開くと、サーバマシン上で一度呼び出されます。4D Server 以外の4D環境で**On Server Startupデータベースメソッド**が起動されることはありません。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md index c72578e0d1f833..b75206d45baad8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On SQL Authenticationデータベースメソッド**は4Dに統合されたSQLサーバへ送られたリクエストを選別します。この選別は、名前とパスワー ド、そしてユーザのIPアドレス (オプション) に基づいて実行されます。開発者は独自のユーザーテーブルや、4Dのユーザーテーブルを使用して、接続を識別できます。接続を認証したら、[CHANGE CURRENT USER](change-current-user.md "CHANGE CURRENT USER") コマンドを呼び出して、4Dのデータベース内のリクエストへのアクセスをコントロールしなければなりません。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md index 58ba26f9c7f898..d3949832678439 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Startupデータベースメソッド**は、データベースを開くと1度呼び出されます。 @@ -46,4 +43,13 @@ displayed_sidebar: docs [On Exitデータベースメソッド](on-exit-database-method.md) [QUIT 4D](quit-4d.md) -*データベースメソッド* \ No newline at end of file +*データベースメソッド* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 905263 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-system-event-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-system-event-database-method.md index 2ee61fbc6e7a92..29ce45dd701fe2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-system-event-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-system-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **On System Event データベースメソッド** はシステムイベントが発生するたびに呼び出されます。すべてのモードの4D、4D Server、4D Volume Desktopが統合されたコンパイル済みアプリケーションなど、すべての4D環境で有効です。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md index 6bc446780e94d1..9aa19518e310ef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Web Connectionデータベースメソッド**は以下のケースで呼び出されます: diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md index e905ecc2542e0e..d1d9d8fb328393 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 互換性に関する注意 このデータベースメソッドは**旧式Web セッション**でのみ使用可能であり、このセッションモードは4D v18 R6 以前のバージョンから変換されたデータベースでのみ利用可能です。**スケーラブルWeb セッション**モード(4D v18 R6 以降での推奨設定)が有効化されていた場合にはこのメソッドは呼び出されません。詳細な情報については、*Webセッション管理(旧式)* の章を参照してください。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md index 72d869b83d3101..153097b915317d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md @@ -28,4 +28,15 @@ displayed_sidebar: docs [CREATE SELECTION FROM ARRAY](create-selection-from-array.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) -*命名セレクション* \ No newline at end of file +*命名セレクション* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 189 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md index 3e52aece5eccc5..2a7b5b9ee0d955 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OPEN ADMINISTRATION WINDOW**コマンドは、コマンドを実行したマシン上でサーバ管理ウィンドウを開きます。4D Serverの管理ウィンドウで現在のパラメタを表示させたり、さまざまなメンテナンス操作を行ったりできます (4D Server Reference Guide参照)。4D Server のバージョン11から、このウィンドウをクライアントマシン上で表示できるようになりました: @@ -51,4 +48,14 @@ displayed_sidebar: docs #### 参照 -[OPEN SECURITY CENTER](open-security-center.md) \ No newline at end of file +[OPEN SECURITY CENTER](open-security-center.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1047 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md index 2aba279f818319..4bac009e8fdee8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OPEN COLOR PICKER**コマンドは、システムのカラーピッカーダイアログボックスを表示させます。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[OPEN FONT PICKER](open-font-picker.md) \ No newline at end of file +[OPEN FONT PICKER](open-font-picker.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1304 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md index 60f8dff0d910e6..06b3b4596c5c56 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**OPEN DATA FILE**コマンドは、4Dアプリケーションによって開かれたデータファイルをオンザフライで変更することを可能にします。 - -*accessPath* 引数には、開こうとするデータファイル (".4DD"拡張子を持つファイル) の名前または完全なアクセスパスを渡します。ファイル名だけを渡す場合、データファイルはデータベースのストラクチャファイルと同じ階層に配置されていなければなりません。 +**OPEN DATA FILE**コマンドは、4Dアプリケーションによって開かれたデータファイルをオンザフライで変更することを可能にします。引数には、開こうとするデータファイル (".4DD"拡張子を持つファイル) の名前または完全なアクセスパスを渡します。ファイル名だけを渡す場合、データファイルはデータベースのストラクチャファイルと同じ階層に配置されていなければなりません。 アクセスパスが有効なデータファイルを指している場合、4Dは現在使用しているデータベースを終了し、指定されたデータファイルを使って再度開きます。シングルユーザーモードでは[On Exitデータベースメソッド](on-exit-database-method.md)と[On Startupデータベースメソッド](on-startup-database-method.md)が続いて呼び出されます。 @@ -53,4 +51,13 @@ displayed_sidebar: docs #### 参照 -[CREATE DATA FILE](create-data-file.md) \ No newline at end of file +[CREATE DATA FILE](create-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 312 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md index 7b0f2e4142f217..0fd961cad3b471 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md @@ -72,3 +72,13 @@ End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1321 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md index d8d568a6232ce3..afff05185ed218 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md @@ -85,4 +85,14 @@ Open documentを3のモードで呼ぶと、関数は?00:00:00? (ドキュメン #### 参照 [Append document](append-document.md) -[Create document](create-document.md) \ No newline at end of file +[Create document](create-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 264 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md index 128e727d952694..49a16781ad973a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OPEN FONT PICKER**コマンドは、システムのフォントピッカーダイアログボックスを表示させます。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[OPEN COLOR PICKER](open-color-picker.md) \ No newline at end of file +[OPEN COLOR PICKER](open-color-picker.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1303 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md index 1c499787a4bdb1..4ade9879aa7539 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Open form window コマンドはフォーム*formName*のサイズとリサイズプロパティを使用して、新しいウィンドウを開きます。 @@ -140,4 +137,13 @@ Movable form dialog box 、Plain form window およびPalette form window タイ [FORM GET PROPERTIES](form-get-properties.md) [Open window](open-window.md) *Window Types* -*ウィンドウタイプ(互換性)* \ No newline at end of file +*ウィンドウタイプ(互換性)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 675 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md index 0feb0898d48b7c..6c3142ed5c3186 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OPEN PRINTING JOB** コマンドはプリントジョブを開き、[CLOSE PRINTING JOB](close-printing-job.md) コマンドが呼ばれるまで、続くすべてのプリント命令をスタックします。このコマンドはプリントジョブのコントロールを可能にし、特に印刷中に他のプリントジョブが予期せず挿入されないようにします。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[CLOSE PRINTING JOB](close-printing-job.md) \ No newline at end of file +[CLOSE PRINTING JOB](close-printing-job.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 995 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md index 79264000eedbbd..ee42487aaf110d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Open resource file**コマンドは、*resFileName*に渡した名前またはパス名を持つリソースファイルを開きます。 @@ -99,4 +96,14 @@ Macintosh上で、この例は“MyPrefs”ファイルを開きます。 #### 参照 [CLOSE RESOURCE FILE](close-resource-file.md) -*リソース* \ No newline at end of file +*リソース* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 497 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md index d900421a01a9e3..fd5f04b823bfd7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md @@ -15,3 +15,13 @@ displayed_sidebar: docs #### 説明 OPEN RUNTIME EXPLORER コマンドは、ランタイムエクスプローラーをフローティングウィンドウ内に表示します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1781 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md index 7b850fcf8fd08b..d0bfa1e6335d3c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OPEN SECURITY CENTER コマンドは、Maintenance and Security Center (MSC) ウィンドウを表示します。詳細な情報については、*Maintenance & Security Center* のページを参照してください。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1018 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md index 3f9f737c239555..9a5fc6a7855f6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OPEN SETTINGS WINDOW**コマンドは、カレントの4Dアプリケーションの環境設定ダイアログボックスまたはカレント4Dアプリケーションのデータベース設定を表示し、*selector*キーで指定されたパラメーターやページを表示します。 @@ -140,3 +137,14 @@ displayed_sidebar: docs #### システム変数およびセット 環境設定/データベース設定ダイアログが受け入れられるとOKシステム変数に1が、キャンセルされると0が設定されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 903 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md index 8f19ad2d57ca1b..1d44d64f1463b8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OPEN URL** コマンドは、*appName* で指定したアプリケーションを使用して、*path* 引数に渡したファイルやURLを開きます。 - -*path* 引数には標準のURLまたはファイルのパス名のどちらかを渡す事ができます。コマンドは、OS X環境下ではコロン (':')、Windows環境下ではスラッシュ('\\')、またはfile://で始まるPosix URLを受け取る事ができます。 +**OPEN URL** コマンドは、*appName* で指定したアプリケーションを使用して、*path* 引数に渡したファイルやURLを開きます。引数には標準のURLまたはファイルのパス名のどちらかを渡す事ができます。コマンドは、OS X環境下ではコロン (':')、Windows環境下ではスラッシュ('\\')、またはfile://で始まるPosix URLを受け取る事ができます。 *appName* 引数が省略されていた場合、4Dはまず引数をファイルパス名として解釈しようとします。この場合4Dはシステムに、もっとも適切なアプリケーションを使用してファイルを開くよう、リクエストします (例えば、.htmlファイルにはブラウザを、.docファイルにはMS Wordを使用します)。この場合 \* 引数は無視されます。 @@ -80,4 +78,13 @@ OS X 環境下では、アプリケーションを探すのに、インストー #### 参照 -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 673 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md index d4e55c4aa74042..2b3a453b83f101 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Open window** は最初の4つの引数で指定された寸法を使用して新しいウィンドウを開きます。 @@ -136,4 +133,13 @@ CloseColorPalette メソッドは[CANCEL](cancel.md)コマンドを呼び出し [CLOSE WINDOW](close-window.md) [Open form window](open-form-window.md) -*Open Window* \ No newline at end of file +*Open Window* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 153 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md index c951d1033fa08e..5b5c2799e0192b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md @@ -113,4 +113,13 @@ displayed_sidebar: docs #### 参照 - \ No newline at end of file + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1407 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md index 5aca096f3251c3..8b8a504a6b59a1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md @@ -43,4 +43,15 @@ displayed_sidebar: docs #### 参照 -[ORDER BY](order-by.md) \ No newline at end of file +[ORDER BY](order-by.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 300 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md index 1b88252eb049c6..7d4987a28352ba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md @@ -198,4 +198,15 @@ displayed_sidebar: docs #### 参照 -[ORDER BY FORMULA](order-by-formula.md) \ No newline at end of file +[ORDER BY FORMULA](order-by-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 49 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md index 056f4b8b53f2b2..a701f7f4e101fc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Outside call** は、実行サイクルのあとにTrueを返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [Form event code](../commands/form-event-code.md) -[POST OUTSIDE CALL](post-outside-call.md) \ No newline at end of file +[POST OUTSIDE CALL](post-outside-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 328 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md index 2afcf475825211..ee683ee453144f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 PAGE BREAKはプリンタに送信されたデータの印刷を実行させ、改ページを行います。PAGE BREAKは (On Printing Detailフォームイベントのコンテキストで) [Print form](../commands/print-form.md "Print form")と共に使用し、強制的に改ページを行ったり、メモリに作成された最後のページを印刷するために使用します。PAGE BREAKは、[PRINT SELECTION](print-selection.md "PRINT SELECTION")コマンドとともに使用してはいけません。この代りに、[Subtotal](subtotal.md "Subtotal")や[BREAK LEVEL](break-level.md "BREAK LEVEL")にオプション引数を使用してページブレークを行ってください。 @@ -45,4 +42,14 @@ displayed_sidebar: docs #### 参照 [CANCEL](cancel.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 6 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md index a6946ce6dd31e0..8ea1b32be38b57 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Parse formula** ファンクションは、*formula* 引数で指定された4D フォーミュラを解析し、シンタックスをチェックし、正規化された形式で返します。これにより、4D ランゲージあるいはストラクチャー要素(コマンド、定数、テーブル、フィールド、4D プラグインなど)の名前が変更された場合でも、フォーミュラが引き続き有効な状態を維持できます。 @@ -106,4 +103,13 @@ displayed_sidebar: docs [Formula from string](formula-from-string.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -*フォーミュラ内でのトークンの使用* \ No newline at end of file +*フォーミュラ内でのトークンの使用* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1576 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md index 4162bab6f4099b..248c7e8c3db5d3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Pasteboard data size コマンドを使用して、*dataType* に渡したデータがペーストボード内に存在するかどうかを調べることができます。 @@ -94,4 +91,14 @@ You want to drag some private data from different objects in your form. You can [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) [Get text from pasteboard](get-text-from-pasteboard.md) -*Pasteboard* \ No newline at end of file +*Pasteboard* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 400 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md index e48796aecd2ef6..1bb1e4ac4a0277 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**Path to object** コマンドは*path* 引数に渡したパスの特定のプロパティを含んだオブジェクトを返します。 - -*pathType* 引数を省略した場合、コマンドはデフォルトで*path* 引数にはシステムセパレータ(Windows では"\\"、macOS では":" )を含んだシステムパスが渡されたものとみなします。Posix セパレータを含んだPosixパスを*path* 引数に渡した場合、あるいはパスのタイプを指定したい場合には、以下の定数のどれか一つを*pathType* 引数に渡します: +**Path to object** コマンドは*path* 引数に渡したパスの特定のプロパティを含んだオブジェクトを返します。引数を省略した場合、コマンドはデフォルトで*path* 引数にはシステムセパレータ(Windows では"\\"、macOS では":" )を含んだシステムパスが渡されたものとみなします。Posix セパレータを含んだPosixパスを*path* 引数に渡した場合、あるいはパスのタイプを指定したい場合には、以下の定数のどれか一つを*pathType* 引数に渡します: | 定数 | 型 | 値 | コメント | | -------------- | ---- | - | --------------------------------------------------------- | @@ -173,4 +171,13 @@ displayed_sidebar: docs [File](file.md) [Folder](folder.md) [Object to path](object-to-path.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1547 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md index 9793772931d15c..68d1604743de3c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md @@ -45,4 +45,13 @@ displayed_sidebar: docs #### 参照 [DELETE INDEX](delete-index.md) -[RESUME INDEXES](resume-indexes.md) \ No newline at end of file +[RESUME INDEXES](resume-indexes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1293 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md index fcad875634e5b3..b2c168bf538c2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md @@ -30,4 +30,13 @@ displayed_sidebar: docs [ABORT PROCESS BY ID](abort-process-by-id.md) [DELAY PROCESS](delay-process.md) [HIDE PROCESS](hide-process.md) -[RESUME PROCESS](resume-process.md) \ No newline at end of file +[RESUME PROCESS](resume-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 319 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md index 39fef2385fb913..a1226d99509727 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - :::info 互換性 **4D のビルトインPHPインタープリターは削除されました**。[`4D.SystemWorkerクラス`](../API/SystemWorkerClass.md) を使用して外部PHPインタープリターをご利用ください。 @@ -285,4 +282,13 @@ trimファンクションについてのより詳細な情報については、P *4DでPHPスクリプトを実行する* [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1058 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md index 15e77c6568b958..c50124025b8b48 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - :::info 互換性 **4D のビルトインPHPインタープリターは削除されました**。[`4D.SystemWorkerクラス`](../API/SystemWorkerClass.md) を使用して外部PHPインタープリターをご利用ください。 @@ -39,4 +36,13 @@ PHPスクリプトはstdoutバッファーにデータを書き込むことが #### 参照 [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1061 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md index 42201f85cfed0e..5c9dfc4c52f6a8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - :::info 互換性 **4D のビルトインPHPインタープリターは削除されました**。[`4D.SystemWorkerクラス`](../API/SystemWorkerClass.md) を使用して外部PHPインタープリターをご利用ください。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1060 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md index 93e2750a58c556..0e99cb22a88586 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - :::info 互換性 **4D のビルトインPHPインタープリターは削除されました**。[`4D.SystemWorkerクラス`](../API/SystemWorkerClass.md) を使用して外部PHPインタープリターをご利用ください。 @@ -39,4 +36,13 @@ option引数には、変更するオプションを指定する"*PHP*"テーマ #### 参照 [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1059 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md index 1786c59b6d15d4..f6855ca26bc7c4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md @@ -34,4 +34,13 @@ Codec IDは以下の異なるフォーマットで*codecArray* 配列に返さ #### 参照 [Is picture file](is-picture-file.md) -*ピクチャ* \ No newline at end of file +*ピクチャ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 992 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md index b0a02e62722d35..8f63a1f40f1347 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 PICTURE LIBRARY LIST コマンドは、データベースのピクチャライブラリの中に現在格納されているピクチャの参照番号と名前を返します。 @@ -94,4 +91,13 @@ displayed_sidebar: docs [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 564 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md index f5d58825649d34..60f646cd82a6d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 -[Picture size](picture-size.md) \ No newline at end of file +[Picture size](picture-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 457 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md index 235e55691ef350..2fe57ae31196e6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### 参照 -[PICTURE PROPERTIES](picture-properties.md) \ No newline at end of file +[PICTURE PROPERTIES](picture-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 356 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md index 5b44249888d054..69d0f636e2942b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md @@ -48,4 +48,14 @@ Codecは拡張子 (例 “.gif”), または Mimeタイプ (例 “image/jpeg [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 692 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/play.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/play.md index ccd0e7724b8035..e4f03635796b20 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/play.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/play.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PLAY**コマンドを使用してサウンドやマルチメディアファイルを再生できます。再生したいファイルの完全なパス名を *objectName* に渡します。OS Xでは、コマンドを使用してシステムサウンドを再生することもできます。 @@ -58,4 +55,13 @@ Windows上でのWAVファイルの再生方法を以下の例題で示します: #### 参照 -[BEEP](beep.md) \ No newline at end of file +[BEEP](beep.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 290 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md index efbcb228dff473..a5f09256f17bc3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md @@ -27,4 +27,13 @@ PLUGIN LISTは、4Dに統合されたプラグイン (例: 4D Chart) やサー [COMPONENT LIST](component-list.md) [Get plugin access](get-plugin-access.md) [Is license available](is-license-available.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 847 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md index 8d710d98be04ae..135f6ba4a97f58 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md @@ -30,4 +30,14 @@ displayed_sidebar: docs #### 参照 [PUSH RECORD](push-record.md) -*レコードスタックの使用* \ No newline at end of file +*レコードスタックの使用* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 177 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md index c41bde2d3fd205..768ddeda849c5f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Pop up menu** コマンドは、現在マウスが置かれている場所でポップアップメニューを表示します。 @@ -88,4 +85,13 @@ Windows上 (左) とMacintosh上 (右)で表示されるポップアップメニ #### 参照 [Dynamic pop up menu](dynamic-pop-up-menu.md) -[MOUSE POSITION](mouse-position.md) \ No newline at end of file +[MOUSE POSITION](mouse-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 542 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/position.md index 9c2eb5ce964421..992b700a041235 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/position.md @@ -29,9 +29,7 @@ displayed_sidebar: docs #### 説明 -**Position** コマンドは、*aString* の中で*find* が最初に現われる位置を返します。 - -*aString* の中に*find* が見つからない場合は、Positionはゼロ(0) を返します。 +**Position** コマンドは、*aString* の中で*find* が最初に現われる位置を返します。の中に*find* が見つからない場合は、Positionはゼロ(0) を返します。 *find* が見つかると、*aString* の中に検索文字列が最初に表示された文字位置を返します。 @@ -116,4 +114,13 @@ Position関数の使用例を次に示します。結果を変数*vlResult*に #### 参照 [Compare strings](compare-strings.md) -[Substring](substring.md) \ No newline at end of file +[Substring](substring.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 15 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md index 31007ab307d78e..e03ffd82359d08 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 POST CLICK コマンドはマウスクリックをシミュレートします。これは、ユーザが実際にマウスボタンをクリックした場合と同様の結果を生じます。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 [POST EVENT](post-event.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 466 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md index de4494eaeec5d2..33e81ab48ab70e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 POST EVENT コマンドは、キーボードまたはマウスイベントをシミュレートします。これは、ユーザが実際にキーボードやマウス上で動作を行った場合と同様の結果を生じます。 @@ -75,4 +72,13 @@ displayed_sidebar: docs #### 参照 [POST CLICK](post-click.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 467 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md index 807f7c707391bc..04c71929ed82df 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 POST KEY コマンドはキーストロークをシミュレートします。これは、ユーザが実際にキーボード上で文字を入力した場合と同様の結果を生じます。 @@ -37,4 +34,13 @@ displayed_sidebar: docs *ASCII Codes* [POST CLICK](post-click.md) [POST EVENT](post-event.md) -*ファンクションキーコード* \ No newline at end of file +*ファンクションキーコード* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 465 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md index e7764e8dd48d37..560ab1c7a786ef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### Compatibility Note This command was named **CALL PROCESS** in previous 4D releases. @@ -46,4 +43,14 @@ displayed_sidebar: docs [Form event code](../commands/form-event-code.md) [GET PROCESS VARIABLE](get-process-variable.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 329 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md index e1dcf56c0a3f66..96bfe044898721 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md @@ -25,4 +25,14 @@ PREVIOUS RECORDで、カレントセレクションの前にカレントレコ [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[NEXT RECORD](next-record.md) \ No newline at end of file +[NEXT RECORD](next-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 110 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md index 8db3c1598cd0ed..555757251c24b6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINT LABEL** は、*aTable*のセレクションのデータを使用してラベルを印刷します。 @@ -109,4 +106,14 @@ displayed_sidebar: docs #### 参照 [PRINT SELECTION](print-selection.md) -[QR REPORT](qr-report.md) \ No newline at end of file +[QR REPORT](qr-report.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 39 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md index 4fb3db904307bc..eea19bc0813689 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Print object** コマンドを使用して *object*と*\** 引数で指定したフォームオブジェクトを、*posX*と*posY*の位置に、任意のサイズで印刷できます。 @@ -98,4 +95,13 @@ displayed_sidebar: docs #### 参照 -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1095 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md index 2a065d37a042e0..e591dbcd6d5efd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINT OPTION VALUES** コマンドは、*option* で定義した印刷オプションに対して利用可能な名前のリストを*namesArray* に返します。またオプションとして、*info1Array* および *info2Array* 内にそれぞれの名前に対する追加の情報を取得することもできます。 @@ -55,4 +52,13 @@ displayed_sidebar: docs #### 参照 [GET PRINT OPTION](get-print-option.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 785 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md index 6873abb018fa2d..7c1cb3cd5cac4b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINT RECORD** は *aTable*のカレントレコードを、カレントセレクションを変更せずに印刷します。カレント出力フォームが印刷に用いられます。*aTable*にカレントレコードが存在しない場合、**PRINT RECORD**は何も行いません。 @@ -65,4 +62,13 @@ displayed_sidebar: docs #### 参照 -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 71 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md index 3e72da25cae53b..5f258817545e6a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINT SELECTION** は、*aTable*のカレントセレクションを印刷します。レコードは、カレントプロセスのテーブルのカレント出力フォームを使用して印刷されます。**PRINT SELECTION**は、デザインモードの**プリント...**メニューと同じ動作を実行します。セレクションが空の場合、**PRINT SELECTION** は何も行いません。 @@ -63,4 +60,14 @@ displayed_sidebar: docs [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 60 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md index c264d9baa421c5..eccc16dd913434 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Print settings to BLOB** コマンドは4Dのカレントのプリント設定を *printSettings* BLOBに格納します。*printSettings* は、印刷で使用されるすべての設定を格納します: @@ -54,4 +51,13 @@ BLOB が正しく生成されるとコマンドは 1を返します。カレン #### 参照 -[BLOB to print settings](blob-to-print-settings.md) \ No newline at end of file +[BLOB to print settings](blob-to-print-settings.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1433 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md index e840157d488ee0..530270fdef335c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINT SETTINGS** は印刷設定ダイアログボックスを表示します。このコマンドを使用する場合、[Print form](../commands/print-form.md) や [OPEN PRINTING JOB](open-printing-job.md) コマンドよりも前に呼び出されなければなりません。 @@ -42,4 +39,14 @@ displayed_sidebar: docs [OPEN PRINTING JOB](open-printing-job.md) [PAGE BREAK](page-break.md) [Print form](../commands/print-form.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 106 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md index f952aa2268ae0b..5b70872d2e858c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINTERS LIST** コマンドは、引数として渡された各配列にそのマシンで使用できるプリンタの名前、およびオプションとしてプリンタの場所とモデルを返します。 @@ -46,4 +43,14 @@ macOS上では、プリンタ名 (プリンタサーバの名前) を使用し #### 参照 [Get current printer](get-current-printer.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 789 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md index 713bf9a217bdf5..c4f1d1a0f28f2b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Printing pageは、印刷中のページ番号を返します。このコマンドは、[PRINT SELECTION](print-selection.md "PRINT SELECTION")コマンドまたはデザインモードのプリント...メニューの選択によって印刷する場合にのみ使用することができます。 @@ -39,4 +36,13 @@ displayed_sidebar: docs #### 参照 -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 275 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md index aff86570cfc3b8..2fc7f34b777003 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### 説明 -**PROCESS 4D TAGS**コマンドを使用すると、*inputTemplate* 引数に格納されている4D変換タグの処理が開始されます。*param* 引数を使用して値を挿入し(任意)、その結果が*outputResult* に返されます。 これらのタグの完全な詳細については、*4D 変換タグ* の章を参照して下さい。 +**PROCESS 4D TAGS**コマンドを使用すると、*inputTemplate* 引数に格納されている4D変換タグの処理が開始されます。引数を使用して値を挿入し(任意)、その結果が*outputResult* に返されます。 これらのタグの完全な詳細については、*4D 変換タグ* の章を参照して下さい。 このコマンドにより、タグや、4D式や変数への参照を含んだ"テンプレート"型のテキストを実行でき、それにより実行コンテキストや引数に渡された値に応じた異なる結果を生成することができます。 例 えば、このコマンドにより、4D変換タグを含んだセミダイナミックページに基づいたHTMLページを生成する事ができます(このとき4D Webサーバーを起動する必要はありません)。このコマンドを使用して、データベース内のデータへの参照の処理を(4D Internetコマンド経由で)含んだHTMLフォーマットのEメールを送信する事ができます。テキストに基づいたデータタイプであれば、XML、 SVG、マルチスタイルテキストなど、どんなデータタイプでも処理することができます。 @@ -71,4 +71,13 @@ displayed_sidebar: docs #### 参照 -*4D 変換タグ* \ No newline at end of file +*4D 変換タグ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 816 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md index 2df113522af5cc..34304ce7d6c962 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md @@ -21,4 +21,13 @@ displayed_sidebar: docs #### 参照 -[On Exitデータベースメソッド](on-exit-database-method.md) \ No newline at end of file +[On Exitデータベースメソッド](on-exit-database-method.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 672 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md index 9e74081c013611..fe52b02550e6b3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md @@ -65,4 +65,13 @@ displayed_sidebar: docs [GET PROCESS VARIABLE](get-process-variable.md) [Process info](../commands/process-info.md) [Process state](process-state.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 372 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md index b3d12345405e3c..7c2103a016aad7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Process state** コマンドは、*process*に指定したプロセス番号を持つプロセスの状態を返します。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 [Count tasks](count-tasks.md) -[Process info](../commands/process-info.md) \ No newline at end of file +[Process info](../commands/process-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 330 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md index 2d23506a9dfcc6..1ee21e5a01d805 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 [POP RECORD](pop-record.md) -*レコードスタックの使用* \ No newline at end of file +*レコードスタックの使用* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 176 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md index 070bfa1c668c07..39c800cf3e8356 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR BLOB TO REPORT コマンドは、*blob*に格納されたレポートを*area*に渡されたクイックレポートエリアに配置します。 @@ -45,4 +42,14 @@ displayed_sidebar: docs #### 参照 -[QR REPORT TO BLOB](qr-report-to-blob.md) \ No newline at end of file +[QR REPORT TO BLOB](qr-report-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 771 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md index 31e61f594caa24..bfccb4c1b7aede 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Count columns コマンドは、クイックレポート*area*に存在するカラムの数を返します。 @@ -35,4 +32,14 @@ displayed_sidebar: docs #### 参照 [QR DELETE COLUMN](qr-delete-column.md) -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 764 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md index 64b24a27d98c29..d95fffef165e2e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR DELETE COLUMNは、*area*にある*colNumber*に渡された番号のカラムを削除します。このコマンドはクロステーブルレポートに対しては適用されません。 @@ -36,4 +33,14 @@ displayed_sidebar: docs #### 参照 -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 749 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md index 9770b14649b574..ece971a79c7bf1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR DELETE OFFSCREEN AREA コマンドは、*area*引数に渡された参照番号のクイックレポートオフスクリーンエリアをメモリから削除します。 @@ -24,4 +21,14 @@ displayed_sidebar: docs #### 参照 -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 754 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md index 856840fee58406..0defe1b0b538be 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR EXECUTE COMMAND** コマンドは、*command*に渡された参照番号のツールバーボタンコマンドを実行します。このコマンドの最も一般的な使い方は、[QR ON COMMAND](qr-on-command.md) コマンド経由でコード内で受け取った、ユーザーが選択したコマンドを実行することです。 @@ -39,4 +36,14 @@ displayed_sidebar: docs #### 参照 [QR Get command status](qr-get-command-status.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 791 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md index 3c5e9f4502a965..1bb9b51a1cab80 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Find column コマンドは、*expression*引数で渡された表現式に一致する内容を持つ最初のカラムの番号を返します。 @@ -49,3 +46,14 @@ displayed_sidebar: docs     QR DELETE COLUMN(MyArea;$NumColumn)  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 776 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md index eae53bf50e8175..ac564ba63759c1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR Get area property** コマンドは、*property*に渡されたインタフェース要素(ツールバーまたはメニューバー)が表示されていなければ0を、表示されていれば1を返します。 @@ -36,4 +33,14 @@ displayed_sidebar: docs #### 参照 -[QR SET AREA PROPERTY](qr-set-area-property.md) \ No newline at end of file +[QR SET AREA PROPERTY](qr-set-area-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 795 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md index 36907e2c202aaf..b831c679bd26d1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET BORDERS コマンドを使用し、指定したセルの罫線スタイルを取得できます。 @@ -69,4 +66,14 @@ displayed_sidebar: docs #### 参照 -[QR SET BORDERS](qr-set-borders.md) \ No newline at end of file +[QR SET BORDERS](qr-set-borders.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 798 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md index d9efc9614d45d9..e8bb830e660b61 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get command status コマンドは、*command*が使用不可であれば0を、使用可能であれば1を返します。 @@ -37,4 +34,14 @@ displayed_sidebar: docs #### 参照 [QR EXECUTE COMMAND](qr-execute-command.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 792 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md index 2a3feaebabaf9a..04bd788c770548 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET DESTINATION コマンドは、*area*に渡したエリア参照のレポート出力先を取得します。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[QR SET DESTINATION](qr-set-destination.md) \ No newline at end of file +[QR SET DESTINATION](qr-set-destination.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 756 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md index 774c6899313016..caccf5884e07dd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get document property コマンドを使用し、印刷ダイアログの表示の有無、または*area*に表示されるドキュメントの単位を取得することができます。 @@ -37,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) \ No newline at end of file +[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 773 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md index 8fd27685a10652..cc61d9d9ea86a7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get drop column コマンドは、ドロップ動作が行われた場所の値を返します。 @@ -28,4 +25,14 @@ displayed_sidebar: docs #### 参照 -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 747 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md index f0adffbef03170..066fbdf0698c47 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET HEADER AND FOOTER コマンドを使用し、ヘッダまたはフッタの内容とサイズを取得できます。 @@ -68,4 +65,14 @@ displayed_sidebar: docs #### 参照 -[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) \ No newline at end of file +[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 775 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md index 4a474ac088946d..14288c414fa899 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get HTML template コマンドは、クイックレポート*area*に現在使用されているHTMLテンプレートを返します。戻り値はテキスト値であり、HTMLテンプレートの全内容が納められます。 @@ -27,4 +24,14 @@ displayed_sidebar: docs #### 参照 -[QR SET HTML TEMPLATE](qr-set-html-template.md) \ No newline at end of file +[QR SET HTML TEMPLATE](qr-set-html-template.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 751 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md index f9d3d193dac9d4..bb1d90552e8118 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ##### リストモード @@ -109,4 +106,14 @@ QR GET INFO COLUMN コマンドを使用して、同様のパラメータを取 [QR Get info row](qr-get-info-row.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 766 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md index c0709d21c7bd46..9cbb4ea35cc3c2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get info row コマンドは、*row*に渡した行に関する表示の有無を取得します。 @@ -41,4 +38,14 @@ displayed_sidebar: docs [QR GET INFO COLUMN](qr-get-info-column.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 769 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md index a174b1390bbd7b..434a15b2b42168 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get report kind コマンドは、*area*に渡したエリアのレポートタイプを取得します。 @@ -35,4 +32,14 @@ displayed_sidebar: docs #### 参照 -[QR SET REPORT KIND](qr-set-report-kind.md) \ No newline at end of file +[QR SET REPORT KIND](qr-set-report-kind.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 755 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md index b9b48d1929da61..bba85cf5b7146c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get report table コマンドは、*area*に渡した参照のレポートエリア用のカレントテーブル番号を返します。 @@ -25,4 +22,14 @@ displayed_sidebar: docs #### 参照 -[QR SET REPORT TABLE](qr-set-report-table.md) \ No newline at end of file +[QR SET REPORT TABLE](qr-set-report-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 758 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md index ef389c6a6785e8..b150bb9908d25b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET SELECTION コマンドは、選択されたセルの座標を返します。 @@ -40,4 +37,14 @@ displayed_sidebar: docs #### 参照 -[QR SET SELECTION](qr-set-selection.md) \ No newline at end of file +[QR SET SELECTION](qr-set-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 793 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md index 244018842800c9..e1f7a86633a9b2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET SORTS コマンドは、次の2つの配列を作成します: @@ -37,4 +34,14 @@ displayed_sidebar: docs #### 参照 -[QR SET SORTS](qr-set-sorts.md) \ No newline at end of file +[QR SET SORTS](qr-set-sorts.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 753 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md index 2e7cfdef2c0245..a8be778baa9c68 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get text property コマンドは、*colNum* と *rowNum* で指定されたセルのテキスト属性のプロパティ値を返します。 @@ -66,4 +63,14 @@ displayed_sidebar: docs #### 参照 -[QR SET TEXT PROPERTY](qr-set-text-property.md) \ No newline at end of file +[QR SET TEXT PROPERTY](qr-set-text-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 760 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md index c47686ca49bd76..2b07898b6d746c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ##### リストモード @@ -77,4 +74,14 @@ QR GET TOTALS DATA コマンドを使用し、指定したセルの詳細を取 #### 参照 -[QR SET TOTALS DATA](qr-set-totals-data.md) \ No newline at end of file +[QR SET TOTALS DATA](qr-set-totals-data.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 768 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md index 0394765352083f..b71f3468b0b486 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET TOTALS SPACING コマンドを使用し、小計行の下部の行間を取得することができます。このコマンドはリストモードにのみ適用されます。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[QR SET TOTALS SPACING](qr-set-totals-spacing.md) \ No newline at end of file +[QR SET TOTALS SPACING](qr-set-totals-spacing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 762 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md index b1e49dbcd7c28c..b1e6c54b66ec05 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR INSERT COLUMN コマンドは指定された位置にカラムの作成または挿入を行います。挿入された場所の右にあるカラムはすべて右側へ移動します。 @@ -40,4 +37,14 @@ displayed_sidebar: docs #### 参照 -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 748 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md index 0a68f8699ffb50..325b9fb20ad089 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR MOVE COLUMN**コマンドは、*column* 変数の位置にあるカラムを*newPos* 変数で指定した位置へと移動させます。 @@ -41,3 +38,13 @@ displayed_sidebar: docs 結果は以下のようになります: ![](../assets/en/commands/pict2569472.en.png) + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1325 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md index 967d25256cc1f1..edc3cf2f1cb985 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md @@ -13,13 +13,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR NEW AREA** コマンドは新しいクイックレポートエリアを作成し、その参照番号を倍長整数変数に保存します(変数は*ptr*ポインターによって参照されます)。 #### 参照 -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1320 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md index 839c0f088d6bb4..e060e738ca4c0f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR New offscreen area コマンドは、新しくクイックレポートのオフスクリーンエリアを作成し、その参照番号を返します。 @@ -23,4 +20,13 @@ displayed_sidebar: docs #### 参照 [QR DELETE OFFSCREEN AREA](qr-delete-offscreen-area.md) -[QR NEW AREA](qr-new-area.md) \ No newline at end of file +[QR NEW AREA](qr-new-area.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 735 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md index 1d91d9840d1b54..81a0fcbce304c6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR ON COMMAND コマンドは、ユーザによるメニューコマンドの選択やボタンのクリックなどで、クイックレポートコマンドが起動されると、 *methodName* に渡された4Dメソッドを実行します。*area*が0の場合、データベースが閉じられるか、QR ON COMMAND (0;"")という構文で QR ON COMMAND コマンドが呼び出されるまで、*methodName*が各クイックレポートエリアに適用されます。 @@ -41,4 +38,14 @@ displayed_sidebar: docs *QR Commands* [QR EXECUTE COMMAND](qr-execute-command.md) -[QR Get command status](qr-get-command-status.md) \ No newline at end of file +[QR Get command status](qr-get-command-status.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 790 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md index 2b51de9358f3e0..e7508d62aec25d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR REPORT TO BLOB コマンドは、*area*に渡された参照番号のレポートをBLOB (変数またはフィールド) に格納します。 @@ -33,4 +30,14 @@ displayed_sidebar: docs #### 参照 -[QR BLOB TO REPORT](qr-blob-to-report.md) \ No newline at end of file +[QR BLOB TO REPORT](qr-blob-to-report.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 770 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md index 6930563e9c7ec2..df03935133e9bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR REPORT**はクイックレポートエディターを用いて作成された、*aTable*のレポートを印刷します。このエディターを使用するとユーザーは独自のレポートを作成できるようになります。クイックレポートエディターを使用してレポートを作成する事については、4D*デザインリファレンス*マニュアルの*クイックレポート* の章を参照して下さい。 @@ -133,4 +130,14 @@ displayed_sidebar: docs [PRINT LABEL](print-label.md) [PRINT SELECTION](print-selection.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 197 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md index 525cd4f1bf62ea..48ef95d7a0fcbb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR RUNコマンドは、出力先を含め、クイックレポートの現在の設定を使用して、*area*引数に渡された参照番号のレポートエリアを実行します。[QR SET DESTINATION](qr-set-destination.md "QR SET DESTINATION")コマンドで出力タイプを変更できます。 @@ -25,3 +22,14 @@ displayed_sidebar: docs 無効な*area*番号を渡した場合、エラー番号-9850が生成されます。 **4D Serverの場合:** このコマンドは4D Server上でストアドプロシージャ―の一部として実行する事ができます。この場合、サーバーマシン上でダイアログボックスが表示されることがないように注意して下さい(ただし特定の条件の場合は除く)。4D Server上で実行するためには、[QR SET DESTINATION](qr-set-destination.md) コマンドに "\*" 引数を渡して呼び出します。プリンターに問題があった場合(用紙切れ、プリンターと接続できない、等)は、エラーメッセージは何も表示されません。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 746 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md index 0aedc08c371555..3578e9e436a388 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR SET AREA PROPERTY** コマンドを使用し、*property* に渡したインタフェース要素 (ツールバーやメニューバー) を表示、または非表示に設定できます。 @@ -36,4 +33,14 @@ displayed_sidebar: docs #### 参照 -[QR Get area property](qr-get-area-property.md) \ No newline at end of file +[QR Get area property](qr-get-area-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 796 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md index ab397ae3b8725a..6c0e6ce77a153a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET BORDERS コマンドを使用し、指定したセルの罫線スタイルを設定できます。 @@ -76,4 +73,14 @@ displayed_sidebar: docs #### 参照 -[QR GET BORDERS](qr-get-borders.md) \ No newline at end of file +[QR GET BORDERS](qr-get-borders.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 797 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md index 4e1f1a0e5bf08e..a200a4da9b1bba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR SET DESTINATION** コマンドは、*area* に渡された参照番号のエリア用のレポート出力タイプを設定します。 @@ -51,4 +48,14 @@ displayed_sidebar: docs #### 参照 -[QR GET DESTINATION](qr-get-destination.md) \ No newline at end of file +[QR GET DESTINATION](qr-get-destination.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 745 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md index d1dec882c1fd4d..6a3e7aaa106e5d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET DOCUMENT PROPERTY コマンドを使用し、印刷ダイアログの表示の有無、またはドキュメントで使用する単位の指定を行うことができます。 @@ -36,4 +33,14 @@ displayed_sidebar: docs #### 参照 -[QR Get document property](qr-get-document-property.md) \ No newline at end of file +[QR Get document property](qr-get-document-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 772 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md index 3fd39d76559d0c..e743aa3ef4ac3a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET HEADER AND FOOTER コマンドを使用し、ヘッダまたはフッタの内容とサイズを設定することができます。 @@ -57,4 +54,14 @@ displayed_sidebar: docs #### 参照 -[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) \ No newline at end of file +[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 774 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md index 3acb01024259fb..9365f780775cb3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET HTML TEMPLATEコマンドは、クイックレポートエリアに使用されるHTMLテンプレートを設定します。テンプレートは、HTML形式でレポートを作成する際に使用されます。 @@ -71,4 +68,14 @@ displayed_sidebar: docs #### 参照 -[QR Get HTML template](qr-get-html-template.md) \ No newline at end of file +[QR Get HTML template](qr-get-html-template.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 750 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md index f942134e1dabac..1a7ccde6b5d879 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ##### リストモード @@ -109,4 +106,14 @@ QR SET INFO COLUMNコマンドを使用しても、すべてのセルに対応 [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 765 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md index 85d9d82ba54eec..72614fa5cd4be8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET INFO ROW コマンドは、*row*に渡した行を表示/非表示に設定します。 @@ -52,4 +49,14 @@ displayed_sidebar: docs [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO COLUMN](qr-set-info-column.md) \ No newline at end of file +[QR SET INFO COLUMN](qr-set-info-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 763 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md index a54c99b7bf0d33..e9468d510354fd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET REPORT KIND コマンドは、*area*に渡した参照番号のエリアのレポートタイプを設定します。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[QR Get report kind](qr-get-report-kind.md) \ No newline at end of file +[QR Get report kind](qr-get-report-kind.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 738 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md index 25005945525c2a..05a81c847cdd59 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET REPORT TABLE コマンドは、*area*に渡した参照のレポートエリアに、*table*に渡した番号のテーブルをカレントテーブルとして設定します。 @@ -28,4 +25,14 @@ displayed_sidebar: docs #### 参照 -[QR Get report table](qr-get-report-table.md) \ No newline at end of file +[QR Get report table](qr-get-report-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 757 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md index 34073b3f151556..9a523346e7ab11 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET SELECTION コマンドを使用するとマウスクリックをした場合と同様に、セルや行、カラム、またはエリア全体を反転表示 (選択) することができます。また、現在選択されている範囲を解除することもできます。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[QR GET SELECTION](qr-get-selection.md) \ No newline at end of file +[QR GET SELECTION](qr-get-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 794 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md index 8de00a473fae2a..a148940c3a6f94 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET SORTS コマンド使用し、*area*に渡した参照のレポート内にあるカラムのソート順を設定できます。 @@ -47,4 +44,14 @@ displayed_sidebar: docs #### 参照 -[QR GET SORTS](qr-get-sorts.md) \ No newline at end of file +[QR GET SORTS](qr-get-sorts.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 752 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md index 9573fc5da1f4bd..5b69daaf35476c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET TEXT PROPERTY コマンドを使用し、*colNum* と *rowNum* で指定されたセルのテキスト属性を設定できます。 @@ -85,4 +82,14 @@ displayed_sidebar: docs #### 参照 -[QR Get text property](qr-get-text-property.md) \ No newline at end of file +[QR Get text property](qr-get-text-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 759 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md index 5a5c5d6ea63fd0..3766d57a37920f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Note:** このコマンドで小計を作成することはできません。 @@ -99,4 +96,14 @@ QR SET TOTALS DATA コマンドを使用し、特定のセルの詳細を設定 #### 参照 -[QR GET TOTALS DATA](qr-get-totals-data.md) \ No newline at end of file +[QR GET TOTALS DATA](qr-get-totals-data.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 767 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md index 2387bc7b6c1eda..bb24a5ca450075 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET TOTALS SPACING コマンドを使用し、小計行の下部の行間を設定できます。このコマンドはリストモードにのみ適用されます。 @@ -39,4 +36,14 @@ displayed_sidebar: docs #### 参照 -[QR GET TOTALS SPACING](qr-get-totals-spacing.md) \ No newline at end of file +[QR GET TOTALS SPACING](qr-get-totals-spacing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 761 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md index 4b186bf2fb94ad..55297feac169ac 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### 説明 -**QUERY BY ATTRIBUTE** は*objectField*、*attributePath*、*queryOp* そして *value* 引数を使用して定義されたクエリ文字列に合致するレコードを検索し、*aTable* に対しレコードのセレクションを返します。 - -**QUERY BY ATTRIBUTE** はカレントプロセスにおいて*aTable* で指定されたテーブルのカレントセレクションを変更し、新しいセレクションの第一レコードをカレントレコードとします。*aTable* 引数が省略されていた場合、コマンドはデフォルトのテーブルへと適用されます。デフォルトテーブルが設定されていない場合、エラーが発生します。 +**QUERY BY ATTRIBUTE** は*objectField*、*attributePath*、*queryOp* そして *value* 引数を使用して定義されたクエリ文字列に合致するレコードを検索し、*aTable* に対しレコードのセレクションを返します。はカレントプロセスにおいて*aTable* で指定されたテーブルのカレントセレクションを変更し、新しいセレクションの第一レコードをカレントレコードとします。*aTable* 引数が省略されていた場合、コマンドはデフォルトのテーブルへと適用されます。デフォルトテーブルが設定されていない場合、エラーが発生します。 任意の*conjOp* 引数を使用すると、**QUERY BY ATTRIBUTE** の呼び出しを複数のクエリ定義と組み合わせることができます。使用可能な接続演算子は[QUERY](query.md) コマンドに対して使用できるものと同じです: @@ -409,4 +407,16 @@ GMT設定を使用したくない場合、これらの設定を以下の様に *4Dオブジェクトの構造* -[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) \ No newline at end of file +[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1331 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md index c3d1e55ee00918..19d66d354b4def 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QUERY BY EXAMPLEは、デザインモードのフォームによるクエリメニューと同じ処理を実行します。このコマンドはクエリウィンドウとしてカレント入力フォームを表示します。QUERY BY EXAMPLEは、クエリウィンドウに入力された情報を使用して*aTable*を検索します。このときに使用するフォームには、ユーザに検索させたいフィールドを置かなければなりません。この検索は最適化されています。つまり、クエリを最適化するためにインデックスフィールドが自動的に使用されます。 @@ -42,4 +39,17 @@ displayed_sidebar: docs #### 参照 [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 292 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md index d643980e01b9f5..b277b8ffb71204 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md @@ -97,4 +97,15 @@ displayed_sidebar: docs [QUERY](query.md) [QUERY BY SQL](query-by-sql.md) [QUERY SELECTION](query-selection.md) -[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) \ No newline at end of file +[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 48 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md index dedbd86630d375..bc46489a1c1ddd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 4Dに統合されたSQLカーネルのメリットを利用ためにQUERY BY SQLコマンドを使用できます。このコマンドで以下のような簡単なSELECTクエリを実行できます: @@ -158,4 +155,16 @@ QUERY BY SQL コマンドを使用する場合: #### 参照 -[QUERY BY FORMULA](query-by-formula.md) \ No newline at end of file +[QUERY BY FORMULA](query-by-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 942 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md index b0d8a3088c4bac..f414db7d37a25f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md @@ -44,4 +44,16 @@ displayed_sidebar: docs #### 参照 -[QUERY BY ATTRIBUTE](query-by-attribute.md) \ No newline at end of file +[QUERY BY ATTRIBUTE](query-by-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1424 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md index 77492ca41355cc..74639f241da8ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md @@ -29,4 +29,15 @@ QUERY SELECTION BY FORMULAは[QUERY BY FORMULA](query-by-formula.md "QUERY BY FO [QUERY](query.md) [QUERY BY FORMULA](query-by-formula.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 207 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md index cc6ce8a5c8460f..8c670f6ddfa334 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md @@ -27,4 +27,14 @@ QUERY SELECTION WITH ARRAYは[QUERY WITH ARRAY](query-with-array.md "QUERY WITH #### 参照 -[QUERY WITH ARRAY](query-with-array.md) \ No newline at end of file +[QUERY WITH ARRAY](query-with-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1050 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md index c940b3b1468aee..77bc72f4c7d376 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### 説明 -**QUERY SELECTION** は、*aTable*のレコードを検索します。**QUERY SELECTION** はカレントプロセスの*aTable*のカレントセレクションを変更し、セレクションの先頭のレコ-ドをカレントレコ-ドにします。 +**QUERY SELECTION** は、*aTable*のレコードを検索します。はカレントプロセスの*aTable*のカレントセレクションを変更し、セレクションの先頭のレコ-ドをカレントレコ-ドにします。 **QUERY SELECTION** は、[QUERY](query.md)と同じような動作を実行します。相違点は検索する範囲が異なるだけです: @@ -42,4 +42,16 @@ displayed_sidebar: docs #### 参照 -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 341 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md index efaebc1cc50afb..875fc4ad77cb4d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md @@ -38,4 +38,14 @@ displayed_sidebar: docs #### 参照 -[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) \ No newline at end of file +[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 644 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query.md index f82ae5b477c04e..10fd96445314fb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query.md @@ -309,4 +309,16 @@ N対1でリレートされた3つのテーブルがあります: \[City\] -> \[D #### 参照 -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 277 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md index 2b8ca7f3f96ede..9d63231eb681af 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md @@ -62,4 +62,13 @@ displayed_sidebar: docs #### 参照 -[On Exitデータベースメソッド](on-exit-database-method.md) \ No newline at end of file +[On Exitデータベースメソッド](on-exit-database-method.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 291 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/random.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/random.md index 798cfbe230da80..b50d2c927e5b0e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/random.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/random.md @@ -32,3 +32,13 @@ displayed_sidebar: docs ```4d  vlResult:=(Random%21)+10 ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 100 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md index 1ded6ef788ae49..4bd0bc05a74bf6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md @@ -35,4 +35,13 @@ displayed_sidebar: docs [READ ONLY](read-only.md) [READ WRITE](read-write.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 362 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md index 16efad7707ef6c..bf9fa35c1a8294 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md @@ -25,4 +25,13 @@ displayed_sidebar: docs [Read only state](read-only-state.md) [READ WRITE](read-write.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 145 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md index b778b50d22c8e1..c5bb75a71d75c6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -READ PICTURE FILE コマンドを使用してディスクファイル*fileName* に保存されたピクチャを開き、これを*picture* 引数に指定した4Dフィールドまたは変数へロードすることができます。 - -*fileName* には読み込むファイルのフルパス名またはファイル名のみを渡すことができます。ファイル名のみを渡した場合、そのファイルはデータベースストラクチャと同階層になければなりません。Windowsではファイル拡張子が必要です。 +READ PICTURE FILE コマンドを使用してディスクファイル*fileName* に保存されたピクチャを開き、これを*picture* 引数に指定した4Dフィールドまたは変数へロードすることができます。には読み込むファイルのフルパス名またはファイル名のみを渡すことができます。ファイル名のみを渡した場合、そのファイルはデータベースストラクチャと同階層になければなりません。Windowsではファイル拡張子が必要です。 空の文字列 ("") が*fileName* に渡されると、標準のファイルを開くダイアログボックスが表示され、ユーザは読み込むファイルやフォーマットを指定できます。 [PICTURE CODEC LIST](picture-codec-list.md "PICTURE CODEC LIST") コマンドを使用して、利用可能なフォーマットを取得できます。 @@ -39,4 +37,14 @@ displayed_sidebar: docs [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) [WRITE PICTURE FILE](write-picture-file.md) -*ピクチャ* \ No newline at end of file +*ピクチャ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 678 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md index 13000fc6abef24..968684198d025d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md @@ -29,4 +29,13 @@ READ WRITEコマンドは、レコードを修正しその結果を保存しな [READ ONLY](read-only.md) [Read only state](read-only-state.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 146 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md index 883f3e8468d539..e481c6c80e70b9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md @@ -133,4 +133,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 552 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md index 844787a396a552..82a8d21d81a2fb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md @@ -62,4 +62,14 @@ Mac OS Xのシリアルポート バッファーサイズは、理論的には [RECEIVE PACKET](receive-packet.md) [Semaphore](semaphore.md) [SET CHANNEL](set-channel.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 172 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md index 51ded97f7dfcfb..b5ebe6ddec6220 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md @@ -112,4 +112,14 @@ RECEIVE PACKET呼び出し後、エラーなしでパケットを受信すれば [SEND PACKET](send-packet.md) [SET DOCUMENT POSITION](set-document-position.md) [SET TIMEOUT](set-timeout.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 104 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md index ccbcf7c4b928f2..23466ecf27b1c9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md @@ -149,4 +149,14 @@ displayed_sidebar: docs [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 79 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md index ca7d3d81416a09..79bcc254a4af6d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md @@ -40,4 +40,14 @@ displayed_sidebar: docs [ON ERR CALL](on-err-call.md) [RECEIVE RECORD](receive-record.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 81 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md index 38b26e6f859eb5..de87f7f82eae5e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md @@ -42,4 +42,13 @@ displayed_sidebar: docs [Is new record](is-new-record.md) [Selected record number](selected-record-number.md) [Sequence number](sequence-number.md) -*レコード番号について* \ No newline at end of file +*レコード番号について* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 243 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md index a51d0d7ddf9ce0..714447d847b0e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 76 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md index 3345ba11a1c2f5..4be317c496b044 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 195 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md index dc63bf97a8cff8..1b6eac3fa297ad 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 83 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md index a64b02ac8339e3..e171fa75f8c217 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 REDRAW WINDOW コマンドは*window*に渡した参照番号を持つウィンドウのグラフィックな更新を行います。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[ERASE WINDOW](erase-window.md) \ No newline at end of file +[ERASE WINDOW](erase-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 456 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md index d7b014bd421f14..cc487bb8f1f937 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 メソッドを使用して、サブフォームで中に表示されるフィールドの値を変更する場合、フォームを確実に更新するために REDRAW コマンドを使用しなければなりません。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 174 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md index f74666ea09c3af..ccad7dfdeed881 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **REDUCE RESTORE WINDOW** コマンドは、*window* 引数に参照を渡したウィンドウを、WindowsのタスクバーまたはmacOS のDockへ収納、またはそこから展開します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs [Is window reduced](is-window-reduced.md) [MAXIMIZE WINDOW](maximize-window.md) -[MINIMIZE WINDOW](minimize-window.md) \ No newline at end of file +[MINIMIZE WINDOW](minimize-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1829 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md index cd7a3c68e6d9b5..fa5d865ab8a92f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md @@ -56,4 +56,15 @@ displayed_sidebar: docs [ORDER BY](order-by.md) [QUERY](query.md) [SCAN INDEX](scan-index.md) -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 351 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md index bdcf4c2676c24a..d968f45345b030 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Refresh license** コマンドはカレントの4D Server ライセンスを更新します。このコマンドは4D カスタマーデータベースへと接続し、カレントのライセンスに関連した新規あるいは更新されたライセンス(*例:* 追加購入したクライアントライセンスなど)を自動的にアクティベートします。 @@ -47,3 +44,13 @@ displayed_sidebar: docs     ALERT($res.statusText)  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1336 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md index 9ef1119a6f52fc..8292a00fe91fe6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 REGENERATE MISSING TABLE コマンドは tableName引数に渡された名前の失われたテーブルを再構築します。失われたテーブルが再構築されると、ストラクチャエディタにそれらが現れ、データに再びアクセスできるようになります。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 -[GET MISSING TABLE NAMES](get-missing-table-names.md) \ No newline at end of file +[GET MISSING TABLE NAMES](get-missing-table-names.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1126 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md index 69dba7edbb7d5b..0a0bed2f711395 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 REGISTER CLIENT コマンドは、4Dクライアントステーションを、*clientName*で指定した名前で4D Serverに登録し、他のクライアントもしくは4D Server (ストアドプロシージャから) が登録されたマシン上で、[EXECUTE ON CLIENT](execute-on-client.md "EXECUTE ON CLIENT")コマンドを使ってメソッドを実行できるようにします。一旦登録されると、4Dクライアントは他のクライアント用に1つまたはそれ以上のメソッドを実行することができます。 @@ -121,4 +118,14 @@ displayed_sidebar: docs [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 648 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md index eae39d2c024ef1..91f5e868357e27 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md @@ -47,4 +47,13 @@ displayed_sidebar: docs #### 参照 -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1638 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md index 51a8cf07fc7f5f..aa79fedb250af5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**REJECT NEW REMOTE CONNECTIONS** コマンドは、アプリケーションサーバーが新規リモートユーザー接続を受け入れるかどうかを指定します。 - -*rejectStatus* 引数には、リモート接続を拒否するためには**true** を渡します。**false** を渡した場合、新規リモート接続を許可することを指定します。 +**REJECT NEW REMOTE CONNECTIONS** コマンドは、アプリケーションサーバーが新規リモートユーザー接続を受け入れるかどうかを指定します。引数には、リモート接続を拒否するためには**true** を渡します。**false** を渡した場合、新規リモート接続を許可することを指定します。 **注**: このコマンドは4D Server 上でのみ実行可能です。コマンドを呼び出しているメソッドが、リモートクライアントでローカルに実行されていた場合、あるいはシングルユーザー版4D で実行されていた場合、**REJECT NEW REMOTE CONNECTIONS** は何もしません。 @@ -38,4 +36,13 @@ displayed_sidebar: docs [DROP REMOTE USER](drop-remote-user.md) [Application info](application-info.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1635 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject.md index fc761f985bc786..2f790b9a335f23 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **REJECT**には2つの形式があります。第1の形式は、引数がありません。これは、データ入力全体を取り消し、ユーザは強制的にフォーム上にとどまります。第2の形式は、*aField* だけを取り消し、ユーザは強制的にそのフィールド上にとどまります。 @@ -64,4 +61,13 @@ displayed_sidebar: docs [ACCEPT](accept.md) [CANCEL](cancel.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 38 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md index 739c366e67a70d..29537b4d35067c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -RELATE MANY SELECTION コマンドは、1テーブルのレコードセレクションを元にしてnテーブルのレコードセレクションを作成し、nテーブルの一番目のレコードをカレントレコードとしてロードします。 - -**Note:** RELATE MANY SELECTIONは、1テーブルのカレントレコードを変更します。 +RELATE MANY SELECTION コマンドは、1テーブルのレコードセレクションを元にしてnテーブルのレコードセレクションを作成し、nテーブルの一番目のレコードをカレントレコードとしてロードします。RELATE MANY SELECTIONは、1テーブルのカレントレコードを変更します。 #### 例題 @@ -34,4 +32,15 @@ displayed_sidebar: docs [QUERY](query.md) [RELATE ONE](relate-one.md) -[RELATE ONE SELECTION](relate-one-selection.md) \ No newline at end of file +[RELATE ONE SELECTION](relate-one-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 340 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md index fc0ddc8db18245..94344f9329e845 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md @@ -66,4 +66,14 @@ displayed_sidebar: docs #### 参照 [OLD RELATED MANY](old-related-many.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 262 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md index 6d1ea0db3e77ff..905530e85b89cf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md @@ -56,4 +56,15 @@ displayed_sidebar: docs [QUERY](query.md) [RELATE MANY SELECTION](relate-many-selection.md) [RELATE ONE](relate-one.md) -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 349 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md index 902def7b20c71a..789bddb68b48fc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **RELATE ONE** には2つの形式があります。 @@ -90,4 +87,16 @@ displayed_sidebar: docs #### 参照 [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 42 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md index cc3340e31365e5..ccf773eb8900cf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 RELEASE MENU コマンドは*menu* に渡したIDを持つメニューをメモリから解放します。このメニューは[Create menu](create-menu.md "Create menu") コマンドで作成されたものでなければなりません。以下のルールが適用されます: 各[Create menu](create-menu.md)に対応する[RELEASE MENU](release-menu.md)コマンドが呼び出されなければなりません。 @@ -56,4 +53,13 @@ displayed_sidebar: docs #### 参照 -[Create menu](create-menu.md) \ No newline at end of file +[Create menu](create-menu.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 978 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md index 95757a32ac6599..e1aaae3d2219ba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1135 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md index 773b71bbf65e7f..cf88361e53ab68 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **RELOAD PROJECT** コマンドは、カレントの4D 環境で実行中のプロジェクトに対して、ソースファイル定義(メソッド、ファイル、等)をディスクから再読み込みします。このコマンドは**インタープリタモード**で実行中の4D プロジェクトに対してのみ使用可能です。コマンドの実行は非同期となります。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 - \ No newline at end of file + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1739 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md index 7d7a744d06c886..b7640c9548720b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### 参照 -[ADD TO SET](add-to-set.md) \ No newline at end of file +[ADD TO SET](add-to-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 561 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md index c7bdda770ce08d..9cfc4a9c5a2999 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 REMOVE PICTURE FROM LIBRARY コマンドは、*picRef*引数に渡した参照番号または*picName*引数の名前を持つピクチャをピクチャライブラリから消去します。 @@ -51,4 +48,14 @@ displayed_sidebar: docs [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 567 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md index 959154eb539c50..43722f6c3ac09a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md @@ -71,4 +71,13 @@ Replace stringの使用例を次に示します。結果を変数*vtResult*に [Change string](change-string.md) [Delete string](delete-string.md) -[Insert string](insert-string.md) \ No newline at end of file +[Insert string](insert-string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 233 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/request.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/request.md index 55dd44b3c097c6..05720b4332d144 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/request.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/request.md @@ -79,4 +79,14 @@ displayed_sidebar: docs #### 参照 [ALERT](alert.md) -[CONFIRM](confirm.md) \ No newline at end of file +[CONFIRM](confirm.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 163 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md index 07f5e1f854953e..cdb84064bc4c8e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 RESIZE FORM WINDOW コマンドはカレントフォームウィンドウのサイズを変更します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs [FORM GET PROPERTIES](form-get-properties.md) [FORM SET SIZE](form-set-size.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 890 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md index dad792e2a4604f..4df9b1a1f913ed 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md @@ -28,4 +28,14 @@ displayed_sidebar: docs #### 参照 -[CREATE ALIAS](create-alias.md) \ No newline at end of file +[CREATE ALIAS](create-alias.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 695 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md index 2a9bf4f72b1648..1e1b339a93e34c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md @@ -108,4 +108,13 @@ DRAG AND DROP PROPERTIES コマンドの例を参照. [Get pointer](get-pointer.md) [Is a variable](is-a-variable.md) [Is nil pointer](is-nil-pointer.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 394 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md index 207e3a38621140..82048e6e37b23a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 RESOURCE LIST コマンドは、*resType*に渡したタイプのリソースIDとリソース名から、*resIDs*と*resNames*の配列を作成します。 @@ -71,4 +68,13 @@ RESOURCE LISTを呼び出す前に配列を事前定義する場合は、*resIDs #### 参照 -[RESOURCE TYPE LIST](resource-type-list.md) \ No newline at end of file +[RESOURCE TYPE LIST](resource-type-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 500 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md index 4b415c154dd377..92d51b337a6990 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 RESOURCE TYPE LIST コマンドは、現在開いているリソースファイルの中に存在するリソースのリソースタイプによる*resTypes*配列を作成します。 @@ -82,4 +79,13 @@ RESOURCE TYPE LISTを呼び出す前に、*resTypes*配列を文字列配列ま #### 参照 -[RESOURCE LIST](resource-list.md) \ No newline at end of file +[RESOURCE LIST](resource-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 499 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md index 8f31e1803032ce..3ea307151a19bc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md @@ -33,4 +33,14 @@ displayed_sidebar: docs #### 参照 [Get last update log path](get-last-update-log-path.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1292 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md index 25e6b8b00fd124..8b873a244bcbe3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md @@ -35,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 889 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore.md index ba7d13c915c496..c3966e5241a185 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 RESTORE コマンドは4Dアーカイブに含まれるファイルを復元するために使用できます。このコマンドはバックアップを管理するためのカスタマイズされたインターフェースで利用できます。 @@ -35,4 +32,14 @@ RESTORE コマンドは*OK*および*Document*変数を更新します。復元 #### 参照 [BACKUP](backup.md) -[RESTORE INFO](restore-info.md) \ No newline at end of file +[RESTORE INFO](restore-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 918 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md index ab63ab211e78c3..d8a9b7a881f1c4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -**RESUME INDEXES** コマンドは、 [PAUSE INDEXES](pause-indexes.md) コマンドを使用して停止させた *aTable* のインデックスを全て再起動させます。 *aTable* のインデックスが停止されていない場合、コマンドは何もしません。 +**RESUME INDEXES** コマンドは、 [PAUSE INDEXES](pause-indexes.md) コマンドを使用して停止させた *aTable* のインデックスを全て再起動させます。のインデックスが停止されていない場合、コマンドは何もしません。 ほとんどの場合、このコマンドの実行は *aTable* のインデックスのリビルドをトリガーします。 任意の *\** 引数を渡した場合、インデックスのリビルドは非同期モードにて実行されます。これはインデックスの完了如何に関わらず、コマンドを呼び出すメソッドは呼び出された後も実行を続けるという事です。この引数を省略した場合、インデックスのリビルドはメソッドの実行をリビルドのオペレーションが完了するまで停止します。 @@ -26,4 +26,13 @@ displayed_sidebar: docs #### 参照 [CREATE INDEX](create-index.md) -[PAUSE INDEXES](pause-indexes.md) \ No newline at end of file +[PAUSE INDEXES](pause-indexes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1294 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md index 4b3843b163f776..1c57a7902711a6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md @@ -24,4 +24,14 @@ displayed_sidebar: docs #### 参照 [DELAY PROCESS](delay-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 320 | +| スレッドセーフである | ✓ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md index b9a09fe09f3bea..61560865ebb911 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md @@ -22,4 +22,13 @@ displayed_sidebar: docs [Active transaction](active-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*トランザクションの停止* \ No newline at end of file +*トランザクションの停止* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1386 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md index 306abfff46fe0c..0d8780fee462f3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Right click コマンドは、マウスの右ボタンがクリックされた場合に[True](true.md "True") を返します。 @@ -25,4 +22,13 @@ displayed_sidebar: docs #### 参照 [Contextual click](contextual-click.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 712 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/round.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/round.md index cd84e56d78972e..89443f57b77d5a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/round.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/round.md @@ -37,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[Trunc](trunc.md) \ No newline at end of file +[Trunc](trunc.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 94 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md index a007d59645279d..199f3432bc181b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SAVE LIST コマンドは、デザインモードのリストエディタに、*list* 引数に渡した参照番号を持つリストを*listName* 引数に渡した名前で保存します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 384 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md index 6f15091f27bb3c..10b65b6475ceaf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md @@ -49,4 +49,13 @@ SAVE RECORD が必要とされる場合を次に示します: [CREATE RECORD](create-record.md) [Locked](locked.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 53 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md index 3a710ba383651b..df932d538eac21 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md @@ -24,4 +24,13 @@ SAVE RELATED ONEは、ロックされたレコードを保存しません。こ [CREATE RELATED ONE](create-related-one.md) [Locked](locked.md) [RELATE ONE](relate-one.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 43 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md index 4d9d847bfa77c0..7d60c9c6712264 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md @@ -40,4 +40,14 @@ SAVE SETコマンドは、時間のかかる検索の結果をディスクに保 #### 参照 -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 184 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md index 33e7729b43e847..377c3f6836c879 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md @@ -47,4 +47,14 @@ displayed_sidebar: docs [DOCUMENT TO BLOB](document-to-blob.md) [LOAD VARIABLES](load-variables.md) [VARIABLE TO BLOB](variable-to-blob.md) -*システム変数* \ No newline at end of file +*システム変数* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 75 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md index dfd2aa90e74c14..e5b4bda8275e9a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md @@ -44,4 +44,14 @@ displayed_sidebar: docs #### 参照 -[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) \ No newline at end of file +[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 857 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md index 040c4656cc8daa..0c3687806a09a1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md @@ -73,4 +73,14 @@ else #### 参照 -[SAX GET XML CDATA](sax-get-xml-cdata.md) \ No newline at end of file +[SAX GET XML CDATA](sax-get-xml-cdata.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 856 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md index 65ed8c49328342..9451766a11f596 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md @@ -45,4 +45,14 @@ XMLのコメントはXMLインタプリタが内容を解析しないテキス #### 参照 -[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) \ No newline at end of file +[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 852 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md index bab64753cf06b8..336b64e588b142 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md @@ -45,4 +45,14 @@ DocType文は書かれたXMLのタイプを示し、使用される Document Typ #### 参照 -[SAX ADD XML COMMENT](sax-add-xml-comment.md) \ No newline at end of file +[SAX ADD XML COMMENT](sax-add-xml-comment.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 851 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md index f0e07a45af49c4..4b9b1f25fff380 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md @@ -50,4 +50,14 @@ displayed_sidebar: docs #### 参照 [SAX GET XML ELEMENT VALUE](sax-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 855 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md index 1fc42ebe167563..20900e89d6de2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md @@ -36,4 +36,13 @@ displayed_sidebar: docs #### 参照 [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 854 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md index 955f824ae4dee3..988d8cf065e20c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md @@ -48,4 +48,14 @@ displayed_sidebar: docs #### 参照 [SAX ADD XML CDATA](sax-add-xml-cdata.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 878 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md index 3a1cb082e67632..fcf9ed9663d4ea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md @@ -25,4 +25,14 @@ displayed_sidebar: docs #### 参照 [SAX ADD XML COMMENT](sax-add-xml-comment.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 874 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md index d165f45a0f7f6c..d29f32457c6dfa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md @@ -29,4 +29,14 @@ displayed_sidebar: docs #### 参照 [SAX Get XML node](sax-get-xml-node.md) -[SAX SET XML DECLARATION](sax-set-xml-declaration.md) \ No newline at end of file +[SAX SET XML DECLARATION](sax-set-xml-declaration.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 873 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md index 4113fbab25564a..4451ff457c1671 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md @@ -43,4 +43,14 @@ TextまたはBLOB 型の変数を*value* 引数に渡します。BLOBを渡す #### 参照 [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 877 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md index 9844c09e44530d..b1f6231f5af50b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md @@ -60,4 +60,14 @@ tAttrValues{3} には "333"が返されます。 #### 参照 -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 876 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md index f950fa925bdbbe..82287f7685d734 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md @@ -47,4 +47,14 @@ displayed_sidebar: docs #### 参照 -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 879 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md index 13a96dd6ddfd1e..79453898fb3f8c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md @@ -55,3 +55,14 @@ displayed_sidebar: docs #### システム変数およびセット コマンドが正しく実行されるとシステム変数OKには1が、そうでなければ0が設定されエラーが生成されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 860 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md index 44341cfe82034a..84de52cad0d6ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md @@ -39,4 +39,13 @@ displayed_sidebar: docs #### 参照 [SAX ADD PROCESSING INSTRUCTION](sax-add-processing-instruction.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 875 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md index 4b2c8b16b55c75..73e771368a6be0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md @@ -53,4 +53,13 @@ SAX OPEN XML ELEMENT ARRAYS は日付、数値、ブール、そしてピクチ [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 921 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md index 820b97310091a8..a6f100b9ad7419 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md @@ -51,4 +51,14 @@ displayed_sidebar: docs #### 参照 [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 853 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md index 7936d9f2f12533..61d929f584bf98 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 -[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) \ No newline at end of file +[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 858 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md index 3b148038ef9e16..143439743c08e9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md @@ -48,4 +48,15 @@ SCAN INDEXは、インデックスフィールドにのみ使用できます。 [ORDER BY](order-by.md) [QUERY](query.md) -[REDUCE SELECTION](reduce-selection.md) \ No newline at end of file +[REDUCE SELECTION](reduce-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 350 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md index cd6daba15fb5d6..a8452a6ba87a4f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SCREEN COORDINATES コマンドは、*screenID* に指定した画面のグローバル座標を引数*left*、*top*、*right*と*bottom*に返します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs [Count screens](count-screens.md) [Menu bar screen](menu-bar-screen.md) -[SCREEN DEPTH](screen-depth.md) \ No newline at end of file +[SCREEN DEPTH](screen-depth.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 438 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md index 2b901232f2f333..f4d7d27191ffb0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Screen depthコマンドは、モニターについての情報を引数*depth*と*color*に返します。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 -[Count screens](count-screens.md) \ No newline at end of file +[Count screens](count-screens.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 439 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md index 4cd986fd642b93..2183dcb4e2da1c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Windowsでは、Screen heightは、4Dアプリケーションウィンドウ(MDIウィンドウ) の高さを返します。任意の引数*\** を指定した場合、Screen heightは画面の高さを返します。 @@ -26,4 +23,13 @@ Macintoshでは、Screen height はメイン画面の高さを返します。メ #### 参照 [SCREEN COORDINATES](screen-coordinates.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 188 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md index bd7cf4aa154369..c7d84664142678 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Windowsの場合、Screen width は4Dアプリケーションウィンドウ(MDIウィンドウ) の幅を返します。任意の引数 *\** を指定した場合、Screen widthは画面の幅を返します。 @@ -26,4 +23,13 @@ Macintoshの場合、, Screen width はメイン画面の幅を返します。 #### 参照 [SCREEN COORDINATES](screen-coordinates.md) -[Screen height](screen-height.md) \ No newline at end of file +[Screen height](screen-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 187 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md index e4c3397b1f0b0f..d58194af97fc0d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md @@ -97,4 +97,14 @@ displayed_sidebar: docs #### 参照 [Open document](open-document.md) -[Select folder](select-folder.md) \ No newline at end of file +[Select folder](select-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 905 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md index 0474193a887858..8c79d36fb73354 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md @@ -85,4 +85,14 @@ displayed_sidebar: docs [CREATE FOLDER](create-folder.md) [FOLDER LIST](folder-list.md) -[Select document](select-document.md) \ No newline at end of file +[Select document](select-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 670 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md index 28f98f1cba95c6..cf05ffadc9cf88 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SELECT LIST ITEMS BY POSITION コマンドは、*list*に渡された参照番号のリストにおいて、*itemPos*ならびにオプションとして*positionsArray*に渡された位置にある項目を選択します。 @@ -73,4 +70,13 @@ displayed_sidebar: docs [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 381 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md index 5638bedf664430..69496d52047e83 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SELECT LIST ITEMS BY REFERENCE コマンドは、*list*に渡された参照番号のリストにおいて、*itemRef*ならびにオプションとして*refArray*に渡された項目参照番号を持つ項目を選択します。 @@ -52,4 +49,13 @@ displayed_sidebar: docs [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 630 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md index c7fd173c82cf3b..d6f767321e1b54 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SELECT LOG FILE** コマンドは、*logFile*引数で指定されたログファイルのオープン、作成、クローズを行います。 @@ -39,4 +36,14 @@ displayed_sidebar: docs #### 参照 -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 345 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md index 3db31a08254d98..e90b981906467b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Select RGB Color**コマンドはシステムカラー選択ウィンドウを表示し、ユーザによって選択された色のRGB値を返します。 @@ -42,4 +39,15 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 956 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md index 02da6f0af48f19..322889d92a85a2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Selected list items** コマンドは、*list*引数に渡された参照番号またはオブジェクト名のリストにおいて、選択された項目の位置または参照番号を返します。 @@ -87,4 +84,13 @@ displayed_sidebar: docs #### 参照 [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 379 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md index 39a21d63069d00..6c2f4cbaefc248 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md @@ -34,4 +34,13 @@ displayed_sidebar: docs [GOTO SELECTED RECORD](goto-selected-record.md) [Records in selection](records-in-selection.md) -*レコード番号について* \ No newline at end of file +*レコード番号について* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 246 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md index f86f3583edc46c..a6743b838f6d69 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md @@ -106,4 +106,13 @@ displayed_sidebar: docs [ON ERR CALL](on-err-call.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 368 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md index 2636d1d7f5d6be..f99d3763d883b9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md @@ -78,4 +78,13 @@ displayed_sidebar: docs [MULTI SORT ARRAY](multi-sort-array.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 260 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md index 3a29d4f580a0f3..348a8caedd63cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md @@ -89,4 +89,13 @@ displayed_sidebar: docs #### 参照 -[JSON TO SELECTION](json-to-selection.md) \ No newline at end of file +[JSON TO SELECTION](json-to-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1234 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/self.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/self.md index 61af5599032233..7798385d4e01df 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/self.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/self.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 互換性に関する注意 このコマンドは互換性の目的で保持されています。4D v12からはOBJECT Get pointerコマンドの利用が推奨されます。 @@ -40,4 +37,13 @@ Self が上記のコンテキスト以外で呼ばれた場合、Nilポインタ [OBJECT Get pointer](object-get-pointer.md) [RESOLVE POINTER](resolve-pointer.md) -[This](this.md) \ No newline at end of file +[This](this.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 308 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md index 2733ee9334a0be..ae07c625a7fa00 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md @@ -149,4 +149,13 @@ var $T_Sema_local;$T_Message : Text [CLEAR SEMAPHORE](clear-semaphore.md) [Test semaphore](test-semaphore.md) -*セマフォーとシグナル* \ No newline at end of file +*セマフォーとシグナル* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 143 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md index a1e50530fcfeb8..54e9f458a24a6d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**SEND MESSAGE TO REMOTE USER** コマンドは、全てのリモートユーザー、あるいは特定のリモートユーザーに対して、メッセージを送信します。 - -*message* 引数には、表示されるメッセージのテキストを渡します。これはセッションユーザーのスクリーン上に、アラート画面あるいは通知として表示されます。 +**SEND MESSAGE TO REMOTE USER** コマンドは、全てのリモートユーザー、あるいは特定のリモートユーザーに対して、メッセージを送信します。引数には、表示されるメッセージのテキストを渡します。これはセッションユーザーのスクリーン上に、アラート画面あるいは通知として表示されます。 任意の*userSession* 引数を使用すると、セッションIDを渡すことでメッセージを送信する特定のユーザーを指定することができます。セッションIDは[Process activity](../commands/process-activity.md) コマンドを使用することで取得できます。*userSession* 引数が省略されていた場合、メッセージは全てのユーザーに送信されます。 @@ -51,4 +49,13 @@ displayed_sidebar: docs #### 参照 -[DROP REMOTE USER](drop-remote-user.md) \ No newline at end of file +[DROP REMOTE USER](drop-remote-user.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1632 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md index 718838eb576f4b..4b6e76e5875bb7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md @@ -79,4 +79,13 @@ SEND PACKETコマンドを使用する前に、 [SET CHANNEL](set-channel.md) [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 103 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md index 793d386ad9957a..84d377a1bd5025 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md @@ -33,4 +33,13 @@ displayed_sidebar: docs [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 78 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md index a561ab158e8270..b96e461bf0a69e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md @@ -31,4 +31,13 @@ displayed_sidebar: docs [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 80 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md index 0a92cff0fe6e6e..4d4ff3f0448712 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md @@ -57,4 +57,13 @@ displayed_sidebar: docs [Record number](record-number.md) [Selected record number](selected-record-number.md) -*レコード番号について* \ No newline at end of file +*レコード番号について* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 244 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md index 5f347c39a56a1f..0b4b523d46c7ca 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET ABOUT** コマンドは、**ヘルプ** メニュー(Windows) または**アプリケーション** メニュー(macOS) 内の"**4Dについて**"メニューを*itemText* に変更します。 @@ -45,4 +42,13 @@ displayed_sidebar: docs #### 参照 -[SET HELP MENU](set-help-menu.md) \ No newline at end of file +[SET HELP MENU](set-help-menu.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 316 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md index fc4930d5427487..ec4d6996840865 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET APPLICATION COLOR SCHEME** コマンドは、カレントセッションにおいて、アプリケーションレベルで使用されるカラースキームを定義します。このスキームは特定のスキームをまだ宣言していないフォームに対して適用されます(フォームレベルで定義されるカラースキームはアプリケーションレベルでの設定を上書きします)。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 [FORM Get color scheme](form-get-color-scheme.md) -[Get application color scheme](get-application-color-scheme.md) \ No newline at end of file +[Get application color scheme](get-application-color-scheme.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1762 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md index c68cd30949625d..3a3eb2dc11af11 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md @@ -37,4 +37,13 @@ displayed_sidebar: docs [ASSERT](assert.md) [Asserted](asserted.md) -[Get assert enabled](get-assert-enabled.md) \ No newline at end of file +[Get assert enabled](get-assert-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1131 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md index 17e86831a2f0e0..71150c5d8f13d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md @@ -47,4 +47,13 @@ displayed_sidebar: docs [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) [SET FIELD RELATION](set-field-relation.md) -*リレーションについて* \ No newline at end of file +*リレーションについて* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 310 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md index 49627e0bac875f..bd212b759b5812 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md @@ -49,4 +49,13 @@ BLOBに新しいバイトを割り当て、それらのバイトを特定の値 #### 参照 -[BLOB size](blob-size.md) \ No newline at end of file +[BLOB size](blob-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 606 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md index 3583e8bf405c17..dc7c08583c0716 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md @@ -47,4 +47,13 @@ displayed_sidebar: docs #### 参照 [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) -[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) \ No newline at end of file +[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1425 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md index eaf7004ec0b0d1..8df8c5f44bc8df 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**SET CACHE SIZE**コマンドは、データベースキャッシュのサイズを動的に設定し、またオプションとして、メモリを解放する際の最小バイト数を設定します。 - -**注:** このコマンドはローカルモード(4D Serverおよび4D)用です。リモートモードの4Dでは使用できません。 +**SET CACHE SIZE**コマンドは、データベースキャッシュのサイズを動的に設定し、またオプションとして、メモリを解放する際の最小バイト数を設定します。このコマンドはローカルモード(4D Serverおよび4D)用です。リモートモードの4Dでは使用できません。 *size*引数には、データベースの新しいキャッシュサイズをバイト単位で指定します。新しいサイズは、コマンドが実行された際に動的に適用されます。 @@ -39,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[Get cache size](get-cache-size.md) \ No newline at end of file +[Get cache size](get-cache-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1399 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md index 19a04e2d1bb12c..988053ca68bdb0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md @@ -172,4 +172,14 @@ SET CHANNELコマンドの第2の形式は、ドキュメントファイルの [SEND PACKET](send-packet.md) [SEND RECORD](send-record.md) [SEND VARIABLE](send-variable.md) -[SET TIMEOUT](set-timeout.md) \ No newline at end of file +[SET TIMEOUT](set-timeout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 77 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md index 9cf0fea9ea6ebf..af042e4d8f7d86 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET CURRENT PRINTER** コマンドは現行の4Dアプリケーションでの印刷に使用するプリンターを指定するために使用します。 @@ -55,4 +52,14 @@ Windows 環境下でのPDF ドキュメントの作成は、以下のように #### 参照 [Get current printer](get-current-printer.md) -[PRINTERS LIST](printers-list.md) \ No newline at end of file +[PRINTERS LIST](printers-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 787 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md index c83652011c0d42..ad5a2504f47cb7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET CURSOR コマンド はマウスカーソルを、*cursor* 引数に渡したID番号のシステムカーソルへと変更します。 @@ -62,3 +59,13 @@ displayed_sidebar: docs     SET CURSOR(9019)  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 469 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md index 3f6b74a91aa649..d88f4694722cdc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET DATABASE LOCALIZATION**コマンドを使用して、カレントセッションのデータベースカレント言語を変更できます。 @@ -71,4 +68,14 @@ displayed_sidebar: docs #### 参照 -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1104 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md index 277f2c5e814686..9d40afa47cad6e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET DATABASE PARAMETER**コマンドを使用して、4Dデータベース内部の様々なパラメーターを変更することができます。 @@ -150,4 +147,13 @@ displayed_sidebar: docs [Get database parameter](get-database-parameter.md) [LOG EVENT](log-event.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 642 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md index c25340142b00e2..4b9b2163e3cbad 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md @@ -61,3 +61,13 @@ displayed_sidebar: docs * 2007/01/25 は2007年1月25日を意味します。 このコマンドはデータ入力にのみ影響します。日付の格納や計算には影響しません。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 392 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md index df446043e02a37..b569188687acca 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md @@ -29,4 +29,13 @@ SET DOCUMENT POSITION コマンドは、引数*offset*に渡す、以下の読 [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 482 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md index f85476ac85c450..7e97cd76f3a7c4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md @@ -34,4 +34,14 @@ displayed_sidebar: docs #### 参照 -[GET DOCUMENT PROPERTIES](get-document-properties.md) \ No newline at end of file +[GET DOCUMENT PROPERTIES](get-document-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 478 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md index 1f1aa1cc537436..1af57c202c8910 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md @@ -26,4 +26,13 @@ Macintoshでは、ドキュメントデータフォークのサイズが変更 [Get document position](get-document-position.md) [Get document size](get-document-size.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 480 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md index 11a6843b333e13..f478a0282d7a0f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET DRAG ICON**コマンドは、指定したアイコンを、ドラッグ&ドロップ中のカーソルと関連付けます。 @@ -59,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1272 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md index 6845fabfcbabcd..fa4fb7e945be51 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md @@ -34,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 812 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md index 76832595b99742..edcf73fcc81b54 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md @@ -58,4 +58,13 @@ displayed_sidebar: docs #### 参照 [Get external data path](get-external-data-path.md) -[RELOAD EXTERNAL DATA](reload-external-data.md) \ No newline at end of file +[RELOAD EXTERNAL DATA](reload-external-data.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1134 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md index 3001b02913f0cf..6071836bd1de5c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md @@ -55,4 +55,14 @@ displayed_sidebar: docs [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 919 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md index cf361a8a3adf83..193dc1bb3fab8a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET FIELD TITLES** コマンドを使用すれば、アプリケーションモードにおいて、クエリエディターのような標準の4 Dダイアログボックスを表示する際に、*aTable* に渡されるそのテーブルのフィールドのマスクや名前の変更、並べ替えが行えます (スタートアップモードが**アプリケーション**である場合、または**実行**メニューから**アプリケーションをテスト**を選択した場合) 。 @@ -63,4 +60,13 @@ displayed_sidebar: docs [GET FIELD TITLES](get-field-titles.md) [Last field number](last-field-number.md) [Parse formula](parse-formula.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 602 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md index 919af06dec30b7..7f398d44072b88 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md @@ -27,4 +27,13 @@ NULL値は、4DのSQLカーネルによって使用されます。詳細につ #### 参照 [Is field value Null](is-field-value-null.md) -[Null](null.md) \ No newline at end of file +[Null](null.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 965 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md index cfc518118b61b7..13908ea5aeb275 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET FILE TO PASTEBOARD コマンドは*filePath* 引数に渡した完全パス名を追加します。このコマンドは例えば、4Dオブジェクトをデスクトップ上のファイルにドラッグ&ドロップさせるインタフェースのセットアップに使用できます。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 -[Get file from pasteboard](get-file-from-pasteboard.md) \ No newline at end of file +[Get file from pasteboard](get-file-from-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 975 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md index 9eb7cfe0276402..5cd9b9a2962281 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md @@ -42,4 +42,14 @@ displayed_sidebar: docs [Get group access](get-group-access.md) [Get plugin access](get-plugin-access.md) [SET PLUGIN ACCESS](set-plugin-access.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1737 | +| スレッドセーフである | ✓ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md index 0d56d7ef2a7a81..81a2be1a49258b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Set group properties コマンドは、引数 *groupID* に渡したユニークなグループID番号を持つ既存のグループのプロパティを変更・更新するか、新規グループを追加します。 @@ -58,4 +55,14 @@ displayed_sidebar: docs [GET GROUP LIST](get-group-list.md) [GET GROUP PROPERTIES](get-group-properties.md) -[GET USER LIST](get-user-list.md) \ No newline at end of file +[GET USER LIST](get-user-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 614 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md index a37ec341b4e085..44274fb4cbfd16 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET HELP MENU** コマンドを使用すると、アプリケーションモードにおいてデフォルトの4D **ヘルプ**メニューの内容を、 *menuCol* 引数に渡したコレクションで置き換えることができます。 @@ -33,7 +30,7 @@ displayed_sidebar: docs | ------------- | ----------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | title | テキスト | メニュー項目名 | | method | テキスト \| [4D.Function](https://developer.4d.com/docs/API/FunctionClass#about-4dfunction-objects) | メニュー項目が選択されたときに実行するプロジェクトメソッド名または4D フォーミュラオブジェクト。このプロパティが使用されている場合、"action" プロパティを渡してはいけません(渡した場合は"method" は無視されます) | -| worker | テキスト \| 数値 | "method"のコード実行を管理するためのワーカーの名前、またはプロセスの番号。"worker"プロパティの値に応じて、複数の設定がサポートされています:
    値がワーカー名(テキスト)だった場合、4D は"method"を実行するためにこのワーカーを使用または作成します([CALL WORKER](call-worker.md) と同等) 値がプロセスの番号だった場合、4D はそれが存在すればそのプロセスを使用し、そうでなければ何もしません([CALL WORKER](call-worker.md) と同等) 値が未定義でアプリケーションがカレントダイアログ(最前面のダイアログ)を表示している場合、4D はこのダイアログのプロセスを使用します([CALL FORM](../commands/call-form.md) と同等) 値が未定義でアプリケーションがカレントダイアログを表示していない場合、4D はワーカー1(4D リモート/シングルユーザー版)またはワーカー*4D\_server\_interface* (4D Server)を呼び出します。 | +| worker | テキスト \| 数値 | "method"のコード実行を管理するためのワーカーの名前、またはプロセスの番号。"worker"プロパティの値に応じて、複数の設定がサポートされています:
    値がワーカー名(テキスト)だった場合、4D は"method"を実行するためにこのワーカーを使用または作成します([CALL WORKER](call-worker.md) と同等) 値がプロセスの番号だった場合、4D はそれが存在すればそのプロセスを使用し、そうでなければ何もしません([CALL WORKER](call-worker.md) と同等) 値が未定義でアプリケーションがカレントダイアログ(最前面のダイアログ)を表示している場合、4D はこのダイアログのプロセスを使用します([CALL FORM](call-form.md) と同等) 値が未定義でアプリケーションがカレントダイアログを表示していない場合、4D はワーカー1(4D リモート/シングルユーザー版)またはワーカー*4D\_server\_interface* (4D Server)を呼び出します。 | | action | テキスト | メニュー項目が選択されたときに実行する*標準アクション*。このプロパティが使用されている場合、"method"プロパティは渡されていても無視されます。 | | shortcutKey | テキスト | 項目のショートカットキー(Ctrl/Command キーと組み合わせて呼び出します) | | shortcutShift | ブール | 項目ショートカットに**Shift** キーを追加するためにはTrue を渡します。 | @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 -[SET ABOUT](set-about.md) \ No newline at end of file +[SET ABOUT](set-about.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1801 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md index 3f2de2dee44757..0e0723f0cf72d3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md @@ -47,4 +47,13 @@ displayed_sidebar: docs #### 参照 [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) -[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) \ No newline at end of file +[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1401 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md index 7538475aac0aca..7ea197fb44abae 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md @@ -87,4 +87,13 @@ displayed_sidebar: docs [DELETE INDEX](delete-index.md) [GET FIELD PROPERTIES](get-field-properties.md) [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 344 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md index b9a3356c92f07e..712e56de1208a5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET LIST ITEM FONT コマンドは、リスト参照またはオブジェクト名を*list*に指定したリスト中、*itemRef*引数で指定した項目の文字フォントを設定します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs [Get list item font](get-list-item-font.md) [OBJECT SET FONT](object-set-font.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 953 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md index 31140acd254984..2e1dbb4ea7309d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET LIST ITEM ICON コマンドは、リスト参照またはオブジェクト名を*list*に指定したリスト中、*itemRef*引数で指定した項目に割り当てるアイコンを設定します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs [SET LIST ITEM](set-list-item.md) [SET LIST ITEM FONT](set-list-item-font.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 950 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md index 3f1e02039d53fb..5c5d247adef362 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET LIST ITEM PARAMETER**コマンドは、リスト参照またはオブジェクト名を*list*に指定したリスト中、*itemRef*引数で指定した項目の*selector* パラメタを設定するために使用します。 @@ -62,4 +59,13 @@ displayed_sidebar: docs [Action info](action-info.md) [GET LIST ITEM PARAMETER](get-list-item-parameter.md) [GET LIST ITEM PARAMETER ARRAYS](get-list-item-parameter-arrays.md) -[INSERT IN LIST](insert-in-list.md) \ No newline at end of file +[INSERT IN LIST](insert-in-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 986 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md index c5dd79d46ab26f..d7fdb0b923c327 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET LIST ITEM PROPERTIES** コマンドは、引数*list*に渡された参照番号またはオブジェクト名のリスト内で、*itemRef*によって指定された項目を変更します。 @@ -81,4 +78,13 @@ displayed_sidebar: docs [GET LIST ITEM PROPERTIES](get-list-item-properties.md) *Hierarchical Lists* [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 386 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md index a8b01f5202df6b..d92ce3ab2a399d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET LIST ITEM コマンドは、*list*引数に渡した参照番号またはオブジェクト名のリストにおいて、*itemRef*で指定した項目を変更します。 @@ -78,4 +75,13 @@ displayed_sidebar: docs [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [SET LIST ITEM FONT](set-list-item-font.md) [SET LIST ITEM ICON](set-list-item-icon.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 385 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md index 47913c026ea0b7..a1fdd052865da7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET LIST PROPERTIES** コマンドは、*list*引数に渡された参照番号を持つ階層リストの行の高さとセレクションプロパティを設定します。 @@ -62,4 +59,13 @@ displayed_sidebar: docs [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [GET LIST PROPERTIES](get-list-properties.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 387 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md index 2c1fde8d87dad1..6dc789010b3c3c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MACRO PARAMETERコマンドは、呼び出されたメソッドにテキスト*textParam*を挿入します。 @@ -59,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[GET MACRO PARAMETER](get-macro-parameter.md) \ No newline at end of file +[GET MACRO PARAMETER](get-macro-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 998 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md index 3e31d0a5f54b00..3135a5abfe29ac 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU BAR はカレントプロセスのみのメニューバーを*menuBar*で指定したメニューバーで置き換えます。*menuBar* 引数には、新しいメニューバーの番号または名前を渡します。またメニューID ([MenuRef](# "Unique ID (16-character alphanumeric) of a menu") 型, 16文字の文字列) を渡すこともできます。参照を使用する場合、メニューをメニューバーとして、あるいはその逆として使用できます (の節を参照)。 @@ -120,4 +117,13 @@ SET MENU BAR**(1;\*)**を実行すると、メニューバーは前と同じ状 #### 参照 -*メニューの管理* \ No newline at end of file +*メニューの管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 67 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md index c8a265cf00f651..6f640352107ca8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET MENU ITEM ICON** コマンドは、*menu*と*menuItem*引数で指定されたメニュー項目に関連付けるアイコンを変更するために使用します。 @@ -48,4 +45,13 @@ displayed_sidebar: docs #### 参照 -[GET MENU ITEM ICON](get-menu-item-icon.md) \ No newline at end of file +[GET MENU ITEM ICON](get-menu-item-icon.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 984 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md index 3c945ea7580278..68e59c96ba38ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU ITEM MARK コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目のチェックマークを、*mark*に渡した最初の文字に変更します。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[Get menu item mark](get-menu-item-mark.md) \ No newline at end of file +[Get menu item mark](get-menu-item-mark.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 208 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md index 2342e4aa4239f0..fa7c1883e6e4f1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU ITEM METHOD コマンドは、*menu*と*menuItem*引数で指定されたメニュー項目に関連付ける4Dプロジェクトメソッドを変更するために使用します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[Get menu item method](get-menu-item-method.md) \ No newline at end of file +[Get menu item method](get-menu-item-method.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 982 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md index 675750f2016ce6..6ceff53d0881b3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU ITEM PARAMETERコマンドは、*menu*と*menuItem*引数で指定されたメニュー項目に、カスタム文字列を設定するために使用します。 @@ -43,4 +40,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[Get selected menu item parameter](get-selected-menu-item-parameter.md) \ No newline at end of file +[Get selected menu item parameter](get-selected-menu-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1004 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md index 47e45f57d75212..2d080ad926a082 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET MENU ITEM PROPERTY**コマンドは、*menu* と *menuItem*引数で指定されたメニュー項目に、*property*の*value*を設定するために使用します。 @@ -47,4 +44,13 @@ Associated Standard Action プロパティの場合、*value* 引数には標準 #### 参照 [Dynamic pop up menu](dynamic-pop-up-menu.md) -[GET MENU ITEM PROPERTY](get-menu-item-property.md) \ No newline at end of file +[GET MENU ITEM PROPERTY](get-menu-item-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 973 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md index 3f5304ccbc0720..4d8778c938642b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET MENU ITEM SHORTCUT** コマンドは、あるメニュー項目に新しいショートカットを割り当てます。 @@ -78,4 +75,14 @@ Ctrl+R (Windows) や Cmd+R (Mac OS) ショートカットを"再起動"メニュ #### 参照 [Get menu item key](get-menu-item-key.md) -[Get menu item modifiers](get-menu-item-modifiers.md) \ No newline at end of file +[Get menu item modifiers](get-menu-item-modifiers.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 423 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md index dc7bcf3c12941f..ea58a2871c3348 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU ITEM STYLE コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目のフォントスタイルを、*itemStyle*に変更します。 @@ -40,4 +37,14 @@ displayed_sidebar: docs #### 参照 -[Get menu item style](get-menu-item-style.md) \ No newline at end of file +[Get menu item style](get-menu-item-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 425 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md index f510e96017ee3c..0de83b461ad935 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU ITEM コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目のテキストを、*itemText*に渡したテキストに変更します。*menuItem*に-1を渡すと、*menu*に最後に追加された項目を指定したことになります。 @@ -35,4 +32,14 @@ displayed_sidebar: docs [APPEND MENU ITEM](append-menu-item.md) [Get menu item](get-menu-item.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 348 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md index 74c8943054b416..1b79362d951fc7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 [Get picture file name](get-picture-file-name.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1172 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md index bcdb2521ec4d40..99bd647976ac64 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md @@ -80,4 +80,14 @@ DOM参照を使用してGPSブロックを設定します: [GET PICTURE KEYWORDS](get-picture-keywords.md) [GET PICTURE METADATA](get-picture-metadata.md) *Picture Metadata Names* -*Picture Metadata Values* \ No newline at end of file +*Picture Metadata Values* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1121 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md index 1cade5c9e63934..aaed080885c229 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PICTURE TO LIBRARY コマンドは、新規ピクチャを作成、またはピクチャライブラリにあるピクチャを置き換えます。 @@ -94,4 +91,15 @@ displayed_sidebar: docs [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) \ No newline at end of file +[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 566 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md index 50358042ec372c..66840e0f6b9da3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PICTURE TO PASTEBOARD は、ペーストボードを消去し、*picture*に渡したピクチャのコピーをペーストボードに置きます。 @@ -49,4 +46,14 @@ displayed_sidebar: docs #### 参照 [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) \ No newline at end of file +[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 521 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md index 0899fbfae3b39a..0301c172df59a3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PLUGIN ACCESS コマンドを使用すれば、データベース上にインストールされた各 "シリアルされた" プラグインをプログラムで設定する環境をユーザグループに提供することができます。 @@ -45,4 +42,13 @@ displayed_sidebar: docs [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 845 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md index 3d42e8566ca44e..31188fdfb2f93d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PRINT MARKER コマンドを使用し、印刷時にマーカ位置を指定することができます。このコマンドを[Get print marker](get-print-marker.md "Get print marker")、[OBJECT MOVE](object-move.md "OBJECT MOVE")、[Print form](../commands/print-form.md "Print form")コマンドと組み合わせて使用することにより、印刷エリアのサイズを調節することができます。 @@ -184,4 +181,13 @@ Print\_List3のフォームメソッド: [PAGE BREAK](page-break.md) [Print form](../commands/print-form.md) [PRINT RECORD](print-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 709 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md index edeb30b002eacf..8446751e954345 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET PRINT OPTION** コマンドを使用し、プログラムから印刷オプションの値を変更することができます。プリントパラメーターを変更する他のコマンド ([PRINT SETTINGS](print-settings.md)、*\>* 引数を使用しない [PRINT SELECTION](print-selection.md)) が呼び出されない限り、このコマンドを使用して定義された各オプションは、[カレントの 4D 印刷設定](https://developer.4d.com/docs/settings/compatibility/) に対して適用されます。印刷ジョブが(例えば[OPEN PRINTING JOB](open-printing-job.md) などによって)開かれている間は、ジョブが終わるまではこのオプションを変更することはできません(ただしOrientation option を除く、以下参照)。 @@ -80,4 +77,14 @@ Orientation option の値は同一印刷ジョブ内で変更することがで [Print form](../commands/print-form.md) [PRINT OPTION VALUES](print-option-values.md) *Print Options* -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 733 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md index 385927c408e3ed..64453cbaf0c5bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET PRINT PREVIEW** は、プリントダイアログボックスのプレビュー設定のオン/オフをメソッドで切り替るためのものです。*preview* に[True](true.md "True") を渡すとプレビューは有効になり、[False](false.md "False") を渡すと無効になります。この設定はプロセスに対してローカルであり、他のプロセスや他のユーザの印刷には影響を与えません。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 [Get print preview](get-print-preview.md) -[Is in print preview](is-in-print-preview.md) \ No newline at end of file +[Is in print preview](is-in-print-preview.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 364 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md index 1a7a9cebf599f8..dbefb7e5b8bdda 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PRINTABLE MARGIN コマンドを使用すると、[Print form](../commands/print-form.md)、[PRINT SELECTION](print-selection.md)または [PRINT RECORD](print-record.md) コマンドの使用時に、各種印刷マージンの値を設定することができます。 @@ -59,4 +56,13 @@ displayed_sidebar: docs [GET PRINTABLE MARGIN](get-printable-margin.md) [Get printed height](get-printed-height.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 710 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md index 8eb321055378a8..27b2508341cb1a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PROCESS VARIABLE コマンドは、引数*expr1* (*expr2*等)に渡す値を、*process*に渡す番号の送り先プロセスの*dstVar* (*dstVar2*等) プロセス変数に書き込みます。 @@ -99,4 +96,13 @@ SET PROCESS VARIABLEは、任意のタイプの送り先プロセスまたはイ [GET PROCESS VARIABLE](get-process-variable.md) [POST OUTSIDE CALL](post-outside-call.md) [VARIABLE TO VARIABLE](variable-to-variable.md) -*プロセス* \ No newline at end of file +*プロセス* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 370 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md index 0476740536c2fb..bca6f3c5f77fb2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md @@ -68,4 +68,14 @@ displayed_sidebar: docs #### 参照 -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 661 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md index 8592bc0adcd10f..4ec70020fff6cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md @@ -250,4 +250,13 @@ displayed_sidebar: docs [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 396 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md index 0185b33de63813..c1bda1f6325b31 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md @@ -62,4 +62,13 @@ SET QUERY LIMITは、下記のクエリコマンドの動作を変更します: [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 395 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md index c1c38763fb5e40..1bd678c49b3bc2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET REAL COMPARISON LEVEL** コマンドは、実数値と式の同等性を比較するために4Dが使用するイプシロン値を設定します。 @@ -37,3 +34,13 @@ displayed_sidebar: docs **重要**: イプシロン値を変更しても、実数の同等性の比較に影響があるだけで、他の実数計算や実数値の表示には影響はありません。 **注:** **SET REAL COMPARISON LEVEL** コマンドは、実数値のフィールドに対して実行されるクエリと並べ替えに関しては何の効力も持ちません。4Dランゲージに対してのみ適用されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 623 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md index 8db4739dc41c00..34cc484bba79e6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET RECENT FONTS**コマンドは、コンテキストメニュー内の"最近使用したフォント"の中に表示されるフォントの一覧を変更します。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1305 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md index 0cff0f9e69e6ee..6911eb855dbaab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md @@ -48,4 +48,13 @@ displayed_sidebar: docs [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) -[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) \ No newline at end of file +[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1400 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md index cc0c4c512af9cc..7534eb28dac408 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET TABLE TITLES**コマンドを使用すれば、アプリケーションモードにおいて、標準の4Dダイアログボックスに現れるデータベーステーブルを一部隠したり、表示名称を変更したり、並び順を変えたりできます(スタートアップモードが**アプリケーション**である、あるいは**実行**メニューの**アプリケーションをテスト**を選択した場合)。例えばこのコマンドを使用すれば、アプリケーションモードでのクエリエディターのテーブル表示を変更できます。 @@ -190,4 +187,13 @@ displayed_sidebar: docs [GET TABLE TITLES](get-table-titles.md) [Parse formula](parse-formula.md) [SET FIELD TITLES](set-field-titles.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 601 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md index b8df79da952db4..0a0bae6fd21ed2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET TEXT TO PASTEBOARD は、ペーストボードを消去し、*text*に渡したテキストのコピーをペーストボードに置きます。 @@ -40,4 +37,14 @@ displayed_sidebar: docs #### 参照 [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 523 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md index 574e48f4c76366..46fc084d80b0ff 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md @@ -48,4 +48,14 @@ displayed_sidebar: docs [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) [RECEIVE RECORD](receive-record.md) -[RECEIVE VARIABLE](receive-variable.md) \ No newline at end of file +[RECEIVE VARIABLE](receive-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 268 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md index 802e078945f60f..1246449cf0822a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET TIMER** コマンドは、On Timerフォームイベントを有効にし、カレントプロセスのカレントフォームでOn Timerフォームイベント間の間隔Tick数を設定します。 @@ -47,4 +44,13 @@ On Timerフォームイベントの生成を取り消すには、*tickCount*に0 #### 参照 [Form event code](../commands/form-event-code.md) -[REDRAW](redraw.md) \ No newline at end of file +[REDRAW](redraw.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 645 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md index 42b81bc4bdb5ea..ee5cf82da2c978 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET UPDATE FOLDER**コマンドは、カレントの組み込まれた4Dアプリケーションのアップデート情報を含んだフォルダの場所を指定します。この情報は [RESTART 4D](restart-4d.md)メソッドが呼ばれるまで4Dセッション中は保存されます。アプリケーションが手動で終了した場合、この情報は保存されません。 @@ -59,4 +56,14 @@ displayed_sidebar: docs #### 参照 [Get last update log path](get-last-update-log-path.md) -[RESTART 4D](restart-4d.md) \ No newline at end of file +[RESTART 4D](restart-4d.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1291 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md index 24893da6561dfd..e2b2a3bccfe92e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md @@ -39,4 +39,14 @@ displayed_sidebar: docs [CHANGE CURRENT USER](change-current-user.md) [Current user](current-user.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1666 | +| スレッドセーフである | ✓ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md index cc61aa2a85bef3..0dca1fde714421 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Set user properties コマンドは、引数 userID に渡したユニークなユーザーID番号を持つ既存のユーザーアカウントのプロパティを変更・更新するか、新規ユーザーを追加します。また、デザイナーあるいは管理者に関連する新規ユーザを追加することもできます。 @@ -65,4 +62,13 @@ displayed_sidebar: docs [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 612 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md index 04ddb910f14fba..d418f5356c08cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET WINDOW RECT**コマンドは*window*に渡した参照番号のウィンドウのグローバル座標を変更します。ウィンドウが存在しない場合、コマンドはなにも行いません。 @@ -62,4 +59,13 @@ displayed_sidebar: docs [CONVERT COORDINATES](convert-coordinates.md) [DRAG WINDOW](drag-window.md) [GET WINDOW RECT](get-window-rect.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 444 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md index 929295f233bfeb..cd861e42ab6126 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET WINDOW TITLE コマンドは*window* に渡した参照番号のウィンドウのタイトルを、*title*に渡したテキストに変更します (最大80文字)。 @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 -[Get window title](get-window-title.md) \ No newline at end of file +[Get window title](get-window-title.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 213 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md index 0229b6cdcb3859..27ad8f9c780e1a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md @@ -50,4 +50,13 @@ displayed_sidebar: docs [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 543 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md index 6eff05e78ec02d..4a71f0e930c7ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SHOW MENU BARコマンドは、メニューバーを表示します。 @@ -29,4 +26,14 @@ displayed_sidebar: docs [HIDE MENU BAR](hide-menu-bar.md) [HIDE TOOL BAR](hide-tool-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 431 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md index bd029e49fd46f6..9127052134b7ca 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md @@ -46,3 +46,14 @@ displayed_sidebar: docs #### システム変数およびセット コマンドが正しく実行されると、システム変数OKに1が代入されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 922 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md index a12276f6a3f00b..5bbb38d4b18283 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SHOW PROCESSは*process*に属する全ウィンドウを表示します。このコマンドは*process*のウィンドウを最前面ウィンドウにするわけではありません。これを行うには[BRING TO FRONT](bring-to-front.md "BRING TO FRONT")コマンドを使用します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs [BRING TO FRONT](bring-to-front.md) [HIDE PROCESS](hide-process.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 325 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md index 7580cf937f9e81..ffc3dbb71876aa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SHOW TOOL BAR** コマンドは、カレントプロセスにおいて[Open form window](open-form-window.md) コマンドで作成されたカスタムのツールバーの表示を管理します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 -[HIDE TOOL BAR](hide-tool-bar.md) \ No newline at end of file +[HIDE TOOL BAR](hide-tool-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 433 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md index 1ec9c611500b01..500b561e827e42 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SHOW WINDOW コマンドは*window*に渡した参照番号のウィンドウを表示します。この引数が省略されていると、カレントプロセスの最前面ウィンドウが表示されます。 @@ -28,4 +25,13 @@ SHOW WINDOWコマンドを使用するには、ウィンドウが[HIDE WINDOW](h #### 参照 -[HIDE WINDOW](hide-window.md) \ No newline at end of file +[HIDE WINDOW](hide-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 435 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sin.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sin.md index ef1a3f5b3165ae..8d5d6cb3642ba3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sin.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sin.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Cos](cos.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 17 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md index d265bf042df6e2..90f76e55ec8dbc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md @@ -45,4 +45,13 @@ displayed_sidebar: docs #### 参照 [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 274 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md index d5fbeea638a424..4bdff22ce67f4d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md @@ -193,4 +193,13 @@ Note タイプ Is Text (Is BLOBではなく)を使用していることに留意 [Is data file locked](is-data-file-locked.md) [SOAP Get info](soap-get-info.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 782 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md index 791059d337faf4..4a4eb809c82a34 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md @@ -32,4 +32,13 @@ SOAPリクエストを処理する際、RPC引数のほかに、リクエスト #### 参照 [SET DATABASE PARAMETER](set-database-parameter.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 784 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md index 6ca4885b7c991d..e67f535266d1b2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**SOAP REJECT NEW REQUESTS** コマンドはWeb サービスが新規SOAP リクエストを受け入れるかどうかを指定します。 - -*rejectStatus* 引数には、**True** を渡すと新規SOAP リクエストを拒否します。**False** を渡すと、新規SOAP リクエストを受け入れることを指定します。 +**SOAP REJECT NEW REQUESTS** コマンドはWeb サービスが新規SOAP リクエストを受け入れるかどうかを指定します。引数には、**True** を渡すと新規SOAP リクエストを拒否します。**False** を渡すと、新規SOAP リクエストを受け入れることを指定します。 **注**: このコマンドは4D Server 上でのみ実行可能です。このコマンドを呼び出しているメソッドがリモートのクライアント上でローカルに実行された場合、あるいはシングルユーザー版4D で実行された場合、**SOAP REJECT NEW REQUESTS** は何もしません。 @@ -35,4 +33,13 @@ Web サービスのサーバーにおいて新規リクエストを全て拒否 #### 参照 [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[WEB Get server info](web-get-server-info.md) \ No newline at end of file +[WEB Get server info](web-get-server-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1636 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md index 19312960a2f407..12c3cce6ee54cf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md @@ -21,4 +21,13 @@ displayed_sidebar: docs #### 参照 -[SOAP DECLARATION](soap-declaration.md) \ No newline at end of file +[SOAP DECLARATION](soap-declaration.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 783 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md index d5b2e737f36c6b..fdff0e268518d9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 [SOAP DECLARATION](soap-declaration.md) -[SOAP Get info](soap-get-info.md) \ No newline at end of file +[SOAP Get info](soap-get-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 781 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md index d0981e638313b9..061ae927470e6e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md @@ -18,8 +18,6 @@ displayed_sidebar: docs **SORT ARRAY**コマンドは、1つまたは複数の配列を昇順や降順にソートします。 -**注意:** - * Pointer 配列や Picture 配列のソートは行えません。二次元配列の要素(例えば *a2DArray{$vlThisElem}*)をソートすることはできますが、二次元配列そのもの(*a2DArray*)をソートすることはできません。 * Object 型の配列をソートすることはできます。Null 要素はグループ化され、配列の要素は内部的な順番によってソートされます。 @@ -81,4 +79,13 @@ displayed_sidebar: docs [Find in sorted array](find-in-sorted-array.md) [MULTI SORT ARRAY](multi-sort-array.md) [ORDER BY](order-by.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 229 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md index be25374913d9b8..ed2ff88b6cb30c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SORT LIST コマンドは、*list*引数に渡された参照番号を持つリストをソートします。 @@ -57,4 +54,13 @@ SORT LIST コマンドは、カレントリスト項目またはリストやサ #### 参照 -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 391 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md index dbbf225fb7bfd7..257a289c13ce32 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL ADD TO USER DICTIONARY**コマンドはカレントのユーザー辞書に単語を追加します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[SPELL CHECK TEXT](spell-check-text.md) \ No newline at end of file +[SPELL CHECK TEXT](spell-check-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1214 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md index ec1312d9069e9b..c1d7c92ff46910 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL CHECK TEXT**コマンドは*text*引数の内容を、*checkPos*の位置からチェックし、最初に見つかった未知の単語の位置を返します。 @@ -54,4 +51,14 @@ displayed_sidebar: docs #### 参照 [SPELL ADD TO USER DICTIONARY](spell-add-to-user-dictionary.md) -[SPELL CHECKING](spell-checking.md) \ No newline at end of file +[SPELL CHECKING](spell-checking.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1215 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md index 958f9347fd1377..5824b0b9db45a2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL CHECKING** コマンドは、フィールドまたは現在表示されているフォームでフォーカスを持つ変数のスペルチェックを行います。チェックされるオブジェクトは文字列またはテキストタイプでなければなりません。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 [SPELL CHECK TEXT](spell-check-text.md) -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 900 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md index 2b525cf4bfa17b..fe6e4187344631 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL Get current dictionary**コマンドは使用中の辞書のID番号を返します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1205 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md index d0568988a15c00..4ba4df82374185 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL GET DICTIONARY LIST**コマンドはマシンにインストールされたハンスペル辞書ファイルのID、ファイル名、言語名をそれぞれ*langID*、*langFiles*そして*langNames*配列に返します。 @@ -51,4 +48,13 @@ Hunspell辞書に"fr-classic+reform1990.aff"、"fr-classic+reform1990.dic"、"fr #### 参照 -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1204 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md index 9b2ba1bcb3ec0e..8b62b9659adbea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL SET CURRENT DICTIONARY**コマンドは、現在の辞書を引数*dictionary*に よって指定された辞書で置き換えます。カレント辞書は、4Dに内蔵されているスペルチェック機能に使用されています(詳細については、 4D Design Referenceマニュアルや4D Write Proドキュメントを参照してください) 。設定された現在の辞書は即座にセッションを通して、データベースのすべてのプロセス、および4D Writeや4D Viewプラグインエリアに反映されます。 @@ -52,4 +49,14 @@ Hunspellフォルダーに配置した"fr-classic"辞書をロードする: [SPELL CHECKING](spell-checking.md) [SPELL Get current dictionary](spell-get-current-dictionary.md) -[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) \ No newline at end of file +[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 904 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md index 8f12432650773e..8a6200a5fb20bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md @@ -56,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1554 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md index 96c1ea339711c1..cf1f959ae9b52b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL CANCEL LOAD コマンドコマンドは、現在のSELECTリクエストを終了してパラメタを初期化します。 @@ -53,4 +50,14 @@ displayed_sidebar: docs #### 参照 [SQL LOAD RECORD](sql-load-record.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 824 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md index ee3300c161f104..be9d665b69fc67 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL End selectionコマンドは、結果セットの境界に達したかどうかを判定するために使用します。 @@ -40,3 +37,13 @@ displayed_sidebar: docs ``` このコードは4D変数*vName* にempテーブルの ename を返します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 821 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md index 78bc1edf1c97b7..4b45eea5af365f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL EXECUTE SCRIPTコマンドを使用して、*scriptPath*で指定されたスクリプトファイルに書かれた一連のSQLステートメントを実行できます。このコマンドはローカルマシン (ローカルの4Dまたは4D Server上のストアドプロシージャ) でのみ実行できます。またこのコマンドはカレントデータベース (内部あるいはエクスターナルデータベース) に対して動作します。 @@ -59,3 +56,14 @@ displayed_sidebar: docs * *errorAction*がSQL On error continue (値3) の場合、OKは常に1が設定されます。 **Note:** 大量のデータ読み込みなど、メモリを消費するアクションを実行するためにこのコマンドを使用する場合、一時的にSQLオプションを無効にするために新しいSQLのALTER DATABASEコマンドの実行を検討できます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1089 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md index fc731b9a9440be..ea5c1eaf20113d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SQL EXECUTE**コマンドを使用してSQLコマンドを実行し、結果を4Dのオブジェクト(配列、変数またはフィールド) にバインドできます。 @@ -159,4 +156,14 @@ displayed_sidebar: docs #### 参照 -[SQL LOAD RECORD](sql-load-record.md) \ No newline at end of file +[SQL LOAD RECORD](sql-load-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 820 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md index ae4e42374f1db1..96c0fe47624da6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SQL EXPORT DATABASE**コマンドはデータベースのすべてのテーブルのすべてのレコードをSQLフォーマットで書き出します。SQLではこのグローバルな書き出し処理は"ダンプ"と呼ばれます。 @@ -57,4 +54,14 @@ displayed_sidebar: docs #### 参照 -[SQL EXPORT SELECTION](sql-export-selection.md) \ No newline at end of file +[SQL EXPORT SELECTION](sql-export-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1065 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md index 09782176ce28f4..926e382f56a3f8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL EXPORT SELECTION コマンドは、aTable引数で指定した4DテーブルのカレントセレクションをSQLフォーマットで書き出します。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[SQL EXPORT DATABASE](sql-export-database.md) \ No newline at end of file +[SQL EXPORT DATABASE](sql-export-database.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1064 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md index b74010612b5a3b..bad5520371a0ab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 *Get current data source*コマンドはアプリケーションのカレントデータソースの名前を返します。カレントデータソースは、[Begin SQL](begin-sql.md "Begin SQL")/[End SQL](end-sql.md "End SQL")内で実行されるSQLクエリを受け取ります。 @@ -28,4 +25,13 @@ SQLクエリを実行する前に、このコマンドでカレントデータ [End SQL](end-sql.md) [SQL GET DATA SOURCE LIST](sql-get-data-source-list.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 990 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md index ca1ad5faa3aef6..866ddd09f83628 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 *GET DATA SOURCE LIST*コマンドは、オペレーションシステムのODBCマネージャで定義されている*sourceType* データソースのドライバと名前を*sourceNamesArr*と*driversArr*の配列に返します。 @@ -55,4 +52,14 @@ displayed_sidebar: docs [SQL Get current data source](sql-get-current-data-source.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 989 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md index 56d79f985d9a47..8f0f65c8f8b8cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL GET LAST ERRORコマンドは、ODBCコマンドの実行中に発生した最後のエラーに関連する情報を返します。エラーの発生箇所としては、4Dアプリケーション、ネットワーク、ODBCソースなどが考えられます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 825 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md index e225f28c5cef4b..46ce3d108196aa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL GET OPTIONコマンドは、*option*に渡したオプションの現在の*value*を返します。 @@ -29,4 +26,14 @@ displayed_sidebar: docs #### 参照 -[SQL SET OPTION](sql-set-option.md) \ No newline at end of file +[SQL SET OPTION](sql-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 819 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md index 4f4bf7cc5583d6..f47916c1eefec1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL LOAD RECORDコマンドは、現在の接続において開かれたODBCソースからのレコードを1件以上4D内に取り込みます。 @@ -35,4 +32,14 @@ displayed_sidebar: docs #### 参照 [SQL CANCEL LOAD](sql-cancel-load.md) -[SQL EXECUTE](sql-execute.md) \ No newline at end of file +[SQL EXECUTE](sql-execute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 822 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md index 41653ba4fbfb62..bbef3b9d8d8814 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SQL LOGIN**コマンドを使用すると、*dataEntry*引数で指定されたSQLデータソースへ接続することができます。このコマンドは、カレントプロセスでこのコマンドの後に実行される以下のSQLクエリの対象を指定します: @@ -206,4 +203,14 @@ IPv6アドレス 2a01:e35:2e41:c960:dc39:3eb0:f29b:3747のマシン、およびT [Begin SQL](begin-sql.md) [End SQL](end-sql.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 817 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md index d055de14db9785..548b4f0f141708 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL LOGOUT コマンドは、カレントプロセスにおいて開かれているODBCソースとの接続をクローズします(すでに接続されていれば)。ODBC接続が行われていない場合、コマンドは何も行いません。 @@ -25,4 +22,14 @@ displayed_sidebar: docs #### 参照 -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 872 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md index 5c1e29735804f6..1b0fe1a7cdb988 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SQL SET OPTION** コマンドを使用して、optionに渡したオプションのvalueを変更します。 @@ -47,4 +44,14 @@ displayed_sidebar: docs #### 参照 -[SQL GET OPTION](sql-get-option.md) \ No newline at end of file +[SQL GET OPTION](sql-get-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 818 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md index d9ad6c40d7b1b6..24a66b0c3bdafc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SQL SET PARAMETER**コマンドを使用すると、4D変数や配列、フィールドをSQLリクエストで使用することができます。 @@ -80,3 +77,14 @@ SQLリクエスト内におかれた*?*記号が4Dオブジェクトの値で置 #### システム変数およびセット コマンドが正しく実行されるとシステム変数OKに1が、そうでなければ0が設定されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 823 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md index 0eec06494d89fa..6d4669a7857635 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md @@ -39,3 +39,13 @@ displayed_sidebar: docs ``` 例えば、Hypotenuse (4;3) は5を返します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 539 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md index e182f4b5330768..f9b1b99093cede 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST COMPUTE EXPRESSIONS**コマンドは、*object* 引数で指定したマルチスタイルあるいは4D Write Proのフィールドあるいは変数内にあるダイナミック 4D 式を更新します。 @@ -69,4 +66,14 @@ displayed_sidebar: docs #### 参照 [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1285 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md index 71970778ba45dc..33fe01ce7a8b26 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST FREEZE EXPRESSIONS**コマンドは、*object* 引数で指定されたマルチスタイルテキストあるいは4D Write Proのフィールドまたは変数内の4D 式の内容を固定化します。これにより、ダイナミックな4D式はスタティックなテキストあるいは画像(4D Write Pro エリアのみ)へと変換され、*object* に関連付けられた参照は解除されます。 @@ -67,4 +64,13 @@ displayed_sidebar: docs #### 参照 [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1282 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md index 2b0f2c900e05cb..44df5ae597c709 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST GET ATTRIBUTES** コマンドは、*object*で指定したフォームオブジェクト中で選択されたテキストのスタイル属性を取得するために使用します。 @@ -101,4 +98,14 @@ displayed_sidebar: docs #### 参照 -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1094 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md index f589acbd6c307e..0be4312131a604 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST Get content type**コマンドは、 *object* 引数で指定されたスタイル付テキストフィールドまたはテキスト変数内で見つかったコンテンツの型を返します。 @@ -105,3 +102,14 @@ displayed_sidebar: docs        ...     End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1286 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md index 2daa7643ef1cd1..4a5042fc26fb11 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST Get expression**コマンドは、*object* 引数で指定されたスタイル付テキストフィールドまたはテキスト変数内のカレントセレクションの中で、最初に見つけた 4D 式を返します。 @@ -93,4 +90,14 @@ displayed_sidebar: docs #### 参照 -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1287 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md index f6fb4283fec329..acbad0c659e5c1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST GET OPTIONS**コマンドは、 *object* 引数で指定されたスタイル付テキストフィールドまたはテキスト変数内で動作中のオプションのカレントの値を取得します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[ST SET OPTIONS](st-set-options.md) \ No newline at end of file +[ST SET OPTIONS](st-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1290 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md index 298fad04b8bb6a..cee1ba6529d3eb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST Get plain text** コマンドは*\**と*object*引数で指定したテキスト変数やフィールドからスタイルタグを取り除き、プレーンテキストを返します。 @@ -106,4 +103,14 @@ It is now Go to the 4D site or Open a window [ST Get text](st-get-text.md) [ST SET PLAIN TEXT](st-set-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1092 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md index 818b216bb53a05..b7c2911f78ebe0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST Get text** コマンドは *object* 引数で指定されたフィールドや変数中のスタイル付きテキストを返します。 @@ -61,4 +58,14 @@ displayed_sidebar: docs [ST Get plain text](st-get-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1116 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md index e71ddf036b0abb..f92cb393d55746 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST GET URL**コマンドは、 *object* 引数で指定されたスタイル付テキストフィールドまたはテキスト変数内で見つかった最初のURL の表示テキストとアドレスを返します。 @@ -72,4 +69,13 @@ displayed_sidebar: docs #### 参照 -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1288 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md index a14c2be293401a..0f219855d0e59a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST INSERT EXPRESSION**コマンドは、*object* 引数で指定したスタイル付テキストフィールドまたはテキスト変数内に、4D 式への参照を挿入します。 @@ -89,4 +86,14 @@ displayed_sidebar: docs [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) [ST Get expression](st-get-expression.md) -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1281 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md index 76f3a259b7c59a..be31310738c8a7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST INSERT URL**コマンドは、*object* 引数で指定したスタイル付テキストフィールドまたはテキスト変数内に、 URL のリンクを挿入します。 @@ -65,4 +62,14 @@ displayed_sidebar: docs #### 参照 [ST GET URL](st-get-url.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1280 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md index 249878d9df30a7..f401b82a14744a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST SET ATTRIBUTES** コマンドを使用して、 *object*で指定したフォームオブジェクト中の1つ以上のスタイル属性を変更できます。 @@ -104,4 +101,14 @@ displayed_sidebar: docs #### 参照 [FONT LIST](font-list.md) -[ST GET ATTRIBUTES](st-get-attributes.md) \ No newline at end of file +[ST GET ATTRIBUTES](st-get-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1093 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md index 159d8d80b16f45..879ea013653fa2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST SET OPTIONS**コマンドは、*object* 引数で指定されたスタイル付テキストフィールドまたはテキスト変数に関する様々なオプションを変更することができます。 @@ -63,4 +60,13 @@ displayed_sidebar: docs #### 参照 -[ST GET OPTIONS](st-get-options.md) \ No newline at end of file +[ST GET OPTIONS](st-get-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1289 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md index 5ba397a223c685..bafb47adaf77c9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST SET PLAIN TEXT**コマンドは*object*引数で指定されたマルチスタイルテキストや変数に、*newText*引数に渡されたテキストを挿入します。このコマンドは*object*引数のプレーンテキストにのみ適用され、そこに含まれるスタイルタグを変更しません。 @@ -94,4 +91,14 @@ displayed_sidebar: docs #### 参照 [ST Get plain text](st-get-plain-text.md) -[ST SET TEXT](st-set-text.md) \ No newline at end of file +[ST SET TEXT](st-set-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1136 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md index f7eaaba280716d..d874a2ed95cd5d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST SET TEXT** コマンドは*object*引数で指定されたスタイル付きのフィールドや変数に、 *newText*引数で渡されたテキストを挿入します。 このコマンドは*object*引数のプレーンテキストにのみ適用され、含まれるスタイルタグは更新しません。このコマンドはスクリーンに表示されているスタ イル付きテキストをプログラムで変更するために使用できます。 @@ -93,4 +90,14 @@ displayed_sidebar: docs [ST Get plain text](st-get-plain-text.md) [ST Get text](st-get-text.md) -[ST SET PLAIN TEXT](st-set-plain-text.md) \ No newline at end of file +[ST SET PLAIN TEXT](st-set-plain-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1115 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md index a37b4ee0e980dd..9c8942e518aa8d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md @@ -91,4 +91,13 @@ displayed_sidebar: docs #### 参照 [Monitored activity](monitored-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1712 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md index 9bdf33badabb58..7ef688f000fc6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 START SQL SERVERコマンドを使用して、実行中の4Dのアプリケーションで、統合されたSQLサーバを起動させます。起動すると、SQLサーバは外部SQLクエリに応答します。 @@ -27,4 +24,14 @@ SQLサーバが正しく起動されるとOKシステム変数は1に、そう #### 参照 -[STOP SQL SERVER](stop-sql-server.md) \ No newline at end of file +[STOP SQL SERVER](stop-sql-server.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 962 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md index f29754bead66db..b7bcaef2289929 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [Transaction level](transaction-level.md) [VALIDATE TRANSACTION](validate-transaction.md) -*トランザクションを使用する* \ No newline at end of file +*トランザクションを使用する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 239 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md index 0e0167bc9364da..63ad01f7f7e7f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md @@ -57,4 +57,13 @@ displayed_sidebar: docs [Average](average.md) [Sum](sum.md) [Sum squares](sum-squares.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 26 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md index 75f1e193efbf93..cd5f6a262d8bb5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### 参照 [Monitored activity](monitored-activity.md) -[START MONITORING ACTIVITY](start-monitoring-activity.md) \ No newline at end of file +[START MONITORING ACTIVITY](start-monitoring-activity.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1721 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md index 01ba1f16b76a6a..690daeae16e2d1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 STOP SQL SERVERコマンドは、実行済み4Dアプリケーションの統合SQLサーバを停止します。 @@ -25,4 +22,13 @@ SQLサーバが起動していた場合、すべてのSQL接続が中断しま #### 参照 -[START SQL SERVER](start-sql-server.md) \ No newline at end of file +[START SQL SERVER](start-sql-server.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 963 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/storage.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/storage.md index 5ae71755fb36d0..afb51536a9e52e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/storage.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/storage.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**Storage** メソッドはカレントのマシンあるいはコンポーネント上において、*Storage* オブジェクトに登録した共有オブジェクトまたは共有コレクションの一覧を返します。 - -**Storage** から返されたカタログは、4Dによって自動的に作成され、プリエンプティブプロセスを含めてデータベースの全てのプロセスが利用可能です。マシンとコンポーネント一つにつき**Storage** カタログは一つしかありません。C/S アプリケーションにおいては、サーバーに**Storage** 共有オブジェクトを一つ、リモート4D アプリケーションに**Storage** 共有オブジェクトを一つ持つことが可能です。データベースがコンポーネントを使用する場合、一つのコンポーネントに対し**Storage** オブジェクトは一つです。 +**Storage** メソッドはカレントのマシンあるいはコンポーネント上において、*Storage* オブジェクトに登録した共有オブジェクトまたは共有コレクションの一覧を返します。から返されたカタログは、4Dによって自動的に作成され、プリエンプティブプロセスを含めてデータベースの全てのプロセスが利用可能です。マシンとコンポーネント一つにつき**Storage** カタログは一つしかありません。C/S アプリケーションにおいては、サーバーに**Storage** 共有オブジェクトを一つ、リモート4D アプリケーションに**Storage** 共有オブジェクトを一つ持つことが可能です。データベースがコンポーネントを使用する場合、一つのコンポーネントに対し**Storage** オブジェクトは一つです。 **Storage** から返されたカタログを使用すると、あらゆるプリエンプティブプロセスあるいは標準プロセスで使用可能な共有オブジェクトあるいは共有コレクションを、すべて参照することができます。共有オブジェクトあるいは共有コレクションをカタログに登録するためには、その参照を**Storage** から返された共有オブジェクトに追加します。 @@ -81,4 +79,13 @@ displayed_sidebar: docs #### 参照 -*共有オブジェクトと共有コレクション* \ No newline at end of file +*共有オブジェクトと共有コレクション* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1525 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md index af8a079aca35b2..c6e68dbc6bf36e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **STRING LIST TO ARRAY**コマンドは以下の要素から構築される*strings*配列を生成します: @@ -47,4 +44,14 @@ displayed_sidebar: docs [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[Get text resource](get-text-resource.md) \ No newline at end of file +[Get text resource](get-text-resource.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 511 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string.md index 2dcab0e1fe4886..fab6f0f01528b5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string.md @@ -185,4 +185,13 @@ displayed_sidebar: docs [Date](date.md) [Num](num.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 10 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md index 290339bbfb9700..89aa56e2d2ab50 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Structure file** コマンドは、現在使用しているデータベースのストラクチャファイルのパス名を返します。 - -* バイナリーモードのデータベースでは、コマンドは**.4db** ファイルのパス名を返します。 +**Structure file** コマンドは、現在使用しているデータベースのストラクチャファイルのパス名を返します。ファイルのパス名を返します。 * プロジェクトモードのデータベースでは、コマンドは**.** **4dproject** ファイルのパス名を返します。 **注:** データベースがコンパイルされて4D Volume Desktopに統合されている場合、WindowsおよびmacOSでこのコマンドはアプリケーションファイル(実行可能なアプリケーション)のパス名を返します。macOS上では、このファイルはソフトウェアパッケージの中の\[Contents:Mac OS\]フォルダに置かれます。これは以前のメカニズムに起因するものであり、互換性のため保持されています。ソフトウェアパッケージ自体のフルアクセスパスを取得したい場合には、[Application file](application-file.md) コマンドの利用をお勧めします。方法としては、[Application type](application-type.md) コマンドを使用してアプリケーションタイプを調べた後、その結果に応じて**Structure file** または[Application file](application-file.md) を実行します。 @@ -66,4 +64,13 @@ displayed_sidebar: docs [Application file](application-file.md) [COMPONENT LIST](component-list.md) -[Data file](data-file.md) \ No newline at end of file +[Data file](data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 489 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/substring.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/substring.md index 8cea65694c4e86..9f2c4a5e384f28 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/substring.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/substring.md @@ -64,4 +64,13 @@ Substringコマンドの使用例を次に示します。結果を変数 vsResul #### 参照 -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 12 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md index b1f5cdce65dd4c..edaa3ee91e6167 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Subtotal** は、現在または最後のブレークレベルにおける*data*の小計を返します。**Subtotal** は、ソートされたセレクションを[PRINT SELECTION](print-selection.md) コマンドで印刷する場合と、デザインモードでプリント...メニューから印刷を行う場合にのみ機能します。*data*引数のタイプは実数、整数、倍長整数のいずれかでなければなりません。フォームのブレークエリアに変数を配置し、**Subtotal** の結果を代入します。 @@ -60,4 +57,13 @@ Subtotal関数はフォームに値を表示するために必要です。 [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 97 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md index 93a3dca850c2dc..180261ba18a132 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md @@ -59,4 +59,13 @@ displayed_sidebar: docs [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 28 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum.md index c8098380d622dd..41ebdc45b57346 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum.md @@ -73,4 +73,14 @@ displayed_sidebar: docs [Min](min.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md index 10da7664cb485e..dab9561b67d7e7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md @@ -22,4 +22,13 @@ displayed_sidebar: docs [Active transaction](active-transaction.md) [RESUME TRANSACTION](resume-transaction.md) -*トランザクションの停止* \ No newline at end of file +*トランザクションの停止* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1385 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md index 917285c9039f96..f83d52c60f61d5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -SVG EXPORT TO PICTURE コマンドはXMLツリーのSVGフォーマットのピクチャを、*pictVar* 引数で指定したピクチャフィードや変数に保存するために使用できます。 - -**Note:** SVGフォーマットに関する詳細はの節を参照してください。 +SVG EXPORT TO PICTURE コマンドはXMLツリーのSVGフォーマットのピクチャを、*pictVar* 引数で指定したピクチャフィードや変数に保存するために使用できます。SVGフォーマットに関する詳細はの節を参照してください。 *elementRef*にはSVGピクチャを含むXMLのルート要素参照を渡します。 @@ -52,4 +50,13 @@ displayed_sidebar: docs #### 参照 [DOM EXPORT TO FILE](dom-export-to-file.md) -[DOM EXPORT TO VAR](dom-export-to-var.md) \ No newline at end of file +[DOM EXPORT TO VAR](dom-export-to-var.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1017 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md index fb709056a44da7..317e41eab68eda 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SVG Find element ID by coordinatesコマンドは、 *pictureObject*引数で指定されたSVGピクチャ内で、*x*, *y*座標により設定された場所で見つかるXML要素のID ("id" または "xml:id" 属性) を返します。 このコマンドは特に、SVGオブジェクトを使用してインタラクティブなインタフェースを作成する際に使用します。 @@ -53,4 +50,14 @@ displayed_sidebar: docs #### 参照 -[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) \ No newline at end of file +[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1054 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md index b79454aef74ae8..fcfabb05c5d578 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SVG Find element IDs by rect コマンドは、 バインドされた四角が選択領域に交差するXML要素のID ("id"または"xml:id"属性) をテキストまたは文字配列の*arrIDs*配列に返します。選択領域は*x*および*y*引数で指定されます。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) \ No newline at end of file +[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1109 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md index a846cd2faebd8d..fd6eb60076130f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SVG GET ATTRIBUTE**コマンドを使用して、オブジェクトまたはSVGピクチャの*attribName*属性の現在値を取得できます。 @@ -42,4 +39,13 @@ SVG属性に関する詳細は、[SVG SET ATTRIBUTE](svg-set-attribute.md)コマ #### 参照 -[SVG SET ATTRIBUTE](svg-set-attribute.md) \ No newline at end of file +[SVG SET ATTRIBUTE](svg-set-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1056 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md index bcf69527b1fef6..38cc2e812b8b2b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md @@ -91,4 +91,14 @@ displayed_sidebar: docs #### 参照 -[SVG GET ATTRIBUTE](svg-get-attribute.md) \ No newline at end of file +[SVG GET ATTRIBUTE](svg-get-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1055 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md index 8a6f2a75532601..ac64ae2395be71 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SVG SHOW ELEMENT コマンドは、*id*引数で指定した"id"属性を持つ要素を表示するように、*pictureObject* SVGドキュメントを移動します。. @@ -30,3 +27,14 @@ displayed_sidebar: docs このコマンドはスクロールバー付きの"左上"表示モードのみで効果があります。 フォームのコンテキストでコマンドが実行されていないか、無効な *pictureObject* が渡された場合、*OK* 変数に0が設定されます。コマンドが正しく実行されると1が設定されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1108 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md index d8a2b01a400780..7b7453f0bd9308 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md @@ -49,4 +49,13 @@ displayed_sidebar: docs #### 参照 [Get 4D folder](get-4d-folder.md) -[Temporary folder](temporary-folder.md) \ No newline at end of file +[Temporary folder](temporary-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 487 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md index 53b8394db2c2f5..b4e6e6ebca45f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md @@ -144,4 +144,13 @@ Windows マシン上で以下のコードを実行した場合: [Application info](application-info.md) [Is macOS](is-macos.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1571 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md index 8d8db8bf2c7a25..05c4024bbe6c05 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md @@ -40,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[Compact data file](compact-data-file.md) \ No newline at end of file +[Compact data file](compact-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1127 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md index 1bc4c1ab23c226..4cfc4c65bc5b81 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md @@ -37,4 +37,13 @@ displayed_sidebar: docs [Last table number](last-table-number.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 256 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table.md index 0d83f64e1e9746..7c9e502935e591 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table.md @@ -59,4 +59,13 @@ displayed_sidebar: docs [Field](field.md) [Last table number](last-table-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 252 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tan.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tan.md index 5e5bfb4e5f5b09..dca3c056900e5c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tan.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tan.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Cos](cos.md) -[Sin](sin.md) \ No newline at end of file +[Sin](sin.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 19 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md index ef15c81f9ce2ab..17aeb492a4d2c3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[System folder](system-folder.md) \ No newline at end of file +[System folder](system-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 486 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md index e3fb0f9486b656..df581edd9c9cad 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md @@ -49,4 +49,13 @@ displayed_sidebar: docs [Create document](create-document.md) [CREATE FOLDER](create-folder.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 476 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md index 092309c3468e96..86a5f02d66d05a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md @@ -42,4 +42,13 @@ displayed_sidebar: docs #### 参照 [CLEAR SEMAPHORE](clear-semaphore.md) -[Semaphore](semaphore.md) \ No newline at end of file +[Semaphore](semaphore.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 652 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md index 64802591fce004..f120c2e105a6f0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **TEXT TO ARRAY**コマンドはテキスト変数をテキスト配列変換します。元の*varText*テキストは (スタイル付きであってもなくても) 分割され、*arrText*配列の要素となり、コマンドから返されます。このコマンドを使用して例えば適切な位置でテキストが分割されたメール本文を作成することができます。 @@ -110,4 +107,13 @@ displayed_sidebar: docs [Split string](split-string.md) [ST Get plain text](st-get-plain-text.md) -[ST Get text](st-get-text.md) \ No newline at end of file +[ST Get text](st-get-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1149 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md index ac69ad05fa5307..64aac222434f65 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md @@ -19,9 +19,7 @@ displayed_sidebar: docs #### 説明 -**TEXT TO BLOB**コマンドはテキスト値 *text*をBLOB *blob*に書き込みます。 - -*textFormat* 引数を使用して、書き込むテキスト値の内部フォーマットと文字セットを指定できます。これを行うには、*BLOB*テーマの以下の定数のうちいずれかを*textFormat* 引数に渡します: +**TEXT TO BLOB**コマンドはテキスト値 *text*をBLOB *blob*に書き込みます。引数を使用して、書き込むテキスト値の内部フォーマットと文字セットを指定できます。これを行うには、*BLOB*テーマの以下の定数のうちいずれかを*textFormat* 引数に渡します: | 定数 | 型 | 値 | | ------------------------ | ---- | - | @@ -104,4 +102,13 @@ displayed_sidebar: docs [CONVERT FROM TEXT](convert-from-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[REAL TO BLOB](real-to-blob.md) \ No newline at end of file +[REAL TO BLOB](real-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 554 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md index 767d30c1520c41..fb4d2f8cd25dcb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**TEXT TO DOCUMENT**コマンドは、 *text* を直接ディスク上のファイルへと書き込みます。 - -*fileName* 引数には書き込みたいファイルへのパス名を渡します。ファイルが存在しない場合には新たに作成されます。このファイルが既にディスク上に存在する場合、以前の内容は消去されます。ただし既に開かれていた場合にはその中身はロックされエラーが静背されます。*fileName* に渡せるものは以下の通りです: +**TEXT TO DOCUMENT**コマンドは、 *text* を直接ディスク上のファイルへと書き込みます。引数には書き込みたいファイルへのパス名を渡します。ファイルが存在しない場合には新たに作成されます。このファイルが既にディスク上に存在する場合、以前の内容は消去されます。ただし既に開かれていた場合にはその中身はロックされエラーが静背されます。*fileName* に渡せるものは以下の通りです: * ファイル名のみ。例えば "myFile.txt" など。この場合、ファイルはアプリケーションのストラクチャーファイルの隣にある必要があります。 * アプリケーションのストラクチャファイルからの相対パス。例えばWindowsでは "\\\\docs\\\\myFile.txt" またはmacOS では ":docs:myFile.txt" @@ -83,4 +81,13 @@ displayed_sidebar: docs #### 参照 [Document to text](document-to-text.md) -*System Documents* \ No newline at end of file +*System Documents* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1237 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/throw.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/throw.md index a2c1e9fda9ce46..9a7fe1c89d50cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/throw.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/throw.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **throw** コマンドは、エラーを作成します。エラーは即座に、あるいはカレントメソッドの終了時に (遅延モード) スローされます。 @@ -106,4 +103,13 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi [ASSERT](assert.md) [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1805 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md index 0e6eab952a790e..e4a4fe8fd167a6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Tickcount はマシンが起動されてから経過したTick (1/60秒) 数を返します。 - -**Note:** Tickcount は倍長整数型の値を返します。 +Tickcount はマシンが起動されてから経過したTick (1/60秒) 数を返します。Tickcount は倍長整数型の値を返します。 #### 例題 @@ -26,4 +24,13 @@ displayed_sidebar: docs #### 参照 [Current time](current-time.md) -[Milliseconds](milliseconds.md) \ No newline at end of file +[Milliseconds](milliseconds.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 458 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md index 0a8b71d3f08a0c..6c15b94e66419c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md @@ -35,4 +35,13 @@ displayed_sidebar: docs #### 参照 [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 180 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time.md index e031fdd2642105..0399ee4ba34ab2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Time コマンドは、*timeValue* 引数で指定した時間に相当する時間表示を返します。 - -*timeValue* 引数には以下のものを渡す事ができます。 +Time コマンドは、*timeValue* 引数で指定した時間に相当する時間表示を返します。引数には以下のものを渡す事ができます。 * システムの言語に対応している4D標準の時間フォーマットで表された時刻を含んでいる文字列(詳細な情報については[String](string.md) を参照して下さい)。 * 00:00:00を経過した秒数を表す倍長整数 @@ -50,4 +48,13 @@ displayed_sidebar: docs [Bool](bool.md) [String](string.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 179 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md index f54e6be4f6d57e..bd4956b53610b8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md @@ -41,4 +41,13 @@ displayed_sidebar: docs [Milliseconds](milliseconds.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1445 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md index cb1624c080d3ca..99cc06450d34ec 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Tool bar height コマンドはカレントの表示されているツールバーの高さを、ピクセル単位で返します。コンテキストに応じて、4Dデザイ ンモードツールバーの場合と、[Open form window](open-form-window.md) コマンドを使用して作成されたカスタムのツールバーの場合があります(デザインモードのツールバーはカスタムのツールバーが表示されている場合には自動的 に非表示になります)。 @@ -26,4 +23,13 @@ displayed_sidebar: docs [HIDE TOOL BAR](hide-tool-bar.md) [Menu bar height](menu-bar-height.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1016 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trace.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trace.md index 77df01fcfe3225..8604b9cd2281a8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trace.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trace.md @@ -14,9 +14,7 @@ displayed_sidebar: docs #### 説明 -データベースの開発時に、**TRACE** コマンドを使用してメソッドをトレースすることができます。 - -**TRACE** コマンドは、カレントプロセス用の4Dのデバッガを起動します。デバッグウィンドウはコードの次の行が実行される前に表示されます。実行するコードを表示しながらメソッドの実行を続けることができます。コードの実行中に、 **Alt+Shift+右クリック** (Windows) 、または**Control+Option+Command+クリック** (Macintosh) でもデバッガーを起動することができます。 +データベースの開発時に、**TRACE** コマンドを使用してメソッドをトレースすることができます。コマンドは、カレントプロセス用の4Dのデバッガを起動します。デバッグウィンドウはコードの次の行が実行される前に表示されます。実行するコードを表示しながらメソッドの実行を続けることができます。コードの実行中に、 **Alt+Shift+右クリック** (Windows) 、または**Control+Option+Command+クリック** (Macintosh) でもデバッガーを起動することができます。 実行しているコードがコンパイルされている場合には、**TRACE**コマンドは無視されます。 @@ -59,3 +57,13 @@ DEBUG プロジェクトメソッドを次に示します:     End if  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 157 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md index 3ea215644d8e32..d47aee47dc2fa9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md @@ -21,4 +21,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*トランザクションを使用する* \ No newline at end of file +*トランザクションを使用する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 961 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md index 8474b67de698b2..d99f3b90819b2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### 説明 -TRANSFORM PICTURE コマンドは、*picture*引数に渡したピクチャに、*operator*タイプの変換を適用するために使用します。 - -**Note:** このコマンドはピクチャ変換演算子 (+/ 等, [C\_BOOLEAN](c-boolean.md) の節参照) で提供される機能を拡張します。これらの演算子は4D でも利用可能です。 +TRANSFORM PICTURE コマンドは、*picture*引数に渡したピクチャに、*operator*タイプの変換を適用するために使用します。このコマンドはピクチャ変換演算子 (+/ 等, [C\_BOOLEAN](c-boolean.md) の節参照) で提供される機能を拡張します。これらの演算子は4D でも利用可能です。 コマンド実行後、ソース*picture*は 直接更新されます。一部の操作は可逆的で、反対の処理を行うか“Reset”処理を行うことで元に戻すことができます。例えば、1%に縮小されたピクチャ は後で100倍することで、変換されることなく元のサイズに戻せます。変換は元のピクチャタイプを変更しません。例えばベクタピクチャは変換後もベクタピ クチャです。 @@ -72,4 +70,13 @@ displayed_sidebar: docs #### 参照 -[COMBINE PICTURES](combine-pictures.md) \ No newline at end of file +[COMBINE PICTURES](combine-pictures.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 988 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md index 9da1a3bf753771..519128aeead5cd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md @@ -53,4 +53,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [Trigger level](trigger-level.md) [TRIGGER PROPERTIES](trigger-properties.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 369 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md index 7f39d4c2142c89..7d3360b0c6bbd2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md @@ -23,4 +23,13 @@ displayed_sidebar: docs [Trigger event](trigger-event.md) [TRIGGER PROPERTIES](trigger-properties.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 398 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md index f7e4e9a295885b..dab1048651750b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md @@ -38,4 +38,13 @@ displayed_sidebar: docs [Trigger event](trigger-event.md) [Trigger level](trigger-level.md) *トリガ* -*レコード番号について* \ No newline at end of file +*レコード番号について* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 399 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/true.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/true.md index b0b44beaf257e0..28aa616276fc2e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/true.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/true.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 [False](false.md) -[Not](not.md) \ No newline at end of file +[Not](not.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 214 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md index d2e25da041c2b4..f44d1b4632d763 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md @@ -34,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[Round](round.md) \ No newline at end of file +[Round](round.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 95 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md index 27f955b5fa236e..f8656266a984dd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md @@ -37,4 +37,16 @@ TRUNCATE TABLEコマンドは注意して使用しなければなりませんが #### 参照 -[DELETE SELECTION](delete-selection.md) \ No newline at end of file +[DELETE SELECTION](delete-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1051 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/type.md index dad23e955c68b5..274363a6a0a5c5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/type.md @@ -145,4 +145,13 @@ Type ファンクションはフィールド、インタープロセス変数、 [Is a variable](is-a-variable.md) [Undefined](undefined.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 295 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md index 1e63c247f2f6bb..65bf4e4c01e419 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md @@ -58,4 +58,13 @@ displayed_sidebar: docs #### 参照 -[CLEAR VARIABLE](clear-variable.md) \ No newline at end of file +[CLEAR VARIABLE](clear-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 82 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/union.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/union.md index 1d39d2de19240d..6c22db1825e2bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/union.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/union.md @@ -49,4 +49,13 @@ displayed_sidebar: docs #### 参照 [DIFFERENCE](difference.md) -[INTERSECTION](intersection.md) \ No newline at end of file +[INTERSECTION](intersection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 120 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md index 13ced4cf4fb407..2912c4dc8c0f15 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md @@ -28,4 +28,13 @@ UNLOAD RECORDはメモリからレコードをアンロードしますが、そ #### 参照 [LOAD RECORD](load-record.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 212 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md index e05116ae529979..b84f19b5e44158 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 UNREGISTER CLIENT コマンドは、クライアントステーションの登録を解除します。クライアントは[REGISTER CLIENT](register-client.md "REGISTER CLIENT")コマンドによって既に登録されているものでなければなりません。 @@ -37,4 +34,14 @@ displayed_sidebar: docs [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[REGISTER CLIENT](register-client.md) \ No newline at end of file +[REGISTER CLIENT](register-client.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 649 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md index 444f00d7f0de71..c868d144f30d3b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md @@ -36,4 +36,13 @@ displayed_sidebar: docs #### 参照 -[Lowercase](lowercase.md) \ No newline at end of file +[Lowercase](lowercase.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 13 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md index 25d704df402da8..1a5af7efad160f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md @@ -53,4 +53,14 @@ IANA名に関する説明は[CONVERT FROM TEXT](convert-from-text.md)コマン [IMPORT TEXT](import-text.md) [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 205 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md index 7044d78736cf8a..148d35e70b2a3d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md @@ -28,4 +28,15 @@ displayed_sidebar: docs [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[CUT NAMED SELECTION](cut-named-selection.md) \ No newline at end of file +[CUT NAMED SELECTION](cut-named-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 332 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md index a458668f24440e..763a00cd1c09e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md @@ -34,4 +34,15 @@ displayed_sidebar: docs #### 参照 [CLEAR SET](clear-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 118 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md index 2f756b8cd3469c..f51df9dded515b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 User in group コマンドは*user* が*group* に存在する場合、[True](true.md "True")を返します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[Current user](current-user.md) \ No newline at end of file +[Current user](current-user.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 338 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md index acd9cd2ad6b02e..2e7f45291a2e57 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **互換性に関する注記:* このコマンドはバイナリデータベースでのみ機能します。プロジェクトデータベースにおいては空のBLOBが返されます。* @@ -33,4 +30,14 @@ displayed_sidebar: docs #### 参照 -[BLOB TO USERS](blob-to-users.md) \ No newline at end of file +[BLOB TO USERS](blob-to-users.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 849 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md index fda9e692793de7..9fe29f1fea4217 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Validate password コマンドは引数 *password* に渡された文字列が、引数 *userID* に渡されたID番号または名前を持つユーザアカウントのパスワードである場合、Trueを返します。 @@ -62,4 +59,13 @@ displayed_sidebar: docs [GET USER PROPERTIES](get-user-properties.md) [Set user properties](set-user-properties.md) -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 638 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md index 92baafa84d8a26..d4f1eb3575ee3f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md @@ -29,4 +29,14 @@ OK変数に0が代入された場合、トランザクションは自動的に [CANCEL TRANSACTION](cancel-transaction.md) [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*トランザクションを使用する* \ No newline at end of file +*トランザクションを使用する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 240 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md index d985759800b86c..e23c4e76b55907 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md @@ -112,4 +112,13 @@ displayed_sidebar: docs #### 参照 [OB Get type](ob-get-type.md) -[Type](type.md) \ No newline at end of file +[Type](type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1509 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md index 2bdb6bed569fe2..07c92b286ce105 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md @@ -131,4 +131,14 @@ displayed_sidebar: docs [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 532 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md index b0f31b5a9ea0fc..f5dfb0e093ce10 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 VARIABLE TO VARIABLEコマンドは、引数*srcVar1* *srcVar2*に渡す値を、*process*に渡す番号を持つ送り先プロセスの*dstVar* (*dstVar2*等) プロセス変数に書き込みます。 @@ -64,4 +61,13 @@ VARIABLE TO VARIABLE は、任意のタイプの送り先プロセスまたは [GET PROCESS VARIABLE](get-process-variable.md) [SET PROCESS VARIABLE](set-process-variable.md) -*プロセス* \ No newline at end of file +*プロセス* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 635 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variance.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variance.md index 02cb1685c67019..a3dadeced59e33 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variance.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variance.md @@ -67,4 +67,13 @@ displayed_sidebar: docs [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Sum squares](sum-squares.md) \ No newline at end of file +[Sum squares](sum-squares.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 27 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md index b68b7b455713f0..36c95a8c0dbecc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md @@ -41,4 +41,14 @@ VERIFY CURRENT DATA FILEコマンドを引数なしで呼び出すと、デフ #### 参照 -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1008 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md index bd1be59a79ac59..9e8e3c1562089b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### 説明 -**VERIFY DATA FILE**コマンドは、*structurePath*と*dataPath*で指定したデータファイル中にあるオブジェクトの構造的な検証を行います。 - -**注:** データ検証に関する詳細は、Design Referenceマニュアルを参照してください。 +**VERIFY DATA FILE**コマンドは、*structurePath*と*dataPath*で指定したデータファイル中にあるオブジェクトの構造的な検証を行います。データ検証に関する詳細は、Design Referenceマニュアルを参照してください。 *structurePath*は、 検証するデータファイルに対応するストラクチャーファイル (コンパイル済みまたはインタプリター) を指定します。開かれたストラクチャーや他のストラクチャーを指定できます。OSに対応した完全パス名を指定しなければなりません。空の文字列を渡すと標準のファイルを開くダイアログボックスが表示され、使用するストラクチャーファイルをユーザーが指定できます。 @@ -170,4 +168,14 @@ displayed_sidebar: docs #### 参照 -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 939 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md index da73778bfb7d29..5e7c1b054a07e4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md @@ -52,4 +52,13 @@ displayed_sidebar: docs #### 参照 -[Generate password hash](generate-password-hash.md) \ No newline at end of file +[Generate password hash](generate-password-hash.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1534 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md index bc392b915ad1be..97d3b28b4184aa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md @@ -42,4 +42,13 @@ displayed_sidebar: docs #### 参照 [Application type](application-type.md) -[Application version](application-version.md) \ No newline at end of file +[Application version](application-version.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 495 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md index 844cc19d8d0375..9674a9a5ac84b0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -VOLUME ATTRIBUTESコマンドは、引数*volume*に渡した名前を持つボリュームのサイズ、使用サイズおよび空きサイズをバイト単位で表わして返します。 - -**Note:** *volume*がマウントされていないリモートボリュームを示す場合、OK変数に0が代入され、3つの引数は-1を返します。 +VOLUME ATTRIBUTESコマンドは、引数*volume*に渡した名前を持つボリュームのサイズ、使用サイズおよび空きサイズをバイト単位で表わして返します。*volume*がマウントされていないリモートボリュームを示す場合、OK変数に0が代入され、3つの引数は-1を返します。 #### 例題 @@ -96,4 +94,14 @@ displayed_sidebar: docs #### 参照 -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 472 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md index 8a25560f3dfe42..04e38ad595b7e5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md @@ -40,4 +40,13 @@ displayed_sidebar: docs [DOCUMENT LIST](document-list.md) [FOLDER LIST](folder-list.md) -[VOLUME ATTRIBUTES](volume-attributes.md) \ No newline at end of file +[VOLUME ATTRIBUTES](volume-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 471 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md index 55b85fbcb5325c..f0040c63ca2032 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Back URL available コマンドは、*\** と *object* 引数で指定したWebエリアに開かれた一連のURLで、前のURLが利用できるかどうかを知るために使用します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [WA Forward URL available](wa-forward-url-available.md) -[WA OPEN BACK URL](wa-open-back-url.md) \ No newline at end of file +[WA OPEN BACK URL](wa-open-back-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1026 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md index 55c2957dcdc1b4..dafe315eae3f0e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **WA Create URL history menu** コマンドは、*\** と *object* で指定したWebエリアがセッション中に訪問したURL間をナビゲートするメニューを作成します。このコマンドを使用して、カスタムのナビゲーションインタフェースを作成できます。 @@ -69,4 +66,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[WA GET URL HISTORY](wa-get-url-history.md) \ No newline at end of file +[WA GET URL HISTORY](wa-get-url-history.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1049 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md index c86e25d4ea60d8..8f224cde4ba9f3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Evaluate JavaScript コマンドは、*\** と *object* 引数で指定したWebエリアで、*jsCode*に渡されたJavaScriptコードを実行し、結果を戻します。このコマンドはページが読み込まれた後に呼び出してください(On End URL Loading フォームイベントが生成されている必要があります)。 @@ -103,4 +100,13 @@ HTML ファイル内にあるJavaScriptファンクションの例: #### 参照 -[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) \ No newline at end of file +[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1029 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md index 2086620f3dee9f..1384ef732c1cd8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA EXECUTE JAVASCRIPT FUNCTION コマンドは、*\** と *object* で指定したWebエリアで、*jsFunction*に渡したJavaScript関数を実行し、*result* 引数に結果を返します (オプション)。 @@ -59,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[WA Evaluate JavaScript](wa-evaluate-javascript.md) \ No newline at end of file +[WA Evaluate JavaScript](wa-evaluate-javascript.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1043 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md index 00d9e8661fa6f9..7376751c893949 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Forward URL available コマンドは、*\** と *object* 引数で指定したWebエリアに開かれた一連のURLで、次のURLが利用できるかどうかを知るために使用します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [WA Back URL available](wa-back-url-available.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1027 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md index 2d65e670e87ef9..be2b3858a1ade1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Get current URL コマンドは、*\** と *object* 引数で指定したWebエリアに現在表示されているページのURLアドレスを返します。 @@ -37,4 +34,13 @@ Webページが完全にロードされると、この関数から返される #### 参照 -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1025 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md index 017f6af665d0be..0da3a746ec2bab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA GET EXTERNAL LINKS FILTERS コマンドは*filtersArr* と *allowDenyArr*配列に、*\** と *object* 引数で指定したWebエリアの外部リンクフィルタを返します。フィルタが有効でない場合、空の配列が返されます。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1033 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md index 5d1b30687035e1..22077cf3e2abdd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Get last filtered URL コマンドは、*\** と *object* 引数で指定したWebエリアで、最後にフィルタされたURLを返します。 @@ -35,4 +32,13 @@ URLは以下のいずれかの理由でフィルタされることがありま [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) [WA GET URL FILTERS](wa-get-url-filters.md) [WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1035 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md index 7098d2983888c6..1256bb72fa101b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA GET LAST URL ERROR コマンドを使用して、*\** と *object* 引数で指定したWebエリアで発生した最後のエラーに関する情報のいくつかの項目を取得できます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1034 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md index 2ea4def9a92773..6c3f7b0e8bcda2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Get page content コマンドは、*\** と *object* 引数で指定したWebエリアの現在のページまたは表示されているページのHTMLコードを返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[WA SET PAGE CONTENT](wa-set-page-content.md) \ No newline at end of file +[WA SET PAGE CONTENT](wa-set-page-content.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1038 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md index ccc8d87ac2019a..a1d587ab24d337 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Get page title コマンドは、*\** と *object* 引数で指定したWebエリアの現在のページまたは表示されているページのタイトルを返します。タイトルはHTMLのtitleタグに対応します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1036 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md index 661e5ba6e421e4..9a4d572bbaf788 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA GET PREFERENCE コマンドを使用して、*\** と *object* によって指定されたWebエリアの環境設定の現在値を取得します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[WA SET PREFERENCE](wa-set-preference.md) \ No newline at end of file +[WA SET PREFERENCE](wa-set-preference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1042 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md index 8cd71fc2dcde47..d8e4acf944ca0c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA GET URL FILTERS コマンドは*filtersArr* と *allowDenyArr*配列に、*\** と *object* 引数で指定したWebエリアで有効なフィルタを返します。フィルタが有効でない場合、空の配列が返されます。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1031 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md index e1322af724a47c..de3f0ae49cd500 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA GET URL HISTORY コマンドは、*\** と *object* 引数で指定したWebエリアのセッション中に訪問したURLを含む1つまたは2つの配列を返します。このコマンドを使用して、カスタムのナビゲーションシステムを作成できます。 @@ -45,4 +42,13 @@ URLは時間順に並びかえられます。 #### 参照 -[WA Create URL history menu](wa-create-url-history-menu.md) \ No newline at end of file +[WA Create URL history menu](wa-create-url-history-menu.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1048 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md index d874b652ce3052..3d2d1c4d83e509 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA OPEN BACK URL コマンドは、*\** と *object* 引数で指定したWebエリアに開かれた一連のURL中、現在のURLのひとつ前のURLをロードします。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 [WA OPEN FORWARD URL](wa-open-forward-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1021 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md index 7f8a5361ebb39e..a16bb7f312268b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA OPEN FORWARD URL コマンドは、*\** と *object* 引数で指定したWebエリアに開かれた一連のURL中、現在のURLのひとつ次のURLをロードします。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1022 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md index 53de1136fcd137..f42af424285310 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **WA OPEN URL**コマンドは、*url* 引数に渡したURLを、*\** と *object* 引数で指定したWebエリアにロードします。 @@ -49,4 +46,13 @@ Mac OSにおいてFileVault が有効化されている場合には、Posix シ [OPEN URL](open-url.md) [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1020 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md index 707a092b3661ee..6c4993f08c9bb3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **WA OPEN WEB INSPECTOR** コマンドは、 *\** および *object* 引数で指定されたWeb エリアにおいてWeb インスペクターを開きます。 @@ -24,4 +21,13 @@ displayed_sidebar: docs #### 参照 [WA Run offscreen area](wa-run-offscreen-area.md) -*Webエリアのプログラムによる管理* \ No newline at end of file +*Webエリアのプログラムによる管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1736 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md index 8b0ae006258a04..d916c39b3ad33b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA REFRESH CURRENT URL コマンドは、*\** と *object* 引数で指定したWebエリアに現在表示されているURLを再読み込みします。 #### 参照 -[WA STOP LOADING URL](wa-stop-loading-url.md) \ No newline at end of file +[WA STOP LOADING URL](wa-stop-loading-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1023 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md index 06fd40ce03988b..518c9842078d95 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **WA Run offscreen area** コマンドは、メモリ内にWeb エリアを作成します。このWeb エリアはWeb ページを自動的に読み込んで解析することなどに使用できます。 @@ -97,4 +94,14 @@ displayed_sidebar: docs [FORM Event](../commands/form-event.md) [WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) -*Webエリアのプログラムによる管理* \ No newline at end of file +*Webエリアのプログラムによる管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1727 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md index 7d1818615a82e3..d22265dd2042c4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA SET EXTERNAL LINKS FILTERS コマンドを使用して、*\** と *object* 引数で指定したWebエリアの外部リンクフィルタを設定できます。外部リンクフィルタは、リンクを使用して現在のページに関連付けられているURLをWebエリアで開くか、マシンのデフォルトWebブラウザで開くかどうか決定するために使用されます。 @@ -76,4 +73,13 @@ displayed_sidebar: docs #### 参照 [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1032 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md index 56533be10740b5..2aa8fd8fc0d122 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 互換性に関する注意 この歴史的なコマンドは現実的にはもはや実用的とは言えません。現代的なブラウザにおいてはセキュリティが厳格化されているため、ページコンテンツを"オンザフライ"で変更することに対しては制約が増える一方です。より信頼性のある方法としてはローカルなファイルを(例: 一時フォルダ内などに)作成し、[WA OPEN URL](wa-open-url.md) を使用してロードすることです。コンテンツを消去するためには、**WA OPEN URL**(myArea;”about:blank”) を呼び出してください。 @@ -46,4 +43,13 @@ Windows では、この引数は効果がなく、ベースURLは指定されま #### 参照 -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1037 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md index 70a3634bbeee13..21920156a6c3b4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA SET PREFERENCE コマンドを使用して、引数 *\** と *object* によって指定されたWebエリアに対して、さまざまな環境設定を行います。 @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 -[WA GET PREFERENCE](wa-get-preference.md) \ No newline at end of file +[WA GET PREFERENCE](wa-get-preference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1041 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md index e636853d023f2c..bac161edb93b86 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA SET URL FILTERS コマンドは、*\** と *object* 引数で指定したWebエリアで、1 つ以上のフィルタを設定するために使用します。 @@ -139,4 +136,13 @@ displayed_sidebar: docs #### 参照 [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1030 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md index 7451e9d707e59d..f48456b6062288 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA STOP LOADING URL コマンドは、*\** と *object* 引数で指定したWebエリアの現在のURL のリソース読み込みを停止します。 #### 参照 -[WA REFRESH CURRENT URL](wa-refresh-current-url.md) \ No newline at end of file +[WA REFRESH CURRENT URL](wa-refresh-current-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1024 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md index dc6ab7b74a40f3..57256f1b89243e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA ZOOM IN コマンドは、*\** と *object* 引数で指定したWebエリアに表示されているテキストのサイズを大きくします。 @@ -27,4 +24,13 @@ Windows では、このコマンドのスコープはグローバルです。4D #### 参照 -[WA ZOOM OUT](wa-zoom-out.md) \ No newline at end of file +[WA ZOOM OUT](wa-zoom-out.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1039 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md index 4ddfe8887a1b8b..7e796f5ad8df6e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA ZOOM OUT コマンドは、*\** と *object* 引数で指定したWebエリアに表示されているテキストのサイズを小さくします。 @@ -27,4 +24,13 @@ Windows では、このコマンドのスコープはグローバルです。4D #### 参照 -[WA ZOOM IN](wa-zoom-in.md) \ No newline at end of file +[WA ZOOM IN](wa-zoom-in.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1040 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md index 63c47e140e8f2f..47a890fa1d2cac 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1211 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md index 8712e97e83fde7..ca376fe9a3fcc9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md @@ -19,9 +19,7 @@ displayed_sidebar: docs #### 説明 -**WEB GET BODY PART**コマンドはWebプロセスのコンテキストで使用され、マルチパートリクエストのボディ部を解析します。 - -*part* 引数には解析対象のパート番号を渡します。総パート数は[WEB Get body part count](web-get-body-part-count.md)コマンドで取得できます。 +**WEB GET BODY PART**コマンドはWebプロセスのコンテキストで使用され、マルチパートリクエストのボディ部を解析します。引数には解析対象のパート番号を渡します。総パート数は[WEB Get body part count](web-get-body-part-count.md)コマンドで取得できます。 *contents* 引数にはパートのコンテンツが返されます。取得するパートがファイルの場合、BLOB型の引数を渡さなければなりません。Webフォームから送信されるテキストデータの場合、テキスト型の引数を渡すことができます。 @@ -94,4 +92,13 @@ GetFileのコードは以下の通りです: [WEB Get body part count](web-get-body-part-count.md) [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET VARIABLES](web-get-variables.md) \ No newline at end of file +[WEB GET VARIABLES](web-get-variables.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1212 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md index b4f0227f1ae855..64dc1f52817470 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md @@ -22,4 +22,13 @@ displayed_sidebar: docs #### 参照 [WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) -*Webセッション管理(旧式)* \ No newline at end of file +*Webセッション管理(旧式)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1162 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md index e4566d69cf26c5..58873ce46dc45d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md @@ -46,4 +46,13 @@ displayed_sidebar: docs #### 参照 [WEB GET BODY PART](web-get-body-part.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 814 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md index c083a41fd284c8..1446ec3535885c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md @@ -114,4 +114,13 @@ HTTP標準に準拠するには、フィールド名を常に英語で記述し #### 参照 [WEB GET HTTP BODY](web-get-http-body.md) -[WEB SET HTTP HEADER](web-set-http-header.md) \ No newline at end of file +[WEB SET HTTP HEADER](web-set-http-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 697 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md index a28b3fd6349f06..945219958f0f1b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**WEB GET OPTION** コマンドは4D Webサーバー処理に関するオプションの現在の設定値を取得するために使用します。 - -*selector* 引数には取得するWebオプションを指定する値を渡します。*Web Server*テーマの以下の定数を使用できます: +**WEB GET OPTION** コマンドは4D Webサーバー処理に関するオプションの現在の設定値を取得するために使用します。引数には取得するWebオプションを指定する値を渡します。*Web Server*テーマの以下の定数を使用できます: | 定数 | 値 | コメント | | ---------------------------------------- | -- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | @@ -62,4 +60,13 @@ displayed_sidebar: docs #### 参照 -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1209 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md index 815badf62657ba..d4f65fddf3aeed 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md @@ -89,4 +89,13 @@ displayed_sidebar: docs [License info](license-info.md) [Process activity](../commands/process-activity.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1531 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md index 9370dfbe236f80..3d62646acb54a9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md @@ -60,3 +60,13 @@ STATSプロジェクトメソッドには以下のコードを書きます: ``` URLリンクまたは[WEB SEND FILE](web-send-file.md)コマンドを使用して"stats.shtm"ページを参照できます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 658 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md index 19be89728f390c..33d36010194f57 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md @@ -63,4 +63,13 @@ WEBFORMメソッド以下のように記述します。 #### 参照 -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 683 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md index e7352dba8042e8..fa84c74c16e57c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md @@ -26,4 +26,13 @@ displayed_sidebar: docs #### 参照 -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 698 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md index 4cdba0f813f398..1d30cd79d163a8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md @@ -36,3 +36,13 @@ Webサーバーが実行中かどうかをチェックしたい場合:     ... //実行する処理  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1313 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md index 70f80d6de19af2..85401f1dd393f9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md @@ -34,4 +34,13 @@ Webプロセスや他のプロセスからこのコマンドが呼び出され #### 参照 [On Web Legacy Close Session database method](on-web-legacy-close-session-database-method.md) -*Webセッション管理(旧式)* \ No newline at end of file +*Webセッション管理(旧式)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1208 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md index 02844cd8052ad4..5e59134de0c84e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md @@ -37,4 +37,13 @@ displayed_sidebar: docs [WEB Get Current Session ID](web-get-current-session-id.md) [WEB SET OPTION](web-set-option.md) -*Webセッション管理(旧式)* \ No newline at end of file +*Webセッション管理(旧式)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1207 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md index 7a15922bd5ec38..85fc4ab25f5270 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md @@ -78,4 +78,13 @@ BLOBに含まれるデータのタイプは *type* によって示されます #### 参照 -[WEB SEND FILE](web-send-file.md) \ No newline at end of file +[WEB SEND FILE](web-send-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 654 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md index bc5d5d7a302f1b..cca34829f3f9d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md @@ -48,4 +48,14 @@ Webページ "MyPage.HTM"を送信するには以下のようにします。 #### 参照 -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 619 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md index b087387bf08056..8d53f692f53606 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md @@ -55,3 +55,13 @@ displayed_sidebar: docs        ... // 検索コードをここに入れる  End case ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 659 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md index 99cc9c75044802..9d53361f707eb1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md @@ -79,4 +79,13 @@ Location: http://... #### 参照 [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 815 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md index b28c18792f2a67..3c38f219a4ddfc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md @@ -44,4 +44,13 @@ displayed_sidebar: docs #### 参照 -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 677 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md index 84b207e0992408..7ed323cb9866ab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md @@ -51,4 +51,13 @@ displayed_sidebar: docs #### 参照 [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE Get info](web-service-get-info.md) \ No newline at end of file +[WEB SERVICE Get info](web-service-get-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 786 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md index c8a10e4a65c859..39c162b9c1854b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md @@ -159,4 +159,14 @@ DOCモード (または複合タイプのRPCモード) で公開されたWebサ #### 参照 [WEB SERVICE GET RESULT](web-service-get-result.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 778 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md index ba4ba9318cd550..780021dfb3a1a9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md @@ -28,3 +28,13 @@ displayed_sidebar: docs | Web Service HTTP status code | 倍長整数 | 2 | HTTPエラーコード (メインエラーが9912の場合に使用)。 | 情報が利用できない場合、空の文字列が返されます。特に最後のSOAPリクエストがエラーを生成しなかった場合。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 780 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md index 1fced98ac148a0..03f10afaf0a82c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**WEB SERVICE GET RESULT**コマンドは、行われた処理の結果としてWebサービスから返された結果を取得するために使用します。 - -**注:** このコマンドは[WEB SERVICE CALL](web-service-call.md)コマンドの後に使用しなければなりません。 +**WEB SERVICE GET RESULT**コマンドは、行われた処理の結果としてWebサービスから返された結果を取得するために使用します。このコマンドは[WEB SERVICE CALL](web-service-call.md)コマンドの後に使用しなければなりません。 *returnValue* 引数はWebサービスから送り返された値を受け取ります。この引数には4D変数を渡します。この変数は通常、プロクシメソッドから返される値に対応する$0です。しかし中間変数を使用することもできます (プロセス変数のみ)。 @@ -51,4 +49,13 @@ Webサービスがある都市の時間を返すとします。Webサービス #### 参照 [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 779 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md index a82c685b7824fe..f6cd76276e19b6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md @@ -60,4 +60,13 @@ SOAPリクエストにカスタマイズしたヘッダーを挿入する: #### 参照 -[WEB SERVICE CALL](web-service-call.md) \ No newline at end of file +[WEB SERVICE CALL](web-service-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 901 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md index 92556c0106c80c..5fa26abffe2357 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md @@ -71,4 +71,13 @@ displayed_sidebar: docs #### 参照 [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE GET RESULT](web-service-get-result.md) \ No newline at end of file +[WEB SERVICE GET RESULT](web-service-get-result.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 777 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md index 829bb27de7d521..d7262c2f4c3b0d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md @@ -26,3 +26,13 @@ HTMLホームページの名前、またはそのページのHTMLアクセスパ 現在のWebプロセスのホームページとして *homePage* の使用を停止するには、*homePage* に空の文字列 ("") を渡して**WEB SET HOME PAGE**コマンドを実行します。 **注:** Webサーバーのデフォルトホームページはデータベース設定ダイアログボックスで定義できます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 639 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md index 9b1e4306a4bad6..a77a619ca5b7c4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md @@ -62,4 +62,13 @@ X-VERSIONとX-STATUSを指定しないと、自動的にHTTP/1.0 200 OKが設定 #### 参照 -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 660 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md index c05bbb4c620dfc..a25d41aa998c73 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md @@ -110,4 +110,13 @@ Server: 4D/16.0.1 #### 参照 [WEB GET OPTION](web-get-option.md) -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 5 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md index 7d7a67db9f8ff0..bc435a06a444c8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md @@ -36,4 +36,14 @@ HTMLシンタックス (URLタイプ) 、またはシステムシンタックス #### 参照 [Get 4D folder](get-4d-folder.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 634 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md index f433ba02fefc0e..5af034ecafb138 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md @@ -22,4 +22,14 @@ Webサーバの起動が成功すると、OK に1が代入されます。その #### 参照 -[WEB STOP SERVER](web-stop-server.md) \ No newline at end of file +[WEB STOP SERVER](web-stop-server.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 617 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md index 23d41e9597152d..b36c255a1ffa94 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md @@ -19,4 +19,13 @@ Webサーバが起動していない場合、コマンドは何も行いませ #### 参照 -[WEB START SERVER](web-start-server.md) \ No newline at end of file +[WEB START SERVER](web-start-server.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 618 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md index 0055de70bf7472..f41e6cd4cb04a5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md @@ -55,4 +55,13 @@ displayed_sidebar: docs #### 参照 [Generate digest](generate-digest.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 946 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md index 0925038b44c03f..0ef3e8e9af2637 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Window kind コマンドは*window*に渡した参照番号のウィンドウのタイプを返します。ウィンドウが存在しない場合、 Window kind には *0* が返されます。 @@ -41,4 +38,13 @@ displayed_sidebar: docs [GET WINDOW RECT](get-window-rect.md) [Get window title](get-window-title.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 445 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md index 8cd2427d270d59..7c560430a77031 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WINDOW LIST コマンドは配列 *windows* を生成し、実行中のすべての (カーネルおよびユーザ) プロセスで開かれているウィンドウの参照番号を返します。"可視状態"のウィンドウ(非表示になっていないウィンドウ)のみが返されます。 @@ -52,4 +49,13 @@ displayed_sidebar: docs #### 参照 [Window kind](window-kind.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 442 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md index c8544fcf5c211f..732d18f2cf016e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Window process コマンドは*window*に渡されたウィンドウが実行されているプロセスの番号を返します。ウィンドウが存在しない場合0が返されます。 @@ -25,4 +22,13 @@ displayed_sidebar: docs #### 参照 -[Current process](current-process.md) \ No newline at end of file +[Current process](current-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 446 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md index 5ec58f1abad4c7..db88b6b1169730 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Windows Alt down はWindowsのAlt キーが押されていると[True](true.md "True")を返します。 - -**Note:** Macintoshのプラットフォーム上で呼び出された場合は、Macintoshのoptionキーが押されていると、 Windows Alt down は[True](true.md "True")を返します。 +Windows Alt down はWindowsのAlt キーが押されていると[True](true.md "True")を返します。Macintoshのプラットフォーム上で呼び出された場合は、Macintoshのoptionキーが押されていると、 Windows Alt down は[True](true.md "True")を返します。 #### 例題 @@ -30,4 +28,13 @@ displayed_sidebar: docs [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 563 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md index d336086a61136a..b1fef467e51518 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Windows Ctrl down はWindowsのCtrlキーが押されていると[True](true.md "True")を返します。 - -**Note:** Macintoshのプラットフォーム上で呼び出された場合は、 Macintoshのcommandキーが押されていると、Windows Ctrl down は[True](true.md "True")を返します。 +Windows Ctrl down はWindowsのCtrlキーが押されていると[True](true.md "True")を返します。Macintoshのプラットフォーム上で呼び出された場合は、 Macintoshのcommandキーが押されていると、Windows Ctrl down は[True](true.md "True")を返します。 #### 例題 @@ -30,4 +28,13 @@ displayed_sidebar: docs [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 562 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md index 8ff3d7f2682011..a2d29638e8bc0c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md @@ -45,4 +45,14 @@ displayed_sidebar: docs [PICTURE TO BLOB](picture-to-blob.md) [READ PICTURE FILE](read-picture-file.md) [SET PICTURE FILE NAME](set-picture-file-name.md) -*ピクチャ* \ No newline at end of file +*ピクチャ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 680 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md index b9bea398620bd4..f8276e0d1fb09b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md @@ -85,4 +85,13 @@ Title="4 Stabat mater"/> #### 参照 [BASE64 DECODE](base64-decode.md) -[BASE64 ENCODE](base64-encode.md) \ No newline at end of file +[BASE64 ENCODE](base64-encode.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1091 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md index 65cdb67ba5c8fb..629ab3d61f627c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md @@ -28,4 +28,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get XML information](dom-get-xml-information.md) \ No newline at end of file +[DOM Get XML information](dom-get-xml-information.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 732 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md index 6f4060615d8b1a..38d3dd417af2a5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**XML GET OPTIONS** コマンドは、カレントセッションおよびカレントユーザで使用されている1つ以上のXMLパラメタの現在値を取得するために使用します。 - -*selector*には取得するオプションを指定する、"*XML*"テーマの定義済み定数を渡します。オプションの現在の値は*value* 引数に返されます: +**XML GET OPTIONS** コマンドは、カレントセッションおよびカレントユーザで使用されている1つ以上のXMLパラメタの現在値を取得するために使用します。引数に返されます: | 定数 | 型 | 値 | コメント | | ------------------------------ | ---- | - | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | @@ -34,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1096 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md index 621b394a2ba760..4c31277a6b9573 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md @@ -65,4 +65,13 @@ SVG ピクチャの挿入: [DOM SET XML DECLARATION](dom-set-xml-declaration.md) [DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[XML GET OPTIONS](xml-get-options.md) \ No newline at end of file +[XML GET OPTIONS](xml-get-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1090 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md index 26d6b7d50c3704..f989e6127850fa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md @@ -37,4 +37,13 @@ displayed_sidebar: docs #### 参照 [Day of](day-of.md) -[Month of](month-of.md) \ No newline at end of file +[Month of](month-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 25 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/command-index.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/command-index.md index 693b4cd745c59c..cd99d9caac0ffc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/command-index.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/command-index.md @@ -90,7 +90,7 @@ title: インデックス [`Cache info`](../commands-legacy/cache-info.md)
    [`Call chain`](../commands-legacy/call-chain.md)
    -[`CALL FORM`](call-form.md)
    +[`CALL FORM`](../commands-legacy/call-form.md)
    [`CALL SUBFORM CONTAINER`](../commands-legacy/call-subform-container.md)
    [`CALL WORKER`](../commands-legacy/call-worker.md)
    [`CANCEL`](../commands-legacy/cancel.md)
    @@ -279,7 +279,7 @@ title: インデックス [`Euro converter`](../commands-legacy/euro-converter.md)
    [`EXECUTE FORMULA`](../commands-legacy/execute-formula.md)
    [`EXECUTE METHOD`](../commands-legacy/execute-method.md)
    -[`EXECUTE METHOD IN SUBFORM`](execute-method-in-subform.md)
    +[`EXECUTE METHOD IN SUBFORM`](../commands-legacy/execute-method-in-subform.md)
    [`EXECUTE ON CLIENT`](../commands-legacy/execute-on-client.md)
    [`Execute on server`](../commands-legacy/execute-on-server.md)
    [`Exp`](../commands-legacy/exp.md)
    @@ -657,7 +657,7 @@ title: インデックス [`METHOD GET NAMES`](../commands-legacy/method-get-names.md)
    [`METHOD Get path`](../commands-legacy/method-get-path.md)
    [`METHOD GET PATHS`](../commands-legacy/method-get-paths.md)
    -[`METHOD GET PATHS FORM`](method-get-paths-form.md)
    +[`METHOD GET PATHS FORM`](../commands-legacy/method-get-paths-form.md)
    [`METHOD OPEN PATH`](../commands-legacy/method-open-path.md)
    [`METHOD RESOLVE PATH`](../commands-legacy/method-resolve-path.md)
    [`METHOD SET ACCESS MODE`](../commands-legacy/method-set-access-mode.md)
    @@ -756,7 +756,7 @@ title: インデックス [`OBJECT GET SCROLLBAR`](../commands-legacy/object-get-scrollbar.md)
    [`OBJECT GET SHORTCUT`](../commands-legacy/object-get-shortcut.md)
    [`OBJECT Get style sheet`](../commands-legacy/object-get-style-sheet.md)
    -[`OBJECT GET SUBFORM`](object-get-subform.md)
    +[`OBJECT GET SUBFORM`](../commands-legacy/object-get-subform.md)
    [`OBJECT GET SUBFORM CONTAINER SIZE`](../commands-legacy/object-get-subform-container-size.md)
    [`OBJECT Get subform container value`](../commands-legacy/object-get-subform-container-value.md)
    [`OBJECT Get text orientation`](../commands-legacy/object-get-text-orientation.md)
    @@ -802,7 +802,7 @@ title: インデックス [`OBJECT SET SCROLLBAR`](../commands-legacy/object-set-scrollbar.md)
    [`OBJECT SET SHORTCUT`](../commands-legacy/object-set-shortcut.md)
    [`OBJECT SET STYLE SHEET`](../commands-legacy/object-set-style-sheet.md)
    -[`OBJECT SET SUBFORM`](object-set-subform.md)
    +[`OBJECT SET SUBFORM`](../commands-legacy/object-set-subform.md)
    [`OBJECT SET SUBFORM CONTAINER VALUE`](../commands-legacy/object-set-subform-container-value.md)
    [`OBJECT SET TEXT ORIENTATION`](../commands-legacy/object-set-text-orientation.md)
    [`OBJECT SET THREE STATES CHECKBOX`](../commands-legacy/object-set-three-states-checkbox.md)
    diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/compile-project.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/compile-project.md index bfd881cf2d1603..07c89d7b2a82c5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/compile-project.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/compile-project.md @@ -119,20 +119,20 @@ displayed_sidebar: docs `methods.code` および `errors.code` 内の`code` プロパティは、以下のプロパティを持ったオブジェクトです: -| **プロパティ** | **型** | **説明** | -| -------------- | ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| type | Text | "projectMethod", "formObjectMethod", "formMethod", "databaseMethod", "triggerMethod", "executeOnServer" (when calling a project method with the *Execute on Server attribute*), "executeFormula" (when executing a formula via [PROCESS 4D TAGS](../commands-legacy/process-4d-tags.md) or evaluation of a formula in a 4D Write Pro document), "class", "classFunction", "formObjectExpression" (for errors occuring in expressions associated to form objects) | -| path | Text | Method path (same format as [METHOD OPEN PATH](../commands-legacy/method-open-path.md)) | -| file | 4D.File | メソッドファイル | -| | | **以下は`type` プロパティの値に応じて返されます:** | -| methodName | Text | プロジェクトメソッド | -| table | Number | テーブル番号(トリガ、テーブルフォームメソッドまたはテーブルフォームオブジェクトメソッドに対して返されます) | -| formName | Text | フォーム名(フォームメソッドに対して返されます) | -| objectName | Text | フォームオブジェクト名(オブジェクトメソッドに対して返されます) | -| propertyName | Text | フォームオブジェクトプロパティ名(フォームオブジェクトの式に対して返されます) | -| className | Text | クラス名 | -| functionName | Text | クラス関数名 | -| databaseMethod | Number | データベースメソッドのインデックス | +| **プロパティ** | **型** | **説明** | +| -------------- | ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| type | Text | "projectMethod"、 "formObjectMethod"、 "formMethod"、 "databaseMethod"、 "triggerMethod"、 "executeOnServer" (*サーバー上で実行属性*つきのプロジェクトメソッドを呼び出した場合)、 "executeFormula" (when executing a formula via [PROCESS 4D TAGS](../commands-legacy/process-4d-tags.md) からフォーミュラを実行した場合または4D Write Pro ドキュメント内のフォーミュラを評価した場合)、 "class"、 "classFunction"、 "formObjectExpression" (フォームオブジェクトに割り当てられた式の中で発生したエラー) | +| path | Text | メソッドパス([METHOD OPEN PATH](../commands-legacy/method-open-path.md) と同じフォーマット) | +| file | 4D.File | メソッドファイル | +| | | **以下は`type` プロパティの値に応じて返されます:** | +| methodName | Text | プロジェクトメソッド | +| table | Number | テーブル番号(トリガ、テーブルフォームメソッドまたはテーブルフォームオブジェクトメソッドに対して返されます) | +| formName | Text | フォーム名(フォームメソッドに対して返されます) | +| objectName | Text | フォームオブジェクト名(オブジェクトメソッドに対して返されます) | +| propertyName | Text | フォームオブジェクトプロパティ名(フォームオブジェクトの式に対して返されます) | +| className | Text | クラス名 | +| functionName | Text | クラス関数名 | +| databaseMethod | Number | データベースメソッドのインデックス | #### 例題 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md index 5b70f5d0e38512..262e975eab7179 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md @@ -20,9 +20,9 @@ displayed_sidebar: docs `Create entity selection` コマンドは、*dsTable* で指定したテーブルに対応するデータクラスの[追加可能な](../ORDA/entities.md#shareable-or-alterable-entity-selections)新規エンティティセレくションを、同テーブルのカレントセレクションに基づいてビルドして返します。 -ソートされたカレントセレクションの場合、[順列のある](ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) エンティティセレクションが作成されます (カレントセレクションの並び順が受け継がれます)。 カレントセレクションがソートされていない場合、順列のないエンティティセレクションが作成されます。 +ソートされたカレントセレクションの場合、[順列のある](ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) エンティティセレクションが作成されます (カレントセレクションの並び順が受け継がれます)。 カレントセレクションがソートされていない場合、順列のないエンティティセレクションが作成されます。 カレントセレクションがソートされていない場合、順列のないエンティティセレクションが作成されます。 カレントセレクションがソートされていない場合、順列のないエンティティセレクションが作成されます。 カレントセレクションがソートされていない場合、順列のないエンティティセレクションが作成されます。 -[`ds`](ds.md) において *dsTable* が公開されていない場合には、エラーが返されます。 リモートデータストアの場合は、このコマンドは使用できません。 +[`ds`](ds.md) において *dsTable* が公開されていない場合には、エラーが返されます。 リモートデータストアの場合は、このコマンドは使用できません。 リモートデータストアの場合は、このコマンドは使用できません。 任意の *settings* には、以下のプロパティを持つオブジェクトを渡せます: @@ -43,3 +43,10 @@ $employees:=Create entity selection([Employee]) #### 参照 [USE ENTITY SELECTION](use-entity-selection.md)
    [`dataClass.newSelection()`](../API/DataClassClass.md#newselection) + +#### プロパティ + +| | | +| ------- | ------------------------------------------- | +| コマンド番号 | 1512 | +| スレッドセーフ | &amp;amp;amp;check; | diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/dialog.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/dialog.md index f4d69e4c81f4cf..a8267f6af5f065 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/dialog.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/dialog.md @@ -47,9 +47,9 @@ displayed_sidebar: docs "form data" オブジェクトに値を入れるためには、以下の2つの方法があります: -- *formData* 引数を使用する方法。 *formData* 引数を使用する方法。 *formData* に対してローカル変数を使用することで、呼び出しコンテキストに関係なく、安全にフォームに引数を渡すことができます。 特に、同じフォームが同じプロセスないで他の場所から呼び出された場合、[Form](form.md).myProperty と呼び出すだけで、常にその特定の値にアクセスすることができます。 さらに、オブジェクトは参照によって渡されるため、ユーザーがプロパティの値をフォーム内で変更した場合、その値は自動的にオブジェクト自身内に保存されます。 特に、同じフォームが同じプロセスないで他の場所から呼び出された場合、[Form](form.md).myProperty と呼び出すだけで、常にその特定の値にアクセスすることができます。 さらに、オブジェクトは参照によって渡されるため、ユーザーがプロパティの値をフォーム内で変更した場合、その値は自動的にオブジェクト自身内に保存されます。 +- *formData* 引数を使用する方法。 *formData* 引数を使用する方法。 *formData* 引数を使用する方法。 *formData* 引数を使用する方法。 *formData* 引数を使用する方法。 *formData* に対してローカル変数を使用することで、呼び出しコンテキストに関係なく、安全にフォームに引数を渡すことができます。 特に、同じフォームが同じプロセスないで他の場所から呼び出された場合、[Form](form.md).myProperty と呼び出すだけで、常にその特定の値にアクセスすることができます。 さらに、オブジェクトは参照によって渡されるため、ユーザーがプロパティの値をフォーム内で変更した場合、その値は自動的にオブジェクト自身内に保存されます。 特に、同じフォームが同じプロセスないで他の場所から呼び出された場合、[Form](form.md).myProperty と呼び出すだけで、常にその特定の値にアクセスすることができます。 さらに、オブジェクトは参照によって渡されるため、ユーザーがプロパティの値をフォーム内で変更した場合、その値は自動的にオブジェクト自身内に保存されます。 特に、同じフォームが同じプロセスないで他の場所から呼び出された場合、[Form](form.md).myProperty と呼び出すだけで、常にその特定の値にアクセスすることができます。 さらに、オブジェクトは参照によって渡されるため、ユーザーがプロパティの値をフォーム内で変更した場合、その値は自動的にオブジェクト自身内に保存されます。 特に、同じフォームが同じプロセスないで他の場所から呼び出された場合、[Form](form.md).myProperty と呼び出すだけで、常にその特定の値にアクセスすることができます。 さらに、オブジェクトは参照によって渡されるため、ユーザーがプロパティの値をフォーム内で変更した場合、その値は自動的にオブジェクト自身内に保存されます。 特に、同じフォームが同じプロセスないで他の場所から呼び出された場合、[Form](form.md).myProperty と呼び出すだけで、常にその特定の値にアクセスすることができます。 さらに、オブジェクトは参照によって渡されるため、ユーザーがプロパティの値をフォーム内で変更した場合、その値は自動的にオブジェクト自身内に保存されます。 -- [ユーザークラスをフォームに割り当てる](../FormEditor/properties_FormProperties.md#form-class)ことで、4D はフォームがロードされる際に自動的にこのクラスのオブジェクトをインスタンス化します。 オブジェクトプロパティおよび関数は[Form](form.md) から返されるオブジェクト内で自動的に利用可能になります。 例えば、`Form.myFunction()` と書くことができます。 オブジェクトプロパティおよび関数は[Form](form.md) から返されるオブジェクト内で自動的に利用可能になります。 例えば、`Form.myFunction()` と書くことができます。 +- [ユーザークラスをフォームに割り当てる](../FormEditor/properties_FormProperties.md#form-class)ことで、4D はフォームがロードされる際に自動的にこのクラスのオブジェクトをインスタンス化します。 オブジェクトプロパティおよび関数は[Form](form.md) から返されるオブジェクト内で自動的に利用可能になります。 例えば、`Form.myFunction()` と書くことができます。 オブジェクトプロパティおよび関数は[Form](form.md) から返されるオブジェクト内で自動的に利用可能になります。 例えば、`Form.myFunction()` と書くことができます。 オブジェクトプロパティおよび関数は[Form](form.md) から返されるオブジェクト内で自動的に利用可能になります。 例えば、`Form.myFunction()` と書くことができます。 オブジェクトプロパティおよび関数は[Form](form.md) から返されるオブジェクト内で自動的に利用可能になります。 例えば、`Form.myFunction()` と書くことができます。 オブジェクトプロパティおよび関数は[Form](form.md) から返されるオブジェクト内で自動的に利用可能になります。 例えば、`Form.myFunction()` と書くことができます。 :::note @@ -58,7 +58,7 @@ displayed_sidebar: docs ::: -ダイアログは(ak accept 標準アクション、Enter キー、または[ACCEPT](../commands-legacy/accept.md) コマンドによってトリガーされた)"accept" アクション、または(ak cancel 標準アクション、Escape キー、または[CANCEL](../commands-legacy/cancel.md) コマンドによってトリガーされた)"cancel" アクションによって閉じられます。 accept アクションはOK システム変数を1に設定する一方、cancel アクションはOK を0に設定します。 accept アクションはOK システム変数を1に設定する一方、cancel アクションはOK を0に設定します。 +ダイアログは(ak accept 標準アクション、Enter キー、または[ACCEPT](../commands-legacy/accept.md) コマンドによってトリガーされた)"accept" アクション、または(ak cancel 標準アクション、Escape キー、または[CANCEL](../commands-legacy/cancel.md) コマンドによってトリガーされた)"cancel" アクションによって閉じられます。 accept アクションはOK システム変数を1に設定する一方、cancel アクションはOK を0に設定します。 accept アクションはOK システム変数を1に設定する一方、cancel アクションはOK を0に設定します。 accept アクションはOK システム変数を1に設定する一方、cancel アクションはOK を0に設定します。 accept アクションはOK システム変数を1に設定する一方、cancel アクションはOK を0に設定します。 accept アクションはOK システム変数を1に設定する一方、cancel アクションはOK を0に設定します。 ただし、評価することは保存と同等ではないという点に注意して下さい。 ダイアログにフィールドが含まれる場合、変更されたデータを保存するためには[SAVE RECORD](../commands-legacy/save-record.md) コマンドを明示的に呼び出さなければいけません。 @@ -69,9 +69,9 @@ displayed_sidebar: docs **注:** -- You can combine the use of the **DIALOG**(form;\*) syntax with the [CALL FORM](../commands-legacy/call-form.md) command to establish communication between the forms. +- **DIALOG**(form;\*) シンタックスと[CALL FORM](../commands-legacy/call-form.md) コマンドを組み合わせることによってフォーム間で通信をすることができます。 - **DIALOG**(form;\*) ステートメントの前に、あらかじめウィンドウが作成されている必要があります。 プロセスのカレントダイアログウィンドウや、各プロセスにデフォルトで作成されるウィンドウは使用できません。 でなければ、エラー -9909 が生成されます。 プロセスのカレントダイアログウィンドウや、各プロセスにデフォルトで作成されるウィンドウは使用できません。 でなければ、エラー -9909 が生成されます。 -- オプションの *\** 引数を使用する場合、標準アクションまたは[CANCEL](../commands-legacy/cancel.md) コマンドや[ACCEPT](../commands-legacy/accept.md) コマンドを呼び出すと、ウィンドウは自動的に閉じられます。 ウィンドウ自身の終了を管理する必要はありません。 ウィンドウ自身の終了を管理する必要はありません。 +- オプションの *\** 引数を使用する場合、標準アクションまたは[CANCEL](../commands-legacy/cancel.md) コマンドや[ACCEPT](../commands-legacy/accept.md) コマンドを呼び出すと、ウィンドウは自動的に閉じられます。 ウィンドウ自身の終了を管理する必要はありません。 ウィンドウ自身の終了を管理する必要はありません。 ウィンドウ自身の終了を管理する必要はありません。 ウィンドウ自身の終了を管理する必要はありません。 #### 例題 1 @@ -176,3 +176,11 @@ displayed_sidebar: docs [CANCEL](../commands-legacy/cancel.md)\ [Form](form.md)\ [Open window](../commands-legacy/open-window.md) + +#### プロパティ + +| | | +| ---------- | ------------------------------------------- | +| コマンド番号 | 40 | +| スレッドセーフである | &amp;amp;amp;cross; | +| 更新するシステム変数 | OK, error | diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/form-load.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/form-load.md index 7711dacedad7fc..5282e54b29d085 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/form-load.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/form-load.md @@ -44,82 +44,82 @@ form data オブジェクトについての詳細な情報については、[`DI **FORM LOAD** コマンドを呼び出す前に、別の印刷フォームがロードされていた場合には、そのフォームは閉じられ、*form* に置き換えられます。 ひとつの印刷セッション内で複数のプロジェクトフォームを開いたり閉じたりすることができます。 **FORM LOAD** で印刷フォームを変更してもページブレークは生成されません。 ページブレークは開発者が別途指定する必要があります。 -Only the [`On Load` form event](../Events/onLoad.md) is executed during the opening of the project form, as well as any object methods of the form. Other form events are ignored. The [`On Unload` form event](../Events/onUnload.md) is executed at the end of printing. +プロジェクトフォーム (またはフォームのオブジェクトメソッド) を開く際には、[`On Load` form event](../Events/onLoad.md) フォームイベントのみが実行されます。 他のフォームイベントは無視されます。 印刷の終わりには[`On Unload` form event](../Events/onUnload.md) フォームイベントが実行されます。 -To preserve the graphic consistency of forms, it is recommended to apply the "Printing" appearance property regardless of the platform. +フォームのグラフィックな一貫性を保持するために、プラットフォームにかかわらず"印刷"アピアランスプロパティを適用することをお勧めします。 -The current printing form is automatically closed when the [CLOSE PRINTING JOB](../commands-legacy/close-printing-job.md) command is called. +[CLOSE PRINTING JOB](../commands-legacy/close-printing-job.md) コマンドが呼び出されると、カレント印刷フォームは自動で閉じられます。 -##### Parsing form contents +##### フォームコンテンツの解析 -This consists in loading an off-screen form for parsing purposes. To do this, just call **FORM LOAD** outside the context of a print job. In this case, form events are not executed. +データ解析のためにスクリーン外にフォームをロードするには、 印刷ジョブ外のコンテキストで**FORM LOAD** を呼び出します。 この場合、フォームイベントは実行されません。 -**FORM LOAD** can be used with the [FORM GET OBJECTS](../commands-legacy/form-get-objects.md) and [OBJECT Get type](../commands-legacy/object-get-type.md) commands in order to perform any type of processing on the form contents. You must then call the [FORM UNLOAD](../commands-legacy/form-unload.md) command in order to release the form from memory. +**FORM LOAD** を[FORM GET OBJECTS](../commands-legacy/form-get-objects.md) や[OBJECT Get type](../commands-legacy/object-get-type.md) コマンドと併せて使用して、フォームコンテンツを任意に処理することができます。 その後、フォームをメモリから解放するために[FORM UNLOAD](../commands-legacy/form-unload.md) コマンドを呼び出す必要があります。 -Note that in all cases, the form on screen remains loaded (it is not affected by the **FORM LOAD** command) so it is not necessary to reload it after calling [FORM UNLOAD](../commands-legacy/form-unload.md). +いずれの場合においても、スクリーン上のフォームはロードされたままであるため(**FORM LOAD** コマンドに影響されない)、[FORM UNLOAD](../commands-legacy/form-unload.md)コマンドを呼び出した後にこれらをリロードする必要はありません。 -**Reminder:** In the off-screen context, do not forget to call [FORM UNLOAD](../commands-legacy/form-unload.md) to avoid any risk of memory overflow. +**注:** メモリオーバーフローのリスクを回避するため、スクリーン外でフォームを使用した場合には[FORM UNLOAD](../commands-legacy/form-unload.md) を必ずコールしてください。 #### 例題 1 -Calling a project form in a print job: +印刷ジョブにプロジェクトフォームを呼び出す場合: ```4d  OPEN PRINTING JOB  FORM LOAD("print_form") -  // execution of events and object methods + // イベントとオブジェクトメソッドの実行 ``` #### 例題 2 -Calling a table form in a print job: +印刷ジョブにテーブルフォームを呼び出す場合: ```4d  OPEN PRINTING JOB  FORM LOAD([People];"print_form") -  // execution of events and object methods +  // イベントとオブジェクトメソッドの実行 ``` #### 例題 3 -Parsing of form contents to carry out processing on text input areas: +フォームの内容を解析してテキスト入力エリアに何らかの処理をする場合: ```4d  FORM LOAD([People];"my_form") -  // selection of form without execution of events or methods +  // イベントやメソッドを実行することなくフォームを選択  FORM GET OBJECTS(arrObjNames;arrObjPtrs;arrPages;*)  For($i;1;Size of array(arrObjNames))     If(OBJECT Get type(*;arrObjNames{$i})=Object type text input) -  //… processing +  //… 処理     End if  End for - FORM UNLOAD //do not forget to unload the form + FORM UNLOAD // フォームをunloadするのを忘れないこと ``` #### 例題 4 -The following example returns the number of objects on a JSON form: +以下の例では、JSON ファイルで定義されたフォーム上にあるオブジェクトの数を返します: ```4d - ARRAY TEXT(objectsArray;0) //sort form items into arrays + ARRAY TEXT(objectsArray;0) // フォームのオブジェクトを並べ替えて入れる配列  ARRAY POINTER(variablesArray;0)  ARRAY INTEGER(pagesArray;0)   - FORM LOAD("/RESOURCES/OutputForm.json") //load the form + FORM LOAD("/RESOURCES/OutputForm.json") // フォームを読み込む  FORM GET OBJECTS(objectsArray;variablesArray;pagesArray;Form all pages+Form inherited)   - ALERT("The form contains "+String(size of array(objectsArray))+" objects") //return the object count + ALERT("The form contains "+String(size of array(objectsArray))+" objects") // オブジェクトの数を返す ``` -the result shown is: +結果は以下のように表示されます: ![](../assets/en/commands/pict3688480.en.png) #### 例題 5 -You want to print a form containing a list box. During the *on load* event, you want the contents of the list box to be modified. +リストボックスを格納しているフォームを印刷したい場合を考えます。 *on load* イベント中に、リストボックスのコンテンツを変更したいとします。 -1\. In the printing method, you write: +1\. 印刷メソッド内に、以下のように書きます: ```4d  var $formData : Object @@ -129,12 +129,12 @@ You want to print a form containing a list box. During the *on load* event, you  OPEN PRINTING JOB  $formData:=New object  $formData.LBcollection:=New collection() - ... //fill the collection with data + ... // コレクションにデータを入れます   - FORM LOAD("GlobalForm";$formData) //store the collection in $formData + FORM LOAD("GlobalForm";$formData) // $formData 経由でコレクションをフォームに渡します  $over:=False  Repeat -    $full:=Print object(*;"LB") // the datasource of this "LB" listbox is Form.LBcollection +    $full:=Print object(*;"LB") // この"LB" はリストボックスで、Form.LBcollectionをデータソースとして持つとします。     LISTBOX GET PRINT INFORMATION(*;"LB";lk printing is over;$over)     If(Not($over))        PAGE BREAK @@ -144,13 +144,13 @@ You want to print a form containing a list box. During the *on load* event, you  CLOSE PRINTING JOB ``` -2\. In the form method, you can write: +2\. フォームメソッド内には以下のように書きます: ```4d  var $o : Object  Case of     :(Form event code=On Load) -       For each($o;Form.LBcollection) //LBcollection is available +       For each($o;Form.LBcollection) // ここでForm.LBcollection は利用可能です           $o.reference:=Uppercase($o.reference)        End for each  End case diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/form.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/form.md index f787385ca93667..33f0139baf0e72 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/form.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/form.md @@ -8,60 +8,61 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| --- | ------ | - | ----------------------------- | -| 戻り値 | Object | ← | Form data of the current form | +| 引数 | 型 | | 説明 | +| --- | ------ | - | ----------------- | +| 戻り値 | Object | ← | カレントのフォームのフォームデータ | -*This command is not thread-safe, it cannot be used in preemptive code.* +*このコマンドはスレッドセーフではないので、プリエンプティブなコードでは使用できません。*
    履歴 -| リリース | 内容 | -| ----- | ------------------ | -| 20 R8 | Form class support | +| リリース | 内容 | +| ----- | ------------ | +| 20 R8 | フォームクラスのサポート |
    #### 説明 -The **Form** command returns the object associated with the current form (instantiated from the *formData* parameter or the user class assigned in the Form editor).The **Form** command returns the object associated with the current form (instantiated from the *formData* parameter or the user class assigned in the Form editor). 4D automatically associates an object to the current form in the following cases: +The **Form** command returns the object associated with the current form (instantiated from the *formData* parameter or the user class assigned in the Form editor).The **Form** command returns the object associated with the current form (instantiated from the *formData* parameter or the user class assigned in the Form editor).**Form** コマンドはカレントフォームに割り当てられている(*formData* 引数、またはフォームエディターで割り当てられたユーザークラスによってインスタンス化された)オブジェクトを返します。 4D は以下の場合にはカレントフォームに自動的にオブジェクトを割り当てます: 4D は以下の場合にはカレントフォームに自動的にオブジェクトを割り当てます: -- the current form has been loaded by one of the [`DIALOG`](dialog.md), [`Print form`](print-form.md), or [`FORM LOAD`](form-load.md) commands, -- the current form is a subform, -- a table form is currently displayed on screen. +- カレントフォームが、[`DIALOG`](dialog.md)、[`Print form`](print-form.md) あるいは [`FORM LOAD`](form-load.md) コマンドのいずれか一つによってロードされた場合。 +- カレントフォームがサブフォームである場合。 +- テーブルフォームが現在画面上に表示されている場合。 -##### Commands (DIALOG...) +##### コマンド(DIALOGなど) -If the current form is being displayed or loaded by a call to the [DIALOG](dialog.md), [`Print form`](print-form.md), or [`FORM LOAD`](form-load.md) commands, **Form** returns either: +カレントのフォームが[DIALOG](dialog.md)、[`Print form`](print-form.md) あるいは [`FORM LOAD`](form-load.md) コマンドによって表示あるいはロードされていた場合、は以下のいずれかのものを返します: -- the *formData* object passed as parameter to this command, if any, -- or, an instantiated object of the [user class associated to the form](../FormEditor/properties_FormProperties.md#form-class), if any, -- or, an empty object. +- コマンドに引数として渡された*formData* オブジェクト(あれば)。 +- [フォームに割り当てられているユーザークラス](../FormEditor/properties_FormProperties.md#form-class) のインスタンス化されたオブジェクト(あれば)。 +- または、空のオブジェクト。 ##### サブフォーム -If the current form is a subform, the returned object depends on the parent container variable: +カレントフォームがサブフォームの場合、返されるオブジェクトは親コンテナ変数に依存します: -- If the variable associated to the parent container has been typed as an object, **Form** returns the value of this variable.\ - In this case, the object returned by **Form** is the same as the one returned by the following expression: +- 親コンテナに割り当てられている変数がオブジェクト型であった場合、**Form** はその変数の値を返します。\ + この場合、**Form** から返されるオブジェクトは、以下の式から返されるものと同じになります:\ + In the context of an input form displayed from an output form (i.e. after a double-click on a record), the returned object contains the following property: ```4d (OBJECT Get pointer(Object subform container))-> ``` -- If the variable associated to the parent container has not been typed as an object, **Form** returns an empty object, maintained by 4D in the subform context. +- 親コンテナに割り当てられている変数がオブジェクト型として型指定されていない場合、**Form** は、サブフォームのコンテキストで4D によって維持される、空のオブジェクトを返します。 -For more information, please refer to the *Page subforms* section. +より詳細な情報については、*サブフォームページ* の章を参照してください。 -##### Table form +##### テーブルフォーム -**Form** returns the object associated with the table form displayed on screen. In the context of an input form displayed from an output form (i.e. after a double-click on a record), the returned object contains the following property: +**Form** は画面に表示されているテーブルフォームに割り当てられているオブジェクトを返します。 **Form** は画面に表示されているテーブルフォームに割り当てられているオブジェクトを返します。 出力フォームから表示された入力フォームのコンテキスト(つまりレコードをダブルクリックした後)の場合、返されるオブジェクトには以下のプロパティが格納されています: -| **プロパティ** | **型** | **Description** | -| ---------- | ------ | ----------------------------------------- | -| parentForm | object | **Form** object of the parent output form | +| **プロパティ** | **型** | **Description** | +| ---------- | ------ | ----------------------- | +| parentForm | object | 親出力フォームの**Form** オブジェクト | #### 例題 @@ -71,7 +72,7 @@ For more information, please refer to the *Page subforms* section. **注:** "Children" オブジェクトフィールドはこの例題においての構造を示すために表示されているだけです。 -In the verification form, you have assigned some Form object properties to inputs: +検証フォームでは、入力に対していくつかのフォームオブジェクトプロパティを割り当てているものとします: ![](../assets/en/commands/pict3541682.en.png) diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/formula.md index 30abb798d91c19..7939b8d4d0e718 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/formula.md @@ -47,7 +47,7 @@ displayed_sidebar: docs $o.myFormula() // 3 を返します ``` -フォーミュラには [引数](#引数の受け渡し) を渡すことができます ([例題4](#例題-4) 参照)。 +`フォーミュラ`には [引数](#引数の受け渡し) を渡すことができます ([例題4](#例題-4) 参照)。 フォーミュラの実行対象となるオブジェクトを指定することができます ([例題5](#例題-5) 参照)。 このオブジェクトのプロパティは、`This` コマンドでアクセス可能です。 @@ -74,8 +74,6 @@ displayed_sidebar: docs ローカル変数を使用するフォーミュラの例: ```4d - - $value:=10 $o:=New object("f";Formula($value)) $value:=20 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md index fea23c9f056750..23c618ab9e5da5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md @@ -29,18 +29,18 @@ displayed_sidebar: docs *server* 引数として、以下のプロパティを持つオブジェクトを渡します: -| *server* | デフォルト値 (省略時) | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------- | -| [](../API/IMAPTransporterClass.md#acceptunsecureconnection)
    | false | -| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Object
    OAuth2 認証の資格情報を表すテキスト文字列またはトークンオブジェクト。 `authenticationMode` が OAUTH2 の場合のみ使用されます。 `accessTokenOAuth2` が使用されているが `authenticationMode` が省略されていた場合、OAuth2 プロトコルが使用されます (サーバーで許可されていれば)。 Not returned in *[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)* object. | なし | -| [](../API/IMAPTransporterClass.md#authenticationmode)
    | サーバーがサポートするもっともセキュアな認証モードが使用されます | -| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
    | 300 | -| [](../API/IMAPTransporterClass.md#connectiontimeout)
    | 30 | -| [](../API/IMAPTransporterClass.md#host)
    | *mandatory* | -| [](../API/IMAPTransporterClass.md#logfile)
    | なし | -| .**password** : Text
    サーバーとの認証のためのユーザーパスワード。 *[IMAP transporter](#imap-transporter-オブジェクト)* オブジェクトには返されません。 | なし | -| [](../API/IMAPTransporterClass.md#port)
    | 993 | -| [](../API/IMAPTransporterClass.md#user)
    | なし | +| *server* | デフォルト値 (省略時) | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------- | +| [](../API/IMAPTransporterClass.md#acceptunsecureconnection)
    | false | +| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Object
    OAuth2 認証の資格情報を表すテキスト文字列またはトークンオブジェクト。 `authenticationMode` が OAUTH2 の場合のみ使用されます。 `accessTokenOAuth2` が使用されているが `authenticationMode` が省略されていた場合、OAuth2 プロトコルが使用されます (サーバーで許可されていれば)。 これは\*[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)\* オブジェクトではでは返されません。 | なし | +| [](../API/IMAPTransporterClass.md#authenticationmode)
    | サーバーがサポートするもっともセキュアな認証モードが使用されます | +| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
    | 300 | +| [](../API/IMAPTransporterClass.md#connectiontimeout)
    | 30 | +| [](../API/IMAPTransporterClass.md#host)
    | *mandatory* | +| [](../API/IMAPTransporterClass.md#logfile)
    | なし | +| .**password** : Text
    サーバーとの認証のためのユーザーパスワード。 *[IMAP transporter](#imap-transporter-オブジェクト)* オブジェクトには返されません。 | なし | +| [](../API/IMAPTransporterClass.md#port)
    | 993 | +| [](../API/IMAPTransporterClass.md#user)
    | なし | > **警告**: 定義されたタイムアウトが、サーバータイムアウトより短いようにしてください。そうでない場合、クライアントタイムアウトは無意味になります。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/process-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/process-info.md index 7ee10dde13e82d..7f05f4686c344f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/process-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/process-info.md @@ -8,10 +8,10 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ------------- | ------- | :-: | ----------------------------- | -| processNumber | Integer | → | Process number | -| 戻り値 | Object | ← | Information about the process | +| 引数 | 型 | | 説明 | +| ------------- | ------- | :-: | ---------- | +| processNumber | Integer | → | プロセス番号 | +| 戻り値 | Object | ← | プロセスに関する情報 | @@ -25,26 +25,26 @@ displayed_sidebar: docs #### 説明 -The `Process info` command returns an object providing detailed information about process whose number you pass in *processNumber*. If you pass an incorrect process number, the command returns a null object. +`Process info` コマンドは、*processNumber* 引数にプロセス番号を渡したプロセスについての詳細な情報を提供するオブジェクトを返します。 正しくないプロセス番号を渡した場合、コマンドはnull オブジェクトを返します。 戻り値のオブジェクトには、以下のプロパティが格納されています: -| プロパティ | 型 | 説明 | -| ---------------- | --------------------------------------- | -------------------------------------------------------------------------------- | -| cpuTime | Real | Running time (seconds) | -| cpuUsage | Real | Percentage of time devoted to this process (between 0 and 1) | -| creationDateTime | Text (Date ISO 8601) | Date and time of process creation | -| ID | Integer | Process unique ID | -| name | Text | プロセス名 | -| number | Integer | Process number | -| プリエンプティブ | Boolean | True if run preemptive, false otherwise | -| sessionID | Text | Session UUID | -| state | Integer | Current status. Possible values: see below | -| systemID | Text | ID for the user process, 4D process or spare process | -| type | Integer | Running process type. Possible values: see below | -| visible | Boolean | True if visible, false otherwise | - -- Possible values for "state": +| プロパティ | 型 | 説明 | +| ---------------- | --------------------------------------- | ---------------------------------------------------- | +| cpuTime | Real | 実行時間(秒) | +| cpuUsage | Real | このプロセスに割り当てられてる時間のパーセント(0 から1 の間) | +| creationDateTime | Text (Date ISO 8601) | プロセス作成の日時 | +| ID | Integer | プロセス固有のID | +| name | Text | プロセス名 | +| number | Integer | プロセス番号 | +| preemptive | Boolean | プリエンプティブに実行可能ならTrue、それ以外の場合にはfalse | +| sessionID | Text | セッションUUID | +| state | Integer | 現在の状態。 取り得る値: 以下を参照のこと | +| systemID | Text | ユーザープロセス、4D プロセス、またはスペアプロセスのID | +| type | Integer | 実行中のプロセスタイプ。 取り得る値: 以下を参照のこと | +| visible | Boolean | 表示であればTrue、それ以外はFalse | + +- "state" の取り得る値: | 定数 | 値 | | ------------------------- | ---- | @@ -57,7 +57,7 @@ The `Process info` command returns a | Waiting for internal flag | 4 | | Paused | 5 | -- Possible values for "type": +- "type" の取り得る値: | 定数 | 値 | | ----------------------------- | --- | @@ -93,7 +93,7 @@ The `Process info` command returns a | Method editor macro process | -17 | | Monitor process | -26 | | MSC process | -22 | -| なし | 0 | +| None | 0 | | On exit process | -16 | | Other 4D process | -10 | | Other internal process | -40 | @@ -118,11 +118,11 @@ The `Process info` command returns a :::note -4D's internal processes have a negative type value and processes generated by the user have a positive value. Worker processes launched by user have type 5. +4D の内部プロセスのtype は負の値を持ち、ユーザーによって生成されたプロセスのtype は正の値を持ちます。 ユーザーによってローンチされたワーカープロセスのtype は5 です。 ::: -Here is an example of output object: +これが出力されたオブジェクトの一例です: ```json @@ -145,14 +145,13 @@ Here is an example of output object: #### 例題 -You want to know if the process is preemptive: +プロセスがプリエンプティブかどうかを調べたい場合を考えます: ```4d var $preemptive : Boolean $preemptive:=Process info(Current process).preemptive - ``` #### 参照 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/process-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/process-number.md index 9b2b8d6541938a..d900ccae69b60b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/process-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/process-number.md @@ -9,30 +9,30 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ---- | ------- | - | -------------------------------------------------------- | -| name | Text | → | Name of process for which to retrieve the process number | -| id | Text | → | ID of process for which to retrieve the process number | -| \* | 演算子 | → | Return the process number from the server | -| 戻り値 | Integer | ← | Process number | +| 引数 | 型 | | 説明 | +| ---- | ------- | - | ------------------- | +| name | Text | → | プロセス番号を取得したいプロセスの名前 | +| id | Text | → | プロセス番号を取得したいプロセスのID | +| \* | 演算子 | → | サーバーからプロセス番号を返す | +| 戻り値 | Integer | ← | プロセス番号 |
    履歴 -| リリース | 内容 | -| ----- | ----------------------- | -| 20 R7 | Support of id parameter | +| リリース | 内容 | +| ----- | ---------- | +| 20 R7 | id 引数のサポート |
    #### 説明 -`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter. If no process is found, `Process number` returns 0. +`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter`Process number` コマンドは第一引数*name* または *id* に渡した名前またはID を持つプロセスの番号を返します。 プロセスが見つからない場合、`Process number` は0 を返します。 プロセスが見つからない場合、`Process number` は0 を返します。 プロセスが見つからない場合、`Process number` は0 を返します。 プロセスが見つからない場合、`Process number` は0 を返します。 -The optional parameter \* allows you to retrieve, from a remote 4D, the number of a process that is executed on the server. In this case, the returned value is negative. This option is especially useful when using the [GET PROCESS VARIABLE](../commands-legacy/get-process-variable.md), [SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) and [VARIABLE TO VARIABLE](../commands-legacy/variable-to-variable.md) commands. +オプションの \* 引数を渡すと、サーバー上で実行中のプロセス番号をリモートの4D から取得することができます。 この場合、返される値は負の値になります。 このオプションは特に[GET PROCESS VARIABLE](../commands-legacy/get-process-variable.md)、 [SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) および [VARIABLE TO VARIABLE](../commands-legacy/variable-to-variable.md) コマンドを使用する場合などに有用です。 この場合、返される値は負の値になります。 このオプションは特に[GET PROCESS VARIABLE](../commands-legacy/get-process-variable.md)、 [SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) および [VARIABLE TO VARIABLE](../commands-legacy/variable-to-variable.md) コマンドを使用する場合などに有用です。 この場合、返される値は負の値になります。 このオプションは特に[GET PROCESS VARIABLE](../commands-legacy/get-process-variable.md)、 [SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) および [VARIABLE TO VARIABLE](../commands-legacy/variable-to-variable.md) コマンドを使用する場合などに有用です。 -If the command is executed with the \* parameter from a process on the server machine, the returned value is positive. +このコマンドが\* 引数付きでサーバーマシン上で実行された場合、返された値は正の値になります。 #### 参照 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/session-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/session-info.md index ca6e7593b88f83..708825faaf8d30 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/session-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/session-info.md @@ -8,48 +8,48 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| --------- | ------- | :-: | ----------------------------- | -| sessionID | Integer | → | セッションID | -| 戻り値 | Object | ← | Information about the session | +| 引数 | 型 | | 説明 | +| --------- | ------- | :-: | ----------- | +| sessionID | Integer | → | セッションID | +| 戻り値 | Object | ← | セッションに関する情報 |
    履歴 -| リリース | 内容 | -| ----- | ------------------------------ | -| 20 R8 | Support of standalone sessions | -| 20 R7 | 追加 | +| リリース | 内容 | +| ----- | ----------------- | +| 20 R8 | スタンドアロンセッションのサポート | +| 20 R7 | 追加 |
    #### 説明 -The `Session info` command returns an object describing the session whose ID you pass in the *sessionID* parameter.. If you pass an invalid *sessionID*, the command returns a null object. +`Session info` コマンドは、*sessionID* 引数に渡したID を持つセッションの詳細を記述したオブジェクトを返します。 *sessionID* 引数に無効なID を渡した場合、コマンドはnull オブジェクトを返します。 *sessionID* 引数に無効なID を渡した場合、コマンドはnull オブジェクトを返します。 *sessionID* 引数に無効なID を渡した場合、コマンドはnull オブジェクトを返します。 *sessionID* 引数に無効なID を渡した場合、コマンドはnull オブジェクトを返します。 戻り値のオブジェクトには、以下のプロパティが格納されています: -| プロパティ | 型 | 説明 | -| ---------------- | -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| type | Text | Session type: "remote", "storedProcedure", "standalone" | -| userName | Text | 4D user name (same value as [`Session.userName`](../API/SessionClass.md#username)) | -| machineName | Text | リモートセッション: リモートマシンの名前。 Stored procedures session: name of the server machine. Standalone session: name of the machine | -| systemUserName | Text | リモートセッション: リモートマシン上で開かれたシステムセッションの名前。 | -| IPAddress | Text | リモートマシンの IPアドレス。 | -| hostType | Text | ホストタイプ: "windows" または "mac" | -| creationDateTime | 日付 (ISO 8601) | Date and time of session creation. Standalone session: date and time of application startup | -| state | Text | セッションの状態: "active", "postponed", "sleeping" | -| ID | Text | Session UUID (same value as [`Session.id`](../API/SessionClass.md#id)) | -| persistentID | Text | リモートセッション: セッションの永続的な ID | +| プロパティ | 型 | 説明 | +| ---------------- | -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | +| type | Text | セッションのタイプ: "remote"、"storedProcedure"、"standalone" | +| userName | Text | 4D ユーザー名([`Session.userName`](../API/SessionClass.md#username)と同じ値) | +| machineName | Text | リモートセッションの場合: リモートマシンの名前。 ストアドプロシージャセッションの場合: サーバーマシンの名前。 スタンドアロンセッションの場合: マシン名 | +| systemUserName | Text | リモートセッション: リモートマシン上で開かれたシステムセッションの名前。 | +| IPAddress | Text | リモートマシンの IPアドレス。 | +| hostType | Text | ホストタイプ: "windows" または "mac" | +| creationDateTime | 日付 (ISO 8601) | セッション作成の日付と時間。 スタンドアロンセッションの場合: アプリケーション起動の日付と時間 | +| state | Text | セッションの状態: "active", "postponed", "sleeping" | +| ID | Text | セッションUUID ([`Session.id`](../API/SessionClass.md#id) と同じ値) | +| persistentID | Text | リモートセッション: セッションの永続的な ID | :::note -This command returns the [`.info`](../API/SessionClass.md#info) property of the *sessionID* session. To get information about the current session, you can directly call `Session.info`. +コマンドは*sessionID* 引数にID を渡したセッションの[`.info`](../API/SessionClass.md#info) プロパティを返します。 カレントのセッションに関する情報を取得する場合、`Session.info` を直接呼び出すことができます。 カレントのセッションに関する情報を取得する場合、`Session.info` を直接呼び出すことができます。 カレントのセッションに関する情報を取得する場合、`Session.info` を直接呼び出すことができます。 カレントのセッションに関する情報を取得する場合、`Session.info` を直接呼び出すことができます。 ::: -Here is an example of output object: +これが出力されたオブジェクトの一例です: ```json diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/session-storage.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/session-storage.md index 8eafdc276db9c4..528a3a8fa6d77b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/session-storage.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/session-storage.md @@ -8,19 +8,19 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| --- | ------ | - | ---------------------------------------------------------- | -| id | Text | → | Unique identifier (UUID) of the session | -| 戻り値 | Object | ← | Storage object of the session | +| 引数 | 型 | | 説明 | +| --- | ------ | - | ----------------------------------- | +| id | Text | → | セッションの固有ID(UUID) | +| 戻り値 | Object | ← | セッションのStorage オブジェクト |
    履歴 -| リリース | 内容 | -| ----- | ------------------------------ | -| 20 R8 | Support of standalone sessions | -| 20 R6 | 追加 | +| リリース | 内容 | +| ----- | ----------------- | +| 20 R8 | スタンドアロンセッションのサポート | +| 20 R6 | 追加 |
    @@ -28,19 +28,19 @@ displayed_sidebar: docs The **Session storage** command returns the storage object of the session whose unique identifier you passed in the *id* parameter. -In *id*, pass the UUID of the session for which you want to get the storage. It is automatically assigned by 4D (4D Server or, for standalone sessions, 4D single-user) and is stored in the [**.id**](../API/SessionClass.md#id) property of the [session object](../API/SessionClass.md). If the session does not exist, the command returns **Null**. +*id* 引数には、Storage を取得したいセッションのUUID を渡します。 *id* 引数には、Storage を取得したいセッションのUUID を渡します。 *id* 引数には、Storage を取得したいセッションのUUID を渡します。 *id* 引数には、Storage を取得したいセッションのUUID を渡します。 これは4D (4D Server、またはスタンドアロンセッションに対してはシングルユーザー版4D)によって自動的に割り振られるもので、[session オブジェクト](../API/SessionClass.md) の[**.id**](../API/SessionClass.md#id) に保存されています。 セッションが存在しない場合、コマンド**Null** はを返します。 セッションが存在しない場合、コマンド**Null** はを返します。 セッションが存在しない場合、コマンド**Null** はを返します。 セッションが存在しない場合、コマンド**Null** はを返します。 -**Note:** You can get the session identifiers using the [Process activity](process-activity.md) command. +**注意:** セッションの識別子は、[Process activity](process-activity.md) コマンドを使用することで取得できます。 -The returned object is the [**.storage**](../API/SessionClass.md#storage) property of the session. It is a shared object used to store information available to all processes of the session. +返されるオブジェクトは、セッションオブジェクトの[**.storage**](../API/SessionClass.md#storage) プロパティです。 これはセッションの全てのプロセスから利用可能な情報を保存するために使用される共有オブジェクトです。 これはセッションの全てのプロセスから利用可能な情報を保存するために使用される共有オブジェクトです。 これはセッションの全てのプロセスから利用可能な情報を保存するために使用される共有オブジェクトです。 これはセッションの全てのプロセスから利用可能な情報を保存するために使用される共有オブジェクトです。 #### 例題 -This method modifies the value of a "settings" property stored in the storage object of a specific session: +以下のメソッドは、特定のセッションのStorage オブジェクト内の"settings" プロパティの値を変更します: ```4d -  //Set storage for a session -  //The "Execute On Server" method property is set +  // セッションに対してstorage を設定 +  // "サーバー上で実行" メソッドプロパティが設定されているものとする    #DECLARE($id : Text; $text : Text)  var $obj : Object diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/session.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/session.md index 4bfb660d9fd86d..bb9590ae74ac3f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/session.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/session.md @@ -18,7 +18,7 @@ displayed_sidebar: docs | リリース | 内容 | | ----- | -------------------------------- | -| 20 R8 | Support of standalone sessions | +| 20 R8 | スタンドアロンセッションのサポート | | 20 R5 | リモートクライアントとストアドプロシージャーセッションをサポート | | 18 R6 | 追加 | @@ -32,12 +32,12 @@ displayed_sidebar: docs - Webセッション ([スケーラブルセッションが有効化されている](WebServer/sessions.md#セッションの有効化) 場合) - リモートクライアントセッション -- the stored procedures session, -- the *designer* session in a standalone application. +- ストアドプロシージャセッション +- スタンドアロンアプリケーションの*designer* セッション -For more information, see the [Session types](../API/SessionClass.md#session-types) paragraph. +詳細については、[Session types](../API/SessionClass.md#session-types) の段落を参照ください。 -If the command is called from a non supported context (e.g. scalable sessions disabled), it returns *Null*. +サポートされていないコンテキスト (スケーラブルセッションが無効など)から呼び出されると、コマンドは *Null* を返します。 #### Webセッション @@ -49,7 +49,7 @@ Webセッションの `Session` オブジェクトは、どの Webプロセス - モバイルリクエスト用の [`On Mobile App Authentication`](https://developer.4d.com/go-mobile/docs/4d/on-mobile-app-authentication) と [`On Mobile App Action`](https://developer.4d.com/go-mobile/docs/4d/on-mobile-app-action) データベースメソッド - [RESTリクエストで呼び出された](../REST/ClassFunctions.md) ORDA関数。 -For more information on web user sessions, please refer to the [Web Server Sessions](../WebServer/sessions.md) section. +Web ユーザーセッションに関する詳細な情報については、[Web Server Sessions](../WebServer/sessions.md) の章を参照してください。 #### リモートクライアントセッション @@ -65,14 +65,14 @@ For more information on web user sessions, please refer to the [Web Server Sessi すべてのストアドプロシージャープロセスは、同じ仮想ユーザーセッションを共有します。 ストアドプロシージャーの `Session` オブジェクトは、次のいずれかから利用できます: -- methods called with the [`Execute on server`](../commands-legacy/execute-on-server.md) command, +- [`Execute on server`](../commands-legacy/execute-on-server.md) コマンドで呼び出されたメソッド - `On Server Startup`、`On Server Shutdown`、`On Backup Startup`、`On Backup Shutdown`、および `On System event` データベースメソッド ストアドプロシージャーの仮想ユーザーセッションに関する情報については、[4D Serverと4Dランゲージ](https://doc.4d.com/4Dv20R5/4D/20-R5/4D-Server-and-the-4D-Language.300-6932726.ja.html) のページを参照ください。 -#### Standalone session +#### スタンドアロンセッション -The `Session` object is available from any process in standalone (single-user) applications so that you can write and test your client/server code using the `Session` object in your 4D development environment. +`Session` オブジェクトは、スタンドアロン(シングルユーザー)アプリケーション内の任意のプロセスから利用可能なため、4D 開発環境において`Session` オブジェクトを使用することで、クライアント/サーバー用のコードを書いてテストすることができます。 #### 例題 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md index 79c6e7d356c3bd..2090bd38f6f194 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md @@ -9,44 +9,44 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ------------ | ---------- | - | --------------------- | -| methodsArray | Text array | → | Array of method names | +| 引数 | 型 | | 説明 | +| ------------ | ------ | - | -------- | +| methodsArray | テキスト配列 | → | メソッド名の配列 | -*This command is not thread-safe, it cannot be used in preemptive code.* +*このコマンドはスレッドセーフではないので、プリエンプティブなコードでは使用できません。* #### 説明 The **SET ALLOWED METHODS** command designates the project methods that can be entered via the application. -4D includes a security mechanism that filters enterable project methods from the following contexts: +4Dには、以下のコンテキストからの呼び出し可能なプロジェクトメソッドをフィルターするセキュリティ機構が含まれています: -- The formula editor - allowed methods appear at the end of the list of default commands and can be used in formulas (see section *Description of formula editor*). -- The label editor - the allowed methods are listed in the **Apply** menu if they are also shared with the component (see section *Description of label editor*). -- Formulas inserted in styled text areas or 4D Write Pro documents through the [ST INSERT EXPRESSION](../commands-legacy/st-insert-expression.md) command - disallowed methods are automatically rejected. -- 4D View Pro documents - by default, if the [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) command has never been called during the session, 4D View Pro formulas only accept methods defined by **SET ALLOWED METHODS**. However, using [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) is recommended. See [Declaring allowed method](../ViewPro/formulas.md#declaring-allowed-methods). +- フォーミュラーエディター - 許可されたメソッドはデフォルトコマンドの一覧の最後に表示され、フォーミュラー内で使用することができます(*フォーミュラエディター* の章を参照してください)。 +- ラベルエディター - 許可されたメソッドがコンポーネントとも共有されていた場合、メソッドは**許可**メニュー内に表示されます(*ラベルエディターの詳細* の章を参照してください)。 +- [ST INSERT EXPRESSION](../commands-legacy/st-insert-expression.md) コマンドを通してスタイル付きテキストエリアまたは4D Write Pro ドキュメントに挿入されたフォーミュラ - 許可されていないメソッドは自動的に排除されます。 +- 4D View Pro ドキュメント - デフォルトで、[`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) コマンドがセッション中に一度も実行されていない場合、4D View Pro フォーミュラーは**SET ALLOWED METHODS** で許可されたメソッドは使用できます。 ですが、[`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) コマンドの使用が推奨されます。 [許可されたメソッドの宣言](../ViewPro/formulas.md#許可されたメソッドの宣言) を参照してください。 ですが、[`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) コマンドの使用が推奨されます。 [許可されたメソッドの宣言](../ViewPro/formulas.md#許可されたメソッドの宣言) を参照してください。 ですが、[`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) コマンドの使用が推奨されます。 [許可されたメソッドの宣言](../ViewPro/formulas.md#許可されたメソッドの宣言) を参照してください。 ですが、[`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) コマンドの使用が推奨されます。 [許可されたメソッドの宣言](../ViewPro/formulas.md#許可されたメソッドの宣言) を参照してください。 -By default, if you do not use the **SET ALLOWED METHODS** command, no method is enterable (using an unauthorized method in an expression causes an error). +デフォルトでは、**SET ALLOWED METHODS** コマンドを使用しない場合、入力可能なメソッドはありません (許可されていないメソッドを式の中で使用するとエラーが発生します)。 -In the *methodsArray* parameter, pass the name of an array containing the list of methods to allow. The array must have been set previously. +*methodsArray* 引数には、許可したいメソッドの一覧を格納した名前の配列を渡します。 この配列は事前に定義しておかなければなりません。 この配列は事前に定義しておかなければなりません。 この配列は事前に定義しておかなければなりません。 この配列は事前に定義しておかなければなりません。 -You can use the wildcard character (@) in method names to define one or more authorized method groups. +メソッド名にワイルドカード記号 (@) を使用し、許可されるメソッドグループを複数定義することができます。 -If you would like the user to be able to call 4D commands that are unauthorized by default or plug-in commands, you must use specific methods that handle these commands. +デフォルトとして許可されていない4Dコマンドやプラグインコマンドをユーザーが呼び出せるようにしたい場合、これらのコマンドを取り扱う特定のメソッドを使用しなくてはなりません。 -**Note:** Formula filtering access can be disabled for all users or for the Designer and Administrator via [an option on the "Security" page of the Settings](../settings/security.md#options). If the "Disabled for all" option is checked, the **SET ALLOWED METHODS** command will have no effect. +**注**: [データベース設定の"セキュリティ"ページのオプション](../settings/security.md#オプション) によって、すべてのユーザーまたはDesignerとAdministratorに対し、フォーミュラーでのフィルタリングアクセスを無効にすることができるようになりました。 "すべてのユーザーを制限する"オプションが チェックされていると、**SET ALLOWED METHODS** コマンドは効果がありません。 "すべてのユーザーを制限する"オプションが チェックされていると、**SET ALLOWED METHODS** コマンドは効果がありません。 "すべてのユーザーを制限する"オプションが チェックされていると、**SET ALLOWED METHODS** コマンドは効果がありません。 "すべてのユーザーを制限する"オプションが チェックされていると、**SET ALLOWED METHODS** コマンドは効果がありません。 :::warning -This command only filters the **input** of methods, not their **execution**. It does not control the execution of formulas created outside the application. +このコマンドはメソッドの**入力** を制限するもので、**実行** を制限するものではありません。 これはアプリケーション外で作成されたフォーミュラの実行は管理しません。 ::: #### 例題 -This example authorizes all methods starting with “formula” and the “Total\_general” method to be entered by the user in protected contexts: +この例は、名前が“formula”で始まるすべてのメソッドと、“Total\_general” メソッドを、保護されたコンテキスト下においてユーザーによって入力できるようにします: ```4d  ARRAY TEXT(methodsArray;2) diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/set-window-document-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/set-window-document-icon.md index f2a71e885c1103..3eb5a203dd50f4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/set-window-document-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/set-window-document-icon.md @@ -8,11 +8,11 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ------ | -------------------------------------------------- | - | ------------------------ | -| winRef | Integer | → | Window reference number | -| image | Picture | → | Custom icon | -| file | 4D.File, 4D.Folder | → | File path or folder path | +| 引数 | 型 | | 説明 | +| ------ | -------------------------------------------------- | - | --------------- | +| winRef | Integer | → | ウィンドウ参照番号 | +| image | Picture | → | カスタムアイコン | +| file | 4D.File, 4D.Folder | → | ファイルパスまたはフォルダパス | @@ -26,47 +26,47 @@ displayed_sidebar: docs #### 説明 -The `SET WINDOW DOCUMENT ICON` command allows you to define an icon for windows in multi-window applications using either an *image* and/or *file* with the window reference *winRef*. The icon will be visible within the window itself and on the windows taskbar to help users identify and navigate different windows. +`SET WINDOW DOCUMENT ICON` コマンドは、*winRef* ウィンドウ参照の引数に合わせて、*image* または *file* 引数を使用してマルチウィンドウアプリケーションにおいてウィンドウのアイコンを定義することができます。 アイコンはウィンドウ自身とウィンドウタスクバーにおいて表示され、ユーザーが異なるウィンドウを識別して切り替えるのを助けます。 アイコンはウィンドウ自身とウィンドウタスクバーにおいて表示され、ユーザーが異なるウィンドウを識別して切り替えるのを助けます。 アイコンはウィンドウ自身とウィンドウタスクバーにおいて表示され、ユーザーが異なるウィンドウを識別して切り替えるのを助けます。 アイコンはウィンドウ自身とウィンドウタスクバーにおいて表示され、ユーザーが異なるウィンドウを識別して切り替えるのを助けます。 -In the case of an MDI application on Windows, you can pass `-1` in *winRef* to set the icon of the main window. In other contexts (macOS or [SDI application](../Menus/sdi.md) on Windows), using -1 does nothing. +Windows でのMDI アプリケーションの場合、*winRef* 引数に`-1` を渡すことでメインウィンドウのアイコンを設定することができます。 この他のコンテキスト(Windows での[SDI アプリケーション](../Menus/sdi.md)またはmacOS) において-1 を使用しても何も起きません。 この他のコンテキスト(Windows での[SDI アプリケーション](../Menus/sdi.md)またはmacOS) において-1 を使用しても何も起きません。 この他のコンテキスト(Windows での[SDI アプリケーション](../Menus/sdi.md)またはmacOS) において-1 を使用しても何も起きません。 この他のコンテキスト(Windows での[SDI アプリケーション](../Menus/sdi.md)またはmacOS) において-1 を使用しても何も起きません。 -- If only *file* is passed, the window uses the icon corresponding to the file type and the file’s path is displayed in the window’s menu. -- If only *image* is passed, 4D does not show the path and the passed image is used for the window icon. -- If both *file* and *image* are passed, the file’s path is displayed in the window’s menu and the passed image is used for the window icon. -- If only *winRef* is passed or *image* is empty, the icon is removed on macOS and the default icon is displayed on Windows (application icon). +- *file* 引数のみが渡された場合、ウィンドウはファイルタイプに対応したアイコンを使用し、ウィンドウのメニューにはファイルのパスが表示されます。 +- *image* 引数のみが渡された場合、4D はパスを表示せず、渡された画像がウィンドウアイコンとして使用されます。 +- *file* および *image* 引数の両方が渡された場合、ウィンドウのメニューにはファイルのパスが表示され、渡された画像がウィンドウのアイコンとして使用されます。 +- *winRef* のみが渡された場合、あるいは*image* 引数が空の場合、macOS ではアイコンが削除され、Windows ではデフォルトアイコン(アプリケーションアイコン)が表示されます。 #### 例題 -In this example, we want to create four windows: +この例題では、4つのウィンドウを作成したい場合を考えます: -1. Use the application icon on Windows and no icon on macOS (default state when no *image* or *file* is used). -2. Use a "user" icon. -3. Associate a document with the window (this uses its file type icon). -4. Customize the icon associated with the document. +1. Windows ではアプリケーションアイコンを使用し、macOs ではアイコンなしにする(*image* 引数も *file* 引数も使用しない場合のデフォルトの状態)。 +2. "user"アイコンを使用する +3. ウィンドウにドキュメントを割り当てる(これはそのファイルタイプのアイコンを使用します) +4. ドキュメントに割り当てられたアイコンをカスタマイズする ```4d var $winRef : Integer var $userImage : Picture var $file : 4D.File - // 1- Open "Contact" form + // 1- "Contact" フォームを開く $winRef:=Open form window("Contact";Plain form window+Form has no menu bar) SET WINDOW DOCUMENT ICON($winRef) DIALOG("Contact";*) - // 2- Open "Contact" form with "user" icon + // 2- "Contact" を"user" アイコンで開く $winRef:=Open form window("Contact";Plain form window+Form has no menu bar) BLOB TO PICTURE(File("/RESOURCES/icon/user.png").getContent();$userImage) SET WINDOW DOCUMENT ICON($winRef;$userImage) DIALOG("Contact";*) - // 3- Open "Contact" form associated with the document "user" + // 3- "Contact" フォームに"user" ドキュメントを割り当てて開く $winRef:=Open form window("Contact";Plain form window+Form has no menu bar) $file:=File("/RESOURCES/files/user.txt") SET WINDOW DOCUMENT ICON($winRef;$file) DIALOG("Contact";*) - // 4- Open "Contact" form associated with the document "user" with "user" icon + // 4- "Contact" フォームに"user" ドキュメントと"user" アイコンを割り当てる $winRef:=Open form window("Contact";Plain form window+Form has no menu bar) BLOB TO PICTURE(File("/RESOURCES/icon/user.png").getContent();$userImage) $file:=File("/RESOURCES/files/user.txt") diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/smtp-new-transporter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/smtp-new-transporter.md index 675ce032101c03..d3926484fcb31b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/smtp-new-transporter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/smtp-new-transporter.md @@ -11,7 +11,7 @@ displayed_sidebar: docs | 引数 | 型 | | 説明 | | ------ | ---------------------------------- | - | --------------------------------------------------------------------------------- | | server | Object | → | メールサーバー情報 | -| 戻り値 | 4D.SMTPTransporter | ← | [SMTP transporter object](../API/SMTPTransporterClass.md#smtp-transporter-object) | +| 戻り値 | 4D.SMTPTransporter | ← | [SMTP transporter オブジェクト](../API/SMTPTransporterClass.md#smtp-transporter-object) | @@ -27,16 +27,16 @@ displayed_sidebar: docs #### 説明 -The `SMTP New transporter` command configures a new SMTP connection according to the *server* parameter and returns a new [SMTP transporter object](../API/SMTPTransporterClass.md#smtp-transporter-object) object. 返された transporter オブジェクトは、通常メールの送信に使用されます。 +`SMTP New transporter` コマンドは、新規のSMTP 接続を設定します。このSMTP 接続は*server* 引数の指定に応じて設定され、コマンドは新しい[SMTP transporter オブジェクト](../API/SMTPTransporterClass.md#smtp-transporter-object) オブジェクトを返します。 返された transporter オブジェクトは、通常メールの送信に使用されます。 返された transporter オブジェクトは、通常メールの送信に使用されます。 返された transporter オブジェクトは、通常メールの送信に使用されます。 -> このコマンドは SMTPサーバーとの接続を開始しません。 The SMTP connection is actually opened when the [`.send()`](../API/SMTPTransporterClass.md#send) function is executed. +> このコマンドは SMTPサーバーとの接続を開始しません。 このコマンドは SMTPサーバーとの接続を開始しません。 このコマンドは SMTPサーバーとの接続を開始しません。 SMTP 接続は、実際には[`.send()`](../API/SMTPTransporterClass.md#send) 関数が実行されたときに開かれます。 > > SMTP接続は、以下の場合に自動的に閉じられます: > -> - when the transporter object is destroyed if the [`keepAlive`](../API/SMTPTransporterClass.md#keepalive) property is true (default), -> - after each [`.send()`](../API/SMTPTransporterClass.md#send) function execution if the [`keepAlive`](../API/SMTPTransporterClass.md#keepalive) property is set to false. +> - [`.keepAlive`](#keepalive) プロパティが true (デフォルト) の場合に、transporter オブジェクトが消去された時。 +> - [`keepAlive`](../API/SMTPTransporterClass.md#keepalive) プロパティがfalse に設定されている場合に、[`.send()`](../API/SMTPTransporterClass.md#send) 関数が実行された後。 -*server* 引数として、以下のプロパティを持つオブジェクトを渡します: +*server* 引数には、以下のプロパティを持つオブジェクトを渡します: | *server* | デフォルト値 (省略時) | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ | @@ -56,7 +56,7 @@ The `SMTP New transporter` command -| 引数 | 型 | | 説明 | -| --- | ------ | - | ------------------------- | -| 戻り値 | Object | ← | Current element or object | +| 引数 | 型 | | 説明 | +| --- | ------ | - | ---------------- | +| 戻り値 | Object | ← | カレントの要素またはオブジェクト | #### 説明 -The `This` command returns a reference to the currently processed object. +`This` コマンドは現在処理中のオブジェクトへの参照を返します。 -`This` の値は、呼ばれ方によって決まります。 This の値は実行時に代入により設定することはできません。また、呼び出されるたびに違う値となりえます。 +`This` の値は、呼ばれ方によって決まります。 この値は実行時に代入により設定することはできません。また、呼び出されるたびに違う値となりえます。 -This command can be used in different contexts, described below. Within these contexts, you will access object/collection element properties or entity attributes through **This.<*propertyPath*\>**. For example, *This.name* or *This.employer.lastName* are valid pathes to object, element or entity properties. +このコマンドは以下で説明するように、異なるコンテキストで使用することができます。 これらのコンテキストの中においては、**This.<*propertyPath*\>** を通してオブジェクト/コレクションの要素プロパティやエンティティの属性にアクセスすることができます。 例えば、*This.name* や*This.employer.lastName* はオブジェクト、要素やエンティティプロパティへの有効なパスとなります。 -In any other context, the command returns **Null**. +これら以外のコンテキストにおいては、コマンドは**Null** を返します。 #### クラス関数 @@ -45,9 +45,9 @@ $o:=cs.ob.new() $val:=$o.a //42 ``` -> コンストラクター内で [Super](#super) キーワードを使ってスーパークラスのコンストラクターを呼び出す場合、必ず `This` より先にスーパークラスのコンストラクターを呼ぶ必要があることに留意してください。順番を違えるとエラーが生成されます。 こちらの [例題](#例題-1) を参照ください。 See [this example](super.md#example-1). +> コンストラクター内で [Super](#super) キーワードを使ってスーパークラスのコンストラクターを呼び出す場合、必ず `This` より先にスーパークラスのコンストラクターを呼ぶ必要があることに留意してください。順番を違えるとエラーが生成されます。 こちらの [例題](super.md#例題-1) を参照ください。 -基本的に、`This` はメソッドの呼び出し元のオブジェクトを指します。 +いずれの場合においても、`This` はメソッドの呼び出し元のオブジェクトを指します。 ```4d //Class: ob @@ -66,24 +66,24 @@ $val:=$o.f() //8 ``` -この例では、変数 $o に代入されたオブジェクトは *f* プロパティを持たないため、これをクラスより継承します。 *f* は $o のメソッドとして呼び出されるため、メソッド内の `This` は $o を指します。 *f* は $o のメソッドとして呼び出されるため、メソッド内の `This` は $o を指します。 +この例では、変数 $o に代入されたオブジェクトは *f* プロパティを持たないため、これをクラスより継承します。 *f* は $o のメソッドとして呼び出されるため、メソッド内の `This` は $o を指します。 #### フォーミュラオブジェクト -In the context of the execution of a formula object created by the [Formula](formula.md) or [Formula from string](formula-from-string.md) commands, `This` returns a reference to the object currently processed by the formula. +[Formula](formula.md) あるいは [Formula from string](formula-from-string.md) コマンドで作成されたフォーミュラオブジェクトの実行コンテキストにおいては、`This` はフォーミュラによって現在処理されているオブジェクトへの参照を返します。 -For example, you want to use a project method as a formula encapsulated in an object: +例えば、プロジェクトをオブジェクトのカプセル化されたフォーミュラとして使用したい場合を考えます: ```4d var $person : Object := New object $person.firstName:="John" $person.lastName:="Smith" $person.greeting:=Formula(Greeting) - $g:=$person.greeting("hello") // returns "hello John Smith" - $g:=$person.greeting("hi") // returns "hi John Smith" + $g:=$person.greeting("hello") // "hello John Smith" を返す + $g:=$person.greeting("hi") // "hi John Smith" を返す ``` -With the *Greeting* project method: +*Greeting* プロジェクトメソッドの中身は以下のようになっています: ```4d #DECLARE($greeting : Text) : Text @@ -92,17 +92,17 @@ With the *Greeting* project method: #### リストボックス -In the context of a list box associated to a collection or an entity selection, during the [`On Display Detail`](../Events/onDisplayDetail.md) or the [`On Data Change`](../Events/onDataChange.md) events, `This` returns a reference to the collection element or entity accessed by the list box to display the current row. +コレクションまたはエンティティセレクションに割り当てられたリストボックスのコンテキストにおいては、[`On Display Detail`](../Events/onDisplayDetail.md) あるいは [`On Data Change`](../Events/onDataChange.md) イベントの最中において、は現在の行を表示するためにリストボックス割り当てられたコレクション要素またはエンティティへの参照を返します。 -:::note +:::注意 -If you use a collection of scalar values in a list box, 4D creates an object for each element with a single **value** property. Thus, the element value is returned by the **This.value** non-assignable expression. +スカラー値のコレクションをリストボックスに対して使用した場合、4D はそれぞれの要素に対して、単一のプロパティ**value** を持つオブジェクトを作成します。 Thus, the element value is returned by the **This.value** non-assignable expression. そのため、要素の値は**This.value** という代入不可の式によって返されます。 ::: #### 例題 1 -A collection of objects, each with this structure: +以下のような構造を持つオブジェクトのコレクションがある場合を考えます: ```json { @@ -127,14 +127,14 @@ A collection of objects, each with this structure: ``` -In the list box, each column refers to one of the properties of the object, either directly (This.name), indirectly (This.employees.length), or through an expression (*getPicture*) in which can be used directly. The list box looks like: +リストボックス内では、各カラムはオブジェクトのプロパティいずれか一つを、直接的(This.name) に、あるいは間接的(This.employees.length) に、あるいは直接使用できる式(*getPicture*) を通して参照しています。 このリストボックスは、以下のようになります: このリストボックスは、以下のようになります: ![](../assets/en/commands/pict3776706.en.png) -The *GetPicture* project method is automatically executed during the **On display detail** event: +*GetPicture* プロジェクトメソッドは、**On display detail** イベント中に自動的に実行されます: ```4d - //GetPicture Method + //GetPicture メソッド #DECLARE -> $genderPict : Picture If(This.isFemale) $genderPict:=Form.genericFemaleImage @@ -143,34 +143,34 @@ The *GetPicture* project method is automatically executed during the **On displa End if ``` -Once the form is executed, you can see the result: +フォームを実行すると、以下のような結果が表示されます: ![](../assets/en/commands/pict3783169.en.png) #### 例題 2 -You want to display entities from the following structure in a list box: +以下のようなストラクチャーからのエンティティをリストボックスに表示したい場合を考えます: ![](../assets/en/commands/pict3872836.en.png) -You build a list box of the "Collection or entity selection" type with the following definition: +その場合、以下のような定義を持つ"コレクションまたはエンティティセレクション"型のリストボックスを作成します: ![](../assets/en/commands/pict3872844.en.png) -注: +注意: -- *This.ID*, *This.Title* and *This.Date* directly refers to the corresponding attributes in the ds.Event dataclass. -- *This.meetings* is a related attribute (based upon the One To Many relation name) that returns an entity selection of the ds.Meeting dataclass. -- **Form.eventList** is the entity selection that is attached to the list box. The initialization code can be put in the on load form event: +- *This.ID*、*This.Title* および *This.Date* は、ds.Event データクラス内の対応する属性を直接参照します。 +- *This.meetings* は(1対N リレーション名に基づいた)リレーション属性であり、ds.Meeting データクラスのエンティティセレクションを返します。 +- **Form.eventList** はリストボックスに割り当てられているエンティティセレクションです。 初期化コードは、On Load フォームイベント内で以下のように書くことができます: 初期化コードは、On Load フォームイベント内で以下のように書くことができます: ```4d Case of :(Form event code=On Load) - Form.eventList:=ds.Event.all() //returns an entity selection with all entities + Form.eventList:=ds.Event.all() //全てのエンティティを格納したエンティティセレクションを返す End case ``` -Once the form is executed, the list box is automatically filled with the entity selection: +フォームが実行されると、リストボックスにはエンティティセレクションが入った状態で表示されます: ![](../assets/en/commands/pict3872875.en.png) diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/use-entity-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/use-entity-selection.md index 2dc0fd7758d0f8..1b60f7c8013bcd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/use-entity-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/use-entity-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -The `USE ENTITY SELECTION` command updates the current selection of the table matching the dataclass of the *entitySelection* parameter, according to the content of the entity selection. +`USE ENTITY SELECTION` コマンドは、*entitySelection* 引数のデータクラスに合致するテーブルのカレントセレクションを、渡したエンティティセレクションの内容で更新します。 [リモートデータストア](../ORDA/remoteDatastores.md) の場合は、このコマンドは使用できません。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server-list.md index 26a265e12f6bf5..342f4650eda288 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server-list.md @@ -8,9 +8,9 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| --- | ---------- | - | ---------------------------------------------- | -| 戻り値 | Collection | ← | Collection of the available Web Server objects | +| 引数 | 型 | | 説明 | +| --- | ---------- | - | -------------------------- | +| 戻り値 | Collection | ← | 利用可能なWeb サーバーオブジェクトのコレクション | @@ -33,9 +33,9 @@ displayed_sidebar: docs サーバーが実際に実行中か否かに関わらず、`WEB Server list` コマンドは利用可能な Webサーバーをすべて返します。 -> デフォルトの Webサーバーオブジェクトは、4D 起動時に自動的にロードされます。 On the other hand, each component Web server that you want to use must be instantiated using the [`WEB Server`](web-server.md) command. +> デフォルトの Webサーバーオブジェクトは、4D 起動時に自動的にロードされます。 一方で、使用したいコンポーネントのWeb サーバーは、[`WEB Server`](web-server.md) コマンドによってそれぞれインスタンス化されている必要があります。 -You can use the [.name](../API/WebServerClass.md#name) property of the Web server object to identify the project or component to which each Web server object in the list is attached. +Webサーバオブジェクトの [.name](../API/WebServerClass.md#name) プロパティを使用することで、リスト内の各 Webサーバーオブジェクトが関連づけられているデータベースまたはコンポーネントを識別することができます。 #### 例題 @@ -47,7 +47,7 @@ You can use the [.name](../API/WebServerClass.md#name) property of the Web serve $wSList:=WEB Server list $vRun:=$wSList.countValues(True;"isRunning") - ALERT(String($vRun)+" web server(s) running on "+String($wSList.length)+" available.") + ALERT(String($wSList.length)+" 個のリストの中で、"+String($vRun)+" 個の Web サーバーが実行中です。") ``` #### 参照 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server.md index 7cbd5b845487e6..01bb277fab8cf4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server.md @@ -15,7 +15,7 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* +*このコマンドはスレッドセーフではないので、プリエンプティブなコードでは使用できません。*
    履歴 @@ -38,7 +38,7 @@ displayed_sidebar: docs | `Web server host database` | 2 | コンポーネントのホストデータベースの Webサーバー | | `Web server receiving request` | 3 | リクエストを受け取った Webサーバー (ターゲットWebサーバー) | -The **returned Web server object** contains the current values of the [Web server properties](../API/WebServerClass.md). +**返されたWeb サーバーオブジェクト** には[Web server プロパティ](../API/WebServerClass.md) のカレントのプロパティが格納されています。 #### 例題 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/zip-read-archive.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/zip-read-archive.md index 75fb44afc829c9..1057d12b8bdc9d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/zip-read-archive.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/zip-read-archive.md @@ -28,7 +28,7 @@ displayed_sidebar: docs `ZIP Read archive` コマンドは、*zipFile* のコンテンツを取得し、`4D.ZipArchive` オブジェクト形式で返します。 -> このコマンドは ZIPアーカイブを展開することはしません。その中身に関する情報を提供するのみです。 To extract the contents of an archive, you need to use methods such as [file.copyTo()](../API/Document.md#copyto) or [folder.copyTo()](../API/Directory.md#copyto). +> このコマンドは ZIPアーカイブを展開することはしません。その中身に関する情報を提供するのみです。 アーカイブの中身を取り出すためには、[file.copyTo()](../API/Document.md#copyto) や [folder.copyTo()](../API/Directory.md#copyto)などのメソッドを使用する必要があります。 *zipFile* 引数として、圧縮された ZIPアーカイブを参照している `4D.File` オブジェクトを渡します。 ターゲットのアーカイブファイルは `ZIP Read archive` が実行を終えるまで (全コンテンツ/参照が取得/解放されるまで) は開いた状態となり、その後自動的に閉じられます。 @@ -36,7 +36,7 @@ displayed_sidebar: docs **アーカイブオブジェクト** -The returned `4D.ZipArchive` object contains a single [`root`](../API/ZipArchiveClass.md#root) property whose value is a `4D.ZipFolder` object. このフォルダーは ZIPアーカイブの全コンテンツを表します。 +返されたオブジェクトは単一の[`root`](../API/ZipArchiveClass.md#root) プロパティだけを格納しており、その値は`4D.ZipFolder` オブジェクトです。 このフォルダーは ZIPアーカイブの全コンテンツを表します。 このフォルダーは ZIPアーカイブの全コンテンツを表します。 #### 例題 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md index a22dc5a28777e4..9061063d1e768e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md @@ -814,6 +814,20 @@ $vSingles:=ds.Person.query("spouse = :1";Null) // 機能しません $vSingles:=ds.Person.query("spouse = null") // 正しいシンタックス ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + **コレクションにおける "等しくない"** diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/classes.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/classes.md index 2667359dc91fa8..e137720f251f37 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/classes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/classes.md @@ -172,7 +172,7 @@ Function ({$parameterName : type; ...}){->$parameterName : type} :::note -There is no ending keyword for function code. There is no ending keyword for function code. +関数コードにおいては、終了キーワードはありません。 There is no ending keyword for function code. ::: @@ -282,7 +282,7 @@ Class Constructor({$parameterName : type; ...}) :::note -There is no ending keyword for class constructor function code. There is no ending keyword for function code. +クラスコンストラクター関数コードにおいては、終了キーワードはありません。 There is no ending keyword for function code. ::: diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md index c16e8054273e89..be36a6d406398a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md @@ -3,7 +3,7 @@ id: DataClassClass title: DataClass --- -[データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 4Dアプリケーション内のデータクラスはすべて、`ds` [データストア](ORDA/dsMapping.md#データストア) のプロパティとして利用可能です。 +[データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 [データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 [データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 4Dアプリケーション内のデータクラスはすべて、`ds` [データストア](ORDA/dsMapping.md#データストア) のプロパティとして利用可能です。 [データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 [データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 4Dアプリケーション内のデータクラスはすべて、`ds` [データストア](ORDA/dsMapping.md#データストア) のプロパティとして利用可能です。 ### 概要 @@ -50,23 +50,23 @@ title: DataClass 返される属性オブジェクトには以下のプロパティが格納されています: -| プロパティ | 型 | 説明 | -| ---------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| autoFilled | Boolean | 属性値が 4D によって自動生成される場合に true です。 このプロパティは次の 4Dフィールドプロパティに対応しています: 数値型フィールドの "自動インクリメント" および UUID (文字型)フィールドの "自動UUID"。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | -| exposed | Boolean | 属性が REST で公開されている場合に trueです | -| fieldNumber | integer | 属性の内部的な 4Dフィールド番号。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | -| fieldType | Integer | 属性の 4Dデータベースフィールドタイプ。 これは属性の種類 (`kind`) によります。 とりうる値:
  • `.kind` = "storage" の場合は、対応する 4Dフィールドタイプ ([`Value type`](https://doc.4d.com/4dv20/help/command/ja/page1509.html) 参照)
  • `.kind` = "relatedEntity" の場合: 38 (`is object`)
  • `.kind` = "relatedEntities" の場合: 42 (`is collection`)
  • `.kind` = "calculated" または "alias" の場合: 結果の値 (フィールドタイプ、relatedEntity または relatedEntities) に応じて、上に同じ
  • | -| indexed | Boolean | 属性に対して B-tree もしくは クラスターB-Tree インデックスが設定されている場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | -| inverseName | Text | リレーション先の属性名。 `.kind` = "relatedEntity" または "relatedEntities" の場合にのみ返されます。 | -| keywordIndexed | Boolean | 属性にキーワードインデックスが存在すれば true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | -| kind | Text | 属性の種類。 とりうる値:
  • "storage": ストレージ (あるいはスカラー) 属性。つまり、属性は値を保存しており、他の属性への参照ではありません。
  • "calculated": 計算属性。[`get`](../ORDA/ordaClasses.md#function-get-attributename) 関数 によって定義されます。
  • "alias": [他の属性](../ORDA/ordaClasses.md#エイリアス属性-1) を指し示す属性。
  • "relatedEntity": N対1 リレーション属性 (エンティティへの参照)
  • "relatedEntities": 1対N リレーション属性 (エンティティセレクションへの参照)
  • | -| 必須 | Boolean | 属性において Null値の入力が拒否されている場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 注記: このプロパティは、4Dデータベースレベルの "Null値の入力を拒否" フィールドプロパティと対応しています。 フィールドのデータ入力制御オプションである既存の "必須入力" プロパティとは無関係です。 | -| name | Text | 属性名 (文字列) | -| path | Text | リレーションに基づく [エイリアス属性](../ORDA/ordaClasses.md#エイリアス属性-1) のパス。 | -| readOnly | Boolean | 読み取り専用属性の場合に trueです。 たとえば、[`set` 関数](../ORDA/ordaClasses.md#function-set-attributename) を持たない計算属性は読み取り専用です。 | -| relatedDataClass | Text | 属性にリレートされているデータクラスの名称。 `.kind` = "relatedEntity" または "relatedEntities" の場合にのみ返されます。 | -| type | Text | 属性の概念的な値タイプ。汎用的なプログラミングに有用です。 これは属性の種類 (`kind`) によります。 とりうる値:
  • `.kind` = "storage" の場合: "blob", "bool", "date", "image", "number", "object", または "string"。 数値型の場合 "number" が返されます (時間を含む)。UUID、文字およびテキスト型フィールドの場合 "string" が返されます。"blob" 属性は [BLOB オブジェクト](../Concepts/dt_blob.md#blob-の種類) です。
  • `.kind` = "relatedEntity" の場合: リレートされたデータクラス名
  • `.kind` = "relatedEntities" の場合: リレートされたデータクラス名 + "Selection" 接尾辞
  • `.kind` = "calculated" または "alias" の場合: 結果の値に応じて、上に同じ
  • | -| unique | Boolean | 属性値が重複不可の場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | +| プロパティ | 型 | 説明 | +| ---------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| autoFilled | Boolean | 属性値が 4D によって自動生成される場合に true です。 このプロパティは次の 4Dフィールドプロパティに対応しています: 数値型フィールドの "自動インクリメント" および UUID (文字型)フィールドの "自動UUID"。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 このプロパティは次の 4Dフィールドプロパティに対応しています: 数値型フィールドの "自動インクリメント" および UUID (文字型)フィールドの "自動UUID"。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 このプロパティは次の 4Dフィールドプロパティに対応しています: 数値型フィールドの "自動インクリメント" および UUID (文字型)フィールドの "自動UUID"。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 このプロパティは次の 4Dフィールドプロパティに対応しています: 数値型フィールドの "自動インクリメント" および UUID (文字型)フィールドの "自動UUID"。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | +| exposed | Boolean | 属性が REST で公開されている場合に trueです | +| fieldNumber | integer | 属性の内部的な 4Dフィールド番号。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | +| fieldType | Integer | 属性の 4Dデータベースフィールドタイプ。 これは属性の種類 (`kind`) によります。 属性の 4Dデータベースフィールドタイプ。 これは属性の種類 (`kind`) によります。 属性の 4Dデータベースフィールドタイプ。 これは属性の種類 (`kind`) によります。 属性の 4Dデータベースフィールドタイプ。 これは属性の種類 (`kind`) によります。 とりうる値:
  • `.kind` = "storage" の場合は、対応する 4Dフィールドタイプ ([`Value type`](https://doc.4d.com/4dv20/help/command/ja/page1509.html) 参照)
  • `.kind` = "relatedEntity" の場合: 38 (`is object`)
  • `.kind` = "relatedEntities" の場合: 42 (`is collection`)
  • `.kind` = "calculated" または "alias" の場合: 結果の値 (フィールドタイプ、relatedEntity または relatedEntities) に応じて、上に同じ
  • | +| indexed | Boolean | 属性に対して B-tree もしくは クラスターB-Tree インデックスが設定されている場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | +| inverseName | Text | リレーション先の属性名。 リレーション先の属性名。 `.kind` = "relatedEntity" または "relatedEntities" の場合にのみ返されます。 | +| keywordIndexed | Boolean | 属性にキーワードインデックスが存在すれば true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | +| kind | Text | 属性の種類。 属性の種類。 属性の種類。 属性の種類。 とりうる値:
  • "storage": ストレージ (あるいはスカラー) 属性。つまり、属性は値を保存しており、他の属性への参照ではありません。
  • "calculated": 計算属性。[`get`](../ORDA/ordaClasses.md#function-get-attributename) 関数 によって定義されます。
  • "alias": [他の属性](../ORDA/ordaClasses.md#エイリアス属性-1) を指し示す属性。
  • "relatedEntity": N対1 リレーション属性 (エンティティへの参照)
  • "relatedEntities": 1対N リレーション属性 (エンティティセレクションへの参照)
  • | +| 必須 | Boolean | 属性において Null値の入力が拒否されている場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 注記: このプロパティは、4Dデータベースレベルの "Null値の入力を拒否" フィールドプロパティと対応しています。 フィールドのデータ入力制御オプションである既存の "必須入力" プロパティとは無関係です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 注記: このプロパティは、4Dデータベースレベルの "Null値の入力を拒否" フィールドプロパティと対応しています。 フィールドのデータ入力制御オプションである既存の "必須入力" プロパティとは無関係です。 | +| name | Text | 属性名 (文字列) | +| path | Text | リレーションに基づく [エイリアス属性](../ORDA/ordaClasses.md#エイリアス属性-1) のパス。 | +| readOnly | Boolean | 読み取り専用属性の場合に trueです。 読み取り専用属性の場合に trueです。 たとえば、[`set` 関数](../ORDA/ordaClasses.md#function-set-attributename) を持たない計算属性は読み取り専用です。 読み取り専用属性の場合に trueです。 たとえば、[`set` 関数](../ORDA/ordaClasses.md#function-set-attributename) を持たない計算属性は読み取り専用です。 読み取り専用属性の場合に trueです。 たとえば、[`set` 関数](../ORDA/ordaClasses.md#function-set-attributename) を持たない計算属性は読み取り専用です。 | +| relatedDataClass | Text | 属性にリレートされているデータクラスの名称。 リレーション先の属性名。 リレーション先の属性名。 `.kind` = "relatedEntity" または "relatedEntities" の場合にのみ返されます。 | +| type | Text | 属性の概念的な値タイプ。汎用的なプログラミングに有用です。 これは属性の種類 (`kind`) によります。 とりうる値:
  • `.kind` = "storage" の場合: "blob", "bool", "date", "image", "number", "object", または "string"。 属性の概念的な値タイプ。汎用的なプログラミングに有用です。 これは属性の種類 (`kind`) によります。 とりうる値:
  • `.kind` = "storage" の場合: "blob", "bool", "date", "image", "number", "object", または "string"。 数値型の場合 "number" が返されます (時間を含む)。UUID、文字およびテキスト型フィールドの場合 "string" が返されます。"blob" 属性は [BLOB オブジェクト](../Concepts/dt_blob.md#blob-の種類) です。
  • `.kind` = "relatedEntity" の場合: リレートされたデータクラス名
  • `.kind` = "relatedEntities" の場合: リレートされたデータクラス名 + "Selection" 接尾辞
  • `.kind` = "calculated" または "alias" の場合: 結果の値に応じて、上に同じ
  • | +| unique | Boolean | 属性値が重複不可の場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | :::tip @@ -148,7 +148,7 @@ var $firstnameAtt;$employerAtt;$employeesAtt : Object `.all()` 関数はデータストアをクエリして、 データクラスの全エンティティをエンティティセレクションとして返します。 -エンティティはデフォルトの順番で返され、通常は作成順になっています。 ただし、エンティティ削除後に新規追加した場合には、デフォルトの順番は作成順を反映しない点に留意が必要です。 +エンティティはデフォルトの順番で返され、通常は作成順になっています。 エンティティはデフォルトの順番で返され、通常は作成順になっています。 エンティティはデフォルトの順番で返され、通常は作成順になっています。 ただし、エンティティ削除後に新規追加した場合には、デフォルトの順番は作成順を反映しない点に留意が必要です。 エンティティが見つからない場合、空のエンティティセレクションが返されます。 @@ -156,7 +156,7 @@ var $firstnameAtt;$employerAtt;$employeesAtt : Object **settings** -任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: +任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: | プロパティ | 型 | 説明 | | ------- | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | @@ -258,40 +258,40 @@ $ds.Persons.clearRemoteCache() `.fromCollection()` 関数は、*objectCol* 引数のオブジェクトのコレクションに基づいてデータクラスのエンティティを更新あるいは作成し、対応するエンティティセレクションを返します。 -*objectCol* パラメーターには、データクラスの既存エンティティを更新、または新規エンティティを作成するためのオブジェクトのコレクションを渡します。 プロパティ名は、データクラスの属性名と同一である必要があります。 プロパティ名がデータクラスに存在しない場合、それは無視されます。 コレクション内で属性値が定義されていない場合、その値は null になります。 +*objectCol* パラメーターには、データクラスの既存エンティティを更新、または新規エンティティを作成するためのオブジェクトのコレクションを渡します。 プロパティ名は、データクラスの属性名と同一である必要があります。 プロパティ名がデータクラスに存在しない場合、それは無視されます。 コレクション内で属性値が定義されていない場合、その値は null になります。 プロパティ名は、データクラスの属性名と同一である必要があります。 プロパティ名がデータクラスに存在しない場合、それは無視されます。 コレクション内で属性値が定義されていない場合、その値は null になります。 プロパティ名は、データクラスの属性名と同一である必要があります。 プロパティ名がデータクラスに存在しない場合、それは無視されます。 コレクション内で属性値が定義されていない場合、その値は null になります。 プロパティ名は、データクラスの属性名と同一である必要があります。 プロパティ名がデータクラスに存在しない場合、それは無視されます。 コレクション内で属性値が定義されていない場合、その値は null になります。 -コレクションのオブジェクト要素とエンティティのマッピングは、**属性名** と **型の合致** をもって行われます。 オブジェクトプロパティがエンティティ属性と同じ名前であっても、型が合致しない場合には、エンティティの属性は空のままです。 +コレクションのオブジェクト要素とエンティティのマッピングは、**属性名** と **型の合致** をもって行われます。 オブジェクトプロパティがエンティティ属性と同じ名前であっても、型が合致しない場合には、エンティティの属性は空のままです。 オブジェクトプロパティがエンティティ属性と同じ名前であっても、型が合致しない場合には、エンティティの属性は空のままです。 オブジェクトプロパティがエンティティ属性と同じ名前であっても、型が合致しない場合には、エンティティの属性は空のままです。 **作成モードと更新モード** *objectCol* 引数の各オブジェクトついて: -- オブジェクトがブール型の "\_\*NEW" プロパティを含み、それが false に設定されている場合(あるいは "\*\_NEW" プロパティが含まれていない場合)、オブジェクトの対応する値でエンティティが更新あるいは作成されます。 プライマリーキーに関するチェックはおこなわれません: - - プライマリーキーが指定されていて実在する場合、エンティティは更新されます。 この場合、プライマリーキーはそのまま、あるいは "\_\_KEY" プロパティを (プライマリーキー値とともに) 使って指定することができます。 +- オブジェクトがブール型の "\_\*NEW" プロパティを含み、それが false に設定されている場合(あるいは "\*\_NEW" プロパティが含まれていない場合)、オブジェクトの対応する値でエンティティが更新あるいは作成されます。 プライマリーキーに関するチェックはおこなわれません: プライマリーキーに関するチェックはおこなわれません: プライマリーキーに関するチェックはおこなわれません: + - プライマリーキーが指定されていて実在する場合、エンティティは更新されます。 プライマリーキーが指定されていて実在する場合、エンティティは更新されます。 この場合、プライマリーキーはそのまま、あるいは "\_\*KEY" プロパティを (プライマリーキー値とともに) 使って指定することができます。 プライマリーキーが指定されていて実在する場合、エンティティは更新されます。 この場合、プライマリーキーはそのまま、あるいは "\*\_KEY" プロパティを (プライマリーキー値とともに) 使って指定することができます。 - そのまま指定したプライマリーキーが実在しない場合、エンティティは作成されます。 - プライマリーキーを指定していない場合、エンティティは作成され、標準のデータベースのルールに基づいてプライマリーキー値が割り当てられます。 -- オブジェクトがブール型の "\_\_NEW" プロパティを含み、それが **true** に設定されている場合、オブジェクトの対応する値でエンティティが作成されます。 プライマリーキーに関するチェックがおこなわれます: +- オブジェクトがブール型の "\_\_NEW" プロパティを含み、それが **true** に設定されている場合、オブジェクトの対応する値でエンティティが作成されます。 プライマリーキーに関するチェックがおこなわれます: プライマリーキーに関するチェックがおこなわれます: プライマリーキーに関するチェックがおこなわれます: プライマリーキーに関するチェックがおこなわれます: - そのまま指定したプライマリーキーが実在する場合、エラーが返されます。 - そのまま指定したプライマリーキーが実在しない場合、エンティティは作成されます。 - プライマリーキーを指定していない場合、エンティティは作成され、標準のデータベースのルールに基づいてプライマリーキー値が割り当てられます。 -> 値を持つ "\_\*KEY" プロパティは、"\*\*NEW" プロパティが **false** に設定 (あるいは省略) されていて、かつ対応するエンティティが存在する場合のみ、考慮されます。 それ以外の場合には、"\*\_KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 +> 値を持つ "\_\*KEY" プロパティは、"\*\*NEW" プロパティが **false** に設定 (あるいは省略) されていて、かつ対応するエンティティが存在する場合のみ、考慮されます。 それ以外の場合には、"\*\*KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 値を持つ "\*\*KEY" プロパティは、"\*\*NEW" プロパティが **false** に設定 (あるいは省略) されていて、かつ対応するエンティティが存在する場合のみ、考慮されます。 それ以外の場合には、"\*\*KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 それ以外の場合には、"\*\*KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 値を持つ "\*\*KEY" プロパティは、"\*\*NEW" プロパティが **false** に設定 (あるいは省略) されていて、かつ対応するエンティティが存在する場合のみ、考慮されます。 それ以外の場合には、"\*\*KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 それ以外の場合には、"\*\_KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 **リレートエンティティズ** (複数) *objectCol* 引数のオブジェクトは、一つ以上のリレートエンティティに対応するオブジェクトをネストすることができます。これはエンティティ間のリンクを作成・更新するのに有用です。 -リレートエンティティに相当するネストされたオブジェクトは、リレートエンティティのプライマリーキー値を格納した "\_\*KEY" プロパティあるいはプライマリーキー属性を格納している必要があります。 ”\*\_KEY” プロパティを使用すると、プライマリーキー属性名に依存する必要がありません。 +リレートエンティティに相当するネストされたオブジェクトは、リレートエンティティのプライマリーキー値を格納した "\_\*KEY" プロパティあるいはプライマリーキー属性を格納している必要があります。 ”\*\*KEY” プロパティを使用すると、プライマリーキー属性名に依存する必要がありません。 ”\*\*KEY” プロパティを使用すると、プライマリーキー属性名に依存する必要がありません。 ”\*\_KEY” プロパティを使用すると、プライマリーキー属性名に依存する必要がありません。 > この機構によって、リレートエンティティの中身を作成・更新することはできません。 **スタンプ** -"\_\_STAMP" プロパティが指定された場合、データストアのスタンプとのチェックがおこなわれ、エラーが返されることがあります ("与えられたスタンプはテーブルXXX のレコード# XXのカレントのものと合致しません")。 詳細については [エンティティロッキング](ORDA/entities.md#エンティティロッキング) を参照ください。 +"\_\_STAMP" プロパティが指定された場合、データストアのスタンプとのチェックがおこなわれ、エラーが返されることがあります ("与えられたスタンプはテーブルXXX のレコード# XXのカレントのものと合致しません")。 詳細については [エンティティロッキング](ORDA/entities.md#エンティティロッキング) を参照ください。 詳細については [エンティティロッキング](ORDA/entities.md#エンティティロッキング) を参照ください。 詳細については [エンティティロッキング](ORDA/entities.md#エンティティロッキング) を参照ください。 **settings** -任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: +任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: | プロパティ | 型 | 説明 | | ------- | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | @@ -319,7 +319,7 @@ $ds.Persons.clearRemoteCache() #### 例題 2 -既存のエンティティを更新します。 \_\*NEW プロパティはなく、従業員のプライマリーキーは \*\_KEY プロパティに実在の値を指定して渡します: +既存のエンティティを更新します。 既存のエンティティを更新します。 \_\*NEW プロパティはなく、従業員のプライマリーキーは \*\_KEY プロパティに実在の値を指定して渡します: ```4d var $empsCollection : Collection @@ -356,7 +356,7 @@ $ds.Persons.clearRemoteCache() #### 例題 4 -新規エンティティを作成します。 \_\_NEW プロパティは true で、従業員のプライマリーキーは指定しません: +新規エンティティを作成します。 新規エンティティを作成します。 \_\_NEW プロパティは true で、従業員のプライマリーキーは指定しません: ```4d var $empsCollection : Collection @@ -381,7 +381,7 @@ $ds.Persons.clearRemoteCache() #### 例題 5 -新規エンティティを作成します。 \_\_NEW プロパティはなく、従業員のプライマリーキー属性を指定しますが、その値は実在しません: +新規エンティティを作成します。 既存のエンティティを更新します。 \_\_NEW プロパティはなく、従業員のプライマリーキーは属性に実在の値を指定して渡します: ```4d var $empsCollection : Collection @@ -459,7 +459,7 @@ $ds.Persons.clearRemoteCache() `.get()` 関数はデータクラスをクエリして、*primaryKey* に渡したプライマリーキーに合致するエンティティを返します。 -*primaryKey* には、取得したいエンティティのプライマリーキーの値を渡します。 値の型は、データストアで設定されたプライマリーキーの型 (倍長整数あるいはテキスト) と合致している必要があります。 [`.getKey()`](EntityClass.md#getkey) 関数に `dk key as string` 引数を渡すと、プライマリーキーの値が常にテキスト型で返されるように指定することができます。 +*primaryKey* には、取得したいエンティティのプライマリーキーの値を渡します。 値の型は、データストアで設定されたプライマリーキーの型 (倍長整数あるいはテキスト) と合致している必要があります。 *primaryKey* には、取得したいエンティティのプライマリーキーの値を渡します。 値の型は、データストアで設定されたプライマリーキーの型 (倍長整数あるいはテキスト) と合致している必要があります。 [`.getKey()`](EntityClass.md#getkey) 関数に `dk key as string` 引数を渡すと、プライマリーキーの値が常にテキスト型で返されるように指定することができます。 値の型は、データストアで設定されたプライマリーキーの型 (倍長整数あるいはテキスト) と合致している必要があります。 *primaryKey* には、取得したいエンティティのプライマリーキーの値を渡します。 値の型は、データストアで設定されたプライマリーキーの型 (倍長整数あるいはテキスト) と合致している必要があります。 [`.getKey()`](EntityClass.md#getkey) 関数に `dk key as string` 引数を渡すと、プライマリーキーの値が常にテキスト型で返されるように指定することができます。 *primaryKey* 引数のプライマリーキーを持つエンティティが見つからない場合、**Null** エンティティが返されます。 @@ -467,7 +467,7 @@ $ds.Persons.clearRemoteCache() **settings** -任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: +任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: | プロパティ | 型 | 説明 | | ------- | ---- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | @@ -475,7 +475,7 @@ $ds.Persons.clearRemoteCache() :::info -*settings* パラメーター**なし**で `.get()` 関数を呼び出すと、属性値のリクエストが直接サーバーに送信されます ([ORDAキャッシュ](../ORDA/client-server-optimization.md#ordaキャッシュ) は使用されません)。 一方、*settings* パラメーターを介して `context` を渡す形で `.get()` 関数を呼び出すと、コンテキストに対応する ORDAキャッシュから属性値が取得されます。 この場合、[`reload()`](EntityClass.md#reload) を呼び出して、最新のデータがサーバーから取得されていることを確認することをお勧めします。 +*settings* パラメーター**なし**で `.get()` 関数を呼び出すと、属性値のリクエストが直接サーバーに送信されます ([ORDAキャッシュ](../ORDA/client-server-optimization.md#ordaキャッシュ) は使用されません)。 一方、*settings* パラメーターを介して `context` を渡す形で `.get()` 関数を呼び出すと、コンテキストに対応する ORDAキャッシュから属性値が取得されます。 この場合、[`reload()`](EntityClass.md#reload) を呼び出して、最新のデータがサーバーから取得されていることを確認することをお勧めします。 一方、*settings* パラメーターを介して `context` を渡す形で `.get()` 関数を呼び出すと、コンテキストに対応する ORDAキャッシュから属性値が取得されます。 この場合、[`reload()`](EntityClass.md#reload) を呼び出して、最新のデータがサーバーから取得されていることを確認することをお勧めします。 一方、*settings* パラメーターを介して `context` を渡す形で `.get()` 関数を呼び出すと、コンテキストに対応する ORDAキャッシュから属性値が取得されます。 この場合、[`reload()`](EntityClass.md#reload) を呼び出して、最新のデータがサーバーから取得されていることを確認することをお勧めします。 一方、*settings* パラメーターを介して `context` を渡す形で `.get()` 関数を呼び出すと、コンテキストに対応する ORDAキャッシュから属性値が取得されます。 この場合、[`reload()`](EntityClass.md#reload) を呼び出して、最新のデータがサーバーから取得されていることを確認することをお勧めします。 ::: @@ -635,7 +635,7 @@ $number:=$ds.Persons.getCount() #### 説明 -`.getInfo()` 関数は、 データクラスの情報を提供するオブジェクトを返します。 このメソッドは汎用的なコードを書くのに有用です。 +`.getInfo()` 関数は、 データクラスの情報を提供するオブジェクトを返します。 このメソッドは汎用的なコードを書くのに有用です。 このメソッドは汎用的なコードを書くのに有用です。 このメソッドは汎用的なコードを書くのに有用です。 このメソッドは汎用的なコードを書くのに有用です。 **返されるオブジェクト** @@ -706,7 +706,7 @@ $number:=$ds.Persons.getCount() -> **上級者向け:** この機能は、特定の構成のため、ORDAのデフォルト機能をカスタマイズする必要がある開発者向けです。 ほとんどの場合、使用する必要はないでしょう。 +> **上級者向け:** この機能は、特定の構成のため、ORDAのデフォルト機能をカスタマイズする必要がある開発者向けです。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 #### 説明 @@ -744,11 +744,11 @@ $number:=$ds.Persons.getCount() #### 例題 -次の例で、`$ds.Persons.all()` は、先頭エンティティをそのすべての属性とともにロードします。 その後リクエストの最適化がおこなわれ、`firstname` と `address.city` のみがロードされます。 +次の例で、`$ds.Persons.all()` は、先頭エンティティをそのすべての属性とともにロードします。 その後リクエストの最適化がおこなわれ、`firstname` と `address.city` のみがロードされます。 その後リクエストの最適化がおこなわれ、`firstname` と `address.city` のみがロードされます。 その後リクエストの最適化がおこなわれ、`firstname` と `address.city` のみがロードされます。 `address.city` は、`Persons` データクラスのキャッシュにロードされることに注意してください。 -`Address` データクラスの先頭エンティティだけがキャッシュに格納されます。 先頭エンティティは、ループの最初の繰り返しでロードされます。 +`Address` データクラスの先頭エンティティだけがキャッシュに格納されます。 先頭エンティティは、ループの最初の繰り返しでロードされます。 先頭エンティティは、ループの最初の繰り返しでロードされます。 先頭エンティティは、ループの最初の繰り返しでロードされます。 先頭エンティティは、ループの最初の繰り返しでロードされます。 ```4d var $ds : 4D.DataStoreImplementation @@ -800,7 +800,7 @@ $cacheAddress:=$ds.Adress.getRemoteCache() `.new()` 関数は、メモリ内にデータクラスに空のエンティティを新規作成しそれを返します。 -エンティティオブジェクトはメモリ内に作成されますが、[`.save( )`](EntityClass.md#save) 関数が呼び出されるまでデータベースには保存されません。 エンティティを保存する前に削除した場合、復元することはできません。 +エンティティオブジェクトはメモリ内に作成されますが、[`.save( )`](EntityClass.md#save) 関数が呼び出されるまでデータベースには保存されません。 エンティティを保存する前に削除した場合、復元することはできません。 エンティティを保存する前に削除した場合、復元することはできません。 エンティティを保存する前に削除した場合、復元することはできません。 エンティティを保存する前に削除した場合、復元することはできません。 **4D Server**: クライアント/サーバーにおいては、対応するテーブルのプライマリーキーが自動インクリメントであった場合、エンティティがサーバー側に保存されたときに計算されます。 @@ -850,9 +850,9 @@ $cacheAddress:=$ds.Adress.getRemoteCache() > 追加可能なエンティティセレクションについての詳細は [共有可能/追加可能なエンティティセレクション](ORDA/entities.md#共有可能追加可能なエンティティセレクション) を参照ください。 -順列ありのエンティティセレクションを作成するには、*keepOrder* に `dk keep ordered` セレクターを渡します。 この引数を省略した場合のデフォルト、あるいは `dk non ordered` セレクターを渡した場合には、関数は順列なしのエンティティセレクションを返します。 順列なしのエンティティセレクションの方が速いですが、エンティティの位置に頼ることはできません。 詳細については、[エンティティセレクションの順列あり/順列なし](ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) を参照ください。 +順列ありのエンティティセレクションを作成するには、*keepOrder* に `dk keep ordered` セレクターを渡します。 この引数を省略した場合のデフォルト、あるいは `dk non ordered` セレクターを渡した場合には、関数は順列なしのエンティティセレクションを返します。 順列なしのエンティティセレクションの方が速いですが、エンティティの位置に頼ることはできません。 詳細については、[エンティティセレクションの順列あり/順列なし](ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) を参照ください。 この引数を省略した場合のデフォルト、あるいは `dk non ordered` セレクターを渡した場合には、関数は順列なしのエンティティセレクションを返します。 順列なしのエンティティセレクションの方が速いですが、エンティティの位置に頼ることはできません。 詳細については、[エンティティセレクションの順列あり/順列なし](ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) を参照ください。 -作成された時点では、エンティティセレクションにエンティティは含まれていません(`mySelection.length` は0を返します)。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 +作成された時点では、エンティティセレクションにエンティティは含まれていません(`mySelection.length` は0を返します)。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 作成された時点では、エンティティセレクションにエンティティは含まれていません(`mySelection.length` は0を返します)。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 作成された時点では、エンティティセレクションにエンティティは含まれていません(`mySelection.length` は0を返します)。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 #### 例題 @@ -886,7 +886,7 @@ $cacheAddress:=$ds.Adress.getRemoteCache() | ------------- | ---------------------------------- | --------------------------- | ---------------------------------------------------------------------------------------------------- | | queryString | Text | -> | 検索条件 (文字列) | | formula | Object | -> | 検索条件 (フォーミュラオブジェクト) | -| value | any | -> | プレースホルダー用の値 | +| value | any | -> | 定数値 (プレースホルダーを使用しない) | | querySettings | Object | -> | クエリオプション: parameters, attributes, args, allowFormulas, context, queryPath, queryPlan | | 戻り値 | 4D.EntitySelection | <- | *queryString* または *formula* に渡した検索条件に合致するエンティティから構成された新しいエンティティセレクション | @@ -894,7 +894,7 @@ $cacheAddress:=$ds.Adress.getRemoteCache() #### 説明 -`.query()` 関数は、データクラスの全エンティティから、*queryString* または *formula* と任意の *value* 引数で指定した検索条件に合致するエンティティを検索します。 戻り値は、見つかったエンティティをすべて格納する `EntitySelection` 型の新しいオブジェクトです。 この関数には、レイジーローディングが適用されます。 +`.query()` 関数は、データクラスの全エンティティから、*queryString* または *formula* と任意の *value* 引数で指定した検索条件に合致するエンティティを検索します。 戻り値は、見つかったエンティティをすべて格納する `EntitySelection` 型の新しいオブジェクトです。 この関数には、レイジーローディングが適用されます。 この関数には、レイジーローディングが適用されます。 この関数には、レイジーローディングが適用されます。 この関数には、レイジーローディングが適用されます。 エンティティが見つからない場合、空のエンティティセレクションが返されます。 @@ -910,40 +910,40 @@ attributePath|formula 比較演算子 値 詳細は以下の通りです: -- **attributePath**: クエリの実行対象となる属性パス。 この引数は、単純な名前 ("country" など) のほか、あらゆる有効な属性パス ("country.name" など) の形をとることができます。 属性パスが `Collection` 型である場合、すべてのオカレンスを管理するには `[]` 記法を使用してください (例: `children[].age` など)。 +- **attributePath**: クエリの実行対象となる属性パス。 この引数は、単純な名前 ("country" など) のほか、あらゆる有効な属性パス ("country.name" など) の形をとることができます。 属性パスが `Collection` 型である場合、すべてのオカレンスを管理するには `[]` 記法を使用してください (例: `children[].age` など)。 この引数は、単純な名前 ("country" など) のほか、あらゆる有効な属性パス ("country.name" など) の形をとることができます。 属性パスが `Collection` 型である場合、すべてのオカレンスを管理するには `[]` 記法を使用してください (例: `children[].age` など)。 この引数は、単純な名前 ("country" など) のほか、あらゆる有効な属性パス ("country.name" など) の形をとることができます。 属性パスが `Collection` 型である場合、すべてのオカレンスを管理するには `[]` 記法を使用してください (例: `children[].age` など)。 > *".", "\[ ]", や "=", ">", "#"..., などの特殊文字はクエリ文字列の中で正しく評価されないため、これらが含まれた属性名を直接使用することはできません。 このような属性をクエリするには、プレースホルダーの使用を検討します。これにより、属性パス内で使用できる文字の範囲が広がります (後述の* **プレースホルダーの使用** *参照)。* - **formula**: テキストまたはオブジェクト形式で渡された有効なフォーミュラ。 フォーミュラは処理されるエンティティごとに評価され、ブール値を返さなくてはなりません。 処理中のエンティティはフォーミュラ内において `This` で参照されます。 - **テキスト**: フォーミュラ文字列の前に `eval()` ステートメントが必要です。これにより、クエリが式を正しく解釈します。 例: *"eval(length(This.lastname) >=30)"* - - **オブジェクト**: [フォーミュラオブジェクト](FunctionClass.md) は **プレースホルダー** (後述参照) を使って受け渡します。 このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 + - **オブジェクト**: [フォーミュラオブジェクト](FunctionClass.md) は **プレースホルダー** (後述参照) を使って受け渡します。 このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 この場合において: このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 この場合において: このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 この場合において: > * 4Dフォーミュラは、`&` および `|` 記号のみを論理演算子としてサポートすることに留意が必要です。 > * フォーミュラ以外にも検索条件がある場合、クエリエンジンの最適化によってほかの検索条件 (たとえばインデックス属性) の処理が優先される場合があり、その場合はエンティティのサブセットのみがフォーミュラの評価対象となります。 クエリに使用するフォーミュラは $1 に引数を受け取ることができます。 詳細については後述の **フォーミュラ引数** を参照ください。 -> - フォーミュラが複雑な場合など、`queryString` パラメーターを使わずに、`formula` パラメーターにオブジェクトを直接渡すこともできます。 後述の **フォーミュラ引数** を参照ください。 -> - セキュリティのため、 `query()` 関数内のフォーミュラ使用を禁止することができます。 `querySettings` パラメーターの説明を参照ください。 - -- **比較演算子**: *attributePath* 引数と *value* 引数の比較に使用する記号 以下の記号がサポートされます: - -| 比較 | 記号 | 説明 | -| ------------- | --------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -| 等しい | =, == | 一致するデータを取得します。ワイルドカード (@) をサポートし、文字の大小/アクセントの有無は区別しません。 | -| | ===, IS | 一致するデータを取得します。ワイルドカード (@) は標準の文字として認識され、文字の大小/アクセント記号の有無は区別しません。 | -| 等しくない | #, != | ワイルドカード (@) をサポートします。 "宣言に Not 条件を適用" と同じです ([後述参照](#コレクションにおける-等しくない)) | -| | !==, IS NOT | ワイルドカード (@) は標準の文字として認識されます | -| 宣言に Not 条件を適用 | NOT | 複数の演算子が含まれる宣言の前に NOT を使用する場合にはカッコをつける必要があります。 "等しくない" と同じです ([後述参照](#コレクションにおける-等しくない)) | -| 小さい | < | | -| 大きい | > | | -| 以下 | <= | | -| 以上 | > = | | -| 含まれる | IN | コレクション、あるいは複数の値のうち、どれか一つの値と等しいデータを取得します。ワイルドカード (@) をサポートします。 | -| キーワードを含む | % | キーワードは、文字列あるいはピクチャー型の属性内で使用されるものが対象です。 | - -- **値** (value): エンティティコレクションの各エンティティの属性のカレント値に対して比較する値。 **プレースホルダー** (後述の **プレースホルダーの使用** 参照) か、あるいはデータ型プロパティと同じ型の式を使用することができます。 Note that, in case of type mismatch with scalar types (text, date, number...), 4D will try to convert the **value** type to the attribute data type whenever possible, for an easier handling of values coming from the Internet. For example, if the string "v20" is entered as **value** to compare with an integer attribute, it will be converted to 20. +> - フォーミュラが複雑な場合など、`queryString` パラメーターを使わずに、`formula` パラメーターにオブジェクトを直接渡すこともできます。 後述の **フォーミュラ引数** を参照ください。 後述の **フォーミュラ引数** を参照ください。 後述の **フォーミュラ引数** を参照ください。 後述の **フォーミュラ引数** を参照ください。 +> - セキュリティのため、 `query()` 関数内のフォーミュラ使用を禁止することができます。 `querySettings` パラメーターの説明を参照ください。 `querySettings` パラメーターの説明を参照ください。 + +- **比較演算子**: *attributePath* 引数と *value* 引数の比較に使用する記号 以下の記号がサポートされます: 以下の記号がサポートされます: 以下の記号がサポートされます: 以下の記号がサポートされます: + +| 比較 | 記号 | 説明 | +| ------------- | --------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 等しい | =, == | 一致するデータを取得します。ワイルドカード (@) をサポートし、文字の大小/アクセントの有無は区別しません。 | +| | ===, IS | 一致するデータを取得します。ワイルドカード (@) は標準の文字として認識され、文字の大小/アクセント記号の有無は区別しません。 | +| 等しくない | #, != | ワイルドカード (@) をサポートします。 ワイルドカード (@) をサポートします。 "宣言に Not 条件を適用" と同じです ([後述参照](#コレクションにおける-等しくない)) | +| | !==, IS NOT | ワイルドカード (@) は標準の文字として認識されます | +| 宣言に Not 条件を適用 | NOT | 複数の演算子が含まれる宣言の前に NOT を使用する場合にはカッコをつける必要があります。 "等しくない" と同じです ([後述参照](#コレクションにおける-等しくない)) | +| 小さい | < | | +| 大きい | > | | +| 以上 | <= | | +| 以上 | > = | | +| 含まれる | IN | コレクション、あるいは複数の値のうち、どれか一つの値と等しいデータを取得します。ワイルドカード (@) をサポートします。 | +| キーワードを含む | % | キーワードは、文字列あるいはピクチャー型の属性内で使用されるものが対象です。 | + +- **値** (value): エンティティコレクションの各エンティティの属性のカレント値に対して比較する値。 **プレースホルダー** (後述の **プレースホルダーの使用** 参照) か、あるいはデータ型プロパティと同じ型の式を使用することができます。 **値** (value): エンティティコレクションの各エンティティの属性のカレント値に対して比較する値。 **プレースホルダー** (後述の **プレースホルダーの使用** 参照) か、あるいはデータ型プロパティと同じ型の式を使用することができます。 Note that, in case of type mismatch with scalar types (text, date, number...), 4D will try to convert the **value** type to the attribute data type whenever possible, for an easier handling of values coming from the Internet. For example, if the string "v20" is entered as **value** to compare with an integer attribute, it will be converted to 20. 定数値を使用する場合、以下の原則に従う必要があります: - **テキスト** テキスト型の定数値の場合は単一引用符つき、あるいはなしでも渡すことができます(後述の **引用符を使用する** 参照)。 文字列中の文字列を検索する ("含まれる" クエリ) には、ワイルドカード記号 (@) を使用して検索文字列を指定します (例: "@Smith@")。 また以下のキーワードはテキスト定数においては使用できません: true, false。 - **ブール** 型の定数値: **true** または **false** (文字の大小を区別します) @@ -951,30 +951,30 @@ attributePath|formula 比較演算子 値 - **日付** 型の定数値: "YYYY-MM-DD" フォーマット。 - **null** 定数値: "null" キーワードを使用した場合、**null** と **undefined** プロパティの両方が検索されます。 - IN 記号を使用したクエリの場合、*値* はコレクションか、attributePath の型に合致する、\[ ] でくくられたカンマ区切りの値である必要があります (文字列においては、`"` の記号は `\` でエスケープする必要があります)。 -- **論理演算子**: 複数の条件をクエリ内で結合させるのに使用します(任意)。 以下の論理演算子のいずれか一つを使用できます (名前あるいは記号のどちらかを渡します): +- **論理演算子**: 複数の条件をクエリ内で結合させるのに使用します(任意)。 **論理演算子**: 複数の条件をクエリ内で結合させるのに使用します(任意)。 以下の論理演算子のいずれか一つを使用できます (名前あるいは記号のどちらかを渡します): | 結合 | 記号 | | --- | ---------------------------------------------------------------------- | | AND | &, &&, and | | OR | \|,\|\|, or | -- **order by attributePath**: クエリに "order by attributePath" ステートメントを追加することで、結果をソートすることができます。 カンマで区切ることで、複数の order by ステートメントを使用することもできます (例: order by *attributePath1* desc, *attributePath2* asc)。 デフォルトの並び順は昇順です。 並び順を指定するには、降順の場合は 'desc'、昇順の場合は 'asc' を追加します。 +- **order by attributePath**: クエリに "order by attributePath" ステートメントを追加することで、結果をソートすることができます。 カンマで区切ることで、複数の order by ステートメントを使用することもできます (例: order by *attributePath1* desc, *attributePath2* asc)。 デフォルトの並び順は昇順です。 並び順を指定するには、降順の場合は 'desc'、昇順の場合は 'asc' を追加します。 カンマで区切ることで、複数の order by ステートメントを使用することもできます (例: order by *attributePath1* desc, *attributePath2* asc)。 デフォルトの並び順は昇順です。 並び順を指定するには、降順の場合は 'desc'、昇順の場合は 'asc' を追加します。 カンマで区切ることで、複数の order by ステートメントを使用することもできます (例: order by *attributePath1* desc, *attributePath2* asc)。 デフォルトの並び順は昇順です。 並び順を指定するには、降順の場合は 'desc'、昇順の場合は 'asc' を追加します。 カンマで区切ることで、複数の order by ステートメントを使用することもできます (例: order by *attributePath1* desc, *attributePath2* asc)。 デフォルトの並び順は昇順です。 並び順を指定するには、降順の場合は 'desc'、昇順の場合は 'asc' を追加します。 > このステートメントを使用した場合、順序ありエンティティセレクションが返されます (詳細については [エンティティセレクションの順列あり/順列なし](../ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) を参照ください)。 #### 引用符を使用する -クエリ内で引用符を使用する場合、クエリ内においては単一引用符 ' ' を使用し、クエリ全体をくくるには二重引用符 " " を使用します。クオートを混同するとエラーが返されます。 例: +クエリ内で引用符を使用する場合、クエリ内においては単一引用符 ' ' を使用し、クエリ全体をくくるには二重引用符 " " を使用します。クオートを混同するとエラーが返されます。 例: 例: 例: 例: ```4d "employee.name = 'smith' AND employee.firstname = 'john'" ``` -> 単一引用符 (') は、クエリ文字列を分解してしまうため、検索値としてはサポートされていません。 たとえば、"comp.name = 'John's pizza' " はエラーを生成します。 単一引用符を含む値を検索するには、プレースホルダーを使用します (後述参照)。 +> 単一引用符 (') は、クエリ文字列を分解してしまうため、検索値としてはサポートされていません。 たとえば、"comp.name = 'John's pizza' " はエラーを生成します。 単一引用符を含む値を検索するには、プレースホルダーを使用します (後述参照)。 たとえば、"comp.name = 'John's pizza' " はエラーを生成します。 単一引用符を含む値を検索するには、プレースホルダーを使用します (後述参照)。 たとえば、"comp.name = 'John's pizza' " はエラーを生成します。 単一引用符を含む値を検索するには、プレースホルダーを使用します (後述参照)。 たとえば、"comp.name = 'John's pizza' " はエラーを生成します。 単一引用符を含む値を検索するには、プレースホルダーを使用します (後述参照)。 #### カッコを使用する -クエリ内でカッコを使用すると、計算に優先順位をつけることができます。 たとえば、以下のようにクエリを整理することができます: +クエリ内でカッコを使用すると、計算に優先順位をつけることができます。 たとえば、以下のようにクエリを整理することができます: たとえば、以下のようにクエリを整理することができます: たとえば、以下のようにクエリを整理することができます: ```4d "(employee.age >= 30 OR employee.age <= 65) AND (employee.salary <= 10000 OR employee.status = 'Manager')" @@ -986,26 +986,26 @@ attributePath|formula 比較演算子 値 プレースホルダーには二つの種類があります。**インデックスプレースホルダー** および **命名プレースホルダー** です: -| | インデックスプレースホルダー | 命名プレースホルダー | -| -- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| 定義 | *queryString* に `:paramIndex` (例 :1, :2...) という形式でパラメーターが挿入され、それに対応する値は後に続く *value* 引数が提供します。 最大で 128個の *value* 引数を渡すことができます。 | `:paramName` (例: myparam など) という形でパラメーターが挿入され、その値は *querySettings* 引数の attributes または parameters オブジェクトで提供されます。 | -| 例題 | `$r:=class.query(":1=:2";"city";"Chicago")` | `$o.attributes:=New object("att";"city")`
    `$o.parameters:=New object("name";"Chicago")`
    `$r:=class.query(":att=:name";$o)` | +| | インデックスプレースホルダー | 命名プレースホルダー | +| -- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| 定義 | *queryString* に `:paramIndex` (例 :1, :2...) という形式でパラメーターが挿入され、それに対応する値は後に続く *value* 引数が提供します。 という形式でパラメーターが挿入され、それに対応する値は後に続く *value* 引数が提供します。 最大で 128個の *value* 引数を渡すことができます。 | `:paramName` (例: myparam など) という形でパラメーターが挿入され、その値は *querySettings* 引数の attributes または parameters オブジェクトで提供されます。 | +| 例題 | `$r:=class.query(":1=:2";"city";"Chicago")` | `$o.attributes:=New object("att";"city")`
    `$o.parameters:=New object("name";"Chicago")`
    `$r:=class.query(":att=:name";$o)` | -*queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* 引数は、*attributePath* と *formula* と *値* に以下のものを含めることができます: +*queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* 引数は、*attributePath* と *formula* と *値* に以下のものを含めることができます: *queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* 引数は、*attributePath* と *formula* と *値* に以下のものを含めることができます: - 定数値 (プレースホルダーを使用しない) - インデックスプレースホルダーや命名プレースホルダー 以下の理由から、クエリでのプレースホルダーの使用が **推奨されます**: -1. 悪意あるコードの挿入を防ぎます: ユーザーによって値が代入された変数をクエリ文字列として直接使用した場合、余計なクエリ引数を入力することでユーザーがクエリ条件を変更する可能性があります。 たとえば、以下のようなクエリ文字列を考えます: +1. 悪意あるコードの挿入を防ぎます: ユーザーによって値が代入された変数をクエリ文字列として直接使用した場合、余計なクエリ引数を入力することでユーザーがクエリ条件を変更する可能性があります。 たとえば、以下のようなクエリ文字列を考えます: たとえば、以下のようなクエリ文字列を考えます: たとえば、以下のようなクエリ文字列を考えます: たとえば、以下のようなクエリ文字列を考えます: ```4d $vquery:="status = 'public' & name = "+myname // ユーザーが自分の名前を入力します $result:=$col.query($vquery) ``` -非公開のデータがフィルタリングされているため、このクエリは一見安全なように見えます。 しかしながら、もしユーザーが *myname* に *smith OR status='private'* のような入力をした場合、クエリ文字列は解釈時に変更され、非公開データも返してしまう可能性があります。 +非公開のデータがフィルタリングされているため、このクエリは一見安全なように見えます。 非公開のデータがフィルタリングされているため、このクエリは一見安全なように見えます。 しかしながら、もしユーザーが *myname* に *smith OR status='private'* のような入力をした場合、クエリ文字列は解釈時に変更され、非公開データも返してしまう可能性があります。 プレースホルダーを使用した場合、セキュリティ条件を上書きすることは不可能です: @@ -1013,11 +1013,11 @@ attributePath|formula 比較演算子 値 $result:=$col.query("status='public' & name=:1";myname) ``` -この場合、ユーザーが *myname* エリアに *smith OR status='private'* と入力した場合でも、それはクエリ文字列とはみなされず、値として渡されるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 +この場合、ユーザーが *myname* エリアに *smith OR status='private'* と入力した場合でも、それはクエリ文字列とはみなされず、値として渡されるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 この場合、ユーザーが *myname* エリアに *smith OR status='private'* と入力した場合でも、それはクエリ文字列とはみなされず、値として渡されるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 2. フォーマットや文字の問題を心配する必要がありません。これは、*attributePath* や *値* がたとえば "."、"[' ...などの英数字でない文字を格納している可能性がある場合にとくに有用です。 -3. クエリに変数や式を使用することができます。 例: +3. クエリに変数や式を使用することができます。 例: 例: 例: 例: ```4d $result:=$col.query("address.city = :1 & name =:2";$city;$myVar+"@") @@ -1026,21 +1026,35 @@ $result2:=$col.query("company.name = :1";"John's Pizzas") #### null値を検索する -null値を検索する場合、プレースホルダーシンタックスは使用できません。 なぜならクエリエンジンは null を予期せぬ比較値としてみなすからです。 たとえば、以下のクエリを実行した場合: +null値を検索する場合、プレースホルダーシンタックスは使用できません。 なぜならクエリエンジンは null を予期せぬ比較値としてみなすからです。 たとえば、以下のクエリを実行した場合: たとえば、以下のクエリを実行した場合: たとえば、以下のクエリを実行した場合: たとえば、以下のクエリを実行した場合: ```4d $vSingles:=ds.Person.query("spouse = :1";Null) // 機能しません ``` -この場合 4D は null値を、引数の評価 (別のクエリから渡された属性など) に起因するエラーと解釈するため、期待した結果は得られません。 このようなクエリをおこなうには、直接的なシンタックスを使用する必要があります: +この場合 4D は null値を、引数の評価 (別のクエリから渡された属性など) に起因するエラーと解釈するため、期待した結果は得られません。 このようなクエリをおこなうには、直接的なシンタックスを使用する必要があります: このようなクエリをおこなうには、直接的なシンタックスを使用する必要があります: このようなクエリをおこなうには、直接的なシンタックスを使用する必要があります: このようなクエリをおこなうには、直接的なシンタックスを使用する必要があります: ```4d $vSingles:=ds.Person.query("spouse = null") // 正しいシンタックス ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### コレクションにおける "等しくない" -コレクションを含むデータクラス属性内を検索する場合、"*値* と等しくない" 比較演算子 (`#` または `!=`) は、すべてのプロパティが *値* と異なる要素を検索します (ほかの比較演算子とは異なり、少なくとも 1つのプロパティが *値* と異なる要素は検索しません)。 つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: +コレクションを含むデータクラス属性内を検索する場合、"*値* と等しくない" 比較演算子 (`#` または `!=`) は、すべてのプロパティが *値* と異なる要素を検索します (ほかの比較演算子とは異なり、少なくとも 1つのプロパティが *値* と異なる要素は検索しません)。 つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: ``` エンティティ1: @@ -1119,7 +1133,7 @@ ds.People.places: } ] } ``` -"locations" 属性に、"kind=home" かつ "city=paris" である要素を持つ人を探したいとします。 以下のように書いた場合: +"locations" 属性に、"kind=home" かつ "city=paris" である要素を持つ人を探したいとします。 以下のように書いた場合: 以下のように書いた場合: 以下のように書いた場合: 以下のように書いた場合: ```4d ds.People.query("places.locations[].kind= :1 and places.locations[].city= :2";"home";"paris") @@ -1138,7 +1152,7 @@ ds.People.query("places.locations[].kind= :1 and places.locations[].city= :2";"h ds.People.query("places.locations[a].kind= :1 and places.locations[a].city= :2";"home";"paris") ``` -... クエリは、"kind=home" かつ "city=paris" である "locations" 要素を持つエンティティ "martin" のみを返します。 "home" と "paris" が同じコレクション要素内にない "smith" は、クエリの結果に含まれません。 +... クエリは、"kind=home" かつ "city=paris" である "locations" 要素を持つエンティティ "martin" のみを返します。 "home" と "paris" が同じコレクション要素内にない "smith" は、クエリの結果に含まれません。 "home" と "paris" が同じコレクション要素内にない "smith" は、クエリの結果に含まれません。 "home" と "paris" が同じコレクション要素内にない "smith" は、クエリの結果に含まれません。 "home" と "paris" が同じコレクション要素内にない "smith" は、クエリの結果に含まれません。 #### N対Nリレーションのクエリ @@ -1146,7 +1160,7 @@ ORDA は、N対Nリレーションにおけるクエリを容易にするため ![alt-text](../assets/en/API/manytomany.png) -俳優 A と俳優 B の *両方* が出演している映画をすべて検索したいとします。 `AND` 演算子を使った単純なクエリを書いても、うまくいきません: +俳優 A と俳優 B の *両方* が出演している映画をすべて検索したいとします。 `AND` 演算子を使った単純なクエリを書いても、うまくいきません: `AND` 演算子を使った単純なクエリを書いても、うまくいきません: ```4d // 無効なコード @@ -1176,13 +1190,13 @@ $es:=ds.Movie.query("roles.actor.lastName = :1 AND roles.actor{2}.lastName = :2" *queryString* 引数にフォーミュラを挿入 (上記参照) する代わりに、formula オブジェクトをブール検索条件として直接渡すことができます。 トークナイズの利点を生かせる、コードが検索しやすく読みやすい、などといった面から、クエリにおけるフォーミュラオブジェクトの使用は **推奨されています**。 -このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 この場合において: +このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 この場合において: この場合において: この場合において: - フォーミュラは処理されるエンティティごとに評価され、true または false を返さなくてはなりません。 クエリの実行中、フォーミュラの結果がブール値でなかった場合、それは false であるとみなされます。 - 処理中のエンティティはフォーミュラ内において `This` で参照されます。 - `Formula` オブジェクトが **null** の場合、エラー1626 ("テキストまたはフォーミュラが必要です") が生成されます。 -> セキュリティのため、 `query()` 関数内のフォーミュラ使用を禁止することができます。 *querySettings* パラメーターの説明を参照ください。 +> セキュリティのため、 `query()` 関数内のフォーミュラ使用を禁止することができます。 *querySettings* パラメーターの説明を参照ください。 *querySettings* パラメーターの説明を参照ください。 #### フォーミュラに引数を渡す @@ -1204,17 +1218,17 @@ $es:=ds.Movie.query("roles.actor.lastName = :1 AND roles.actor{2}.lastName = :2" #### querySettings 引数 -*querySettings* 引数は、追加のオプションを格納したオブジェクトです。 以下のプロパティがサポートされています: +*querySettings* 引数は、追加のオプションを格納したオブジェクトです。 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: | プロパティ | 型 | 説明 | | ------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| parameters | Object | *queryString* または *formula* に **値の命名プレースホルダー** を使用した場合に渡すオブジェクト。 値は、プロパティ/値のペアで表現されます。プロパティは、*queryString* または *formula* に値の代わりに挿入されたプレースホルダー名 (":placeholder"など) で、値は、実際に比較される値です。 インデックスプレースホルダー (value引数として値を直接渡す方法) と命名プレースホルダーは、同じクエリ内で同時に使用することができます。 | +| parameters | Object | *queryString* または *formula* に **値の命名プレースホルダー** を使用した場合に渡すオブジェクト。 *queryString* または *formula* に **値の命名プレースホルダー** を使用した場合に渡すオブジェクト。 *queryString* または *formula* に **値の命名プレースホルダー** を使用した場合に渡すオブジェクト。 値は、プロパティ/値のペアで表現されます。プロパティは、*queryString* または *formula* に値の代わりに挿入されたプレースホルダー名 (":placeholder"など) で、値は、実際に比較される値です。 インデックスプレースホルダー (value引数として値を直接渡す方法) と命名プレースホルダーは、同じクエリ内で同時に使用することができます。 インデックスプレースホルダー (value引数として値を直接渡す方法) と命名プレースホルダーは、同じクエリ内で同時に使用することができます。 インデックスプレースホルダー (value引数として値を直接渡す方法) と命名プレースホルダーは、同じクエリ内で同時に使用することができます。 | | attributes | Object | *queryString* または *formula* に **属性パスの命名プレースホルダー** を使用した場合に渡すオブジェクト。 属性パスは、プロパティ/値のペアで表現されます。プロパティは、*queryString* または *formula* に属性パスの代わりに挿入されたプレースホルダー名 (":placeholder"など) で、値は、属性パスを表す文字列または文字列のコレクションです。 値には、データクラスのスカラー属性・リレート属性・オブジェクトフィールド内のプロパティへの属性パスを指定することができます。
    タイプ説明
    Stringドット記法を使用して表現された attributePath (例: "name" または "user.address.zipCode")
    String の Collectionコレクションの各要素が attributePath の階層を表します (例: ["name"] または ["user","address","zipCode"])。 コレクションを使用することで、ドット記法に準じていない名前の属性に対してもクエリすることができます (例: ["4Dv17.1","en/fr"])。
    インデックスプレースホルダー (*value* 引数として値を直接渡す方法) と命名プレースホルダーは、同じクエリ内で同時に使用することができます。 | -| args | Object | フォーミュラに渡す引数。 **args** オブジェクトは、フォーミュラ内の $1 が受け取るので、その値は *$1.property* という形で利用可能です (例題3 参照)。 | +| args | Object | フォーミュラに渡す引数。 フォーミュラに渡す引数。 **args** オブジェクトは、フォーミュラ内の $1 が受け取るので、その値は *$1.property* という形で利用可能です (例題3 参照)。 | | allowFormulas | Boolean | クエリ内でフォーミュラの呼び出しを許可するには true (デフォルト)。 フォーミュラ実行を禁止するには false を渡します。 false に設定されているときに、フォーミュラが `query()` に渡された場合、エラーが発生します (1278 - フォーミュラはこのメンバーメソッドでは許可されていません)。 | | context | Text | エンティティセレクションに適用されている自動の最適化コンテキストのラベル。 エンティティセレクションを扱うコードはこのコンテキストを使うことで最適化の恩恵を受けます。 この機能はクライアント/サーバー処理を想定して設計されています。 詳細な情報については、[**クライアント/サーバーの最適化**](../ORDA/client-server-optimization.md#最適化コンテキスト) の章を参照ください。 | | queryPlan | Boolean | 戻り値のエンティティコレクションに、実行する直前のクエリの詳細 (クエリプラン) を含めるかどうかを指定します。 返されるプロパティは、クエリプラン あるいはサブクエリ (複合クエリの場合) を格納したオブジェクトです。 このオプションはアプリケーションの開発フェーズにおいて有用です。 このオプションは通常 queryPath と組み合わせて使用されます。 省略時のデフォルト: false。 | -| queryPath | Boolean | 戻り値のエンティティコレクションに、実際に実行されたクエリの詳細を含めるかどうかを指定します。 返されたプロパティは、クエリで実際に使用されたパス (通常は queryPlan と同一ですが、エンジンがクエリを最適化した場合には異なる場合があります)、処理時間と検出レコード数を格納したオブジェクトです。 このオプションはアプリケーションの開発フェーズにおいて有用です。 省略時のデフォルト: false。 | +| queryPath | Boolean | 戻り値のエンティティコレクションに、実際に実行されたクエリの詳細を含めるかどうかを指定します。 戻り値のエンティティコレクションに、実際に実行されたクエリの詳細を含めるかどうかを指定します。 返されたプロパティは、クエリで実際に使用されたパス (通常は queryPlan と同一ですが、エンジンがクエリを最適化した場合には異なる場合があります)、処理時間と検出レコード数を格納したオブジェクトです。 このオプションはアプリケーションの開発フェーズにおいて有用です。 省略時のデフォルト: false。 このオプションはアプリケーションの開発フェーズにおいて有用です。 省略時のデフォルト: false。 | #### queryPlan と queryPath について @@ -1550,7 +1564,7 @@ softwares:{ -> **上級者向け:** この機能は、特定の構成のため、ORDAのデフォルト機能をカスタマイズする必要がある開発者向けです。 ほとんどの場合、使用する必要はないでしょう。 +> **上級者向け:** この機能は、特定の構成のため、ORDAのデフォルト機能をカスタマイズする必要がある開発者向けです。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 #### 説明 @@ -1563,17 +1577,17 @@ softwares:{ | timeout | Integer | タイムアウト (秒単位) | | maxEntries | Integer | エンティティの最大数 | -`timeout` は、データクラスの ORDAキャッシュのタイムアウトを設定します (デフォルトは 30秒)。 タイムアウトを過ぎると、キャッシュ内のデータクラスのエンティティは期限切れとみなされます。 これは、次のことを意味します: +`timeout` は、データクラスの ORDAキャッシュのタイムアウトを設定します (デフォルトは 30秒)。 タイムアウトを過ぎると、キャッシュ内のデータクラスのエンティティは期限切れとみなされます。 これは、次のことを意味します: タイムアウトを過ぎると、キャッシュ内のデータクラスのエンティティは期限切れとみなされます。 これは、次のことを意味します: - データはまだ存在します - 次にそのデータが必要になったときには、サーバーに要求します - エンティティの最大数に達すると、4D は期限切れのデータを自動的に削除します -`timeout` プロパティを設定すると、すでにキャッシュに存在するエンティティに新しいタイムアウトが設定されます。 これは頻繁に変更されないデータを扱う場合、つまり、サーバーへの新たな要求が必要ない場合に便利です。 +`timeout` プロパティを設定すると、すでにキャッシュに存在するエンティティに新しいタイムアウトが設定されます。 これは頻繁に変更されないデータを扱う場合、つまり、サーバーへの新たな要求が必要ない場合に便利です。 これは頻繁に変更されないデータを扱う場合、つまり、サーバーへの新たな要求が必要ない場合に便利です。 これは頻繁に変更されないデータを扱う場合、つまり、サーバーへの新たな要求が必要ない場合に便利です。 -`maxEntries` は、ORDAキャッシュ内のエンティティの最大数を設定します。 デフォルトは 30,000 です。 +`maxEntries` は、ORDAキャッシュ内のエンティティの最大数を設定します。 デフォルトは 30,000 です。 デフォルトは 30,000 です。 デフォルトは 30,000 です。 デフォルトは 30,000 です。 -最小エントリー数は 300 のため、`maxEntries` の値は 300以上でなくてはなりません。 それ以外の場合は無視され、最大エントリー数は 300 に設定されます。 +最小エントリー数は 300 のため、`maxEntries` の値は 300以上でなくてはなりません。 それ以外の場合は無視され、最大エントリー数は 300 に設定されます。 それ以外の場合は無視され、最大エントリー数は 300 に設定されます。 それ以外の場合は無視され、最大エントリー数は 300 に設定されます。 `timeout` および `maxEntries` として有効なプロパティが渡されない場合、キャッシュはデフォルト値または以前に設定された値のまま変更されません。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Concepts/classes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Concepts/classes.md index 5e2bcda089e9a1..37a0c2bd586508 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Concepts/classes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Concepts/classes.md @@ -185,7 +185,7 @@ Class オブジェクトそのものは [共有オブジェクト](shared.md) :::note -There is no ending keyword for function code. The 4D language automatically detects the end of a function's code by the next `Function` keyword or the end of the class file. +関数コードにおいては、終了キーワードはありません。 4D ランゲージは、次の`Function` キーワードまたはクラスファイルの終了を持って、自動的に関数のコードの終わりを検知します。 ::: @@ -325,7 +325,7 @@ Function getRectArea($width : Integer; $height : Integer) : Integer :::note -There is no ending keyword for class constructor function code. The 4D language automatically detects the end of a function's code by the next `Function` keyword or the end of the class file. +クラスコンストラクター関数コードにおいては、終了キーワードはありません。 4D ランゲージは、次の`Function` キーワードまたはクラスファイルの終了を持って、自動的に関数のコードの終わりを検知します。 ::: @@ -333,7 +333,7 @@ There is no ending keyword for class constructor function code. The 4D language クラスコンストラクターが定義されていると、[`new()`](API/ClassClass.md#new) 関数を呼び出したときに、当該コンストラクターが呼び出されます (コンストラクターで引数を指定している場合は `new()` 関数に渡します)。 -コンストラクター関数は、1つのクラスに 1つしか存在できません (そうでない場合はエラーが返されます)。 The [`Super`](../commands/super.md) command allows calls to the [`superclass`](../API/ClassClass#superclass), i.e. the parent class of the function. +コンストラクター関数は、1つのクラスに 1つしか存在できません (そうでない場合はエラーが返されます)。 [`Super`](../commands/super.md) コマンドを使用すると、[`スーパークラス`](../API/ClassClass#superclass)、つまり関数の親クラスを呼ぶことができます。 コンストラクター内でインスタンスのプロパティを作成し、型宣言することができます (例題参照)。 コンストラクター内でインスタンスのプロパティを作成し、型宣言することができます (例題参照)。 コンストラクター内でインスタンスのプロパティを作成し、型宣言することができます (例題参照)。 また、インスタンスプロパティの値が、コンストラクターに渡される引数に依存しない場合は、[`property`](#property) キーワードを使用して定義することができます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_number.md index 3c77c03d118d18..1ac32fc67015ff 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_number.md @@ -79,7 +79,7 @@ title: 数値 (実数、倍長整数、整数) ### 実数の比較 -To compare two reals for equality, the 4D language actually compares the absolute value of the difference with *epsilon*. See the [`SET REAL COMPARISON LEVEL`](https://doc.4d.com/4dv20/help/command/en/page623.html) command. +2つの実数が等しいかどうかを比較するために、4Dランゲージは実際には差の絶対値を *イプシロン値* と比較します。 See the [`SET REAL COMPARISON LEVEL`](https://doc.4d.com/4dv20/help/command/en/page623.html) command. :::note @@ -115,7 +115,7 @@ The bitwise operators operates on **Long Integer** expressions or values. ビットワイズ演算子を使用する場合、倍長整数値を32ビットの配列と考える必要があります。 これらのビットには、右から左に0~31の番号が付けられます。 -それぞれのビットは0か1なので、倍長整数値は32のブール値を格納できる値と考えることもできます。 A bit equal to 1 means **True** and a bit equal to 0 means **False**. +それぞれのビットは0か1なので、倍長整数値は32のブール値を格納できる値と考えることもできます。 1に等しいビットは**True** 、0に等しいビットは**False** を意味します。 ビットワイズ演算子を使用する式は倍長整数値を返します。Bit Test 演算子の場合、式は例外的にブール値を返します。 次の表にビットワイズ演算子とそのシンタックスを示します: @@ -132,21 +132,21 @@ The bitwise operators operates on **Long Integer** expressions or values. #### 注記 -1. For the `Left Bit Shift` and `Right Bit Shift` operations, the second operand indicates the number of positions by which the bits of the first operand will be shifted in the resulting value. したがって、この2番目のオペランドは、0~31の間でなければなりません。 0ビットシフトするとその値がそのまま返されます。また、31ビットより多くシフトするとすべてのビットがなくなるので、0x00000000が返されます。 それ以外の値を2番目のオペランドとして渡した場合、結果は意味のない値になります。 -2. For the `Bit Set`, `Bit Clear` and `Bit Test` operations , the second operand indicates the number of the bit on which to act. したがって、この2番目のオペランドは0 ~ 31の間です。そうでない場合、式の結果は意味のないものになります。 +1. `Left Bit Shift` および`Right Bit Shift` 演算では、2番目のオペランドは、結果値において1番目のオペランドのビットがシフトされるビット数を示します。 したがって、この2番目のオペランドは、0~31の間でなければなりません。 0ビットシフトするとその値がそのまま返されます。また、31ビットより多くシフトするとすべてのビットがなくなるので、0x00000000が返されます。 それ以外の値を2番目のオペランドとして渡した場合、結果は意味のない値になります。 +2. `Bit Set`、`Bit Clear`、`Bit Test` 演算では、2番目のオペランドは、作用の対象となるビット番号を示します。 したがって、この2番目のオペランドは0 ~ 31の間です。そうでない場合、式の結果は意味のないものになります。 次の表は、ビットワイズ演算子とその効果を示します: -| 演算 | 説明 | -| ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Bitwise AND | それぞれの結果ビットは2つのオペランドのビットの論理ANDです。 Here is the logical AND table:
  • 1 & 1 --> 1
  • 0 & 1 --> 0
  • 1 & 0 --> 0
  • 0 & 0 --> 0
  • In other words, the resulting bit is 1 if the two operand bits are 1; otherwise the resulting bit is 0. | -| Bitwise OR (inclusive) | Each resulting bit is the logical OR of the bits in the two operands.Here is the logical OR table:
  • 1 \| 1 --> 1
  • 0 \| 1 --> 1
  • 1 \| 0 --> 1
  • 0 \| 0 --> 0
  • In other words, the resulting bit is 1 if at least one of the two operand bits is 1; otherwise the resulting bit is 0. | -| Bitwise OR (exclusive) | Each resulting bit is the logical XOR of the bits in the two operands.Here is the logical XOR table:
  • 1 ^ \| 1 --> 0
  • 0 ^ \| 1 --> 1
  • 1 ^ \| 0 --> 1
  • 0 ^ \| 0 --> 0
  • In other words, the resulting bit is 1 if only one of the two operand bits is 1; otherwise the resulting bit is 0. | -| Left Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ左にシフトします。 左側のビットがなくなり、右側の新しいビットは0に設定されます。 **Note:** Taking into account only positive values, shifting to the left by N bits is the same as multiplying by 2^N. | -| Right Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ右にシフトします。 The bits on the right are lost and the new bits on the left are set to 0.**Note:** Taking into account only positive values, shifting to the right by N bits is the same as dividing by 2^N. | -| Bit Set | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが1に設定されます。 他のビットはそのままです。 | -| Bit Clear | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが0に設定されます。 他のビットはそのままです。 | -| Bit Test | 最初のオペランドのうち、2番目のビットで示されたビットが1の場合、trueが返されます。 最初のオペランドのうち、2番目のビットで示されたビットが0の場合、falseが返されます。 | +| 演算 | 説明 | +| ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Bitwise AND | それぞれの結果ビットは2つのオペランドのビットの論理ANDです。 論理AND の表は以下のようになります:
  • 1 & 1 --> 1
  • 0 & 1 --> 0
  • 1 & 0 --> 0
  • 0 & 0 --> 0
  • 言い換えると、結果のビットは両方のオペランドが1であれば1となり、それ以外の場合には結果のビットは0 となります。 | +| Bitwise OR (inclusive) | それぞれの結果ビットは2つのオペランドのビットの論理OR です。論理OR の表は以下のようになります。:
  • 1 \| 1 --> 1
  • 0 \| 1 --> 1
  • 1 \| 0 --> 1
  • 0 \| 0 --> 0
  • 言い換えると、結果のビットは、少なくともどちらかのオペランドが1であれば1となり、それ以外の場合には結果のビットは0 となります。 | +| Bitwise OR (exclusive) | それぞれの結果ビットは2つのオペランドの論理XOR です。論理XOR の表は以下のようになります:
  • 1 ^ \| 1 --> 0
  • 0 ^ \| 1 --> 1
  • 1 ^ \| 0 --> 1
  • 0 ^ \| 0 --> 0
  • 言い換えると、結果のビットは2つのオペランドのどちらか1つが1の場合にのみ1となり、それ以外の場合には結果のビットは0 となります。 | +| Left Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ左にシフトします。 左側のビットがなくなり、右側の新しいビットは0に設定されます。 **注記:** 正の数だけを考えると、Nビット左にシフトすることは、2^N を掛けることと同じです。 | +| Right Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ右にシフトします。 右側のビットがなくなり、左側の新しいビットは 0 に設定されます。 **注記:** 正の数だけを考えると、Nビット右にシフトすることは、2^Nで割ることと同じです。 | +| Bit Set | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが1に設定されます。 他のビットはそのままです。 | +| Bit Clear | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが0に設定されます。 他のビットはそのままです。 | +| Bit Test | 最初のオペランドのうち、2番目のビットで示されたビットが1の場合、trueが返されます。 最初のオペランドのうち、2番目のビットで示されたビットが0の場合、falseが返されます。 | ### 例題 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md index 9b499111370279..b1a33477535f22 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md @@ -70,27 +70,27 @@ title: デバッガー - **続行**: 実行が継続されます。 エラーが発生した行は、エラーの位置によっては一部のみ実行済みである場合があります。 慎重に実行を継続してください: エラーが原因で、メソッドの残り部分が正常に実行できない場合があります。 `SET WINDOW TITLE` のように、コードの残りの部分の実行やテストの妨げにならない単純な呼び出しでエラーが発生している場合にのみ、**続行** ボタンをクリックすることを推奨します。 -> Tips: ループ中などで繰り返し発生するエラーの場合には、**続行** ボタンを **無視** ボタンに変更できます。 **続行**ボタンが最初に現れたときに、**Alt**キー (Windows) または **Option**キー (macOS) を押しながらボタンをクリックします。 すると、同じエラーによってダイアログが呼び出されたときには、ボタンラベルが **無視** へと変化します。 +> Tips: ループ中などで繰り返し発生するエラーの場合には、**続行** ボタンを **無視** ボタンに変更できます。 Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. -- **アボート**: メソッドが中断され、メソッドの実行を開始する前の状態に戻ります: +- **Abort**: Stops method execution and returns to the state before the method started executing: - イベントに対してフォームメソッドまたはオブジェクトメソッドが実行されている場合には、これらは停止され、フォームに戻ります。 - メソッドがアプリケーションモードから実行されている場合には、このモードに戻ります。 -- **コピー**: デバッグ情報をクリップボードにコピーします。 この情報はエラーの内部環境 (番号や内部コンポーネント等) を説明します。 情報はタブ区切り形式で記述されます。 +- **Copy**: Copies the debugging information into the clipboard. この情報はエラーの内部環境 (番号や内部コンポーネント等) を説明します。 情報はタブ区切り形式で記述されます。 -- **保存...**: シンタックスエラーウィンドウの内容とコールチェーンを `.txt` ファイルに保存します。 +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## デバッガー -エラー検出の際によくある初歩的な失敗は、シンタックスエラーウィンドウの **アボート** ボタンをクリックし、コードエディターに戻り、コードを表示して原因を確認しようとすることです。 これは止めてください。 **デバッガー** を常に使用すれば、相当の時間と労力を節減することができます。 +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. これは止めてください。 **デバッガー** を常に使用すれば、相当の時間と労力を節減することができます。 デバッガーを使うと、メソッドをステップごとにゆっくりと実行することができます。 デバッガーは、エラーが発生した理由を知るために必要な情報を表示できます。 この情報があれば、エラーの修正方法はわかります。 -デバッガーを使用するもう 1つの理由は、コードの作成です。 いつも以上に複雑なアルゴリズムを作成してしまう場合があります。 達成感こそありますが、コーディングが正しいかどうかは 100%確かとはいえません。 見当もつかないまま実行するのではなく、コードの最初で `TRACE` コマンドを使用します。 その後、コードをステップごとに実行して、動作を監視することができます。 +デバッガーを使用するもう 1つの理由は、コードの作成です。 いつも以上に複雑なアルゴリズムを作成してしまう場合があります。 達成感こそありますが、コーディングが正しいかどうかは 100%確かとはいえません。 Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## ブレーク デバッグ作業では、コードの一部のトレースを特定の行までスキップする必要がある場合があります。 また、ある式が特定の値になった時 (例: "$myVar > 1000") や、特定の 4Dコマンドが呼び出されるたびにコードをトレースしたい場合もあります。 -このようなニーズに対応するために、**ブレークポイント** と **キャッチコマンド** 機能が用意されています。 これらの機能は、コードエディター、デバッガー、ランタイムエクスプローラーから設定できます。 +These needs are covered by **breakpoints** and **command catching** features. これらの機能は、コードエディター、デバッガー、ランタイムエクスプローラーから設定できます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md index d2c09e743f03bd..da62687d256368 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md @@ -47,33 +47,33 @@ title: デバッガー トレースが停止され、通常のメソッド実行が再開されます。 -> **Shift** + **F5** または **Shift** を押しながら **トレース終了** ボタンをクリックすると、実行が再開されます。 この操作により、以降のカレントプロセスでの全ての TRACE 呼び出しが無効になります。 +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. この操作により、以降のカレントプロセスでの全ての TRACE 呼び出しが無効になります。 #### 次行に進む 現在のメソッド行 (プログラムカウンターと呼ばれる黄色い矢印で示されている行) が実行されます。 その後、デバッガは次の行に移動します。 -"次の行に進む" ボタンは、サブルーチンや関数に移動することはなく、現在トレースの対象となっているメソッドのレベルにとどまります。 呼び出されるサブルーチンや関数もトレースしたい場合には、**呼び出しメソッドもトレース** ボタンを使用します。 +"次の行に進む" ボタンは、サブルーチンや関数に移動することはなく、現在トレースの対象となっているメソッドのレベルにとどまります。 If you want to also trace subroutines and functions calls, use the **Step Into** button. -リモートデバッグにおいて、メソッドがサーバー上で実行されていた場合には、メソッドの最後の行の実行後にその親メソッドが呼ばれます。 その時、親メソッドがリモート側で実行されていた場合には、このボタンは **トレース終了** ボタンと同じように振る舞います。 +リモートデバッグにおいて、メソッドがサーバー上で実行されていた場合には、メソッドの最後の行の実行後にその親メソッドが呼ばれます。 If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### 呼び出しメソッドもトレース 別のメソッド (サブルーチンまたは関数) を呼び出す行が実行される時にこのボタンを使用すると、呼び出されたメソッドがデバッガーウィンドウに表示され、ステップ実行できます。 -デバッガーウィンドウの [呼び出し連鎖エリア](#呼び出し連鎖エリア) では、新しく呼び出されたメソッドがカレント (一番上) となります。 +The new method becomes the current (top) method in the [Call Chain Pane](#call-chain-pane) of the Debugger window. -別のメソッドを呼び出していない行が実行される場合には、このボタンは **次行に進む** ボタンと同じように振る舞います。 +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. -#### 呼び出し元に進む +#### Step Out -サブルーチンや関数をトレースしている場合にこのボタンをクリックすると、現在トレース中のメソッド全体を実行し、呼び出し元メソッドに戻ることができます。 デバッガーウィンドウは、コールチェーンの一つ前のメソッドに戻ります。 トレース中のメソッドがコールチェーンの最後のメソッドである場合には、デバッガーウィン ドウが閉じられます。 +If you are tracing subroutines and functions, clicking on this button allows you to execute the entire method currently being traced and to step back to the caller method. The Debugger window is brought back to the previous method in the call chain. If the current method is the last method in the call chain, the Debugger window is closed. -リモートデバッグにおいては、メソッドの最後の行の実行時に、サーバー上でメソッドが実行されている場合には、親メソッドが呼び出されます。 その時、親メソッドがリモート側で実行されていた場合には、このボタンは トレース終了 ボタンと同じように振る舞います。 +In remote debugging, on execution of the last line of the method, if the method is executed on the server, the parent method is called. If the parent method is executed on the remote side, the button acts in the same manner as the No Trace button. -#### 別プロセスもトレース +#### Step Into Process -新しいプロセスを作成する (New process コマンドを呼び出す) 行を実行する際にこのボタンを使用すると新しいデバッガーウィンドウが表示され、作成されたプロセスでトレースを続行することができます。 新しいプロセスを作成しない行を実行する際には、このボタンは 次行に進む ボタンと同等に動作します。 +On execution of a line that creates a new process (i.e., calling the New process command), this button opens a new Debugger window that allows you to trace the process method of the newly created process. On execution of a line that does not creates a new process, this button acts in the same manner as the Step Over button. #### 中断 @@ -84,9 +84,9 @@ title: デバッガー #### 中断&編集 -コードエディターウィンドウが開いて、**中断&編集** ボタンがクリックされた時点で実行していたメソッドを表示します。 +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Tip**: このボタンは、コードにどのような変更が必要かが明らかであり、メソッドのテストを続行するためにその変更が必要な場合に使用してください。 変更が完了したら、メソッドを再実行できます。 +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. 変更が完了したら、メソッドを再実行できます。 #### 編集 @@ -94,7 +94,7 @@ title: デバッガー このボタンをクリックしてメソッドを編集した場合には、現在の実行は中断されないため、編集内容の反映は次回実行時になります。 -> **Tip**: このボタンは、コードに必要な変更内容がわかっている場合で、その変更がコードの残り部分の実行やトレースの妨げにならない場合に使用します。 +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. #### 設定保存 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md index 42651ef042f6bd..cc30bab46e640d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md @@ -23,7 +23,7 @@ title: リモートマシンからのデバッグ 有効化済デバッガーは、4D Server が次のいずれかに遭遇した場合に呼び出されます: - ブレークポイント -- `TRACE` コマンド +- a `TRACE` command - キャッチコマンド - エラー @@ -31,7 +31,7 @@ title: リモートマシンからのデバッグ 注: -- `On Server Startup` データベースメソッドで実行されたコードはリモートでデバッグすることができません。 これはサーバー側でしかデバッグすることができません。 +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. これはサーバー側でしかデバッグすることができません。 - デバッガーが有効化されていない場合、実行中のコードがデバッグコマンドによって中断されることはありません。 ## デバッガーの有効化 @@ -47,20 +47,20 @@ title: リモートマシンからのデバッグ サーバーのデバッガーをリモート4Dクライアントで有効化するには: -1. 4D Server のメニューバーから、**編集** > **デバッガを無効化する** を選択し、リモートマシンからデバッガーを利用できるようにします (4D Server がヘッドレス実行されている場合、この操作はなにもしません)。 -2. サーバーに接続されたリモート4Dクライアントから、**実行** > **リモートデバッガを有効化する** を選択します。 +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -有効化に成功した場合 ([有効化リクエストの拒否](#有効化リクエストの拒否) 参照)、メニューコマンドは **リモートデバッガを無効化する** へと変わります。 +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. これで、サーバーのデバッガーはリモート4Dクライアントで有効化され、以下のタイミングまで有効化されたままです: - ユーザーセッションが終了するまで -- ユーザーが `リモートデバッガを無効化する` を選択するまで +- until you select `Detach Remote Debugger` デバッガーを再度サーバー側で有効化するには: -1. デバッガーが有効化されているリモート4Dクライアントにおいて、**実行** > **リモートデバッガを無効化する** を選択します。 -2. 4D Server のメニューバーから、**編集** > **デバッガを有効化する** を選択します。 +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > サーバー上でデバッガーが有効化されていると (デフォルト)、デバッグを可能にするため、サーバープロセスはすべて自動的にコオオペラティブモードで実行されます。 これは、パフォーマンスに大きな影響を与えかねません。 サーバーマシン上でデバッグする必要がない場合は、デバッガーを無効化し、必要に応じてリモートマシンで有効化することが推奨されます。 @@ -68,13 +68,13 @@ title: リモートマシンからのデバッグ デバッガーは、リモート4Dクライアントまたはサーバーの開始時に自動的に有効化することができます: -- サーバー側の場合 (ヘッドレスモードでなければ)、このオプションは **デバッガを開始時に有効化する** という名前です。 サーバーが開始されると、自動的にデバッガーが有効化されます (デフォルト): +- On the server (if not headless), this option is named **Attach Debugger At Startup**. サーバーが開始されると、自動的にデバッガーが有効化されます (デフォルト): -> **警告**: のちにヘッドレスモードで起動されるサーバーにおいてこのオプションが選択されたままの場合、このサーバーのデバッガーは利用できません。 +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- リモート4Dクライアントでは、このオプションは **リモートデバッガを開始時に有効化する** という名前です。 このオプションが選択されている場合、リモート4Dクライアントは、その後同じ 4D Serverデータベースに接続するたびに、自動的にリモートデバッガーを有効化しようとします。 成功した場合 ([有効化リクエストの拒否](#有効化リクエストの拒否) 参照)、リモートデバッガーは自動的にリモート4Dクライアントで有効化され、メニューコマンドは **リモートデバッガを無効化する** へと変わります。 +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. このオプションが選択されている場合、リモート4Dクライアントは、その後同じ 4D Serverデータベースに接続するたびに、自動的にリモートデバッガーを有効化しようとします。 If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. -> この設定はプロジェクトごとに、[`.4DPreferences`](Project/architecture.md#userpreferencesusername) ファイル内にローカル保存されます。 +> This setting is applied per project and is stored locally in the [`.4DPreferences`](Project/architecture.md#userpreferencesusername) file. ## 有効化リクエストの拒否 @@ -88,5 +88,5 @@ title: リモートマシンからのデバッグ このような場合に、デバッガーを有効化するには、以下のどちらかの条件が必要です: -- 有効化済デバッガーを、**リモートデバッガを無効化する** メニューコマンドでリモート4Dクライアントから外す、あるいは **デバッガを無効化する** コマンドを使用してサーバーから外す。 +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - 有効化済デバッガーを使用しているリモート4Dクライアントセッションが閉じられる。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md index 9b13579e8a92d4..4c7c5fa0043b2f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md @@ -3,7 +3,7 @@ id: text title: テキスト --- -テキストオブジェクトを使って、指示・タイトル・ラベルなどの静的 (スタティック) なテキストを フォーム上に表示することができます。 これらのテキストは、参照を含むことで動的にもなります。 詳細については [スタティックテキスト中で参照を使用する](https://doc.4d.com/4Dv18/4D/18/Using-references-in-static-text.300-4575714.ja.html) を参照ください。 +テキストオブジェクトを使って、指示・タイトル・ラベルなどの静的 (スタティック) なテキストを フォーム上に表示することができます。 これらのテキストは、参照を含むことで動的にもなります。 詳細については [スタティックテキスト中で参照を使用する](https://doc.4d.com/4Dv18/4D/18/Using-references-in-static-text.300-4575714.ja.html) を参照ください。 フォーム上に表示することができます。 これらのテキストは、参照を含むことで動的にもなります。 詳細については [スタティックテキスト中で参照を使用する](https://doc.4d.com/4Dv18/4D/18/Using-references-in-static-text.300-4575714.ja.html) を参照ください。 #### JSON 例: @@ -29,7 +29,7 @@ title: テキスト > このプロパティは `OBJECT SET TEXT ORIENTATION` ランゲージコマンドによっても設定することができます。 -テキストが回転された後でも、サイズや位置などすべてのプロパティを変更することが可能です。 テキストエリアの高さと幅は、回転の方向に依らないという点に注意してください: +テキストが回転された後でも、サイズや位置などすべてのプロパティを変更することが可能です。 テキストエリアの高さと幅は、回転の方向に依らないという点に注意してください: テキストエリアの高さと幅は、回転の方向に依らないという点に注意してください: テキストエリアの高さと幅は、回転の方向に依らないという点に注意してください: テキストエリアの高さと幅は、回転の方向に依らないという点に注意してください: ![](../assets/en/FormObjects/staticText2.png) @@ -47,27 +47,4 @@ title: テキスト
    -[タイプ](properties_Object.md#タイプ) - -[オブジェクト名](properties_Object.md#オブジェクト名) - -[タイトル](properties_Object.md#タイトル) - -[CSSクラス](properties_Object.md#cssクラス) - -[左](properties_CoordinatesAndSizing.md#左) - -[上](properties_CoordinatesAndSizing.md#上) - -[右](properties_CoordinatesAndSizing.md#右) - -[下](properties_CoordinatesAndSizing.md#下) - -[幅](properties_CoordinatesAndSizing.md#幅) - -[高さ](properties_CoordinatesAndSizing.md#高さ) - -[角の半径](properties_CoordinatesAndSizing.md#角の半径) - -[横方向サイズ変更](properties_ResizingOptions.md#横方向サイズ変更) - -[縦方向サイズ変更](properties_ResizingOptions.md#縦方向サイズ変更) - -[表示状態](properties_Display.md#表示状態) - -[塗りカラー](properties_BackgroundAndBorder.md#背景色塗りカラー) - -[境界線スタイル](properties_BackgroundAndBorder.md#境界線スタイル) - -[フォント](properties_Text.md#フォント) - -[フォントサイズ](properties_Text.md#フォントサイズ) - -[太字](properties_Text.md#太字) - -[イタリック](properties_Text.md#イタリック) - -[下線](properties_Text.md#下線) - -[フォントカラー](properties_Text.md#フォントカラー) - -[方向](properties_Text.md#方向) - -[横揃え](properties_Text.md#横揃え) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Notes/updates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Notes/updates.md index be5f422ac563bf..d0a5ebf6310c10 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Notes/updates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Notes/updates.md @@ -9,7 +9,7 @@ title: リリースノート #### ハイライト -- [オブジェクト参照](../Concepts/dt_object.md#オブジェクト演算子) と [コレクション参照](../Concepts/dt_collection.md#コレクション演算子) を対象とした比較演算子をサポート。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 +- [オブジェクト参照](../Concepts/dt_object.md#オブジェクト演算子) と [コレクション参照](../Concepts/dt_collection.md#コレクション演算子) を対象とした比較演算子をサポート。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 - [宣言された名前空間](../Extensions/develop-components.md#コンポーネント名前空間の宣言) をコンポーネントが持つ場合、そのクラスは [`cs.`](../Concepts/classes.md#cs) を介して、ホストプロジェクトに読み込まれているすべてのコンポーネント間で自動的に共有されるようになりました。 - コンポーネントマネージャー: [GitHub に保存されたコンポーネント](../Project/components.md#github-に保存されたコンポーネントの宣言) のサポート。 - 新しい [`entitySelection.clean()`](../API/EntitySelectionClass.md#clean) 関数と [`$clean`](../REST/$clean.md) REST API が追加されました。これらは、対象のエンティティセレクションから削除済みエンティティを除外したエンティティセレクションを新規に取得します。 @@ -41,7 +41,7 @@ title: リリースノート - [`Try...Catch...End try`](../Concepts/error-handling.md#trycatchend-try) エラー処理構文のサポート。 - QUICネットワークレイヤーは [ブロードキャスト](../Desktop/clientServer.md#リモートプロジェクトを開く)、[SSO](https://doc.4d.com/4Dv20R5/4D/20-R5/Single-Sign-On-SSO-on-Windows.300-6932709.ja.html)、および [IPv6](https://doc.4d.com/4Dv20R5/4D/20-R5/IP-Settings.300-6932707.ja.html) に対応しました。 - [制限付エンティティセレクション](../ORDA/entities.md#制限付エンティティセレクション) をサポート。 -- [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 新しいクラスプロパティ: [`.isShared`](../API/ClassClass.md#isshared), [`.isSingleton`](../API/ClassClass.md#isingleton), [`.me`](../API/ClassClass.md#me). +- [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 新しいクラスプロパティ: [`.isShared`](../API/ClassClass.md#isshared), [`.isSingleton`](../API/ClassClass.md#isingleton), [`.me`](../API/ClassClass.md#me). [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 新しいクラスプロパティ: [`.isShared`](../API/ClassClass.md#isshared), [`.isSingleton`](../API/ClassClass.md#isingleton), [`.me`](../API/ClassClass.md#me). - [宣言と同時にクラスプロパティを初期化](../Concepts/classes.md/#宣言と同時にプロパティを初期化する) できるようになりました。 - RESTリクエスト用の新しい [強制ログインモード](../REST/authUsers.md#強制ログインモード) と、[Qodly Studio for 4D での専用サポート](../WebServer/qodly-studio.md#強制ログイン)。 - 新しい [$format](../REST/$format.md) RESTパラメーター。 @@ -52,8 +52,8 @@ title: リリースノート #### 動作の変更 -- *4D Internet Commands* および *4D for OCI* プラグインは、4Dインストーラーに含まれなくなりました。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 -- ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) に加えた変更は、`catalog_editor.json` という個別ファイルに保存されるようになりました。このファイルはプロジェクトの [`Sources`フォルダー](../Project/architecture.md#sources) に保存されます。 +- *4D Internet Commands* および *4D for OCI* プラグインは、4Dインストーラーに含まれなくなりました。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 +- ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) に加えた変更は、`catalog_editor.json` という個別ファイルに保存されるようになりました。このファイルはプロジェクトの [`Sources`フォルダー](../Project/architecture.md#sources) に保存されます。 ## 4D 20 R4 @@ -79,8 +79,8 @@ title: リリースノート - 引数を宣言するための従来のシンタックス (例: `C_TEXT($1)` や `var $1 : Text`) は非推奨となり、コードの入力時、シンタックスチェック、コンパイル時に警告が生成されます。 - セレクション内レコードの削除後に、別レコードが新規作成された場合でも、セレクションの一貫性が保持されるようになりました ([このブログ記事](https://blog.4d.com/ja/4d-keeps-your-selections-of-records-consistent-regarding-deletion-of-records/) を参照ください)。 -- 更新された [OpenSSL ライブラリ](#ライブラリの一覧) では、デフォルトの SSL/TLS セキュリティレベルが 1 から 2 に変更されました。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 -- [4Dユーザーディレクトリが bcryptアルゴリズムを使用している](https://blog.4d.com/ja/bcrypt-support-for-passwords/) 場合にパスワード認証を可能にするため、[`Open datastore`](../API/DataStoreClass.md#open-datastore) コマンドの *connectionInfo* パラメーターに設定する "password" 値は、デフォルトでクリアテキストで送信されるようになりました。 "On REST authentication" データベースメソッドが、パスワードを平文の状態で扱えるようにし (3番目のパラメーターは **False**)、`Open datastore` に渡す *connectionInfo* で "tls" オプションを **True** にすることで、接続が暗号化されるようにする必要があります。 特定の場合には、新しい "passwordAlgorithm" オプションも互換性のために使用できます ([`Open datastore`](../API/DataStoreClass.md#open-datastore) コマンド参照)。 +- 更新された [OpenSSL ライブラリ](#ライブラリの一覧) では、デフォルトの SSL/TLS セキュリティレベルが 1 から 2 に変更されました。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 +- In order to allow password verification when the [4D user directory uses the bcrypt algorithm](https://blog.4d.com/bcrypt-support-for-passwords/), the "password" value in the *connectionInfo* parameter of the [`Open datastore`](../commands/open-datastore.md) command is now sent in clear form by default. In order to allow password verification when the [4D user directory uses the bcrypt algorithm](https://blog.4d.com/bcrypt-support-for-passwords/), the "password" value in the *connectionInfo* parameter of the [`Open datastore`](../commands/open-datastore.md) command is now sent in clear form by default. 特定の場合には、新しい "passwordAlgorithm" オプションも互換性のために使用できます ([`Open datastore`](../API/DataStoreClass.md#open-datastore) コマンド参照)。 ## 4D 20 R3 @@ -91,7 +91,7 @@ title: リリースノート - 新しい [`collection.multiSort()`](../API/CollectionClass.md#multisort) 関数を追加しました。 - [`Formula from string`](../API/FunctionClass.md#formula-from-string) で *context* パラメーターをサポート。 - [4D.WebSocket.new](../API/WebSocketClass.md#4dwebsocketnew) の *connectionHandler* パラメーターで `headers` プロパティをサポート。 -- データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 +- データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 - ピクチャー/Blob属性へのファイル参照の代入は、[ORDAでサポートされています](../ORDA/entities.md#d#ピクチャーまたは-blob属性にファイルを代入する)。 - [宣言と同時に変数のデータ型と値を初期化](../Concepts/variables/#宣言と同時に変数を初期化する) できるようになりました。 - ログファイルの設定は、[カレントデータファイル](../Backup/settings.md#ログ管理) とともに保存されるようになりました。 @@ -104,7 +104,7 @@ title: リリースノート #### 動作の変更 - いくつかのエラーは、[エラー処理メソッド](../Concepts/error-handling.md) によってインタプリタモードのみでキャッチ可能でした。 この問題の修正後、以下のエラーがコンパイルモードでも検出されるようになりました: *範囲外のインデックス*、*互換性のない型*、*Null ポインターの逆参照*。 ただし、Intelプロセッサーでは、このようなエラーによって以前と同様に処理が中断されますが、Apple Siliconプロセッサーでは、[`ABORT`](https://doc.4d.com/4dv20/help/command/ja/page156.html)コマンドを呼び出さない限り、処理は中断されません。 -- 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 +- 4D は内部的な PHPインタプリターを実装しなくなりました。 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 ## 4D 20 R2 @@ -112,7 +112,7 @@ title: リリースノート :::warning セキュリティに関する注記 -4Dアプリケーションが TLS接続を使用する場合は、4D 20 R2 HF1 build 100440以上へのアップグレードが推奨されます。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 +4Dアプリケーションが TLS接続を使用する場合は、4D 20 R2 HF1 build 100440以上へのアップグレードが推奨されます。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 ::: @@ -128,7 +128,7 @@ title: リリースノート #### 動作の変更 -- **警告**: [4D.FileHandle](../API/FileHandleClass.md) オブジェクトの [`offset`](../API/FileHandleClass.md#offset) の開始値が誤って 0 ではなく 1 に設定されていました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 +- **警告**: [4D.FileHandle](../API/FileHandleClass.md) オブジェクトの [`offset`](../API/FileHandleClass.md#offset) の開始値が誤って 0 ではなく 1 に設定されていました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 ## 4D 20.x LTS @@ -136,20 +136,20 @@ title: リリースノート ## ライブラリの一覧 -| ライブラリ | 現在のバージョン | 更新された 4D バージョン | 説明 | -| --------- | ----------------------------------------- | -------------- | --------------------------------------------------------------------- | -| BoringSSL | 0aa300b | **20 R6** | QUIC に使用 | -| CEF | 121 | 20 R5 | Chromium 6167 | -| Hunspell | 1.7.2 | 20 | 4D フォームと 4D Write Pro でスペルチェックに使用されます。 | -| ICU | 73.2 | 20 | このアップグレードにより、英数字とテキスト、オブジェクトのインデックスが自動的に再構築されます。 | -| libldap | **2.6.7** | **20 R6** | | -| libsasl | 2.1.28 | 20 | | -| Libuv | 1.48 | **20 R6** | QUIC に使用 | -| libZip | 1.9.2 | 20 | Zip クラス、4D Write Pro、svg および serverNet コンポーネントによって使用。 | -| LZMA | 5.4.1 | 20 | | -| OpenSSL | 3.2.0 | 20 R4 | デフォルトの TLS/SSL セキュリティレベルがアップグレードされました。 リリース v20R4 の[動作の変更](#動作の変更)参照。 | -| PDFWriter | 4.3 | 20 | 12.2.1 で FreeType依存 | -| PHP | 8.2.4 | 20 | | -| SpreadJS | 16.2.6 | 20 R4 | 4D View Pro エンジン | -| webKit | WKWebView | 19 | | -| Zlib | 1.2.13 | 20 | | +| ライブラリ | 現在のバージョン | 更新された 4D バージョン | 説明 | +| --------- | ----------------------------------------- | -------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| BoringSSL | 0aa300b | **20 R6** | QUIC に使用 | +| CEF | 121 | 20 R5 | Chromium 6167 | +| Hunspell | 1.7.2 | 20 | 4D フォームと 4D Write Pro でスペルチェックに使用されます。 | +| ICU | 73.2 | 20 | このアップグレードにより、英数字とテキスト、オブジェクトのインデックスが自動的に再構築されます。 | +| libldap | **2.6.7** | **20 R6** | | +| libsasl | 2.1.28 | 20 | | +| Libuv | 1.48 | **20 R6** | QUIC に使用 | +| libZip | 1.9.2 | 20 | Zip クラス、4D Write Pro、svg および serverNet コンポーネントによって使用。 | +| LZMA | 5.4.1 | 20 | | +| OpenSSL | 3.2.0 | 20 R4 | デフォルトの TLS/SSL セキュリティレベルがアップグレードされました。 リリース v20R4 の[動作の変更](#動作の変更)参照。 リリース v20R4 の[動作の変更](#動作の変更)参照。 リリース v20R4 の[動作の変更](#動作の変更)参照。 | +| PDFWriter | 4.3 | 20 | 12.2.1 で FreeType依存 | +| PHP | 8.2.4 | 20 | | +| SpreadJS | 16.2.6 | 20 R4 | 4D View Pro エンジン | +| webKit | WKWebView | 19 | | +| Zlib | 1.2.13 | 20 | | diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/glossary.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/glossary.md index e329708f024c4d..f087212e3a29cd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/glossary.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/glossary.md @@ -13,7 +13,7 @@ title: 用語集 ## 属性 -属性とは、リレーショナルデータベース内における最小の保存セルです ([リレーション属性](#リレーション属性) も参照してください)。 データクラス属性とエンティティ属性を混同しないようにしてください: +属性とは、リレーショナルデータベース内における最小の保存セルです ([リレーション属性](#リレーション属性) も参照してください)。 データクラス属性とエンティティ属性を混同しないようにしてください: データクラス属性とエンティティ属性を混同しないようにしてください: - データクラスオブジェクトにおける各プロパティは、対応するテーブルの対応するフィールドへとマップするデータクラス属性です (同じ名前と型)。 - エンティティオブジェクトにおけるエンティティ属性は、対応するデータストア属性の値を格納するプロパティです。 @@ -56,7 +56,7 @@ ORDA データモデルクラスの関数。 ## データストア -データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 `ds` コマンドによって返されるメインデータベースは、データストア (メインデータストア) として利用可能です。 +データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 `ds` コマンドによって返されるメインデータベースは、データストア (メインデータストア) として利用可能です。 データストアは以下のものを提供します: @@ -81,7 +81,7 @@ ORDA データモデルクラスの関数。 ## ds -`ds` は、[データストア](dsMapping.md#データストア) のオブジェクト参照を返す 4Dランゲージコマンドです。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 +`ds` は、[データストア](dsMapping.md#データストア) のオブジェクト参照を返す 4Dランゲージコマンドです。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 ## エンティティ @@ -105,7 +105,7 @@ ORDA データモデルクラスの関数。 ## 汎用クラス -エンティティやデータクラスなどの ORDA オブジェクト用のビルトインクラス。 汎用クラスのプロパティや関数は、ユーザー拡張クラス (例: `EmployeeEntity`) において自動で利用可能です。 +エンティティやデータクラスなどの ORDA オブジェクト用のビルトインクラス。 エンティティやデータクラスなどの ORDA オブジェクト用のビルトインクラス。 汎用クラスのプロパティや関数は、ユーザー拡張クラス (例: `EmployeeEntity`) において自動で利用可能です。 ## レイジーローディング @@ -119,7 +119,7 @@ ORDA データモデルクラスの関数。 データストア、データクラス、エンティティセレクション、エンティティなどの ORDA オブジェクトは、オブジェクトのクラスを定義します。 これらのクラスには、オブジェクトを直接操作するための専用のメソッドが提供されています。 これらのメソッドはメンバー関数とも呼ばれます。 このメソッドを使用するには、オブジェクトのインスタンスに対して呼び出します。 -たとえば、`query()` メソッドはデータクラスのメンバー関数です。 `$myClass` 変数にデータクラスオブジェクトを格納している場合、次のように書くことができます: +たとえば、`query()` メソッドはデータクラスのメンバー関数です。 たとえば、`query()` メソッドはデータクラスのメンバー関数です。 たとえば、`query()` メソッドはデータクラスのメンバー関数です。 `$myClass` 変数にデータクラスオブジェクトを格納している場合、次のように書くことができます: たとえば、`query()` メソッドはデータクラスのメンバー関数です。 たとえば、`query()` メソッドはデータクラスのメンバー関数です。 `$myClass` 変数にデータクラスオブジェクトを格納している場合、次のように書くことができます: ```code4d $myClass.query("name = smith") @@ -193,11 +193,11 @@ ORDA オブジェクトとは関わりのないユーザークラス。 ## リソース -[権限](#権限) における [アクション](#アクション) の許可・拒否の対象となる ORDA 要素。 利用可能なリソースは、データストア、データクラス、データクラス属性、ORDAデータモデル関数のいずれかです。 +[権限](#権限) における [アクション](#アクション) の許可・拒否の対象となる ORDA 要素。 利用可能なリソースは、データストア、データクラス、データクラス属性、ORDAデータモデル関数のいずれかです。 利用可能なリソースは、データストア、データクラス、データクラス属性、ORDAデータモデル関数のいずれかです。 ## ロール -ロールとは、管理者が使用することを目的とした、公開された [権限](#権限) のことです。 ロールは 1つ以上の権限を持つことができます。 +ロールとは、管理者が使用することを目的とした、公開された [権限](#権限) のことです。 ロールは 1つ以上の権限を持つことができます。 ロールは 1つ以上の権限を持つことができます。 ロールは 1つ以上の権限を持つことができます。 ## セッション diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/privileges.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/privileges.md index 71dd4ea13461a6..2f19a2b6328301 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/privileges.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/privileges.md @@ -3,13 +3,13 @@ id: privileges title: 権限 --- -データ保護と、承認ユーザーによる迅速かつ容易なデータアクセスを両立することは、Webアプリケーションにとって大きな課題です。 ORDA のセキュリティアーキテクチャーはデータストアの中心に実装されており、プロジェクト内のさまざまなリソース (データストア、データクラス、関数など) に対して、すべての Web または REST ユーザーセッションに特定の権限を定義することができます。 +データ保護と、承認ユーザーによる迅速かつ容易なデータアクセスを両立することは、Webアプリケーションにとって大きな課題です。 データ保護と、承認ユーザーによる迅速かつ容易なデータアクセスを両立することは、Webアプリケーションにとって大きな課題です。 ORDA のセキュリティアーキテクチャーはデータストアの中心に実装されており、プロジェクト内のさまざまなリソース (データストア、データクラス、関数など) に対して、すべての Web または REST ユーザーセッションに特定の権限を定義することができます。 ## 概要 ORDA のセキュリティアーキテクチャーは、権限、許諾アクション (read、create など)、およびリソースの概念に基づいています。 -Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 +Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 セッション内で送信されるユーザーリクエストは、プロジェクトの `roles.json` ファイルで定義された権限に対して評価されます。 @@ -41,7 +41,7 @@ Webユーザーまたは RESTユーザーがログインすると、そのセッ :::info -パーミッションは、データストアオブジェクトや関数へのアクセスを制御します。 特定の条件に基づいて読み取りデータをフィルタリングしたい場合は、[制限付エンティティセレクション](entities.md#制限付エンティティセレクション) の利用がより適切かもしれません。 +パーミッションは、データストアオブジェクトや関数へのアクセスを制御します。 パーミッションは、データストアオブジェクトや関数へのアクセスを制御します。 特定の条件に基づいて読み取りデータをフィルタリングしたい場合は、[制限付エンティティセレクション](entities.md#制限付エンティティセレクション) の利用がより適切かもしれません。 ::: @@ -74,11 +74,11 @@ Webユーザーまたは RESTユーザーがログインすると、そのセッ ## 権限とロール -**権限** とは、**リソース** に対して **アクション** を実行する技術的な能力であり、**ロール** は、管理者が使用するために公開された権限のことです。 基本的にロールとは、ビジネスユーザーのプロフィールを定義するためにいくつかの権限を集めたものです。 たとえば、"manageInvoices" (請求書管理) は権限の例で、"secretary" (秘書) は ("manageInvoices" および他の権限を持つ) ロールの例です。 +**権限** とは、**リソース** に対して **アクション** を実行する技術的な能力であり、**ロール** は、管理者が使用するために公開された権限のことです。 基本的にロールとは、ビジネスユーザーのプロフィールを定義するためにいくつかの権限を集めたものです。 たとえば、"manageInvoices" (請求書管理) は権限の例で、"secretary" (秘書) は ("manageInvoices" および他の権限を持つ) ロールの例です。 基本的にロールとは、ビジネスユーザーのプロフィールを定義するためにいくつかの権限を集めたものです。 たとえば、"manageInvoices" (請求書管理) は権限の例で、"secretary" (秘書) は ("manageInvoices" および他の権限を持つ) ロールの例です。 権限は、複数の "リソース+アクション" の組み合わせと関連付けることができます。 また、一つのアクションに複数の権限を関連付けることができます。 権限は、他の権限を含むことができます。 -- 権限やロールの **作成** は `roles.json` ファイル内にておこないます (後述参照)。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 +- 権限やロールの **作成** は `roles.json` ファイル内にておこないます (後述参照)。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 - 各ユーザーセッションに権限やロールを **許可** するには、`Session` クラスの [`.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数を使用します。 @@ -153,17 +153,20 @@ exposed Function authenticate($identifier : Text; $password : Text)->$result : T ``` -最高レベルのセキュリティのため、データストア ("ds") のすべての許諾アクションに "none" の権限名が割り当てられています。したがって、デフォルトでは `ds` オブジェクト全体へのデータアクセスが無効になっています。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 +最高レベルのセキュリティのため、データストア ("ds") のすべての許諾アクションに "none" の権限名が割り当てられています。したがって、デフォルトでは `ds` オブジェクト全体へのデータアクセスが無効になっています。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 :::caution -`roles.json` ファイルに特定のパラメーターが定義されていない場合、アクセスは制限されません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 +`roles.json` ファイルに特定のパラメーターが定義されていない場合、アクセスは制限されません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 ::: :::note 互換性 -以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 4D 20 R6 以降、`roles.json`ファイルを含まない、または `"forceLogin": true` の設定が含まれていない既存のプロジェクトを開く場合、[設定ダイアログボックスの **Web機能** ページ](../settings/web.md#アクセス権) で **ds.authentify() 関数を通しての REST認証を有効化** ボタンが利用可能になります。 このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 4D 20 R6 以降、`roles.json`ファイルを含まない、または `"forceLogin": true` の設定が含まれていない既存のプロジェクトを開く場合、[設定ダイアログボックスの **Web機能** ページ](../settings/web.md#アクセス権) で **ds.authentify() 関数を通しての REST認証を有効化** ボタンが利用可能になります。 このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +::: このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +::: このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +::: このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 ::: :::note Qodly Studio @@ -206,11 +209,11 @@ Qodly Studio for 4D では、権限パネルの [**強制ログイン**オプシ ### `Roles_Errors.json` ファイル -`roles.json` ファイルは、4D 起動時に解析されます。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 +`roles.json` ファイルは、4D 起動時に解析されます。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 -`roles.json` ファイルを解析する際にエラーが発生した場合、4D はプロジェクトを読み込みますが、グローバルアクセス保護は無効になります。これにより、開発者はエラー修正のためファイルにアクセスすることができます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 +`roles.json` ファイルを解析する際にエラーが発生した場合、4D はプロジェクトを読み込みますが、グローバルアクセス保護は無効になります。これにより、開発者はエラー修正のためファイルにアクセスすることができます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 -`Roles_Errors.json` ファイルが [Logs フォルダー](../Project/architecture.md#logs) に存在するかどうか、起動時に確認することをお勧めします。存在する場合、解析エラーが発生し、アクセスが制限されないことを意味します。 たとえば、次のように書くことができます: +`Roles_Errors.json` ファイルが [Logs フォルダー](../Project/architecture.md#logs) に存在するかどうか、起動時に確認することをお勧めします。存在する場合、解析エラーが発生し、アクセスが制限されないことを意味します。 たとえば、次のように書くことができます: たとえば、次のように書くことができます: たとえば、次のように書くことができます: たとえば、次のように書くことができます: ```4d title="/Sources/DatabaseMethods/onStartup.4dm" If (Not(File("/LOGS/"+"Roles_Errors.json").exists)) @@ -224,7 +227,7 @@ End if ## 権限設定の例 -グッドプラクティスは、"none" 権限によってすべてのデータアクセスをデフォルトでロックしておき、`roles.json` ファイルを設定して、許可されたセッションにのみ限定的に一部を開放することです。 たとえば、制限されたアクセスをゲストセッションに対して許可する場合: +グッドプラクティスは、"none" 権限によってすべてのデータアクセスをデフォルトでロックしておき、`roles.json` ファイルを設定して、許可されたセッションにのみ限定的に一部を開放することです。 たとえば、制限されたアクセスをゲストセッションに対して許可する場合: たとえば、制限されたアクセスをゲストセッションに対して許可する場合: たとえば、制限されたアクセスをゲストセッションに対して許可する場合: たとえば、制限されたアクセスをゲストセッションに対して許可する場合: ```json title="/Project/Sources/roles.json" diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/remoteDatastores.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/remoteDatastores.md index 0ee54f1ebdc20d..bffc0741c1c1a6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/remoteDatastores.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/ORDA/remoteDatastores.md @@ -7,13 +7,13 @@ title: リモートデータストア ローカルの 4Dアプリケーションは、[`Open datastore`](../API/DataStoreClass.md#open-datastore) コマンドを呼び出すことで、リモートデータストアに接続し参照します。 -リモートマシン上で、4D は [セッション](../WebServer/sessions.md) を開いて、`Open datastore` を呼び出したアプリケーションからのリクエストを処理します。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 +リモートマシン上で、4D は [セッション](../WebServer/sessions.md) を開いて、`Open datastore` を呼び出したアプリケーションからのリクエストを処理します。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 ## Webセッションの使用 [`Open datastore`](../API/DataStoreClass.md#open-datastore) コマンドによって参照されるリモートデータストアの場合、リクエスト元プロセスとの接続はリモートマシン上では [Webセッション](../WebServer/sessions.md) により管理されます。 -リモートデータストア上で作成される Webセッションは内部的にセッションID によって識別され、4Dアプリケーション上では `localID` と紐づいています。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 +リモートデータストア上で作成される Webセッションは内部的にセッションID によって識別され、4Dアプリケーション上では `localID` と紐づいています。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 `localID` はリモートデータストアに接続しているマシンにおけるローカルな識別IDです: @@ -39,7 +39,7 @@ title: リモートデータストア ## セッションの終了 -[セッションの有効期限](../WebServer/sessions.md#セッションの有効期限) の段落で説明されているように、アクティビティなしにタイムアウト時間が経過すると、4D は自動的にセッションを終了します。 デフォルトのタイムアウト時間は 60分です。 *Open datastore* コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 +[セッションの有効期限](../WebServer/sessions.md#セッションの有効期限) の段落で説明されているように、アクティビティなしにタイムアウト時間が経過すると、4D は自動的にセッションを終了します。 デフォルトのタイムアウト時間は 60分です。 *Open datastore* コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 デフォルトのタイムアウト時間は 60分です。 *Open datastore* コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 デフォルトのタイムアウト時間は 60分です。 *Open datastore* コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 デフォルトのタイムアウト時間は 60分です。 *Open datastore* コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 セッション終了後にリクエストがリモートデータストアに送信された場合、セッションは可能な限り (ライセンスがあり、サーバーが停止していない、など) 再開されます。 ただしセッションが再開しても、ロックやトランザクションに関わるコンテキストは失われていることに留意が必要です (後述参照)。 @@ -47,10 +47,11 @@ title: リモートデータストア エンティティロッキングやトランザクションに関連した ORDA 機能は、ORDA のクライアント / サーバーモードと同様に、リモートデータストアにおいてもプロセスレベルで管理されます: -- あるプロセスがリモートデータストアのエンティティをロックした場合、セッションの共有如何に関わらず、他のすべてのプロセスに対してそのエンティティはロックされた状態です ([エンティティロッキング](entities.md#エンティティロッキング) 参照)。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 -- トランザクションは `dataStore.startTransaction( )`、`dataStore.cancelTransaction( )`、`dataStore.validateTransaction( )` のメソッドを使って、リモートデータストアごとに個別に開始・認証・キャンセルすることができます。 これらの操作は他のデータストアには影響しません。 +- あるプロセスがリモートデータストアのエンティティをロックした場合、セッションの共有如何に関わらず、他のすべてのプロセスに対してそのエンティティはロックされた状態です ([エンティティロッキング](entities.md#エンティティロッキング) 参照)。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 +- トランザクションは `dataStore.startTransaction( )`、`dataStore.cancelTransaction( )`、`dataStore.validateTransaction( )` のメソッドを使って、リモートデータストアごとに個別に開始・認証・キャンセルすることができます。 これらの操作は他のデータストアには影響しません。 これらの操作は他のデータストアには影響しません。 これらの操作は他のデータストアには影響しません。 これらの操作は他のデータストアには影響しません。 - 従来の 4Dランゲージコマンド (`START TRANSACTION`, `VALIDATE TRANSACTION`, `CANCEL TRANSACTION`) は `ds` で返されるメインデータストアに対してのみ動作します。 リモートデータストアのエンティティがあるプロセスのトランザクションで使われている場合、セッションの共有如何に関わらず、他のすべてのプロセスはそのエンティティを更新できません。 + リモートデータストアのエンティティがあるプロセスのトランザクションで使われている場合、セッションの共有如何に関わらず、他のすべてのプロセスはそのエンティティを更新できません。 - 次の場合にエンティティのロックは解除され、トランザクションはキャンセルされます: - プロセスが強制終了された - サーバー上でセッションが閉じられた diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Project/components.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Project/components.md index 4de02e167329c5..fdd76ccac9198c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Project/components.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R6/Project/components.md @@ -3,9 +3,9 @@ id: components title: コンポーネント --- -4D のコンポーネントとは、プロジェクトに追加可能な、1つ以上の機能を持つ 4Dコードや 4Dフォームの一式です。 たとえば、[4D SVG](https://github.com/4d/4D-SVG)コンポーネント は、SVGファイルの表示するための高度なコマンドと統合されたレンダリングエンジンを追加します。 +4D のコンポーネントとは、プロジェクトに追加可能な、1つ以上の機能を持つ 4Dコードや 4Dフォームの一式です。 4D のコンポーネントとは、プロジェクトに追加可能な、1つ以上の機能を持つ 4Dコードや 4Dフォームの一式です。 たとえば、[4D SVG](https://github.com/4d/4D-SVG)コンポーネント は、SVGファイルの表示するための高度なコマンドと統合されたレンダリングエンジンを追加します。 -独自の 4Dコンポーネントを [開発](../Extensions/develop-components.md) し、[ビルド](../Desktop/building.md) することもできますし、4Dコミュニティによって共有されているパブリックコンポーネントを [GitHubで見つけて](https://github.com/search?q=4d-component\&type=Repositories) ダウンロードすることもできます。 +独自の 4Dコンポーネントを [開発](../Extensions/develop-components.md) し、[ビルド](../Desktop/building.md) することもできますし、4Dコミュニティによって共有されているパブリックコンポーネントを [GitHubで見つけて](https://github.com/search?q=4d-component\\&type=Repositories) ダウンロードすることもできます。 4D で開発する際、コンポーネントファイルはコンピューター上または Githubリポジトリ上に、透過的に保存することができます。 @@ -16,13 +16,13 @@ Components can be interpreted or [compiled](../Desktop/building.md). コンポ - プロジェクトフォルダー (インタープリターのコンポーネント) - または .4DZ ファイル (コンパイル済みコンポーネント) -インタープリターモードで動作する 4Dプロジェクトは、インタープリターまたはコンパイル済みどちらのコンポーネントも使用できます。 コンパイルモードで実行される 4Dプロジェクトでは、インタープリターのコンポーネントを使用できません。 この場合、コンパイル済みコンポーネントのみが利用可能です。 +インタープリターモードで動作する 4Dプロジェクトは、インタープリターまたはコンパイル済みどちらのコンポーネントも使用できます。 コンパイルモードで実行される 4Dプロジェクトでは、インタープリターのコンポーネントを使用できません。 この場合、コンパイル済みコンポーネントのみが利用可能です。 この場合、コンパイル済みコンポーネントのみが利用可能です。 ## コンポーネントの読み込み :::note -このページでは、**4D** と **4D Server** 環境でのコンポーネントの使用方法について説明します。 他の環境では、コンポーネントの管理は異なります: +このページでは、**4D** と **4D Server** 環境でのコンポーネントの使用方法について説明します。 他の環境では、コンポーネントの管理は異なります: 他の環境では、コンポーネントの管理は異なります: - [リモートモードの 4D](../Desktop/clientServer.md) では、サーバーがコンポーネントを読み込み、リモートアプリケーションに送信します。 - 統合されたアプリケーションでは、コンポーネントは [ビルドする際に組み込まれます](../Desktop/building.md#プラグインコンポーネントページ)。 @@ -48,7 +48,7 @@ Components can be interpreted or [compiled](../Desktop/building.md). コンポ #### dependencies.json -**dependencies.json** ファイルは、4Dプロジェクトに必要なすべてのコンポーネントを宣言します。 このファイルは、4Dプロジェクトフォルダーの **Sources** フォルダーに置く必要があります。例: +**dependencies.json** ファイルは、4Dプロジェクトに必要なすべてのコンポーネントを宣言します。 このファイルは、4Dプロジェクトフォルダーの **Sources** フォルダーに置く必要があります。例: このファイルは、4Dプロジェクトフォルダーの **Sources** フォルダーに置く必要があります。例: ``` /MyProjectRoot/Project/Sources/dependencies.json @@ -175,7 +175,7 @@ GitHub に保存されているコンポーネントは [**dependencies.json** } ``` -... 上記の場合、"myGitHubComponent1" は宣言とパス定義の両方がされていますが、"myComponent2" は宣言されているだけです。 そのため、[**environment4d.json**](#environment4djson) ファイルにパスを定義する必要があります: +... 上記の場合、"myGitHubComponent1" は宣言とパス定義の両方がされていますが、"myComponent2" は宣言されているだけです。 **environment4d.json** ファイルは必須ではありません。 このファイルは、**dependencies.json** ファイル内で宣言された一部またはすべてのコンポーネントのついて、**カスタムパス** を定義するのに使用します。 このファイルは、プロジェクトパッケージフォルダーまたはその親フォルダーのいずれかに保存することができます (ルートまでの任意のレベル)。 ```json { @@ -193,7 +193,7 @@ GitHub に保存されているコンポーネントは [**dependencies.json** GitHub ではリリースを作成するときに、**タグ** と **バージョン** を指定します。 -- **タグ** はリリースを一意に参照するテキストです。 [**dependencies.json** ファイル](#dependencyjson) および [**environment4d.json**](#environment4djson) ファイルでは、プロジェクトで使用するリリースタグを指定することができます。 たとえば: +- **タグ** はリリースを一意に参照するテキストです。 **タグ** はリリースを一意に参照するテキストです。 [**dependencies.json** ファイル](#dependencyjson) および [**environment4d.json**](#environment4djson) ファイルでは、プロジェクトで使用するリリースタグを指定することができます。 たとえば: たとえば: ```json { @@ -206,7 +206,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ } ``` -- リリースは **バージョン** によっても識別されます。 使用されるバージョニング方法は、最も一般的に使用される *セマンティックバージョニング* のコンセプトに基づいています。 各バージョン番号は次のように識別されます: `majorNumber.minorNumber.pathNumber`。 タグと同様に、プロジェクトで使用したいコンポーネントのバージョンを指定することができます。例: +- リリースは **バージョン** によっても識別されます。 使用されるバージョニング方法は、最も一般的に使用される *セマンティックバージョニング* のコンセプトに基づいています。 各バージョン番号は次のように識別されます: `majorNumber.minorNumber.pathNumber`。 各バージョン番号は次のように識別されます: `majorNumber.minorNumber.pathNumber`。 タグと同様に、プロジェクトで使用したいコンポーネントのバージョンを指定することができます。例: ```json { @@ -219,7 +219,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ } ``` -バージョンは、使用できるバージョンを定義するために使用します。 [標準的なセマンティックバージョン](https://regex101.com/r/Ly7O1x/3/) を使用します。 範囲は、最小値と最大値を示す 2つのセマンティックバージョンと演算子 ('`< | > | >= | <= | =`') で定義します。 `*` はすべてのバージョンのプレースホルダーとして使用できます。 ~ および ^ の接頭辞は、数字で始まるバージョンを定義し、それぞれ次のメジャーバージョンおよびマイナーバージョンまでの範囲を示します。 +バージョンは、使用できるバージョンを定義するために使用します。 [標準的なセマンティックバージョン](https://regex101.com/r/Ly7O1x/3/) を使用します。 範囲は、最小値と最大値を示す 2つのセマンティックバージョンと演算子 ('`< | > | >= | <= | =`') で定義します。 `*` はすべてのバージョンのプレースホルダーとして使用できます。 ~ および ^ の接頭辞は、数字で始まるバージョンを定義し、それぞれ次のメジャーバージョンおよびマイナーバージョンまでの範囲を示します。 `*` はすべてのバージョンのプレースホルダーとして使用できます。 ~ および ^ の接頭辞は、数字で始まるバージョンを定義し、それぞれ次のメジャーバージョンおよびマイナーバージョンまでの範囲を示します。 以下にいくつかの例を示します: @@ -265,7 +265,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ #### 依存関係のローカルキャッシュ -参照された GitHubコンポーネントはローカルのキャッシュフォルダーにダウンロードされ、その後環境に読み込まれます。 ローカルキャッシュフォルダーは以下の場所に保存されます: +参照された GitHubコンポーネントはローカルのキャッシュフォルダーにダウンロードされ、その後環境に読み込まれます。 ローカルキャッシュフォルダーは以下の場所に保存されます: ローカルキャッシュフォルダーは以下の場所に保存されます: - macOs: `$HOME/Library/Caches//Dependencies` - Windows: `C:\Users\\AppData\Local\\Dependencies` @@ -296,7 +296,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ ### 依存関係のオリジン -依存関係パネルには、各依存関係のオリジン (由来) にかかわらず、プロジェクトの依存関係すべてがリストされます。 依存関係のオリジンは、名前の下に表示されるタグによって判断することができます: +依存関係パネルには、各依存関係のオリジン (由来) にかかわらず、プロジェクトの依存関係すべてがリストされます。 依存関係のオリジンは、名前の下に表示されるタグによって判断することができます: 依存関係のオリジンは、名前の下に表示されるタグによって判断することができます: ![dependency-origin](../assets/en/Project/dependency-origin.png) diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md index 63217c023f155d..832073d8d1e448 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md @@ -3,7 +3,7 @@ id: DataClassClass title: DataClass --- -[データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 4Dアプリケーション内のデータクラスはすべて、`ds` [データストア](ORDA/dsMapping.md#データストア) のプロパティとして利用可能です。 +[データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 [データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 [データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 4Dアプリケーション内のデータクラスはすべて、`ds` [データストア](ORDA/dsMapping.md#データストア) のプロパティとして利用可能です。 [データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 [データクラス](ORDA/dsMapping.md#データクラス) はデータベーステーブルへのオブジェクトインターフェースを提供します。 4Dアプリケーション内のデータクラスはすべて、`ds` [データストア](ORDA/dsMapping.md#データストア) のプロパティとして利用可能です。 ### 概要 @@ -50,23 +50,23 @@ title: DataClass 返される属性オブジェクトには以下のプロパティが格納されています: -| プロパティ | 型 | 説明 | -| ---------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| autoFilled | Boolean | 属性値が 4D によって自動生成される場合に true です。 このプロパティは次の 4Dフィールドプロパティに対応しています: 数値型フィールドの "自動インクリメント" および UUID (文字型)フィールドの "自動UUID"。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | -| exposed | Boolean | 属性が REST で公開されている場合に trueです | -| fieldNumber | integer | 属性の内部的な 4Dフィールド番号。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | -| fieldType | Integer | 属性の 4Dデータベースフィールドタイプ。 これは属性の種類 (`kind`) によります。 とりうる値:
  • `.kind` = "storage" の場合は、対応する 4Dフィールドタイプ ([`Value type`](https://doc.4d.com/4dv20/help/command/ja/page1509.html) 参照)
  • `.kind` = "relatedEntity" の場合: 38 (`is object`)
  • `.kind` = "relatedEntities" の場合: 42 (`is collection`)
  • `.kind` = "calculated" または "alias" の場合: 結果の値 (フィールドタイプ、relatedEntity または relatedEntities) に応じて、上に同じ
  • | -| indexed | Boolean | 属性に対して B-tree もしくは クラスターB-Tree インデックスが設定されている場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | -| inverseName | Text | リレーション先の属性名。 `.kind` = "relatedEntity" または "relatedEntities" の場合にのみ返されます。 | -| keywordIndexed | Boolean | 属性にキーワードインデックスが存在すれば true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | -| kind | Text | 属性の種類。 とりうる値:
  • "storage": ストレージ (あるいはスカラー) 属性。つまり、属性は値を保存しており、他の属性への参照ではありません。
  • "calculated": 計算属性。[`get`](../ORDA/ordaClasses.md#function-get-attributename) 関数 によって定義されます。
  • "alias": [他の属性](../ORDA/ordaClasses.md#エイリアス属性-1) を指し示す属性。
  • "relatedEntity": N対1 リレーション属性 (エンティティへの参照)
  • "relatedEntities": 1対N リレーション属性 (エンティティセレクションへの参照)
  • | -| 必須 | Boolean | 属性において Null値の入力が拒否されている場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 注記: このプロパティは、4Dデータベースレベルの "Null値の入力を拒否" フィールドプロパティと対応しています。 フィールドのデータ入力制御オプションである既存の "必須入力" プロパティとは無関係です。 | -| name | Text | 属性名 (文字列) | -| path | Text | リレーションに基づく [エイリアス属性](../ORDA/ordaClasses.md#エイリアス属性-1) のパス。 | -| readOnly | Boolean | 読み取り専用属性の場合に trueです。 たとえば、[`set` 関数](../ORDA/ordaClasses.md#function-set-attributename) を持たない計算属性は読み取り専用です。 | -| relatedDataClass | Text | 属性にリレートされているデータクラスの名称。 `.kind` = "relatedEntity" または "relatedEntities" の場合にのみ返されます。 | -| type | Text | 属性の概念的な値タイプ。汎用的なプログラミングに有用です。 これは属性の種類 (`kind`) によります。 とりうる値:
  • `.kind` = "storage" の場合: "blob", "bool", "date", "image", "number", "object", または "string"。 数値型の場合 "number" が返されます (時間を含む)。UUID、文字およびテキスト型フィールドの場合 "string" が返されます。"blob" 属性は [BLOB オブジェクト](../Concepts/dt_blob.md#blob-の種類) です。
  • `.kind` = "relatedEntity" の場合: リレートされたデータクラス名
  • `.kind` = "relatedEntities" の場合: リレートされたデータクラス名 + "Selection" 接尾辞
  • `.kind` = "calculated" または "alias" の場合: 結果の値に応じて、上に同じ
  • | -| unique | Boolean | 属性値が重複不可の場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | +| プロパティ | 型 | 説明 | +| ---------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| autoFilled | Boolean | 属性値が 4D によって自動生成される場合に true です。 このプロパティは次の 4Dフィールドプロパティに対応しています: 数値型フィールドの "自動インクリメント" および UUID (文字型)フィールドの "自動UUID"。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 このプロパティは次の 4Dフィールドプロパティに対応しています: 数値型フィールドの "自動インクリメント" および UUID (文字型)フィールドの "自動UUID"。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 このプロパティは次の 4Dフィールドプロパティに対応しています: 数値型フィールドの "自動インクリメント" および UUID (文字型)フィールドの "自動UUID"。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 このプロパティは次の 4Dフィールドプロパティに対応しています: 数値型フィールドの "自動インクリメント" および UUID (文字型)フィールドの "自動UUID"。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | +| exposed | Boolean | 属性が REST で公開されている場合に trueです | +| fieldNumber | integer | 属性の内部的な 4Dフィールド番号。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | +| fieldType | Integer | 属性の 4Dデータベースフィールドタイプ。 これは属性の種類 (`kind`) によります。 属性の 4Dデータベースフィールドタイプ。 これは属性の種類 (`kind`) によります。 属性の 4Dデータベースフィールドタイプ。 これは属性の種類 (`kind`) によります。 属性の 4Dデータベースフィールドタイプ。 これは属性の種類 (`kind`) によります。 とりうる値:
  • `.kind` = "storage" の場合は、対応する 4Dフィールドタイプ ([`Value type`](https://doc.4d.com/4dv20/help/command/ja/page1509.html) 参照)
  • `.kind` = "relatedEntity" の場合: 38 (`is object`)
  • `.kind` = "relatedEntities" の場合: 42 (`is collection`)
  • `.kind` = "calculated" または "alias" の場合: 結果の値 (フィールドタイプ、relatedEntity または relatedEntities) に応じて、上に同じ
  • | +| indexed | Boolean | 属性に対して B-tree もしくは クラスターB-Tree インデックスが設定されている場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | +| inverseName | Text | リレーション先の属性名。 `.kind` = "relatedEntity" または "relatedEntities" の場合にのみ返されます。 | +| keywordIndexed | Boolean | 属性にキーワードインデックスが存在すれば true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | +| kind | Text | 属性の種類。 属性の種類。 属性の種類。 属性の種類。 とりうる値:
  • "storage": ストレージ (あるいはスカラー) 属性。つまり、属性は値を保存しており、他の属性への参照ではありません。
  • "calculated": 計算属性。[`get`](../ORDA/ordaClasses.md#function-get-attributename) 関数 によって定義されます。
  • "alias": [他の属性](../ORDA/ordaClasses.md#エイリアス属性-1) を指し示す属性。
  • "relatedEntity": N対1 リレーション属性 (エンティティへの参照)
  • "relatedEntities": 1対N リレーション属性 (エンティティセレクションへの参照)
  • | +| 必須 | Boolean | 属性において Null値の入力が拒否されている場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 注記: このプロパティは、4Dデータベースレベルの "Null値の入力を拒否" フィールドプロパティと対応しています。 フィールドのデータ入力制御オプションである既存の "必須入力" プロパティとは無関係です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 注記: このプロパティは、4Dデータベースレベルの "Null値の入力を拒否" フィールドプロパティと対応しています。 フィールドのデータ入力制御オプションである既存の "必須入力" プロパティとは無関係です。 | +| name | Text | 属性名 (文字列) | +| path | Text | リレーションに基づく [エイリアス属性](../ORDA/ordaClasses.md#エイリアス属性-1) のパス。 | +| readOnly | Boolean | 読み取り専用属性の場合に trueです。 読み取り専用属性の場合に trueです。 たとえば、[`set` 関数](../ORDA/ordaClasses.md#function-set-attributename) を持たない計算属性は読み取り専用です。 読み取り専用属性の場合に trueです。 たとえば、[`set` 関数](../ORDA/ordaClasses.md#function-set-attributename) を持たない計算属性は読み取り専用です。 読み取り専用属性の場合に trueです。 たとえば、[`set` 関数](../ORDA/ordaClasses.md#function-set-attributename) を持たない計算属性は読み取り専用です。 | +| relatedDataClass | Text | 属性にリレートされているデータクラスの名称。 リレーション先の属性名。 `.kind` = "relatedEntity" または "relatedEntities" の場合にのみ返されます。 | +| type | Text | 属性の概念的な値タイプ。汎用的なプログラミングに有用です。 これは属性の種類 (`kind`) によります。 とりうる値:
  • `.kind` = "storage" の場合: "blob", "bool", "date", "image", "number", "object", または "string"。 属性の概念的な値タイプ。汎用的なプログラミングに有用です。 これは属性の種類 (`kind`) によります。 とりうる値:
  • `.kind` = "storage" の場合: "blob", "bool", "date", "image", "number", "object", または "string"。 数値型の場合 "number" が返されます (時間を含む)。UUID、文字およびテキスト型フィールドの場合 "string" が返されます。"blob" 属性は [BLOB オブジェクト](../Concepts/dt_blob.md#blob-の種類) です。
  • `.kind` = "relatedEntity" の場合: リレートされたデータクラス名
  • `.kind` = "relatedEntities" の場合: リレートされたデータクラス名 + "Selection" 接尾辞
  • `.kind` = "calculated" または "alias" の場合: 結果の値に応じて、上に同じ
  • | +| unique | Boolean | 属性値が重複不可の場合に true です。 `.kind` が "relatedEntity" または "relatedEntities" の場合には、このプロパティは返されません。 | :::tip @@ -148,7 +148,7 @@ var $firstnameAtt;$employerAtt;$employeesAtt : Object `.all()` 関数はデータストアをクエリして、 データクラスの全エンティティをエンティティセレクションとして返します。 -エンティティはデフォルトの順番で返され、通常は作成順になっています。 ただし、エンティティ削除後に新規追加した場合には、デフォルトの順番は作成順を反映しない点に留意が必要です。 +エンティティはデフォルトの順番で返され、通常は作成順になっています。 エンティティはデフォルトの順番で返され、通常は作成順になっています。 エンティティはデフォルトの順番で返され、通常は作成順になっています。 ただし、エンティティ削除後に新規追加した場合には、デフォルトの順番は作成順を反映しない点に留意が必要です。 エンティティが見つからない場合、空のエンティティセレクションが返されます。 @@ -156,7 +156,7 @@ var $firstnameAtt;$employerAtt;$employeesAtt : Object **settings** -任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: +任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: | プロパティ | 型 | 説明 | | ------- | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | @@ -258,40 +258,40 @@ $ds.Persons.clearRemoteCache() `.fromCollection()` 関数は、*objectCol* 引数のオブジェクトのコレクションに基づいてデータクラスのエンティティを更新あるいは作成し、対応するエンティティセレクションを返します。 -*objectCol* パラメーターには、データクラスの既存エンティティを更新、または新規エンティティを作成するためのオブジェクトのコレクションを渡します。 プロパティ名は、データクラスの属性名と同一である必要があります。 プロパティ名がデータクラスに存在しない場合、それは無視されます。 コレクション内で属性値が定義されていない場合、その値は null になります。 +*objectCol* パラメーターには、データクラスの既存エンティティを更新、または新規エンティティを作成するためのオブジェクトのコレクションを渡します。 プロパティ名は、データクラスの属性名と同一である必要があります。 プロパティ名がデータクラスに存在しない場合、それは無視されます。 コレクション内で属性値が定義されていない場合、その値は null になります。 プロパティ名は、データクラスの属性名と同一である必要があります。 プロパティ名がデータクラスに存在しない場合、それは無視されます。 コレクション内で属性値が定義されていない場合、その値は null になります。 プロパティ名は、データクラスの属性名と同一である必要があります。 プロパティ名がデータクラスに存在しない場合、それは無視されます。 コレクション内で属性値が定義されていない場合、その値は null になります。 プロパティ名は、データクラスの属性名と同一である必要があります。 プロパティ名がデータクラスに存在しない場合、それは無視されます。 コレクション内で属性値が定義されていない場合、その値は null になります。 -コレクションのオブジェクト要素とエンティティのマッピングは、**属性名** と **型の合致** をもって行われます。 オブジェクトプロパティがエンティティ属性と同じ名前であっても、型が合致しない場合には、エンティティの属性は空のままです。 +コレクションのオブジェクト要素とエンティティのマッピングは、**属性名** と **型の合致** をもって行われます。 オブジェクトプロパティがエンティティ属性と同じ名前であっても、型が合致しない場合には、エンティティの属性は空のままです。 オブジェクトプロパティがエンティティ属性と同じ名前であっても、型が合致しない場合には、エンティティの属性は空のままです。 オブジェクトプロパティがエンティティ属性と同じ名前であっても、型が合致しない場合には、エンティティの属性は空のままです。 **作成モードと更新モード** *objectCol* 引数の各オブジェクトついて: -- オブジェクトがブール型の "\_\*NEW" プロパティを含み、それが false に設定されている場合(あるいは "\*\_NEW" プロパティが含まれていない場合)、オブジェクトの対応する値でエンティティが更新あるいは作成されます。 プライマリーキーに関するチェックはおこなわれません: - - プライマリーキーが指定されていて実在する場合、エンティティは更新されます。 この場合、プライマリーキーはそのまま、あるいは "\_\_KEY" プロパティを (プライマリーキー値とともに) 使って指定することができます。 +- オブジェクトがブール型の "\_\*NEW" プロパティを含み、それが false に設定されている場合(あるいは "\*\_NEW" プロパティが含まれていない場合)、オブジェクトの対応する値でエンティティが更新あるいは作成されます。 プライマリーキーに関するチェックはおこなわれません: プライマリーキーに関するチェックはおこなわれません: プライマリーキーに関するチェックはおこなわれません: + - プライマリーキーが指定されていて実在する場合、エンティティは更新されます。 プライマリーキーが指定されていて実在する場合、エンティティは更新されます。 この場合、プライマリーキーはそのまま、あるいは "\_\*KEY" プロパティを (プライマリーキー値とともに) 使って指定することができます。 プライマリーキーが指定されていて実在する場合、エンティティは更新されます。 この場合、プライマリーキーはそのまま、あるいは "\*\_KEY" プロパティを (プライマリーキー値とともに) 使って指定することができます。 - そのまま指定したプライマリーキーが実在しない場合、エンティティは作成されます。 - プライマリーキーを指定していない場合、エンティティは作成され、標準のデータベースのルールに基づいてプライマリーキー値が割り当てられます。 -- オブジェクトがブール型の "\_\_NEW" プロパティを含み、それが **true** に設定されている場合、オブジェクトの対応する値でエンティティが作成されます。 プライマリーキーに関するチェックがおこなわれます: +- オブジェクトがブール型の "\_\_NEW" プロパティを含み、それが **true** に設定されている場合、オブジェクトの対応する値でエンティティが作成されます。 プライマリーキーに関するチェックがおこなわれます: プライマリーキーに関するチェックがおこなわれます: プライマリーキーに関するチェックがおこなわれます: プライマリーキーに関するチェックがおこなわれます: - そのまま指定したプライマリーキーが実在する場合、エラーが返されます。 - そのまま指定したプライマリーキーが実在しない場合、エンティティは作成されます。 - プライマリーキーを指定していない場合、エンティティは作成され、標準のデータベースのルールに基づいてプライマリーキー値が割り当てられます。 -> 値を持つ "\_\*KEY" プロパティは、"\*\*NEW" プロパティが **false** に設定 (あるいは省略) されていて、かつ対応するエンティティが存在する場合のみ、考慮されます。 それ以外の場合には、"\*\_KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 +> 値を持つ "\_\*KEY" プロパティは、"\*\*NEW" プロパティが **false** に設定 (あるいは省略) されていて、かつ対応するエンティティが存在する場合のみ、考慮されます。 それ以外の場合には、"\*\*KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 値を持つ "\*\*KEY" プロパティは、"\*\*NEW" プロパティが **false** に設定 (あるいは省略) されていて、かつ対応するエンティティが存在する場合のみ、考慮されます。 それ以外の場合には、"\*\*KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 それ以外の場合には、"\*\*KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 値を持つ "\*\*KEY" プロパティは、"\*\*NEW" プロパティが **false** に設定 (あるいは省略) されていて、かつ対応するエンティティが存在する場合のみ、考慮されます。 それ以外の場合には、"\*\*KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 それ以外の場合には、"\*\_KEY" プロパティ値は無視されるため、プライマリーキーの値はそのまま渡さなければなりません。 **リレートエンティティズ** (複数) *objectCol* 引数のオブジェクトは、一つ以上のリレートエンティティに対応するオブジェクトをネストすることができます。これはエンティティ間のリンクを作成・更新するのに有用です。 -リレートエンティティに相当するネストされたオブジェクトは、リレートエンティティのプライマリーキー値を格納した "\_\*KEY" プロパティあるいはプライマリーキー属性を格納している必要があります。 ”\*\_KEY” プロパティを使用すると、プライマリーキー属性名に依存する必要がありません。 +リレートエンティティに相当するネストされたオブジェクトは、リレートエンティティのプライマリーキー値を格納した "\_\*KEY" プロパティあるいはプライマリーキー属性を格納している必要があります。 ”\*\*KEY” プロパティを使用すると、プライマリーキー属性名に依存する必要がありません。 ”\*\*KEY” プロパティを使用すると、プライマリーキー属性名に依存する必要がありません。 ”\*\_KEY” プロパティを使用すると、プライマリーキー属性名に依存する必要がありません。 > この機構によって、リレートエンティティの中身を作成・更新することはできません。 **スタンプ** -"\_\_STAMP" プロパティが指定された場合、データストアのスタンプとのチェックがおこなわれ、エラーが返されることがあります ("与えられたスタンプはテーブルXXX のレコード# XXのカレントのものと合致しません")。 詳細については [エンティティロッキング](ORDA/entities.md#エンティティロッキング) を参照ください。 +"\_\_STAMP" プロパティが指定された場合、データストアのスタンプとのチェックがおこなわれ、エラーが返されることがあります ("与えられたスタンプはテーブルXXX のレコード# XXのカレントのものと合致しません")。 詳細については [エンティティロッキング](ORDA/entities.md#エンティティロッキング) を参照ください。 詳細については [エンティティロッキング](ORDA/entities.md#エンティティロッキング) を参照ください。 詳細については [エンティティロッキング](ORDA/entities.md#エンティティロッキング) を参照ください。 **settings** -任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: +任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: | プロパティ | 型 | 説明 | | ------- | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | @@ -319,7 +319,7 @@ $ds.Persons.clearRemoteCache() #### 例題 2 -既存のエンティティを更新します。 \_\*NEW プロパティはなく、従業員のプライマリーキーは \*\_KEY プロパティに実在の値を指定して渡します: +既存のエンティティを更新します。 既存のエンティティを更新します。 \_\*NEW プロパティはなく、従業員のプライマリーキーは \*\_KEY プロパティに実在の値を指定して渡します: ```4d var $empsCollection : Collection @@ -356,7 +356,7 @@ $ds.Persons.clearRemoteCache() #### 例題 4 -新規エンティティを作成します。 \_\_NEW プロパティは true で、従業員のプライマリーキーは指定しません: +新規エンティティを作成します。 新規エンティティを作成します。 \_\_NEW プロパティは true で、従業員のプライマリーキーは指定しません: ```4d var $empsCollection : Collection @@ -381,7 +381,7 @@ $ds.Persons.clearRemoteCache() #### 例題 5 -新規エンティティを作成します。 \_\_NEW プロパティはなく、従業員のプライマリーキー属性を指定しますが、その値は実在しません: +新規エンティティを作成します。 既存のエンティティを更新します。 \_\_NEW プロパティはなく、従業員のプライマリーキーは属性に実在の値を指定して渡します: ```4d var $empsCollection : Collection @@ -459,7 +459,7 @@ $ds.Persons.clearRemoteCache() `.get()` 関数はデータクラスをクエリして、*primaryKey* に渡したプライマリーキーに合致するエンティティを返します。 -*primaryKey* には、取得したいエンティティのプライマリーキーの値を渡します。 値の型は、データストアで設定されたプライマリーキーの型 (倍長整数あるいはテキスト) と合致している必要があります。 [`.getKey()`](EntityClass.md#getkey) 関数に `dk key as string` 引数を渡すと、プライマリーキーの値が常にテキスト型で返されるように指定することができます。 +*primaryKey* には、取得したいエンティティのプライマリーキーの値を渡します。 値の型は、データストアで設定されたプライマリーキーの型 (倍長整数あるいはテキスト) と合致している必要があります。 *primaryKey* には、取得したいエンティティのプライマリーキーの値を渡します。 値の型は、データストアで設定されたプライマリーキーの型 (倍長整数あるいはテキスト) と合致している必要があります。 [`.getKey()`](EntityClass.md#getkey) 関数に `dk key as string` 引数を渡すと、プライマリーキーの値が常にテキスト型で返されるように指定することができます。 値の型は、データストアで設定されたプライマリーキーの型 (倍長整数あるいはテキスト) と合致している必要があります。 *primaryKey* には、取得したいエンティティのプライマリーキーの値を渡します。 値の型は、データストアで設定されたプライマリーキーの型 (倍長整数あるいはテキスト) と合致している必要があります。 [`.getKey()`](EntityClass.md#getkey) 関数に `dk key as string` 引数を渡すと、プライマリーキーの値が常にテキスト型で返されるように指定することができます。 *primaryKey* 引数のプライマリーキーを持つエンティティが見つからない場合、**Null** エンティティが返されます。 @@ -467,7 +467,7 @@ $ds.Persons.clearRemoteCache() **settings** -任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: +任意の *settings* パラメーターには、追加オプションを格納したオブジェクトを渡すことができます。 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: | プロパティ | 型 | 説明 | | ------- | ---- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | @@ -475,7 +475,7 @@ $ds.Persons.clearRemoteCache() :::info -*settings* パラメーター**なし**で `.get()` 関数を呼び出すと、属性値のリクエストが直接サーバーに送信されます ([ORDAキャッシュ](../ORDA/client-server-optimization.md#ordaキャッシュ) は使用されません)。 一方、*settings* パラメーターを介して `context` を渡す形で `.get()` 関数を呼び出すと、コンテキストに対応する ORDAキャッシュから属性値が取得されます。 この場合、[`reload()`](EntityClass.md#reload) を呼び出して、最新のデータがサーバーから取得されていることを確認することをお勧めします。 +*settings* パラメーター**なし**で `.get()` 関数を呼び出すと、属性値のリクエストが直接サーバーに送信されます ([ORDAキャッシュ](../ORDA/client-server-optimization.md#ordaキャッシュ) は使用されません)。 一方、*settings* パラメーターを介して `context` を渡す形で `.get()` 関数を呼び出すと、コンテキストに対応する ORDAキャッシュから属性値が取得されます。 この場合、[`reload()`](EntityClass.md#reload) を呼び出して、最新のデータがサーバーから取得されていることを確認することをお勧めします。 一方、*settings* パラメーターを介して `context` を渡す形で `.get()` 関数を呼び出すと、コンテキストに対応する ORDAキャッシュから属性値が取得されます。 この場合、[`reload()`](EntityClass.md#reload) を呼び出して、最新のデータがサーバーから取得されていることを確認することをお勧めします。 一方、*settings* パラメーターを介して `context` を渡す形で `.get()` 関数を呼び出すと、コンテキストに対応する ORDAキャッシュから属性値が取得されます。 この場合、[`reload()`](EntityClass.md#reload) を呼び出して、最新のデータがサーバーから取得されていることを確認することをお勧めします。 一方、*settings* パラメーターを介して `context` を渡す形で `.get()` 関数を呼び出すと、コンテキストに対応する ORDAキャッシュから属性値が取得されます。 この場合、[`reload()`](EntityClass.md#reload) を呼び出して、最新のデータがサーバーから取得されていることを確認することをお勧めします。 ::: @@ -635,7 +635,7 @@ $number:=$ds.Persons.getCount() #### 説明 -`.getInfo()` 関数は、 データクラスの情報を提供するオブジェクトを返します。 このメソッドは汎用的なコードを書くのに有用です。 +`.getInfo()` 関数は、 データクラスの情報を提供するオブジェクトを返します。 このメソッドは汎用的なコードを書くのに有用です。 このメソッドは汎用的なコードを書くのに有用です。 このメソッドは汎用的なコードを書くのに有用です。 このメソッドは汎用的なコードを書くのに有用です。 **返されるオブジェクト** @@ -706,7 +706,7 @@ $number:=$ds.Persons.getCount() -> **上級者向け:** この機能は、特定の構成のため、ORDAのデフォルト機能をカスタマイズする必要がある開発者向けです。 ほとんどの場合、使用する必要はないでしょう。 +> **上級者向け:** この機能は、特定の構成のため、ORDAのデフォルト機能をカスタマイズする必要がある開発者向けです。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 #### 説明 @@ -744,11 +744,11 @@ $number:=$ds.Persons.getCount() #### 例題 -次の例で、`$ds.Persons.all()` は、先頭エンティティをそのすべての属性とともにロードします。 その後リクエストの最適化がおこなわれ、`firstname` と `address.city` のみがロードされます。 +次の例で、`$ds.Persons.all()` は、先頭エンティティをそのすべての属性とともにロードします。 その後リクエストの最適化がおこなわれ、`firstname` と `address.city` のみがロードされます。 その後リクエストの最適化がおこなわれ、`firstname` と `address.city` のみがロードされます。 その後リクエストの最適化がおこなわれ、`firstname` と `address.city` のみがロードされます。 `address.city` は、`Persons` データクラスのキャッシュにロードされることに注意してください。 -`Address` データクラスの先頭エンティティだけがキャッシュに格納されます。 先頭エンティティは、ループの最初の繰り返しでロードされます。 +`Address` データクラスの先頭エンティティだけがキャッシュに格納されます。 先頭エンティティは、ループの最初の繰り返しでロードされます。 先頭エンティティは、ループの最初の繰り返しでロードされます。 先頭エンティティは、ループの最初の繰り返しでロードされます。 先頭エンティティは、ループの最初の繰り返しでロードされます。 ```4d var $ds : 4D.DataStoreImplementation @@ -800,7 +800,7 @@ $cacheAddress:=$ds.Adress.getRemoteCache() `.new()` 関数は、メモリ内にデータクラスに空のエンティティを新規作成しそれを返します。 -エンティティオブジェクトはメモリ内に作成されますが、[`.save( )`](EntityClass.md#save) 関数が呼び出されるまでデータベースには保存されません。 エンティティを保存する前に削除した場合、復元することはできません。 +エンティティオブジェクトはメモリ内に作成されますが、[`.save( )`](EntityClass.md#save) 関数が呼び出されるまでデータベースには保存されません。 エンティティを保存する前に削除した場合、復元することはできません。 エンティティを保存する前に削除した場合、復元することはできません。 エンティティを保存する前に削除した場合、復元することはできません。 エンティティを保存する前に削除した場合、復元することはできません。 **4D Server**: クライアント/サーバーにおいては、対応するテーブルのプライマリーキーが自動インクリメントであった場合、エンティティがサーバー側に保存されたときに計算されます。 @@ -850,9 +850,9 @@ $cacheAddress:=$ds.Adress.getRemoteCache() > 追加可能なエンティティセレクションについての詳細は [共有可能/追加可能なエンティティセレクション](ORDA/entities.md#共有可能追加可能なエンティティセレクション) を参照ください。 -順列ありのエンティティセレクションを作成するには、*keepOrder* に `dk keep ordered` セレクターを渡します。 この引数を省略した場合のデフォルト、あるいは `dk non ordered` セレクターを渡した場合には、関数は順列なしのエンティティセレクションを返します。 順列なしのエンティティセレクションの方が速いですが、エンティティの位置に頼ることはできません。 詳細については、[エンティティセレクションの順列あり/順列なし](ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) を参照ください。 +順列ありのエンティティセレクションを作成するには、*keepOrder* に `dk keep ordered` セレクターを渡します。 この引数を省略した場合のデフォルト、あるいは `dk non ordered` セレクターを渡した場合には、関数は順列なしのエンティティセレクションを返します。 順列なしのエンティティセレクションの方が速いですが、エンティティの位置に頼ることはできません。 詳細については、[エンティティセレクションの順列あり/順列なし](ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) を参照ください。 この引数を省略した場合のデフォルト、あるいは `dk non ordered` セレクターを渡した場合には、関数は順列なしのエンティティセレクションを返します。 順列なしのエンティティセレクションの方が速いですが、エンティティの位置に頼ることはできません。 詳細については、[エンティティセレクションの順列あり/順列なし](ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) を参照ください。 -作成された時点では、エンティティセレクションにエンティティは含まれていません(`mySelection.length` は0を返します)。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 +作成された時点では、エンティティセレクションにエンティティは含まれていません(`mySelection.length` は0を返します)。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 作成された時点では、エンティティセレクションにエンティティは含まれていません(`mySelection.length` は0を返します)。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 作成された時点では、エンティティセレクションにエンティティは含まれていません(`mySelection.length` は0を返します)。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 あとから [`add()`](EntitySelectionClass.md#add) 関数を呼び出すことで、エンティティセレクションを徐々にビルドしていくことができます。 #### 例題 @@ -886,7 +886,7 @@ $cacheAddress:=$ds.Adress.getRemoteCache() | ------------- | ---------------------------------- | --------------------------- | ---------------------------------------------------------------------------------------------------- | | queryString | Text | -> | 検索条件 (文字列) | | formula | Object | -> | 検索条件 (フォーミュラオブジェクト) | -| value | any | -> | プレースホルダー用の値 | +| value | any | -> | 定数値 (プレースホルダーを使用しない) | | querySettings | Object | -> | クエリオプション: parameters, attributes, args, allowFormulas, context, queryPath, queryPlan | | 戻り値 | 4D.EntitySelection | <- | *queryString* または *formula* に渡した検索条件に合致するエンティティから構成された新しいエンティティセレクション | @@ -894,7 +894,7 @@ $cacheAddress:=$ds.Adress.getRemoteCache() #### 説明 -`.query()` 関数は、データクラスの全エンティティから、*queryString* または *formula* と任意の *value* 引数で指定した検索条件に合致するエンティティを検索します。 戻り値は、見つかったエンティティをすべて格納する `EntitySelection` 型の新しいオブジェクトです。 この関数には、レイジーローディングが適用されます。 +`.query()` 関数は、データクラスの全エンティティから、*queryString* または *formula* と任意の *value* 引数で指定した検索条件に合致するエンティティを検索します。 戻り値は、見つかったエンティティをすべて格納する `EntitySelection` 型の新しいオブジェクトです。 この関数には、レイジーローディングが適用されます。 この関数には、レイジーローディングが適用されます。 この関数には、レイジーローディングが適用されます。 この関数には、レイジーローディングが適用されます。 エンティティが見つからない場合、空のエンティティセレクションが返されます。 @@ -910,40 +910,40 @@ attributePath|formula 比較演算子 値 詳細は以下の通りです: -- **attributePath**: クエリの実行対象となる属性パス。 この引数は、単純な名前 ("country" など) のほか、あらゆる有効な属性パス ("country.name" など) の形をとることができます。 属性パスが `Collection` 型である場合、すべてのオカレンスを管理するには `[]` 記法を使用してください (例: `children[].age` など)。 +- **attributePath**: クエリの実行対象となる属性パス。 この引数は、単純な名前 ("country" など) のほか、あらゆる有効な属性パス ("country.name" など) の形をとることができます。 属性パスが `Collection` 型である場合、すべてのオカレンスを管理するには `[]` 記法を使用してください (例: `children[].age` など)。 この引数は、単純な名前 ("country" など) のほか、あらゆる有効な属性パス ("country.name" など) の形をとることができます。 属性パスが `Collection` 型である場合、すべてのオカレンスを管理するには `[]` 記法を使用してください (例: `children[].age` など)。 この引数は、単純な名前 ("country" など) のほか、あらゆる有効な属性パス ("country.name" など) の形をとることができます。 属性パスが `Collection` 型である場合、すべてのオカレンスを管理するには `[]` 記法を使用してください (例: `children[].age` など)。 > *".", "\[ ]", や "=", ">", "#"..., などの特殊文字はクエリ文字列の中で正しく評価されないため、これらが含まれた属性名を直接使用することはできません。 このような属性をクエリするには、プレースホルダーの使用を検討します。これにより、属性パス内で使用できる文字の範囲が広がります (後述の* **プレースホルダーの使用** *参照)。* - **formula**: テキストまたはオブジェクト形式で渡された有効なフォーミュラ。 フォーミュラは処理されるエンティティごとに評価され、ブール値を返さなくてはなりません。 処理中のエンティティはフォーミュラ内において `This` で参照されます。 - **テキスト**: フォーミュラ文字列の前に `eval()` ステートメントが必要です。これにより、クエリが式を正しく解釈します。 例: *"eval(length(This.lastname) >=30)"* - - **オブジェクト**: [フォーミュラオブジェクト](FunctionClass.md) は **プレースホルダー** (後述参照) を使って受け渡します。 このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 + - **オブジェクト**: [フォーミュラオブジェクト](FunctionClass.md) は **プレースホルダー** (後述参照) を使って受け渡します。 このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 この場合において: この場合において: このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 この場合において: この場合において: > * 4Dフォーミュラは、`&` および `|` 記号のみを論理演算子としてサポートすることに留意が必要です。 > * フォーミュラ以外にも検索条件がある場合、クエリエンジンの最適化によってほかの検索条件 (たとえばインデックス属性) の処理が優先される場合があり、その場合はエンティティのサブセットのみがフォーミュラの評価対象となります。 クエリに使用するフォーミュラは $1 に引数を受け取ることができます。 詳細については後述の **フォーミュラ引数** を参照ください。 -> - フォーミュラが複雑な場合など、`queryString` パラメーターを使わずに、`formula` パラメーターにオブジェクトを直接渡すこともできます。 後述の **フォーミュラ引数** を参照ください。 +> - フォーミュラが複雑な場合など、`queryString` パラメーターを使わずに、`formula` パラメーターにオブジェクトを直接渡すこともできます。 後述の **フォーミュラ引数** を参照ください。 後述の **フォーミュラ引数** を参照ください。 後述の **フォーミュラ引数** を参照ください。 後述の **フォーミュラ引数** を参照ください。 > - セキュリティのため、 `query()` 関数内のフォーミュラ使用を禁止することができます。 `querySettings` パラメーターの説明を参照ください。 -- **比較演算子**: *attributePath* 引数と *value* 引数の比較に使用する記号 以下の記号がサポートされます: - -| 比較 | 記号 | 説明 | -| ------------- | --------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -| 等しい | =, == | 一致するデータを取得します。ワイルドカード (@) をサポートし、文字の大小/アクセントの有無は区別しません。 | -| | ===, IS | 一致するデータを取得します。ワイルドカード (@) は標準の文字として認識され、文字の大小/アクセント記号の有無は区別しません。 | -| 等しくない | #, != | ワイルドカード (@) をサポートします。 "宣言に Not 条件を適用" と同じです ([後述参照](#コレクションにおける-等しくない)) | -| | !==, IS NOT | ワイルドカード (@) は標準の文字として認識されます | -| 宣言に Not 条件を適用 | NOT | 複数の演算子が含まれる宣言の前に NOT を使用する場合にはカッコをつける必要があります。 "等しくない" と同じです ([後述参照](#コレクションにおける-等しくない)) | -| 小さい | < | | -| 大きい | > | | -| 以下 | <= | | -| 以上 | > = | | -| 含まれる | IN | コレクション、あるいは複数の値のうち、どれか一つの値と等しいデータを取得します。ワイルドカード (@) をサポートします。 | -| キーワードを含む | % | キーワードは、文字列あるいはピクチャー型の属性内で使用されるものが対象です。 | - -- **値** (value): エンティティコレクションの各エンティティの属性のカレント値に対して比較する値。 **プレースホルダー** (後述の **プレースホルダーの使用** 参照) か、あるいはデータ型プロパティと同じ型の式を使用することができます。 Note that, in case of type mismatch with scalar types (text, date, number...), 4D will try to convert the **value** type to the attribute data type whenever possible, for an easier handling of values coming from the Internet. For example, if the string "v20" is entered as **value** to compare with an integer attribute, it will be converted to 20. +- **比較演算子**: *attributePath* 引数と *value* 引数の比較に使用する記号 以下の記号がサポートされます: 以下の記号がサポートされます: 以下の記号がサポートされます: 以下の記号がサポートされます: + +| 比較 | 記号 | 説明 | +| ------------- | --------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 等しい | =, == | 一致するデータを取得します。ワイルドカード (@) をサポートし、文字の大小/アクセントの有無は区別しません。 | +| | ===, IS | 一致するデータを取得します。ワイルドカード (@) は標準の文字として認識され、文字の大小/アクセント記号の有無は区別しません。 | +| 等しくない | #, != | ワイルドカード (@) をサポートします。 ワイルドカード (@) をサポートします。 "宣言に Not 条件を適用" と同じです ([後述参照](#コレクションにおける-等しくない)) | +| | !==, IS NOT | ワイルドカード (@) は標準の文字として認識されます | +| 宣言に Not 条件を適用 | NOT | 複数の演算子が含まれる宣言の前に NOT を使用する場合にはカッコをつける必要があります。 "等しくない" と同じです ([後述参照](#コレクションにおける-等しくない)) | +| 小さい | < | | +| 大きい | > | | +| 以上 | <= | | +| 以上 | > = | | +| 含まれる | IN | コレクション、あるいは複数の値のうち、どれか一つの値と等しいデータを取得します。ワイルドカード (@) をサポートします。 | +| キーワードを含む | % | キーワードは、文字列あるいはピクチャー型の属性内で使用されるものが対象です。 | + +- **値** (value): エンティティコレクションの各エンティティの属性のカレント値に対して比較する値。 **プレースホルダー** (後述の **プレースホルダーの使用** 参照) か、あるいはデータ型プロパティと同じ型の式を使用することができます。 **値** (value): エンティティコレクションの各エンティティの属性のカレント値に対して比較する値。 **プレースホルダー** (後述の **プレースホルダーの使用** 参照) か、あるいはデータ型プロパティと同じ型の式を使用することができます。 Note that, in case of type mismatch with scalar types (text, date, number...), 4D will try to convert the **value** type to the attribute data type whenever possible, for an easier handling of values coming from the Internet. For example, if the string "v20" is entered as **value** to compare with an integer attribute, it will be converted to 20. 定数値を使用する場合、以下の原則に従う必要があります: - **テキスト** テキスト型の定数値の場合は単一引用符つき、あるいはなしでも渡すことができます(後述の **引用符を使用する** 参照)。 文字列中の文字列を検索する ("含まれる" クエリ) には、ワイルドカード記号 (@) を使用して検索文字列を指定します (例: "@Smith@")。 また以下のキーワードはテキスト定数においては使用できません: true, false。 - **ブール** 型の定数値: **true** または **false** (文字の大小を区別します) @@ -951,30 +951,30 @@ attributePath|formula 比較演算子 値 - **日付** 型の定数値: "YYYY-MM-DD" フォーマット。 - **null** 定数値: "null" キーワードを使用した場合、**null** と **undefined** プロパティの両方が検索されます。 - IN 記号を使用したクエリの場合、*値* はコレクションか、attributePath の型に合致する、\[ ] でくくられたカンマ区切りの値である必要があります (文字列においては、`"` の記号は `\` でエスケープする必要があります)。 -- **論理演算子**: 複数の条件をクエリ内で結合させるのに使用します(任意)。 以下の論理演算子のいずれか一つを使用できます (名前あるいは記号のどちらかを渡します): +- **論理演算子**: 複数の条件をクエリ内で結合させるのに使用します(任意)。 **論理演算子**: 複数の条件をクエリ内で結合させるのに使用します(任意)。 以下の論理演算子のいずれか一つを使用できます (名前あるいは記号のどちらかを渡します): | 結合 | 記号 | | --- | ---------------------------------------------------------------------- | | AND | &, &&, and | | OR | \|,\|\|, or | -- **order by attributePath**: クエリに "order by attributePath" ステートメントを追加することで、結果をソートすることができます。 カンマで区切ることで、複数の order by ステートメントを使用することもできます (例: order by *attributePath1* desc, *attributePath2* asc)。 デフォルトの並び順は昇順です。 並び順を指定するには、降順の場合は 'desc'、昇順の場合は 'asc' を追加します。 +- **order by attributePath**: クエリに "order by attributePath" ステートメントを追加することで、結果をソートすることができます。 カンマで区切ることで、複数の order by ステートメントを使用することもできます (例: order by *attributePath1* desc, *attributePath2* asc)。 デフォルトの並び順は昇順です。 並び順を指定するには、降順の場合は 'desc'、昇順の場合は 'asc' を追加します。 カンマで区切ることで、複数の order by ステートメントを使用することもできます (例: order by *attributePath1* desc, *attributePath2* asc)。 デフォルトの並び順は昇順です。 並び順を指定するには、降順の場合は 'desc'、昇順の場合は 'asc' を追加します。 カンマで区切ることで、複数の order by ステートメントを使用することもできます (例: order by *attributePath1* desc, *attributePath2* asc)。 デフォルトの並び順は昇順です。 並び順を指定するには、降順の場合は 'desc'、昇順の場合は 'asc' を追加します。 カンマで区切ることで、複数の order by ステートメントを使用することもできます (例: order by *attributePath1* desc, *attributePath2* asc)。 デフォルトの並び順は昇順です。 並び順を指定するには、降順の場合は 'desc'、昇順の場合は 'asc' を追加します。 > このステートメントを使用した場合、順序ありエンティティセレクションが返されます (詳細については [エンティティセレクションの順列あり/順列なし](../ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) を参照ください)。 #### 引用符を使用する -クエリ内で引用符を使用する場合、クエリ内においては単一引用符 ' ' を使用し、クエリ全体をくくるには二重引用符 " " を使用します。クオートを混同するとエラーが返されます。 例: +クエリ内で引用符を使用する場合、クエリ内においては単一引用符 ' ' を使用し、クエリ全体をくくるには二重引用符 " " を使用します。クオートを混同するとエラーが返されます。 例: 例: 例: 例: ```4d "employee.name = 'smith' AND employee.firstname = 'john'" ``` -> 単一引用符 (') は、クエリ文字列を分解してしまうため、検索値としてはサポートされていません。 たとえば、"comp.name = 'John's pizza' " はエラーを生成します。 単一引用符を含む値を検索するには、プレースホルダーを使用します (後述参照)。 +> 単一引用符 (') は、クエリ文字列を分解してしまうため、検索値としてはサポートされていません。 たとえば、"comp.name = 'John's pizza' " はエラーを生成します。 単一引用符を含む値を検索するには、プレースホルダーを使用します (後述参照)。 たとえば、"comp.name = 'John's pizza' " はエラーを生成します。 単一引用符を含む値を検索するには、プレースホルダーを使用します (後述参照)。 たとえば、"comp.name = 'John's pizza' " はエラーを生成します。 単一引用符を含む値を検索するには、プレースホルダーを使用します (後述参照)。 たとえば、"comp.name = 'John's pizza' " はエラーを生成します。 単一引用符を含む値を検索するには、プレースホルダーを使用します (後述参照)。 #### カッコを使用する -クエリ内でカッコを使用すると、計算に優先順位をつけることができます。 たとえば、以下のようにクエリを整理することができます: +クエリ内でカッコを使用すると、計算に優先順位をつけることができます。 たとえば、以下のようにクエリを整理することができます: たとえば、以下のようにクエリを整理することができます: たとえば、以下のようにクエリを整理することができます: ```4d "(employee.age >= 30 OR employee.age <= 65) AND (employee.salary <= 10000 OR employee.status = 'Manager')" @@ -986,26 +986,26 @@ attributePath|formula 比較演算子 値 プレースホルダーには二つの種類があります。**インデックスプレースホルダー** および **命名プレースホルダー** です: -| | インデックスプレースホルダー | 命名プレースホルダー | -| -- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| 定義 | *queryString* に `:paramIndex` (例 :1, :2...) という形式でパラメーターが挿入され、それに対応する値は後に続く *value* 引数が提供します。 最大で 128個の *value* 引数を渡すことができます。 | `:paramName` (例: myparam など) という形でパラメーターが挿入され、その値は *querySettings* 引数の attributes または parameters オブジェクトで提供されます。 | -| 例題 | `$r:=class.query(":1=:2";"city";"Chicago")` | `$o.attributes:=New object("att";"city")`
    `$o.parameters:=New object("name";"Chicago")`
    `$r:=class.query(":att=:name";$o)` | +| | インデックスプレースホルダー | 命名プレースホルダー | +| -- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| 定義 | *queryString* に `:paramIndex` (例 :1, :2...) という形式でパラメーターが挿入され、それに対応する値は後に続く *value* 引数が提供します。 という形式でパラメーターが挿入され、それに対応する値は後に続く *value* 引数が提供します。 最大で 128個の *value* 引数を渡すことができます。 | `:paramName` (例: myparam など) という形でパラメーターが挿入され、その値は *querySettings* 引数の attributes または parameters オブジェクトで提供されます。 | +| 例題 | `$r:=class.query(":1=:2";"city";"Chicago")` | `$o.attributes:=New object("att";"city")`
    `$o.parameters:=New object("name";"Chicago")`
    `$r:=class.query(":att=:name";$o)` | -*queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* 引数は、*attributePath* と *formula* と *値* に以下のものを含めることができます: +*queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* 引数は、*attributePath* と *formula* と *値* に以下のものを含めることができます: *queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* には、すべての種類の引数を混ぜて渡すことができます。 *queryString* 引数は、*attributePath* と *formula* と *値* に以下のものを含めることができます: - 定数値 (プレースホルダーを使用しない) - インデックスプレースホルダーや命名プレースホルダー 以下の理由から、クエリでのプレースホルダーの使用が **推奨されます**: -1. 悪意あるコードの挿入を防ぎます: ユーザーによって値が代入された変数をクエリ文字列として直接使用した場合、余計なクエリ引数を入力することでユーザーがクエリ条件を変更する可能性があります。 たとえば、以下のようなクエリ文字列を考えます: +1. 悪意あるコードの挿入を防ぎます: ユーザーによって値が代入された変数をクエリ文字列として直接使用した場合、余計なクエリ引数を入力することでユーザーがクエリ条件を変更する可能性があります。 たとえば、以下のようなクエリ文字列を考えます: たとえば、以下のようなクエリ文字列を考えます: たとえば、以下のようなクエリ文字列を考えます: たとえば、以下のようなクエリ文字列を考えます: ```4d $vquery:="status = 'public' & name = "+myname // ユーザーが自分の名前を入力します $result:=$col.query($vquery) ``` -非公開のデータがフィルタリングされているため、このクエリは一見安全なように見えます。 しかしながら、もしユーザーが *myname* に *smith OR status='private'* のような入力をした場合、クエリ文字列は解釈時に変更され、非公開データも返してしまう可能性があります。 +非公開のデータがフィルタリングされているため、このクエリは一見安全なように見えます。 非公開のデータがフィルタリングされているため、このクエリは一見安全なように見えます。 しかしながら、もしユーザーが *myname* に *smith OR status='private'* のような入力をした場合、クエリ文字列は解釈時に変更され、非公開データも返してしまう可能性があります。 プレースホルダーを使用した場合、セキュリティ条件を上書きすることは不可能です: @@ -1013,11 +1013,11 @@ attributePath|formula 比較演算子 値 $result:=$col.query("status='public' & name=:1";myname) ``` -この場合、ユーザーが *myname* エリアに *smith OR status='private'* と入力した場合でも、それはクエリ文字列とはみなされず、値として渡されるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 +この場合、ユーザーが *myname* エリアに *smith OR status='private'* と入力した場合でも、それはクエリ文字列とはみなされず、値として渡されるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 この場合、ユーザーが *myname* エリアに *smith OR status='private'* と入力した場合でも、それはクエリ文字列とはみなされず、値として渡されるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 "smith OR status='private' " という名前の人物を検索したところで、結果は失敗に終わるだけです。 2. フォーマットや文字の問題を心配する必要がありません。これは、*attributePath* や *値* がたとえば "."、"[' ...などの英数字でない文字を格納している可能性がある場合にとくに有用です。 -3. クエリに変数や式を使用することができます。 例: +3. クエリに変数や式を使用することができます。 例: 例: 例: 例: ```4d $result:=$col.query("address.city = :1 & name =:2";$city;$myVar+"@") @@ -1026,21 +1026,35 @@ $result2:=$col.query("company.name = :1";"John's Pizzas") #### null値を検索する -null値を検索する場合、プレースホルダーシンタックスは使用できません。 なぜならクエリエンジンは null を予期せぬ比較値としてみなすからです。 たとえば、以下のクエリを実行した場合: +null値を検索する場合、プレースホルダーシンタックスは使用できません。 なぜならクエリエンジンは null を予期せぬ比較値としてみなすからです。 たとえば、以下のクエリを実行した場合: たとえば、以下のクエリを実行した場合: たとえば、以下のクエリを実行した場合: たとえば、以下のクエリを実行した場合: ```4d $vSingles:=ds.Person.query("spouse = :1";Null) // 機能しません ``` -この場合 4D は null値を、引数の評価 (別のクエリから渡された属性など) に起因するエラーと解釈するため、期待した結果は得られません。 このようなクエリをおこなうには、直接的なシンタックスを使用する必要があります: +この場合 4D は null値を、引数の評価 (別のクエリから渡された属性など) に起因するエラーと解釈するため、期待した結果は得られません。 このようなクエリをおこなうには、直接的なシンタックスを使用する必要があります: このようなクエリをおこなうには、直接的なシンタックスを使用する必要があります: このようなクエリをおこなうには、直接的なシンタックスを使用する必要があります: このようなクエリをおこなうには、直接的なシンタックスを使用する必要があります: ```4d $vSingles:=ds.Person.query("spouse = null") // 正しいシンタックス ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### コレクションにおける "等しくない" -コレクションを含むデータクラス属性内を検索する場合、"*値* と等しくない" 比較演算子 (`#` または `!=`) は、すべてのプロパティが *値* と異なる要素を検索します (ほかの比較演算子とは異なり、少なくとも 1つのプロパティが *値* と異なる要素は検索しません)。 つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: +コレクションを含むデータクラス属性内を検索する場合、"*値* と等しくない" 比較演算子 (`#` または `!=`) は、すべてのプロパティが *値* と異なる要素を検索します (ほかの比較演算子とは異なり、少なくとも 1つのプロパティが *値* と異なる要素は検索しません)。 つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: ``` エンティティ1: @@ -1119,7 +1133,7 @@ ds.People.places: } ] } ``` -"locations" 属性に、"kind=home" かつ "city=paris" である要素を持つ人を探したいとします。 以下のように書いた場合: +"locations" 属性に、"kind=home" かつ "city=paris" である要素を持つ人を探したいとします。 以下のように書いた場合: 以下のように書いた場合: 以下のように書いた場合: 以下のように書いた場合: ```4d ds.People.query("places.locations[].kind= :1 and places.locations[].city= :2";"home";"paris") @@ -1138,7 +1152,7 @@ ds.People.query("places.locations[].kind= :1 and places.locations[].city= :2";"h ds.People.query("places.locations[a].kind= :1 and places.locations[a].city= :2";"home";"paris") ``` -... クエリは、"kind=home" かつ "city=paris" である "locations" 要素を持つエンティティ "martin" のみを返します。 "home" と "paris" が同じコレクション要素内にない "smith" は、クエリの結果に含まれません。 +... クエリは、"kind=home" かつ "city=paris" である "locations" 要素を持つエンティティ "martin" のみを返します。 "home" と "paris" が同じコレクション要素内にない "smith" は、クエリの結果に含まれません。 "home" と "paris" が同じコレクション要素内にない "smith" は、クエリの結果に含まれません。 "home" と "paris" が同じコレクション要素内にない "smith" は、クエリの結果に含まれません。 "home" と "paris" が同じコレクション要素内にない "smith" は、クエリの結果に含まれません。 #### N対Nリレーションのクエリ @@ -1146,7 +1160,7 @@ ORDA は、N対Nリレーションにおけるクエリを容易にするため ![alt-text](../assets/en/API/manytomany.png) -俳優 A と俳優 B の *両方* が出演している映画をすべて検索したいとします。 `AND` 演算子を使った単純なクエリを書いても、うまくいきません: +俳優 A と俳優 B の *両方* が出演している映画をすべて検索したいとします。 `AND` 演算子を使った単純なクエリを書いても、うまくいきません: `AND` 演算子を使った単純なクエリを書いても、うまくいきません: ```4d // 無効なコード @@ -1176,13 +1190,13 @@ $es:=ds.Movie.query("roles.actor.lastName = :1 AND roles.actor{2}.lastName = :2" *queryString* 引数にフォーミュラを挿入 (上記参照) する代わりに、formula オブジェクトをブール検索条件として直接渡すことができます。 トークナイズの利点を生かせる、コードが検索しやすく読みやすい、などといった面から、クエリにおけるフォーミュラオブジェクトの使用は **推奨されています**。 -このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 この場合において: +このフォーミュラは、[`Formula`](FunctionClass.md#formula) または [`Formula from string`](FunctionClass.md#formula-from-string) コマンドによって作成されたものでなくてはなりません。 この場合において: この場合において: この場合において: - フォーミュラは処理されるエンティティごとに評価され、true または false を返さなくてはなりません。 クエリの実行中、フォーミュラの結果がブール値でなかった場合、それは false であるとみなされます。 - 処理中のエンティティはフォーミュラ内において `This` で参照されます。 - `Formula` オブジェクトが **null** の場合、エラー1626 ("テキストまたはフォーミュラが必要です") が生成されます。 -> セキュリティのため、 `query()` 関数内のフォーミュラ使用を禁止することができます。 *querySettings* パラメーターの説明を参照ください。 +> セキュリティのため、 `query()` 関数内のフォーミュラ使用を禁止することができます。 `querySettings` パラメーターの説明を参照ください。 *querySettings* パラメーターの説明を参照ください。 #### フォーミュラに引数を渡す @@ -1204,17 +1218,17 @@ $es:=ds.Movie.query("roles.actor.lastName = :1 AND roles.actor{2}.lastName = :2" #### querySettings 引数 -*querySettings* 引数は、追加のオプションを格納したオブジェクトです。 以下のプロパティがサポートされています: +*querySettings* 引数は、追加のオプションを格納したオブジェクトです。 以下のプロパティがサポートされています: 以下のプロパティがサポートされています: | プロパティ | 型 | 説明 | | ------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| parameters | Object | *queryString* または *formula* に **値の命名プレースホルダー** を使用した場合に渡すオブジェクト。 値は、プロパティ/値のペアで表現されます。プロパティは、*queryString* または *formula* に値の代わりに挿入されたプレースホルダー名 (":placeholder"など) で、値は、実際に比較される値です。 インデックスプレースホルダー (value引数として値を直接渡す方法) と命名プレースホルダーは、同じクエリ内で同時に使用することができます。 | +| parameters | Object | *queryString* または *formula* に **値の命名プレースホルダー** を使用した場合に渡すオブジェクト。 *queryString* または *formula* に **値の命名プレースホルダー** を使用した場合に渡すオブジェクト。 *queryString* または *formula* に **値の命名プレースホルダー** を使用した場合に渡すオブジェクト。 値は、プロパティ/値のペアで表現されます。プロパティは、*queryString* または *formula* に値の代わりに挿入されたプレースホルダー名 (":placeholder"など) で、値は、実際に比較される値です。 インデックスプレースホルダー (value引数として値を直接渡す方法) と命名プレースホルダーは、同じクエリ内で同時に使用することができます。 インデックスプレースホルダー (value引数として値を直接渡す方法) と命名プレースホルダーは、同じクエリ内で同時に使用することができます。 インデックスプレースホルダー (value引数として値を直接渡す方法) と命名プレースホルダーは、同じクエリ内で同時に使用することができます。 | | attributes | Object | *queryString* または *formula* に **属性パスの命名プレースホルダー** を使用した場合に渡すオブジェクト。 属性パスは、プロパティ/値のペアで表現されます。プロパティは、*queryString* または *formula* に属性パスの代わりに挿入されたプレースホルダー名 (":placeholder"など) で、値は、属性パスを表す文字列または文字列のコレクションです。 値には、データクラスのスカラー属性・リレート属性・オブジェクトフィールド内のプロパティへの属性パスを指定することができます。
    タイプ説明
    Stringドット記法を使用して表現された attributePath (例: "name" または "user.address.zipCode")
    String の Collectionコレクションの各要素が attributePath の階層を表します (例: ["name"] または ["user","address","zipCode"])。 コレクションを使用することで、ドット記法に準じていない名前の属性に対してもクエリすることができます (例: ["4Dv17.1","en/fr"])。
    インデックスプレースホルダー (*value* 引数として値を直接渡す方法) と命名プレースホルダーは、同じクエリ内で同時に使用することができます。 | -| args | Object | フォーミュラに渡す引数。 **args** オブジェクトは、フォーミュラ内の $1 が受け取るので、その値は *$1.property* という形で利用可能です (例題3 参照)。 | +| args | Object | フォーミュラに渡す引数。 フォーミュラに渡す引数。 **args** オブジェクトは、フォーミュラ内の $1 が受け取るので、その値は *$1.property* という形で利用可能です (例題3 参照)。 | | allowFormulas | Boolean | クエリ内でフォーミュラの呼び出しを許可するには true (デフォルト)。 フォーミュラ実行を禁止するには false を渡します。 false に設定されているときに、フォーミュラが `query()` に渡された場合、エラーが発生します (1278 - フォーミュラはこのメンバーメソッドでは許可されていません)。 | | context | Text | エンティティセレクションに適用されている自動の最適化コンテキストのラベル。 エンティティセレクションを扱うコードはこのコンテキストを使うことで最適化の恩恵を受けます。 この機能はクライアント/サーバー処理を想定して設計されています。 詳細な情報については、[**クライアント/サーバーの最適化**](../ORDA/client-server-optimization.md#最適化コンテキスト) の章を参照ください。 | | queryPlan | Boolean | 戻り値のエンティティコレクションに、実行する直前のクエリの詳細 (クエリプラン) を含めるかどうかを指定します。 返されるプロパティは、クエリプラン あるいはサブクエリ (複合クエリの場合) を格納したオブジェクトです。 このオプションはアプリケーションの開発フェーズにおいて有用です。 このオプションは通常 queryPath と組み合わせて使用されます。 省略時のデフォルト: false。 | -| queryPath | Boolean | 戻り値のエンティティコレクションに、実際に実行されたクエリの詳細を含めるかどうかを指定します。 返されたプロパティは、クエリで実際に使用されたパス (通常は queryPlan と同一ですが、エンジンがクエリを最適化した場合には異なる場合があります)、処理時間と検出レコード数を格納したオブジェクトです。 このオプションはアプリケーションの開発フェーズにおいて有用です。 省略時のデフォルト: false。 | +| queryPath | Boolean | 戻り値のエンティティコレクションに、実際に実行されたクエリの詳細を含めるかどうかを指定します。 戻り値のエンティティコレクションに、実際に実行されたクエリの詳細を含めるかどうかを指定します。 返されたプロパティは、クエリで実際に使用されたパス (通常は queryPlan と同一ですが、エンジンがクエリを最適化した場合には異なる場合があります)、処理時間と検出レコード数を格納したオブジェクトです。 このオプションはアプリケーションの開発フェーズにおいて有用です。 省略時のデフォルト: false。 このオプションはアプリケーションの開発フェーズにおいて有用です。 省略時のデフォルト: false。 | #### queryPlan と queryPath について @@ -1550,7 +1564,7 @@ softwares:{ -> **上級者向け:** この機能は、特定の構成のため、ORDAのデフォルト機能をカスタマイズする必要がある開発者向けです。 ほとんどの場合、使用する必要はないでしょう。 +> **上級者向け:** この機能は、特定の構成のため、ORDAのデフォルト機能をカスタマイズする必要がある開発者向けです。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 ほとんどの場合、使用する必要はないでしょう。 #### 説明 @@ -1563,17 +1577,17 @@ softwares:{ | timeout | Integer | タイムアウト (秒単位) | | maxEntries | Integer | エンティティの最大数 | -`timeout` は、データクラスの ORDAキャッシュのタイムアウトを設定します (デフォルトは 30秒)。 タイムアウトを過ぎると、キャッシュ内のデータクラスのエンティティは期限切れとみなされます。 これは、次のことを意味します: +`timeout` は、データクラスの ORDAキャッシュのタイムアウトを設定します (デフォルトは 30秒)。 タイムアウトを過ぎると、キャッシュ内のデータクラスのエンティティは期限切れとみなされます。 これは、次のことを意味します: タイムアウトを過ぎると、キャッシュ内のデータクラスのエンティティは期限切れとみなされます。 これは、次のことを意味します: - データはまだ存在します - 次にそのデータが必要になったときには、サーバーに要求します - エンティティの最大数に達すると、4D は期限切れのデータを自動的に削除します -`timeout` プロパティを設定すると、すでにキャッシュに存在するエンティティに新しいタイムアウトが設定されます。 これは頻繁に変更されないデータを扱う場合、つまり、サーバーへの新たな要求が必要ない場合に便利です。 +`timeout` プロパティを設定すると、すでにキャッシュに存在するエンティティに新しいタイムアウトが設定されます。 これは頻繁に変更されないデータを扱う場合、つまり、サーバーへの新たな要求が必要ない場合に便利です。 これは頻繁に変更されないデータを扱う場合、つまり、サーバーへの新たな要求が必要ない場合に便利です。 これは頻繁に変更されないデータを扱う場合、つまり、サーバーへの新たな要求が必要ない場合に便利です。 -`maxEntries` は、ORDAキャッシュ内のエンティティの最大数を設定します。 デフォルトは 30,000 です。 +`maxEntries` は、ORDAキャッシュ内のエンティティの最大数を設定します。 デフォルトは 30,000 です。 デフォルトは 30,000 です。 デフォルトは 30,000 です。 デフォルトは 30,000 です。 -最小エントリー数は 300 のため、`maxEntries` の値は 300以上でなくてはなりません。 それ以外の場合は無視され、最大エントリー数は 300 に設定されます。 +最小エントリー数は 300 のため、`maxEntries` の値は 300以上でなくてはなりません。 それ以外の場合は無視され、最大エントリー数は 300 に設定されます。 それ以外の場合は無視され、最大エントリー数は 300 に設定されます。 それ以外の場合は無視され、最大エントリー数は 300 に設定されます。 `timeout` および `maxEntries` として有効なプロパティが渡されない場合、キャッシュはデフォルト値または以前に設定された値のまま変更されません。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/classes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/classes.md index 1a1460f9ccfcc5..e2cd8dc24856f0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/classes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/classes.md @@ -182,7 +182,7 @@ Class オブジェクトそのものは [共有オブジェクト](shared.md) - `property`: オブジェクトのスタティックプロパティを型定義します。 - `Function get ` と `Function set `: オブジェクトの計算プロパティを定義します。 - `Class extends `: 継承を定義します。 -- `This` and `Super` are commands that have special +- `This` および `Super` は特殊な用途を持つコマンドです。 ### `Function` @@ -195,7 +195,7 @@ Class オブジェクトそのものは [共有オブジェクト](shared.md) :::note -There is no ending keyword for function code. The 4D language automatically detects the end of a function's code by the next `Function` keyword or the end of the class file. +関数コードにおいては、終了キーワードはありません。 4D ランゲージは、次の`Function` キーワードまたはクラスファイルの終了を持って、自動的に関数のコードの終わりを検知します。 ::: @@ -335,7 +335,7 @@ Function getRectArea($width : Integer; $height : Integer) : Integer :::note -There is no ending keyword for class constructor function code. The 4D language automatically detects the end of a function's code by the next `Function` keyword or the end of the class file. +クラスコンストラクター関数コードにおいては、終了キーワードはありません。 4D ランゲージは、次の`Function` キーワードまたはクラスファイルの終了を持って、自動的に関数のコードの終わりを検知します。 ::: @@ -343,7 +343,7 @@ There is no ending keyword for class constructor function code. The 4D language クラスコンストラクターが定義されていると、[`new()`](API/ClassClass.md#new) 関数を呼び出したときに、当該コンストラクターが呼び出されます (コンストラクターで引数を指定している場合は `new()` 関数に渡します)。 -コンストラクター関数は、1つのクラスに 1つしか存在できません (そうでない場合はエラーが返されます)。 The [`Super`](../commands/super.md) command allows calls to the [`superclass`](../API/ClassClass#superclass), i.e. the parent class of the function. The [`Super`](../commands/super.md) command allows calls to the [`superclass`](../API/ClassClass#superclass), i.e. the parent class of the function. +コンストラクター関数は、1つのクラスに 1つしか存在できません (そうでない場合はエラーが返されます)。 The [`Super`](../commands/super.md) command allows calls to the [`superclass`](../API/ClassClass#superclass), i.e. the parent class of the function. [`Super`](../commands/super.md) コマンドを使用すると、[`スーパークラス`](../API/ClassClass#superclass)、つまり関数の親クラスを呼ぶことができます。 コンストラクター内でインスタンスのプロパティを作成し、型宣言することができます (例題参照)。 コンストラクター内でインスタンスのプロパティを作成し、型宣言することができます (例題参照)。 コンストラクター内でインスタンスのプロパティを作成し、型宣言することができます (例題参照)。 また、インスタンスプロパティの値が、コンストラクターに渡される引数に依存しない場合は、[`property`](#property) キーワードを使用して定義することができます。 @@ -609,19 +609,19 @@ Class constructor ($side : Integer) $area:=This.height*This.width ``` -## Class function commands +## クラス関数コマンド -The following commands have specific features when they are used within class functions: +以下のコマンドは、クラス関数内で使用された場合には特定の機能を持っています: ### `Super` -The [`Super`](../commands/super.md) command allows calls to the [`superclass`](../API/ClassClass#superclass), i.e. the parent class of the function. It can be called in the [class constructor](#class-constructor) or in a class function code. +[`Super`](../commands/super.md) コマンドを使用すると、[`スーパークラス`](../API/ClassClass#superclass)、つまり関数の親クラスを呼び出すことができます。 これは[Class constructor](#class-constructor) またはクラス関数コード内で呼び出すことができます。 -For more details, see the [`Super`](../commands/super.md) command description. +詳細な情報については、[`Super`](../commands/super.md) コマンドの説明を参照してください。 ### `This` -The [`This`](../commands/this.md) command returns a reference to the currently processed object. In most cases, the value of `This` is determined by how a class function is called. Usually, `This` refers to the object the function was called on, as if the function were on the object. +[`This`](../commands/this.md) コマンドは現在処理されているオブジェクトへの参照を返します。 多くの場合、`This` の値はクラス関数がどのように呼ばれたかによって決まります。 通常、`This` は、まるでその関数がオブジェクト上にあるかのように、関数が呼ばれたオブジェクトを参照します。 例: @@ -632,7 +632,7 @@ Function f() : Integer return This.a+This.b ``` -Then you can write in a method: +メソッド内において、以下のように書くことができます: ```4d $o:=cs.ob.new() @@ -641,7 +641,7 @@ $o.b:=3 $val:=$o.f() //8 ``` -For more details, see the [`This`](../commands/this.md) command description. +詳細な情報については、[`This`](../commands/this.md) コマンドの説明を参照してください。 ## クラスコマンド @@ -754,8 +754,8 @@ shared Function Bar($value : Integer) :::note -- Session singletons are automatically shared singletons (there's no need to use the `shared` keyword in the class constructor). -- Singleton shared functions support [`onHttpGet` keyword](../ORDA/ordaClasses.md#onhttpget-keyword). +- セッションシングルトンは、自動的に共有シングルトンとなります(クラスコンストラクターにおいて`shared` キーワードを使用する必要はありません)。 +- シングルトンの共有関数は、[`onHttpGet` キーワード](../ORDA/ordaClasses.md#onhttpget-keyword) をサポートします。 ::: diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/dt_number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/dt_number.md index f14114a3f832bb..5a66f8814a1412 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/dt_number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/dt_number.md @@ -1,25 +1,25 @@ --- id: number -title: Number (Real, Integer) +title: 数値(実数、整数) --- 数値とは、以下を示す総称です: - 実数のフィールド、変数、または式。 実数データタイプの範囲は、±1.7e±308 (有効数字13桁) です。 -- Integer variable or expression. The range for the Integer data type is -2^31..(2^31)-1 (4-byte Integer, aka *Long* or *Longint*). +- 整数の変数または式。 整数データタイプの範囲は -2^31..(2^31)-1 です(4-バイト整数、別名*Long* または *Longint*)。 :::info 互換性 -Usually when working with Integers, you handle *Long* values (4-byte Integer). However, there are two cases where Integers are stored as *Shorts* values (2-byte Integer), i.e. in the range -32,768..32,767 (2^15..(2^15)-1): +通常、整数を使用する場合には、*Long* を扱います(4-バイト整数)。 しかしながら、整数が*Shots* 値(2-バイト整数)として保存される場合が二つあります。その際、範囲は-32,768..32,767 (2^15..(2^15)-1) となります: -- Database fields with `Integer` type, -- Elements of arrays declared with [`ARRAY INTEGER`](../commands-legacy/array-integer.md). +- `Integer` 型のデータベースフィールド +- [`ARRAY INTEGER`](../commands-legacy/array-integer.md) として宣言した配列の要素 -These legacy data types are automatically converted in *Longs* when used in the 4D Language. +旧式のデータタイプは、4D ランゲージで使用される際に自動的に*Long* へと変換されます。 ::: -数値データタイプは、異なる数値データタイプに代入することができます。このとき、4Dが必要に応じて変換、切り捨て、丸め処理をおこないます。 ただし、値が範囲外の場合には、変換は正しい値を返しません。 You can mix number data types in expressions. +数値データタイプは、異なる数値データタイプに代入することができます。このとき、4Dが必要に応じて変換、切り捨て、丸め処理をおこないます。 ただし、値が範囲外の場合には、変換は正しい値を返しません。 数値データタイプは式の中において混在させて使用することができます。 ## 数値リテラル @@ -75,7 +75,7 @@ These legacy data types are automatically converted in *Longs* when used in the :::warning -モジューロ演算子 % は倍長整数の範囲内 (-2^31 から (2^31)-1 まで) の数値に対して有効な値を返します。 To calculate the modulo with numbers outside of this range, use the [`Mod`](../commands-legacy/mod.md) command. +モジューロ演算子 % は倍長整数の範囲内 (-2^31 から (2^31)-1 まで) の数値に対して有効な値を返します。 範囲外の数値に対してモジューロを計算したい場合には、[`Mod`](../commands-legacy/mod.md) コマンドを使用してください。 ::: @@ -85,11 +85,11 @@ These legacy data types are automatically converted in *Longs* when used in the ### 実数の比較 -To compare two reals for equality, the 4D language actually compares the absolute value of the difference with *epsilon*. See the [`SET REAL COMPARISON LEVEL`](../commands-legacy/set-real-comparison-level.md) command. +2つの実数が等しいかどうかを比較するために、4Dランゲージは実際には差の絶対値を *イプシロン値* と比較します。 詳細関しては[`SET REAL COMPARISON LEVEL`](../commands-legacy/set-real-comparison-level.md) コマンドを参照してください。 :::note -For consistency, the 4D database engine always compares database fields of the real type using a 10^-6 value for *epsilon* and does not take the [`SET REAL COMPARISON LEVEL`](../commands-legacy/set-real-comparison-level.md) setting into account. +一貫性のため、4Dデータベースエンジンは実数型のデータベースフィールドを比較する際には常に *イプシロン値* として 10^-6 の値を使用し、[`SET REAL COMPARISON LEVEL`](../commands-legacy/set-real-comparison-level.md) の設定を考慮しません。 ::: @@ -115,15 +115,15 @@ For consistency, the 4D database engine always compares database fields of the r ## ビットワイズ演算子 -The bitwise operators operates on (Long) Integers expressions or values. +ビットワイズ演算子は、(倍長)整数の式や値に対して演算をおこないます。 -> If you pass a (Short) Integer or a Real value to a bitwise operator, 4D evaluates the value as a Long value before calculating the expression that uses the bitwise operator. +> ビットワイズ演算子に(ショート)整数値または実数値を渡すと、4Dは値を倍長整数値として評価してから、ビットワイズ演算子を使用した式を計算します。 -While using the bitwise operators, you must think about a Long value as an array of 32 bits. これらのビットには、右から左に0~31の番号が付けられます。 +ビットワイズ演算子を使用する場合、倍長整数値を32ビットの配列と考える必要があります。 これらのビットには、右から左に0~31の番号が付けられます。 -それぞれのビットは0か1なので、倍長整数値は32のブール値を格納できる値と考えることもできます。 A bit equal to 1 means **True** and a bit equal to 0 means **False**. +それぞれのビットは0か1なので、倍長整数値は32のブール値を格納できる値と考えることもできます。 1に等しいビットは**True** 、0に等しいビットは**False** を意味します。 -An expression that uses a bitwise operator returns a Long value, except for the Bit Test operator, where the expression returns a Boolean value. 次の表にビットワイズ演算子とそのシンタックスを示します: +ビットワイズ演算子を使用する式は倍長整数値を返します。 Bit Test 演算子の場合、式は例外的にブール値を返します。 次の表にビットワイズ演算子とそのシンタックスを示します: | 演算 | 演算子 | シンタックス | 戻り値 | | ----------------------------------------- | ---------------------------------------------------- | -------------------------------------------------------------- | ----------------------------------- | @@ -138,21 +138,21 @@ An expression that uses a bitwise operator returns a Long value, except for the #### 注記 -1. For the `Left Bit Shift` and `Right Bit Shift` operations, the second operand indicates the number of positions by which the bits of the first operand will be shifted in the resulting value. したがって、この2番目のオペランドは、0~31の間でなければなりません。 0ビットシフトするとその値がそのまま返されます。また、31ビットより多くシフトするとすべてのビットがなくなるので、0x00000000が返されます。 それ以外の値を2番目のオペランドとして渡した場合、結果は意味のない値になります。 -2. For the `Bit Set`, `Bit Clear` and `Bit Test` operations , the second operand indicates the number of the bit on which to act. したがって、この2番目のオペランドは0 ~ 31の間です。そうでない場合、式の結果は意味のないものになります。 +1. `Left Bit Shift` および`Right Bit Shift` 演算では、2番目のオペランドは、結果値において1番目のオペランドのビットがシフトされるビット数を示します。 したがって、この2番目のオペランドは、0~31の間でなければなりません。 0ビットシフトするとその値がそのまま返されます。また、31ビットより多くシフトするとすべてのビットがなくなるので、0x00000000が返されます。 それ以外の値を2番目のオペランドとして渡した場合、結果は意味のない値になります。 +2. `Bit Set`、`Bit Clear`、`Bit Test` 演算では、2番目のオペランドは、作用の対象となるビット番号を示します。 したがって、この2番目のオペランドは0 ~ 31の間です。そうでない場合、式の結果は意味のないものになります。 次の表は、ビットワイズ演算子とその効果を示します: -| 演算 | 説明 | -| ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Bitwise AND | それぞれの結果ビットは2つのオペランドのビットの論理ANDです。 Here is the logical AND table:
  • 1 & 1 --> 1
  • 0 & 1 --> 0
  • 1 & 0 --> 0
  • 0 & 0 --> 0
  • In other words, the resulting bit is 1 if the two operand bits are 1; otherwise the resulting bit is 0. | -| Bitwise OR (inclusive) | Each resulting bit is the logical OR of the bits in the two operands.Here is the logical OR table:
  • 1 \| 1 --> 1
  • 0 \| 1 --> 1
  • 1 \| 0 --> 1
  • 0 \| 0 --> 0
  • In other words, the resulting bit is 1 if at least one of the two operand bits is 1; otherwise the resulting bit is 0. | -| Bitwise OR (exclusive) | Each resulting bit is the logical XOR of the bits in the two operands.Here is the logical XOR table:
  • 1 ^ \| 1 --> 0
  • 0 ^ \| 1 --> 1
  • 1 ^ \| 0 --> 1
  • 0 ^ \| 0 --> 0
  • In other words, the resulting bit is 1 if only one of the two operand bits is 1; otherwise the resulting bit is 0. | -| Left Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ左にシフトします。 左側のビットがなくなり、右側の新しいビットは0に設定されます。 **Note:** Taking into account only positive values, shifting to the left by N bits is the same as multiplying by 2^N. | -| Right Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ右にシフトします。 The bits on the right are lost and the new bits on the left are set to 0.**Note:** Taking into account only positive values, shifting to the right by N bits is the same as dividing by 2^N. | -| Bit Set | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが1に設定されます。 他のビットはそのままです。 | -| Bit Clear | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが0に設定されます。 他のビットはそのままです。 | -| Bit Test | 最初のオペランドのうち、2番目のビットで示されたビットが1の場合、trueが返されます。 最初のオペランドのうち、2番目のビットで示されたビットが0の場合、falseが返されます。 | +| 演算 | 説明 | +| ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Bitwise AND | それぞれの結果ビットは2つのオペランドのビットの論理ANDです。 論理AND の表は以下のようになります:
  • 1 & 1 --> 1
  • 0 & 1 --> 0
  • 1 & 0 --> 0
  • 0 & 0 --> 0
  • 言い換えると、結果のビットは両方のオペランドが1であれば1となり、それ以外の場合には結果のビットは0 となります。 | +| Bitwise OR (inclusive) | それぞれの結果ビットは2つのオペランドのビットの論理OR です。論理OR の表は以下のようになります。:
  • 1 \| 1 --> 1
  • 0 \| 1 --> 1
  • 1 \| 0 --> 1
  • 0 \| 0 --> 0
  • 言い換えると、結果のビットは、少なくともどちらかのオペランドが1であれば1となり、それ以外の場合には結果のビットは0 となります。 | +| Bitwise OR (exclusive) | それぞれの結果ビットは2つのオペランドの論理XOR です。論理XOR の表は以下のようになります:
  • 1 ^ \| 1 --> 0
  • 0 ^ \| 1 --> 1
  • 1 ^ \| 0 --> 1
  • 0 ^ \| 0 --> 0
  • 言い換えると、結果のビットは2つのオペランドのどちらか1つが1の場合にのみ1となり、それ以外の場合には結果のビットは0 となります。 | +| Left Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ左にシフトします。 左側のビットがなくなり、右側の新しいビットは0に設定されます。 **注記:** 正の数だけを考えると、Nビット左にシフトすることは、2^N を掛けることと同じです。 | +| Right Bit Shift | 最初のオペランド値が結果値に設定され、次に結果ビットが2番目のオペランドで示されたビット数だけ右にシフトします。 右側のビットがなくなり、左側の新しいビットは 0 に設定されます。 **注記:** 正の数だけを考えると、Nビット右にシフトすることは、2^Nで割ることと同じです。 | +| Bit Set | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが1に設定されます。 他のビットはそのままです。 | +| Bit Clear | 最初のオペランド値が結果値に設定され、次に結果ビットのうち2番目のオペランドで示されたビットが0に設定されます。 他のビットはそのままです。 | +| Bit Test | 最初のオペランドのうち、2番目のビットで示されたビットが1の場合、trueが返されます。 最初のオペランドのうち、2番目のビットで示されたビットが0の場合、falseが返されます。 | ### 例題 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/error-handling.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/error-handling.md index e1aabc3695e2e1..154541ef0764c0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/error-handling.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Concepts/error-handling.md @@ -97,8 +97,8 @@ ON ERR CALL("componentHandler";ek errors from components) // コンポーネン 4D は、いくつかの [**システム変数**](variables.md#システム変数) と呼ばれる専用の変数を自動的に管理しています。 ::: -- [`Last errors`](https://doc.4d.com/4dv19/help/command/ja/page1799.html) コマンドは、4Dアプリケーションのカレントエラースタックに関する情報をコレクションとして返します。 You can also use the [`Last errors`](https://doc.4d.com/4dv19/help/command/en/page1015.html) command that returns the same information as arrays. -- the `Call chain` command that returns a collection of objects describing each step of the method call chain within the current process. +- [`Last errors`](https://doc.4d.com/4dv19/help/command/ja/page1799.html) コマンドは、4Dアプリケーションのカレントエラースタックに関する情報をコレクションとして返します。 また同じ情報を配列として返す[`Last errors`](https://doc.4d.com/4dv19/help/command/en/page1015.html) コマンドを使用することもできます。 +- `Call chain` コマンドは、カレントプロセス内におけるメソッド呼び出しチェーンの各ステップを説明するオブジェクトのコレクションを返します。 #### 例題 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md index 9b499111370279..b1a33477535f22 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md @@ -70,27 +70,27 @@ title: デバッガー - **続行**: 実行が継続されます。 エラーが発生した行は、エラーの位置によっては一部のみ実行済みである場合があります。 慎重に実行を継続してください: エラーが原因で、メソッドの残り部分が正常に実行できない場合があります。 `SET WINDOW TITLE` のように、コードの残りの部分の実行やテストの妨げにならない単純な呼び出しでエラーが発生している場合にのみ、**続行** ボタンをクリックすることを推奨します。 -> Tips: ループ中などで繰り返し発生するエラーの場合には、**続行** ボタンを **無視** ボタンに変更できます。 **続行**ボタンが最初に現れたときに、**Alt**キー (Windows) または **Option**キー (macOS) を押しながらボタンをクリックします。 すると、同じエラーによってダイアログが呼び出されたときには、ボタンラベルが **無視** へと変化します。 +> Tips: ループ中などで繰り返し発生するエラーの場合には、**続行** ボタンを **無視** ボタンに変更できます。 Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. -- **アボート**: メソッドが中断され、メソッドの実行を開始する前の状態に戻ります: +- **Abort**: Stops method execution and returns to the state before the method started executing: - イベントに対してフォームメソッドまたはオブジェクトメソッドが実行されている場合には、これらは停止され、フォームに戻ります。 - メソッドがアプリケーションモードから実行されている場合には、このモードに戻ります。 -- **コピー**: デバッグ情報をクリップボードにコピーします。 この情報はエラーの内部環境 (番号や内部コンポーネント等) を説明します。 情報はタブ区切り形式で記述されます。 +- **Copy**: Copies the debugging information into the clipboard. この情報はエラーの内部環境 (番号や内部コンポーネント等) を説明します。 情報はタブ区切り形式で記述されます。 -- **保存...**: シンタックスエラーウィンドウの内容とコールチェーンを `.txt` ファイルに保存します。 +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## デバッガー -エラー検出の際によくある初歩的な失敗は、シンタックスエラーウィンドウの **アボート** ボタンをクリックし、コードエディターに戻り、コードを表示して原因を確認しようとすることです。 これは止めてください。 **デバッガー** を常に使用すれば、相当の時間と労力を節減することができます。 +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. これは止めてください。 **デバッガー** を常に使用すれば、相当の時間と労力を節減することができます。 デバッガーを使うと、メソッドをステップごとにゆっくりと実行することができます。 デバッガーは、エラーが発生した理由を知るために必要な情報を表示できます。 この情報があれば、エラーの修正方法はわかります。 -デバッガーを使用するもう 1つの理由は、コードの作成です。 いつも以上に複雑なアルゴリズムを作成してしまう場合があります。 達成感こそありますが、コーディングが正しいかどうかは 100%確かとはいえません。 見当もつかないまま実行するのではなく、コードの最初で `TRACE` コマンドを使用します。 その後、コードをステップごとに実行して、動作を監視することができます。 +デバッガーを使用するもう 1つの理由は、コードの作成です。 いつも以上に複雑なアルゴリズムを作成してしまう場合があります。 達成感こそありますが、コーディングが正しいかどうかは 100%確かとはいえません。 Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## ブレーク デバッグ作業では、コードの一部のトレースを特定の行までスキップする必要がある場合があります。 また、ある式が特定の値になった時 (例: "$myVar > 1000") や、特定の 4Dコマンドが呼び出されるたびにコードをトレースしたい場合もあります。 -このようなニーズに対応するために、**ブレークポイント** と **キャッチコマンド** 機能が用意されています。 これらの機能は、コードエディター、デバッガー、ランタイムエクスプローラーから設定できます。 +These needs are covered by **breakpoints** and **command catching** features. これらの機能は、コードエディター、デバッガー、ランタイムエクスプローラーから設定できます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md index 27d4f2babe2167..acf7759d628af1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md @@ -52,33 +52,33 @@ title: デバッガー トレースが停止され、通常のメソッド実行が再開されます。 -> **Shift** + **F5** または **Shift** を押しながら **トレース終了** ボタンをクリックすると、実行が再開されます。 この操作により、以降のカレントプロセスでの全ての TRACE 呼び出しが無効になります。 +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. この操作により、以降のカレントプロセスでの全ての TRACE 呼び出しが無効になります。 #### 次行に進む 現在のメソッド行 (プログラムカウンターと呼ばれる黄色い矢印で示されている行) が実行されます。 その後、デバッガは次の行に移動します。 -"次の行に進む" ボタンは、サブルーチンや関数に移動することはなく、現在トレースの対象となっているメソッドのレベルにとどまります。 呼び出されるサブルーチンや関数もトレースしたい場合には、**呼び出しメソッドもトレース** ボタンを使用します。 +"次の行に進む" ボタンは、サブルーチンや関数に移動することはなく、現在トレースの対象となっているメソッドのレベルにとどまります。 If you want to also trace subroutines and functions calls, use the **Step Into** button. -リモートデバッグにおいて、メソッドがサーバー上で実行されていた場合には、メソッドの最後の行の実行後にその親メソッドが呼ばれます。 その時、親メソッドがリモート側で実行されていた場合には、このボタンは **トレース終了** ボタンと同じように振る舞います。 +リモートデバッグにおいて、メソッドがサーバー上で実行されていた場合には、メソッドの最後の行の実行後にその親メソッドが呼ばれます。 If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### 呼び出しメソッドもトレース 別のメソッド (サブルーチンまたは関数) を呼び出す行が実行される時にこのボタンを使用すると、呼び出されたメソッドがデバッガーウィンドウに表示され、ステップ実行できます。 -デバッガーウィンドウの [呼び出し連鎖エリア](#呼び出し連鎖エリア) では、新しく呼び出されたメソッドがカレント (一番上) となります。 +The new method becomes the current (top) method in the [Call Chain Pane](#call-chain-pane) of the Debugger window. -別のメソッドを呼び出していない行が実行される場合には、このボタンは **次行に進む** ボタンと同じように振る舞います。 +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. -#### 呼び出し元に進む +#### Step Out -サブルーチンや関数をトレースしている場合にこのボタンをクリックすると、現在トレース中のメソッド全体を実行し、呼び出し元メソッドに戻ることができます。 デバッガーウィンドウは、コールチェーンの一つ前のメソッドに戻ります。 トレース中のメソッドがコールチェーンの最後のメソッドである場合には、デバッガーウィン ドウが閉じられます。 +If you are tracing subroutines and functions, clicking on this button allows you to execute the entire method currently being traced and to step back to the caller method. The Debugger window is brought back to the previous method in the call chain. If the current method is the last method in the call chain, the Debugger window is closed. -リモートデバッグにおいては、メソッドの最後の行の実行時に、サーバー上でメソッドが実行されている場合には、親メソッドが呼び出されます。 その時、親メソッドがリモート側で実行されていた場合には、このボタンは トレース終了 ボタンと同じように振る舞います。 +In remote debugging, on execution of the last line of the method, if the method is executed on the server, the parent method is called. If the parent method is executed on the remote side, the button acts in the same manner as the No Trace button. -#### 別プロセスもトレース +#### Step Into Process -新しいプロセスを作成する (New process コマンドを呼び出す) 行を実行する際にこのボタンを使用すると新しいデバッガーウィンドウが表示され、作成されたプロセスでトレースを続行することができます。 新しいプロセスを作成しない行を実行する際には、このボタンは 次行に進む ボタンと同等に動作します。 +On execution of a line that creates a new process (i.e., calling the New process command), this button opens a new Debugger window that allows you to trace the process method of the newly created process. On execution of a line that does not creates a new process, this button acts in the same manner as the Step Over button. #### 中断 @@ -89,9 +89,9 @@ title: デバッガー #### 中断&編集 -コードエディターウィンドウが開いて、**中断&編集** ボタンがクリックされた時点で実行していたメソッドを表示します。 +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Tip**: このボタンは、コードにどのような変更が必要かが明らかであり、メソッドのテストを続行するためにその変更が必要な場合に使用してください。 変更が完了したら、メソッドを再実行できます。 +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. 変更が完了したら、メソッドを再実行できます。 #### 編集 @@ -99,7 +99,7 @@ title: デバッガー このボタンをクリックしてメソッドを編集した場合には、現在の実行は中断されないため、編集内容の反映は次回実行時になります。 -> **Tip**: このボタンは、コードに必要な変更内容がわかっている場合で、その変更がコードの残り部分の実行やトレースの妨げにならない場合に使用します。 +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. #### 設定保存 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md index e5d8e175b2efc2..fa5a740319f8f0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md @@ -24,7 +24,7 @@ title: リモートマシンからのデバッグ 有効化済デバッガーは、4D Server が次のいずれかに遭遇した場合に呼び出されます: - ブレークポイント -- `TRACE` コマンド +- a `TRACE` command - キャッチコマンド - エラー @@ -32,7 +32,7 @@ title: リモートマシンからのデバッグ 注: -- `On Server Startup` データベースメソッドで実行されたコードはリモートでデバッグすることができません。 これはサーバー側でしかデバッグすることができません。 +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. これはサーバー側でしかデバッグすることができません。 - デバッガーが有効化されていない場合、実行中のコードがデバッグコマンドによって中断されることはありません。 ## デバッガーの有効化 @@ -48,20 +48,20 @@ title: リモートマシンからのデバッグ サーバーのデバッガーをリモート4Dクライアントで有効化するには: -1. 4D Server のメニューバーから、**編集** > **デバッガを無効化する** を選択し、リモートマシンからデバッガーを利用できるようにします (4D Server がヘッドレス実行されている場合、この操作はなにもしません)。 -2. サーバーに接続されたリモート4Dクライアントから、**実行** > **リモートデバッガを有効化する** を選択します。 +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -有効化に成功した場合 ([有効化リクエストの拒否](#有効化リクエストの拒否) 参照)、メニューコマンドは **リモートデバッガを無効化する** へと変わります。 +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. これで、サーバーのデバッガーはリモート4Dクライアントで有効化され、以下のタイミングまで有効化されたままです: - ユーザーセッションが終了するまで -- ユーザーが `リモートデバッガを無効化する` を選択するまで +- until you select `Detach Remote Debugger` デバッガーを再度サーバー側で有効化するには: -1. デバッガーが有効化されているリモート4Dクライアントにおいて、**実行** > **リモートデバッガを無効化する** を選択します。 -2. 4D Server のメニューバーから、**編集** > **デバッガを有効化する** を選択します。 +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > サーバー上でデバッガーが有効化されていると (デフォルト)、デバッグを可能にするため、サーバープロセスはすべて自動的にコオオペラティブモードで実行されます。 これは、パフォーマンスに大きな影響を与えかねません。 サーバーマシン上でデバッグする必要がない場合は、デバッガーを無効化し、必要に応じてリモートマシンで有効化することが推奨されます。 @@ -69,13 +69,13 @@ title: リモートマシンからのデバッグ デバッガーは、リモート4Dクライアントまたはサーバーの開始時に自動的に有効化することができます: -- サーバー側の場合 (ヘッドレスモードでなければ)、このオプションは **デバッガを開始時に有効化する** という名前です。 サーバーが開始されると、自動的にデバッガーが有効化されます (デフォルト): +- On the server (if not headless), this option is named **Attach Debugger At Startup**. サーバーが開始されると、自動的にデバッガーが有効化されます (デフォルト): -> **警告**: のちにヘッドレスモードで起動されるサーバーにおいてこのオプションが選択されたままの場合、このサーバーのデバッガーは利用できません。 +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- リモート4Dクライアントでは、このオプションは **リモートデバッガを開始時に有効化する** という名前です。 このオプションが選択されている場合、リモート4Dクライアントは、その後同じ 4D Serverデータベースに接続するたびに、自動的にリモートデバッガーを有効化しようとします。 成功した場合 ([有効化リクエストの拒否](#有効化リクエストの拒否) 参照)、リモートデバッガーは自動的にリモート4Dクライアントで有効化され、メニューコマンドは **リモートデバッガを無効化する** へと変わります。 +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. このオプションが選択されている場合、リモート4Dクライアントは、その後同じ 4D Serverデータベースに接続するたびに、自動的にリモートデバッガーを有効化しようとします。 If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. -> この設定はプロジェクトごとに、[`.4DPreferences`](Project/architecture.md#userpreferencesusername) ファイル内にローカル保存されます。 +> This setting is applied per project and is stored locally in the [`.4DPreferences`](Project/architecture.md#userpreferencesusername) file. ## 有効化リクエストの拒否 @@ -89,5 +89,5 @@ title: リモートマシンからのデバッグ このような場合に、デバッガーを有効化するには、以下のどちらかの条件が必要です: -- 有効化済デバッガーを、**リモートデバッガを無効化する** メニューコマンドでリモート4Dクライアントから外す、あるいは **デバッガを無効化する** コマンドを使用してサーバーから外す。 +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - 有効化済デバッガーを使用しているリモート4Dクライアントセッションが閉じられる。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md index 1f5dda017cc8e1..706f6a3c6aeff3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md @@ -3,7 +3,7 @@ id: text title: Text --- -テキストオブジェクトを使って、指示・タイトル・ラベルなどの静的 (スタティック) なテキストを フォーム上に表示することができます。 これらのテキストは、参照を含むことで動的にもなります。 詳細については [スタティックテキスト中で参照を使用する](https://doc.4d.com/4Dv18/4D/18/Using-references-in-static-text.300-4575714.ja.html) を参照ください。 +テキストオブジェクトを使って、指示・タイトル・ラベルなどの静的 (スタティック) なテキストを フォーム上に表示することができます。 これらのテキストは、参照を含むことで動的にもなります。 詳細については [スタティックテキスト中で参照を使用する](https://doc.4d.com/4Dv18/4D/18/Using-references-in-static-text.300-4575714.ja.html) を参照ください。 フォーム上に表示することができます。 これらのテキストは、参照を含むことで動的にもなります。 詳細については [スタティックテキスト中で参照を使用する](https://doc.4d.com/4Dv18/4D/18/Using-references-in-static-text.300-4575714.ja.html) を参照ください。 #### JSON 例: @@ -29,7 +29,7 @@ title: Text > このプロパティは `OBJECT SET TEXT ORIENTATION` ランゲージコマンドによっても設定することができます。 -テキストが回転された後でも、サイズや位置などすべてのプロパティを変更することが可能です。 テキストエリアの高さと幅は、回転の方向に依らないという点に注意してください: +テキストが回転された後でも、サイズや位置などすべてのプロパティを変更することが可能です。 テキストエリアの高さと幅は、回転の方向に依らないという点に注意してください: テキストエリアの高さと幅は、回転の方向に依らないという点に注意してください: テキストエリアの高さと幅は、回転の方向に依らないという点に注意してください: テキストエリアの高さと幅は、回転の方向に依らないという点に注意してください: ![](../assets/en/FormObjects/staticText2.png) @@ -47,27 +47,4 @@ title: Text
    -[タイプ](properties_Object.md#タイプ) - -[オブジェクト名](properties_Object.md#オブジェクト名) - -[タイトル](properties_Object.md#タイトル) - -[CSSクラス](properties_Object.md#cssクラス) - -[左](properties_CoordinatesAndSizing.md#左) - -[上](properties_CoordinatesAndSizing.md#上) - -[右](properties_CoordinatesAndSizing.md#右) - -[下](properties_CoordinatesAndSizing.md#下) - -[幅](properties_CoordinatesAndSizing.md#幅) - -[高さ](properties_CoordinatesAndSizing.md#高さ) - -[角の半径](properties_CoordinatesAndSizing.md#角の半径) - -[横方向サイズ変更](properties_ResizingOptions.md#横方向サイズ変更) - -[縦方向サイズ変更](properties_ResizingOptions.md#縦方向サイズ変更) - -[表示状態](properties_Display.md#表示状態) - -[塗りカラー](properties_BackgroundAndBorder.md#背景色塗りカラー) - -[境界線スタイル](properties_BackgroundAndBorder.md#境界線スタイル) - -[フォント](properties_Text.md#フォント) - -[フォントサイズ](properties_Text.md#フォントサイズ) - -[太字](properties_Text.md#太字) - -[イタリック](properties_Text.md#イタリック) - -[下線](properties_Text.md#下線) - -[フォントカラー](properties_Text.md#フォントカラー) - -[方向](properties_Text.md#方向) - -[横揃え](properties_Text.md#横揃え) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md index 8e6f5f072ffb15..a2678883e50770 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md @@ -12,7 +12,7 @@ title: リリースノート - 時間型のリストボックスの列とヘッダーは、["blankIfNull" オプション](../FormObjects/properties_Display.md#時間フォーマット) をサポートするようになりました。 - New properties in [`.getBoxInfo()`](../API/IMAPTransporterClass.md#getboxinfo) and [`.getBoxList()`](../API/IMAPTransporterClass.md#getboxlist). - [コンポーネントマネージャーのインターフェースを使用してコンポーネントを追加および削除](../Project/components.md#依存関係の追加と削除) できるようになりました。 -- コンパイラー設定の新しい [**直接型指定モード**](../Project/compiler.md#直接型指定の有効化): コード内のすべての変数および引数を `var` と `#DECLARE`/`Function` キーワードで宣言します (新規プロジェクトではこのモードのみサポートされます)。 これに伴い、[シンタックスチェック機能](../Project/compiler.md#シンタックスチェック) が強化されました。 +- コンパイラー設定の新しい [**直接型指定モード**](../Project/compiler.md#直接型指定の有効化): コード内のすべての変数および引数を `var` と `#DECLARE`/`Function` キーワードで宣言します (新規プロジェクトではこのモードのみサポートされます)。 これに伴い、[シンタックスチェック機能](../Project/compiler.md#シンタックスチェック) が強化されました。 これに伴い、[シンタックスチェック機能](../Project/compiler.md#シンタックスチェック) が強化されました。 これに伴い、[シンタックスチェック機能](../Project/compiler.md#シンタックスチェック) が強化されました。 これに伴い、[シンタックスチェック機能](../Project/compiler.md#シンタックスチェック) が強化されました。 - [セッションシングルトン](../Concepts/classes.md#シングルトンクラス) と、新しい [`.isSessionSingleton`](../API/ClassClass.md#issessionsingleton) クラスプロパティをサポート。 - New [`onHttpGet` function keyword](../ORDA/ordaClasses.md#onhttpget-keyword) to define singleton or ORDA functions that can be called through [HTTP REST GET requests](../REST/ClassFunctions.md#function-calls). - New [`4D.OutgoingMessage`](../API/OutgoingMessageClass.md) class for the REST server to return any web contents. @@ -30,8 +30,9 @@ title: リリースノート #### 動作の変更 -- [4Dランゲージ](../commands/command-index.md) よび [4D Write Pro ランゲージ](../WritePro/commands/command-index.md) のドキュメントが、developer.4d.com で利用できるようになりました。 これらのドキュメントに関する新機能と変更点については、このリリースノートを参照ください。 +- [4Dランゲージ](../commands/command-index.md) よび [4D Write Pro ランゲージ](../WritePro/commands/command-index.md) のドキュメントが、developer.4d.com で利用できるようになりました。 これらのドキュメントに関する新機能と変更点については、このリリースノートを参照ください。 これらのドキュメントに関する新機能と変更点については、このリリースノートを参照ください。 これらのドキュメントに関する新機能と変更点については、このリリースノートを参照ください。 これらのドキュメントに関する新機能と変更点については、このリリースノートを参照ください。 - [`File`](../commands/file.md) コマンド (および [`4D.File.new()`](../API/FileClass.md#4dfilenew) コマンド) は、引数として与えられた *path* のシンタックスをより厳しくチェックする様になりました。 +- The **describe** action [permission](../ORDA/privileges.md#permission-actions) has been removed from available actions. Access to [`/rest/$catalog`](../REST/$catalog.md) urls is no longer controlled. Session *describe* privileges are now ignored. ## 4D 20 R6 @@ -39,7 +40,7 @@ title: リリースノート #### ハイライト -- [オブジェクト参照](../Concepts/dt_object.md#オブジェクト演算子) と [コレクション参照](../Concepts/dt_collection.md#コレクション演算子) を対象とした比較演算子をサポート。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 +- [オブジェクト参照](../Concepts/dt_object.md#オブジェクト演算子) と [コレクション参照](../Concepts/dt_collection.md#コレクション演算子) を対象とした比較演算子をサポート。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 [`collection.query()`](../API/CollectionClass.md#query) は、[オブジェクト参照やコレクション参照をクエリの値](../API/CollectionClass.md#オブジェクト参照やコレクション参照で検索する) としてサポートするようになりました。 - [宣言された名前空間](../Extensions/develop-components.md#コンポーネント名前空間の宣言) をコンポーネントが持つ場合、そのクラスは [`cs.`](../Concepts/classes.md#cs) を介して、ホストプロジェクトに読み込まれているすべてのコンポーネント間で自動的に共有されるようになりました。 - コンポーネントマネージャー: [GitHub に保存されたコンポーネント](../Project/components.md#github-に保存されたコンポーネントの宣言) のサポート。 - 新しい [`entitySelection.clean()`](../API/EntitySelectionClass.md#clean) 関数と [`$clean`](../REST/$clean.md) REST API が追加されました。これらは、対象のエンティティセレクションから削除済みエンティティを除外したエンティティセレクションを新規に取得します。 @@ -71,7 +72,7 @@ title: リリースノート - [`Try...Catch...End try`](../Concepts/error-handling.md#trycatchend-try) エラー処理構文のサポート。 - QUICネットワークレイヤーは [ブロードキャスト](../Desktop/clientServer.md#リモートプロジェクトを開く)、[SSO](https://doc.4d.com/4Dv20R5/4D/20-R5/Single-Sign-On-SSO-on-Windows.300-6932709.ja.html)、および [IPv6](https://doc.4d.com/4Dv20R5/4D/20-R5/IP-Settings.300-6932707.ja.html) に対応しました。 - [制限付エンティティセレクション](../ORDA/entities.md#制限付エンティティセレクション) をサポート。 -- [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 新しいクラスプロパティ: [`.isShared`](../API/ClassClass.md#isshared), [`.isSingleton`](../API/ClassClass.md#isingleton), [`.me`](../API/ClassClass.md#me). +- [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 新しいクラスプロパティ: [`.isShared`](../API/ClassClass.md#isshared), [`.isSingleton`](../API/ClassClass.md#isingleton), [`.me`](../API/ClassClass.md#me). [共有クラス](../Concepts/classes.md#共有クラス) と [シングルトンクラス](../Concepts/classes.md#シングルトンクラス) をサポート。 新しいクラスプロパティ: [`.isShared`](../API/ClassClass.md#isshared), [`.isSingleton`](../API/ClassClass.md#isingleton), [`.me`](../API/ClassClass.md#me). - [宣言と同時にクラスプロパティを初期化](../Concepts/classes.md/#宣言と同時にプロパティを初期化する) できるようになりました。 - RESTリクエスト用の新しい [強制ログインモード](../REST/authUsers.md#強制ログインモード) と、[Qodly Studio for 4D での専用サポート](../WebServer/qodly-studio.md#強制ログイン)。 - 新しい [$format](../REST/$format.md) RESTパラメーター。 @@ -82,8 +83,8 @@ title: リリースノート #### 動作の変更 -- *4D Internet Commands* および *4D for OCI* プラグインは、4Dインストーラーに含まれなくなりました。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 -- ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) に加えた変更は、`catalog_editor.json` という個別ファイルに保存されるようになりました。このファイルはプロジェクトの [`Sources`フォルダー](../Project/architecture.md#sources) に保存されます。 +- *4D Internet Commands* および *4D for OCI* プラグインは、4Dインストーラーに含まれなくなりました。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 これらのプラグインを入手するには、[**4D製品ダウンロードポータル**](https://product-download.4d.com/) に接続する必要があります。 +- ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) ストラクチャーエディターでテーブルやフィールドのグラフィカルな表示 (色、位置、順序など) に加えた変更は、`catalog_editor.json` という個別ファイルに保存されるようになりました。このファイルはプロジェクトの [`Sources`フォルダー](../Project/architecture.md#sources) に保存されます。 ## 4D 20 R4 @@ -109,8 +110,8 @@ title: リリースノート - 引数を宣言するための従来のシンタックス (例: `C_TEXT($1)` や `var $1 : Text`) は非推奨となり、コードの入力時、シンタックスチェック、コンパイル時に警告が生成されます。 - セレクション内レコードの削除後に、別レコードが新規作成された場合でも、セレクションの一貫性が保持されるようになりました ([このブログ記事](https://blog.4d.com/ja/4d-keeps-your-selections-of-records-consistent-regarding-deletion-of-records/) を参照ください)。 -- 更新された [OpenSSL ライブラリ](#ライブラリの一覧) では、デフォルトの SSL/TLS セキュリティレベルが 1 から 2 に変更されました。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 -- In order to allow password verification when the [4D user directory uses the bcrypt algorithm](https://blog.4d.com/bcrypt-support-for-passwords/), the "password" value in the *connectionInfo* parameter of the [`Open datastore`](../commands/open-datastore.md) command is now sent in clear form by default. "On REST authentication" データベースメソッドが、パスワードを平文の状態で扱えるようにし (3番目のパラメーターは **False**)、`Open datastore` に渡す *connectionInfo* で "tls" オプションを **True** にすることで、接続が暗号化されるようにする必要があります。 In specific cases, a new "passwordAlgorithm" option can also be used for compatibility (see [`Open datastore`](../commands/open-datastore.md) command). +- 更新された [OpenSSL ライブラリ](#ライブラリの一覧) では、デフォルトの SSL/TLS セキュリティレベルが 1 から 2 に変更されました。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 1024ビット以上2048ビット未満のRSA、DSA、DH鍵、および 160ビット以上224ビット未満の ECC鍵は使用できなくなりました。 デフォルトでは、以前の OpenSSLバージョンですでに TLS圧縮が無効にされていました。 セキュリティレベル2では、これを有効化できません。 +- "On REST authentication" データベースメソッドが、パスワードを平文の状態で扱えるようにし (3番目のパラメーターは **False**)、`Open datastore` に渡す *connectionInfo* で "tls" オプションを **True** にすることで、接続が暗号化されるようにする必要があります。 In specific cases, a new "passwordAlgorithm" option can also be used for compatibility (see [`Open datastore`](../commands/open-datastore.md) command). "On REST authentication" データベースメソッドが、パスワードを平文の状態で扱えるようにし (3番目のパラメーターは **False**)、`Open datastore` に渡す *connectionInfo* で "tls" オプションを **True** にすることで、接続が暗号化されるようにする必要があります。 In specific cases, a new "passwordAlgorithm" option can also be used for compatibility (see [`Open datastore`](../commands/open-datastore.md) command). In specific cases, a new "passwordAlgorithm" option can also be used for compatibility (see [`Open datastore`](../commands/open-datastore.md) command). ## 4D 20 R3 @@ -121,7 +122,7 @@ title: リリースノート - 新しい [`collection.multiSort()`](../API/CollectionClass.md#multisort) 関数を追加しました。 - Support of *context* parameter in [`Formula from string`](../commands/formula-from-string.md). - [4D.WebSocket.new](../API/WebSocketClass.md#4dwebsocketnew) の *connectionHandler* パラメーターで `headers` プロパティをサポート。 -- データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 +- データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 データ同期モジュールの実装に役立つ [グローバル変更スタンプ](../ORDA/global-stamp.md)。 新しい [`ds.getGlobalStamp`](../API/DataStoreClass.md#getglobalstamp) と [`ds.setGlobalStamp`](../API/DataStoreClass.md#setglobalstamp) 関数が追加されました。 - ピクチャー/Blob属性へのファイル参照の代入は、[ORDAでサポートされています](../ORDA/entities.md#d#ピクチャーまたは-blob属性にファイルを代入する)。 - [宣言と同時に変数のデータ型と値を初期化](../Concepts/variables/#宣言と同時に変数を初期化する) できるようになりました。 - ログファイルの設定は、[カレントデータファイル](../Backup/settings.md#ログ管理) とともに保存されるようになりました。 @@ -133,8 +134,8 @@ title: リリースノート #### 動作の変更 -- いくつかのエラーは、[エラー処理メソッド](../Concepts/error-handling.md) によってインタプリタモードのみでキャッチ可能でした。 この問題の修正後、以下のエラーがコンパイルモードでも検出されるようになりました: *範囲外のインデックス*、*互換性のない型*、*Null ポインターの逆参照*。 ただし、Intelプロセッサーでは、このようなエラーによって以前と同様に処理が中断されますが、Apple Siliconプロセッサーでは、[`ABORT`](https://doc.4d.com/4dv20/help/command/ja/page156.html)コマンドを呼び出さない限り、処理は中断されません。 -- 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 +- いくつかのエラーは、[エラー処理メソッド](../Concepts/error-handling.md) によってインタプリタモードのみでキャッチ可能でした。 この問題の修正後、以下のエラーがコンパイルモードでも検出されるようになりました: *範囲外のインデックス*、*互換性のない型*、*Null ポインターの逆参照*。 いくつかのエラーは、[エラー処理メソッド](../Concepts/error-handling.md) によってインタプリタモードのみでキャッチ可能でした。 この問題の修正後、以下のエラーがコンパイルモードでも検出されるようになりました: *範囲外のインデックス*、*互換性のない型*、*Null ポインターの逆参照*。 ただし、Intelプロセッサーでは、このようなエラーによって以前と同様に処理が中断されますが、Apple Siliconプロセッサーでは、[`ABORT`](https://doc.4d.com/4dv20/help/command/ja/page156.html)コマンドを呼び出さない限り、処理は中断されません。 +- 4D は内部的な PHPインタプリターを実装しなくなりました。 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 4D は内部的な PHPインタプリターを実装しなくなりました。 PHPコマンドを使用するには、[別途PHPインタプリターをセットアップして実行する](https://blog.4d.com/ja/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter) 必要があります。 ## 4D 20 R2 @@ -142,7 +143,7 @@ title: リリースノート :::warning セキュリティに関する注記 -4Dアプリケーションが TLS接続を使用する場合は、4D 20 R2 HF1 build 100440以上へのアップグレードが推奨されます。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 +4Dアプリケーションが TLS接続を使用する場合は、4D 20 R2 HF1 build 100440以上へのアップグレードが推奨されます。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 詳細は [セキュリティ情報](https://blog.4d.com/ja/security-bulletin-two-cves-and-how-to-stay-secure/) を参照ください。 ::: @@ -158,7 +159,7 @@ title: リリースノート #### 動作の変更 -- **警告**: [4D.FileHandle](../API/FileHandleClass.md) オブジェクトの [`offset`](../API/FileHandleClass.md#offset) の開始値が誤って 0 ではなく 1 に設定されていました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 +- **警告**: [4D.FileHandle](../API/FileHandleClass.md) オブジェクトの [`offset`](../API/FileHandleClass.md#offset) の開始値が誤って 0 ではなく 1 に設定されていました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 **20.1 HF1** および **20 R2** のバージョンで 4D が修正され、この値が 0 になりました。 ## 4D 20.x LTS @@ -166,20 +167,20 @@ title: リリースノート ## ライブラリの一覧 -| ライブラリ | 現在のバージョン | 更新された 4D バージョン | 説明 | -| --------- | -------------------------------------- | -------------- | ----------------------------------------------------------------------------------------- | -| BoringSSL | 0aa300b | 20 R6 | QUIC に使用 | -| CEF | 121 | 20 R5 | Chromium 6167 | -| Hunspell | 1.7.2 | 20 | 4D フォームと 4D Write Pro でスペルチェックに使用されます。 | -| ICU | 73.2 | 20 | このアップグレードにより、英数字とテキスト、オブジェクトのインデックスが自動的に再構築されます。 | -| libldap | 2.6.7 | 20 R6 | | -| libsasl | 2.1.28 | 20 | | -| Libuv | 1.48 | 20 R6 | QUIC に使用 | -| libZip | 1.9.2 | 20 | Zip クラス、4D Write Pro、svg および serverNet コンポーネントによって使用。 | -| LZMA | 5.4.1 | 20 | | -| OpenSSL | 3.3.2 | **20 R7** | デフォルトの TLS/SSL セキュリティレベルがアップグレードされました。 リリース v20R4 の[動作の変更](#動作の変更)参照。 | -| PDFWriter | 4.3 | 20 | 12.2.1 で FreeType依存 | -| PHP | 8.2.4 | 20 | | -| SpreadJS | 17.1.0 | **20 R7** | 新機能の概要については、[このブログ記事](https://blog.4d.com/ja/4d-view-pro-whats-new-in-4d-20-r7/) を参照ください。 | -| webKit | WKWebView | 19 | | -| Zlib | 1.2.13 | 20 | | +| ライブラリ | 現在のバージョン | 更新された 4D バージョン | 説明 | +| --------- | -------------------------------------- | -------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| BoringSSL | 0aa300b | 20 R6 | QUIC に使用 | +| CEF | 121 | 20 R5 | Chromium 6167 | +| Hunspell | 1.7.2 | 20 | 4D フォームと 4D Write Pro でスペルチェックに使用されます。 | +| ICU | 73.2 | 20 | このアップグレードにより、英数字とテキスト、オブジェクトのインデックスが自動的に再構築されます。 | +| libldap | 2.6.7 | 20 R6 | | +| libsasl | 2.1.28 | 20 | | +| Libuv | 1.48 | 20 R6 | QUIC に使用 | +| libZip | 1.9.2 | 20 | Zip クラス、4D Write Pro、svg および serverNet コンポーネントによって使用。 | +| LZMA | 5.4.1 | 20 | | +| OpenSSL | 3.3.2 | **20 R7** | デフォルトの TLS/SSL セキュリティレベルがアップグレードされました。 リリース v20R4 の[動作の変更](#動作の変更)参照。 リリース v20R4 の[動作の変更](#動作の変更)参照。 リリース v20R4 の[動作の変更](#動作の変更)参照。 | +| PDFWriter | 4.3 | 20 | 12.2.1 で FreeType依存 | +| PHP | 8.2.4 | 20 | | +| SpreadJS | 17.1.0 | **20 R7** | 新機能の概要については、[このブログ記事](https://blog.4d.com/ja/4d-view-pro-whats-new-in-4d-20-r7/) を参照ください。 | +| webKit | WKWebView | 19 | | +| Zlib | 1.2.13 | 20 | | diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md index e329708f024c4d..b95c82829bcbf4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md @@ -9,16 +9,16 @@ title: 用語集 ## アクション -[リソース上](#リソース) に対しておこなえるアクションを指します。 利用可能なアクションは、create (作成)、read (読み取り)、update (更新)、drop (削除)、execute (実行)、promote (昇格)、および describe (記述) です。 +[リソース上](#リソース) に対しておこなえるアクションを指します。 [リソース上](#リソース) に対しておこなえるアクションを指します。 [リソース上](#リソース) に対しておこなえるアクションを指します。 Available actions are: create, read, update, drop, execute, and promote. ## 属性 -属性とは、リレーショナルデータベース内における最小の保存セルです ([リレーション属性](#リレーション属性) も参照してください)。 データクラス属性とエンティティ属性を混同しないようにしてください: +属性とは、リレーショナルデータベース内における最小の保存セルです ([リレーション属性](#リレーション属性) も参照してください)。 データクラス属性とエンティティ属性を混同しないようにしてください: データクラス属性とエンティティ属性を混同しないようにしてください: - データクラスオブジェクトにおける各プロパティは、対応するテーブルの対応するフィールドへとマップするデータクラス属性です (同じ名前と型)。 - エンティティオブジェクトにおけるエンティティ属性は、対応するデータストア属性の値を格納するプロパティです。 -> *属性* と *プロパティ* は似た概念です。 "属性" はデータを保存するデータクラスプロパティを指定するのに使われるのに対し、"プロパティ"はより一般的な概念でオブジェクト内で保存されるデータを定義します。 +> *属性* と *プロパティ* は似た概念です。 "属性" はデータを保存するデータクラスプロパティを指定するのに使われるのに対し、"プロパティ"はより一般的な概念でオブジェクト内で保存されるデータを定義します。 "属性" はデータを保存するデータクラスプロパティを指定するのに使われるのに対し、"プロパティ"はより一般的な概念でオブジェクト内で保存されるデータを定義します。 ## 属性パス @@ -30,7 +30,7 @@ title: 用語集 ## 計算属性 -計算属性は、実際には情報を保存しません。 代わりに、同じエンティティや他のエンティティ、属性、関数などから得られる値に基づいて、その属性値を決定します。 計算属性が参照されると、それを定義する "計算" が評価され、値が決定されます。 計算属性の値を算出するにあたっては、ユーザー定義のコードによって、その評価中に評価の仕方を決定することも可能です。 +計算属性は、実際には情報を保存しません。 代わりに、同じエンティティや他のエンティティ、属性、関数などから得られる値に基づいて、その属性値を決定します。 計算属性が参照されると、それを定義する "計算" が評価され、値が決定されます。 計算属性の値を算出するにあたっては、ユーザー定義のコードによって、その評価中に評価の仕方を決定することも可能です。 代わりに、同じエンティティや他のエンティティ、属性、関数などから得られる値に基づいて、その属性値を決定します。 計算属性が参照されると、それを定義する "計算" が評価され、値が決定されます。 計算属性の値を算出するにあたっては、ユーザー定義のコードによって、その評価中に評価の仕方を決定することも可能です。 ## データモデルクラス @@ -46,7 +46,7 @@ ORDA データモデルクラスの関数。 ## データクラス -データクラスとは、データを記述するオブジェクトモデルです。 データストアによって提供されるデータベースのテーブルは、データクラスを通して管理されます。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 +データクラスとは、データを記述するオブジェクトモデルです。 データストアによって提供されるデータベースのテーブルは、データクラスを通して管理されます。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データクラスとは、データを記述するオブジェクトモデルです。 データストアによって提供されるデータベースのテーブルは、データクラスを通して管理されます。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データクラスとは、データを記述するオブジェクトモデルです。 データストアによって提供されるデータベースのテーブルは、データクラスを通して管理されます。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データストアによって提供されるデータベースのテーブルは、データクラスを通して管理されます。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データストアから提供されたデータベースの各テーブルは、対応する同名のデータクラスを持ちます。 テーブルの各フィールドは、データクラスの属性です。 データクラスは単一のデータストアにリレートされています。 @@ -56,7 +56,7 @@ ORDA データモデルクラスの関数。 ## データストア -データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 `ds` コマンドによって返されるメインデータベースは、データストア (メインデータストア) として利用可能です。 +データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 `ds` コマンドによって返されるメインデータベースは、データストア (メインデータストア) として利用可能です。 データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 `ds` コマンドによって返されるメインデータベースは、データストア (メインデータストア) として利用可能です。 データストアとは、ORDA によって提供されるインターフェースオブジェクトです。データストアはストラクチャーを参照し、データへのアクセスを提供します。 `ds` コマンドによって返されるメインデータベースは、データストア (メインデータストア) として利用可能です。 データストアは以下のものを提供します: @@ -65,7 +65,7 @@ ORDA データモデルクラスの関数。 利用できるデータベースは、スタンダロンまたはクライアント/サーバーで開いているメインの 4D データベース (メインデータストア)、および REST リソースとして公開された 4D Server データベースです (リモートデータストア)。 -データストアは単一のデータベースのみを参照しますが、 複数のデータベースをアクセスするために複数のデータストアを開くことも可能です。 +データストアは単一のデータベースのみを参照しますが、 データストアは単一のデータベースのみを参照しますが、 データストアは単一のデータベースのみを参照しますが、 複数のデータベースをアクセスするために複数のデータストアを開くことも可能です。 データストアは単一のデータベースのみを参照しますが、 データストアは単一のデータベースのみを参照しますが、 複数のデータベースをアクセスするために複数のデータストアを開くことも可能です。 ## DataStore クラス @@ -81,11 +81,11 @@ ORDA データモデルクラスの関数。 ## ds -`ds` は、[データストア](dsMapping.md#データストア) のオブジェクト参照を返す 4Dランゲージコマンドです。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 +`ds` は、[データストア](dsMapping.md#データストア) のオブジェクト参照を返す 4Dランゲージコマンドです。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 この参照は 4D のメインデータベースが提供するデータストアに合致します。 ## エンティティ -エンティティとは、データクラスモデルに対応するオブジェクトです。 エンンティティには、データクラスと同じ属性が格納されます。 +エンティティとは、データクラスモデルに対応するオブジェクトです。 エンンティティには、データクラスと同じ属性が格納されます。 エンンティティには、データクラスと同じ属性が格納されます。 属性とプロパティは似た概念です。 *属性* と *プロパティ* は似た概念です。 "属性" はデータを保存するデータクラスプロパティを指定するのに使われるのに対し、"プロパティ"はより一般的な概念でオブジェクト内で保存されるデータを定義します。 "属性" はデータを保存するデータクラスプロパティを指定するのに使われるのに対し、"プロパティ"はより一般的な概念でオブジェクト内で保存されるデータを定義します。 エンティティは、データクラスのインスタンスとも解釈可能なオブジェクトです。 しかしながら、エンティティはリレートされたデータも格納しています。 エンティティの目的はデータの管理 (作成、更新、削除) です。 @@ -93,7 +93,7 @@ ORDA データモデルクラスの関数。 ## エンティティセレクション -エンティティセレクションは、一つのオブジェクトです。 データストアをクエリすると、エンティティセレクションが返されます。 エンティティセレクションとは、同じデータクラスに所属するエンティティへの参照のセットのことです。 +エンティティセレクションは、一つのオブジェクトです。 エンティティセレクションは、一つのオブジェクトです。 データストアをクエリすると、エンティティセレクションが返されます。 エンティティセレクションとは、同じデータクラスに所属するエンティティへの参照のセットのことです。 エンティティセレクションは、一つのオブジェクトです。 エンティティセレクションは、一つのオブジェクトです。 データストアをクエリすると、エンティティセレクションが返されます。 エンティティセレクションとは、同じデータクラスに所属するエンティティへの参照のセットのことです。 エンティティセレクションとは、同じデータクラスに所属するエンティティへの参照のセットのことです。 エンティティセレクションは以下を格納します: @@ -105,21 +105,21 @@ ORDA データモデルクラスの関数。 ## 汎用クラス -エンティティやデータクラスなどの ORDA オブジェクト用のビルトインクラス。 汎用クラスのプロパティや関数は、ユーザー拡張クラス (例: `EmployeeEntity`) において自動で利用可能です。 +エンティティやデータクラスなどの ORDA オブジェクト用のビルトインクラス。 エンティティやデータクラスなどの ORDA オブジェクト用のビルトインクラス。 汎用クラスのプロパティや関数は、ユーザー拡張クラス (例: `EmployeeEntity`) において自動で利用可能です。 エンティティやデータクラスなどの ORDA オブジェクト用のビルトインクラス。 汎用クラスのプロパティや関数は、ユーザー拡張クラス (例: `EmployeeEntity`) において自動で利用可能です。 ## レイジーローディング -エンティティは参照として管理されているため、データは必要なときにのみロードされます。つまりコードや、インターフェースウィジェットを通してアクセスしたときなどです。 この最適化原理は、レイジーローディングと呼ばれています。 +エンティティは参照として管理されているため、データは必要なときにのみロードされます。つまりコードや、インターフェースウィジェットを通してアクセスしたときなどです。 この最適化原理は、レイジーローディングと呼ばれています。 この最適化原理は、レイジーローディングと呼ばれています。 ## メインデータストア -開かれている 4Dデータベース (シングルユーザーまたはクライアント/サーバー) に対応するデータストアオブジェクト。 メインデータストアは ds コマンドによって返されます。 +開かれている 4Dデータベース (シングルユーザーまたはクライアント/サーバー) に対応するデータストアオブジェクト。 メインデータストアは ds コマンドによって返されます。 メインデータストアは ds コマンドによって返されます。 メインデータストアは ds コマンドによって返されます。 メインデータストアは ds コマンドによって返されます。 ## メソッド -データストア、データクラス、エンティティセレクション、エンティティなどの ORDA オブジェクトは、オブジェクトのクラスを定義します。 これらのクラスには、オブジェクトを直接操作するための専用のメソッドが提供されています。 これらのメソッドはメンバー関数とも呼ばれます。 このメソッドを使用するには、オブジェクトのインスタンスに対して呼び出します。 +データストア、データクラス、エンティティセレクション、エンティティなどの ORDA オブジェクトは、オブジェクトのクラスを定義します。 これらのクラスには、オブジェクトを直接操作するための専用のメソッドが提供されています。 これらのメソッドはメンバー関数とも呼ばれます。 このメソッドを使用するには、オブジェクトのインスタンスに対して呼び出します。 これらのクラスには、オブジェクトを直接操作するための専用のメソッドが提供されています。 これらのメソッドはメンバー関数とも呼ばれます。 このメソッドを使用するには、オブジェクトのインスタンスに対して呼び出します。 -たとえば、`query()` メソッドはデータクラスのメンバー関数です。 `$myClass` 変数にデータクラスオブジェクトを格納している場合、次のように書くことができます: +たとえば、`query()` メソッドはデータクラスのメンバー関数です。 たとえば、`query()` メソッドはデータクラスのメンバー関数です。 たとえば、`query()` メソッドはデータクラスのメンバー関数です。 `$myClass` 変数にデータクラスオブジェクトを格納している場合、次のように書くことができます: たとえば、`query()` メソッドはデータクラスのメンバー関数です。 たとえば、`query()` メソッドはデータクラスのメンバー関数です。 `$myClass` 変数にデータクラスオブジェクトを格納している場合、次のように書くことができます: ```code4d $myClass.query("name = smith") @@ -127,7 +127,7 @@ $myClass.query("name = smith") ## ミックスデータ型 -このドキュメントでは、データクラス属性に保存可能な値の様々な型を指定するために、"ミックス" データ型が使用されます。 : +このドキュメントでは、データクラス属性に保存可能な値の様々な型を指定するために、"ミックス" データ型が使用されます。 : : : : - 数値 - テキスト @@ -156,11 +156,11 @@ $myClass.query("name = smith") [属性](#属性) を参照してください。 -> 属性とプロパティは似た概念です。 "属性" はデータを保存するデータクラスプロパティを指定するのに使われるのに対し、"プロパティ"はより一般的な概念でオブジェクト内で保存されるデータを定義します。 +> 属性とプロパティは似た概念です。 *属性* と *プロパティ* は似た概念です。 "属性" はデータを保存するデータクラスプロパティを指定するのに使われるのに対し、"プロパティ"はより一般的な概念でオブジェクト内で保存されるデータを定義します。 "属性" はデータを保存するデータクラスプロパティを指定するのに使われるのに対し、"プロパティ"はより一般的な概念でオブジェクト内で保存されるデータを定義します。 ## プロパティパス -プロパティパスとは、あるオブジェクトのプロパティへのパスです。 プロパティが複数の階層にネストされている場合、各階層はドット (".") によって区切られます。 +属性パスとは、あるデータクラスあるいはエンティティ内の属性へのパスです。 [プロパティパス](#プロパティパス) も参照ください。 プロパティが複数の階層にネストされている場合、各階層はドット (".") によって区切られます。 ## 通常クラス @@ -189,23 +189,23 @@ ORDA オブジェクトとは関わりのないユーザークラス。 ## リモートデータストア -4D または (HTTP経由で利用可能な) 4D Server 上で開かれている、REST リソースとして公開された 4Dデータベース。 このデータベースは他のマシンにおいてデータストアとしてローカルに参照することができ、その際には割り当てられた locaID で識別されます。 リモートデータストアは ORDA の概念 (データストア、データクラス、エンティティセレクション等) を使って利用できます。 利用にあたってはライセンスが消費されます。 +4D または (HTTP経由で利用可能な) 4D Server 上で開かれている、REST リソースとして公開された 4Dデータベース。 このデータベースは他のマシンにおいてデータストアとしてローカルに参照することができ、その際には割り当てられた locaID で識別されます。 リモートデータストアは ORDA の概念 (データストア、データクラス、エンティティセレクション等) を使って利用できます。 利用にあたってはライセンスが消費されます。 このデータベースは他のマシンにおいてデータストアとしてローカルに参照することができ、その際には割り当てられた locaID で識別されます。 リモートデータストアは ORDA の概念 (データストア、データクラス、エンティティセレクション等) を使って利用できます。 利用にあたってはライセンスが消費されます。 ## リソース -[権限](#権限) における [アクション](#アクション) の許可・拒否の対象となる ORDA 要素。 利用可能なリソースは、データストア、データクラス、データクラス属性、ORDAデータモデル関数のいずれかです。 +[権限](#権限) における [アクション](#アクション) の許可・拒否の対象となる ORDA 要素。 利用可能なリソースは、データストア、データクラス、データクラス属性、ORDAデータモデル関数のいずれかです。 利用可能なリソースは、データストア、データクラス、データクラス属性、ORDAデータモデル関数のいずれかです。 ## ロール -ロールとは、管理者が使用することを目的とした、公開された [権限](#権限) のことです。 ロールは 1つ以上の権限を持つことができます。 +ロールとは、管理者が使用することを目的とした、公開された [権限](#権限) のことです。 ロールは 1つ以上の権限を持つことができます。 ロールは 1つ以上の権限を持つことができます。 ロールは 1つ以上の権限を持つことができます。 ## セッション -4Dアプリケーションがリモートデータストアに接続すると、4D Server (HTTP) 上では セッション が作成されます。 セッションcookie が生成され、ローカルデータストアID と紐づけられます。 +4Dアプリケーションがリモートデータストアに接続すると、4D Server (HTTP) 上では セッション が作成されます。 セッションcookie が生成され、ローカルデータストアID と紐づけられます。 セッションcookie が生成され、ローカルデータストアID と紐づけられます。 セッションcookie が生成され、ローカルデータストアID と紐づけられます。 セッションcookie が生成され、ローカルデータストアID と紐づけられます。 -新規セッションが開始されるごとに、ライセンスが消費されます。 セッションが閉じられると、ライセンスは解放されます。 +新規セッションが開始されるごとに、ライセンスが消費されます。 セッションが閉じられると、ライセンスは解放されます。 セッションが閉じられると、ライセンスは解放されます。 セッションが閉じられると、ライセンスは解放されます。 セッションが閉じられると、ライセンスは解放されます。 -アクティビティのないセッションはタイムアウト後に自動的に終了します。 デフォルトのタイムアウトは 48時間で、任意に設定することができます (最少時間は 60分)。 +アクティビティのないセッションはタイムアウト後に自動的に終了します。 デフォルトのタイムアウトは 48時間で、任意に設定することができます (最少時間は 60分)。 デフォルトのタイムアウトは 48時間で、任意に設定することができます (最少時間は 60分)。 デフォルトのタイムアウトは 48時間で、任意に設定することができます (最少時間は 60分)。 ## シャロウコピー @@ -217,4 +217,4 @@ ORDA オブジェクトとは関わりのないユーザークラス。 ## ストレージ属性 -ストレージ属性 (スカラー属性と呼ばれることも) は、データストアクラスの属性の中で最も基本的なタイプであり、リレーショナルデータベースのフィールドに最も直接的に対応するものです。 ストレージ属性は、データクラスのエンティティ毎に 1つの値を持ちます。 +ストレージ属性 (スカラー属性と呼ばれることも) は、データストアクラスの属性の中で最も基本的なタイプであり、リレーショナルデータベースのフィールドに最も直接的に対応するものです。 ストレージ属性は、データクラスのエンティティ毎に 1つの値を持ちます。 ストレージ属性は、データクラスのエンティティ毎に 1つの値を持ちます。 ストレージ属性は、データクラスのエンティティ毎に 1つの値を持ちます。 ストレージ属性は、データクラスのエンティティ毎に 1つの値を持ちます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md index 71dd4ea13461a6..4ccf6add740124 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md @@ -3,13 +3,13 @@ id: privileges title: 権限 --- -データ保護と、承認ユーザーによる迅速かつ容易なデータアクセスを両立することは、Webアプリケーションにとって大きな課題です。 ORDA のセキュリティアーキテクチャーはデータストアの中心に実装されており、プロジェクト内のさまざまなリソース (データストア、データクラス、関数など) に対して、すべての Web または REST ユーザーセッションに特定の権限を定義することができます。 +データ保護と、承認ユーザーによる迅速かつ容易なデータアクセスを両立することは、Webアプリケーションにとって大きな課題です。 データ保護と、承認ユーザーによる迅速かつ容易なデータアクセスを両立することは、Webアプリケーションにとって大きな課題です。 ORDA のセキュリティアーキテクチャーはデータストアの中心に実装されており、プロジェクト内のさまざまなリソース (データストア、データクラス、関数など) に対して、すべての Web または REST ユーザーセッションに特定の権限を定義することができます。 ## 概要 ORDA のセキュリティアーキテクチャーは、権限、許諾アクション (read、create など)、およびリソースの概念に基づいています。 -Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 +Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 Webユーザーまたは RESTユーザーがログインすると、そのセッションには自動的に関連する権限がロードされます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 権限は、[`session.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数によって、セッションに割り当てられます。 セッション内で送信されるユーザーリクエストは、プロジェクトの `roles.json` ファイルで定義された権限に対して評価されます。 @@ -36,12 +36,12 @@ Webユーザーまたは RESTユーザーがログインすると、そのセッ あるレベルにおいて定義されたパーミッションは基本的に下位レベルに継承されますが、パーミッションは複数のレベルで設定することもできます: - データストアレベルで定義されたパーミッションは、自動的にすべてのデータクラスに割り当てられます。 -- データクラスレベルで定義されたパーミッションは、データストアの設定をオーバーライドします (あれば)。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 -- データクラスとは異なり、属性レベルで定義されたパーミッションは、親のデータクラスの設定をオーバーライドするのではなく、それに追加されます。 たとえば、同じ許諾アクションに対し、データクラスのレベルでは "general" という権限名を、データクラスの属性のレベルでは "detail" という権限名を割り当てた場合、その属性にアクセスするには、セッションに "general" と "detail" の両方の権限が設定されている必要があります。 +- データクラスレベルで定義されたパーミッションは、データストアの設定をオーバーライドします (あれば)。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 データクラスレベルで定義されたパーミッションは、データストアの設定をオーバーライドします (あれば)。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 デフォルトでは、データクラスのすべての属性が、データクラスのパーミッションを継承します。 +- データクラスとは異なり、属性レベルで定義されたパーミッションは、親のデータクラスの設定をオーバーライドするのではなく、それに追加されます。 データクラスとは異なり、属性レベルで定義されたパーミッションは、親のデータクラスの設定をオーバーライドするのではなく、それに追加されます。 たとえば、同じ許諾アクションに対し、データクラスのレベルでは "general" という権限名を、データクラスの属性のレベルでは "detail" という権限名を割り当てた場合、その属性にアクセスするには、セッションに "general" と "detail" の両方の権限が設定されている必要があります。 データクラスとは異なり、属性レベルで定義されたパーミッションは、親のデータクラスの設定をオーバーライドするのではなく、それに追加されます。 たとえば、同じ許諾アクションに対し、データクラスのレベルでは "general" という権限名を、データクラスの属性のレベルでは "detail" という権限名を割り当てた場合、その属性にアクセスするには、セッションに "general" と "detail" の両方の権限が設定されている必要があります。 データクラスとは異なり、属性レベルで定義されたパーミッションは、親のデータクラスの設定をオーバーライドするのではなく、それに追加されます。 たとえば、同じ許諾アクションに対し、データクラスのレベルでは "general" という権限名を、データクラスの属性のレベルでは "detail" という権限名を割り当てた場合、その属性にアクセスするには、セッションに "general" と "detail" の両方の権限が設定されている必要があります。 :::info -パーミッションは、データストアオブジェクトや関数へのアクセスを制御します。 特定の条件に基づいて読み取りデータをフィルタリングしたい場合は、[制限付エンティティセレクション](entities.md#制限付エンティティセレクション) の利用がより適切かもしれません。 +パーミッションは、データストアオブジェクトや関数へのアクセスを制御します。 パーミッションは、データストアオブジェクトや関数へのアクセスを制御します。 特定の条件に基づいて読み取りデータをフィルタリングしたい場合は、[制限付エンティティセレクション](entities.md#制限付エンティティセレクション) の利用がより適切かもしれません。 ::: @@ -49,15 +49,14 @@ Webユーザーまたは RESTユーザーがログインすると、そのセッ 利用可能なアクションは対象となるリソースによります。 -| アクション | データストア | データクラス | 属性 | データモデル関数またはシングルトン関数 | -| ------------ | ---------------------------------------------------------------------- | --------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| **create** | 任意のデータクラスにおいてエンティティを作成 | 当該データクラスにおいてエンティティを作成 | 当該属性に許可されたデフォルト値とは異なる値を持つエンティティを作成 (エイリアス属性の場合は無視されます) | n/a | -| **read** | 任意のデータクラスにおいて属性を読み取り | 当該データクラスにおいて属性を読み取り | 当該属性を読み取り | n/a | -| **update** | 任意のデータクラスにおいて属性を更新 | 当該データクラスにおいて属性を更新 | 当該属性を更新 (エイリアス属性の場合は無視されます) | n/a | -| **drop** | 任意のデータクラスにおいてデータを削除 | 当該データクラスにおいてデータを削除 | 当該属性の null でない値を削除 (エイリアス属性と計算属性を除く) | n/a | -| **execute** | プロジェクトの任意の関数を実行 (データストア、データクラス、エンティティセレクション、エンティティ) | データクラスの任意の関数を実行。 データクラス関数、エンティティ関数、エンティティセレクション関数は、データクラスの関数として扱われます。 | n/a | 当該関数を実行 | -| **describe** | /rest/$catalog API ですべてのデータクラスが利用可能 | /rest/$catalog API で当該データクラスが利用可能 | /rest/$catalog API で当該属性が利用可能 | /rest/$catalog API で当該データクラス関数が利用可能 (シングルトン関数は利用できません) | -| **promote** | n/a | n/a | n/a | 関数の実行に指定の権限を関連付けます。 権限は一時的にセッションに追加され、関数の実行終了とともに削除されます。 セキュリティ上、セッション全体ではなく、当該関数を実行するプロセスのみに権限が追加されます。 | +| アクション | データストア | データクラス | 属性 | データモデル関数またはシングルトン関数 | +| ----------- | ---------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **create** | 任意のデータクラスにおいてエンティティを作成 | 当該データクラスにおいてエンティティを作成 | 当該属性に許可されたデフォルト値とは異なる値を持つエンティティを作成 (エイリアス属性の場合は無視されます) | n/a | +| **read** | 任意のデータクラスにおいて属性を読み取り | 当該データクラスにおいて属性を読み取り | 当該属性を読み取り | n/a | +| **update** | 任意のデータクラスにおいて属性を更新 | 当該データクラスにおいて属性を更新 | 当該属性を更新 (エイリアス属性の場合は無視されます) | n/a | +| **drop** | 任意のデータクラスにおいてデータを削除 | 当該データクラスにおいてデータを削除 | 当該属性の null でない値を削除 (エイリアス属性と計算属性を除く) | n/a | +| **execute** | プロジェクトの任意の関数を実行 (データストア、データクラス、エンティティセレクション、エンティティ) | データクラスの任意の関数を実行。 データクラスの任意の関数を実行。 データクラスの任意の関数を実行。 データクラスの任意の関数を実行。 データクラス関数、エンティティ関数、エンティティセレクション関数は、データクラスの関数として扱われます。 | n/a | 当該関数を実行 | +| **promote** | n/a | n/a | n/a | 関数の実行に指定の権限を関連付けます。 権限は一時的にセッションに追加され、関数の実行終了とともに削除されます。 関数の実行に指定の権限を関連付けます。 権限は一時的にセッションに追加され、関数の実行終了とともに削除されます。 セキュリティ上、セッション全体ではなく、当該関数を実行するプロセスのみに権限が追加されます。 | **注:** @@ -67,18 +66,15 @@ Webユーザーまたは RESTユーザーがログインすると、そのセッ - デフォルト値: 現在の実装では、*Null* のみデフォルト値として利用可能です。 - REST の [強制ログインモード](../REST/authUsers.md/#強制ログインモード) では、[`authentify()`関数](../REST/authUsers.md#function-authentify) は、権限の設定に関係なく常にゲストユーザーによって実行可能です。 -許諾の設定は一貫している必要があります。とくに: - -- **update** および **drop** アクションには **read** が必要です (**create** には不要です) -- データモデル関数の場合、**promote** アクションには **describe** が必要です。 +Setting permissions requires to be consistent, in particular **update** and **drop** permissions also need **read** permission (but **create** does not need it). ## 権限とロール -**権限** とは、**リソース** に対して **アクション** を実行する技術的な能力であり、**ロール** は、管理者が使用するために公開された権限のことです。 基本的にロールとは、ビジネスユーザーのプロフィールを定義するためにいくつかの権限を集めたものです。 たとえば、"manageInvoices" (請求書管理) は権限の例で、"secretary" (秘書) は ("manageInvoices" および他の権限を持つ) ロールの例です。 +**権限** とは、**リソース** に対して **アクション** を実行する技術的な能力であり、**ロール** は、管理者が使用するために公開された権限のことです。 基本的にロールとは、ビジネスユーザーのプロフィールを定義するためにいくつかの権限を集めたものです。 たとえば、"manageInvoices" (請求書管理) は権限の例で、"secretary" (秘書) は ("manageInvoices" および他の権限を持つ) ロールの例です。 基本的にロールとは、ビジネスユーザーのプロフィールを定義するためにいくつかの権限を集めたものです。 たとえば、"manageInvoices" (請求書管理) は権限の例で、"secretary" (秘書) は ("manageInvoices" および他の権限を持つ) ロールの例です。 権限は、複数の "リソース+アクション" の組み合わせと関連付けることができます。 また、一つのアクションに複数の権限を関連付けることができます。 権限は、他の権限を含むことができます。 -- 権限やロールの **作成** は `roles.json` ファイル内にておこないます (後述参照)。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 +- 権限やロールの **作成** は `roles.json` ファイル内にておこないます (後述参照)。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 アクセス権の範囲を **設定** するには、リソースに適用される許諾アクションに権限名を割り当てます。 - 各ユーザーセッションに権限やロールを **許可** するには、`Session` クラスの [`.setPrivileges()`](../API/SessionClass.md#setprivileges) 関数を使用します。 @@ -140,7 +136,6 @@ exposed Function authenticate($identifier : Text; $password : Text)->$result : T "create": ["none"], "update": ["none"], "drop": ["none"], - "describe": ["none"], "execute": ["none"], "promote": ["none"] } @@ -153,17 +148,20 @@ exposed Function authenticate($identifier : Text; $password : Text)->$result : T ``` -最高レベルのセキュリティのため、データストア ("ds") のすべての許諾アクションに "none" の権限名が割り当てられています。したがって、デフォルトでは `ds` オブジェクト全体へのデータアクセスが無効になっています。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 +最高レベルのセキュリティのため、データストア ("ds") のすべての許諾アクションに "none" の権限名が割り当てられています。したがって、デフォルトでは `ds` オブジェクト全体へのデータアクセスが無効になっています。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 この "none" 権限はセキュリティのため、使用も変更もしないことが推奨されています。Web や RESTリクエストから利用可能にしたい各リソースには、それ専用の権限を新たに追加することが推奨されています ([以下の例を参照](#権限設定の例))。 :::caution -`roles.json` ファイルに特定のパラメーターが定義されていない場合、アクセスは制限されません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 +`roles.json` ファイルに特定のパラメーターが定義されていない場合、アクセスは制限されません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 これにより、アクセスを気にすることなくアプリケーションを開発することができますが、本番環境では推奨されていません。 ::: :::note 互換性 -以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 4D 20 R6 以降、`roles.json`ファイルを含まない、または `"forceLogin": true` の設定が含まれていない既存のプロジェクトを開く場合、[設定ダイアログボックスの **Web機能** ページ](../settings/web.md#アクセス権) で **ds.authentify() 関数を通しての REST認証を有効化** ボタンが利用可能になります。 このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 以前のリリースでは、`roles.json` ファイルはデフォルトで作成されませんでした。 4D 20 R6 以降、`roles.json`ファイルを含まない、または `"forceLogin": true` の設定が含まれていない既存のプロジェクトを開く場合、[設定ダイアログボックスの **Web機能** ページ](../settings/web.md#アクセス権) で **ds.authentify() 関数を通しての REST認証を有効化** ボタンが利用可能になります。 このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +::: このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +::: このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 +::: このボタンはセキュリティ設定を自動的にアップグレードします (コードを修正する必要があるかもしれません。[このブログ記事を参照ください](https://blog.4d.com/ja/force-login-becomes-default-for-all-rest-auth))。 ::: :::note Qodly Studio @@ -176,41 +174,40 @@ Qodly Studio for 4D では、権限パネルの [**強制ログイン**オプシ `roles.json` ファイルの構文は次のとおりです: -| プロパティ名 | | | 型 | 必須 | 説明 | -| ----------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | ------------------------------- | -- | ------------------------------------------------------------------------------------------------------------------ | -| privileges | | | `privilege` オブジェクトの Collection | ○ | 定義された権限のリスト | -| | \[].privilege | | Text | | アクセス権の名称 | -| | \[].includes | | String の Collection | | 内包する権限名のリスト | -| roles | | | `role` オブジェクトの Collection | | 定義されたロールのリスト | -| | \[].role | | Text | | ロール名 | -| | \[].privileges | | String の Collection | | 内包する権限名のリスト | -| permissions | | | Object | ○ | 設定されたパーミッションのリスト | -| | allowed | | `permission` オブジェクトの Collection | | 許可されたパーミッションのリスト | -| | | \[].applyTo | Text | ○ | 対象の [リソース](#リソース) 名 | -| | | \[].type | Text | ○ | [リソース](#リソース) タイプ: "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | -| | | \[].read | String の Collection | | 権限名のリスト | -| | | \[].create | String の Collection | | 権限名のリスト | -| | | \[].update | String の Collection | | 権限名のリスト | -| | | \[].drop | String の Collection | | 権限名のリスト | -| | | \[].describe | String の Collection | | 権限名のリスト | -| | | \[].execute | String の Collection | | 権限名のリスト | -| | | \[].promote | String の Collection | | 権限名のリスト | -| forceLogin | | | Boolean | | ["forceLogin" モード](../REST/authUsers.md#force-login-mode) を有効にする場合は true | +| プロパティ名 | | | 型 | 必須 | 説明 | +| ----------- | ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ------------------------------- | -- | ------------------------------------------------------------------------------------------------------------------ | +| privileges | | | `privilege` オブジェクトの Collection | ○ | 定義された権限のリスト | +| | \[].privilege | | Text | | アクセス権の名称 | +| | \[].includes | | String の Collection | | 内包する権限名のリスト | +| roles | | | `role` オブジェクトの Collection | | 定義されたロールのリスト | +| | \[].role | | Text | | ロール名 | +| | \[].privileges | | String の Collection | | 内包する権限名のリスト | +| permissions | | | Object | ○ | 設定されたパーミッションのリスト | +| | allowed | | `permission` オブジェクトの Collection | | 許可されたパーミッションのリスト | +| | | \[].applyTo | Text | ○ | 対象の [リソース](#リソース) 名 | +| | | \[].type | Text | ○ | [リソース](#リソース) タイプ: "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | +| | | \[].read | String の Collection | | 権限名のリスト | +| | | \[].create | String の Collection | | 権限名のリスト | +| | | \[].update | String の Collection | | 権限名のリスト | +| | | \[].drop | String の Collection | | 権限名のリスト | +| | | \[].execute | String の Collection | | 権限名のリスト | +| | | \[].promote | String の Collection | | 権限名のリスト | +| forceLogin | | | Boolean | | ["forceLogin" モード](../REST/authUsers.md#force-login-mode) を有効にする場合は true | :::caution 注記 -- "WebAdmin" 権限名は、アプリケーションによって予約されています。 この名前をカスタムの権限名に使用することは推奨されません。 +- "WebAdmin" 権限名は、アプリケーションによって予約されています。 この名前をカスタムの権限名に使用することは推奨されません。 この名前をカスタムの権限名に使用することは推奨されません。 この名前をカスタムの権限名に使用することは推奨されません。 この名前をカスタムの権限名に使用することは推奨されません。 - `privileges` および `roles` の名称においては文字の大小が区別されます。 ::: ### `Roles_Errors.json` ファイル -`roles.json` ファイルは、4D 起動時に解析されます。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 +`roles.json` ファイルは、4D 起動時に解析されます。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 このファイルへの変更を反映させるには、アプリケーションを再起動する必要があります。 -`roles.json` ファイルを解析する際にエラーが発生した場合、4D はプロジェクトを読み込みますが、グローバルアクセス保護は無効になります。これにより、開発者はエラー修正のためファイルにアクセスすることができます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 +`roles.json` ファイルを解析する際にエラーが発生した場合、4D はプロジェクトを読み込みますが、グローバルアクセス保護は無効になります。これにより、開発者はエラー修正のためファイルにアクセスすることができます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 また、`Roles_Errors.json` という名前のエラーファイルが [プロジェクトの `Logs` フォルダー](../Project/architecture.md#logs) に生成され、エラー行が記述されています。 このファイルは、`roles.json` ファイルのエラーがすべて修正されると、自動的に削除されます。 -`Roles_Errors.json` ファイルが [Logs フォルダー](../Project/architecture.md#logs) に存在するかどうか、起動時に確認することをお勧めします。存在する場合、解析エラーが発生し、アクセスが制限されないことを意味します。 たとえば、次のように書くことができます: +`Roles_Errors.json` ファイルが [Logs フォルダー](../Project/architecture.md#logs) に存在するかどうか、起動時に確認することをお勧めします。存在する場合、解析エラーが発生し、アクセスが制限されないことを意味します。 たとえば、次のように書くことができます: たとえば、次のように書くことができます: たとえば、次のように書くことができます: たとえば、次のように書くことができます: ```4d title="/Sources/DatabaseMethods/onStartup.4dm" If (Not(File("/LOGS/"+"Roles_Errors.json").exists)) @@ -224,7 +221,7 @@ End if ## 権限設定の例 -グッドプラクティスは、"none" 権限によってすべてのデータアクセスをデフォルトでロックしておき、`roles.json` ファイルを設定して、許可されたセッションにのみ限定的に一部を開放することです。 たとえば、制限されたアクセスをゲストセッションに対して許可する場合: +グッドプラクティスは、"none" 権限によってすべてのデータアクセスをデフォルトでロックしておき、`roles.json` ファイルを設定して、許可されたセッションにのみ限定的に一部を開放することです。 たとえば、制限されたアクセスをゲストセッションに対して許可する場合: たとえば、制限されたアクセスをゲストセッションに対して許可する場合: たとえば、制限されたアクセスをゲストセッションに対して許可する場合: たとえば、制限されたアクセスをゲストセッションに対して許可する場合: ```json title="/Project/Sources/roles.json" @@ -256,9 +253,6 @@ End if "execute": [ "none" ], - "describe": [ - "none" - ], "promote": [ "none" ] diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md index 2d6ffe74d2d7a3..bb34621b264531 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md @@ -7,13 +7,13 @@ title: リモートデータストア The local 4D application connects to and references the remote datastore through a call to the [`Open datastore`](../commands/open-datastore.md) command. -リモートマシン上で、4D は [セッション](../WebServer/sessions.md) を開いて、`Open datastore` を呼び出したアプリケーションからのリクエストを処理します。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 +リモートマシン上で、4D は [セッション](../WebServer/sessions.md) を開いて、`Open datastore` を呼び出したアプリケーションからのリクエストを処理します。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 リクエストは内部で [REST API](../REST/gettingStarted.md) を使用し、これには [利用可能なライセンス](../REST/authUsers.md) が必要な場合があります。 ## Webセッションの使用 When you work with a remote datastore referenced through calls to the [`Open datastore`](../commands/open-datastore.md) command, the connection with the requesting processes is handled via [web sessions](../WebServer/sessions.md) on the remote machine. -リモートデータストア上で作成される Webセッションは内部的にセッションID によって識別され、4Dアプリケーション上では `localID` と紐づいています。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 +リモートデータストア上で作成される Webセッションは内部的にセッションID によって識別され、4Dアプリケーション上では `localID` と紐づいています。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 データ、エンティティセレクション、エンティティへのアクセスはこのセッションによって自動的に管理されます。 `localID` はリモートデータストアに接続しているマシンにおけるローカルな識別IDです: @@ -39,17 +39,17 @@ When you work with a remote datastore referenced through calls to the [`Open dat ## セッションの終了 -[セッションの有効期限](../WebServer/sessions.md#セッションの有効期限) の段落で説明されているように、アクティビティなしにタイムアウト時間が経過すると、4D は自動的にセッションを終了します。 デフォルトのタイムアウト時間は 60分です。 *Open datastore* コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 +[セッションの有効期限](../WebServer/sessions.md#セッションの有効期限) の段落で説明されているように、アクティビティなしにタイムアウト時間が経過すると、4D は自動的にセッションを終了します。 デフォルトのタイムアウト時間は 60分です。 *Open datastore* コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 デフォルトのタイムアウト時間は 60分です。 *Open datastore* コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 デフォルトのタイムアウト時間は 60分です。 *Open datastore* コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 デフォルトのタイムアウト時間は 60分です。 *Open datastore* コマンドの `connectionInfo` パラメーターを指定して、タイムアウト時間を変更することができます。 -セッション終了後にリクエストがリモートデータストアに送信された場合、セッションは可能な限り (ライセンスがあり、サーバーが停止していない、など) 再開されます。 ただしセッションが再開しても、ロックやトランザクションに関わるコンテキストは失われていることに留意が必要です (後述参照)。 +セッション終了後にリクエストがリモートデータストアに送信された場合、セッションは可能な限り (ライセンスがあり、サーバーが停止していない、など) 再開されます。 ただしセッションが再開しても、ロックやトランザクションに関わるコンテキストは失われていることに留意が必要です (後述参照)。 ただしセッションが再開しても、ロックやトランザクションに関わるコンテキストは失われていることに留意が必要です (後述参照)。 ただしセッションが再開しても、ロックやトランザクションに関わるコンテキストは失われていることに留意が必要です (後述参照)。 ## ロッキングとトランザクション エンティティロッキングやトランザクションに関連した ORDA 機能は、ORDA のクライアント / サーバーモードと同様に、リモートデータストアにおいてもプロセスレベルで管理されます: -- あるプロセスがリモートデータストアのエンティティをロックした場合、セッションの共有如何に関わらず、他のすべてのプロセスに対してそのエンティティはロックされた状態です ([エンティティロッキング](entities.md#エンティティロッキング) 参照)。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 -- トランザクションは `dataStore.startTransaction( )`、`dataStore.cancelTransaction( )`、`dataStore.validateTransaction( )` のメソッドを使って、リモートデータストアごとに個別に開始・認証・キャンセルすることができます。 これらの操作は他のデータストアには影響しません。 -- 従来の 4Dランゲージコマンド (`START TRANSACTION`, `VALIDATE TRANSACTION`, `CANCEL TRANSACTION`) は `ds` で返されるメインデータストアに対してのみ動作します。 +- あるプロセスがリモートデータストアのエンティティをロックした場合、セッションの共有如何に関わらず、他のすべてのプロセスに対してそのエンティティはロックされた状態です ([エンティティロッキング](entities.md#エンティティロッキング) 参照)。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 同一のレコードに対応する複数のエンティティが 1つのプロセスによってロックされている場合、同プロセス内でそれらがすべてアンロックされないと、ロックは解除されません。 なお、ロックされたエンティティに対する参照がメモリ上に存在しなくなった場合にも、ロックは解除されます。 +- トランザクションは `dataStore.startTransaction( )`、`dataStore.cancelTransaction( )`、`dataStore.validateTransaction( )` のメソッドを使って、リモートデータストアごとに個別に開始・認証・キャンセルすることができます。 これらの操作は他のデータストアには影響しません。 これらの操作は他のデータストアには影響しません。 これらの操作は他のデータストアには影響しません。 これらの操作は他のデータストアには影響しません。 +- Classic 4D language commands ([`START TRANSACTION`](../commands-legacy/start-transaction.md), [`VALIDATE TRANSACTION`](../commands-legacy/validate-transaction.md), [`CANCEL TRANSACTION`](../commands-legacy/cancel-transaction.md)) only apply to the main datastore (returned by `ds`). リモートデータストアのエンティティがあるプロセスのトランザクションで使われている場合、セッションの共有如何に関わらず、他のすべてのプロセスはそのエンティティを更新できません。 - 次の場合にエンティティのロックは解除され、トランザクションはキャンセルされます: - プロセスが強制終了された diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Project/components.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Project/components.md index 3f60a661a528f9..11209551450713 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Project/components.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/Project/components.md @@ -3,9 +3,9 @@ id: components title: コンポーネント --- -4D のコンポーネントとは、プロジェクトに追加可能な、1つ以上の機能を持つ 4Dコードや 4Dフォームの一式です。 たとえば、[4D SVG](https://github.com/4d/4D-SVG)コンポーネント は、SVGファイルの表示するための高度なコマンドと統合されたレンダリングエンジンを追加します。 +4D のコンポーネントとは、プロジェクトに追加可能な、1つ以上の機能を持つ 4Dコードや 4Dフォームの一式です。 4D のコンポーネントとは、プロジェクトに追加可能な、1つ以上の機能を持つ 4Dコードや 4Dフォームの一式です。 たとえば、[4D SVG](https://github.com/4d/4D-SVG)コンポーネント は、SVGファイルの表示するための高度なコマンドと統合されたレンダリングエンジンを追加します。 -独自の 4Dコンポーネントを [開発](../Extensions/develop-components.md) し、[ビルド](../Desktop/building.md) することもできますし、4Dコミュニティによって共有されているパブリックコンポーネントを [GitHubで見つけて](https://github.com/search?q=4d-component\&type=Repositories) ダウンロードすることもできます。 +独自の 4Dコンポーネントを [開発](../Extensions/develop-components.md) し、[ビルド](../Desktop/building.md) することもできますし、4Dコミュニティによって共有されているパブリックコンポーネントを [GitHubで見つけて](https://github.com/search?q=4d-component\\&type=Repositories) ダウンロードすることもできます。 4D で開発する際、コンポーネントファイルはコンピューター上または Githubリポジトリ上に、透過的に保存することができます。 @@ -16,13 +16,13 @@ Components can be interpreted or [compiled](../Desktop/building.md). コンポ - プロジェクトフォルダー (インタープリターのコンポーネント) - または .4DZ ファイル (コンパイル済みコンポーネント) -インタープリターモードで動作する 4Dプロジェクトは、インタープリターまたはコンパイル済みどちらのコンポーネントも使用できます。 コンパイルモードで実行される 4Dプロジェクトでは、インタープリターのコンポーネントを使用できません。 この場合、コンパイル済みコンポーネントのみが利用可能です。 +インタープリターモードで動作する 4Dプロジェクトは、インタープリターまたはコンパイル済みどちらのコンポーネントも使用できます。 コンパイルモードで実行される 4Dプロジェクトでは、インタープリターのコンポーネントを使用できません。 この場合、コンパイル済みコンポーネントのみが利用可能です。 この場合、コンパイル済みコンポーネントのみが利用可能です。 ## コンポーネントの読み込み :::note -このページでは、**4D** と **4D Server** 環境でのコンポーネントの使用方法について説明します。 他の環境では、コンポーネントの管理は異なります: +このページでは、**4D** と **4D Server** 環境でのコンポーネントの使用方法について説明します。 他の環境では、コンポーネントの管理は異なります: 他の環境では、コンポーネントの管理は異なります: - [リモートモードの 4D](../Desktop/clientServer.md) では、サーバーがコンポーネントを読み込み、リモートアプリケーションに送信します。 - 統合されたアプリケーションでは、コンポーネントは [ビルドする際に組み込まれます](../Desktop/building.md#プラグインコンポーネントページ)。 @@ -48,7 +48,7 @@ Components can be interpreted or [compiled](../Desktop/building.md). コンポ #### dependencies.json -**dependencies.json** ファイルは、4Dプロジェクトに必要なすべてのコンポーネントを宣言します。 このファイルは、4Dプロジェクトフォルダーの **Sources** フォルダーに置く必要があります。例: +**dependencies.json** ファイルは、4Dプロジェクトに必要なすべてのコンポーネントを宣言します。 このファイルは、4Dプロジェクトフォルダーの **Sources** フォルダーに置く必要があります。例: このファイルは、4Dプロジェクトフォルダーの **Sources** フォルダーに置く必要があります。例: ``` /MyProjectRoot/Project/Sources/dependencies.json @@ -152,7 +152,7 @@ flowchart TB パスは、POSIXシンタックスで表します ([POSIXシンタックス](../Concepts/paths#posix-シンタックス) 参照)。 -相対パスは、[`environment4d.json`](#environment4djson) ファイルを基準とした相対パスです。 絶対パスは、ユーザーのマシンにリンクされています。 +相対パスは、[`environment4d.json`](#environment4djson) ファイルを基準とした相対パスです。 絶対パスは、ユーザーのマシンにリンクされています。 絶対パスは、ユーザーのマシンにリンクされています。 コンポーネントアーキテクチャーの柔軟性と移植性のため、ほとんどの場合、相対パスを使用することが **推奨** されます (特に、プロジェクトがソース管理ツールにホストされている場合)。 @@ -193,7 +193,7 @@ GitHub に保存されているコンポーネントは [**dependencies.json** } ``` -... 上記の場合、"myGitHubComponent1" は宣言とパス定義の両方がされていますが、"myComponent2" は宣言されているだけです。 そのため、[**environment4d.json**](#environment4djson) ファイルにパスを定義する必要があります: +... 上記の場合、"myGitHubComponent1" は宣言とパス定義の両方がされていますが、"myComponent2" は宣言されているだけです。 **environment4d.json** ファイルは必須ではありません。 このファイルは、**dependencies.json** ファイル内で宣言された一部またはすべてのコンポーネントのついて、**カスタムパス** を定義するのに使用します。 このファイルは、プロジェクトパッケージフォルダーまたはその親フォルダーのいずれかに保存することができます (ルートまでの任意のレベル)。 ```json { @@ -211,7 +211,7 @@ GitHub に保存されているコンポーネントは [**dependencies.json** GitHub ではリリースを作成するときに、**タグ** と **バージョン** を指定します。 -- **タグ** はリリースを一意に参照するテキストです。 [**dependencies.json** ファイル](#dependencyjson) および [**environment4d.json**](#environment4djson) ファイルでは、プロジェクトで使用するリリースタグを指定することができます。 たとえば: +- **タグ** はリリースを一意に参照するテキストです。 **タグ** はリリースを一意に参照するテキストです。 [**dependencies.json** ファイル](#dependencyjson) および [**environment4d.json**](#environment4djson) ファイルでは、プロジェクトで使用するリリースタグを指定することができます。 たとえば: たとえば: ```json { @@ -224,7 +224,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ } ``` -- リリースは **バージョン** によっても識別されます。 使用されるバージョニング方法は、最も一般的に使用される *セマンティックバージョニング* のコンセプトに基づいています。 各バージョン番号は次のように識別されます: `majorNumber.minorNumber.pathNumber`。 タグと同様に、プロジェクトで使用したいコンポーネントのバージョンを指定することができます。例: +- リリースは **バージョン** によっても識別されます。 使用されるバージョニング方法は、最も一般的に使用される *セマンティックバージョニング* のコンセプトに基づいています。 各バージョン番号は次のように識別されます: `majorNumber.minorNumber.pathNumber`。 各バージョン番号は次のように識別されます: `majorNumber.minorNumber.pathNumber`。 タグと同様に、プロジェクトで使用したいコンポーネントのバージョンを指定することができます。例: ```json { @@ -237,7 +237,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ } ``` -バージョンは、使用できるバージョンを定義するために使用します。 [標準的なセマンティックバージョン](https://regex101.com/r/Ly7O1x/3/) を使用します。 範囲は、最小値と最大値を示す 2つのセマンティックバージョンと演算子 ('`< | > | >= | <= | =`') で定義します。 `*` はすべてのバージョンのプレースホルダーとして使用できます。 ~ および ^ の接頭辞は、数字で始まるバージョンを定義し、それぞれ次のメジャーバージョンおよびマイナーバージョンまでの範囲を示します。 +バージョンは、使用できるバージョンを定義するために使用します。 [標準的なセマンティックバージョン](https://regex101.com/r/Ly7O1x/3/) を使用します。 範囲は、最小値と最大値を示す 2つのセマンティックバージョンと演算子 ('`< | > | >= | <= | =`') で定義します。 `*` はすべてのバージョンのプレースホルダーとして使用できます。 ~ および ^ の接頭辞は、数字で始まるバージョンを定義し、それぞれ次のメジャーバージョンおよびマイナーバージョンまでの範囲を示します。 `*` はすべてのバージョンのプレースホルダーとして使用できます。 ~ および ^ の接頭辞は、数字で始まるバージョンを定義し、それぞれ次のメジャーバージョンおよびマイナーバージョンまでの範囲を示します。 以下にいくつかの例を示します: @@ -285,7 +285,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ #### 依存関係のローカルキャッシュ -参照された GitHubコンポーネントはローカルのキャッシュフォルダーにダウンロードされ、その後環境に読み込まれます。 ローカルキャッシュフォルダーは以下の場所に保存されます: +参照された GitHubコンポーネントはローカルのキャッシュフォルダーにダウンロードされ、その後環境に読み込まれます。 ローカルキャッシュフォルダーは以下の場所に保存されます: ローカルキャッシュフォルダーは以下の場所に保存されます: - macOs: `$HOME/Library/Caches//Dependencies` - Windows: `C:\Users\\AppData\Local\\Dependencies` @@ -314,15 +314,15 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ ![dependency](../assets/en/Project/dependency.png) -依存関係インターフェースでは、依存関係を管理することができます (4Dシングルユーザーと4D Server)。 **ローカル** と **GitHub** の依存関係を追加または削除できます。 +The Dependencies panel interface allows you to manage dependencies (on 4D single-user and 4D Server). **ローカル** と **GitHub** の依存関係を追加または削除できます。 ### ローカルな依存関係の追加 -ローカルな依存関係を追加するには、パネルのフッターエリアにある **+** ボタンをクリックします。 次のようなダイアログボックスが表示されます: +ローカルな依存関係を追加するには、パネルのフッターエリアにある **+** ボタンをクリックします。 次のようなダイアログボックスが表示されます: 次のようなダイアログボックスが表示されます: ![dependency-add](../assets/en/Project/dependency-add.png) -**ローカル** タブが選択されていることを確認し、**...** ボタンをクリックします。 標準の "ファイルを開く" ダイアログボックスが表示され、追加するコンポーネントを選択できます。 [**.4DZ**](../Desktop/building.md#コンポーネントをビルド) または [**.4DProject**](architecture.md#applicationname4dproject-ファイル) ファイルを選択できます。 +**ローカル** タブが選択されていることを確認し、**...** ボタンをクリックします。 標準の "ファイルを開く" ダイアログボックスが表示され、追加するコンポーネントを選択できます。 **ローカル** タブが選択されていることを確認し、**...** ボタンをクリックします。 標準の "ファイルを開く" ダイアログボックスが表示され、追加するコンポーネントを選択できます。 [**.4DZ**](../Desktop/building.md#コンポーネントをビルド) または [**.4DProject**](architecture.md#applicationname4dproject-ファイル) ファイルを選択できます。 選択した項目が有効であれば、その名前と場所がダイアログボックスに表示されます。 @@ -333,7 +333,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ プロジェクトに依存関係を追加するには、**追加** をクリックします。 - プロジェクトパッケージフォルダーの隣 (デフォルトの場所) にあるコンポーネントを選択すると、[**dependencies.json**](#dependenciesjson)ファイル内で宣言されます。 -- プロジェクトのパッケージフォルダーの隣にないコンポーネントを選択した場合、そのコンポーネントは [**dependencies.json**](#dependenciesjson) ファイルで宣言され、そのパスも [**environment4d.json**](#environmen4djson) ファイルで宣言されます (注記参照)。 依存関係パネルでは、[相対パスまたは絶対パス](#相対パス-vs-絶対パス) のどちらを保存するか尋ねられます。 +- プロジェクトのパッケージフォルダーの隣にないコンポーネントを選択した場合、そのコンポーネントは [**dependencies.json**](#dependenciesjson) ファイルで宣言され、そのパスも [**environment4d.json**](#environmen4djson) ファイルで宣言されます (注記参照)。 依存関係パネルでは、[相対パスまたは絶対パス](#相対パス-vs-絶対パス) のどちらを保存するか尋ねられます。 依存関係パネルでは、[相対パスまたは絶対パス](#相対パス-vs-絶対パス) のどちらを保存するか尋ねられます。 :::note @@ -341,7 +341,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ ::: -この依存関係は、[非アクティブな依存関係のリスト](#依存関係のステータス) に **Available after restart** (再起動後に利用可能) というステータスで追加されます。 このコンポーネントはアプリケーションの再起動後にロードされます。 +この依存関係は、[非アクティブな依存関係のリスト](#依存関係のステータス) に **Available after restart** (再起動後に利用可能) というステータスで追加されます。 このコンポーネントはアプリケーションの再起動後にロードされます。 このコンポーネントはアプリケーションの再起動後にロードされます。 ### GitHubの依存関係の追加 @@ -349,11 +349,11 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ ![dependency-add-git](../assets/en/Project/dependency-add-git.png) -依存関係の GitHubリポジトリのパスを入力します。 **リポジトリURL** または **GitHubアカウント名/リポジトリ名 の文字列** が使えます。例: +依存関係の GitHubリポジトリのパスを入力します。 **リポジトリURL** または **GitHubアカウント名/リポジトリ名 の文字列** が使えます。例: **リポジトリURL** または **GitHubアカウント名/リポジトリ名 の文字列** が使えます。例: ![dependency-add-git-2](../assets/en/Project/dependency-add-git-2.png) -接続が確立されると、入力エリアの右側に GitHubアイコン ![dependency-gitlogo](../assets/en/Project/dependency-gitlogo.png) が表示されます。 このアイコンをクリックすると、既定のブラウザーでリポジトリを開くことができます。 +接続が確立されると、入力エリアの右側に GitHubアイコン ![dependency-gitlogo](../assets/en/Project/dependency-gitlogo.png) が表示されます。 このアイコンをクリックすると、既定のブラウザーでリポジトリを開くことができます。 このアイコンをクリックすると、既定のブラウザーでリポジトリを開くことができます。 :::note @@ -372,11 +372,11 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ プロジェクトに依存関係を追加するには、**追加** ボタンをクリックします。 -すると、GitHub 依存関係は [**dependencies.json**](#dependenciesjson) ファイルに宣言され、[非アクティブな依存関係のリスト](#依存関係のステータス) に **Available after restart** (再起動後に利用可能) というステータスで追加されます。 このコンポーネントはアプリケーションの再起動後にロードされます。 +すると、GitHub 依存関係は [**dependencies.json**](#dependenciesjson) ファイルに宣言され、[非アクティブな依存関係のリスト](#依存関係のステータス) に **Available after restart** (再起動後に利用可能) というステータスで追加されます。 このコンポーネントはアプリケーションの再起動後にロードされます。 このコンポーネントはアプリケーションの再起動後にロードされます。 #### GitHubアクセストークンの提供 -コンポーネントが [GitHub のプライベートリポジトリ](#プライベートリポジトリ) に保存されている場合には、パーソナルアクセストークン (personal access token) を依存関係マネージャーに提供する必要があります。 これをおこなうには: +コンポーネントが [GitHub のプライベートリポジトリ](#プライベートリポジトリ) に保存されている場合には、パーソナルアクセストークン (personal access token) を依存関係マネージャーに提供する必要があります。 これをおこなうには: これをおこなうには: - "依存関係を追加..." ダイアログボックスで、GitHub のプライベートリポジトリパスを入力した後に表示される \*\*パーソナルアクセストークンを追加... \*\* ボタンをクリックします。 - または、依存関係マネージャーのメニューで、**GitHubパーソナルアクセストークンを追加...** をいつでも選択できます。 @@ -387,7 +387,7 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ ![dependency-add-token-2](../assets/en/Project/dependency-add-token-2.png) -パーソナルアクセストークンは 1つしか入力できません。 入力されたトークンは編集することができます。 +パーソナルアクセストークンは 1つしか入力できません。 入力されたトークンは編集することができます。 入力されたトークンは編集することができます。 ### 依存関係の削除 @@ -395,19 +395,19 @@ GitHub ではリリースを作成するときに、**タグ** と **バージ :::note -依存関係パネルを使用して削除できるのは、[**dependencies.json**](#dependenciesjson) ファイルで宣言されている依存関係に限られます。 選択した依存関係を削除できない場合、**-** ボタンは無効化され、**依存関係の削除...** メニュー項目は非表示になります。 +依存関係パネルを使用して削除できるのは、[**dependencies.json**](#dependenciesjson) ファイルで宣言されている依存関係に限られます。 選択した依存関係を削除できない場合、**-** ボタンは無効化され、**依存関係の削除...** メニュー項目は非表示になります。 選択した依存関係を削除できない場合、**-** ボタンは無効化され、**依存関係の削除...** メニュー項目は非表示になります。 ::: -確認用のダイアログボックスが表示されます。 依存関係が **environment4d.json** ファイルで宣言されている場合、以下のオプションでそれを削除することができます: +確認用のダイアログボックスが表示されます。 確認用のダイアログボックスが表示されます。 依存関係が **environment4d.json** ファイルで宣言されている場合、以下のオプションでそれを削除することができます: ![dependency-remove](../assets/en/Project/remove-comp.png) -ダイアログボックスを確定すると、削除された依存関係の [ステータス](#依存関係のステータス) には "Unloaded after restart" (再起動時にアンロード) フラグが自動的に付きます。 このコンポーネントはアプリケーションの再起動時にアンロードされます。 +ダイアログボックスを確定すると、削除された依存関係の [ステータス](#依存関係のステータス) には "Unloaded after restart" (再起動時にアンロード) フラグが自動的に付きます。 このコンポーネントはアプリケーションの再起動時にアンロードされます。 このコンポーネントはアプリケーションの再起動時にアンロードされます。 ### 依存関係のオリジン -依存関係パネルには、各依存関係のオリジン (由来) にかかわらず、プロジェクトの依存関係すべてがリストされます。 依存関係のオリジンは、名前の下に表示されるタグによって判断することができます: +依存関係パネルには、各依存関係のオリジン (由来) にかかわらず、プロジェクトの依存関係すべてがリストされます。 依存関係のオリジンは、名前の下に表示されるタグによって判断することができます: 依存関係のオリジンは、名前の下に表示されるタグによって判断することができます: ![dependency-origin](../assets/en/Project/dependency-origin.png) diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-delete-section.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-delete-section.md index 9c4175c8d77648..aa52c0f2014943 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-delete-section.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-delete-section.md @@ -9,52 +9,52 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ----------- | ------- | - | ---------------------------------- | -| section | Object | → | 4D Write Pro section | -| wpDoc | Object | → | 4D Write Pro document | -| indexNumber | Integer | → | Index of the section to be deleted | -| count | Integer | → | Number of sections to be deleted | +| 引数 | 型 | | 説明 | +| ----------- | ------- | - | ------------------- | +| section | Object | → | 4D Write Pro セクション | +| wpDoc | Object | → | 4D Write Pro ドキュメント | +| indexNumber | Integer | → | 削除するセクションのインデックス | +| count | Integer | → | 削除するセクションの数 | #### 説明 -The **WP DELETE SECTION** command deletes the passed *section* object, or deletes one or more sections starting at *indexNumber* and depending on the *count* passed. When a section is removed, everything associated with it, including the header, footer, part of the body, anchored pictures, text boxes, and the ending section break (whether a section break or continuous section break), is also removed. +**WP DELETE SECTION** コマンドは*section* 引数に渡されたオブジェクトのセクションを削除します。または、*indexNumber* 引数で指定されたセクションから*count* 引数で指定された個数分だけ1つ以上のセクションを削除します。. セクションが削除されると、ヘッダー、フッター、本文の一部、アンカーされた画像、テキストボックス、終了セクションブレーク(セクションブレークまたは継続的なセクションブレークかに関わらず)など、そのセクションに関連づけられていたものも削除されます。 -An error is raised if the **WP DELETE SECTION** command requests to delete all sections or if the document contains only one section. +**WP DELETE SECTION** コマンドを使用して全てのセクションを削除しようとした場合、あるいはドキュメントにセクションが1つしか含まれていないような場合にはエラーが発生します。 -**WP DELETE SECTION** re-indexes the anchorSection attribute of text boxes and pictures to adjust their anchors to their sections after changes. For example, if a document has four sections and the second section is deleted, sections 3 and 4 will become sections 2 and 3 and text boxes and pictures that were previously anchored to sections 3 and 4 will now be anchored to sections 2 and 3. +**WP DELETE SECTION** は、テキストボックスとピクチャーの属性を再インデックスし、変更後のセクションへと合致するようにアンカーを調整します。 例えばドキュメントに四つのセクションがあり、2番目のセクションが削除された場合、セクション3と4はそれぞれセクション2と3となり、実行前にはセクション3と4にアンカーされていたテキストボックスおよびピクチャーはセクション2と3にアンカーされます。 :::note -If an image or textbox is anchored to a page (e.g., page 20) and this page no longer exists after a section has been deleted, the image (or textbox) will remain in the document and will reappear on page 20 if this page ever exists again later. +画像またはテキストボックスがページ(例:20ページ目)へとアンカーされていて、セクションが削除された後にそのページが残っていない場合には、画像(またはテキストボックス)はドキュメント内に残り続け、後に20ページ目がまたあらわれた場合には、その20ページ目に画像(またはテキストボックス)が再度発生します。 ::: #### 例題 -To remove the first section of the document: +ドキュメントの最初のセクションを削除したい場合を考えます: ```4d wpDoc:=WP Import document("test.wp") -// remove section 1 only (without error unless there is only one section in the document) +// セクション1のみを削除する(ドキュメント内にセクションが1つしかない場合を除きエラーは発生しない) WP DELETE SECTION(wpDoc ; 1) ``` -To remove section 5 of the document: +ドキュメント内のセクション5を削除したい場合を考えます: ```4d wpDoc:=WP Import document("test.wp") -// remove section 5 only +// セクション 5のみを削除します WP DELETE SECTION(wpDoc ; 5) ``` -To remove section 5, 6 and 7 of the document: +ドキュメント内のセクション5、6、7を削除したい場合を考えます: ```4d @@ -63,24 +63,24 @@ WP DELETE SECTION(wpDoc ; 5 ; 3 ) ``` -To remove all sections starting from 5: +セクション5以降の全てのセクションを削除したい場合を考えます: ```4d wpDoc:=WP Import document("test.wp") -// remove all sections starting at section 5 (without error unless section 5 does not exist) +// セクション5 以降の全てのセクションを削除する(セクション5 が存在しない場合を除き、エラーは発生しない) WP DELETE SECTION(wpDoc ; 5 ; MAXLONG ) ``` -To retrieve and remove section 5: +セクション5を取得して削除したい場合を考えます: ```4d wpDoc:=WP Import document("test.wp") -// get section 5 +// セクション5 を取得 $section:=WP Get section(wpDoc, 5) -// remove $section +// $section を削除 WP DELETE SECTION($section) ``` diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-delete-subsection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-delete-subsection.md index a91c986ff83703..87ddcbe94e721b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-delete-subsection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-delete-subsection.md @@ -9,21 +9,21 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| -------------- | ------- | - | ---------------------------------------------------------------------------------- | -| wpSection | Object | → | 4D Write Pro section | -| subSectionType | Integer | → | Subsection type (wk first page, wk left page, or wk right page) | -| subSection | Object | → | 4D Write Pro subsection | +| 引数 | 型 | | 説明 | +| -------------- | ------- | - | ---------------------------------------------------------------------------- | +| wpSection | Object | → | 4D Write Pro セクション | +| subSectionType | Integer | → | サブセクションのタイプ(wk first page、wk left page、または wk right page) | +| subSection | Object | → | 4D Write Pro サブセクション | #### 説明 -The **WP DELETE SUBSECTION** command removes the *subSectionType* subsection elements from the *wpSection* 4D Write Pro section, or it directly removes the passed *subSection*. Subsection elements include headers, footers, columns, anchored pictures, etc. Note that the body of the document is left untouched. +**WP DELETE SUBSECTION** コマンドは引数で指定した4D Write Pro セクションから、引数で指定したサブセクション要素を削除します。または*subSection* 引数で指定したサブセクションを直接削除します。 サブセクション要素にはヘッダー、フッター、カラム、アンカーされた画像などが含まれます。 ドキュメントの本文はそのまま残されるという点に注意してください。 -In *wpSection*, pass the section from which you want to remove the subsection elements. The section can be obtained using the [WP Get sections](../commands-legacy/wp-get-sections.md) or [WP Get section](../commands-legacy/wp-get-section.md) commands. +*wpSection* 引数には、サブセクション要素を削除したいセクションを渡します。 セクションは、[WP Get sections](../commands-legacy/wp-get-sections.md) または [WP Get section](../commands-legacy/wp-get-section.md) コマンドを使用することで取得できます。 -The *subSectionType* parameter specifes the subsection to delete. You can pass one of the following constants: +*subSectionType* 引数は削除するサブセクションを指定します。 以下の定数のいずれかを渡すことができます: | 定数 | 型 | 値 | | ------------- | ------- | - | @@ -33,33 +33,33 @@ The *subSectionType* parameter specifes the subsection to delete. You can pass o :::note -Deleting a left page or right page subsection will automatically delete the opposite subsection. For example, if you delete a right page subsection, the left page subsection is automatically deleted. +左ページまたは右ページサブセクションを削除すると、反対側のサブセクションも自動的に削除されます。 例えば、右ページサブセクションを削除した場合、左ページサブセクションも自動的に削除されます。 ::: -If the *subSectionType* does not exist, the command does nothing (no error is generated). +*subSectionType* 引数で指定したタイプのサブセクションが存在しない場合、コマンドは何もしません(エラーは生成されません)。 :::note -When a subsection is deleted, the header and footer are removed, as well as anchored pictures and textboxes but the body remains untouched. +サブセクションが削除されると、ヘッダーとフッターに加えアンカーされた画像とテキストボックスも削除されますが、本文はそのまま残されます。 ::: #### 例題 1 -You want to delete the first page subsection of the first section: +最初のセクションの最初のページのサブセクションを削除したい場合を考えます: ```4d var $section;$subsection : Object - // get first section + // 最初のセクションを取得 $section:=WP Get section(wpDoc;1) - // Delete the subsection + // サブセクションを削除 WP DELETE SUBSECTION($section;wk first page) ``` #### 例題 2 -You want to delete the right page subsection of section 3: +セクション3 の右ページサブセクションを削除したい場合を考えます: ```4d diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-reset-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-reset-attributes.md index 7f6ce6143b1d0b..9790b09313d78e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-reset-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/WritePro/commands/wp-reset-attributes.md @@ -9,43 +9,43 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ------------------- | ------ | - | ------------------------------------------------- | -| targetObj | Object | → | Range or element or 4D Write Pro document | -| sectionOrSubsection | Object | → | Section or subsection of a 4D Write Pro document | -| attribName | Text | → | Name of attribute(s) to remove | +| 引数 | 型 | | 説明 | +| ------------------- | ------ | - | ----------------------------------- | +| targetObj | Object | → | レンジまたは要素または4D Write Pro ドキュメント | +| sectionOrSubsection | Object | → | 4D Write Pro ドキュメントのセクションまたはサブセクション | +| attribName | Text | → | 削除したい属性の名前 | #### 説明 -The **WP RESET ATTRIBUTES** command allows you to reset the value of one or more attributes in the range, element, or document passed as parameter. This command can remove any kind of 4D Write Pro internal attribute: character, paragraph, document, table, or image. You can pass the attribute name to be reset in *attribName* or, in the case of a section or a subsection, the *sectionOrSubsection* object can be passed alone and all the attributes are reset at once. +**WP RESET ATTRIBUTES** コマンドは引数として渡されたレンジ、要素、またはドキュメントの1つ以上の値をリセットすることができます。このコマンドは任意の4D Write Pro 内部属性(文字、段落、ドキュメント、表または画像)を削除することができます。 リセットしたい属性の名前を*attribName* 引数に渡すことができます。あるいは削除したいのがセクションまたはサブセクションの場合、*sectionOrSubsection* オブジェクト単体を渡すだけで、全ての属性を一度にリセットすることができます。 -In the *targetObj* parameter, you can pass either: +*targetObj* 引数には、以下のいずれかを渡すことができます: -- a range, or -- an element (header / footer / body / table / paragraph / anchored or inline picture / section / subsection / style sheet), or -- a 4D Write Pro document +- レンジ +- 要素(ヘッダー / フッター / 本文 / 表 / 段落 / アンカーされた画像またはインラインの画像 / セクション / サブセクション / スタイルシート) +- 4D Write Pro ドキュメント -When an attribute value is removed using the **WP RESET ATTRIBUTES** command, the default value is applied to *targetObj* or *sectionOrSubsection*. Default values are listed in the *4D Write Pro Attributes* section. +**WP RESET ATTRIBUTES** コマンドを使用して属性の値が削除された場合、*targetObj* あるいは *sectionOrSubsection* にはデフォルトの値が適用されます。 デフォルトの値については、*4D Write Pro Attributes* の章に記載されています。 :::note 注記 -- When **WP RESET ATTRIBUTES** is applied to a section/sub-section object, attributes are then inherited from the parent section or document. -- When **WP RESET ATTRIBUTES** is applied to a style sheet object, the attributes are removed from the style sheet unless it is the default ("Normal") style sheet. In this case, the default value is applied to the attribute (the "Normal" style sheet defines all style sheet attributes). -- When *sectionOrSubsection* is not a section nor a subsection and if no attribute is provided, then an error is raised. +- **WP RESET ATTRIBUTES** がセクション/サブセクションオブジェクトに対して適用された場合、属性はその親セクションまたはドキュメントから継承されます。 +- **WP RESET ATTRIBUTES** がスタイルシートオブジェクトに対して適用された場合、スタイルシートがデフォルト("Normal")スタイルシートである場合を除き、その属性はスタイルシートから削除されます。 この場合、デフォルトの値が属性に対して適用されます(スタイルシートは全てのスタイルシート属性を定義します)。 +- *sectionOrSubsection* 引数がセクションでもサブセクションでもなく、また属性が何も指定されたなかった場合には、エラーが生成されます。 ::: -If the attribute to be reset was not defined in the element passed as a parameter, the command does nothing. +引数として渡された要素の中にリセットしたい属性が定義されていなかった場合、コマンドは何もしません。 #### 例題 1 -You want to remove several attributes from the following selection: +以下の選択範囲から複数の属性を削除したい場合を考えます: ![](../../assets/en/WritePro/commands/pict2643861.en.png) -You can execute: +この場合、以下のように書くことができます: ```4d $range:=WP Get selection(*;"WParea") @@ -56,7 +56,7 @@ You can execute: WP RESET ATTRIBUTES($range;wk border style) ``` -The resulting document is: +実行後のドキュメントはこうなります: ![](../../assets/en/WritePro/commands/pict2643863.en.png) @@ -64,9 +64,9 @@ The resulting document is: ```4d $section:=WP Get section($document; 3) -WP RESET ATTRIBUTES($section) // All attributes of the section are removed +WP RESET ATTRIBUTES($section) // セクションの全ての属性が削除される $subSection:=WP Get subsection(WP Get section($document; 3); wk left page) -WP RESET ATTRIBUTES($subSection) // All attributes of the subSection are removed +WP RESET ATTRIBUTES($subSection) // サブセクションの全ての属性が削除される ``` #### 参照 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md index 7c4ea946ad6c20..30b306cbaf4db3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**ABORT PROCESS BY ID** コマンドは4D Server 上の特定のプロセスを中止します。 - -*uniqueID* 引数には、サーバー上で実行中で中止したいプロセスの固有IDを渡します。プロセスIDは、[Process activity](../commands/process-activity.md) あるいは [Process info](../commands/process-info.md) コマンドを使用することで取得できます。 +**ABORT PROCESS BY ID** コマンドは4D Server 上の特定のプロセスを中止します。引数には、サーバー上で実行中で中止したいプロセスの固有IDを渡します。プロセスIDは、[Process activity](../commands/process-activity.md) あるいは [Process info](../commands/process-info.md) コマンドを使用することで取得できます。 **注**: @@ -41,4 +39,13 @@ displayed_sidebar: docs #### 参照 -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1634 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md index 02a14e0f20a5bd..1d825d87cafa8c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md @@ -34,4 +34,13 @@ ABORT コマンドはエラー処理プロジェクトメソッド内でのみ #### 参照 -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 156 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md index f372ccdc079da2..052aa4460e834f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md @@ -25,3 +25,13 @@ displayed_sidebar: docs ```4d  vlVector:=Abs(-10.3) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 99 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md index e1f1875ba0021f..00a7bfe56af5fb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ACCEPT** コマンドは以下の目的で、フォームメソッドまたはオブジェクトメソッド(またはサブルーチン)で使用されます: @@ -37,4 +34,14 @@ displayed_sidebar: docs #### 参照 -[CANCEL](cancel.md) \ No newline at end of file +[CANCEL](cancel.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 269 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md index 1a4e16b6e4668f..238906558c48b8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ACCUMULATEは、[PRINT SELECTION](print-selection.md "PRINT SELECTION")コマンドを使ってプリントするフォームレポート中で累計するフィールドまたは変数を指定します。 @@ -37,4 +34,13 @@ displayed_sidebar: docs [BREAK LEVEL](break-level.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 303 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md index f6446ba9b028e5..55c1036dbecdc0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**Action info** コマンドはカレントのアプリケーションコンテキストに応じて、*target* 引数で指定したターゲット内で定義されている*action* 引数で指定した標準アクションについて、利用可能状況やステータスなどを含む様々な情報を返します。 - -*action* 引数には、チェックしたい標準アクションの名前を渡します。文字列あるいは*標準アクション* テーマの定数を渡すことができます。アクションの詳細リストは4D*デザインリファレンス*マニュアルの*標準アクション* の章にて提供されています。 +**Action info** コマンドはカレントのアプリケーションコンテキストに応じて、*target* 引数で指定したターゲット内で定義されている*action* 引数で指定した標準アクションについて、利用可能状況やステータスなどを含む様々な情報を返します。引数には、チェックしたい標準アクションの名前を渡します。文字列あるいは*標準アクション* テーマの定数を渡すことができます。アクションの詳細リストは4D*デザインリファレンス*マニュアルの*標準アクション* の章にて提供されています。 **注:** 4D Write Pro ドキュメントに対しては、特定のアクションが追加されています。これらについては、4D Write Pro リファレンスマニュアル内の*4D Write Pro標準アクションの使用* の章に詳細な説明があります。 @@ -62,4 +60,13 @@ displayed_sidebar: docs #### 参照 [INVOKE ACTION](invoke-action.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1442 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md index ba91cc3201372b..49ea7425c1ffaa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Activated** コマンドは、(廃止予定)フォームを含むウインドウがプロセスの最前面のウインドウになると、そのフォームメソッドで**True** を返します。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 [Deactivated](deactivated.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 346 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md index dcfb728486a713..8f70e49399fe06 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md @@ -42,4 +42,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [RESUME TRANSACTION](resume-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*トランザクションの停止* \ No newline at end of file +*トランザクションの停止* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1387 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md index 010151a115adbc..08e5da22604a20 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md @@ -105,3 +105,13 @@ displayed_sidebar: docs 以下の様な配列が返されます: ![](../assets/en/commands/pict1213741.en.png) + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1277 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md index d81ef65c7609f2..a680201f628d65 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 互換性に関する注意 *このコマンドは4D の初期のリリースに実装されたものでプロトタイプや基本的な開発には引き続き有用です。しかしながら、ビルドされ、カスタマイズされた現代的なインターフェースにおいては、データフローに関してより高度な機能とコントロールを提供する* *[DIALOG](dialog.md) コマンドに基づいた一般的なフォームを使用することが推奨されます。* @@ -91,4 +88,17 @@ displayed_sidebar: docs [CANCEL](cancel.md) [CREATE RECORD](create-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 56 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md index 6227bd5ac9b307..5e5577bd008053 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md @@ -35,3 +35,13 @@ displayed_sidebar: docs   // この行は$vdTomorrow:=Current 日付+1と同等です  $vdTomorrow:=Add to date(Current date;0;0;1) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 393 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md index 0f778440223796..b93effb60ecc58 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### 参照 -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 119 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md index 13093c519157d3..dea61b5ba1ada0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md @@ -51,4 +51,13 @@ displayed_sidebar: docs #### 参照 [Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1431 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md index 4c2ffbec71d31a..066b2018539a21 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md @@ -51,4 +51,13 @@ displayed_sidebar: docs #### 参照 [Get adjusted index cache priority](get-adjusted-index-cache-priority.md) -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1430 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md index 7a85d91ef3ca77..01922671a9f9f3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md @@ -49,4 +49,13 @@ displayed_sidebar: docs #### 参照 [Get adjusted table cache priority](get-adjusted-table-cache-priority.md) -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1429 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md index a99d333dfd1a19..09100df22bd621 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **After** はAfter 実行サイクルでTrue を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 31 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md index 27d0da567a340e..1ef36aa7dea80f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md @@ -66,4 +66,13 @@ displayed_sidebar: docs [CONFIRM](confirm.md) [DISPLAY NOTIFICATION](display-notification.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 41 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md index 7d182005de2a8d..c8c5b5c57fdc92 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md @@ -33,4 +33,15 @@ displayed_sidebar: docs [ORDER BY](order-by.md) [QUERY](query.md) [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 47 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md index be99026f52e294..aeaab612723d75 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 APPEND DATA TO PASTEBOARD コマンドは、*dataType*で指定されたデータタイプで*data*BLOB内にあるデータをペーストボードに追加します。 @@ -219,4 +216,14 @@ GET RECORD FROM PASTEBOARDメソッドを使用して、このレコードイメ [CLEAR PASTEBOARD](clear-pasteboard.md) [SET PICTURE TO PASTEBOARD](set-picture-to-pasteboard.md) -[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) \ No newline at end of file +[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 403 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md index 6e8e41bce0f49a..ed586952f2d847 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md @@ -37,4 +37,14 @@ Append documentの使用についての詳細は、[Open document](open-document #### 参照 [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 265 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md index 8609817f753613..8132e3b20f4cfb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **APPEND MENU ITEM** コマンドは、*menu*引数に渡されたメニュー番号または参照を持つメニューに新規メニュー項目を追加します。 @@ -81,4 +78,14 @@ displayed_sidebar: docs [DELETE MENU ITEM](delete-menu-item.md) [INSERT MENU ITEM](insert-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 411 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md index 9d12ba88eceb5b..0b7ef48eeb0172 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 911 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md index 3f3e0a5266c1bc..f23eb31d677e2f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **APPEND TO LIST** コマンドは、*list*に渡した参照番号を持つ階層リストに新規項目を追加します。 @@ -162,4 +159,13 @@ displayed_sidebar: docs [INSERT IN LIST](insert-in-list.md) [SET LIST ITEM](set-list-item.md) [SET LIST ITEM PARAMETER](set-list-item-parameter.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 376 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md index 71cbd612a7341d..d4f136474513f8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md @@ -40,4 +40,13 @@ Windows上で、4Dの起動時に、DLLライブラリが4D実行形式のファ #### 参照 [Data file](data-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 491 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md index 4943e9cdf44cea..8ab42ece40c791 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md @@ -130,4 +130,13 @@ displayed_sidebar: docs [Execute on server](execute-on-server.md) [Get database parameter](get-database-parameter.md) [System info](system-info.md) -[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) \ No newline at end of file +[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1599 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md index 358fb05eb24c53..3ac729ae74bbc6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md @@ -41,4 +41,13 @@ displayed_sidebar: docs #### 参照 [Application version](application-version.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 494 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md index a89e2a8faf1433..40ee5d44335e96 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md @@ -118,4 +118,13 @@ displayed_sidebar: docs #### 参照 [Application type](application-type.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 493 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md index fc89d7451dd5cd..76d373c1a265f7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -**APPLY TO SELECTION** は、*aTable*のカレントセレクションに対して*statement*を適用します。*statement*は1行のステートメントまたはメソッドのどちらでも構いません。*statement*が*aTable*のレコードを修正した場合、そのレコードをディスクに保存されます、レコードを修正しない場合には保存しません。カレントセレクションが空の場合、**APPLY TO SELECTION** は何も行いません。リレーションが自動であれば、*statement*はリレート先のテーブルのフィールドを含むことができます。 +**APPLY TO SELECTION** は、*aTable*のカレントセレクションに対して*statement*を適用します。は何も行いません。リレーションが自動であれば、*statement*はリレート先のテーブルのフィールドを含むことができます。 **警告:** 引数($1...$n) は*statement* 引数ではサポートされていません。 @@ -61,4 +61,14 @@ APPLY TO SELECTION実行中にレコードを修正して、そのレコード #### 参照 [EDIT FORMULA](edit-formula.md) -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 70 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md index ac8dfbd1691b83..eb1e29d34e69de 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md @@ -32,4 +32,13 @@ displayed_sidebar: docs [Cos](cos.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 20 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md index b7a78f336eab76..687eb8b751df1c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**ARRAY BLOB**コマンドは、メモリ上にBLOB型の要素の配列を作成・リサイズします。 - -*arrayName* 引数には配列の名前を渡します。 +**ARRAY BLOB**コマンドは、メモリ上にBLOB型の要素の配列を作成・リサイズします。引数には配列の名前を渡します。 *size* 引数には、配列の要素の数を渡します。 @@ -59,4 +57,13 @@ displayed_sidebar: docs #### 参照 -*配列を作成する* \ No newline at end of file +*配列を作成する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1222 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md index 92b2a82fc33c40..866e0c422c6ea7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md @@ -61,4 +61,13 @@ ARRAY BOOLEANを既存の配列に適用する場合、 #### 参照 -[ARRAY INTEGER](array-integer.md) \ No newline at end of file +[ARRAY INTEGER](array-integer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 223 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md index 343f421d0df1c8..96da445163716c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md @@ -56,3 +56,13 @@ ARRAY DATEを既存の配列に適用する場合、     <>adValues{$vlElem}:=Current date+$vlElem  End for ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 224 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md index 764d09022eef14..30704b71a189bf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md @@ -60,4 +60,13 @@ ARRAY INTEGERを既存の配列に適用する場合、 #### 参照 [ARRAY LONGINT](array-longint.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 220 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md index d72e4f7ae90da3..2f2f7411d9bc79 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md @@ -60,4 +60,13 @@ ARRAY LONGINTを既存の配列に適用する場合、 #### 参照 [ARRAY INTEGER](array-integer.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 221 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md index 3bba7c9802f5a1..9a62e0b4becdd7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**ARRAY OBJECT**コマンドは、メモリ上にランゲージオブジェクト型の要素の配列を作成・リサイズします。 - -*arrayName* 引数には配列の名前を渡します。4Dのルールに則った名前であればどんな名前でも使用することができます。 +**ARRAY OBJECT**コマンドは、メモリ上にランゲージオブジェクト型の要素の配列を作成・リサイズします。引数には配列の名前を渡します。4Dのルールに則った名前であればどんな名前でも使用することができます。 *size* 引数には、配列の要素の数を渡します。 @@ -68,4 +66,13 @@ displayed_sidebar: docs [C\_OBJECT](c-object.md) *オブジェクト(ランゲージ)* -*配列を作成する* \ No newline at end of file +*配列を作成する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1221 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md index acc9bc626457ea..8b2d866aef4d1d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md @@ -63,3 +63,13 @@ ARRAY PICTURE を既存の配列に適用する場合、  End for  ARRAY PICTURE(<>agValues;$vlPictElem) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 279 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md index c3de58d5a95248..6bff02d509bfc3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md @@ -58,3 +58,13 @@ displayed_sidebar: docs     End if  End for ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 280 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md index 1743dda1ba5267..b65d5247ee9416 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md @@ -60,4 +60,13 @@ ARRAY REALを既存の配列に適用する場合、 #### 参照 [ARRAY INTEGER](array-integer.md) -[ARRAY LONGINT](array-longint.md) \ No newline at end of file +[ARRAY LONGINT](array-longint.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 219 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md index cc642b048bc19e..32992a34241c2e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md @@ -57,3 +57,13 @@ ARRAY TEXTを既存の配列に適用する場合、  End for ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 222 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md index ea612ca6b17e83..2ba41b98957511 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**ARRAY TIME**コマンドは、メモリ上に時間型の要素の配列を作成・リサイズします。 - -**リマインダ:** 4Dでは時間は数の値として処理されるということに注意して下さい。以前のバージョンの4Dでは、時間の配列を管理するためには倍長整数配列と表示フォーマットを組み合わせる必要がありました。 +**ARRAY TIME**コマンドは、メモリ上に時間型の要素の配列を作成・リサイズします。4Dでは時間は数の値として処理されるということに注意して下さい。以前のバージョンの4Dでは、時間の配列を管理するためには倍長整数配列と表示フォーマットを組み合わせる必要がありました。 *arrayName* 引数には配列の名前を渡します。 @@ -64,4 +62,13 @@ displayed_sidebar: docs #### 参照 [Time](time.md) -*配列を作成する* \ No newline at end of file +*配列を作成する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1223 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md index 66a859fc556cfe..66962d4be635b1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md @@ -81,4 +81,13 @@ displayed_sidebar: docs #### 参照 [COLLECTION TO ARRAY](collection-to-array.md) -*コレクションと4D配列間での型の変換* \ No newline at end of file +*コレクションと4D配列間での型の変換* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1563 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md index 25e1ff1995c4d6..3c529fcf1d0fa2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ARRAY TO LIST コマンドは、配列*array*の要素を使用して、(デザインモードのリストエディタで作成される)階層リストまたは選択リスト*list*リストを作成または置き換えます。 @@ -62,4 +59,14 @@ ARRAY TO LIST コマンドを使い、配列の要素に基づくリストを作 [LIST TO ARRAY](list-to-array.md) [Load list](load-list.md) [ON ERR CALL](on-err-call.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 287 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md index 71af2fe9a3651b..b1965db9d692de 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md @@ -79,4 +79,14 @@ displayed_sidebar: docs #### 参照 [SELECTION TO ARRAY](selection-to-array.md) -*システム変数* \ No newline at end of file +*システム変数* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 261 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md index 28b174d235934b..6cf959108cef2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md @@ -54,4 +54,14 @@ displayed_sidebar: docs [Asserted](asserted.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1129 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md index bff02522b5feba..8d27003dd3710d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md @@ -40,4 +40,14 @@ displayed_sidebar: docs [ASSERT](assert.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1132 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md index a662a30bbc8bac..aaba64d50c12d6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md @@ -89,4 +89,14 @@ displayed_sidebar: docs [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) [Subtotal](subtotal.md) -[Sum](sum.md) \ No newline at end of file +[Sum](sum.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 2 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md index 3fed73bbace4ff..edc836d2220d44 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -BACKUP INFO コマンドを使用して、データベースのデータに対して行われた前回のバックアップに関連する情報を取得できます。 - -*selector*には取得する情報タイプを渡します。*info1* と *info2* の型および内容は、*selector* の値によって決まります。“*Backup and Restore*”テーマの次の定数を使用できます: +BACKUP INFO コマンドを使用して、データベースのデータに対して行われた前回のバックアップに関連する情報を取得できます。と *info2* の型および内容は、*selector* の値によって決まります。“*Backup and Restore*”テーマの次の定数を使用できます: | 定数 | 型 | 値 | コメント | | ----------------------- | ---- | - | ----------------------------------------------------------------------------------------------------------------------------------- | @@ -30,4 +28,13 @@ displayed_sidebar: docs #### 参照 -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 888 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md index 764aa63cf92922..cdd3e63101ee9d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **BACKUP**コマンドは、現在のバックアップ設定を用いて、データベースのバックアップを開始します。確認ダイアログボックスは表示されませんが、進捗バーが画面上に現れます。 @@ -38,4 +35,14 @@ displayed_sidebar: docs [BACKUP INFO](backup-info.md) *On Backup Startupデータベースメソッド* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 887 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md index 836d2b7f8b14f9..b5c74698ac449c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md @@ -54,4 +54,13 @@ displayed_sidebar: docs [BASE64 ENCODE](base64-encode.md) [Generate digest](generate-digest.md) [XML DECODE](xml-decode.md) -*XML DOMコマンドの概要* \ No newline at end of file +*XML DOMコマンドの概要* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 896 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md index e362880c2340ec..2ad2524a77a902 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md @@ -37,4 +37,13 @@ Bse64 エンコーディングは、8-bit のコードされたデータを編 [BASE64 DECODE](base64-decode.md) [Generate digest](generate-digest.md) [XML DECODE](xml-decode.md) -*XML DOMコマンドの概要* \ No newline at end of file +*XML DOMコマンドの概要* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 895 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md index 774a20ff09f9db..57891b4f8ff43e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[PLAY](play.md) \ No newline at end of file +[PLAY](play.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 151 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md index 21e5aeaaf108b1..faa2f16b2bb5ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -**Before selection** は、カレントレコードポインタが*aTable*のカレントセレクションの前にある場合にTRUEを返します。**Before selection** は、一般に[PREVIOUS RECORD](previous-record.md) により、カレントレコードポインタが先頭レコードの前に移動したかどうかを調べるために使用します。カレントセレクションが空の場合、**Before selection** はTRUEを返します。 +**Before selection** は、カレントレコードポインタが*aTable*のカレントセレクションの前にある場合にTRUEを返します。は、一般に[PREVIOUS RECORD](previous-record.md) により、カレントレコードポインタが先頭レコードの前に移動したかどうかを調べるために使用します。カレントセレクションが空の場合、**Before selection** はTRUEを返します。 カレントレコードポインタをセレクションに内に戻すには、[FIRST RECORD](first-record.md)、[LAST RECORD](last-record.md) または [GOTO SELECTED RECORD](goto-selected-record.md) を使用します。[NEXT RECORD](next-record.md) ではポインタはセレクション内に戻りません。 @@ -61,4 +61,13 @@ displayed_sidebar: docs [FIRST RECORD](first-record.md) [Form event code](form-event-code.md) [PREVIOUS RECORD](previous-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 198 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md index e61899cf3fd348..98e704dd88d348 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Before** はBefore 実行サイクルでTrue を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 29 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md index aaf101e33374d4..d6f849baa285ca 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md @@ -45,4 +45,13 @@ displayed_sidebar: docs [End SQL](end-sql.md) [SQL Get current data source](sql-get-current-data-source.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 948 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md index 814725b7b0e19b..2832515d919e16 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md @@ -77,4 +77,13 @@ BLOBが圧縮された後、以下のプロジェクトメソッドは圧縮で #### 参照 [COMPRESS BLOB](compress-blob.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 536 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md index 231fbcaaa1f589..551f8ebb2013b9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 -[SET BLOB SIZE](set-blob-size.md) \ No newline at end of file +[SET BLOB SIZE](set-blob-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 605 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md index 3ab3ffdbee8a6a..7dddbd16251f16 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -BLOB TO DOCUMENT は、*blob*に格納されているデータを使用して*document*の内容全体を上書きします。*document*にはドキュメント名を渡します。*document*が存在しない場合、コマンドはドキュメントを作成します。既存のドキュメント名を渡す場合、それが開かれていないことを確認してください。ファイルが開かれているとエラーが生成されます。ドキュメントをユーザが選択できるようにするには、[Open document](open-document.md) または[Create document](create-document.md) 、およびプロセス変数*document* を使用します(例題を参照)。 +BLOB TO DOCUMENT は、*blob*に格納されているデータを使用して*document*の内容全体を上書きします。を使用します(例題を参照)。 #### 例題 @@ -49,4 +49,14 @@ displayed_sidebar: docs [Create document](create-document.md) [DOCUMENT TO BLOB](document-to-blob.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 526 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md index 6c54b17d53aeff..0ffa0744769752 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md @@ -61,4 +61,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 549 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md index 1c729fd7d16309..d47d2d5639008d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 BLOB to list コマンドは*blob*中、*offset*で指定されたバイトオフセット(ゼロから開始)に格納されているデータを使用して新しい階層リストを作成し、このリストのリスト参照番号を返します。 @@ -63,4 +60,14 @@ BLOB to listや[LIST TO BLOB](list-to-blob.md "LIST TO BLOB")は、 BLOBに格 #### 参照 -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 557 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md index 385c814a987ae9..eb1f77cb22f9b3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md @@ -59,4 +59,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 551 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md index fde308a100b0d4..7496ff01e6958c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md @@ -50,4 +50,14 @@ displayed_sidebar: docs [PICTURE CODEC LIST](picture-codec-list.md) [PICTURE TO BLOB](picture-to-blob.md) -[READ PICTURE FILE](read-picture-file.md) \ No newline at end of file +[READ PICTURE FILE](read-picture-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 682 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md index c19aca8c4e874b..f44c2dedba2624 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **BLOB to print settings** コマンドは、4Dの現プリンタ設定を *printSettings* BLOBに格納された内容で置き換えます。このBLOBは [Print settings to BLOB](print-settings-to-blob.md) または 4D Pack コマンドで生成されていなければなりません (後述参照)。 @@ -77,4 +74,13 @@ The **BLOB to print settings** コマンドは、コマンドに比べてより #### 参照 -[Print settings to BLOB](print-settings-to-blob.md) \ No newline at end of file +[Print settings to BLOB](print-settings-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1434 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md index 36985f1a777bb8..1771c694701a90 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md @@ -60,4 +60,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 553 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md index d2fcc4d95788cd..30f01ae6cd6ed8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md @@ -20,9 +20,7 @@ displayed_sidebar: docs #### 説明 -BLOB to text コマンドはBLOB *blob*からテキストを読みだして、返します。 - -*textFormat* 引数は、読み込むテキスト値の内部フォーマットと文字セットを指定します。4Dバージョン11以降で作成されたデータベースでは、4Dはテキストの処理にデフォルトでUnicode (UTF-8) を使用します。互換性を保つため、このコマンドに、以前のバージョンの4Dで使用されていたMac Roman文字セットへの変換を強制することもできます。文字セットは*textFormat* 引数で指定します。これを行うには、*BLOB* テーマの以下の定数のうちいずれかを*textFormat* 引数に渡します: +BLOB to text コマンドはBLOB *blob*からテキストを読みだして、返します。引数は、読み込むテキスト値の内部フォーマットと文字セットを指定します。4Dバージョン11以降で作成されたデータベースでは、4Dはテキストの処理にデフォルトでUnicode (UTF-8) を使用します。互換性を保つため、このコマンドに、以前のバージョンの4Dで使用されていたMac Roman文字セットへの変換を強制することもできます。文字セットは*textFormat* 引数で指定します。これを行うには、*BLOB* テーマの以下の定数のうちいずれかを*textFormat* 引数に渡します: | 定数 | 型 | 値 | | ------------------------ | ---- | - | @@ -60,4 +58,13 @@ displayed_sidebar: docs [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 555 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md index 39d9bdd49fd19f..5d0a37355d5ea1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 BLOB TO USERS コマンドは、データベース内で管理者によって作成されたユーザーアカウントとグループを *users* BLOBに格納されたアカウントとグループで上書きします。 *users* BLOBは暗号化されており、[USERS TO BLOB](users-to-blob.md) コマンドを使用して作成されていなければなりません。 @@ -48,4 +45,14 @@ displayed_sidebar: docs #### 参照 -[USERS TO BLOB](users-to-blob.md) \ No newline at end of file +[USERS TO BLOB](users-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 850 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md index f5ca0997fa3ce8..d795134ac9200b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md @@ -43,4 +43,14 @@ BLOB TO VARIABLEと[VARIABLE TO BLOB](variable-to-blob.md)は4Dの内部フォ #### 参照 -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 533 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md index bda2960a2c1e00..a602ce22ca5065 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md @@ -46,4 +46,13 @@ displayed_sidebar: docs [Date](date.md) [Num](num.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1537 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md index 47fe96e8ac48b0..af641bb76b6806 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md @@ -31,4 +31,13 @@ displayed_sidebar: docs #### 参照 -[CREATE SET FROM ARRAY](create-set-from-array.md) \ No newline at end of file +[CREATE SET FROM ARRAY](create-set-from-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 646 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md index dff64fcadadaed..2680a02791671d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **BREAK LEVEL**は、[PRINT SELECTION](print-selection.md)コマンドを使ってプリントするレポートのブレークの数を指定します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs [ACCUMULATE](accumulate.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 302 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md index 68e98ca6cdbd48..7aeca83acff7b6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 BRING TO FRONTは*process*に属するすべてのウィンドウを最前面に配置します。このプロセスが既に最前のプロセスの場合は、このコマンドは何も行いません。プロセスが非表示の場合に、[SHOW PROCESS](show-process.md "SHOW PROCESS")コマンドでプロセスを表示しないとBRING TO FRONTコマンドは効果がありません。 @@ -38,4 +35,13 @@ displayed_sidebar: docs [HIDE PROCESS](hide-process.md) [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 326 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md index 47f20237f79d62..6a555e74588b59 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 BUILD APPLICATION コマンドはアプリケーションの生成処理を開始します。処理に使用されるのは、カレントのアプリケーションビルド設定ファイル、または*buildAppSettings* 引数で渡した設定ファイルのパラメーターです。 @@ -53,4 +50,15 @@ displayed_sidebar: docs #### 参照 -[Compile project](compile-project.md) \ No newline at end of file +[Compile project](compile-project.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 871 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、Document、error | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md index cc6e453569725e..3dd37d9497ed76 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md @@ -52,4 +52,13 @@ displayed_sidebar: docs #### 参照 -[MEMORY STATISTICS](memory-statistics.md) \ No newline at end of file +[MEMORY STATISTICS](memory-statistics.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1402 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md index a3ee77061723af..f6bfe5e6750df7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md @@ -48,3 +48,13 @@ displayed_sidebar: docs ```json [   {    "type":"formObjectMethod",    "name":"detailForm.Button",    "line":1,    "database":"myDatabase"   },   {    "type":"formMethod",    "name”:"detailForm",    "line":2,    "database":"myDatabase"   },   {    "type":"projectMethod",    "name”:"showDetailForm",    "line":2,    "database":"myDatabase”   }] ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1662 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md index a3748313cd5c0c..06d172d7da220b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md @@ -100,4 +100,13 @@ displayed_sidebar: docs [CALL WORKER](call-worker.md) -[DIALOG](dialog.md) \ No newline at end of file +[DIALOG](dialog.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1391 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md index d35a4efcb6eabc..0e4d367e73b7f8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CALL SUBFORM CONTAINER** コマンドを使用してサブフォームインスタンスからそれを含むサブフォームコンテナにイベントを送信できます。そしてサブフォームコンテナは親フォームのコンテキストでイベントを処理できます。 @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 [Form event code](form-event-code.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1086 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md index 88258fc593f15e..2cfdc4c033b58c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**CALL WORKER** コマンドは、*process* に受け渡した名称または ID のワーカープロセスを作成、または呼び出して、任意の *param* パラメーターを使って *formula* 引数で指定されたコードの実行をそのコンテキスト内において要求します。 - -**CALL WORKER** コマンドは *params* をカプセル化し、メッセージの形でワーカーが持つメッセージボックスに受け渡します。ワーカープロセスについての詳細は*ワーカーについて* を参照ください。 +**CALL WORKER** コマンドは、*process* に受け渡した名称または ID のワーカープロセスを作成、または呼び出して、任意の *param* パラメーターを使って *formula* 引数で指定されたコードの実行をそのコンテキスト内において要求します。コマンドは *params* をカプセル化し、メッセージの形でワーカーが持つメッセージボックスに受け渡します。ワーカープロセスについての詳細は*ワーカーについて* を参照ください。 *process* パラメーターに指定するプロセス名またはプロセス番号により、ワーカーは特定されます: @@ -75,4 +73,13 @@ displayed_sidebar: docs [CALL FORM](call-form.md) [Current process name](current-process-name.md) [KILL WORKER](kill-worker.md) -*ワーカーについて* \ No newline at end of file +*ワーカーについて* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1389 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md index 1c972785e8af23..37c556d147872b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [START TRANSACTION](start-transaction.md) [Transaction level](transaction-level.md) [VALIDATE TRANSACTION](validate-transaction.md) -*トランザクションを使用する* \ No newline at end of file +*トランザクションを使用する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 241 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md index b03f2ec077364b..c165269a27ba40 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CANCEL** コマンドは以下の目的で、フォームあるいはオブジェクトメソッド (またはそこから呼ばれるサブルーチンで) 使用されます: @@ -52,4 +49,14 @@ CANCELコマンドが実行される (フォームや印刷がキャンセルさ [ACCEPT](accept.md) [PAGE BREAK](page-break.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 270 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md index c90232fffaee8d..9b0479025f1b93 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md @@ -28,4 +28,13 @@ displayed_sidebar: docs [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 547 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md index 86badb1dd0a266..a7bf7f5482307d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CHANGE CURRENT USER** コマンドを使用すると、データベースを終了させずに、カレントユーザーを変更できます。ユーザーはデータベース接続ダイアログボックス (引数なしでコマンドが呼び出された場合) を使用して、またはコマンドから直接、ログインユーザーを変更することが可能です。ユーザーがログインを変更すると、選択されたユーザーが保有する権限を優先す るため、以前のアクセス権はすべて放棄されます。 @@ -66,4 +63,13 @@ displayed_sidebar: docs #### 参照 [CHANGE PASSWORD](change-password.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 289 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md index 1f0a0706acafa1..7d4adc908c6abb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 CHANGE LICENSES コマンドは、4Dライセンス管理ダイアログボックスを表示します。 @@ -41,4 +38,14 @@ CHANGE LICENSES は、顧客に配付されたコンパイル済みのシング #### 参照 [License info](license-info.md) -[Is license available](is-license-available.md) \ No newline at end of file +[Is license available](is-license-available.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 637 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md index 4a36dd4cb3ffac..4f60f1df0d5130 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 CHANGE PASSWORD コマンドを使用して、カレントユーザのパスワードを変更できます。このコマンドは現在のパスワードを、引数 *password* に渡した新しいパスワードに置き換えます。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 [CHANGE CURRENT USER](change-current-user.md) -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 186 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md index 4699d0d4a74d1a..ce782770b5385d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md @@ -37,4 +37,13 @@ Change stringの使用例を次に示します。結果を変数*vtResult*に代 [Delete string](delete-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 234 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md index 1afe346736797b..eb215c24b5ae4f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Char** コマンド は文字コードが*charCode*である文字を返します。 - -*charCode* にはUTF-16値(1から65535の間) を渡します。 +**Char** コマンド は文字コードが*charCode*である文字を返します。にはUTF-16値(1から65535の間) を渡します。 **Tip:** メソッド作成時、 **Char** は通常キーボードから入力できない文字や、メソッドエディタでは編集コマンドとして解釈される文字を指定するために使用します。 @@ -34,4 +32,13 @@ displayed_sidebar: docs [Character code](character-code.md) *Unicodeコード* -*文字参照記号* \ No newline at end of file +*文字参照記号* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 90 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md index 7e0ba9534b0b48..f227278ca11e3b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md @@ -82,4 +82,13 @@ characterが1文字より多い場合、 **Character code** は最初の文字 #### 参照 [Char](char.md) -*文字参照記号* \ No newline at end of file +*文字参照記号* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 91 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md index 3960d3b006d1b7..4caf0c7bb16161 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CHECK LOG FILE** コマンドは、データベースのカレントログファイルの内容をブラウズできるダイアログを表示します。このダイアログにはMaintenance & Security Centerからもアクセスできます: @@ -36,4 +33,14 @@ displayed_sidebar: docs #### 参照 [RESTORE](restore.md) -*バックアップマネージャエラー (1401 -> 1421)* \ No newline at end of file +*バックアップマネージャエラー (1401 -> 1421)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 799 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md index 27436219e5a3b0..ed761643225e91 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md @@ -78,3 +78,13 @@ displayed_sidebar: docs        vStatus:="Divorced"  End case ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 955 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md index 6d9dde87b6b965..5d3adb537e8566 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 CLEAR LIST コマンドは、*list*に渡したリスト参照番号を持つ階層リストを廃棄します。 @@ -54,4 +51,13 @@ displayed_sidebar: docs [BLOB to list](blob-to-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 377 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md index 6c63e2078f54c2..7c6f90c5a511c0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md @@ -23,4 +23,13 @@ displayed_sidebar: docs [COPY NAMED SELECTION](copy-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 333 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md index 67d70c98c868c3..8b2ac11d82476e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 CLEAR PASTEBOARD コマンドは、クリップボードの内容をすべて消去します。クリップボードに同じデータの複数のインスタンスが含まれる場合には、すべてのインスタンスが消去されます。CLEAR PASTEBOARDコマンドを呼び出した後、クリップボードは空になります。 @@ -41,4 +38,13 @@ CLEAR PASTEBOARDを1回呼び出してから、[APPEND DATA TO PASTEBOARD](appen #### 参照 -[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) \ No newline at end of file +[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 402 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md index 27f754c0b4b97f..84a70e3cd0888e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md @@ -27,4 +27,13 @@ displayed_sidebar: docs [Semaphore](semaphore.md) [Test semaphore](test-semaphore.md) -*セマフォーとシグナル* \ No newline at end of file +*セマフォーとシグナル* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 144 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md index a85d2cc2488384..15f2b776ee8b3e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md @@ -25,4 +25,13 @@ displayed_sidebar: docs [CREATE EMPTY SET](create-empty-set.md) [CREATE SET](create-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 117 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md index 37e536e19ff22f..186994d9ec962b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 89 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md index 48f2b16c9464fc..894bca73d6eb52 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Clickcount** コマンドは、マウスクリックイベントのコンテキストにおいて、ユーザー同じマウスボタンを素早く連続でクリックした回数を返します。通常、このコマンドはダブルクリックを意味する2を返します。 @@ -61,3 +58,13 @@ On Clicked と On Double Clicked フォームイベントが両方とも有効     End case  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1332 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md index 5b487206e94398..56fb5c5097d0ec 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md @@ -36,4 +36,13 @@ displayed_sidebar: docs [Append document](append-document.md) [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 267 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md index c597057cf90068..be5860308bf9e7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CLOSE PRINTING JOB** コマンドは、[OPEN PRINTING JOB](open-printing-job.md) コマンドで開かれたプリントジョブを閉じ、組み立てたプリントドキュメントをカレントプリンタに送信するために使用できます。 @@ -23,4 +20,13 @@ displayed_sidebar: docs #### 参照 -[OPEN PRINTING JOB](open-printing-job.md) \ No newline at end of file +[OPEN PRINTING JOB](open-printing-job.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 996 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md index 150a67c020cab5..06500d89906dfb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CLOSE RESOURCE FILE**コマンドは、引数*resFile*に渡された参照番号を持つリソースファイルを閉じます。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[Open resource file](open-resource-file.md) \ No newline at end of file +[Open resource file](open-resource-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 498 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md index 3132b33993832b..ed33af87b9844f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 CLOSE WINDOW はカレントプロセスで[Open window](open-window.md "Open window") や [Open form window](open-form-window.md "Open form window") コマンドで開かれたアクティブウィンドウを閉じます。カスタムウィンドウが開かれていない場合、CLOSE WINDOWは効果を持ちません (システムウィンドウは閉じられません)。CLOSE WINDOW はウィンドウ中でフォームがアクティブであるときに呼び出されても効力を持ちません。CLOSE WINDOWは[Open window](open-window.md "Open window") や [Open form window](open-form-window.md "Open form window") で開いたウィンドウの利用が終了したときに呼び出します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 [Open form window](open-form-window.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 154 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md index e16e6f34d55e0e..43f293243722ac 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md @@ -64,4 +64,13 @@ displayed_sidebar: docs #### 参照 [ARRAY TO COLLECTION](array-to-collection.md) -*コレクションと4D配列間での型の変換* \ No newline at end of file +*コレクションと4D配列間での型の変換* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1562 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md index 02ba05166c0102..fe301ab78c3c0e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md @@ -50,4 +50,13 @@ displayed_sidebar: docs #### 参照 -[TRANSFORM PICTURE](transform-picture.md) \ No newline at end of file +[TRANSFORM PICTURE](transform-picture.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 987 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md index 3656c2202454ed..4d9fccd2eeb20b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**Command name** コマンドは、引数*command*に渡したコマンド番号のコマンド名に加え、コマンドのプロパティ(任意)を返します。 - -**注:** コマンド毎の番号はエクスプローラー内と、ドキュメントのプロパティエリア内に書かれています。 +**Command name** コマンドは、引数*command*に渡したコマンド番号のコマンド名に加え、コマンドのプロパティ(任意)を返します。コマンド毎の番号はエクスプローラー内と、ドキュメントのプロパティエリア内に書かれています。 **互換性に関する注意:** 以前はコマンド名が 4Dのバージョンによって異なったり (コマンドの改名)、アプリケーション言語によって異なる場合もあったため、特にトークナイズドされていない部分のコードについて、コマンドを番号を用いて指定することが有用な場合もありました。この目的に応じた **Command name** コマンドの有用性は、4Dが時間をかけて進化する中で少しずつ縮小されてきました。トークナイズドされていない宣言 (式) に対して、4Dは現在トークンシンタックスを提供しています。これはコマンド名の変化やテーブル等といった他の要素に起因する潜在的な問題を避けられる一方、 これらの名前を読みやすい方法でタイプすることができる方法です (この点についての詳細は、*フォーミュラ内でのトークンの使用* の章を参照ください)。それに加え、4D v15以降ではデフォルトで英語がランゲージとして使用されます。しかしながら、データベース設定の [Is a list](is-a-list.md) の "リージョンシステム設定を使用" オプションを使用することによって、フランス語版の4Dにおいては引き続きフランス語をランゲージとして使用できます。 @@ -102,4 +100,14 @@ displayed_sidebar: docs #### 参照 [EXECUTE FORMULA](execute-formula.md) -*プリエンプティブ4Dプロセス* \ No newline at end of file +*プリエンプティブ4Dプロセス* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 538 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md index f3825dbbfe72f7..4bdab4467aa993 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md @@ -67,4 +67,14 @@ Timestamp log file nameオプションを渡していた場合、ログファイ #### 参照 [Table fragmentation](table-fragmentation.md) -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 937 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md index 0db703ec689b7a..ef894517b543e7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**Compare strings** コマンドは、*aString* 引数の文字列が*bString* 引数の文字列比較して低い/等しい/高いと評価されるかによって負の値/ゼロ/正の値を返します。 - -*aString* 引数にはtext 型の値を渡します。 +**Compare strings** コマンドは、*aString* 引数の文字列が*bString* 引数の文字列比較して低い/等しい/高いと評価されるかによって負の値/ゼロ/正の値を返します。引数にはtext 型の値を渡します。 *bString* 引数には、*aString* 引数と比較するtext 型の値を渡します。 @@ -105,4 +103,13 @@ displayed_sidebar: docs #### 参照 -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1756 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md index 9c5e0a486e2e9a..cb9cd537756900 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Compile project** は、カレントのホストプロジェクト、または*projectFile* 引数で指定したプロジェクトをコンパイルします。コンパイルについてのより詳細な情報については、*Compilation page on developer.4d.com* を参照してください。 @@ -182,4 +179,13 @@ var $result:=Compile project($options) #### 参照 -[BUILD APPLICATION](build-application.md) \ No newline at end of file +[BUILD APPLICATION](build-application.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1760 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md index 9bf048dd752775..a454cb8be7255c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[PLUGIN LIST](plugin-list.md) \ No newline at end of file +[PLUGIN LIST](plugin-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1001 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md index 1bd6cc58b8f4c8..e5fbf1e8ba01cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md @@ -90,4 +90,14 @@ BLOBが正しく圧縮されると、システム変数OKは1に設定されま #### 参照 [BLOB PROPERTIES](blob-properties.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 534 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md index 2f506b9f27b2b3..4939d5cd3c6cd5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -CONFIRM コマンドは、注意アイコンとメッセージ、OKボタン、キャンセルボタンで構成される確認ダイアログボックスを表示します。 - -*message* 引数には表示するメッセージを渡します。 +CONFIRM コマンドは、注意アイコンとメッセージ、OKボタン、キャンセルボタンで構成される確認ダイアログボックスを表示します。引数には表示するメッセージを渡します。 デフォルトでは、OKボタンのタイトルは“OK”で、キャンセルボタンのタイトルは"キャンセル"です。これらのボタンタイトルを変更するには、オプションの*okButtonTitle* や*cancelButtonTitle* 引数に新しいカスタムボタンタイトルを指定します。必要であれば、渡したカスタムタイトルの幅に応じて、ボタンの幅を左方向にリサイズします。 @@ -91,4 +89,14 @@ Windowsにおいて以下のような確認ダイアログボックスを表示 #### 参照 [ALERT](alert.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 162 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md index d9ba6bfe24f022..996a96f0c99b5c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Contextual click コマンドは、コンテキストクリックが行われた場合に[True](true.md "True")を返します。 @@ -42,4 +39,13 @@ displayed_sidebar: docs #### 参照 [Form event code](form-event-code.md) -[Right click](right-click.md) \ No newline at end of file +[Right click](right-click.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 713 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md index 53bd41310b6e0b..0a3d9310b4484a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **CONVERT COORDINATES**コマンドは、ある点の(x;y)座標を一つの座標系から別の座標系へと変換します。サポートされる入力・出力座標系はフォーム(およびサブフォーム)、ウィンド、そしてスクリーンです。例えば、このコマンドを使用して、メインフォーム内にある、サブフォームに属しているオブジェクトの座標を取得する事ができます。これにより、どんなカスタムオプションに対してもコンテキストメニューを作成する事が容易になります。 @@ -86,4 +83,13 @@ displayed_sidebar: docs [GET WINDOW RECT](get-window-rect.md) [OBJECT GET COORDINATES](object-get-coordinates.md) [OBJECT SET COORDINATES](object-set-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1365 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md index c4c2d6c34356b0..10c32b8d2a3d3b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -CONVERT FROM TEXTコマンドは、現在の4Dの文字セットで記述されているテキストを、他の文字セットで記述されているテキストへ変換するために使用できます。 - -*4Dtext* 引数には変換するテキストを渡します。このテキストは、4Dが使用する文字セットで記述されています。4Dのバージョン11では、デフォルトでUnicode 文字セットが使用されています。 +CONVERT FROM TEXTコマンドは、現在の4Dの文字セットで記述されているテキストを、他の文字セットで記述されているテキストへ変換するために使用できます。引数には変換するテキストを渡します。このテキストは、4Dが使用する文字セットで記述されています。4Dのバージョン11では、デフォルトでUnicode 文字セットが使用されています。 *charSet* には変換に使用する文字セットを渡します。セットの標準名 (例えば、"ISO-8859-1" や "UTF-8" ) 、またはMIBEnum識別子を渡すことができます。 @@ -191,4 +189,14 @@ CONVERT FROM TEXTと[Convert to text](convert-to-text.md "Convert to text")コ #### 参照 -[Convert to text](convert-to-text.md) \ No newline at end of file +[Convert to text](convert-to-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1011 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md index eeb5fe2977fc8a..67a57ec95698db 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md @@ -53,4 +53,13 @@ Windowsでの例題: [Convert path system to POSIX](convert-path-system-to-posix.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1107 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md index 0a387587d47d8a..1ec1cc25bcdaed 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md @@ -60,4 +60,13 @@ Windowsでの例題 [Convert path POSIX to system](convert-path-posix-to-system.md) [Object to path](object-to-path.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1106 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md index d9a6baeb698a8c..71830ff2ef0591 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -CONVERT PICTURE コマンドは*picture*を新しいタイプに変換します。 - -*codec* 引数で生成するピクチャのタイプを指定します。Codecには拡張子 (例 “.gif”), またはMimeタイプ(例 “image/jpeg”)が使用できます。利用可能なCodecのリストは [PICTURE CODEC LIST](picture-codec-list.md) コマンドを使用して取得できます。 +CONVERT PICTURE コマンドは*picture*を新しいタイプに変換します。引数で生成するピクチャのタイプを指定します。Codecには拡張子 (例 “.gif”), またはMimeタイプ(例 “image/jpeg”)が使用できます。利用可能なCodecのリストは [PICTURE CODEC LIST](picture-codec-list.md) コマンドを使用して取得できます。 *picture* フィールドや変数が複合型 (例えばコピー/ペーストアクションの結果のピクチャ) の場合、codecタイプに対応する情報のみが結果ピクチャに保持されます。 @@ -48,4 +46,13 @@ vpPhoto ピクチャをjpegフォーマットに変換: #### 参照 -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1002 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md index 9355b870c555c1..d537d64471c2bf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md @@ -29,4 +29,14 @@ Convert to textはByte Order Marks (BOM) をサポートします。指定され #### 参照 -[CONVERT FROM TEXT](convert-from-text.md) \ No newline at end of file +[CONVERT FROM TEXT](convert-from-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1012 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md index a6840633d7124b..8999f0cd275c2e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -COPY ARRAY コマンドは*destination* 配列を、*source* 配列と同じ内容、サイズ、およびタイプで作成または上書きします。 - -**注:** 異なるタイプの数値型配列の場合、*destination* 配列の型が採用されます。 +COPY ARRAY コマンドは*destination* 配列を、*source* 配列と同じ内容、サイズ、およびタイプで作成または上書きします。異なるタイプの数値型配列の場合、*destination* 配列の型が採用されます。 *source*と*destination*の配列はローカル、プロセス、インタープロセス配列の組み合わせが可能です。変数のスコープが違っていても、配列を複製するのに問題はありません。 @@ -36,3 +34,13 @@ displayed_sidebar: docs  SELECTION TO ARRAY([People]Company;C) // companyフィールドのデータをCにコピー  COPY ARRAY(C;D) // C配列をD配列にコピー ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 226 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md index 13293a94b053e7..e41e12568dc392 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 [DELETE FROM BLOB](delete-from-blob.md) -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 558 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md index 3815724da8427d..6db66d06f9f212 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md @@ -19,8 +19,6 @@ displayed_sidebar: docs #### 説明 **COPY DOCUMENT**コマンドを使用して、*sourceName*によって指定されたファイルやフォルダーを*destinationName*によって指定された場所にコピーします。 - -* **ファイルのコピー** この場合*sourceName*引数には以下のどちらかを渡す事ができます。 * ボリュームのルートから始まる完全なファイルパス名 * データベースフォルダーから相対的なパス名 @@ -121,4 +119,14 @@ displayed_sidebar: docs #### 参照 [MOVE DOCUMENT](move-document.md) -*システムドキュメント* \ No newline at end of file +*システムドキュメント* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 541 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md index 63022c5bc72f4c..903e6f413e9fda 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Copy list コマンドは*list*に渡されたリスト参照番号を持つリストの複製を作成し、新しいリストのリスト参照番号を返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs [CLEAR LIST](clear-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 626 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md index fdd7ba3df59792..7d8fa05ed21aeb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md @@ -49,4 +49,13 @@ displayed_sidebar: docs [CLEAR NAMED SELECTION](clear-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 331 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md index 2f0c495bc52b03..9c6a82a37f11df 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md @@ -79,4 +79,13 @@ displayed_sidebar: docs #### 参照 -[Count parameters](count-parameters.md) \ No newline at end of file +[Count parameters](count-parameters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1790 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md index 44377336023ef3..fbccf8da78bdd6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md @@ -38,4 +38,13 @@ displayed_sidebar: docs #### 参照 -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 600 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md index 096dfb39c5feaf..dd72fc40517d0a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 18 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md index 71d69a62dc8da3..bdb33a11e17a5c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md @@ -56,4 +56,13 @@ displayed_sidebar: docs #### 参照 [Find in array](find-in-array.md) -[Find in sorted array](find-in-sorted-array.md) \ No newline at end of file +[Find in sorted array](find-in-sorted-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 907 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md index 2fe3222634ffb0..0c9a249e9bbe68 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Count list items** コマンドは、*list*に渡した参照番号またはオブジェクト名のリスト上で現在表示中または項目総数を返します。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 [List item position](list-item-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 380 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md index 6eef946e43844d..5e5b6d9129c688 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Count menu items コマンドは、*menu*引数に渡されたメニュー番号または参照を持つメニュー内にあるメニュー項目の数を返します。 @@ -28,4 +25,14 @@ displayed_sidebar: docs #### 参照 -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 405 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md index 4ecdf9fb6f302d..a60dc1f2ae3cb2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Count menus コマンドは、メニューバー上にあるメニューの数を返します。 @@ -25,4 +22,14 @@ displayed_sidebar: docs #### 参照 -[Count menu items](count-menu-items.md) \ No newline at end of file +[Count menu items](count-menu-items.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 404 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md index c726ee2d7d8c95..69c0de4849d041 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Count parameters コマンドは、プロジェクトメソッドに渡された引数の数を返します。 - -**警告:** Count parametersは、他のメソッド(プロジェクトメソッド、その他)から呼び出されるプロジェクトメソッド内でのみ意味を持ちます。Count parametersを呼び出すプロジェクトメソッドがメニューに割り当てられている場合、Count parametersは0を返します。 +Count parameters コマンドは、プロジェクトメソッドに渡された引数の数を返します。Count parametersは、他のメソッド(プロジェクトメソッド、その他)から呼び出されるプロジェクトメソッド内でのみ意味を持ちます。Count parametersを呼び出すプロジェクトメソッドがメニューに割り当てられている場合、Count parametersは0を返します。 #### 例題 1 @@ -94,4 +92,13 @@ MyMethod内でCount parametersを使用し、実際の引数の数を取得し #### 参照 [Copy parameters](copy-parameters.md) -*コンパイラコマンド* \ No newline at end of file +*コンパイラコマンド* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 259 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md index 3df2c46ee5047e..245272308ac3ae 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Count screensコマンドは、マシンに接続されている画面モニターの数を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs [SCREEN COORDINATES](screen-coordinates.md) [SCREEN DEPTH](screen-depth.md) [Screen height](screen-height.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 437 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md index d5cfd7f1ed6ae7..55296b07eee459 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md @@ -28,4 +28,13 @@ displayed_sidebar: docs [Count user processes](count-user-processes.md) [Count users](count-users.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 335 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md index a5a021dd56634f..14d91ebac90498 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md @@ -23,4 +23,13 @@ Count user processesは、ユーザが直接あるいは間接に開いたプロ #### 参照 [Count tasks](count-tasks.md) -[Count users](count-users.md) \ No newline at end of file +[Count users](count-users.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 343 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md index faae8a0fd9bc86..97b753eef306b1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md @@ -22,4 +22,13 @@ displayed_sidebar: docs #### 参照 [Count tasks](count-tasks.md) -[Count user processes](count-user-processes.md) \ No newline at end of file +[Count user processes](count-user-processes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 342 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md index 0d7d51ab0c2c3e..d3e848708d783a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md @@ -66,4 +66,14 @@ displayed_sidebar: docs #### 参照 -[RESOLVE ALIAS](resolve-alias.md) \ No newline at end of file +[RESOLVE ALIAS](resolve-alias.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 694 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md index f00181650da623..49af4ae2db2596 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[OPEN DATA FILE](open-data-file.md) \ No newline at end of file +[OPEN DATA FILE](open-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 313 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md index f8ba54fee1be2b..94a1117858edcc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Create deployment license** コマンドは、*mergedApp* 引数で指定したビルドされたアプリのライセンスフォルダ内に、埋め込みライセンスファイルを作成します。 *mergedApp* 引数で指定した組み込みアプリ内にライセンスフォルダが存在しない場合、フォルダはコマンドによって作成されます。 @@ -58,4 +55,13 @@ displayed_sidebar: docs #### 参照 - \ No newline at end of file + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1811 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md index b3ced3fd16ba89..f5255f16fb926b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**Create document**コマンドは新しいドキュメントを作成し、ドキュメント参照番号を返します。 - -*document*には新しいドキュメントの名前、または完全なパス名を渡します。*document*が既にディスクに存在する場合、それは上書きされます。しかし*document* がロックされていたり既に開いている場合は、エラーが生成されます。 +**Create document**コマンドは新しいドキュメントを作成し、ドキュメント参照番号を返します。がロックされていたり既に開いている場合は、エラーが生成されます。 *document*に空の文字列を渡すと、別名で保存ダイアログボックスが表示され、作成したいドキュメントの名前を入力できます。ダイアログをキャンセルした場合ドキュメントは作成されません。**Create document**はヌルDocRefを返し、OK変数に0を代入します。 @@ -70,4 +68,14 @@ Windowsでは、Windowsのファイル拡張子を渡すか、*\_o\_MAP FILE TYP #### 参照 [Append document](append-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 266 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md index ba33754c227f8d..83b8c47834369a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md @@ -27,4 +27,13 @@ displayed_sidebar: docs #### 参照 [CLEAR SET](clear-set.md) -[CREATE SET](create-set.md) \ No newline at end of file +[CREATE SET](create-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 140 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md index 296832d2d3f36d..6f765069799942 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md @@ -70,4 +70,14 @@ displayed_sidebar: docs #### 参照 [FOLDER LIST](folder-list.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 475 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md index 95a80f268d12c1..7153caca4fa50a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md @@ -86,4 +86,13 @@ displayed_sidebar: docs [DELETE INDEX](delete-index.md) [RESUME INDEXES](resume-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 966 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md index 23ecc1f661ffd4..88327400f0b99e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Create menu コマンドはメモリに新しいメニューを作成するために使用します。このメニューはメモリ上にのみ存在し、デザインモードの メニューバーには追加されません。セッション中にこのメニューに対して行われた更新は、データベースのすべてのプロセスの、このメニューすべてのインスタ ンスに即座に反映されます。 @@ -42,4 +39,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 408 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md index 254ff8c38b2993..84e3fe0fe7afb4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md @@ -45,4 +45,14 @@ displayed_sidebar: docs [ADD RECORD](add-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 68 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md index 96100c44fdacf8..2a26e73aff539e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 65 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md index 92bac2d1c57f7b..216b495ca83daf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md @@ -47,4 +47,15 @@ displayed_sidebar: docs [CREATE SET FROM ARRAY](create-set-from-array.md) [LONGINT ARRAY FROM SELECTION](longint-array-from-selection.md) [SELECTION TO ARRAY](selection-to-array.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 640 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md index c9b67451f785ae..df0dab5826d59d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md @@ -37,4 +37,14 @@ displayed_sidebar: docs #### 参照 [BOOLEAN ARRAY FROM SET](boolean-array-from-set.md) -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 641 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md index 6e3293d2867c99..86acd20156fb2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md @@ -31,4 +31,13 @@ displayed_sidebar: docs #### 参照 [CLEAR SET](clear-set.md) -[CREATE EMPTY SET](create-empty-set.md) \ No newline at end of file +[CREATE EMPTY SET](create-empty-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 116 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md index e81e9fbb54d691..4d1bb78b74f490 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md @@ -53,3 +53,13 @@ displayed_sidebar: docs **注:** Scaled to fit proportional および Scaled to fit prop centeredを使用すると、空いたスペースが白く表示されます。しかし、これらのモードが4Dフォームのピクチャフィールドまたはピクチャ変数に適用されると、この空きスペースは透明になります。 *depth* 引数は無視され、省略されなければなりません。コマンドは常に現在のスクリーン深度 (色数) を使用します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 679 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md index 5859fd02fd616a..07ac12423d1c6a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md @@ -72,3 +72,13 @@ Windows セッションのログインに基づいてクライアントにアク * Active Driectory の情報を 4D のユーザーとグループ名に複製して自動的にマッピング * 戻り値をカスタムの \[user\] テーブルと照合 * LDAP を使ってユーザー情報を取得 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1355 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md index 4f87ffe31a3cc0..5804a470cc840e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Current date コマンドは、システムクロックに保持された日付を現在の日付として返します。 - -**4D Server:** リモートモードの4Dでこの関数を実行する際にアスタリスク (\*) 引数を渡すと、サーバの現在の日付が返されます。 +Current date コマンドは、システムクロックに保持された日付を現在の日付として返します。リモートモードの4Dでこの関数を実行する際にアスタリスク (\*) 引数を渡すと、サーバの現在の日付が返されます。 #### 例題 1 @@ -97,4 +95,13 @@ displayed_sidebar: docs [Day of](day-of.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 33 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md index 5a534a84f9a90d..863f4671eeaf97 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md @@ -29,4 +29,13 @@ displayed_sidebar: docs [DEFAULT TABLE](default-table.md) [Table](table.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 363 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md index c4852038e71ec4..3ee2f204c200d9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Current form name**コマンドは、プロセスのために定義されたカレントのフォームの名前を返します。カレントフォームはプロジェクトフォームでもテーブルフォームでも可能です。 @@ -59,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1298 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md index df6e067394e10f..80b1ce6c302f21 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Current form tableコマンドは、カレントプロセスで表示または印刷されているフォームが属するテーブルのポインタを返します。 @@ -64,4 +61,13 @@ displayed_sidebar: docs [DIALOG](dialog.md) [FORM SET INPUT](form-set-input.md) [FORM SET OUTPUT](form-set-output.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 627 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md index 4b22f2373bb237..8d37cfb275aaf0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Current form window コマンドはカレントフォームウィンドウの参照を返します。カレントフォームにウィンドウが設定されていない場合、コマンドは0を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs [Open form window](open-form-window.md) [Open window](open-window.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 827 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md index 0896c94c7522e1..34dcce9b579cec 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md @@ -29,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[Current system user](current-system-user.md) \ No newline at end of file +[Current system user](current-system-user.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 483 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md index 4fac1ac0ea5544..bbe24185650c99 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md @@ -37,3 +37,13 @@ displayed_sidebar: docs このコマンドを4Dフォーミュラ内で呼び出すことはできません。 **注:** コンパイルモードでこのコマンドを使用するには、このコマンドを**範囲チェック**が無効化されたコード内に含めてはなりません。(*範囲チェック* 参照) + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 684 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md index 08d7db108fd752..8326077d29a8d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md @@ -15,11 +15,18 @@ displayed_sidebar: docs #### 説明 -**Current method path**コマンドは実行中のデータベースメソッド、トリガー、プロジェクトメソッド、フォームメソッド、またはオブジェクトメソッドの内部的なパス名を返します。 - -**注:** 4Dマクロコマンドのコンテキストでは、**タグが実行中のメソッドのフルパス名で置き換えられます。 +**Current method path**コマンドは実行中のデータベースメソッド、トリガー、プロジェクトメソッド、フォームメソッド、またはオブジェクトメソッドの内部的なパス名を返します。4Dマクロコマンドのコンテキストでは、**タグが実行中のメソッドのフルパス名で置き換えられます。 #### 参照 [METHOD Get path](method-get-path.md) -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1201 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md index 7c87e0a043659b..61824be4dc2781 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md @@ -31,4 +31,13 @@ displayed_sidebar: docs [CALL WORKER](call-worker.md) [KILL WORKER](kill-worker.md) -*ワーカーについて* \ No newline at end of file +*ワーカーについて* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1392 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md index 47c8466ad4b000..77a6c79a44be46 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md @@ -25,4 +25,13 @@ displayed_sidebar: docs [Process number](process-number.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 322 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md index 30f61f36de5825..8a25e1e3ec3ced 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[Current machine](current-machine.md) \ No newline at end of file +[Current machine](current-machine.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 484 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md index c87428bd414c26..fed36b7a11daa5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md @@ -48,4 +48,13 @@ displayed_sidebar: docs [Milliseconds](milliseconds.md) [String](string.md) -[Tickcount](tickcount.md) \ No newline at end of file +[Tickcount](tickcount.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 178 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md index 33426a2f55efd7..22451184737e68 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Current user コマンドは、カレントユーザのエイリアス、またはユーザ名を返します。 - -*user* 引数が省略されていた場合、デフォルトで、セッション中に[SET USER ALIAS](set-user-alias.md) コマンドでユーザーに対してエイリアスが定義されていた場合には、コマンドはユーザーエイリアスを返します。そうでない場合、コマンドは4D ユーザーアカウント名を返します。 +Current user コマンドは、カレントユーザのエイリアス、またはユーザ名を返します。引数が省略されていた場合、デフォルトで、セッション中に[SET USER ALIAS](set-user-alias.md) コマンドでユーザーに対してエイリアスが定義されていた場合には、コマンドはユーザーエイリアスを返します。そうでない場合、コマンドは4D ユーザーアカウント名を返します。 任意の引数には、返される情報を指定する、以下の定数を渡すことができます: @@ -37,4 +35,13 @@ displayed_sidebar: docs [CHANGE CURRENT USER](change-current-user.md) [CHANGE PASSWORD](change-password.md) [SET USER ALIAS](set-user-alias.md) -[User in group](user-in-group.md) \ No newline at end of file +[User in group](user-in-group.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 182 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md index b099ccadf5bcbf..a9cdc7870599a4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md @@ -35,4 +35,14 @@ CUT NAMED SELECTIONは[COPY NAMED SELECTION](copy-named-selection.md "COPY NAMED [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 334 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md index 1f3c2eedbd3766..cf31c6c1166f2b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md @@ -67,4 +67,13 @@ displayed_sidebar: docs #### 参照 -[Encrypt data file](encrypt-data-file.md) \ No newline at end of file +[Encrypt data file](encrypt-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1609 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md index 04e1b58859d18d..1ed2038d40487d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md @@ -31,4 +31,13 @@ Macintosh上 #### 参照 [Application file](application-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 490 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md index d45fa92c9f4443..7bad7a4981b40c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md @@ -328,3 +328,13 @@ displayed_sidebar: docs  OB SET($oParams;"historyLength";2*60)  $measures:=Database measures($oParams) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1314 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md index d299796e44c3fb..51a1fa87654586 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Date**コマンドは、*expression* を解釈し、日付を返します。 - -*expression* 引数は、ISO日付フォーマットかシステムレベルで設定される地域設定に従わなければなりません。 +**Date**コマンドは、*expression* を解釈し、日付を返します。引数は、ISO日付フォーマットかシステムレベルで設定される地域設定に従わなければなりません。 **ISO日付フォーマット** この文字列は"YYYY-MM-DDTHH:MM:SS"という書式で構成されます。例えば"2013-11-20T10:20:00"と表現され、地域設定と関わり無く、Dateコマンドは引数として渡された*expression* を正しく評価します。ピリオドのあとの小数以下の秒はサポートされています(例:"2013-11-20T10:20:00.9854") @@ -94,4 +92,13 @@ displayed_sidebar: docs #### 参照 [Bool](bool.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 102 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md index d06b8ded9f117f..08586577dc3e8b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Day number コマンドは、*aDate*に対応するの曜日を数値で返します。 - -**Note:** Day number は日付がヌルの時、*2* を返します。 +Day number コマンドは、*aDate*に対応するの曜日を数値で返します。Day number は日付がヌルの時、*2* を返します。 4Dは "" テーマで以下の定義済み定数を提供します: @@ -60,4 +58,13 @@ displayed_sidebar: docs #### 参照 -[Day of](day-of.md) \ No newline at end of file +[Day of](day-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 114 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md index 662bb7ea1ad144..461b71d0da7664 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Day of コマンドは、*date*から日を返します。 - -**Note:** Day of は1から31までの値を返します。日付から曜日を取得するには、[Day number](day-number.md "Day number")コマンドを使用します。 +Day of コマンドは、*date*から日を返します。Day of は1から31までの値を返します。日付から曜日を取得するには、[Day number](day-number.md "Day number")コマンドを使用します。 #### 例題 1 @@ -37,4 +35,13 @@ displayed_sidebar: docs [Day number](day-number.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 23 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md index ffbb8ce0e65876..0a13d7d9514c12 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Deactivated**コマンドはプロセスの最前面のウインドウが後ろに移動すると、そのフォームメソッドでTrue を返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [Activated](activated.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 347 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md index 4860478207daff..44a2f9578cd3f8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md @@ -29,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[Int](int.md) \ No newline at end of file +[Int](int.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 9 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md index 37153b35ab4d7b..9aef0cc82b2f63 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md @@ -33,4 +33,13 @@ DECRYPT BLOBコマンドは、(意図的かどうかに関わらず)BLOB内 #### 参照 [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 690 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md index 37fca392da3666..70d434daca99ff 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md @@ -58,4 +58,13 @@ BLOB を復号化するのには、*keyObject* または *passPhrase* のいづ [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1774 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md index 232ecfe6d16bed..dc9b2ce004e4bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md @@ -73,4 +73,13 @@ displayed_sidebar: docs #### 参照 [Current default table](current-default-table.md) -[NO DEFAULT TABLE](no-default-table.md) \ No newline at end of file +[NO DEFAULT TABLE](no-default-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 46 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md index a7b8012b9b8b16..812584259f06a2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md @@ -37,4 +37,13 @@ displayed_sidebar: docs #### 参照 [HIDE PROCESS](hide-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 323 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md index 3d3e79d2611999..cfdd608d9d7676 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md @@ -49,4 +49,14 @@ displayed_sidebar: docs #### 参照 -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 159 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md index e43984277205a6..9dca478051e5dc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -DELETE FOLDER コマンドは*folder* に渡したフルパスまたは名前を持つフォルダーを削除します。 - -*deleteOption* パラメーターを省略した場合のデフォルトでは、安全のため **DELETE FOLDER** は空のフォルダーのみ削除します。空でないフォルダーを削除するには *deleteOption* を使います。*deleteOption* には "*System Documents*" テーマの次の定数を受け渡すことができます: +DELETE FOLDER コマンドは*folder* に渡したフルパスまたは名前を持つフォルダーを削除します。パラメーターを省略した場合のデフォルトでは、安全のため **DELETE FOLDER** は空のフォルダーのみ削除します。空でないフォルダーを削除するには *deleteOption* を使います。*deleteOption* には "*System Documents*" テーマの次の定数を受け渡すことができます: | 定数 | 型 | 値 | コメント | | -------------------- | ---- | - | ------------------ | @@ -41,4 +39,14 @@ displayed_sidebar: docs #### 参照 -[DELETE DOCUMENT](delete-document.md) \ No newline at end of file +[DELETE DOCUMENT](delete-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 693 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md index e6049e161bde6b..26d1e4bc777e2f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 228 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md index abe7144b8c14ba..f10a73c2c84856 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 560 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md index ec022f62f996fc..ca88deac10b79d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DELETE FROM LIST コマンドは、*list*に指定した参照番号またはオブジェクト名を持つリストから、*itemRef*引数で指定した項目を削除します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 [CLEAR LIST](clear-list.md) -[GET LIST ITEM](get-list-item.md) \ No newline at end of file +[GET LIST ITEM](get-list-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 624 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md index 341ba42e31c563..c1fba72fa8c8ef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md @@ -45,4 +45,13 @@ displayed_sidebar: docs [CREATE INDEX](create-index.md) [PAUSE INDEXES](pause-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 967 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md index 2d62b6e1025e1a..b28af36ef64508 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DELETE MENU ITEM コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニューから、*menuItem*引数にメニュー項目番号で指定したメニュー項目を削除します。*menuItem*に-1を渡すと、*menu*に最後に追加された項目を指定します。 @@ -34,4 +31,14 @@ displayed_sidebar: docs #### 参照 [APPEND MENU ITEM](append-menu-item.md) -[INSERT MENU ITEM](insert-menu-item.md) \ No newline at end of file +[INSERT MENU ITEM](insert-menu-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 413 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md index 94ffc10a286f9a..f6bc26068f5870 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md @@ -41,4 +41,14 @@ displayed_sidebar: docs #### 参照 [Locked](locked.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 58 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md index 6fa42d19cf983d..6d3e27a0ffe7a2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md @@ -64,4 +64,14 @@ displayed_sidebar: docs [MODIFY SELECTION](modify-selection.md) [TRUNCATE TABLE](truncate-table.md) *セット* -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 66 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md index 44bc22612f0742..cd1ebd0f5d9f69 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md @@ -43,4 +43,13 @@ Delete stringの使用例を次に示します。結果を変数*vtResult*に代 [Change string](change-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 232 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md index 54e187ec68fde1..0d943d5b45ea58 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DELETE USER コマンドは、引数 *userID* に渡したユニークなユーザID番号を持つユーザを削除します。 この場合、必ず[GET USER LIST](get-user-list.md "GET USER LIST") コマンドによって返された有効なユーザID番号を渡さなければなりません。 @@ -35,4 +32,14 @@ DesignerとAdministratorのみがユーザを削除できます。Administrator [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 615 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md index 76e268a63b415c..247f63e36897b5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md @@ -66,4 +66,13 @@ $vResultPath : #### 参照 [Last query path](last-query-path.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1044 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md index 13b8d792db62a7..eb2a0cf21f4bbf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **DIALOG**コマンドはユーザーに対して*form*に*formData*変数のデータ(オプション)を表示します。このコマンドは、変数を用いてユーザーから情報を取得したり、処理を実行する際のオプションなど情報をユーザーに表示するために、使用されます。 @@ -170,4 +167,14 @@ DIALOGの呼び出し後ダイアログが受け入れられればOKに1が、 [CALL FORM](call-form.md) [CANCEL](cancel.md) [Form](form.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 40 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md index 104edcc3746702..b3aeb5c90bbb6e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md @@ -54,4 +54,13 @@ displayed_sidebar: docs #### 参照 [INTERSECTION](intersection.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 122 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md index eef03375053b94..a60fcd55f462f0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DISABLE MENU ITEM コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目を選択不可にします。*menuItem*に-1を渡すと、*menu*に最後に追加された項目を指定します。 @@ -32,4 +29,14 @@ displayed_sidebar: docs #### 参照 -[ENABLE MENU ITEM](enable-menu-item.md) \ No newline at end of file +[ENABLE MENU ITEM](enable-menu-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 150 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md index a1cbaf760c51e6..c99de6621e644c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md @@ -48,4 +48,13 @@ displayed_sidebar: docs #### 参照 -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1639 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md index 9b299c877216bc..8150337a4945e6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DISPLAY NOTIFICATION コマンドは ユーザーへの通知メッセージを表示します。 @@ -42,4 +39,13 @@ Windows 環境下では、メッセージウィンドウは何らかの動作が #### 参照 -[ALERT](alert.md) \ No newline at end of file +[ALERT](alert.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 910 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md index 798e550bca46b8..986b225e4be1bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DISPLAY RECORDコマンドは、カレント入力フォームを使って、*aTable*のカレントレコードを表示します。レコードはイベントがウィンドウを更新するまでのみ表示されます。このイベントとは、[ADD RECORD](add-record.md "ADD RECORD")を実行する、または入力フォームへ戻る、メニューバーに戻ることです。DISPLAY RECORDは、カレントレコードが存在しない場合には何も行いません。 @@ -42,4 +39,13 @@ DISPLAY RECORDは、しばしばオリジナルの進捗メッセージを表示 #### 参照 -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 105 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md index d822bb9f3d9ae5..407a4987d86d46 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DISPLAY SELECTION は、出力フォームを使用して、*aTable*の カレントセレクションを表示します。レコードはデザインモードの一覧に類似のスクロール可能な一覧として表示されます。ユーザがレコー ドをダブルクリックすると、デフォルトでそのレコードはカレント入力フォーム上に表示されます。リストは最前面にあるウインドウに表示されます。 @@ -96,4 +93,14 @@ c. 以下のプロジェクトメソッドをメニューに関連付けます: [Form event code](form-event-code.md) [MODIFY SELECTION](modify-selection.md) -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 59 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md index b857f55b8c7cd6..445c3cc729fb59 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Displayed line number コマンドはOn Display Detailフォームイベントでのみ機能します。このコマンドはレコードリストまたはリストボックスで画面に行が表示される際、処理中の行の番号を返します。Displayed line numberがリストまたはリストボックス表示以外の場面で呼び出されると、0を返します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 [Form event code](form-event-code.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 897 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md index 58037483dac8f9..58bfb56252f3fb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**DISTINCT ATTRIBUTE PATHS** コマンドは、*objectField* に受け渡したインデックスがついているオブジェクトフィールドが所属するテーブルのカレントセレクションについて、同オブジェクトフィールドから検出される、重複しないパスのリストを返します。 - -*objectField* に受け渡すオブジェクトフィールドはインデックスされている必要があり、そうでない場合にはエラーが返されます。 +**DISTINCT ATTRIBUTE PATHS** コマンドは、*objectField* に受け渡したインデックスがついているオブジェクトフィールドが所属するテーブルのカレントセレクションについて、同オブジェクトフィールドから検出される、重複しないパスのリストを返します。に受け渡すオブジェクトフィールドはインデックスされている必要があり、そうでない場合にはエラーが返されます。 *pathArray* は実行後、セレクション内から検出された重複しないパスの数と同じ要素数を持ちます。ネストされた属性へのパスは標準のドット表記で取得されます (例: "company.address.number")。オブジェクトの属性名は文字の大小を区別することに留意が必要です。このコマンドはカレントセレクションやカレントレコードを変更しません。 @@ -66,4 +64,13 @@ displayed_sidebar: docs #### 参照 -[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) \ No newline at end of file +[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1395 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md index deb06880fec9bd..a5f6fa0f78a19e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md @@ -92,4 +92,13 @@ displayed_sidebar: docs #### 参照 -[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) \ No newline at end of file +[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1397 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md index 66b30bae9d1736..9dddae08cc6855 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md @@ -81,4 +81,13 @@ displayed_sidebar: docs [GET TEXT KEYWORDS](get-text-keywords.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 339 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md index 4d93fc6bcae203..150f803880a565 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**DOCUMENT LIST**コマンド は、*pathname*に渡すパス名にあるドキュメントの名前を要素とするテキスト配列*documents*を生成します。 - -**注:** 引数*pathname* は絶対パス名だけを受け入れます。 +**DOCUMENT LIST**コマンド は、*pathname*に渡すパス名にあるドキュメントの名前を要素とするテキスト配列*documents*を生成します。引数*pathname* は絶対パス名だけを受け入れます。 *options* 引数を省略した場合、デフォルトで *documents* 配列にドキュメント名のみが返されます。*options* 引数に*System Documents*テーマの以下の定数を渡すと、この動作を変更できます: @@ -114,4 +112,14 @@ displayed_sidebar: docs #### 参照 [FOLDER LIST](folder-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 474 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md index a44cdc35f2a237..2f010664602445 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md @@ -49,4 +49,14 @@ displayed_sidebar: docs #### 参照 [BLOB TO DOCUMENT](blob-to-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 525 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md index 04ef460e99e913..068716948ed06e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**Document to text**コマンドは、ディスク上のファイルの中身を、4Dのテキスト変数またはテキストフィールドへと直接取り出すことができます。 - -*fileName* 引数には、読みだしたいファイル名またはパス名を渡します。ファイルはディスク上に存在している必要があり、そうでない場合にはエラーが生成されます。渡せるものは以下の通りです: +**Document to text**コマンドは、ディスク上のファイルの中身を、4Dのテキスト変数またはテキストフィールドへと直接取り出すことができます。引数には、読みだしたいファイル名またはパス名を渡します。ファイルはディスク上に存在している必要があり、そうでない場合にはエラーが生成されます。渡せるものは以下の通りです: * ファイル名のみ。例えば "myFile.txt" など。この場合、ファイルはアプリケーションのストラクチャーファイルの隣にある必要があります。 * アプリケーションのストラクチャファイルからの相対パス。例えばWindowsでは "\\\\docs\\\\myFile.txt" またはmacOS では ":docs:myFile.txt" @@ -76,4 +74,13 @@ id    name    price    vat3    4D Tags    99    19.6 #### 参照 *System Documents* -[TEXT TO DOCUMENT](text-to-document.md) \ No newline at end of file +[TEXT TO DOCUMENT](text-to-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1236 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md index edea886508035f..84d8efc3462334 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md @@ -145,4 +145,13 @@ Result: #### 参照 [DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1080 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md index 5e0b87292175f7..364fe7186e63ac 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -DOM Append XML element コマンドは*targetElementRef* 引数に渡した参照を持つXML要素の子要素を新しいXML要素に追加します。 - -*sourceElementRef* 引数には追加する要素の参照を渡します。この要素はDOMツリー上に既に存在するXML要素の参照として渡さなければなりません。これは*targetElementRef* の子要中最後の既存の要素の後に追加されます。 +DOM Append XML element コマンドは*targetElementRef* 引数に渡した参照を持つXML要素の子要素を新しいXML要素に追加します。引数には追加する要素の参照を渡します。この要素はDOMツリー上に既に存在するXML要素の参照として渡さなければなりません。これは*targetElementRef* の子要中最後の既存の要素の後に追加されます。 #### 例題 @@ -27,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[DOM Insert XML element](dom-insert-xml-element.md) \ No newline at end of file +[DOM Insert XML element](dom-insert-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1082 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md index abd766ef772a73..e2826e1498c8cd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md @@ -26,4 +26,14 @@ displayed_sidebar: docs #### 参照 [DOM Parse XML source](dom-parse-xml-source.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 722 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md index 08e3b90fbf92fd..bff74a48d54545 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md @@ -51,4 +51,14 @@ displayed_sidebar: docs #### 参照 -[DOM Count XML elements](dom-count-xml-elements.md) \ No newline at end of file +[DOM Count XML elements](dom-count-xml-elements.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 727 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md index 73cb4688df8f30..ed31722b13cea2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -DOM Count XML elements コマンドは*elementRef* で参照されるXML要素中、要素名が*elementName*である子要素の数を返します。 - -**注:** デフォルトでは、**DOM Count XML elements** は*elementName* 引数については大文字と小文字を区別します(xml準拠のため)。コマンドの大文字と小文字の区別については、[XML SET OPTIONS](xml-set-options.md) コマンドのXML DOM case sensitivity セレクターを使用することで管理可能です。 +DOM Count XML elements コマンドは*elementRef* で参照されるXML要素中、要素名が*elementName*である子要素の数を返します。デフォルトでは、**DOM Count XML elements** は*elementName* 引数については大文字と小文字を区別します(xml準拠のため)。コマンドの大文字と小文字の区別については、[XML SET OPTIONS](xml-set-options.md) コマンドのXML DOM case sensitivity セレクターを使用することで管理可能です。 #### システム変数およびセット @@ -28,4 +26,14 @@ displayed_sidebar: docs #### 参照 [DOM Get XML element](dom-get-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 726 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md index a5eb0d3f62c82f..f0fd49a96db597 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md @@ -60,4 +60,13 @@ displayed_sidebar: docs #### 参照 -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1097 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md index d9b9bd1d240703..70e8552a02ae0b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md @@ -19,9 +19,7 @@ displayed_sidebar: docs #### 説明 -**DOM Create XML element** コマンドは、*elementRef* で参照されるXML中の*xPath* 引数で指定された位置に新しい要素を作成し、また必要であれば属性を追加します。 - -*elementRef* にはルートの要素参照 (例えば[DOM Create XML Ref](dom-create-xml-ref.md) コマンドで作成された) を渡します。 +**DOM Create XML element** コマンドは、*elementRef* で参照されるXML中の*xPath* 引数で指定された位置に新しい要素を作成し、また必要であれば属性を追加します。にはルートの要素参照 (例えば[DOM Create XML Ref](dom-create-xml-ref.md) コマンドで作成された) を渡します。 *xPath* 引数には、XPath 記法を使用して表現された、作成するパスを渡します(詳細な情報については、*XPath記法のサポート (DOM)*の章を参照してください)。以下のパス式がサポートされます: @@ -159,4 +157,14 @@ $aAttrName1:="Font" [DOM Create XML element arrays](dom-create-xml-element-arrays.md) [DOM Get XML element](dom-get-xml-element.md) -[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) \ No newline at end of file +[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 865 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md index f24e1411015fd9..78161d11cef3ea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md @@ -19,9 +19,7 @@ displayed_sidebar: docs #### 説明 -DOM Create XML Ref コマンドは空のXMLツリーをメモリに作成し、その参照を返します。 - -*root* 引数にはXMLツリーのルート要素名を渡します。 +DOM Create XML Ref コマンドは空のXMLツリーをメモリに作成し、その参照を返します。引数にはXMLツリーのルート要素名を渡します。 オプションの*nameSpace* 引数にはツリーの名前空間値の定義を渡します (例えば“http://www.4d.com”)。 *root*引数に名前空間名とコロン、そしてルート要素名を結合した文字列を渡せることができます (例えば“MyNameSpace:MyRoot”)。この場合、名前空間を指定する*nameSpace*引数は必須となります。 @@ -96,4 +94,14 @@ NSName2="http://www.4D.com/Mkt/namespace"/> #### 参照 [DOM CLOSE XML](dom-close-xml.md) -[DOM SET XML DECLARATION](dom-set-xml-declaration.md) \ No newline at end of file +[DOM SET XML DECLARATION](dom-set-xml-declaration.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 861 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md index 0971016931d79b..ab2062842a557c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -DOM EXPORT TO FILE コマンドは、XMLツリーをディスク上のファイルに格納します。 - -*elementRef* 引数には書き出すXMLのルート要素参照を渡します。 +DOM EXPORT TO FILE コマンドは、XMLツリーをディスク上のファイルに格納します。引数には書き出すXMLのルート要素参照を渡します。 *filePath*には使用する、または作成するファイルのフルパスを渡します。ファイルが存在しない場合は作成されます。 @@ -57,4 +55,14 @@ XMLにおいて、改行はそれがXML要素の内側あるいは間いずれ #### 参照 [DOM EXPORT TO VAR](dom-export-to-var.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 862 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md index 560274f4ad43af..09501ca9479587 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md @@ -50,4 +50,14 @@ XMLにおいて、改行はそれがXML要素の内側あるいは間いずれ #### 参照 [DOM EXPORT TO FILE](dom-export-to-file.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 863 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md index 380a21a0bdbb3d..7d786906fe1bd1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md @@ -27,4 +27,14 @@ displayed_sidebar: docs #### 参照 -[DOM Find XML element](dom-find-xml-element.md) \ No newline at end of file +[DOM Find XML element](dom-find-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1010 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md index 7a593836a7fcf6..c268e18dcacd2d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md @@ -116,4 +116,14 @@ displayed_sidebar: docs #### 参照 [DOM Count XML elements](dom-count-xml-elements.md) -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 864 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md index d9bb8461ec1af5..8f4a28b5d53542 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md @@ -57,4 +57,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 723 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md index 5bac99c418fcda..4fe020e71648ae 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md @@ -42,4 +42,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 925 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md index e6eedbe20e973e..a80eae85f9911e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md @@ -59,4 +59,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 724 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md index 09c648217d61ae..336738979e905c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md @@ -33,4 +33,14 @@ documentノードにこのコマンドを適用すると、コマンドはヌル [DOM Get first child XML element](dom-get-first-child-xml-element.md) [DOM Get last child XML element](dom-get-last-child-xml-element.md) -[DOM Get Root XML element](dom-get-root-xml-element.md) \ No newline at end of file +[DOM Get Root XML element](dom-get-root-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 923 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md index faabfd5ebdde5c..f709ac61511657 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md @@ -33,4 +33,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 924 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md index f3d8268fdb7a0f..beb7ec8f2c26ca 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get parent XML element](dom-get-parent-xml-element.md) \ No newline at end of file +[DOM Get parent XML element](dom-get-parent-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1053 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md index ee23b63099bf50..be7ef469dd2189 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**DOM GET XML ATTRIBUTE BY INDEX** コマンドは、属性のインデックスを使用して、属性名と値を取得するために使用します。 - -*elementRef* にはXML要素参照を、*attribIndex*には名前を知りたい要素のインデックス番号を渡します。名前が*attribName* 引数に、値が*attribValue* 引数に返されます。4Dは取得した値を引数として渡した変数と同じ型に変換します。変数の型が定義されていない場合、値はデフォルトでテキスト型で返されます。 +**DOM GET XML ATTRIBUTE BY INDEX** コマンドは、属性のインデックスを使用して、属性名と値を取得するために使用します。にはXML要素参照を、*attribIndex*には名前を知りたい要素のインデックス番号を渡します。名前が*attribName* 引数に、値が*attribValue* 引数に返されます。4Dは取得した値を引数として渡した変数と同じ型に変換します。変数の型が定義されていない場合、値はデフォルトでテキスト型で返されます。 **Note:** 配列のインデックス番号はXMLファイル中に表示される属性の順番通りではありません。XML中、属性のインデックスはnameのアルファベット順に並びかえられた属性の位置を示します。この点については[DOM Count XML attributes](dom-count-xml-attributes.md) コマンドの説明を参照してください。 @@ -37,4 +35,14 @@ displayed_sidebar: docs #### 参照 [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 729 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md index 7687c11abfd284..c49bb3c01deb3c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -DOM GET XML ATTRIBUTE BY NAME コマンドを使用して、属性名に対応する属性値を取得できます。 - -*elementRef* に要素参照を、*attribName*には属性値を取得したい属性の名前を渡します。値は*attribValue* 引数に返されます。4Dは取得した値を渡した変数と同じ型に変換します。変数の型が定義されていない場合、値はデフォルトでテキスト型で返されます。 +DOM GET XML ATTRIBUTE BY NAME コマンドを使用して、属性名に対応する属性値を取得できます。に要素参照を、*attribName*には属性値を取得したい属性の名前を渡します。値は*attribValue* 引数に返されます。4Dは取得した値を渡した変数と同じ型に変換します。変数の型が定義されていない場合、値はデフォルトでテキスト型で返されます。 *attribName* 属性がXML要素中に存在しない場合、エラーが返されます。複数の同じ名前を持つ属性がXML要素中に存在する場合、最初の属性のみが返されます。 @@ -48,4 +46,14 @@ displayed_sidebar: docs #### 参照 [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 728 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md index 798af3fb744814..7355a2847f4222 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md @@ -61,4 +61,13 @@ $typeArrと$textArr配列には以下の値が含まれます: #### 参照 [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1081 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md index 44b7d7efe6a1c8..2656c147116cfc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md @@ -52,4 +52,13 @@ displayed_sidebar: docs #### 参照 [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) \ No newline at end of file +[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1088 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md index d4bde3d1206895..3eaa68e031db96 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -DOM GET XML ELEMENT NAME コマンドは、*elementRef* で指定したXML要素の名前を*elementName* 引数に返します。*elementName* 引数の型が定義されてない場合、デフォルトでテキスト型が使用されます。 +DOM GET XML ELEMENT NAME コマンドは、*elementRef* で指定したXML要素の名前を*elementName* 引数に返します。引数の型が定義されてない場合、デフォルトでテキスト型が使用されます。 XML要素名に関する詳細は*XML DOMコマンドの概要* の節を参照してください。 @@ -39,4 +39,14 @@ XML要素名に関する詳細は*XML DOMコマンドの概要* の節を参照 [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) \ No newline at end of file +[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 730 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md index cafc4e238c69cf..d66347b94c9b09 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md @@ -42,4 +42,14 @@ displayed_sidebar: docs [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) -[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) \ No newline at end of file +[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 731 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md index 53993f91fe4776..fcd5653230d570 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md @@ -32,4 +32,14 @@ displayed_sidebar: docs #### 参照 [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 725 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md index e5596bcf72a409..3d5592de0f9f44 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[XML GET ERROR](xml-get-error.md) \ No newline at end of file +[XML GET ERROR](xml-get-error.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 721 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md index 3a19e2fb95903a..56a599a5a2cd6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md @@ -73,4 +73,13 @@ displayed_sidebar: docs #### 参照 -[DOM Append XML element](dom-append-xml-element.md) \ No newline at end of file +[DOM Append XML element](dom-append-xml-element.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1083 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md index 04e02e4b7a55bb..3598ece6b54c6a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md @@ -93,4 +93,14 @@ DTDやXSDが存在しなかったりURLが正しくない場合など検証が #### 参照 [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 719 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md index 2343bba9f80e39..c70ce6bcf29e3f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md @@ -83,4 +83,14 @@ DTDやXSDが存在しなかったり、URLが正しくない場合など検証 #### 参照 [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML source](dom-parse-xml-source.md) \ No newline at end of file +[DOM Parse XML source](dom-parse-xml-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 720 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md index d3ae48ccf2fdbd..6ff3b270c131fc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md @@ -43,4 +43,14 @@ displayed_sidebar: docs [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) -[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) \ No newline at end of file +[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1084 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md index 6d89bcfa82fd3a..3c46fa530bd3ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md @@ -25,4 +25,14 @@ displayed_sidebar: docs #### 参照 [DOM Create XML element](dom-create-xml-element.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 869 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md index f74719a3a6b204..ffff92b130c1a4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md @@ -65,4 +65,14 @@ displayed_sidebar: docs [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 866 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md index 8cf90dd15c95b3..7d60a63702663a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md @@ -36,4 +36,13 @@ displayed_sidebar: docs #### 参照 [DOM Create XML Ref](dom-create-xml-ref.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 859 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md index f68a0bf3f61ac5..4dcefb496c3097 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md @@ -57,4 +57,14 @@ displayed_sidebar: docs #### 参照 -[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) \ No newline at end of file +[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 867 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md index 69a274aa3040d6..f2fef8e07e4ba5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md @@ -115,4 +115,14 @@ XML処理のルールに準拠するため、行末文字シークエンス(CR #### 参照 [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 868 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md index e56f9c1b014cd9..52488832fb7710 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 DRAG WINDOW コマンドは、ユーザがマウスのクリックと移動を行うと、ウィンドウをドラッグします。通常このコマンドは (非表示ボタンなど) マウスクリックに瞬時に反応するオブジェクトのオブジェクトメソッドから呼び出します。 @@ -48,4 +45,13 @@ displayed_sidebar: docs #### 参照 [GET WINDOW RECT](get-window-rect.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 452 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md index 84d14ac78b4273..9e265084a92464 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Drop position**コマンドは、 “複合” オブジェクトに対して行われたドロップのドロップ位置を知るために使用します。 @@ -94,4 +91,13 @@ displayed_sidebar: docs #### 参照 -*ドラッグ&ドロップ* \ No newline at end of file +*ドラッグ&ドロップ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 608 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md index b2de9db518ecbe..54315099139090 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**DROP REMOTE USER** コマンドは4D Server にリモートで接続している特定のユーザーの接続を解除します。 - -*userSession* 引数には、サーバーから接続を解除したいユーザーのセッションID を渡します。セッションID は、[Process activity](../commands/process-activity.md) コマンドを使用することで取得できます。 +**DROP REMOTE USER** コマンドは4D Server にリモートで接続している特定のユーザーの接続を解除します。引数には、サーバーから接続を解除したいユーザーのセッションID を渡します。セッションID は、[Process activity](../commands/process-activity.md) コマンドを使用することで取得できます。 **注:** このコマンドは非同期に実行され、また4D Server でしか実行することができません。このコマンドを呼び出しているメソッドがリモートクライアントでローカルに実行されるか、あるいはシングルユーザー版4D で実行された場合、**DROP REMOTE USER** は何もしません。 @@ -40,4 +38,13 @@ displayed_sidebar: docs #### 参照 [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) \ No newline at end of file +[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1633 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md index 96bdaf7d280ce9..0bc71c78f5dea3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md @@ -23,4 +23,14 @@ DUPLICATE RECORDはデータ入力中にも実行可能です。これにより #### 参照 -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 225 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md index 5d26a699dff057..63974fe7c98d62 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Dynamic pop up menu**はマウスの現在位置またはオプションの*xCoord* と *yCoord*引数で指定した位置に階層ポップアップメニューを表示します。 @@ -93,4 +90,13 @@ displayed_sidebar: docs [Get selected menu item parameter](get-selected-menu-item-parameter.md) [Pop up menu](pop-up-menu.md) [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1006 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md index fe3c6576b55b2f..bcef5d19258b88 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 EDIT ACCESS コマンドを使用して、ユーザにパスワードシステムの編集環境を提供します。このコマンドが実行されると、ユーザとユーザグループページのみから成るツールボックスウィンドウが表示されます。 @@ -36,4 +33,14 @@ DesignerとAdministratorは新規ユーザの追加、およびグループへ #### 参照 [CHANGE CURRENT USER](change-current-user.md) -[CHANGE PASSWORD](change-password.md) \ No newline at end of file +[CHANGE PASSWORD](change-password.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 281 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md index de6546fc963574..c22f363fc6102a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **EDIT FORMULA**コマンドを使用してフォーミュラーエディターを開き、ユーザーはフォーミュラーを作成したり変更したりできます。次の項目をデフォルトとして表示することができます。 @@ -55,4 +52,14 @@ displayed_sidebar: docs [APPLY TO SELECTION](apply-to-selection.md) [EXECUTE FORMULA](execute-formula.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 806 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md index 97bb0a4f395631..1bc54f3356dc90 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **EDIT ITEM** コマンドは*object* 引数で指定された項目、または指定された配列やリスト中*item* で指定された項目を編集状態にします。 @@ -74,4 +71,13 @@ displayed_sidebar: docs [GOTO OBJECT](goto-object.md) [INSERT IN LIST](insert-in-list.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 870 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md index 7bcbbcf7a19ac6..fa076f17b0e8b0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ENABLE MENU ITEM コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目を選択可にします。*menuItem*に-1を渡すと、*menu*に最後に追加された項目を指定します。 @@ -32,4 +29,14 @@ displayed_sidebar: docs #### 参照 -[DISABLE MENU ITEM](disable-menu-item.md) \ No newline at end of file +[DISABLE MENU ITEM](disable-menu-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 149 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md index 0d12c62fade88b..bac22ed090c33e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md @@ -179,4 +179,13 @@ displayed_sidebar: docs [DECRYPT BLOB](decrypt-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 689 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md index e75de5855dfd28..e8bbda88751b62 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md @@ -58,4 +58,13 @@ BLOB を暗号化するのには、*keyObject* または *passPhrase* のいづ [Decrypt data BLOB](decrypt-data-blob.md) [ENCRYPT BLOB](encrypt-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1773 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md index 3ddc5ba694f1eb..1dcce1b4a24232 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Encrypt data file** コマンドはを使用数と、*structurePath* 引数で指定されたストラクチャーに割り当てられている、*dataPath* 引数で指定されたデータファイルを暗号化または再暗号化することができます。またこれを使用してデータベースから暗号化を取り除くこともできます。このコマンドは元のファイルに対する編集は行わず、元のデータファイルのバックアップを取るために作成された完全なパス名を返します。 @@ -134,4 +131,13 @@ displayed_sidebar: docs [Data file encryption status](data-file-encryption-status.md) [Decrypt data BLOB](decrypt-data-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1610 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md index 5f8cf720bee82f..74b20b43568e99 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md @@ -60,4 +60,13 @@ displayed_sidebar: docs [Form event code](form-event-code.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 36 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md index 36f3c4ddb894a1..657ada2c77980e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### 参照 -[Begin SQL](begin-sql.md) \ No newline at end of file +[Begin SQL](begin-sql.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 949 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md index 5d181f099c0695..bc9de43f81934c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**Equal pictures**コマンドは2つのピクチャーの寸法と内容を厳密に比較します。 - -*picture1* には元のピクチャーを、*picture2* には比較したいピクチャーを渡します。 +**Equal pictures**コマンドは2つのピクチャーの寸法と内容を厳密に比較します。には元のピクチャーを、*picture2* には比較したいピクチャーを渡します。 * ピクチャーの寸法が異なる場合、コマンドは**False**を返し、*mask* 引数には空のピクチャーが返されます。 * ピクチャーの寸法が同じで内容が異なる場合、コマンドは**False**を返し、*mask* 引数には2つのピクチャーを比較したピクチャーマスクの結果が返されます。この比較はピクセルごとに行われ、黒の背景上に、一致しないピクセルが白で表されます。 @@ -41,3 +39,14 @@ displayed_sidebar: docs ```4d  $equal :=Equal pictures($pict1;$pict2;$mask) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1196 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md index d25289d21f5c54..ea846c09c41b6a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ERASE WINDOW コマンドは*window*で指定されたウィンドウの内容をクリアします。 @@ -29,4 +26,13 @@ ERASE WINDOWはウィンドウの内容をクリアします。スクリーン #### 参照 [GOTO XY](goto-xy.md) -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 160 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md index e9d152f20f088a..acad4782963182 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md @@ -80,3 +80,13 @@ displayed_sidebar: docs   //イタリアリラに変換  $InLires:=Euro converter($value;French Franc;Italian Lire) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 676 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md index 03e923ce787555..4474d49bc13032 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md @@ -61,4 +61,13 @@ displayed_sidebar: docs [Command name](command-name.md) [EDIT FORMULA](edit-formula.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 63 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md index 83802bd0565fc2..8d76f32f181dea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **EXECUTE METHOD IN SUBFORM** コマンドを使用して サブフォームオブジェクト*subformObject* のコンテキストにおいて*formula* 引数で指定したコードを実行できます。 @@ -75,3 +72,14 @@ displayed_sidebar: docs #### システム変数およびセット コマンドが正しく実行されるとシステム変数OKに1が設定され、そうでなければ0が設定されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1085 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md index 38216f31ecfbb4..4fb7e9b49d699a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md @@ -31,4 +31,14 @@ displayed_sidebar: docs #### 参照 -[EXECUTE FORMULA](execute-formula.md) \ No newline at end of file +[EXECUTE FORMULA](execute-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1007 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md index e2a384d59164a2..c4cd1b2c77d160 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 EXECUTE ON CLIENT コマンドは、*clientName*という名前で登録されている4D Clientで、必要であれば*param1... paramN*を引数とし、*methodName*メソッドを実行します。4D Clientの登録名は[REGISTER CLIENT](register-client.md "REGISTER CLIENT") コマンドで定義します。 @@ -63,4 +60,14 @@ OKシステム変数は、4D Serverがメソッドの実行要求を正しく受 [Execute on server](execute-on-server.md) [GET REGISTERED CLIENTS](get-registered-clients.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 651 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md index 1bc36cb4b09598..889dd4e70454e1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Execute on server コマンドはサーバマシン上 (クライアント/サーバで実行された場合) 、または同じマシン上 (シングルユーザで実行された場合) で新しいプロセスを開始し、そのプロセスのプロセス番号を返します。 @@ -191,4 +188,13 @@ WriteLog メソッドはサーバー側で実行されます。メソッドの #### 参照 [EXECUTE ON CLIENT](execute-on-client.md) -[New process](new-process.md) \ No newline at end of file +[New process](new-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 373 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md index 87d3ba407661ea..979be6927b56dd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md @@ -30,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[Log](log.md) \ No newline at end of file +[Log](log.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 21 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md index f04efac0d6055c..0e55763e83670c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md @@ -63,4 +63,14 @@ BLOBが正しく解凍されるとOK変数は1に、そうでなければ0に設 #### 参照 [BLOB PROPERTIES](blob-properties.md) -[COMPRESS BLOB](compress-blob.md) \ No newline at end of file +[COMPRESS BLOB](compress-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 535 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md index a74af2a2970ce7..26275b87873e4b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **EXPORT DATA**コマンドは、データを*fileName*ファイルに書き出します。4Dからは以下のフォーマットでデータの書き出しを行えます: テキスト、固定長テキスト、XML、SYLK、DIF、DBF(dBase)および4Dフォーマット @@ -99,4 +96,14 @@ displayed_sidebar: docs [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) -[IMPORT DATA](import-data.md) \ No newline at end of file +[IMPORT DATA](import-data.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 666 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md index e99b204686a9ff..857238aa35f74f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 EXPORT DIF コマンドは、カレントプロセスにおける*aTable*のカレントセレクションのレコードをディスクに書き出します。このデータは*document*に書き込まれます。*document*は、WindowsまたはMacintoshの標準的なDIF形式のドキュメントです。 @@ -51,4 +48,14 @@ EXPORT DIF を使用する際、デフォルトのフィールド区切り文字 [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 84 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md index 1202d580493562..af957531a50d7b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Export structure file** コマンドは、カレントの4D データベースストラクチャーを、*folderPath* 引数で指定したパスに、テキストベースのファイルやネイティブのピクチャーファイルなどのセットに分解し、書き出し、保存します。デフォルトでは、データベースストラクチャー全体(メソッド、フォーム、カタログ、等)が書き出されます。*options* 引数を使用することで書き出す中身をフィルターすることができます。 @@ -116,4 +113,13 @@ displayed_sidebar: docs #### 参照 -[FORM Convert to dynamic](form-convert-to-dynamic.md) \ No newline at end of file +[FORM Convert to dynamic](form-convert-to-dynamic.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1565 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md index 67d58daee65529..5170a6bfd4ecf9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md @@ -55,4 +55,13 @@ XML フォーマットで書き出されたストラクチャー定義は他の #### 参照 -[IMPORT STRUCTURE](import-structure.md) \ No newline at end of file +[IMPORT STRUCTURE](import-structure.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1311 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md index 611d077db26103..38eead8d541ae3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 EXPORT SYLK コマンドは、カレントプロセスにおける*aTable*のカレントセレクションのレコードをディスクに書き出します。このデータは*document*に書き込まれます。*document*は、WindowsまたはMacintoshの標準的なSYLK形式のドキュメントです。 @@ -51,4 +48,14 @@ EXPORT SYLKを使用する際、デフォルトのフィールド区切り文字 [EXPORT DIF](export-dif.md) [EXPORT TEXT](export-text.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 85 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md index 085057a6a22655..dfc1e34bd7c808 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 EXPORT TEXT コマンドは、カレントプロセスにおける*aTable*のカレントセレクションのレコードをディスクに書き出します。このデータは*document*に書き込まれます。*document*は、WindowsまたはMacintoshのテキストドキュメントです。 @@ -53,4 +50,14 @@ EXPORT TEXT を使用する際、デフォルトのフィールド区切り文 [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 167 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md index a0f92f9c54e0dc..70f266411291d8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 [Not](not.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 215 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md index 28ba6764ce29e1..f01aaca2b9cb8a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md @@ -48,4 +48,13 @@ displayed_sidebar: docs [Field](field.md) [Last field number](last-field-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 257 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md index d1f0812a1db0ee..be7cdf68499f66 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md @@ -58,4 +58,13 @@ displayed_sidebar: docs [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last field number](last-field-number.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 253 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md index 72c25e90dd82c9..2e03ebf1bbc332 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FILTER EVENT** コマンドは、[ON EVENT CALL](on-event-call.md) コマンドでインストールされたイベント処理プロジェクトメソッドから呼び出されます。 @@ -40,4 +37,14 @@ displayed_sidebar: docs #### 参照 -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 321 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md index c56ff48d9d0eda..91863cc7c45663 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FILTER KEYSTROKE は、ユーザがフィールドや入力可エリアに入力した文字を、*filteredChar* に渡した文字列の最初の文字で置き換えます。 @@ -251,4 +248,13 @@ Get highlighted text メソッド: [Form event code](form-event-code.md) [Get edited text](get-edited-text.md) [Is editing text](is-editing-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 389 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md index 4fc12c5fcf9517..b50bb9f5c80dba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md @@ -108,4 +108,13 @@ Find in array コマンドは、タイプがテキスト、数値、日付、ポ [DELETE FROM ARRAY](delete-from-array.md) [Find in sorted array](find-in-sorted-array.md) [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 230 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md index 8ea10030f57ac7..d013939a99bd1e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md @@ -62,3 +62,13 @@ displayed_sidebar: docs **備考:** 演算子 >= が示しているのは、全てのレコード番号を対象としていることです。本コマンドはレコード番号を返しますが、レコード番号の最小値は0なので、全てのレコード番号が対象となります。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 653 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md index 3f77fa26c11a90..d7528773bff87f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Find in list コマンドは、*value*に渡した文字列と同じ値を持つ項目を*list*リスト中で検索し、最初に見つけた項目の位置または項目参照番号を返します。複数の項目を見つけた場合、コマンドは *itemsArray* 配列にそれらの一または項目参照番号を返します。 @@ -64,3 +61,13 @@ displayed_sidebar: docs  $vlItemPos:=(hList;"Date";0;*)   //$vlItemPos は0 ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 952 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md index 8aa93477a37dc1..89dd35b2f55534 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md @@ -70,4 +70,13 @@ displayed_sidebar: docs [Count in array](count-in-array.md) [Find in array](find-in-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1333 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md index 48b3dd643bda36..de8f6594bd2f96 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Find window コマンドは、*left* と *top*に渡した座標のポイントにある最初のウィンドウの参照を返します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 [Frontmost window](frontmost-window.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 449 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md index 2fbd3de1b174e8..cad469df944c0f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md @@ -33,4 +33,14 @@ displayed_sidebar: docs [End selection](end-selection.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 50 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md index 1b24b8b9bed6c0..3c44384022a653 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md @@ -29,4 +29,13 @@ displayed_sidebar: docs #### 参照 [Get database parameter](get-database-parameter.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 297 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md index c2efcbbf526659..71345ac023c4cb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 互換性に関する注意 このコマンドは互換性の目的で保持されています。4D v12からは[OBJECT Get pointer](object-get-pointer.md "OBJECT Get pointer")コマンドの利用が推奨されます。 @@ -46,4 +43,13 @@ Focus object はカレントフォーム中でフォーカスを持つオブジ #### 参照 -[OBJECT Get pointer](object-get-pointer.md) \ No newline at end of file +[OBJECT Get pointer](object-get-pointer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 278 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md index a5ef706779b551..9c07c2c8cfd1f6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md @@ -16,13 +16,21 @@ displayed_sidebar: docs #### 説明 -FOLDER LIST コマンド は、*pathname*に渡すパス名にあるフォルダの名前を要素とするテキストまたは文字列配列*directories*を生成します。 - -**Note:** 引数*pathname* は完全なパス名だけを受け入れます。 +FOLDER LIST コマンド は、*pathname*に渡すパス名にあるフォルダの名前を要素とするテキストまたは文字列配列*directories*を生成します。引数*pathname* は完全なパス名だけを受け入れます。 指定した場所にフォルダがない場合、コマンドは空の配列を返します。*pathname*に渡すパス名が無効だと、FOLDER LISTはファイルマネジャエラーを生成します。このエラーは[ON ERR CALL](on-err-call.md "ON ERR CALL")メソッドを使用して検知することができます。 #### 参照 [DOCUMENT LIST](document-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 473 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md index 88e22c0d5f2d28..7979061eb3b59c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md @@ -47,4 +47,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1700 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md index 4f931ffcaf242a..9b13482fcc7098 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**FONT LIST**コマンドは、テキスト配列の*fonts*引数を作成し、システム上で使用可能なスケーラブルなフォントの名前を格納します。 - -*listType* 引数は取得したいフォントリストの型を指定します。指定するためには、 "*Font Type List*"テーマ内の以下の定数のいづれかを *listType* 引数に渡して下さい: +**FONT LIST**コマンドは、テキスト配列の*fonts*引数を作成し、システム上で使用可能なスケーラブルなフォントの名前を格納します。引数は取得したいフォントリストの型を指定します。指定するためには、 "*Font Type List*"テーマ内の以下の定数のいづれかを *listType* 引数に渡して下さい: | 定数 | 型 | 値 | コメント | | -------------- | ---- | - | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | @@ -72,4 +70,13 @@ Windows環境下では、この原理は4D v15 R4から採用されています *Font Type List* [OBJECT SET FONT](object-set-font.md) [SET RECENT FONTS](set-recent-fonts.md) -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 460 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md index 6c51c1296cb04e..3df40e17ff1cbb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md @@ -57,4 +57,13 @@ displayed_sidebar: docs #### 参照 -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1362 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md index a451578ffa4b8c..0a08df89e2502e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM Convert to dynamic** コマンドは、*formName* 引数で指定したフォーム(クラシックフォーム)をダイナミックフォームへと変換し、それをオブジェクト型で返します。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 [DIALOG](dialog.md) -[Export structure file](export-structure-file.md) \ No newline at end of file +[Export structure file](export-structure-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1570 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md index 238c89919811a9..8b579843c0fecd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM EDIT** コマンドは*aTable* 引数で指定したテーブルに関連づけられている、*form* 引数で指定したフォームを4D フォームエディターで開きます。このとき、デザイン環境へのアクセスが必要である点に注意してください。ない場合には、エラー -9804("フォームを開けません")エラーが生成されます。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 -*デザインオブジェクトアクセスコマンド* \ No newline at end of file +*デザインオブジェクトアクセスコマンド* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1749 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md index 826c6576d5ce03..5e0d3a77c6417a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 互換性に関する注意 **Form event code** は以前のバージョンの4D では**Form event** という名前でした。これはオブジェクト型を返す[FORM Event](form-event.md) コマンドが追加されたときに、分かりやすさのために名称が変更されました。 @@ -847,4 +844,13 @@ On Before Keystroke と On After Keystroke イベントを処理する方法は[ [Get edited text](get-edited-text.md) [Keystroke](keystroke.md) [POST OUTSIDE CALL](post-outside-call.md) -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 388 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md index 71c2fafc4b754c..a8bea560a43581 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md @@ -96,4 +96,13 @@ On Header Click イベントを使用してカラムをソートすることが #### 参照 -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1606 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md index b4413e29894324..c41145af90e21b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-first-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM FIRST PAGE コマンドは、現在表示されているフォームページを先頭のフォームページに変更します。フォームが表示されていない、または[FORM LOAD](form-load.md) コマンドによってロードされてない場合や、すでに最初のフォームページが表示されている場合、FORM FIRST PAGE コマンドは何も行いません。 @@ -33,4 +30,13 @@ displayed_sidebar: docs [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 250 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md index 615062f93acf4e..f9f1f540ce9eab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM Get color scheme** コマンドは、現在表示されているフォームの実際のカラースキームの名前を返します。カレントのフォームがない場合には、このコマンドは空の文字列を返します。 @@ -45,4 +42,13 @@ displayed_sidebar: docs #### 参照 [Get application color scheme](get-application-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1761 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md index 490938e2fc5afc..6bfc86fc32b397 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM Get current page**コマンドは、現在表示されているフォームページ、または[FORM LOAD](form-load.md) コマンドによってロードされたカレントフォームの番号を返します。 @@ -69,4 +66,13 @@ displayed_sidebar: docs [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 276 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md index 7ac1e69dcd0236..494b552cccc8a0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM GET ENTRY ORDER** コマンドは フォーム上のオブジェクトの名前を、その入力順に並べて *objectNames* に返します。 @@ -53,4 +50,13 @@ displayed_sidebar: docs #### 参照 -[FORM SET ENTRY ORDER](form-set-entry-order.md) \ No newline at end of file +[FORM SET ENTRY ORDER](form-set-entry-order.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1469 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md index 4dc300ace0dbe7..c5e01f226d04cd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM GET HORIZONTAL RESIZING コマンドはカレントフォームの水平サイズ変更プロパティを*resize*、*minWidth*、そして*maxWidth*変数に返します。これらのプロパティはデザインモードのフォームエディタ、またはカレントプロセス用に[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md "FORM SET HORIZONTAL RESIZING") コマンドで設定されます。 #### 参照 -[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) \ No newline at end of file +[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1077 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md index 44ccc1a452b038..00faf9f4126a93 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM GET NAMES**コマンドはアプリケーション中のフォーム名を*arrNames*配列に返します。 @@ -63,4 +60,13 @@ displayed_sidebar: docs #### 参照 [METHOD GET PATHS FORM](method-get-paths-form.md) -*フォーム* \ No newline at end of file +*フォーム* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1167 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md index 26c587cea0e8a5..3e0718027fd9a4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM GET OBJECTS コマンドは、カレントフォーム に存在する全オブジェクトのリストを配列形式で返します。このリストは、カレントフォームページのオブジェクトに限定することができ、また継承されたフォームのオブジェクトを除外することができます。このコマンドは、入力フォームおよび出力フォームの双方で使用することができます。 @@ -125,4 +122,13 @@ displayed_sidebar: docs [FORM GET PROPERTIES](form-get-properties.md) *Form Objects (Access)* -*オブジェクト(フォーム)* \ No newline at end of file +*オブジェクト(フォーム)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 898 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md index 7a856390153f38..eef9e399b2b861 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM GET PROPERTIES コマンドは*formName*フォームのプロパティを返します。 @@ -43,4 +40,13 @@ displayed_sidebar: docs [FORM GET OBJECTS](form-get-objects.md) [FORM SET SIZE](form-set-size.md) -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 674 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md index d7b3d8133f1dbe..4082b355d34f10 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM GET VERTICAL RESIZING コマンドは カレントフォームの垂直サイズ変更プロパティを*resize*、*minHeight*、そして*maxHeight*変数に返します。これらのプロパティはデザインモードのフォームエディタ、またはカレントプロセス用に[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md "FORM SET VERTICAL RESIZING") コマンドで設定されます。 #### 参照 -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1078 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md index 56175858c600e6..ff6b8f69fd1ef9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM GOTO PAGE**コマンドは、現在表示されているフォームページを*pageNumber*で指定したフォームページに変更します。 @@ -49,4 +46,13 @@ displayed_sidebar: docs [FORM Get current page](form-get-current-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 247 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md index 1169e9836417de..91e71a2099085e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-last-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM LAST PAGE コマンドは、現在表示されているフォームページを最終のフォームページに変更します。フォームが表示されていない、または[FORM LOAD](form-load.md) コマンドによってロードされてない場合や、すでに最終のフォームページが表示されている場合、FORM LAST PAGEコマンドは何も行いません。 @@ -33,4 +30,13 @@ displayed_sidebar: docs [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 251 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md index e3a342487372d1..41d5bb615ab8f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM LOAD**コマンドを使用してデータ印刷・コンテンツ解析のために *form* 引数で指定したフォームをカレントプロセスにおいて*formData* 引数のデータ(オプション)とともにメモリーにロードします。1つのプロセスにつきカレントフォームは1つしか指定できません。 @@ -170,4 +167,13 @@ displayed_sidebar: docs [FORM UNLOAD](form-unload.md) [LISTBOX GET OBJECTS](listbox-get-objects.md) [OBJECT Get type](object-get-type.md) -[Print object](print-object.md) \ No newline at end of file +[Print object](print-object.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1103 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md index 3899f1e5c8e29a..0b3dc04799856c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-next-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM NEXT PAGE コマンドは、現在表示されているフォームページから次のフォームページに移動します。フォームが表示されていない、または[FORM LOAD](form-load.md) コマンドによってロードされてない場合や、すでに最終のフォームページが表示されている場合、FORM NEXT PAGE コマンドは何も行いません。 @@ -33,4 +30,13 @@ displayed_sidebar: docs [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 248 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md index 7e1300849161c4..95be1be81744ec 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-previous-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM PREVIOUS PAGE コマンドは、現在表示されているフォームページから前のフォームページに移動します。フォームが表示されていない、または[FORM LOAD](form-load.md) コマンドによってロードされてない場合や、すでに先頭のフォームページが表示されている場合、FORM PREVIOUS PAGE コマンドは何も行いません。 @@ -33,4 +30,13 @@ displayed_sidebar: docs [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM NEXT PAGE](form-next-page.md) \ No newline at end of file +[FORM NEXT PAGE](form-next-page.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 249 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md index d8992a3a3f60f4..a543d762472e94 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM SCREENSHOT コマンドはフォームをピクチャーにして返します。このコマンドは2つのシンタックスを受け入れます。使用されるシンタックスに応じてフォームのピクチャー、またはフォームエディター内のフォームのピクチャーが返されます。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 940 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md index b4049ec956bd0a..4134f1177b659b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM SET ENTRY ORDER** コマンドは カレントプロセスのカレントフォームにおいて、*objectNames* に渡した配列に基づき入力順を動的に指定します。 @@ -55,4 +52,13 @@ displayed_sidebar: docs #### 参照 -[FORM GET ENTRY ORDER](form-get-entry-order.md) \ No newline at end of file +[FORM GET ENTRY ORDER](form-get-entry-order.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1468 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md index 3c6c460bc5c697..e5606892133dcb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM SET HORIZONTAL RESIZING コマンドを使用すると、プログラムからカレントフォームの水平リサイズプロパティを変更することができます。デフォルトとして、これらのプロパティはデザインモードのフォームエディタにおいて設定することができます。新しいプロパティはカレントプロセスに対して設定され、フォームと一緒に保存されません。 @@ -36,4 +33,13 @@ displayed_sidebar: docs [FORM GET HORIZONTAL RESIZING](form-get-horizontal-resizing.md) [FORM SET SIZE](form-set-size.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 892 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md index cfe626885355ba..ceaf31bf4ac6b1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM SET INPUT** コマンドは、*aTable*のカレント入力フォームを*form*または*userForm*に設定します。フォームは*aTable*に属していなければなりません。 @@ -108,4 +105,13 @@ displayed_sidebar: docs [MODIFY RECORD](modify-record.md) [MODIFY SELECTION](modify-selection.md) [Open window](open-window.md) -[QUERY BY EXAMPLE](query-by-example.md) \ No newline at end of file +[QUERY BY EXAMPLE](query-by-example.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 55 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md index 836064ee4692af..e99da7eceda313 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM SET OUTPUT** コマンドは、*form*または*userForm*を*aTable*のカレント出力フォームとして設定します。このフォームは*aTable*に属するものでなければなりません。 @@ -71,4 +68,13 @@ displayed_sidebar: docs [FORM SET INPUT](form-set-input.md) [MODIFY SELECTION](modify-selection.md) [PRINT LABEL](print-label.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 54 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md index f9cd117a22bab3..bfcc3cc6a8e574 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM SET SIZE** コマンドを使用すると、プログラムからカレントフォームのサイズを変更することができます。新しいサイズは、カレントプロセスに対して定義され、フォームには保存されません。 @@ -123,4 +120,13 @@ displayed_sidebar: docs #### 参照 [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 891 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md index 134b96cf4642ac..b765cfffd70d32 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 FORM SET VERTICAL RESIZINGコマンドを使用すると、プログラムからカレントフォームの垂直リサイズプロパティを変更することができます。デフォルトで、これらのプロパティはデザインモードのフォームエディタにおいて設定することができます。新しいプロパティはカレントプロセスに対して設定され、フォームと一緒に保存されません。 @@ -36,4 +33,13 @@ displayed_sidebar: docs [FORM GET VERTICAL RESIZING](form-get-vertical-resizing.md) [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET SIZE](form-set-size.md) \ No newline at end of file +[FORM SET SIZE](form-set-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 893 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md index 0b6d6ed8e3a9da..6158a2ca0fbceb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **FORM UNLOAD**コマンドは、[FORM LOAD](form-load.md)コマンドで指定したカレントのフォームをメモリーから解放します。. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### 参照 -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1299 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md index 9baa8bc105cd9e..d2a28af43d4594 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Form** コマンドは、 カレントフォームに関連付けられているオブジェクトがある場合にはそれを返します。4D は以下の場合においてはカレントフォームにオブジェクトを自動的に関連付けます: @@ -99,4 +96,13 @@ displayed_sidebar: docs #### 参照 -[DIALOG](dialog.md) \ No newline at end of file +[DIALOG](dialog.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1466 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md index 791f4d032dbf4b..1c75e69cf4795c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Frontmost processは、ウィンドウが最前面にあるプロセスの番号を返します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 [BRING TO FRONT](bring-to-front.md) -[WINDOW LIST](window-list.md) \ No newline at end of file +[WINDOW LIST](window-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 327 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md index 1f8f4c795fc3a2..76fa76ce271f1e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Frontmost window コマンドは最前面のウィンドウの参照番号を返します。 @@ -24,4 +21,13 @@ displayed_sidebar: docs #### 参照 [Frontmost process](frontmost-process.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 447 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md index c0f4f8a42f3c3b..8c57c6ffe36bc5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md @@ -84,4 +84,13 @@ displayed_sidebar: docs #### 参照 [GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 691 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md index 4320a12ddfa48d..fe69752c525d29 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**Generate digest**コマンドはBLOBやテキストのDigestキーを指定したアルゴリズムで生成して返します。 - -*param* 引数にはテキストまたはBLOBフィールドや変数を渡します。**Generate digest**コマンドはダイジェストキーを文字列として返します。 +**Generate digest**コマンドはBLOBやテキストのDigestキーを指定したアルゴリズムで生成して返します。引数にはテキストまたはBLOBフィールドや変数を渡します。**Generate digest**コマンドはダイジェストキーを文字列として返します。 *algorithm* 引数で使用するハッシュ関数を指定します。*Digest Type*テーマ内にある以下の定数を使用できます: @@ -83,4 +81,13 @@ displayed_sidebar: docs [BASE64 ENCODE](base64-encode.md) [Generate password hash](generate-password-hash.md) [WEB Validate digest](web-validate-digest.md) -*暗号化プロトコル* \ No newline at end of file +*暗号化プロトコル* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1147 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md index 997ab42cbe60e5..5fd705341fba95 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md @@ -50,4 +50,13 @@ TLS/SSLプロトコルの暗号化機能はこの原理に基づいており、 [DECRYPT BLOB](decrypt-blob.md) [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 688 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md index 47feab7e5a0768..46889842eeec42 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**Generate password hash** ファンクションは*password* 引数のパスワードから暗号化ハッシュアルゴリズムによって生成された、安全なパスワードハッシュを返します。 - -*password* 引数には、文字列を渡します。**Generate password hash** はパスワードのハッシュ化された文字列を返します。同じパスワードを複数回渡した場合、ハッシュ化された文字列は毎回異なる結果が返されます。 +**Generate password hash** ファンクションは*password* 引数のパスワードから暗号化ハッシュアルゴリズムによって生成された、安全なパスワードハッシュを返します。引数には、文字列を渡します。**Generate password hash** はパスワードのハッシュ化された文字列を返します。同じパスワードを複数回渡した場合、ハッシュ化された文字列は毎回異なる結果が返されます。 *options* オブジェクト引数には、パスワードハッシュを生成する際に使用したいプロパティを渡します。利用可能な値は以下の表にまとめてあります: @@ -66,4 +64,13 @@ bcryptは、Blowfish暗号に基づいたパスワードハッシュ機能です [Generate digest](generate-digest.md) -[Verify password hash](verify-password-hash.md) \ No newline at end of file +[Verify password hash](verify-password-hash.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1533 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md index 0f1ab381e457de..42f5c135a8965a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md @@ -29,3 +29,13 @@ UUIDを生成して変数に代入する:  var MyUUID : Text  MyUUID:=Generate UUID ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1066 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md index 8c8fb81560606a..63b00faf4ca5af 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md @@ -66,4 +66,13 @@ User settings file for data および User settings file の両ファイルに #### 参照 -[File](file.md) \ No newline at end of file +[File](file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1418 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md index 2aa1c8fd6fa3e2..742364b5bc7b74 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md @@ -51,8 +51,9 @@ displayed_sidebar: docs アクティブな4Dフォルダーは、デフォルトでは以下の場所に作成されます: -* Windows: *{Disk}:\\Users\\* *\\AppData\\Roaming\\* -* macOS: *{Disk}:Users:* *:Library:Application Support:* +* Windows: *{Disk}:\\Users\\{userName}\\AppData\\Roaming\\{applicationName}* +* macOS: *{Disk}:Users:{userName}:Library:Application Support:{applicationName}* + ##### Licenses Folder @@ -205,4 +206,14 @@ displayed_sidebar: docs [System folder](system-folder.md) [Temporary folder](temporary-folder.md) [Test path name](test-path-name.md) -[WEB SET ROOT FOLDER](web-set-root-folder.md) \ No newline at end of file +[WEB SET ROOT FOLDER](web-set-root-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 485 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md index 1e95e1ef485895..7fdf37f7bc9cab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### 説明 -**Get adjusted blobs cache priority** コマンドは*aTable* 引数で指定されたテーブルの"blob"データにキャッシュマネージャーによって適用されたカレントの調整済みキャッシュ優先度値を返します。 - -**注:** このコマンドはローカルモード(4D Server と4D)でのみ動作します。リモートモードの4Dでは使用できません。 +**Get adjusted blobs cache priority** コマンドは*aTable* 引数で指定されたテーブルの"blob"データにキャッシュマネージャーによって適用されたカレントの調整済みキャッシュ優先度値を返します。このコマンドはローカルモード(4D Server と4D)でのみ動作します。リモートモードの4Dでは使用できません。 #### 参照 [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) [SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) -*データベースキャッシュ内の優先度を管理* \ No newline at end of file +*データベースキャッシュ内の優先度を管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1428 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md index b99230a280333b..5a89d26d27a5ce 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### 説明 -**Get adjusted index cache priority** コマンドは、*aField* 引数で指定されたフィールドのインデックスに対しキャッシュマネージャーによって適用されたキャッシュ優先度値を返します。 - -**注:** このコマンドはローカルモード(4D Serverおよび4D)においてのみ動作します。リモートモードでは使用できません。 +**Get adjusted index cache priority** コマンドは、*aField* 引数で指定されたフィールドのインデックスに対しキャッシュマネージャーによって適用されたキャッシュ優先度値を返します。このコマンドはローカルモード(4D Serverおよび4D)においてのみ動作します。リモートモードでは使用できません。 #### 参照 [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [SET INDEX CACHE PRIORITY](set-index-cache-priority.md) -*データベースキャッシュ内の優先度を管理* \ No newline at end of file +*データベースキャッシュ内の優先度を管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1427 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md index 498934f768585c..fea030eb667b50 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Get adjusted table cache priority**コマンドは *aTable*引数で指定したテーブルのスカラーデータのキャッシュに、キャッシュマネージャーによって適用された、調整されたキャッシュ優先度値を返します。 - -**注:** このコマンドはローカルモード(4D Server と4D)でのみ動作します。リモートモードの4Dでは使用できません。 +**Get adjusted table cache priority**コマンドは *aTable*引数で指定したテーブルのスカラーデータのキャッシュに、キャッシュマネージャーによって適用された、調整されたキャッシュ優先度値を返します。このコマンドはローカルモード(4D Server と4D)でのみ動作します。リモートモードの4Dでは使用できません。 スカラーデータフィールド型には、日付/時間、数値、文字列型のフィールドが含まれます。 @@ -26,4 +24,13 @@ displayed_sidebar: docs [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) [SET TABLE CACHE PRIORITY](set-table-cache-priority.md) -*データベースキャッシュ内の優先度を管理* \ No newline at end of file +*データベースキャッシュ内の優先度を管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1426 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md index a8e9aab228b679..87e98c25846fd0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET ALLOWED METHODS コマンドは、フォーミュラの作成に使用できるメソッド名を引数*methodsArray*に返します。これらのメソッドは、エディタ上のコマンドリストの最後に一覧表示されます。 @@ -45,4 +42,13 @@ GET ALLOWED METHODSコマンドは、[SET ALLOWED METHODS](../commands/set-allow #### 参照 -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 908 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md index c1deb1cf19e2c7..330e678acb9826 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get application color scheme** コマンドは、アプリケーションレベルで使用されている実際のカラースキームの名前を返します。 @@ -45,4 +42,13 @@ displayed_sidebar: docs #### 参照 [FORM Get color scheme](form-get-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1763 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md index 937e2144de1f93..de77f0d386d485 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md @@ -23,4 +23,13 @@ displayed_sidebar: docs [ASSERT](assert.md) [Asserted](asserted.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1130 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md index 10746ba898e5f1..928855aa412b90 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md @@ -31,4 +31,13 @@ displayed_sidebar: docs [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 899 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md index 08373303ab84db..d4bff82a141a25 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**Get cache size**コマンドは、カレントデータベースのキャッシュサイズをバイト単位で返します。 - -**注:** このコマンドはローカルモード (4D Server および 4D) でのみ正しい情報を返します。リモートモードの4Dでの使用は想定されていないことに注意してください。 +**Get cache size**コマンドは、カレントデータベースのキャッシュサイズをバイト単位で返します。このコマンドはローカルモード (4D Server および 4D) でのみ正しい情報を返します。リモートモードの4Dでの使用は想定されていないことに注意してください。 #### 例題 @@ -25,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[SET CACHE SIZE](set-cache-size.md) \ No newline at end of file +[SET CACHE SIZE](set-cache-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1432 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md index 2e94c2c06e2c13..5dd2e409f16c11 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get current printer** コマンドは、4Dアプリケーションに定義されたカレントプリンター名を返します。デフォルトで4Dの起動時には、システムで定義されたプリンターがカレントプリンターとなります。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 [PRINTERS LIST](printers-list.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 788 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md index 51beaea58f3b03..60cb54153e1dc0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md @@ -49,4 +49,13 @@ displayed_sidebar: docs #### 参照 [Localized document path](localized-document-path.md) -[SET DATABASE LOCALIZATION](set-database-localization.md) \ No newline at end of file +[SET DATABASE LOCALIZATION](set-database-localization.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1009 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md index 2e520632412cd8..ce9e08175b9abc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get database parameter**コマンドを使用して、現在の4Dデータベースパラメーターの値を知ることができます。パラメーター値が文字列の場合、それは*stringValue* 引数に返されます。 @@ -134,4 +131,13 @@ displayed_sidebar: docs [DISTINCT VALUES](distinct-values.md) [Application info](application-info.md) [QUERY SELECTION](query-selection.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 643 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md index a2afd4c094234a..bd152b49561119 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get default user コマンドは、データベース設定において "デフォルトユーザー" として定義されたユーザーのユニークなユーザーIDを返します。 @@ -23,3 +20,13 @@ displayed_sidebar: docs ![](../assets/en/commands/pict36789.en.png) デフォルトユーザーが設定されていない場合、コマンドは0を返します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 826 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md index 00f07e5322bd9e..9b216f8ba68ccb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### 説明 -GET DOCUMENT ICONコマンドは、*filePath*に渡した名前または完全なパス名を持つドキュメントのアイコンを4Dのピクチャ変数またはフィールド*icon*に返します。*filePath* はあらゆるタイプのファイル (実行ファイル、ドキュメント、ショートカットまたは別名など) またはフォルダを指定します。 +GET DOCUMENT ICONコマンドは、*filePath*に渡した名前または完全なパス名を持つドキュメントのアイコンを4Dのピクチャ変数またはフィールド*icon*に返します。はあらゆるタイプのファイル (実行ファイル、ドキュメント、ショートカットまたは別名など) またはフォルダを指定します。 *filePath*には、完全なドキュメントのパス名が含まれていなければなりません。あるいはドキュメント名または相対パス名を渡すこともできます。しかしこの場合、ドキュメントはカレントのワーキングディレクトリに存在していなければなりません (通常、データベースストラクチャファイルを含んでいるフォルダ) 。 @@ -26,3 +26,14 @@ displayed_sidebar: docs 4Dのピクチャフィールドまたは変数を*icon*に渡します。コマンドが実行されるとこの引数にはファイル (PICTフォーマット) のアイコンが返されます。 任意の引数*size*によって、返されたアイコンのサイズをピクセルで設定できます。この値は、実際にアイコンを含む正方形の両方の側面の長さを表します。通常アイコンは32x32ピクセル(大きいアイコン) または16x16ピクセル(小さいアイコン) で定義されます。0を渡したり、この引数を省略する場合、使用できる最大のアイコンが返されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 700 | +| スレッドセーフである | ✓ | +| システム変数を更新する | Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md index 5d12ad6ff81504..841ad5edf4f40c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md @@ -24,4 +24,13 @@ Get document positionは、ドキュメントの最初から見て、次の読 [RECEIVE PACKET](receive-packet.md) [SEND PACKET](send-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 481 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md index 05b0b66d20cd3d..075e40aa5404ff 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md @@ -203,4 +203,14 @@ displayed_sidebar: docs #### 参照 -[SET DOCUMENT PROPERTIES](set-document-properties.md) \ No newline at end of file +[SET DOCUMENT PROPERTIES](set-document-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 477 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md index 8e01d35fe05854..92517cdf935fe7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md @@ -28,4 +28,14 @@ Macintoshでは、任意の引数 *\** を渡さない場合、データフォ [Get document position](get-document-position.md) [SET DOCUMENT POSITION](set-document-position.md) -[SET DOCUMENT SIZE](set-document-size.md) \ No newline at end of file +[SET DOCUMENT SIZE](set-document-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 479 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md index e5f998e15360e2..72bb19c417546e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get edited text**コマンドは、主にOn After Edit フォームイベントで入力中のテキストを取得するために使用します。またOn Before Keystroke および On After Keystroke フォームイベントで使用することもできます。これらのフォームイベントについてのより詳細な情報は[Form event code](form-event-code.md)の説明を参照してください。 @@ -67,4 +64,13 @@ displayed_sidebar: docs #### 参照 [Form event code](form-event-code.md) -[Is editing text](is-editing-text.md) \ No newline at end of file +[Is editing text](is-editing-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 655 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md index 489ba2a857b793..f9e0373358917e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md @@ -30,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1133 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md index 8602b61f69ae3c..ed7846fd93f7a0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET FIELD ENTRY PROPERTIESコマンドは、*tableNum*および*fieldNum*、または*fieldPtr*で指定したフィールドのデータ入力プロパティを返します。 @@ -43,4 +40,13 @@ displayed_sidebar: docs [GET FIELD PROPERTIES](get-field-properties.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[GET TABLE PROPERTIES](get-table-properties.md) \ No newline at end of file +[GET TABLE PROPERTIES](get-table-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 685 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md index a9ffd953f1186d..756eefd0416ea4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md @@ -72,4 +72,13 @@ displayed_sidebar: docs [Field](field.md) [Field name](field-name.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 258 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md index e08ce41bb44f91..5749cb926eca40 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md @@ -83,4 +83,13 @@ displayed_sidebar: docs [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET RELATION PROPERTIES](get-relation-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 920 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md index 6643a7ef840a1b..78626df1614050 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET FIELD TITLES コマンドを使用して、目的の *table* に対してデータベースフィールドの名前と番号を配列 *fieldTitles* と *fieldNums* に受け取ります。これら2つの配列内容は同期化されています。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 [GET TABLE TITLES](get-table-titles.md) -[SET FIELD TITLES](set-field-titles.md) \ No newline at end of file +[SET FIELD TITLES](set-field-titles.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 804 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md index 6adf1552994ca0..73754d8519991f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get file from pasteboard コマンドは、ドラッグ&ドロップ処理に含まれるファイルの完全パス名を返します。複数のファイルを同時に選択し、移動することができます。*xIndex* 引数を使用して選択したファイル中でファイルを指定することができます。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) \ No newline at end of file +[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 976 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md index 85c0741c00228e..83ca22e2b945d5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md @@ -34,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1738 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md index 17db9df7815f95..1f250758cf279d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET GROUP LIST コマンドは、パスワードエディターに表示されるグループ名とユニークなID番号を配列 *groupNames* と *groupNumbers* に返します。 @@ -34,4 +31,14 @@ displayed_sidebar: docs [GET GROUP PROPERTIES](get-group-properties.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 610 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md index a16564de48e2cb..52ff91016d23ed 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET GROUP PROPERTIES コマンドは、引数 *groupID* に渡したユニークなグループID番号を持つグループのプロパティを返します。[GET GROUP LIST](get-group-list.md) コマンドによって返される有効なグループID番号を必ず渡さなければなりません。 @@ -41,4 +38,14 @@ displayed_sidebar: docs [GET GROUP LIST](get-group-list.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 613 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md index 7298f273ec1f5e..22d0d31adbbb69 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET HIGHLIGHT**コマンドは、*object*中で現在反転表示されているテキストを検出するために使用します。 @@ -64,4 +61,13 @@ End if [FILTER KEYSTROKE](filter-keystroke.md) [HIGHLIGHT TEXT](highlight-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 209 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md index ed5a23652852f8..f2282cb9c6cae5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET HIGHLIGHTED RECORDS コマンドは、*aTable*中で (例: リストフォームでユーザにより選択されて) ハイライトされたレコードを*setName*で指定したセットに格納します。*aTable*を省略すると、カレントフォームまたはサブフォームのテーブルが使用されます。 @@ -44,4 +41,14 @@ GET HIGHLIGHTED RECORDSコマンドはフォーム以外のコンテキストで #### 参照 -[HIGHLIGHT RECORDS](highlight-records.md) \ No newline at end of file +[HIGHLIGHT RECORDS](highlight-records.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 902 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md index 91168f5248ee68..ed3069505a02b6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get indexed string コマンドは以下の値を返します: @@ -46,4 +43,14 @@ displayed_sidebar: docs [Get string resource](get-string-resource.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 510 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md index ce5b5c8d229029..c8748408ab4dd2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md @@ -24,4 +24,13 @@ displayed_sidebar: docs #### 参照 [RESTART 4D](restart-4d.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1301 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md index f7a8324980681f..bc202fbf03e830 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get list item font コマンドは、リスト参照またはオブジェクト名で指定した*list*リストの、*itemRef* 引数で指定した項目のフォント名を返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[SET LIST ITEM FONT](set-list-item-font.md) \ No newline at end of file +[SET LIST ITEM FONT](set-list-item-font.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 954 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md index 96bef83e55cdc0..6a9e66701e3ab2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET LIST ITEM ICON コマンドは、*list*に参照番号またはオブジェクト名を渡したリスト内の、*itemRef*項目参照の項目に割り当てられたアイコンを*icon*に返します。 @@ -38,4 +35,13 @@ iconにはピクチャ変数を渡します。コマンド実行後、(スタテ #### 参照 [GET LIST ITEM PROPERTIES](get-list-item-properties.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 951 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md index 49f11d4ee5d1f0..307cdc7c219862 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET LIST ITEM PARAMETER ARRAYS**コマンドは*list* 引数で指定した参照またはオブジェクト名を持つ階層リスト中で、*itemRef* で指定した項目に割り当てられたパラメーター (およびその値) を一回の呼び出しで取り出すことができます。 @@ -76,4 +73,13 @@ displayed_sidebar: docs #### 参照 -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1195 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md index 2d1734c86cebf5..af4f522b149e37 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET LIST ITEM PARAMETER** コマンドは、*list* 引数にリスト参照やオブジェクト名で指定したリストの、*itemRef* 項目の、*selector* パラメタに対応する現在値を取得するために使用します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 *Hierarchical Lists* -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 985 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md index 3629b1220e5187..8ae28f8d9ccfd1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET LIST ITEM PROPERTIES** コマンドは、引数*list*に渡されたリスト参照番号またはオブジェクト名のリスト内で、引数*itemRef*によって指定された項目のプロパティを返します。 @@ -53,4 +50,13 @@ displayed_sidebar: docs [GET LIST ITEM](get-list-item.md) [GET LIST ITEM ICON](get-list-item-icon.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 631 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md index 0e3ffda827dcba..f7ea261200456a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET LIST ITEM コマンドは、リスト参照番号またはオブジェクト名が*list*であるリスト中、*itemPos*で指定した項目に関する情報を返します。 @@ -67,4 +64,13 @@ displayed_sidebar: docs [List item position](list-item-position.md) [Selected list items](selected-list-items.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 378 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md index 6ad1bce099f480..f0285b0a6387a2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET LIST PROPERTIES** コマンドは、*list*で指定された参照番号を持つ階層リストについての情報を返します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[SET LIST PROPERTIES](set-list-properties.md) \ No newline at end of file +[SET LIST PROPERTIES](set-list-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 632 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md index be6afc3ccaa0e1..44d4701aa2e19e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET MACRO PARAMETERコマンドは、呼び出されたメソッドテキストのすべてまたは一部を引数*textParam*に返します。 @@ -36,4 +33,13 @@ Full method textを*selector*に渡すと、メソッドのテキストはすべ #### 参照 -[SET MACRO PARAMETER](set-macro-parameter.md) \ No newline at end of file +[SET MACRO PARAMETER](set-macro-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 997 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md index 6e23f87251bfd0..0ddf363eaca6a0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get menu bar reference** コマンドはカレントのメニューバーあるいは指定されたプロセスのメニューバーのIDを返します。 @@ -41,4 +38,13 @@ displayed_sidebar: docs #### 参照 -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 979 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md index 6a9fa76cd7dd54..5925d001339c7f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET MENU ITEM ICON コマンドは*iconRef*変数に、*menu* と *menuItem*引数で指定されたメニュー項目に関連付けられたアイコンの参照を返します。この参照はピクチャーのパス名または番号です。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[SET MENU ITEM ICON](set-menu-item-icon.md) \ No newline at end of file +[SET MENU ITEM ICON](set-menu-item-icon.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 983 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md index 2743b0c772cf5e..691a5ed3d8298e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item key コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目の、Ctrl (Windows) または Command (Macintosh) ショートカットコードを返します。*menuItem*に-1を渡して*menu*に最後に追加された項目を指定することもできます。 @@ -52,4 +49,14 @@ displayed_sidebar: docs #### 参照 [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 424 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md index c61b322a2874b9..b9c09e27cf258f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item mark コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目の、チェックマークを返します。*menuItem*に-1を渡して*menu*に最後に追加された項目を指定することもできます。 @@ -41,4 +38,14 @@ displayed_sidebar: docs #### 参照 -[SET MENU ITEM MARK](set-menu-item-mark.md) \ No newline at end of file +[SET MENU ITEM MARK](set-menu-item-mark.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 428 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md index a3c89267f14f10..36f51d175f52fc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item method コマンドは、*menu*と*menuItem*引数で指定されたメニュー項目に関連付けられた4Dプロジェクトメソッド名を返します。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[SET MENU ITEM METHOD](set-menu-item-method.md) \ No newline at end of file +[SET MENU ITEM METHOD](set-menu-item-method.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 981 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md index e789d25aba1b68..4f24bb3575e25b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item modifiers コマンドは、*menu*と*menuItem*引数で指定したメニュー項目の、標準ショートカットに割り当てられた追加のモディファイアキーを返します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs #### 参照 [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 980 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md index 74ef97be58112b..b4487fd5800031 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item parameter コマンドは、*menu*と*menuItem*引数で指定されるメニュー項目に割り当てられたカスタム文字列を返します。この文字列は事前に[SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER")コマンドで指定されていなければなりません。 @@ -26,4 +23,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get selected menu item parameter](get-selected-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1003 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md index 4e77270cdffe77..63367cb45b4d1c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET MENU ITEM PROPERTY** コマンドは、*menu*と*menuItem*引数で指定したメニュー項目の、現在のプロパティ値を返します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 972 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md index 9006d8fb87d081..8ca6f79c57c981 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item style コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目のフォントスタイルを返します。*menuItem*に-1を渡して*menu*に最後に追加された項目を指定することもできます。 @@ -48,4 +45,14 @@ Get menu item style はテーマの定義済み定数 (ひとつまたは和) #### 参照 -[SET MENU ITEM STYLE](set-menu-item-style.md) \ No newline at end of file +[SET MENU ITEM STYLE](set-menu-item-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 426 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md index 333c1fd6e6a0dc..e68ea96587762e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu item コマンドは、引数*menu*と*menuItem*に渡されたメニューおよびメニュー項目番号を持つメニュー項目のテキストを返します。*menuItem*に-1を渡して*menu*に最後に追加された項目を指定することもできます。 @@ -30,4 +27,14 @@ displayed_sidebar: docs #### 参照 [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM](set-menu-item.md) \ No newline at end of file +[SET MENU ITEM](set-menu-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 422 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md index 520b4d53a0b6a0..e78a96ef4b9fdd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET MENU ITEMS コマンドは、*menu*引数で指定したメニューまたはメニューバーのタイトルとIDを*menuTitlesArray* と *menuRefsArray* 配列に返します。 @@ -36,3 +33,13 @@ displayed_sidebar: docs  MenuBarRef:=Get menu bar reference(Frontmost process)  GET MENU ITEMS(MenuBarRef;menuTitlesArray;menuRefsArray) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 977 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md index ddaca8bbff091a..2c04e7f2152cdc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get menu title コマンドは、*menu*に渡されたメニュー番号または参照を持つメニューのタイトルを返します。 @@ -28,4 +25,14 @@ displayed_sidebar: docs #### 参照 -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 430 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md index 67d717e20c64cc..af5339882215fc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[REGENERATE MISSING TABLE](regenerate-missing-table.md) \ No newline at end of file +[REGENERATE MISSING TABLE](regenerate-missing-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1125 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md index 12da9cc85dd02d..59a38063eef9fd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PASTEBOARD DATA TYPE コマンドは、ペーストボードに含まれるデータタイプリストを取得するために使用します。このコマンドは一般的にドラッグ&ドロップのコンテキストで、ドロップ先オブジェクトのOn Drop または On Drag Over フォームイベント内で使用されます。特に、ペーストボードに特定のデータタイプが存在するかどうかをチェックするために使用します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 -*ペーストボードの管理* \ No newline at end of file +*ペーストボードの管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 958 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md index 071bd6723ee291..9b16c528727e02 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PASTEBOARD DATA コマンドはペーストボード中*dataType*で指定したタイプのデータを、BLOB フィールドまたは変数 *data* に返します。 (例えばペーストボードに4D内でコピーされたテキストが含まれている場合、BLOBの文字コードはUTF-16です) @@ -55,4 +52,14 @@ displayed_sidebar: docs [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 401 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md index b8f80e1ee43bbd..094425079c3efd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md @@ -24,4 +24,13 @@ displayed_sidebar: docs #### 参照 -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1171 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md index 57a01b113af1a3..ebe00cac957ee7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 - \ No newline at end of file + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1406 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md index 941f6112a4e545..de87846b8bb56a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PICTURE FROM LIBRARY コマンドは、*picRef*に渡された参照番号または*picName*に渡された名前を持つピクチャライブラリの画像を*picture*引数に返します。 @@ -56,4 +53,14 @@ displayed_sidebar: docs [PICTURE LIBRARY LIST](picture-library-list.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 565 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md index decf53395419c3..9b79ccfdcda6c7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET PICTURE FROM PASTEBOARD** は、ペーストボード内に存在するピクチャーを*picture*フィールドや変数に返します。 @@ -42,4 +39,14 @@ displayed_sidebar: docs [GET PASTEBOARD DATA](get-pasteboard-data.md) [Get text from pasteboard](get-text-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 522 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md index 5eb0d6c44345c7..4c3501bfeffe30 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**GET PICTURE KEYWORDS**コマンドは引数に渡したピクチャーに割り当てられたキーワードのリストを*arrKeywords*配列に返します。 - -**IPTC/Keywords** メタデータを使用して設定されたキーワードだけが返されます。他のタイプのメタデータはこのコマンドから無視されます。このコマンドは、このタイプのメタデータをサポートするピクチャー (JPEG, TIFF, 等) に対してのみ動作します。 +**GET PICTURE KEYWORDS**コマンドは引数に渡したピクチャーに割り当てられたキーワードのリストを*arrKeywords*配列に返します。メタデータを使用して設定されたキーワードだけが返されます。他のタイプのメタデータはこのコマンドから無視されます。このコマンドは、このタイプのメタデータをサポートするピクチャー (JPEG, TIFF, 等) に対してのみ動作します。 **注:** 4DはIPTC/Keywordsタイプのメタデータをインデックスすることが可能です (デザインリファレンスマニュアルを参照)。 @@ -32,4 +30,13 @@ displayed_sidebar: docs #### 参照 [GET PICTURE METADATA](get-picture-metadata.md) -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1142 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md index 164c11af04e4b0..82cf49290e421e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md @@ -99,4 +99,14 @@ DOMツリーストラクチャを使用する [GET PICTURE KEYWORDS](get-picture-keywords.md) *Picture Metadata Names* *Picture Metadata Values* -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1122 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md index 3d0211972e5b7a..2e8de06f683284 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PICTURE RESOURCE コマンドは、*resID*のIDを持つピクチャ ("PICT") リソースに格納されているピクチャを*resData*のピクチャフィールドまたは変数に返します。 @@ -43,4 +40,14 @@ displayed_sidebar: docs #### 参照 -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 502 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md index a57fb659d059be..7e9921139d8410 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get plugin accessコマンドは引数 *plugIn* に渡した番号を持つプラグインの使用を許可されているユーザグループの名前を返します。プラグインに割り当てられているグループが存在しない場合、コマンドは空の文字列 ("") を返します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 [SET GROUP ACCESS](set-group-access.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 846 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md index 8888171ad4d21c..aa8e296fee4514 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md @@ -49,4 +49,13 @@ displayed_sidebar: docs #### 参照 [Field](field.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 304 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md index 4f27bc9ba51220..1e1f3eb9def343 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get print marker コマンドを使用し、印刷中にマーカの現在位置を取得することができます。 @@ -63,4 +60,13 @@ displayed_sidebar: docs #### 参照 [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 708 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md index 6e6d72cd50cfad..a892fa75c52387 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET PRINT OPTION** コマンドは、プリントオプションの現在の値を返します。 @@ -51,4 +48,14 @@ PDFオプションコードは2つの部分、OptionT*ype*と*OptionName*から #### 参照 [PRINT OPTION VALUES](print-option-values.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 734 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md index a5699e0b1d61f8..9ab8f665c0a12e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get print preview**コマンドはカレントプロセスで[SET PRINT PREVIEW](set-print-preview.md)が**True**で呼ばれている場合、Trueを返します。 @@ -25,4 +22,13 @@ displayed_sidebar: docs #### 参照 [Is in print preview](is-in-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1197 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md index ab0e9892970e9b..8b287270b98009 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PRINTABLE AREA コマンドは、印刷可能領域のサイズを引数*height*および*width*へピクセル単位で返します。このサイズは、現在の印刷設定、用紙方向等によって異なります。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 [GET PRINTABLE MARGIN](get-printable-margin.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 703 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md index d2c4150228a40f..0e1e5c165a9c73 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PRINTABLE MARGIN コマンドは、[Print form](print-form.md)、[PRINT SELECTION](print-selection.md) そして [PRINT RECORD](print-record.md) コマンドに使用されるマージンの現在値を返します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs [GET PRINTABLE AREA](get-printable-area.md) [Print form](print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 711 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md index d3efabf41f27b7..52ae6c775c1588 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get printed height** コマンドは、 [Print form](print-form.md) コマンドを使って印刷された部分全体の高さ(ピクセル単位)を返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs [GET PRINTABLE AREA](get-printable-area.md) [Print form](print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 702 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md index 1cf9ddbcb64ba4..bc71d3a039829f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET PROCESS VARIABLE コマンドは、*process*引数に渡した番号のソースプロセスから*srcVar* (*srvVar2*等) プロセス変数を読み込み、その現在の値をカレントプロセスの*dstVar* (*dstVar2*等) 変数に返します。 @@ -118,4 +115,13 @@ DRAG AND DROP PROPERTIESコマンドの例題参照 [SET PROCESS VARIABLE](set-process-variable.md) [VARIABLE TO VARIABLE](variable-to-variable.md) *ドラッグ&ドロップ* -*プロセス* \ No newline at end of file +*プロセス* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 371 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md index 5705038ecb9a9f..ef3212bece6420 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md @@ -55,4 +55,13 @@ displayed_sidebar: docs #### 参照 -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1155 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md index 63918954721680..9499c45485b53a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1156 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md index 7a1abdfd9d0ea3..3caad2944cb0d6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET REGISTERED CLIENTS コマンドは2つの配列を作成します: @@ -48,4 +45,14 @@ displayed_sidebar: docs [EXECUTE ON CLIENT](execute-on-client.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 650 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md index 17956f0cc498fc..bbc07b8f543182 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md @@ -42,4 +42,13 @@ displayed_sidebar: docs [GET FIELD PROPERTIES](get-field-properties.md) [GET TABLE PROPERTIES](get-table-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 686 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md index 2efca40a64a9f0..88fca993000653 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get resource name**コマンドは、*resType*のタイプで*resID*のIDを持つリソースの名前を返します。 @@ -26,3 +23,13 @@ displayed_sidebar: docs *resFile*に有効なリソースファイル参照番号を渡すと、リソースはそのリソースファイル内でのみ検索されます。*resFile*を省略した場合は、現在開かれているすべてのリソースファイル内で検索されます。 リソースが存在しない場合、**Get resource name**は空の文字列を返します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 513 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md index e5331f8e702c28..d3bc7df68bf8dc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Get resource properties**コマンドは、*resType*に渡されるタイプかつ*resID*に渡されるIDを持つリソースの属性を返します。 @@ -36,3 +33,14 @@ displayed_sidebar: docs #### システム変数およびセット リソースが存在しない場合OK変数は0に、そうでなければ1に設定されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 515 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md index 7ed83dde47ff58..c1ffd90fc9ff80 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET RESOURCE コマンドは、*resType*と*resID*に渡されるタイプとIDを持つリソースの内容を、BLOBフィールドまたはBLOB変数の*resData*に返します。 @@ -50,4 +47,14 @@ SET RESOURCEコマンドの例題参照 #### 参照 -*リソース* \ No newline at end of file +*リソース* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 508 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md index 13cbafa50ea1c2..14bb1084ed8091 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get selected menu item parameter コマンドは、選択されたメニュー項目に割り当てられたカスタム文字列を返します。このパラメタは事前に[SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER")コマンドを使用してあらかじめ設定されていなければなりません。 @@ -25,4 +22,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1005 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md index aaea4c3a90c078..18f307d4fafb4d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md @@ -48,4 +48,13 @@ Mac OS Xでは、USBシリアルアダプターの使用時に、OSがポート #### 参照 -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 909 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md index 80560440daa418..70f0fac5205f56 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get string resource コマンドは、*resID*に渡されるIDを持つストリング ("STR ") リソースに格納されている文字列を返します。 @@ -44,4 +41,14 @@ displayed_sidebar: docs [Get indexed string](get-indexed-string.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 506 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md index d1b934aa9e62f8..8b30a01ce2f347 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET STYLE SHEET INFO**コマンドは、*styleSheetName*パラメーターで指定したスタイルシートの現在の構成を返します。 @@ -66,4 +63,14 @@ displayed_sidebar: docs #### 参照 [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1256 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md index ec0eb5747e4700..0a6a6859946ce1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Get subrecord key**コマンドは、変換されたサブテーブルを使用する4Dコードから、標準のテーブルに対して作業を行うコードへの移行を容易にします。 - -**注意:** 4Dバージョン11よりサブテーブルはサポートされていません。旧バージョンのデータベースを変換すると、既存のサブテーブルは標準のテーブルに変換され、自動リレーションにより親テーブルとリンクされます。以前のサブテーブルはNテーブルとなり、親テーブルは1テーブルになります。1テーブル中、以前のサブテーブルフィールドは"サブテーブルリレーション"型の特別なフィールドに変換され、Nテーブルには特別な"サブテーブルリレーション"型のフィールドが“id\_added\_by\_converter”という名称で追加されます。 +**Get subrecord key**コマンドは、変換されたサブテーブルを使用する4Dコードから、標準のテーブルに対して作業を行うコードへの移行を容易にします。4Dバージョン11よりサブテーブルはサポートされていません。旧バージョンのデータベースを変換すると、既存のサブテーブルは標準のテーブルに変換され、自動リレーションにより親テーブルとリンクされます。以前のサブテーブルはNテーブルとなり、親テーブルは1テーブルになります。1テーブル中、以前のサブテーブルフィールドは"サブテーブルリレーション"型の特別なフィールドに変換され、Nテーブルには特別な"サブテーブルリレーション"型のフィールドが“id\_added\_by\_converter”という名称で追加されます。 これは変換されたデータベースにおいてサブテーブルの動作の互換性を保持するためのものです。しかし変換されたデータベースにおいて、すべてのサブテーブルメカニズムを標準のテーブルを使用したメカニズムに置き換えることを強く推奨します。 @@ -80,3 +78,13 @@ displayed_sidebar: docs ``` 上記のコードは、特殊なリレーションに対しても通常のリレーションに対しても有効です。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1137 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md index 8d02eeff79dc30..d71f8c1a090d25 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md @@ -41,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 994 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md index 3b7afa1b3a84fb..bb8ef48e51e1ef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md @@ -33,4 +33,13 @@ displayed_sidebar: docs [GET FIELD ENTRY PROPERTIES](get-field-entry-properties.md) [GET FIELD PROPERTIES](get-field-properties.md) -[GET RELATION PROPERTIES](get-relation-properties.md) \ No newline at end of file +[GET RELATION PROPERTIES](get-relation-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 687 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md index 1cad842377ae6f..d0ae50155ab8bd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET TABLE TITLES コマンドを使用して、ストラクチャウィンドウで、または[SET TABLE TITLES](set-table-titles.md "SET TABLE TITLES") コマンドを用いて定義されたデータベーステーブルの番号と名前を配列 *tableTitles* と *tableNums* に取得します。これら2つの配列の内容は同期化されています。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [GET FIELD TITLES](get-field-titles.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 803 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md index 55a633344ea614..4e07ddb8b06f36 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get text from pasteboard は、ペーストボードに存在するテキストを返します。 @@ -34,4 +31,14 @@ displayed_sidebar: docs [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 524 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md index 4b22d75f2f3cb3..e6cb9ddbc77768 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md @@ -82,4 +82,13 @@ displayed_sidebar: docs #### 参照 -[DISTINCT VALUES](distinct-values.md) \ No newline at end of file +[DISTINCT VALUES](distinct-values.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1141 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md index b700c2f443c518..75313072763ef0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get text resource コマンドは、*resID*に渡されるIDを持つテキスト ("TEXT") リソースに格納されているテキストを返します。 @@ -44,4 +41,14 @@ displayed_sidebar: docs [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 504 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md index 487cd103f3486d..ec163622a472a0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET USER LIST コマンドは、パスワードエディターに表示されるユーザー名とユニークなユーザーID番号を配列 *userNames* と *userNumbers* に返します。 @@ -37,4 +34,14 @@ displayed_sidebar: docs [GET GROUP LIST](get-group-list.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 609 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md index 043a72426496a2..c9301e19de3199 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GET USER PROPERTIES コマンドは、引数 *userID* に渡したユニークなユーザーID番号を持つユーザーに関する情報を返します。必ず [GET USER LIST](get-user-list.md) コマンドによって返される有効なユーザーID番号を渡さなければなりません。 @@ -54,4 +51,14 @@ displayed_sidebar: docs [GET USER LIST](get-user-list.md) [Is user deleted](is-user-deleted.md) [Set user properties](set-user-properties.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 611 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md index 73d047f8972cee..dcc75759ee3b71 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **GET WINDOW RECT** コマンドは*window*に渡された参照番号を持つウィンドウの座標を返します。ウィンドウが存在しない場合、変数引数は変更されません。 @@ -37,4 +34,13 @@ displayed_sidebar: docs #### 参照 [CONVERT COORDINATES](convert-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 443 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md index e9794bc76641a5..00e6b31e931e24 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Get window title コマンドは、*window*に渡されたウィンドウ参照番号を持つウィンドウのタイトルを返します。ウィンドウが存在しない場合、空の文字列が返されます。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 -[SET WINDOW TITLE](set-window-title.md) \ No newline at end of file +[SET WINDOW TITLE](set-window-title.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 450 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md index 7e4eb163b2eca5..72af5481fff765 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GOTO OBJECTコマンドは、フォームのアクティブエリアとしてデータ入力オブジェクト*object* を選択するために使用します。これはユーザがフィールドや変数をクリックしたりタブでフォーカスを移動したりするのと同じです。 @@ -51,4 +48,13 @@ GOTO OBJECTコマンドは以下のように使用します: #### 参照 [CALL SUBFORM CONTAINER](call-subform-container.md) -[REJECT](reject.md) \ No newline at end of file +[REJECT](reject.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 206 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md index a090e9a78f79ca..c09e0804a9e71f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md @@ -27,4 +27,15 @@ displayed_sidebar: docs #### 参照 [Record number](record-number.md) -*レコード番号について* \ No newline at end of file +*レコード番号について* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 242 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md index efac4093e77b13..48c3b52240a368 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md @@ -60,4 +60,14 @@ displayed_sidebar: docs #### 参照 -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 245 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md index 8db1c7accf29f1..f5e2d2b2f8fa83 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GOTO XY コマンドは、[Open window](open-window.md "Open window")で開いたウインドウに[MESSAGE](message.md "MESSAGE")コマンドでメッセージを表示する際に使用できます。 @@ -60,4 +57,13 @@ GOTO XY コマンドでカーソルの位置を指定してから、[MESSAGE](me #### 参照 -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 161 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md index c2a24ccc90898a..eb1d96ed490d80 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 GRAPH SETTINGS はフォームに表示されるグラフの設定を変更します。グラフは [GRAPH](graph.md) コマンドで定義済みでなければなりません。 GRAPH SETTINGS は円グラフには効果ありません。このコマンドはフォームと同じプロセスで呼び出されていなければなりません。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[GRAPH](graph.md) \ No newline at end of file +[GRAPH](graph.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 298 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md index 5dc1c079838197..12f58868678255 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md @@ -276,4 +276,13 @@ SVGグラフ中で見つけられる要素には自動で特定のIDが割り当 *Graph Parameters* [GRAPH SETTINGS](graph-settings.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 169 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md index dc294914615e32..380b51342f88c7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 HIDE MENU BARコマンドは、メニューバーを隠します。 @@ -45,4 +42,14 @@ displayed_sidebar: docs [HIDE TOOL BAR](hide-tool-bar.md) [SHOW MENU BAR](show-menu-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 432 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md index 6e51bdf86f4665..e25fb3d002f801 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 HIDE PROCESSは*process*に属するすべてのウィンドウを非表示にします。*process*のすべてのインタフェース要素は、次に[SHOW PROCESS](show-process.md "SHOW PROCESS")コマンドを実行するまで非表示となります。そのプロセスのメニューバーも非表示になります。したがって、プロセスが非表示になっているときにウィンドウを開いても画面が再描画されたり表示されません。プロセスが既に非表示になっている場合、このコマンドは何も実行しません。 @@ -37,4 +34,13 @@ displayed_sidebar: docs #### 参照 [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 324 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md index 33f62d49a62f52..9c110cbb91f728 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **HIDE TOOL BAR** コマンドは、カレントプロセスにおいて[Open form window](open-form-window.md) コマンドで作成されたカスタムのツールバーの表示を管理します。 @@ -41,4 +38,13 @@ OS X において、カスタムのツールバーとHas full screen mode Mac #### 参照 -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 434 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md index 4ac2a07fa8295a..4203bebcbaa55c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 HIDE WINDOWコマンドは、*window*で指定したウィンドウ参照番号を持つウィンドウまたはこの引数省略時はカレントプロセスの最前面ウィンドウを、隠すために使用します。例えばこのコマンドを使用して、複数のプロセスで構成されるアプリケーションで、アクティブなプロセスのウィンドウだけを表示できます。 @@ -47,4 +44,13 @@ HIDE WINDOWコマンドで画したウィンドウを表示するには: #### 参照 -[SHOW WINDOW](show-window.md) \ No newline at end of file +[SHOW WINDOW](show-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 436 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md index 25aaf06851a85f..a696ac3963cc8f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 HIGHLIGHT RECORDS コマンドは、出力フォーム内で指定されたレコードをハイライトします。この動作は、クリックまたは**Shift+クリック**、**Ctrl+クリック** (Windows) や**Command+クリック** (Mac OS) キーコンビネーションを使用し、リストモードでレコードを手動で選択する場合と同じです。カレントセレクションは変更されません。 @@ -49,4 +46,13 @@ displayed_sidebar: docs #### 参照 [GET HIGHLIGHTED RECORDS](get-highlighted-records.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 656 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md index 7894c88ffd252d..45ca92b32f8f67 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **HIGHLIGHT TEXT**コマンドは、*object* 内にあるテキストの一部を反転表示します。 @@ -64,4 +61,13 @@ displayed_sidebar: docs #### 参照 -[GET HIGHLIGHT](get-highlight.md) \ No newline at end of file +[GET HIGHLIGHT](get-highlight.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 210 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md index 613b6be17a4767..90b8a6997210ba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md @@ -25,9 +25,7 @@ displayed_sidebar: docs #### 説明 -**HTTP AUTHENTICATE**コマンドはクライアントアプリケーションの認証を要求するサーバーへのHTTPリクエストを可能にします。 - -*name* *と* *password*引数には必要な認証情報 (ユーザー名とパスワード) を渡します。この情報はエンコードされ、[HTTP Request](http-request.md)または[HTTP Get](http-get.md)を使用して送信されるHTTPリクエストに追加されます。 +**HTTP AUTHENTICATE**コマンドはクライアントアプリケーションの認証を要求するサーバーへのHTTPリクエストを可能にします。*と* *password*引数には必要な認証情報 (ユーザー名とパスワード) を渡します。この情報はエンコードされ、[HTTP Request](http-request.md)または[HTTP Get](http-get.md)を使用して送信されるHTTPリクエストに追加されます。 オプションの*authMethod*引数を使用して、使用する認証メソッドを指定できます。*HTTP Client*テーマの以下の定数を使用できます: @@ -56,4 +54,13 @@ displayed_sidebar: docs #### 参照 -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1161 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md index 3128d2311e1eb3..7fe97992cd71b5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md @@ -40,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1307 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md index f103c0866169e5..40ae4d4661b20d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md @@ -42,4 +42,13 @@ displayed_sidebar: docs #### 参照 -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1159 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md index fa86d1a34374d0..d742402abbbc99 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md @@ -29,9 +29,7 @@ displayed_sidebar: docs #### 説明 -**HTTP Get**コマンドは指定したURLにHTTP GETリクエストを送信し、HTTPサーバーからのレスポンスを処理します。 - -*url* 引数にはリクエストの送信先URLを渡します。シンタックスは以下の通りです: +**HTTP Get**コマンドは指定したURLにHTTP GETリクエストを送信し、HTTPサーバーからのレスポンスを処理します。引数にはリクエストの送信先URLを渡します。シンタックスは以下の通りです: ```RAW http://[{user}:[{password}]@]host[:{port}][/{path}][?{queryString}] @@ -104,4 +102,14 @@ RFCを取得する: #### 参照 -[HTTP Request](http-request.md) \ No newline at end of file +[HTTP Request](http-request.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1157 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md index 14a14eef21f64d..33ffbce29183e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md @@ -14,9 +14,16 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 このコマンドのドキュメントは、[developer.4d.com](https://developer.4d.com/docs/API/HTTPRequestClass/) にあります。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1824 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md index 730b861eaa2832..ec8beb4eaddb99 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md @@ -30,9 +30,7 @@ displayed_sidebar: docs #### -**HTTP Request**コマンドは指定したURLに任意のメソッドでHTTPリクエストを送信し、HTTPサーバーのレスポンスを処理することを可能にします。 - -*httpMethod* 引数にはHTTPリクエストのメソッドを渡します。*HTTP Client*テーマの以下の定数を使用できます: +**HTTP Request**コマンドは指定したURLに任意のメソッドでHTTPリクエストを送信し、HTTPサーバーのレスポンスを処理することを可能にします。引数にはHTTPリクエストのメソッドを渡します。*HTTP Client*テーマの以下の定数を使用できます: | 定数 | 型 | 値 | コメント | | ------------------- | --- | ------- | ---------------------------------------------- | @@ -123,4 +121,13 @@ http://[{user}:[{password}]@]host[:{port}][/{path}][?{queryString}] #### 参照 -[HTTP Get](http-get.md) \ No newline at end of file +[HTTP Get](http-get.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1158 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md index 3940633a3e48ef..6c5190d20a7327 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md @@ -57,4 +57,13 @@ displayed_sidebar: docs #### 参照 [GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) -[HTTP Get certificates folder](http-get-certificates-folder.md) \ No newline at end of file +[HTTP Get certificates folder](http-get-certificates-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1306 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md index 3fb815bc8eb2d5..94e2341ccb5d09 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 [HTTP AUTHENTICATE](http-authenticate.md) -[HTTP GET OPTION](http-get-option.md) \ No newline at end of file +[HTTP GET OPTION](http-get-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1160 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md index 41b75bd102a795..0aed689a6ba3a1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md @@ -50,4 +50,13 @@ EVENT METHODは以下のとおりです: #### 参照 [ON EVENT CALL](on-event-call.md) -*コンパイラコマンド* \ No newline at end of file +*コンパイラコマンド* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 311 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md index 9d9c1e55bde306..b6df86992722b3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md @@ -46,4 +46,14 @@ displayed_sidebar: docs [EXPORT DATA](export-data.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[IMPORT TEXT](import-text.md) \ No newline at end of file +[IMPORT TEXT](import-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 665 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md index dab9bff5dc7a89..45ea8e1c8f0c6d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 IMPORT DIF コマンドは、WindowsまたはMacintoshの標準的なDIF形式のドキュメント*document*から *aTable*にデータを読み込み、新しいレコードを作成します。 @@ -53,4 +50,14 @@ IMPORT DIF を使用する際、デフォルトのフィールド区切り文字 [EXPORT DIF](export-dif.md) [IMPORT SYLK](import-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 86 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md index 47adeeeb72669d..0ce81ac144e737 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **IMPORT STRUCTURE** コマンドは、カレントデータベース内に、 *xmlStructure* に渡した4D XMLストラクチャー定義を読み込みます。 @@ -49,4 +46,13 @@ displayed_sidebar: docs #### 参照 -[EXPORT STRUCTURE](export-structure.md) \ No newline at end of file +[EXPORT STRUCTURE](export-structure.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1310 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md index 92aa6d13e448c4..96605374249a26 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 IMPORT SYLK コマンドは、WindowsまたはMacintoshの標準的なSYLK形式のドキュメント*document*から *aTable*にデータを読み込み、新しいレコードを作成します。 @@ -53,4 +50,14 @@ IMPORT SYLK を使用する際、デフォルトのフィールド区切り文 [EXPORT SYLK](export-sylk.md) [IMPORT DIF](import-dif.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 87 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md index 4a6c83dc5c728c..611da8ec182c4c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 IMPORT TEXT コマンドは、WindowsまたはMacintoshの標準的なテキスト形式のドキュメント*document*から *aTable* にデータを読み込み、新しいレコードを作成します。 @@ -55,4 +52,14 @@ IMPORT TEXT を使用する際、デフォルトのフィールド区切り文 [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 168 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md index d83407edc8d962..fa8fb0153c6bb8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **In break** はIn break 実行サイクルでTrueを返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [In footer](in-footer.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 113 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md index 455faf973c6cab..b7771d94f55aef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **In footer** はIn footer 実行サイクルに対してTrueを返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [In break](in-break.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 191 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md index c16f4eeea4bdb5..60c19fecd0f66e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **In header** はIn header実行サイクルに対してTrueを返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [In break](in-break.md) -[In footer](in-footer.md) \ No newline at end of file +[In footer](in-footer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 112 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md index a83b15ad8fae7b..54e3b9f70fba01 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md @@ -29,4 +29,13 @@ displayed_sidebar: docs [CANCEL TRANSACTION](cancel-transaction.md) [START TRANSACTION](start-transaction.md) [VALIDATE TRANSACTION](validate-transaction.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 397 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md index b1722e998d96aa..aa804d3b1e5c00 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md @@ -44,4 +44,13 @@ displayed_sidebar: docs #### 参照 [DELETE FROM ARRAY](delete-from-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 227 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md index 35f56d91be9e69..230475d006af2b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md @@ -30,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[DELETE FROM BLOB](delete-from-blob.md) \ No newline at end of file +[DELETE FROM BLOB](delete-from-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 559 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md index ed8049fa091146..7fef73a3b9a10d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 INSERT IN LIST コマンドは、*list*に渡されたリスト参照番号またはオブジェクト名のリストに *itemRef*が指定する新規項目を挿入します。 @@ -52,4 +49,13 @@ displayed_sidebar: docs #### 参照 [APPEND TO LIST](append-to-list.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 625 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md index 924fe99235c726..8fb8e670012b69 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **INSERT MENU ITEM** コマンドは、*menu*に渡されたメニュー番号または参照を持つメニューにおいて、*afterItem*に渡された番号の既存のメニュー項目の後ろに新しいメニュー項目を挿入します。 @@ -56,4 +53,14 @@ displayed_sidebar: docs #### 参照 [APPEND MENU ITEM](append-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 412 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md index c8b2182a3aa386..16c2977e82cd6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md @@ -40,4 +40,13 @@ Insert string関数の使用例を次に示します。結果を変数*vtResult* [Change string](change-string.md) [Delete string](delete-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 231 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md index 24ef72ba5cbb5c..31b5f53f5afe93 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md @@ -29,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[Dec](dec.md) \ No newline at end of file +[Dec](dec.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 8 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md index 47b8ce8027eac5..19e97e58dd6f8c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md @@ -115,4 +115,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [BLOB to text](blob-to-text.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 548 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md index 941ccaef7e200d..d25d0d6decc51e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md @@ -98,4 +98,14 @@ Blobまたはピクチャーの値の場合、その保存場所に応じて異 #### 参照 -[LOG FILE TO JSON](log-file-to-json.md) \ No newline at end of file +[LOG FILE TO JSON](log-file-to-json.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1312 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md index 7a38a5f8193284..6b133a12f4dce0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md @@ -48,4 +48,13 @@ displayed_sidebar: docs #### 参照 [DIFFERENCE](difference.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 121 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md index df05e333fdc18e..6199f655dd0bb3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **INVOKE ACTION**コマンドは*action* 引数で定義された標準アクションを、任意の*target* 引数で指定したコンテキストでトリガーします。 @@ -65,4 +62,13 @@ displayed_sidebar: docs #### 参照 -[Action info](action-info.md) \ No newline at end of file +[Action info](action-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1439 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md index 8599b7678e3838..a250dde3e17c9a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Is a list コマンドは、*list* 引数で指定された値が階層リストの有効な参照の場合[True](true.md "True")を返します。それ以外の場合[False](false.md "False")を返します。 @@ -24,3 +21,13 @@ displayed_sidebar: docs #### 例題 [CLEAR LIST](clear-list.md "CLEAR LIST")コマンドの例題参照 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 621 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md index 16a55de4d33432..349fcf121771f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 [Is nil pointer](is-nil-pointer.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 294 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md index 0c155f6fe9712f..e774502583e8bd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md @@ -40,4 +40,13 @@ displayed_sidebar: docs #### 参照 [IDLE](idle.md) -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 492 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md index 336525aba3f901..9624d10a7c58fa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md @@ -29,3 +29,13 @@ displayed_sidebar: docs     QUIT 4D  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 716 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md index d43100477b2646..6bbd060f2a01f8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Is editing text** は、ユーザーが入力フォームオブジェクトに値を入力中であれば**True** を、それ以外の場合には**False** を返します。 @@ -60,4 +57,13 @@ displayed_sidebar: docs [FILTER KEYSTROKE](filter-keystroke.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1744 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md index bbfc453c89fb67..077d77ba02cf4c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md @@ -24,4 +24,13 @@ displayed_sidebar: docs #### 参照 [Last table number](last-table-number.md) -[Is table number valid](is-table-number-valid.md) \ No newline at end of file +[Is table number valid](is-table-number-valid.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1000 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md index bdd27ff79dd67e..f23786dba1e096 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md @@ -27,4 +27,13 @@ displayed_sidebar: docs #### 参照 [Null](null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 964 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md index 79814e33f2b638..94c499a2631fea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Is in print preview**コマンドは印刷ダイアログボックスで印刷プレビューオプションが選択されている場合Trueを返し、そうでなければFalseを返します。この設定はカレントプロセスに対し有効です。 @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 [Get print preview](get-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1198 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md index 214e82aeca9c8d..11f48f119f6e42 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md @@ -34,4 +34,13 @@ displayed_sidebar: docs #### 参照 [ADD TO SET](add-to-set.md) -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 273 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md index 9ff79ec1127635..db0c783b89a633 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Is license available コマンドを使用して、プラグインの有効性を確認することができます。例えば、プラグインが必要な機能を表示または非表示にする際に有効です。 @@ -47,4 +44,13 @@ Is license available コマンドは次のような3通りの使用が可能で [License info](license-info.md) [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 714 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md index 109609ea45c71b..ad38462acaad70 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 [System info](system-info.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1572 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md index 1ec5d0d791b182..ad52d788aaf5cb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Is new record コマンドは、カレントプロセス内で、指定された*aTable*のカレントレコードが未保存の新規レコードの場合に[True](true.md "True")を返します。 - -**互換性メモ:** [Record number](record-number.md "Record number")コマンドが-3を返すかどうかで同じ情報を得ることができます。 +Is new record コマンドは、カレントプロセス内で、指定された*aTable*のカレントレコードが未保存の新規レコードの場合に[True](true.md "True")を返します。[Record number](record-number.md "Record number")コマンドが-3を返すかどうかで同じ情報を得ることができます。 しかしこの目的では[Record number](record-number.md "Record number")の代りにIs new recordを使用することを強くお勧めします。実際、Is new recordコマンドは4Dの将来のバージョンとのより優れた互換性を保証します。 **4D Server:** このコマンドは、On Validateフォームイベントにおいては、4Dローカルモードと4Dリモートモードで異なる値を返します。ローカルモードでは[False](false.md "False") (レコードは既に作成されていると扱われるため) を返します。リモートモードでは[True](true.md "True")を返します。なぜならば、レコードは4D Server上に作成されていますが、クライアントにこの情報はまだ通知されていないためです。 @@ -43,4 +41,13 @@ displayed_sidebar: docs #### 参照 [Modified record](modified-record.md) -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 668 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md index 4934ee004f8244..f9e38cd9afb1bc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md @@ -35,4 +35,13 @@ displayed_sidebar: docs #### 参照 [Is a variable](is-a-variable.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 315 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md index 94b751dcc6b47d..aac7605c1d4dfa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md @@ -27,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1113 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md index 1081916f485c8a..11ab78e29a6227 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Is record loaded** コマンドは、*aTable*のカレントレコードがカレントプロセス内にロードされていれば[True](true.md "True")を返します。 - -**4D Server**: 原理的には、テーブル同士が自動リレーションでリンクされている場合、リレート先テーブルのカレントレコードは自動でロードされます (*リレーションについて* 参照)。しかし 4D Server は最適化のため、リレートレコードのフィールドの読み込みや編集などの必要なときにだけ、これらのレコードをロードします。そのため、ローカルモードでは **Is record loaded** コマンドが True を返すような場合でも、リモートモードでは同コマンドは False を返します。 +**Is record loaded** コマンドは、*aTable*のカレントレコードがカレントプロセス内にロードされていれば[True](true.md "True")を返します。参照)。しかし 4D Server は最適化のため、リレートレコードのフィールドの読み込みや編集などの必要なときにだけ、これらのレコードをロードします。そのため、ローカルモードでは **Is record loaded** コマンドが True を返すような場合でも、リモートモードでは同コマンドは False を返します。 #### 例題 @@ -43,3 +41,13 @@ displayed_sidebar: docs     End if  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 669 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md index 386fa9545e793f..909a4716804252 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 999 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md index dfa6052b88b11c..f3359d4bec8f1f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Is user deleted コマンドを使用して、引数 *userID* に渡したユニークなユーザーID番号を持つユーザーアカウントをテストします。 @@ -31,4 +28,14 @@ displayed_sidebar: docs [DELETE USER](delete-user.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 616 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md index bd93f09e7be491..79498e5a108125 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 The **Is waiting mouse up** コマンドはカレントオブジェクトがクリックされて、かつマウスボタンがリリースされておらず、親ウィンドウにフォーカスが入っている場合に**True**を返します。そうでない場合、例えばマウスボタンがリリースされる前に親ウィンドウのフォーカスが外れてしまった場合などには**False**を返します。 @@ -52,4 +49,13 @@ displayed_sidebar: docs #### 参照 -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1422 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md index 1a272bd0be5e97..462c15141e27fd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Is window maximized** コマンドは*window* 引数に参照を渡したウィンドウが現在最大化されていれば **True** を、それ以外の場合には**False** を返します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 [Is window reduced](is-window-reduced.md) -[MAXIMIZE WINDOW](maximize-window.md) \ No newline at end of file +[MAXIMIZE WINDOW](maximize-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1830 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md index eaf36ac46cfbc7..f2ddb673a03c45 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Is window reduced** コマンドは*window* 引数に参照を渡したウィンドウがタスクバー(Windows)またはDock(macOS)に収納されている場合には**True** を、それ以外の場合には**False** を返します。 @@ -24,4 +21,13 @@ displayed_sidebar: docs #### 参照 [Is window maximized](is-window-maximized.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1831 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md index f30a2a51ce33b4..2dec3d55c189c2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 [System info](system-info.md) -[Is macOS](is-macos.md) \ No newline at end of file +[Is macOS](is-macos.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1573 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md index 07e3edf2780afd..c0bd87379b9f98 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md @@ -57,4 +57,13 @@ displayed_sidebar: docs #### 参照 [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1219 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md index e4d220711fddcb..12b1fc3101f8e5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md @@ -184,4 +184,13 @@ beta[1].golf:{line:10,offset:12}}} *Field and Variable Types* [JSON PARSE ARRAY](json-parse-array.md) [JSON Stringify](json-stringify.md) -[JSON Validate](json-validate.md) \ No newline at end of file +[JSON Validate](json-validate.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1218 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md index 1aa18241208a6f..998b9d2c7154a3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md @@ -229,4 +229,13 @@ JSON ポインターは再帰的に解決されます。これはつまりポイ #### 参照 - \ No newline at end of file + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1478 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md index 9e0860db0f0f41..7b040493f41c82 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md @@ -107,4 +107,13 @@ displayed_sidebar: docs #### 参照 [JSON PARSE ARRAY](json-parse-array.md) -[JSON Stringify](json-stringify.md) \ No newline at end of file +[JSON Stringify](json-stringify.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1228 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md index a5368a7f7ebc8b..9db6372577df1f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md @@ -172,4 +172,13 @@ $myTxtCol="[33,"mike","2017-08-28",false]" #### 参照 [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1217 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md index a6aa9010cf02f8..2a88bd7bc655c2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md @@ -67,4 +67,13 @@ displayed_sidebar: docs #### 参照 -[Selection to JSON](selection-to-json.md) \ No newline at end of file +[Selection to JSON](selection-to-json.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1235 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md index e17de526397ab5..4a2407480a2ead 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md @@ -103,4 +103,13 @@ JSON オブジェクトをスキーマで評価して、その評価エラーの -[JSON Parse](json-parse.md) \ No newline at end of file +[JSON Parse](json-parse.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1456 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md index bcd026b9a63c5f..df37584b80ac5c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Keystroke はユーザがフィールドや入力可能エリアに入力した文字を返します。 @@ -170,4 +167,13 @@ $2->:=$vtNewValue [FILTER KEYSTROKE](filter-keystroke.md) [Form event code](form-event-code.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 390 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md index fc9b1fecc34833..c1155624ecbe15 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md @@ -52,4 +52,13 @@ displayed_sidebar: docs [CALL WORKER](call-worker.md) [Current process name](current-process-name.md) -*ワーカーについて* \ No newline at end of file +*ワーカーについて* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1390 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md index 3cd0db434f5b69..ed3d7f9f84a252 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md @@ -31,4 +31,13 @@ displayed_sidebar: docs #### 参照 [ON ERR CALL](on-err-call.md) -[throw](throw.md) \ No newline at end of file +[throw](throw.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1799 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md index 0bf75572f767e4..12551575bfcd98 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md @@ -41,4 +41,13 @@ displayed_sidebar: docs [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 255 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md index a9fcbb6cbe2d77..2cbb709877b23c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1045 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md index 610e6862dc6309..30719995344b53 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md @@ -33,4 +33,13 @@ displayed_sidebar: docs #### 参照 [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query path](last-query-path.md) \ No newline at end of file +[Last query path](last-query-path.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1046 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md index 144281b17f0edc..a3b72b0714238b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md @@ -31,4 +31,14 @@ displayed_sidebar: docs [End selection](end-selection.md) [FIRST RECORD](first-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 200 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md index 0e63c6aaff9285..fc1a43b5eb7911 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md @@ -38,4 +38,13 @@ displayed_sidebar: docs [Last field number](last-field-number.md) [Is table number valid](is-table-number-valid.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 254 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md index 3a0885ccd0bfba..55c28ee4d827b2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md @@ -139,4 +139,14 @@ Application/UtilitiesフォルダにあるmacOS ターミナルを使用しま #### 参照 [OPEN URL](open-url.md) -[SET ENVIRONMENT VARIABLE](set-environment-variable.md) \ No newline at end of file +[SET ENVIRONMENT VARIABLE](set-environment-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 811 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md index ad95b36fc0fe20..bf3dfcb84b648d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LDAP LOGIN** コマンドは*url* 引数で指定したLDAPサーバーに対し、*login* 引数と *password* 引数に渡された識別子をもって読み込み専用の接続を開きます。サーバーに受け入れられた場合、[LDAP LOGOUT](ldap-logout.md) コマンドが実行されるまで(あるいはプロセスが閉じられるまで)、カレントプロセスにおいてその後に実行される全てのLDAP検索にはこの接続が使用されます。 @@ -97,4 +94,13 @@ LDAPサーバーにログインして、検索をしたい場合を考えます: #### 参照 *LDAP* -[LDAP LOGOUT](ldap-logout.md) \ No newline at end of file +[LDAP LOGOUT](ldap-logout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1326 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md index 43f5c23b75a355..35daea38d04859 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md @@ -12,13 +12,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LDAP LOGOUT** コマンドカレントプロセスにおいて、LDAPサーバーとの接続を(開いていた場合)閉じます。接続がなかった場合、1003エラーが返されて、ログインしていないことが警告されます。 #### 参照 -[LDAP LOGIN](ldap-login.md) \ No newline at end of file +[LDAP LOGIN](ldap-login.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1327 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md index e5155f23298435..0adc0764a1d76f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LDAP SEARCH ALL** コマンドは、ターゲットとなるLDAPサーバー内のオカレンスのうち、定義された条件に合致するものを全て検索します。このコマンドは*LDAP LOGIN*によって開かれたLDAPサーバーへの接続の中で実行される必要があります(それ以外の場合にはエラー1003が返されます)。 @@ -117,4 +114,13 @@ LDAPサーバーには通常、検索のために受け付けられるエント #### 参照 *LDAP* -[LDAP Search](ldap-search.md) \ No newline at end of file +[LDAP Search](ldap-search.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1329 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md index 4691ab32e12f29..1da2115e6d732d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LDAP Search** コマンドはターゲットとなるLDAPサーバー内にて、定義された条件に合致する最初のオカレンスを検索します。このコマンドは*RuntimeVLIncludeIt* によって開かれたLDAPサーバーへの接続の中で実行される必要があります(それ以外の場合にはエラー1003が返されます)。 @@ -85,4 +82,13 @@ displayed_sidebar: docs #### 参照 *LDAP* -[LDAP SEARCH ALL](ldap-search-all.md) \ No newline at end of file +[LDAP SEARCH ALL](ldap-search-all.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1328 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md index 1e3686ec4e360c..f2a42824e9bd87 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md @@ -28,3 +28,13 @@ Lengthの使用例を次に示します。結果を変数*vlResult*に代入し  vlResult:=Length("Topaz") // vlResultは5  vlResult:=Length("Citizen") // vlResultは7 ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 16 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md index c8d9676993f17e..98e5bff631107f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Levelは、現在のブレークまたはヘッダのレベルを調べるために使用します。このコマンドは、On HeaderおよびOn Printing Breakイベント中でレベル数を返します。 @@ -68,4 +65,13 @@ displayed_sidebar: docs [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Form event code](form-event-code.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 101 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md index 75b161023ba975..68d1873fb923e0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md @@ -71,3 +71,13 @@ displayed_sidebar: docs | sessionID | テキスト | REST セッションID | | IPAddress | テキスト | REST セッションを開始したクライアントのID | | isDatastore | ブール | REST リクエストがデータストアから来たものであればTrue | + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1782 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md index 548a0659142925..94287da33864fb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 List item parent コマンドは、親項目の項目参照番号を返します。 @@ -70,4 +67,13 @@ displayed_sidebar: docs [GET LIST ITEM](get-list-item.md) [List item position](list-item-position.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 633 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md index a480dcb5a5ccf3..b0caf48acea3e8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 List item position コマンドは、*list*に渡された項目参照番号またはオブジェクト名リスト中で、*itemRef*で指定した項目の位置を返します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 [Count list items](count-list-items.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 629 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md index dc8b1ea1ac580d..637d531c506d80 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md @@ -14,11 +14,18 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LIST OF CHOICE LISTS コマンドは同期された*numsArr* と *namesArr* 配列に、デザインモードのリストエディタで定義された選択リストの番号と名前を返します。 選択リストの番号はそれが作られた順番に対応します。リストエディタ中、リストは名前順に表示されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 957 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md index 1b937ab53f40c8..59735caf9b7497 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LIST OF STYLE SHEETS**コマンドは、*arrStyleSheets*配列にアプリケーション内のスタイルシートのリストを返します。. @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 [GET STYLE SHEET INFO](get-style-sheet-info.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1255 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md index db042a187d97f3..429e6c24fb56f3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LIST TO ARRAY コマンドは、*list* で指定したリストまたは選択リストの第一レベルの項目で、配列*array*を作成または上書きします。 @@ -86,4 +83,13 @@ displayed_sidebar: docs [ARRAY TO LIST](array-to-list.md) [Load list](load-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 288 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md index 6c9cae39f99814..b956b59a44441c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LIST TO BLOB コマンドは、*blob*に階層リスト*list*を格納します。 @@ -49,4 +46,14 @@ LIST TO BLOBや[BLOB to list](blob-to-list.md "BLOB to list")は、 BLOBに格 [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) [SAVE LIST](save-list.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 556 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md index 83f126b45876a0..1cbba9945ed558 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX COLLAPSE コマンドを使用して *object*と*\** で指定したリストボックスのブレーク行を折りたたみます。 @@ -52,4 +49,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX EXPAND](listbox-expand.md) \ No newline at end of file +[LISTBOX EXPAND](listbox-expand.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1101 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md index e45f50127d695d..7e0bbe60920fb7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX DELETE COLUMN コマンドは、引数*object*および *\** で指定されたリストボックスから1つ以上の列 (表示または非表示) を取り除きます。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get number of columns](listbox-get-number-of-columns.md) -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 830 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md index fe7456585ec3cc..7edf079a445041 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX DELETE ROWS**コマンドは、*object*引数および *\** で指定されたリストボックスから、*rowPosition* から始まるひとつ以上の行(表示または非表示)を削除します。 @@ -37,4 +34,14 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get number of rows](listbox-get-number-of-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 914 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md index 4b42adc99fcd4b..bcc95c0fdca9f0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX DUPLICATE COLUMN**コマンドは、 *object* と *\** 演算子によって指定された列を、プログラムによって実行中のフォームにおいて複製します。(アプリケーションモード) @@ -95,4 +92,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX MOVE COLUMN](listbox-move-column.md) \ No newline at end of file +[LISTBOX MOVE COLUMN](listbox-move-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1273 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md index a7261e8e7d1701..6412dfbb7fd695 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX EXPAND コマンドは*object*と*\**で指定したリストボックスオブジェクトのブレーク行を展開するために使用します。 @@ -81,4 +78,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX COLLAPSE](listbox-collapse.md) \ No newline at end of file +[LISTBOX COLLAPSE](listbox-collapse.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1100 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md index 7fe7712abe6ad9..c061593afa1a2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -62,4 +59,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX GET ARRAYS](listbox-get-arrays.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1278 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md index ad81f1a2cc07a5..d759d85ec1ff5c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET ARRAYS**コマンドは一連の同期化された配列を返し、*object*引数および *\** で指定されたリストボックスの各列(表示または非表示)に関する情報を提供します。 @@ -51,4 +48,13 @@ displayed_sidebar: docs [LISTBOX Get array](listbox-get-array.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 832 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md index 110a349e0fd25f..8d90ff66550589 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get auto row height** コマンドは、*object* 引数および *\** 引数を使用して指定したリストボックスオブジェクトの行の高さのカレンとの最小値あるいは最大値を返します。 @@ -57,4 +54,13 @@ displayed_sidebar: docs [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) \ No newline at end of file +[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1502 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md index fad257c1456f62..37aa7dd3c2319f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX GET CELL COORDINATES コマンドは引数 *\** および*object*によって指定されたリストボックス内の、*column* と *row* 引数で指定したセルの*left*、*top*、*right* および *bottom*にそれぞれ左端、上端、右端、下端の座標を(ポイント単位で)返します。 @@ -55,4 +52,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[OBJECT GET COORDINATES](object-get-coordinates.md) \ No newline at end of file +[OBJECT GET COORDINATES](object-get-coordinates.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1330 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md index f2ceefe85551a4..6f66e11ddd44d1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET CELL POSITION** コマンドは、*object*および *\** で指定されたリストボックスの最後にクリックされた位置に対応する位置、あるいはキーボードアクションで選択されたセルの位置、あるいはマウスの水平・垂直座標を*column* と*row* 引数に返します。 @@ -55,4 +52,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) -[LISTBOX SELECT BREAK](listbox-select-break.md) \ No newline at end of file +[LISTBOX SELECT BREAK](listbox-select-break.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 971 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md index 95f32e93378ab3..592f1e517e04da 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get column formula**コマンドは*object*と*\** 引数で指定したリストボックス列に割り当てられたフォーミュラを返します。フォーミュラはリストボックスプロパティのデータソースが**カレントセレクション**、**命名セレクション**、あるいは**コレクションまたはエンティティセレクション**の場合のみ使用できます。列にフォーミュラが割り当てられていない場合、コマンドは空の文字列を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) \ No newline at end of file +[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1202 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md index dc4736d0e50033..f7ffd97d84a59b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX Get column width コマンドは、*object*引数および *\** で指定された列の幅(ピクセル単位)を返します。*object*引数には、リストボックスの列や列ヘッダを渡すことができます。 @@ -31,4 +28,13 @@ LISTBOX Get column width は列サイズ変更の制限値を *minWidth* と *ma #### 参照 -[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) \ No newline at end of file +[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 834 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md index f43a9e013cec28..a24f789665994f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get footer calculation**コマンドは*object*と*\** 引数で指定したリストボックスのフッターエリアに割り当てられた自動計算のタイプを返します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) \ No newline at end of file +[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1150 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md index 4ec44bd8b834c5..7bd0196cc562e8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get footers height**コマンドは*object*と*\** 引数で指定したリストボックスのフッター行の高さを返します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) \ No newline at end of file +[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1146 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md index be29e029cc165e..af42f45068d50b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET GRID COLORS**コマンドは*object*と*\** 引数で指定したリストボックスの縦横グリッドカラーをそれぞれ返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1200 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md index 3d6e36fb5e9cce..7abc608499f41d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET GRID**コマンドは*object* と *\** 引数で指定したリストボックスオブジェクトの縦横グリッド線の表示/非表示状態をそれぞれ返します。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET GRID](listbox-set-grid.md) \ No newline at end of file +[LISTBOX SET GRID](listbox-set-grid.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1199 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md index f2d1bb1acc47a2..16beb22983d423 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get headers height**コマンドは*object*と*\** 引数で指定したリストボックスのヘッダー行の高さを返します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) \ No newline at end of file +[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1144 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md index 7090223bd0cf0b..c8bc5dd6fe18f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX GET HIERARCHY コマンドを使用して *object*と*\**で指定したリストボックスのプロパティが階層であるかどうかを知ることができます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) \ No newline at end of file +[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1099 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md index 9dc77469ed132f..64a62ab7773f3a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get locked columns**コマンドは*object*と *\** 引数で指定したリストボックスで横スクロールしない列数を返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1152 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md index 48ad469bd58e4f..86473ffd12c546 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX Get number of columns コマンドは、*object*引数および *\** で指定されたリストボックスに存在する列(表示または非表示)の合計数を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX DELETE COLUMN](listbox-delete-column.md) \ No newline at end of file +[LISTBOX DELETE COLUMN](listbox-delete-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 831 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md index 3ba9844695a35a..e4a72bcc9f000c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX Get number of rowsコマンドは、*object*引数および *\** で指定されたリストボックスの行の数を返します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX DELETE ROWS](listbox-delete-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 915 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md index c362e4fd98819f..ff4e00ece6f998 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET OBJECTS** コマンドは 、*object* と*\** 演算子で指定したリストボックスを構成するオブジェクトの、それぞれの名前を含んだ配列を返します。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 [FORM LOAD](form-load.md) -[OBJECT Get type](object-get-type.md) \ No newline at end of file +[OBJECT Get type](object-get-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1302 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md index c4209f791801a3..7d367fcac45d0c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX GET PRINT INFORMATION コマンドは *object*と*\**で指定したリストボックスオブジェクトの印刷に関連する現在の情報を返します。このコマンドを使用してリストボックスの内容の印刷を制御します。 @@ -69,3 +66,13 @@ displayed_sidebar: docs     PAGE BREAK  Until($GlobalPrinted>=500) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1110 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md index 25e0b6343d932e..6634a2f60d7dad 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get property**コマンドは、引数*object*および *\** で指定されたリストボックスまたはカラムについて、*property* の値を返します。 @@ -103,4 +100,13 @@ displayed_sidebar: docs [LISTBOX SET GRID](listbox-set-grid.md) [LISTBOX SET PROPERTY](listbox-set-property.md) -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 917 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md index bb32225f97afa7..30b33a57482d27 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -61,4 +58,13 @@ displayed_sidebar: docs *List Box* [LISTBOX Get row color](listbox-get-row-color.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1271 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md index 4c8354339e49c9..97cdc1f8fb83ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型リストボックスに対してのみ利用できます。 @@ -59,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1658 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md index 151c0404e7eeed..808e53a4f11418 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1269 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md index 0ecc33126ffa14..cf164706057c78 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get row height** コマンドは、*object* および *\** パラメーターで指定されたリストボックスの、*row* で指定された行の高さを返します。行の高さは、[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md)コマンド、あるいはプロパティリストを使うなどしてグローバルに指定するほかに、[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) コマンドを使って個別に指定することもできます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1408 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md index f05bedc6e54e65..027266e26b245f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get rows height**コマンドは、*object*引数および *\** で指定されたリストボックスの現在の行の高さを返します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get row height](listbox-get-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 836 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md index ba86f384815370..e19c610f32a57d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX Get static columns**コマンドは*object* と*\** 引数で指定したリストボックス中のドラッグで移動しない列数を返します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1154 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md index 588c66834eb049..0c01224fb22fa7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX GET TABLE SOURCE**コマンドを使用して、*object*と *\** 引数で指定したリストボックスに表示されるデータの現在のソースを知ることができます。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) \ No newline at end of file +[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1014 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md index cb3c03ff8737e5..8d90d1b78fe073 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX INSERT COLUMN FORMULA**コマンドは、*object*引数および *\** で指定されたリストボックスに列を挿入します。 @@ -121,4 +118,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 970 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md index 8c28bf0f9be107..8611fce46ee710 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX INSERT COLUMN**コマンドは、*object*引数および *\** で指定されたリストボックスに列を挿入します。 @@ -98,4 +95,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX DELETE COLUMN](listbox-delete-column.md) -[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) \ No newline at end of file +[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 829 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md index a8e6e391793d6d..afe6522637d5be 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX INSERT ROWS**コマンドは、*object*引数および *\** で指定されたリストボックスにひとつ以上の新しい行を挿入します。 @@ -35,4 +32,14 @@ displayed_sidebar: docs #### 参照 -[LISTBOX DELETE ROWS](listbox-delete-rows.md) \ No newline at end of file +[LISTBOX DELETE ROWS](listbox-delete-rows.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 913 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md index 4871e569e57fc7..31eecc46622a0f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX MOVE COLUMN**コマンドは、 *object* と *\** によって指定された列を、プログラムによって実行中のフォームにおいて移動させます。(アプリケーションモード)デザインモードで生成されたオリジナルのフォームは変更されません。 @@ -42,4 +39,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) \ No newline at end of file +[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1274 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md index 2a16eb7d027f70..15eaf082eda78a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX MOVED COLUMN NUMBER コマンドは、引数*object*および *\** で指定されたリストボックス内で移動された列の以前の位置*oldPosition*と新しい位置*newPosition*を返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 [Form event code](form-event-code.md) -[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) \ No newline at end of file +[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 844 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md index 40c31fc429741f..730be81e4a444d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX MOVED ROW NUMBER コマンドは、引数*object*および *\** で指定されたリストボックス内で移動された行の以前の位置*oldPosition*と新しい位置*newPosition*を返します。 @@ -34,4 +31,13 @@ displayed_sidebar: docs #### 参照 [Form event code](form-event-code.md) -[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) \ No newline at end of file +[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 837 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md index 61c2bbfd6975f5..0436c386a3a610 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SELECT BREAK** を使用して *object*と*\**で指定したリストボックス中でブレーク行を選択できます。リストボックスは階層モードで表示されていなければなりません。 @@ -63,4 +60,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1117 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md index bb79203a517f41..dd49baf3a603b9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SELECT ROW** コマンドは、 *object* 引数および *\** で指定されたリストボックス内において、*position* に渡した番号の行を選択します。 @@ -55,4 +52,13 @@ displayed_sidebar: docs [LISTBOX INSERT ROWS](listbox-insert-rows.md) [LISTBOX SELECT BREAK](listbox-select-break.md) [LISTBOX SELECT ROWS](listbox-select-rows.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 912 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md index 573d8ed8d0a178..e9171622ddae08 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SELECT ROWS** コマンドはエンティティセレクション型リストボックス/コレクション型リストボックスにおいて、*selection* 引数で指定したエンティティまたはオブジェクトに対応する行を選択します。 @@ -85,4 +82,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1715 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md index e1b686acce1a00..00b185621a545e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -66,4 +63,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get array](listbox-get-array.md) -[LISTBOX GET ARRAYS](listbox-get-arrays.md) \ No newline at end of file +[LISTBOX GET ARRAYS](listbox-get-arrays.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1279 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md index 8b21472f9af281..a631b23ab48187 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET AUTO ROW HEIGHT** コマンドは、*object* 引数および *\** 引数を使用して指定したリストボックスオブジェクトの行の高さの最小値あるいは最大値を、*value* 引数で設定します。 @@ -59,4 +56,13 @@ displayed_sidebar: docs [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1501 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md index e72fd226169b05..48272bf52cb418 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET COLUMN FORMULA**コマンドは*object*と*\** 引数で指定したリストボックス列に割り当てられた*formula*を変更します。フォーミュラはリストボックスプロパティのデータソースが**カレントセレクション**、**命名セレクション**、あるいは**コレクションまたはエンティティセレクション**の場合のみ使用できます。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get column formula](listbox-get-column-formula.md) -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1203 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md index 248cd58f845803..76f9add7712a1e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET COLUMN WIDTH** コマンドを使用し、 *object*引数および *\** で指定されたオブジェクト(リストボックス、列、またはヘッダ)の任意の列の幅、またはすべての列の幅をプログラムから変更することができます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX Get column width](listbox-get-column-width.md) \ No newline at end of file +[LISTBOX Get column width](listbox-get-column-width.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 833 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md index 41da071d7e4f67..c99f85a7a082cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET FOOTER CALCULATION**コマンドは*object* と *\** 引数で指定したリストボックスのフッターに割り当てる自動計算を設定します。 @@ -52,4 +49,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) \ No newline at end of file +[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1140 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md index 872a97d86f50e0..58b14f9254e0c3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET FOOTERS HEIGHT**コマンドは*object*と*\** 引数で指定したリストボックスのフッター行の高さを変更します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX Get footers height](listbox-get-footers-height.md) \ No newline at end of file +[LISTBOX Get footers height](listbox-get-footers-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1145 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md index ae6a23cafa3956..b102a9a181802a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET GRID COLOR** コマンドを使用し、 *object* 引数および *\** で指定されたリストボックスオブジェクト上のグリッドの色を変更することができます。 @@ -37,4 +34,13 @@ displayed_sidebar: docs [LISTBOX GET GRID COLORS](listbox-get-grid-colors.md) [LISTBOX SET GRID](listbox-set-grid.md) -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 842 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md index c0b56139681287..753f292505d87c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET GRID**コマンドを使用し、*object*引数および *\** で指定されたリストボックスのグリッドを構成する、横および縦グリッドラインを表示、または非表示に設定することができます。 @@ -31,4 +28,13 @@ displayed_sidebar: docs [LISTBOX GET GRID](listbox-get-grid.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 841 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md index 63da043d97dbb3..0c46da0afbaf5f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET HEADERS HEIGHT**コマンドは*object*と*\** 引数で指定したリストボックスのヘッダー行の高さを変更します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX Get headers height](listbox-get-headers-height.md) \ No newline at end of file +[LISTBOX Get headers height](listbox-get-headers-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1143 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md index a5d28d3b5a0eb7..a161a911a6cc34 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX SET HIERARCHY コマンドを使用して*object*と*\**で指定されたリストボックスを階層モードにするか非階層モードにするか設定できます。. @@ -53,4 +50,13 @@ aCountry、aRegion、そしてaCity配列をリストボックスの階層とし #### 参照 -[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) \ No newline at end of file +[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1098 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md index 445f2082126417..3635886c1131c6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET LOCKED COLUMNS**コマンドは*object* と*\** 引数で指定したリストボックスで左端からはじめて*numColumns*列をロックします。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get locked columns](listbox-get-locked-columns.md) -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1151 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md index a17d7d1e80cff3..622c71ba48c4af 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET PROPERTY**コマンドは、引数*object*および *\** で指定されたリストボックスまたはカラムについて、*property* に *value* の値を設定します。 @@ -86,4 +83,13 @@ displayed_sidebar: docs *List Box* -[LISTBOX Get property](listbox-get-property.md) \ No newline at end of file +[LISTBOX Get property](listbox-get-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1440 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md index 2e74b8400fcae2..5ac3b5f1250ec3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -66,4 +63,13 @@ displayed_sidebar: docs *List Box* [LISTBOX Get row color](listbox-get-row-color.md) [LISTBOX Get row color as number](listbox-get-row-color-as-number.md) -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1270 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md index 0b26154c878f4a..f4a26a315c8bf5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **注:** このコマンドは配列型のリストボックスに対してのみ有効です。 @@ -79,4 +76,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get row font style](listbox-get-row-font-style.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1268 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md index c85b81ee5a0ee8..16f233cc53af69 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET ROW HEIGHT** コマンドは、*object* および *\** パラメーターで指定されたリストボックスの、*row* で指定された行の高さを変更します。 @@ -84,4 +81,13 @@ displayed_sidebar: docs [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1409 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md index 896c2e54ca24d7..5e545381486f92 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET ROWS HEIGHT**コマンドを使用すると、*object*引数および *\** で指定されたリストボックス内の行の高さをプログラムで変更することができます。 @@ -38,4 +35,13 @@ displayed_sidebar: docs [LISTBOX Get rows height](listbox-get-rows-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 835 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md index 21f05c5d4af231..cd8b1b4783bbb2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET STATIC COLUMNS**コマンドは*object* と *\** 引数で指定したリストボックス中のスタティック列の数を左端から*numColumns*に設定します。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX Get static columns](listbox-get-static-columns.md) -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1153 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md index 1eb99343ff9e58..c0f51c2658d822 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **LISTBOX SET TABLE SOURCE**コマンドは、*\** と *object* 引数で指定されるリストボックスに表示されるデータのソースを変更するために使用します。 @@ -39,4 +36,13 @@ displayed_sidebar: docs #### 参照 -[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) \ No newline at end of file +[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1013 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md index 4055361a11db3a..c2f800ffa9654c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 LISTBOX SORT COLUMNS コマンドは、1つ以上の列の値に基づいて、*object* 引数および*\**で指定されたリストボックスの行に対して、標準の並べ替えを適用します。 @@ -36,3 +33,13 @@ displayed_sidebar: docs リストボックス操作の原則に従い、それぞれの列は同期化されます。つまり列の並び順は、自動的にそのオブジェクトの他のすべての列に受け継がれます。 **注意:** **LISTBOX SORT COLUMNS** コマンドは、*Sortable* リストボックスプロパティを考慮しません。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 916 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md index fc477d34443f8a..162af557eae50f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md @@ -194,3 +194,13 @@ displayed_sidebar: docs ``` **注:** 返されるobject についてのフォーマットについてのより詳細な情報については、4D テクニカルサービスにお問い合わせください。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1528 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md index a67e10a2b591a1..2d3018f066dc68 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Load list は、*listName*で指定した名前のリストのコピーを作成し、そのリスト参照番号を返します。 @@ -51,4 +48,13 @@ displayed_sidebar: docs [CLEAR LIST](clear-list.md) [Is a list](is-a-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 383 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md index 4db1b8b72c4000..e519f205a359e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md @@ -34,4 +34,13 @@ displayed_sidebar: docs [Locked](locked.md) [UNLOAD RECORD](unload-record.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 52 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md index 7780a598e0508a..0e8db361c9c049 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md @@ -41,4 +41,14 @@ displayed_sidebar: docs #### 参照 -[SAVE SET](save-set.md) \ No newline at end of file +[SAVE SET](save-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 185 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md index 3d7c00a3fdead5..834eea16d4c81b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md @@ -44,4 +44,14 @@ displayed_sidebar: docs [BLOB TO VARIABLE](blob-to-variable.md) [DOCUMENT TO BLOB](document-to-blob.md) [RECEIVE VARIABLE](receive-variable.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 74 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md index 7e23d212036a66..43f103cc843084 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md @@ -65,4 +65,13 @@ Resources フォルダの中身は以下のようになっています: #### 参照 -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1105 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md index 1501ee75b53ffe..20c8d20a566c91 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md @@ -54,4 +54,14 @@ Note: XLIFFは大文字小文字を区別します。 #### 参照 -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 991 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md index 604c30d76ab5c9..4311ebe128a437 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md @@ -19,7 +19,7 @@ displayed_sidebar: docs #### 説明 -LOCKED BY は、レコードをロックしたユーザやプロセスに関する情報を返します。*process*, *4Duser*, *sessionUser*, そして*processName* 変数にはそれぞれプロセス番号(\*)、4Dアプリケーションのユーザ名、システムユーザ名、そしてプロセス名が返されます。レコードがロックされている場合、これらの情報を使用してカスタムダイアログ内でユーザに警告できます。 +LOCKED BY は、レコードをロックしたユーザやプロセスに関する情報を返します。変数にはそれぞれプロセス番号(\*)、4Dアプリケーションのユーザ名、システムユーザ名、そしてプロセス名が返されます。レコードがロックされている場合、これらの情報を使用してカスタムダイアログ内でユーザに警告できます。 (\*) これは実際にレコードをロックしたコードが実行されているマシン上でのプロセス番号です。サーバー上で実行されているトリガやメソッドの場合は、サーバーマシン上での"ツイン"プロセスの番号が返されます。リモートアプリケーションで実行されているメソッドの場合には、リモートマシン上のプロセス番号が返されます。 @@ -39,4 +39,13 @@ displayed_sidebar: docs #### 参照 [Locked](locked.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 353 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md index cef247f1025968..64f431948a5d66 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Locked records info** コマンドは、*aTable* で指定したテーブル内で現在ロックされているレコードについての様々な情報を含んだobject を返します。 - -**注:** このコマンドは 4D と 4D Server に対してのみ有効です。4D リモートまたはコンポーネントから呼び出された場合には無効なオブジェクトを返します。ただし、呼び出しメソッドに"Execute on server" オプションが有効化されている場合には呼び出し可能です。この場合返されるオブジェクトには、サーバーの情報が含まれます。コンポーネントから呼び出された場合には、常にホストデータベースに対して適用されます。 +**Locked records info** コマンドは、*aTable* で指定したテーブル内で現在ロックされているレコードについての様々な情報を含んだobject を返します。このコマンドは 4D と 4D Server に対してのみ有効です。4D リモートまたはコンポーネントから呼び出された場合には無効なオブジェクトを返します。ただし、呼び出しメソッドに"Execute on server" オプションが有効化されている場合には呼び出し可能です。この場合返されるオブジェクトには、サーバーの情報が含まれます。コンポーネントから呼び出された場合には、常にホストデータベースに対して適用されます。 返されたオブジェクトは、オブジェクトのコレクションである"records"プロパティを格納しています: @@ -89,4 +87,13 @@ displayed_sidebar: docs #### 参照 -[Locked](locked.md) \ No newline at end of file +[Locked](locked.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1316 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md index 804fcb52db7aab..907f33a7cc18d2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md @@ -33,4 +33,13 @@ displayed_sidebar: docs [Locked records info](locked-records-info.md) [LOAD RECORD](load-record.md) [LOCKED BY](locked-by.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 147 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md index 907be5ce482e6e..97f4b8e326d201 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md @@ -61,3 +61,13 @@ Windowsでデータベースが開かれた時の情報をログしたい場合 #### 参照 [SET DATABASE PARAMETER](set-database-parameter.md) + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 667 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md index c93c54e429dd71..3292cc559f8e89 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md @@ -95,4 +95,14 @@ Blobおよびピクチャーフィールドの場合、保存場所によって #### 参照 -[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) \ No newline at end of file +[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1352 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md index 0336f46198ba15..ab2a0f33789ca1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md @@ -30,4 +30,14 @@ displayed_sidebar: docs #### 参照 -[SELECT LOG FILE](select-log-file.md) \ No newline at end of file +[SELECT LOG FILE](select-log-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 928 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md index 37acbbb6f95fc2..489b0c9a32a460 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md @@ -30,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[Exp](exp.md) \ No newline at end of file +[Exp](exp.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 22 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md index d10784ca2b28d1..95c2af4513f1a7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md @@ -34,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 647 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md index 1f7cd083652a27..369df4d2011d0e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md @@ -115,4 +115,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 550 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md index 80dce520c58616..176601deea54a1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md @@ -47,4 +47,13 @@ displayed_sidebar: docs #### 参照 -[Uppercase](uppercase.md) \ No newline at end of file +[Uppercase](uppercase.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 14 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md index a933aed0acfc2e..45ea010b8536e4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Macintosh command downはMacintoshのcommandキーが押されていると[True](true.md "True")を返します。 - -**Note:** Windowsのプラットフォーム上で呼び出された場合は、WindowsのCtrlキーが押されていると、Macintosh command down はTRUEを返します。 +Macintosh command downはMacintoshのcommandキーが押されていると[True](true.md "True")を返します。Windowsのプラットフォーム上で呼び出された場合は、WindowsのCtrlキーが押されていると、Macintosh command down はTRUEを返します。 #### 例題 @@ -30,4 +28,13 @@ displayed_sidebar: docs [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 546 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md index f45195685b51f0..9991737153ffb6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Macintosh control down コマンドはMacintoshのControlキーが押されていると[True](true.md "True")を返します。 - -**Note:** Windowsのプラットフォーム上で呼び出された場合は、Macintosh control down コマンドは常に[False](false.md "False")を返します。このMacintosh用の同等のキーは、Windows上にありません。 +Macintosh control down コマンドはMacintoshのControlキーが押されていると[True](true.md "True")を返します。Windowsのプラットフォーム上で呼び出された場合は、Macintosh control down コマンドは常に[False](false.md "False")を返します。このMacintosh用の同等のキーは、Windows上にありません。 #### 例題 @@ -30,4 +28,13 @@ displayed_sidebar: docs [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 544 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md index 444da4535a6a68..de9f2b74711a05 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Macintosh option down はMacintoshのoptionキーが押されていると[True](true.md "True")を返します。 - -**Note:** Windowsのプラットフォーム上で呼び出された場合は、WindowsのAltキーが押されていると、Macintosh option down は[True](true.md "True")を返します。 +Macintosh option down はMacintoshのoptionキーが押されていると[True](true.md "True")を返します。Windowsのプラットフォーム上で呼び出された場合は、WindowsのAltキーが押されていると、Macintosh option down は[True](true.md "True")を返します。 #### 例題 @@ -30,4 +28,13 @@ displayed_sidebar: docs [Macintosh control down](macintosh-control-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 545 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md index 72cee13bee036e..754368424d435c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md @@ -108,3 +108,14 @@ vfound:=Match regex( pattern;mytext; start; pos\_found\_array; length\_found\_ar #### エラー管理 エラーのイベントでは、コマンドはエラーを生成しますが、[ON ERR CALL](on-err-call.md "ON ERR CALL")コマンドを用いてインストールされたメソッドで、これを検知することができます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1019 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md index 0ed8a2d824fe16..b7744d384355d6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md @@ -68,4 +68,14 @@ displayed_sidebar: docs #### 参照 -[Min](min.md) \ No newline at end of file +[Min](min.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 3 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md index 6dc924a6821120..afcb13a307fb36 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 MAXIMIZE WINDOW コマンドは、*window*に渡された参照番号のウィンドウを最大化します。この引数が省略されると、同じ効果がカレントプロセスのすべての最前面ウィンドウ (Windows) またはカレントプロセスの最前面ウィンドウ (Mac OS) に適用されます。 @@ -86,4 +83,13 @@ Mac OSのズームボックス [Is window maximized](is-window-maximized.md) [MINIMIZE WINDOW](minimize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 453 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md index 76d0948d5ce195..6e5ff9182294a8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md @@ -26,4 +26,13 @@ displayed_sidebar: docs #### 参照 -[Cache info](cache-info.md) \ No newline at end of file +[Cache info](cache-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1118 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md index 1a3797bd0f7c11..dc0c3ca4a21752 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Menu bar height はメニューバーの高さをピクセル数で返します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs [HIDE MENU BAR](hide-menu-bar.md) [Menu bar screen](menu-bar-screen.md) -[SHOW MENU BAR](show-menu-bar.md) \ No newline at end of file +[SHOW MENU BAR](show-menu-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 440 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md index 4e219dd1afdba8..345ebebce4a665 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Menu bar screen はメニューバーが表示されている画面の番号を返します。 @@ -25,4 +22,13 @@ displayed_sidebar: docs #### 参照 [Count screens](count-screens.md) -[Menu bar height](menu-bar-height.md) \ No newline at end of file +[Menu bar height](menu-bar-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 441 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md index 4e7c8d1a3a7d18..115bfd4c415451 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Menu selected** はフォームが表示されているときのみ使用できます。このコマンドはメニューから選択されたメニュー項目を検出し、階層サブメニューの場合はサブメニューの参照を返します。 @@ -61,4 +58,14 @@ displayed_sidebar: docs #### 参照 -*メニューの管理* \ No newline at end of file +*メニューの管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 152 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md index d5b6d2efae1469..7a49fab348c3dd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 MESSAGE コマンドは、通常ユーザに対して何らかの動作を知らせるために使用します。このコマンドは画面上の特別なメッセージウィンドウに *message* を表示します。このメッセージウィンドウは、 [Open window](open-window.md) を使って(後述)あらかじめ開かれたウィンドウを使用していないかぎり、MESSAGE コマンドをコールするたびに表示されたり閉じられたりします。このメッセージは一時的なもので、フォームを表示する、またはメソッドの実行が終了するとすぐに消去されます。別のMESSAGE コマンドを実行すると古いメッセージは、消去されます。 @@ -114,4 +111,13 @@ MESSAGEをコールするたびに、以下のウィンドウが表示されて [CLOSE WINDOW](close-window.md) [ERASE WINDOW](erase-window.md) [GOTO XY](goto-xy.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 88 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md index 5cc3c3ad36021c..d7d6197b237ba9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md @@ -66,4 +66,13 @@ displayed_sidebar: docs #### 参照 -[MESSAGES ON](messages-on.md) \ No newline at end of file +[MESSAGES ON](messages-on.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 175 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md index 9be54db6dc2497..90fb9ae93ec568 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md @@ -18,4 +18,13 @@ displayed_sidebar: docs #### 参照 -[MESSAGES OFF](messages-off.md) \ No newline at end of file +[MESSAGES OFF](messages-off.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 181 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md index 827aed4e3686de..87fac4fb0d1bed 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Method called on error** コマンドはカレントプロセス、または*scope* 引数で指定したスコープにおいて[ON ERR CALL](on-err-call.md) コマンドでインストールされたメソッドの名前を返します。 - -*scope* 引数には、エラー処理メソッドの名前を取得したい実行コンテキストを渡します。以下の定数のいずれか1つを使用することができます: +**Method called on error** コマンドはカレントプロセス、または*scope* 引数で指定したスコープにおいて[ON ERR CALL](on-err-call.md) コマンドでインストールされたメソッドの名前を返します。引数には、エラー処理メソッドの名前を取得したい実行コンテキストを渡します。以下の定数のいずれか1つを使用することができます: | 定数 | 値 | コメント | | ------------------------- | - | ------------------------------------------------ | @@ -44,4 +42,13 @@ displayed_sidebar: docs #### 参照 *Error Handler* -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 704 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md index 1ccb35e64016e4..f5067adcc10f61 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Method called on event コマンドは、[ON EVENT CALL](on-event-call.md "ON EVENT CALL")コマンドでインストールされたメソッド名を返します。 @@ -24,4 +21,13 @@ displayed_sidebar: docs #### 参照 -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 705 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md index bb5aaa9ecfaa8d..9c8b579e9741ff 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD Get attribute**コマンドは*path*引数で指定されたプロジェクトメソッドの*attribType*属性値を返します。このコマンドはプロジェクトメソッドに対してのみ動作します。無効なパスを渡すとエラーが生成されます。 @@ -41,4 +38,13 @@ displayed_sidebar: docs #### 参照 -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1169 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md index 057e02b2aab111..6b6cc376e09aea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md @@ -61,4 +61,13 @@ displayed_sidebar: docs #### 参照 -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1334 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md index 0258b8658f2026..0232690d70d916 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET CODE**コマンドは*path*引数で指定したメソッドの内容を*code*に返します。このコマンドはデータベースメソッド、クラス定義、トリガー、プロジェクトメソッド、フォームメソッド、そしてオブジェクトメソッド等すべてのタイプのメソッドコードを返すことができます。 @@ -120,4 +117,13 @@ displayed_sidebar: docs #### 参照 [METHOD SET CODE](method-set-code.md) -*フォーミュラ内でのトークンの使用* \ No newline at end of file +*フォーミュラ内でのトークンの使用* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1190 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md index c0a128594e17a2..cfc3b3ba7eff18 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET COMMENTS**コマンドは*path*引数で指定したメソッドのドキュメンテーションを*comments*引数に返します。 @@ -55,4 +52,13 @@ displayed_sidebar: docs #### 参照 -[METHOD SET COMMENTS](method-set-comments.md) \ No newline at end of file +[METHOD SET COMMENTS](method-set-comments.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1189 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md index 1ea32ab587b4b8..8b452849bf4a73 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET FOLDERS**コマンドは4Dエクスプローラーのホームページに作成されたフォルダー名を*arrNames*配列に返します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1206 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md index 7f64a8ccbc9242..bc52de4ead1a70 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET MODIFICATION DATE**コマンドは*path*引数で指定されたメソッドの更新日と時刻をそれぞれ*modDate*と*modTime*引数に返します。 @@ -70,3 +67,13 @@ displayed_sidebar: docs ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1170 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md index b43df18c8e875c..01a631ca654422 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md @@ -39,3 +39,13 @@ displayed_sidebar: docs   // ホストデータベース内で、特定の文字から始まるメソッドのみをリストする  METHOD GET NAMES(t_Names;"web_@";*) ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1166 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md index 9aa2893d19aaad..9bdeef9371969c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD Get path**コマンドはメソッドの完全な内部パス名を返します。 @@ -66,4 +63,13 @@ displayed_sidebar: docs [Current method path](current-method-path.md) [METHOD OPEN PATH](method-open-path.md) -[METHOD RESOLVE PATH](method-resolve-path.md) \ No newline at end of file +[METHOD RESOLVE PATH](method-resolve-path.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1164 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md index 8275fb345871af..ba32f3a0150eb7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET PATHS FORM**コマンドはすべてのフォームオブジェクトとフォームメソッドの内部的なパス名と名前を*arrPaths*配列に返します。フォームメソッドには{formMethod}とラベルが付けられます。 @@ -71,4 +68,13 @@ displayed_sidebar: docs #### 参照 -[FORM GET NAMES](form-get-names.md) \ No newline at end of file +[FORM GET NAMES](form-get-names.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1168 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md index e4b2b3050874ae..44e519ca241bfe 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD GET PATHS**コマンドはアプリケーションのうち、*methodType*引数で指定したタイプであるメソッドの内部的なパス名と名前を*arrPaths*配列に返します。 @@ -86,4 +83,13 @@ displayed_sidebar: docs #### 参照 [Current method path](current-method-path.md) -[METHOD GET FOLDERS](method-get-folders.md) \ No newline at end of file +[METHOD GET FOLDERS](method-get-folders.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1163 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md index 5f9ad542f50724..2845d5c5bd1a30 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD OPEN PATH**コマンドは内部パス名が*path* 引数であるメソッドを4Dメソッドエディターで開きます。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 [METHOD Get path](method-get-path.md) -*デザインオブジェクトアクセスコマンド* \ No newline at end of file +*デザインオブジェクトアクセスコマンド* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1213 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md index bb3ca92d214ed9..feb2a0772f8f9d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD RESOLVE PATH**コマンドは*path*引数に渡された内部パス名を解決し、*methodType*、*ptrTable*、*objectName*、そして *formObjectName*引数にそれぞれ情報を返します。 @@ -84,4 +81,13 @@ displayed_sidebar: docs #### 参照 -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1165 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md index 268f476d69fa63..7bf594bccbdba6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD SET ACCESS MODE**コマンドは他のユーザーやプロセスによって更新のためにさきにロードされているオブジェクトに書き込みアクセスを行おうとした時の振る舞いを設定します。このコマンドのスコープはカレントセッションです。 @@ -27,3 +24,13 @@ displayed_sidebar: docs | On object locked abort | 倍長整数 | 0 | オブジェクトのロードが中断された (デフォルト動作) | | On object locked confirm | 倍長整数 | 2 | 再試行するか中断するか選択できるようにするためダイアログを表示します。リモートモードではこのオプションはサポートされません (ロードは中断されます)。 | | On object locked retry | 倍長整数 | 1 | オブジェクトがリリースされるまでオブジェクトのロードを試行します。 | + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1191 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md index c748a1f6ba9df1..f5b5f2fb24f103 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD SET ATTRIBUTE**コマンドは*path*引数で指定されたプロジェクトメソッドの*attribType*属性の値を設定します。このコマンドはプロジェクトメソッドに対してのみ動作します。無効な *path*を渡すとエラーが生成されます。 @@ -69,4 +66,13 @@ displayed_sidebar: docs *Design Object Access* [METHOD Get attribute](method-get-attribute.md) -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1192 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md index b77ff31d30170c..4663cf5eff957a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD SET ATTRIBUTES** コマンドは、*path* 引数で指定したメソッドの、*attributes* 引数で指定した値を設定することができます。 @@ -53,4 +50,13 @@ displayed_sidebar: docs #### 参照 [METHOD GET ATTRIBUTES](method-get-attributes.md) -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1335 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md index 3a74d1bad8beb0..1f867f74377b34 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD SET CODE**コマンドは*path*引数で指定したメソッドのコードを*code*引数に渡した内容で置き換えます。 @@ -101,4 +98,13 @@ displayed_sidebar: docs #### 参照 -[METHOD GET CODE](method-get-code.md) \ No newline at end of file +[METHOD GET CODE](method-get-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1194 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md index 1b9240474374d4..e87a33a15883b4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **METHOD SET COMMENTS**コマンドは*path*引数で指定したメソッドのドキュメンテーションを*comments*引数の内容で置き換えます。 @@ -65,4 +62,13 @@ displayed_sidebar: docs #### 参照 -[METHOD GET COMMENTS](method-get-comments.md) \ No newline at end of file +[METHOD GET COMMENTS](method-get-comments.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1193 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md index 5751a79299edff..dd2752d7673910 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md @@ -46,4 +46,13 @@ displayed_sidebar: docs [Current time](current-time.md) [Tickcount](tickcount.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 459 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md index 5936f77010387e..c9badb349bf2da 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md @@ -76,4 +76,14 @@ displayed_sidebar: docs #### 参照 -[Max](max.md) \ No newline at end of file +[Max](max.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 4 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md index 6ca4cdca0f0ad3..2a44d526849a71 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 MINIMIZE WINDOW コマンドは、*window*に渡された参照番号のウィンドウサイズを、最大化される前に戻します。この引数が省略されると、アプリケーションのそれぞれのウィンドウ (Windows) またはカレントプロセスの最前面ウィンドウ (Mac OS) に適用されます。 @@ -53,4 +50,13 @@ Mac OS #### 参照 [MAXIMIZE WINDOW](maximize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 454 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md index 2c84850a355cd6..698792a4b58e57 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md @@ -44,4 +44,13 @@ displayed_sidebar: docs #### 参照 -[On Mobile App Authentication データベースメソッド](on-mobile-app-authentication-database-method.md) \ No newline at end of file +[On Mobile App Authentication データベースメソッド](on-mobile-app-authentication-database-method.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1596 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md index 4232fabb4d458e..4cb76b676eb29e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md @@ -19,8 +19,6 @@ displayed_sidebar: docs **Mod**コマンドは、*number1*を*number2*で割り算し、その余りの整数を返します。 -**Notes:** - * **Mod**は整数、倍長整数、実数を受け入れます。しかし*number1*または*number2*が実数の場合、それらの値は丸められてから**Mod**計算を実行します。 * (2^31を超える) サイズの大きな実数を用いてModを使用する場合は注意が必要です。この場合、処理が標準的なプロセッサの計算能力の限界に達してしまう可能性があります。 @@ -37,3 +35,13 @@ displayed_sidebar: docs  vlResult:=Mod(4;2) // vlResult gets 0  vlResult:=Mod(3.5;2) // vlResult gets 0 ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 98 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md index 1dbece835ef7b8..98ae0de23cd836 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md @@ -41,4 +41,13 @@ displayed_sidebar: docs [Modified](modified.md) [Old](old.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 314 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md index 4720c0bb405bf3..60cdcfc09dfe7f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Modified** はデータ入力中、プログラムを使用して*field* に値が代入されていたり、データ入力中に値が編集された場合に、[True](true.md "True")を返します。**Modified** コマンドはフォームメソッド(またはフォームメソッドから呼ばれたサブルーチン)で使用されなければなりません。 @@ -69,4 +66,13 @@ displayed_sidebar: docs #### 参照 [Form event code](form-event-code.md) -[Old](old.md) \ No newline at end of file +[Old](old.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 32 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md index 3bcebe382d3585..7a35e9f521d838 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 MODIFY RECORDコマンドは、*aTable*テーブルまたは*aTable*引数を省略した場合デフォルトテーブルのカレントレコードを修正するために使用します。MODIFY RECORDは、カレントプロセスにレコードがまだロードされていない場合にレコードをロードし、カレント入力フォームにレコードを表示します。カレントレコードがなければ、MODIFY RECORDは何も行いません。またMODIFY RECORDはカレントセレクションに影響を与えません。 @@ -47,4 +44,15 @@ MODIFY RECORDを使用したが、ユーザがレコードのデータを変更 [Locked](locked.md) [Modified record](modified-record.md) [READ WRITE](read-write.md) -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 57 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md index 3d511d3bd56d8a..aeafed317d60df 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 MODIFY SELECTIONは、[DISPLAY SELECTION](display-selection.md "DISPLAY SELECTION")とほぼ同じ機能を提供します。詳細については[DISPLAY SELECTION](display-selection.md "DISPLAY SELECTION")の説明を参照してください。2つのコマンドの違いを以下にあげます: @@ -31,4 +28,14 @@ displayed_sidebar: docs [DISPLAY SELECTION](display-selection.md) [Form event code](form-event-code.md) -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 204 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md index d7101d16f018d1..733d91d57f30cf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md @@ -138,4 +138,13 @@ displayed_sidebar: docs #### 参照 [START MONITORING ACTIVITY](start-monitoring-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1713 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md index 247ae17eef5a25..0676c9f041b8eb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Month of コマンドは*aDate*の月を返します。 - -**Note:** Month of は月の数値を返します。月の名前ではありません (例題 1参照)。 +Month of コマンドは*aDate*の月を返します。Month of は月の数値を返します。月の名前ではありません (例題 1参照)。 この関数から返される値を比較するために、4Dは*Days and Months*テーマに定義済み定数を提供しています: @@ -54,4 +52,13 @@ displayed_sidebar: docs #### 参照 [Day of](day-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 24 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md index 5439860c666a97..493f4e93d1d07d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md @@ -39,4 +39,13 @@ displayed_sidebar: docs [ON EVENT CALL](on-event-call.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 468 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md index 5eabe8739aa036..5b33442b12f7a5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -MOVE DOCUMENTコマンドを使用して、ドキュメントを移動、ドキュメント名を変更します。 - -*srcPathname* に既存ドキュメントへの完全なパス名、*dstPathname*に新しい名前と位置を指定します。 +MOVE DOCUMENTコマンドを使用して、ドキュメントを移動、ドキュメント名を変更します。に既存ドキュメントへの完全なパス名、*dstPathname*に新しい名前と位置を指定します。 **警告:** MOVE DOCUMENTを使用して、同じボリュームのディレクトリの間でドキュメントを移動させることができます。2つの異なるボリュームの間でドキュメントを移動させたい場合、[COPY DOCUMENT](copy-document.md "COPY DOCUMENT") を使用して、ドキュメントを移動させます。そして[DELETE DOCUMENT](delete-document.md "DELETE DOCUMENT")を使用してそのドキュメントのオリジナルのコピーを削除します。 @@ -50,4 +48,14 @@ displayed_sidebar: docs #### 参照 -[COPY DOCUMENT](copy-document.md) \ No newline at end of file +[COPY DOCUMENT](copy-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 540 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md index 7ce45b47d35d91..e53865b381bc1c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md @@ -111,4 +111,13 @@ displayed_sidebar: docs [ORDER BY](order-by.md) [SELECTION TO ARRAY](selection-to-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 718 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md index d692d23a88521e..3cbbc853def230 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md @@ -54,4 +54,13 @@ displayed_sidebar: docs [Discover data key](discover-data-key.md) [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[Register data key](register-data-key.md) \ No newline at end of file +[Register data key](register-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1611 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md index 68d48c67fff4c2..ac5d108f3000be 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 New list は、新しい空の階層リストをメモリに作成し、ユニークなリスト参照番号を返します。 @@ -46,4 +43,13 @@ New listを使用して階層リストを作成した後は、以下のことが [DELETE FROM LIST](delete-from-list.md) [INSERT IN LIST](insert-in-list.md) [LIST TO BLOB](list-to-blob.md) -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 375 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md index 97209a12238786..a16baaac262470 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md @@ -31,3 +31,14 @@ displayed_sidebar: docs #### エラー管理 エラーが発生すると、コマンドは[ON ERR CALL](on-err-call.md "ON ERR CALL") コマンドでとらえることが可能なエラーコードを生成します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 926 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md index 690dac4b823f8d..943a28b8b79f5a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md @@ -105,4 +105,13 @@ displayed_sidebar: docs #### 参照 -[New shared object](new-shared-object.md) \ No newline at end of file +[New shared object](new-shared-object.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1471 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md index 93b6a574c8c25e..8430ac50694571 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md @@ -104,4 +104,13 @@ displayed_sidebar: docs [Execute on server](execute-on-server.md) *プリエンプティブ4Dプロセス* -*プロセス* \ No newline at end of file +*プロセス* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 317 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md index 9319ed85622da0..f22e39f574090a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md @@ -66,4 +66,13 @@ displayed_sidebar: docs [New object](new-object.md) [New shared collection](new-shared-collection.md) -*共有オブジェクトと共有コレクション* \ No newline at end of file +*共有オブジェクトと共有コレクション* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1526 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md index b79376a1b5b9f2..08e0afacbd6a84 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md @@ -29,4 +29,14 @@ NEXT RECORDでカレントセレクションの最後を超えてカレントレ [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 51 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md index 9ce73706ae319d..d04d2dff83c080 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Next window コマンドは、*window* に渡したウィンドウの後ろにあるウィンドウの参照番号を、ウィンドウの重なり順に基づき、返します。 #### 参照 -[Frontmost window](frontmost-window.md) \ No newline at end of file +[Frontmost window](frontmost-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 448 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md index 3946f243421292..f76cc538e2d88d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md @@ -42,4 +42,13 @@ displayed_sidebar: docs #### 参照 -[DEFAULT TABLE](default-table.md) \ No newline at end of file +[DEFAULT TABLE](default-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 993 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md index ff57b7e9e5f48e..800af1aa1af9cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md @@ -31,4 +31,13 @@ displayed_sidebar: docs #### 参照 [False](false.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 34 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md index c81d3c62a12c1f..e5da9853002166 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 NOTIFY RESOURCES FOLDER MODIFICATION コマンドを使用して、接続されたすべての4D マシンに、**Resources**フォルダが更新された旨の通知の送信を、4D Server に強制することができます。この結果、リモートの4Dマシンはローカル**Resources**フォルダを同期できます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[Get 4D folder](get-4d-folder.md) \ No newline at end of file +[Get 4D folder](get-4d-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1052 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md index 7135ad7efd2e05..310b8fc2695109 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md @@ -132,4 +132,13 @@ displayed_sidebar: docs [Is field value Null](is-field-value-null.md) [OB SET NULL](ob-set-null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1517 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md index a13fd64b310750..5fd45c37c9dae8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md @@ -83,4 +83,13 @@ Num が特別に扱う3つの指定された文字があります。(*separator* [Bool](bool.md) [GET SYSTEM FORMAT](get-system-format.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 11 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md index 3f801acc54de01..cc16ef162721e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md @@ -42,4 +42,13 @@ Polygon というクラスを作成した場合を考えます: #### 参照 -[OB Instance of](ob-instance-of.md) \ No newline at end of file +[OB Instance of](ob-instance-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1730 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md index fe65ab47750537..672f12ee52f0fd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md @@ -20,9 +20,6 @@ displayed_sidebar: docs #### 説明 **OB Copy**コマンドは、 *object*のプロパティ、オブジェクト内オブジェクト、値を内包した完全なコピー(ディープコピー)のオブジェクトを返します。 - -* 第一シンタックス: **OB Copy(object{; resolvePtrs})** - *object* で指定したオブジェクトがポインター型の値を格納している場合、複製先にもポインターが格納されます。あるいは、*resolvePtrs* 引数に **True** を渡すことで、複製時に値を解決させることもできます。この場合、*object* 内で値を指定しているポインターは解決され、解決済みの値が使用されます。 **注:** *object* 引数のオブジェクトのプロパティが共有オブジェクトあるいは共有コレクションであった場合、それらのプロパティは返されたコピーの中では標準の(共有でない)オブジェクトになります。共有オブジェクトを返したい場合には第二シンタックスを使用してください(以下参照) @@ -166,4 +163,13 @@ displayed_sidebar: docs #### 参照 [OB Get](ob-get.md) -*共有オブジェクトと共有コレクション* \ No newline at end of file +*共有オブジェクトと共有コレクション* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1225 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md index 4b1c504ff7775c..9787a33d9e4fe4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OB Entries** コマンドは*object* 引数で指定したオブジェクトのコンテンツを、キー/値のペアとして格納したオブジェクトのコレクションを返します。 @@ -56,4 +53,13 @@ displayed_sidebar: docs #### 参照 [OB Keys](ob-keys.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1720 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md index 37bc2e3eaf25bc..286b90451cf15b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB GET ARRAY**コマンドは、 *object* 引数で指定したランゲージオブジェクトの、*property* 引数で指定したプロパティの中に保存されている値の配列を *array* という配列に返します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB GET ARRAY**コマンドは、 *object* 引数で指定したランゲージオブジェクトの、*property* 引数で指定したプロパティの中に保存されている値の配列を *array* という配列に返します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数には、値を取得したいプロパティのラベルを渡します。*property* 引数では、大文字と小文字は区別されることに注意して下さい。 @@ -52,4 +50,13 @@ displayed_sidebar: docs #### 参照 [OB SET ARRAY](ob-set-array.md) -*コレクションと4D配列間での型の変換* \ No newline at end of file +*コレクションと4D配列間での型の変換* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1229 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md index cd79060e561061..920dd4773d8b4c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB GET PROPERTY NAMES**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中に含まれているプロパティの名前を、 *arrProperties* という名前のテキスト配列に入れて返します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB GET PROPERTY NAMES**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中に含まれているプロパティの名前を、 *arrProperties* という名前のテキスト配列に入れて返します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *arrProperties* 引数にはテキスト配列を渡します。配列が存在しない場合、コマンドが自動的に作成してリサイズします。 @@ -97,4 +95,13 @@ displayed_sidebar: docs #### 参照 [OB Get type](ob-get-type.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1232 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md index c0fe1aef9ae103..ebdc5cdd2d7fc2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB Get type**コマンドは、*object* で指定したランゲージオブジェクトの *property* に関連付けられた値の型を返します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB Get type**コマンドは、*object* で指定したランゲージオブジェクトの *property* に関連付けられた値の型を返します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数には、値の型を取得したいプロパティのラベルを渡します。 *property* 引数では、大文字と小文字は区別されることに注意して下さい。 @@ -53,4 +51,13 @@ displayed_sidebar: docs #### 参照 [OB GET PROPERTY NAMES](ob-get-property-names.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1230 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md index 3cacc4fc975784..4ace99a7ba853e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md @@ -221,4 +221,13 @@ displayed_sidebar: docs *Field and Variable Types* [OB Copy](ob-copy.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1224 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md index 77a1c88c61bd95..85112533b5ad36 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB Instance of** コマンドは*object* 引数のオブジェクトが*class* 引数で指定されたクラスまたはその子クラスに属していればtrue を、それ以外の場合にはfalse を返します。 - -*class* 引数のクラスが有効なクラスオブジェクトでない場合、エラー-10745 が返されます。 +**OB Instance of** コマンドは*object* 引数のオブジェクトが*class* 引数で指定されたクラスまたはその子クラスに属していればtrue を、それ以外の場合にはfalse を返します。引数のクラスが有効なクラスオブジェクトでない場合、エラー-10745 が返されます。 #### 例題 @@ -52,4 +50,13 @@ Polygon というクラスを作成した場合を考えます: #### 参照 -[OB Class](ob-class.md) \ No newline at end of file +[OB Class](ob-class.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1731 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md index 8d3f29b8fb284a..375851be14b0c1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB Is defined**コマンドは、*object* または *property* が定義済みである場合にはTrueを返し、それ以外の場合にはFalseを返します。 - -*object* 引数で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB Is defined**コマンドは、*object* または *property* が定義済みである場合にはTrueを返し、それ以外の場合にはFalseを返します。引数で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数を省略した場合、コマンドは *object* が定義済みかどうかを調べます。オブジェクトの中身が初期化されていれば定義済みであるとみなされます。 @@ -61,4 +59,13 @@ displayed_sidebar: docs #### 参照 -[OB Is empty](ob-is-empty.md) \ No newline at end of file +[OB Is empty](ob-is-empty.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1231 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md index a449c97c9bf83d..9a34674d6760bd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**OB Is empty**コマンドは、*object* が未定義か空である場合にはTrueを返し、*object* が定義済み(初期化済み)で少なくとも一つのプロパティを内包している場合にはFalseを返します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB Is empty**コマンドは、*object* が未定義か空である場合にはTrueを返し、*object* が定義済み(初期化済み)で少なくとも一つのプロパティを内包している場合にはFalseを返します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 #### 例題 @@ -42,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[OB Is defined](ob-is-defined.md) \ No newline at end of file +[OB Is defined](ob-is-defined.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1297 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md index cb70758be23ffe..1135697f6ce846 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md @@ -19,3 +19,13 @@ displayed_sidebar: docs **OB Is shared** コマンドは*toCheck* 引数のオブジェクトまたはコレクションが共有の場合には**True** を返します。それ以外の場合には**False** を返します(*共有オブジェクトと共有コレクション*参照)。 このコマンドは*toCheck* 引数に共有可能なエンティティセレクションを渡した場合には**True** を返します(参照)。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1759 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md index e7837bd5c0da01..a81730e93e33dd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OB Keys** コマンドは、*object* 引数で指定したオブジェクト内の列挙可能な全てのプロパティ名を文字列として格納したコレクションを返します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 [OB Entries](ob-entries.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1719 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md index 21e63826440758..9ae4901cf3405b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**OB REMOVE**コマンドは、*object* 引数で指定したランゲージオブジェクトの、 *property* 引数で指定したプロパティを削除します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して定義されているか、4Dオブジェクトフィールドが指定されている必要があります。 +**OB REMOVE**コマンドは、*object* 引数で指定したランゲージオブジェクトの、 *property* 引数で指定したプロパティを削除します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して定義されているか、4Dオブジェクトフィールドが指定されている必要があります。 *property* 引数には、削除したいプロパティのラベルを渡します。 *property* 引数では、大文字と小文字は区別されることに注意して下さい。 @@ -37,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1226 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md index 3d3604ffd18105..ce2b4f2e1c7fdf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB SET ARRAY**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中の *property* と関連付ける配列 *array* を定義します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB SET ARRAY**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中の *property* と関連付ける配列 *array* を定義します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数には、作成または修正したいプロパティのラベル(名前)を渡して下さい。オブジェクト内に指定されたプロパティが存在する場合、その値は指定した値で上書きされます。プロパティが存在しない場合、新たにプロパティが作成されます。 *property* 引数では、大文字と小文字は区別されることに注意して下さい。 @@ -133,4 +131,13 @@ displayed_sidebar: docs [OB GET ARRAY](ob-get-array.md) [OB SET](ob-set.md) -*コレクションと4D配列間での型の変換* \ No newline at end of file +*コレクションと4D配列間での型の変換* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1227 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md index 041c1763fb6b81..959e7bddad8e1e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**OB SET NULL**コマンドは、*object* 引数で指定したランゲージオブジェクトの中に**null値**を保存します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB SET NULL**コマンドは、*object* 引数で指定したランゲージオブジェクトの中に**null値**を保存します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数には、 **null** の値を保存したいプロパティのラベル(名前)を指定します。オブジェクト内に指定されたプロパティが存在する場合、その値は **null** で上書きされます。プロパティが存在しない場合、新たにプロパティが作成されます。 *property* 引数では、大文字と小文字は区別されることに注意して下さい。 @@ -40,4 +38,13 @@ Lea の "age" というプロパティにnull を入れる場合: [Null](null.md) [OB GET PROPERTY NAMES](ob-get-property-names.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1233 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md index c929c54cd2afb0..ef388d8bc04725 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OB SET**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中に、一つ以上の *プロパティ*/*値* のペアを作成もしくは変更します。 - -*object* で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 +**OB SET**コマンドは、 *object* 引数で指定したランゲージオブジェクトの中に、一つ以上の *プロパティ*/*値* のペアを作成もしくは変更します。で指定するオブジェクトは、 [C\_OBJECT](c-object.md) コマンドを使用して作成されている、あるいはオブジェクトフィールドが選択されている必要があります。 *property* 引数には、作成または修正したいプロパティのラベル(名前)を渡して下さい。*object* 内に指定されたプロパティが存在する場合、その値は指定した値で上書きされます。プロパティが存在しない場合、新たにプロパティが作成されます。 @@ -197,4 +195,13 @@ displayed_sidebar: docs [OB Get](ob-get.md) [OB REMOVE](ob-remove.md) [OB SET ARRAY](ob-set-array.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1220 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md index 2f7c6c5a23b0e1..0d8ce5ed7ac900 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OB Values** コマンドは、*object* 引数で指定したオブジェクトの内の列挙可能なプロパティの値を格納したバリアントのコレクションを返します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 [OB Entries](ob-entries.md) -[OB Keys](ob-keys.md) \ No newline at end of file +[OB Keys](ob-keys.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1718 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md index b05b9bcaaf716c..93fe050bcaf75a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT DUPLICATE**コマンドを使用して、*object*引数で指定したオブジェクトのコピーを作成できます。コピーはアプリケーションモードで実行されているフォームのコンテキストで生成されます。デザインモードのソースフォームは変更されません。 @@ -104,4 +101,14 @@ displayed_sidebar: docs *Form Objects (Access)* [OBJECT Get pointer](object-get-pointer.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1111 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md index 4047eb0074827b..bfd3cc46ac98d4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get action** コマンドは*object* 引数と*\** 引数によって指定されたオブジェクトに割り当てられた標準アクションの名前と引数(あれば)を返します。 @@ -45,4 +42,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET ACTION](object-set-action.md) \ No newline at end of file +[OBJECT SET ACTION](object-set-action.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1457 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md index c753ce75b4928f..39ec2fd8935d9b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get auto spellcheck**コマンドは*object*と*\** 引数で指定したオブジェクトのカレントプロセスの自動スペルチェックオプションに関する設定値を返します。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) \ No newline at end of file +[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1174 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md index e059af076edb98..47502f75180c8c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET BEST SIZE** コマンドは、引数 *\** と *object*で指定されたフォームオブジェクトの“最適な”幅と高さを、引数*bestWidth* と *bestHeight*に返します。これらの値はピクセルで表わされます。このコマンドは複雑なレポートの表示や印刷に役立ち、[OBJECT MOVE](object-move.md) コマンドとともに使用します。 @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 717 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md index 46c4e56434a490..cbc31dacf6df4a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get border style**コマンドは、*object*引数で指定したオブジェクトに設定された境界線スタイルを返します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET BORDER STYLE](object-set-border-style.md) \ No newline at end of file +[OBJECT SET BORDER STYLE](object-set-border-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1263 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md index 29b400c05c6632..7b731dcc08629a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get context menu**コマンドは、引数 *object* と *\** で指定したオブジェクトの、"コンテキストメニュー"オプションのカレントの状態を返します。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET CONTEXT MENU](object-set-context-menu.md) \ No newline at end of file +[OBJECT SET CONTEXT MENU](object-set-context-menu.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1252 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md index 6b5cd2f9a29132..89be8ac896a769 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT GET COORDINATES コマンドは、引数 *\** および*object*によって指定された、現在のフォームのオブジェクトの*left*, *top*, *right* および *bottom*の座標 (ポイント) を返します。 @@ -86,4 +83,13 @@ displayed_sidebar: docs [CONVERT COORDINATES](convert-coordinates.md) [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) [OBJECT MOVE](object-move.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 663 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md index 5073913805221c..99f0ea6ad01b4f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get corner radius** コマンドは*object* 引数で指定されたオブジェクトの角の半径のカレントの値を返します。この値は、*角の半径プロパティ* を使用してフォームレベルで設定されているか、あるいは[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) コマンドを使用してカレントプロセスに対して設定することが可能です。 @@ -48,4 +45,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) \ No newline at end of file +[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1324 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md index 9e2f0ecf254a78..ddaa41ebeb94ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get data source**コマンドは、引数 *object* と *\** で指定したオブジェクトの、カレントのデータソースを返します。 @@ -41,4 +38,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1265 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md index 87dbe2e0548c50..c838d32f3718e0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET DRAG AND DROP OPTIONS**コマンドは*object*と*\** 引数で指定したオブジェクトのカレントプロセスのドラッグ&ドロップオプションを返します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) \ No newline at end of file +[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1184 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md index 1012e8811e052a..e0a3a7b74d7c42 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get enabled コマンドは *object*で指定されたオブジェクトまたはオブジェクトグループがフォーム中で有効ならTrueを、無効ならFalseを返します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET ENABLED](object-set-enabled.md) \ No newline at end of file +[OBJECT SET ENABLED](object-set-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1079 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md index d1a2b7392c8659..9e64321771e35d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get enterable コマンドはobjectで指定されたオブジェクトまたはオブジェクトグループが**入力可属性**を持つ場合にTrueを、そうでなければFalseを返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1067 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md index 84ee4065fbb266..2343b1aec28635 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET EVENTS**コマンドは、引数 *object* と *\** で指定したオブジェクトの、フォームイベントのカレントの設定を取得します。 @@ -48,4 +45,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET EVENTS](object-set-events.md) \ No newline at end of file +[OBJECT SET EVENTS](object-set-events.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1238 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md index 39b77704f764ee..ccbd31bc9a282f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get filter コマンドは *object*で指定されたオブジェクトまたはオブジェクトグループに割り当てられたフィルターの名前を返します。. @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1073 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md index 706cc643ac4d07..e5d442d03376ff 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get focus rectangle invisible**コマンドは*object* と *\** 引数で指定したオブジェクトのフォーカスの四角に関するカレントプロセス内の表示オプションを返します。この設定は、フォームエディターのプロパティリストの入力可能オブジェクトで利用できる**フォーカスの四角を隠す**オプションに対応します。 このコマンドはデザインモードや[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md)コマンドを使用して指定されたこのオプションに関する現在の設定値を返します。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1178 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md index f5483fced35fe6..f055540bab5924 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get font size コマンドは*object*で指定されたフォームオブジェクトで使用されている文字フォントのサイズをポイント単位で返します。 . @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FONT SIZE](object-set-font-size.md) \ No newline at end of file +[OBJECT SET FONT SIZE](object-set-font-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1070 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md index c6f8de693f0a58..01df774fddc210 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get font style コマンドは、*object*で指定されたフォームオブジェクトで使用されている文字フォントの現在のスタイルを返します。. @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1071 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md index 68809bb803135b..d2ec1e9919e828 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get font**コマンドは *object*指定されたフォームオブジェクトで使用されている文字フォントの名前を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1069 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md index ca4abb1459b084..83d99813e196ba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get format** コマンドは、*object*引数で指定されたオブジェクトに適用された現在の表示フォーマットを返します。 @@ -65,4 +62,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 894 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md index 395b9ccabdf97c..9d6c17e51e525a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get help tip**コマンドは*object* と*\** 引数で指定したオブジェクトに割り当てられたカレントプロセスのヘルプメッセージを返します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET HELP TIP](object-set-help-tip.md) \ No newline at end of file +[OBJECT SET HELP TIP](object-set-help-tip.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1182 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md index f2cd32212ebd95..8b2be7980651ea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get horizontal alignment**コマンドは、引数*object*および *\** で指定されたオブジェクトに適用された整列タイプを示すコードを返します。 @@ -58,4 +55,13 @@ displayed_sidebar: docs [OBJECT Get vertical alignment](object-get-vertical-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 707 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md index e215b7e07f7260..571ba7ecb0e909 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get indicator type**コマンドは、引数 *object* と *\** で指定したサーモメーターに割り当てられた、カレントのインジケーターの型を返します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) \ No newline at end of file +[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1247 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md index e8820cd2432c8d..89f36cc1c4376a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get keyboard layout**コマンドは*object* と *\** 引数で指定したオブジェクトにカレントプロセスで割り当てられたカレントキーボードレイアウトを返します。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) \ No newline at end of file +[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1180 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md index eedb1e0be2ff79..8a2150924eb2f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get list name コマンドは *object*で指定されたオブジェクトまたはオブジェクトグループに割り当てられた選択リストの名前を返します。 4Dではフォームエディタあるいは [OBJECT SET LIST BY NAME](object-set-list-by-name.md) コマンドを使用してフォームオブジェクトに (デザインモードのリストエディタで作成された) 選択リストを割り当てることができます。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1072 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md index f87d2034dde4e7..32e4efcb1b19c1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get list reference**コマンドは、引数 *object* と *\** で指定したオブジェクトまたはオブジェクトのグループに関連付けられた階層リストの参照番号(ListRef)を返します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1267 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md index 0eb0bf2dc28034..db141554b2e416 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET MAXIMUM VALUE**コマンドは、引数 *object* と *\** で指定したオブジェクトのカレントの最大値を、 *maxValue* 変数の中に返します。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1245 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md index a5808a9d753f8e..c495add57257fa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET MINIMUM VALUE**コマンドは、引数 *object* と *\** で指定したオブジェクトの最小値を、 *minValue* 変数の中に返します。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1243 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md index fc475d9d5a28c6..ffe2b8d9bfc27e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get multiline**コマンドは、引数 *object* と *\** で指定したオブジェクトの、"複数行"のオプションのカレントの状態を返します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET MULTILINE](object-set-multiline.md) \ No newline at end of file +[OBJECT SET MULTILINE](object-set-multiline.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1254 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md index e5710dfb0651ff..9ed9e0540f7b35 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get name コマンドはフォームオブジェクトの名前を返します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs *Form Objects (Access)* [OBJECT Get pointer](object-get-pointer.md) -*オブジェクト(フォーム)* \ No newline at end of file +*オブジェクト(フォーム)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1087 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md index 6450d203bccd44..0ad7000b1151cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get placeholder**コマンドは、引数 *object* と *\** で指定したオブジェクトと関連付けられたプレースホルダーテキストを返します。オブジェクトにプレースホルダーテキストが何も関連付けられていない場合は、空の文字列を返します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET PLACEHOLDER](object-set-placeholder.md) \ No newline at end of file +[OBJECT SET PLACEHOLDER](object-set-placeholder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1296 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md index d65ef685646091..fe68724a29cfaa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get pointer**コマンドはフォームオブジェクトの変数へのポインタを返します。 @@ -57,4 +54,13 @@ displayed_sidebar: docs [OBJECT Get name](object-get-name.md) [OBJECT Get subform container value](object-get-subform-container-value.md) [Self](self.md) -*オブジェクト(フォーム)* \ No newline at end of file +*オブジェクト(フォーム)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1124 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md index 7da5f48945d417..a931e77c395cb3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET PRINT VARIABLE FRAME**コマンドは、引数 *object* と *\** で指定したオブジェクトの印刷時可変オプションのカレントの設定を取得します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) \ No newline at end of file +[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1241 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md index 8e328777bb2cd9..4dadffcf37654d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET RESIZING OPTIONS**コマンドは*object*と*\** 引数で指定したオブジェクトのカレントプロセスのリサイズオプションを返します。 @@ -45,4 +42,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) \ No newline at end of file +[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1176 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md index 5e43f35021b77d..0802e184173a9a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT GET RGB COLORS コマンドは*object*で指定されたオブジェクトまたはオブジェクトグループの描画色や背景色を返します。. @@ -37,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1074 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md index f1bcf597fa7508..31ddc09414433b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT GET SCROLL POSITION は*object*で指定されたフォームオブジェクトの、スクロールバーの位置に関連する情報を*vPosition*と*hPosition*引数に返します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1114 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md index fb749353a95c17..87e89ce5b91bc4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT GET SCROLLBAR コマンドは、*object*で指定されたオブジェクトまたはオブジェクトグループの縦横スクロールバーの表示/非表示状態を知るために使用します。. @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1076 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md index 73f8af8297b0e2..669dae54bf02ef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET SHORTCUT**コマンドは*object*と*\**引数で指定されたオブジェクトに割り当てられたカレントプロセスのキーボードショートカットを返します。 @@ -42,4 +39,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET SHORTCUT](object-set-shortcut.md) \ No newline at end of file +[OBJECT SET SHORTCUT](object-set-shortcut.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1186 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md index be0b83ee590ce1..41d68ee92c0a7e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get style sheet**コマンドは、引数 *object* と *\** で指定したオブジェクトに関連付けられたスタイルシートの名前を返します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs #### 参照 *Font Styles* -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1258 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md index 747defbf7aacab..879da3ff09c765 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET SUBFORM CONTAINER SIZE**コマンドは親フォーム中に表示されているカレントサブフォームオブジェクトの幅と高さをピクセル単位で返します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET SUBFORM](object-get-subform.md) -[OBJECT SET SUBFORM](object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1148 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md index bfa5cdacd2913f..a45dcb0135cbab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get subform container value** コマンドは親フォームに表示されたサブフォームコンテナにバインドされたデータソースのカレントの値を返します。 @@ -57,4 +54,13 @@ displayed_sidebar: docs [Form](form.md) [OBJECT Get pointer](object-get-pointer.md) -[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) \ No newline at end of file +[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1785 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md index a3a4f92b2cced1..29dcb3339c1e6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT GET SUBFORM**コマンドは*object*と*\**引数で指定したサブフォームオブジェクトに関連付けられたフォームの名前を返します。 @@ -41,4 +38,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) -[OBJECT SET SUBFORM](object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1139 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md index 6fa763048bd658..d42c6e34964568 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get text orientation**コマンドは、引数 *object* と *\** で指定したオブジェクトのテキストに適用されたカレントの方向の値を返します。 @@ -57,4 +54,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) \ No newline at end of file +[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1283 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md index 5311e7aba7a244..de1d19d6dfc6d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get three states checkbox**コマンドは、引数 *object* と *\** で指定したチェックボックスの"スリーステート"プロパティの、カレントの状態を返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) \ No newline at end of file +[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1250 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md index 206dc64f06c0e7..24e884566f32dc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get titleコマンドは *object*で指定されたフォームオブジェクトのタイトル (ラベル) を返します。このコマンドはラベルを表示するすべてのタイプのシンプルオブジェクトに使用できます: @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET TITLE](object-set-title.md) \ No newline at end of file +[OBJECT SET TITLE](object-set-title.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1068 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md index ea7f37e4f55176..aa1fcbe79d193d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get type**コマンドは、カレントフォーム内の、引数 *object* と *\** で指定したオブジェクトのタイプを返します。 @@ -96,4 +93,13 @@ displayed_sidebar: docs #### 参照 [FORM LOAD](form-load.md) -[LISTBOX GET OBJECTS](listbox-get-objects.md) \ No newline at end of file +[LISTBOX GET OBJECTS](listbox-get-objects.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1300 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md index dadd3b4c57236d..870cdd4cf504cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get value** コマンドは、*objectName* 引数で指定されたフォームオブジェクトのデータソースのカレント値を返します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET VALUE](object-set-value.md) \ No newline at end of file +[OBJECT SET VALUE](object-set-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1743 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md index c4914521fcaba4..f9e9b2dd012b73 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Get vertical alignment**コマンドは*object* と*\** 引数で指定したオブジェクトのテキスト縦位置タイプを示す値を返します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1188 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md index 878ffaf9e539b2..e3c24291c0bc24 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT Get visible コマンドは *object*で指定されたオブジェクトまたはオブジェクトグループが 表示属性を持っていればTrueを、そうでなければFalseを返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1075 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md index 43ff2896cc537b..9e8a040ce8d8de 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT Is styled text**コマンドは、 *object* と *\** によって指定されたオブジェクトの"マルチスタイル"オプションにチェックが入っているときに **True** を返します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -*スタイル付きテキスト* \ No newline at end of file +*スタイル付きテキスト* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1261 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md index 3a94dbe2e83ded..8ed86ecb812f6c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT MOVEコマンドは、 *\** と*object*引数で指定されたカレントフォーム内のオブジェクトを、水平方向に*moveH*ピクセル、垂直方向に*moveV*ピクセル移動させます。 @@ -67,4 +64,13 @@ displayed_sidebar: docs [OBJECT DUPLICATE](object-duplicate.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 664 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md index 1ca06cfebdc4d0..d1ce20899f0b47 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET ACTION**コマンドは、引数 *object* と *\** で指定したオブジェクトと関連付けられた標準アクションを、カレントプロセスにおいて変更します。 @@ -89,4 +86,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get action](object-get-action.md) \ No newline at end of file +[OBJECT Get action](object-get-action.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1259 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md index 48d7c3cf2fe5b4..ae2317bc7f98e5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET AUTO SPELLCHECK**コマンドは*object*と*\**引数で指定されたオブジェクトの自動スペルチェックオプションをカレントプロセス内で動的に設定します。このオプションを使用して、オブジェクト (テキスト型オブジェクトのみ) にデータが入力される際の自動スペルチェックを有効/無効にできます。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) \ No newline at end of file +[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1173 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md index a9004341225429..89dddccf809c3a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET BORDER STYLE**コマンドは、引数 *object* と *\** で指定したオブジェクトの境界線スタイルを変更します。 @@ -40,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get border style](object-get-border-style.md) \ No newline at end of file +[OBJECT Get border style](object-get-border-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1262 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md index 58b4918cc2a16e..45d0e9625585e7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET CONTEXT MENU**コマンドは、引数 *object* と *\** で指定したオブジェクトのデフォルトでのコンテキストメニューの関連付けを、カレントプロセスにおいて有効化または無効化します。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get context menu](object-get-context-menu.md) \ No newline at end of file +[OBJECT Get context menu](object-get-context-menu.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1251 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md index 237841431b1e04..817fedacd47e74 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET COORDINATES**コマンドは、引数 *object* と *\** で指定したオブジェクトの位置とそれに伴うサイズを、カレントのプロセスにおいて変更します。 @@ -56,4 +53,13 @@ displayed_sidebar: docs [CONVERT COORDINATES](convert-coordinates.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1248 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md index bf18700e95e938..8fd2f436f53e9e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET CORNER RADIUS** コマンドは、*object* 引数で指定したオブジェクトの角の半径を*radius* 引数で指定した半径に変更します。新しい半径はそのプロセスに対してのみ有効で、フォーム内には保存されません。 @@ -68,4 +65,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get corner radius](object-get-corner-radius.md) \ No newline at end of file +[OBJECT Get corner radius](object-get-corner-radius.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1323 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md index 2dd000b475b4d3..367e0ec29fcde0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET DATA SOURCE**コマンドは、引数 *object* と *\** で指定したオブジェクトのデータソースを変更します。 @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 [LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) -[OBJECT Get data source](object-get-data-source.md) \ No newline at end of file +[OBJECT Get data source](object-get-data-source.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1264 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md index b8b894ce087894..1f8f9cbd10d597 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET DRAG AND DROP OPTIONS**コマンドは*object* と *\** 引数で指定したオブジェクトのドラッグ&ドロップオプションをカレントプロセス内で動的に設定します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) \ No newline at end of file +[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1183 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md index 1677564acb40c8..329ca594688bd5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET ENABLED コマンドは*object*で指定されたカレントフォーム中のオブジェクトあるいはオブジェクトグループを、有効または無効にするために使用します。有効なオブジェクトはマウスクリックやキーボードショートカットに反応します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get enabled](object-get-enabled.md) \ No newline at end of file +[OBJECT Get enabled](object-get-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1123 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md index 9fcb4e4e14917e..9647300d5d9c03 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET ENTERABLE** コマンドは、*object* で指定したフォームオブジェクトを入力可または入力不可に設定するとともに、*フォーカス可能* 属性も設定します。 @@ -74,4 +71,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get enterable](object-get-enterable.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 238 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md index 086864b112f0bb..551f7234794c6c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET EVENTS**コマンドは、引数 *object* と *\** で指定したフォームまたはオブジェクトのフォームイベントの設定を、カレントのプロセスにおいて変更します。 @@ -168,4 +165,13 @@ displayed_sidebar: docs #### 参照 *Form Events* -[OBJECT GET EVENTS](object-get-events.md) \ No newline at end of file +[OBJECT GET EVENTS](object-get-events.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1239 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md index bb80aba06066ce..8094e8956a6dbb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET FILTER は、*object*で指定されたオブジェクトの入力フィルタを*entryFilter*に設定します。 @@ -57,4 +54,13 @@ OBJECT SET FILTER は、入力フォームおよびダイアログ用フォー #### 参照 [OBJECT Get filter](object-get-filter.md) -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 235 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md index e76a5f8b53e4a6..59157eec4c2084 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET FOCUS RECTANGLE INVISIBLE**コマンドは*object* と *\** 引数で指定したオブジェクトのフォーカス四角のカレントプロセスの表示オプションを変更します。この設定は、フォームエディターのプロパティリストの入力可能オブジェクトで利用できる**フォーカスの四角を隠す**オプションに対応します。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1177 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md index 10bbfb6191cccc..f984fe61b6ed9b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET FONT SIZE** は*object* で指定したフォームオブジェクトが、*size*に渡したフォントサイズを使用して表示されるよう設定します。 @@ -51,4 +48,13 @@ displayed_sidebar: docs [OBJECT Get font size](object-get-font-size.md) [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT STYLE](object-set-font-style.md) -*プログラミングに関する注意* \ No newline at end of file +*プログラミングに関する注意* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 165 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md index b387b99512882d..64de9739cfd29f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET FONT STYLE は*object* で指定したフォームオブジェクトが、*styles*に渡したフォントスタイルを使用して表示されるよう設定します。 @@ -56,4 +53,13 @@ displayed_sidebar: docs [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) [SET LIST ITEM PROPERTIES](set-list-item-properties.md) -*プログラミングに関する注意* \ No newline at end of file +*プログラミングに関する注意* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 166 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md index f00f7b4f0119de..a34b88b886c1ef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET FONT は*object* で指定したフォームオブジェクトに、*font* に渡したフォント名またはフォント番号のフォントが表示されるよう設定します。 *font* 引数には有効なフォント名を渡さなければなりません。 @@ -62,4 +59,13 @@ displayed_sidebar: docs [OBJECT Get font](object-get-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) [OBJECT SET FONT STYLE](object-set-font-style.md) -*プログラミングに関する注意* \ No newline at end of file +*プログラミングに関する注意* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 164 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md index aaf3cc84782d6e..acd94f6580f80d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET FORMAT** は、*object*で指定したオブジェクトの表示フォーマットを*displayFormat*で渡したフォーマットに設定します。新しいフォーマットは現在の表示にのみ有効です。フォームには保存されません。 @@ -331,4 +328,13 @@ This example formats a date variable and a time variable using [customized forma [GET SYSTEM FORMAT](get-system-format.md) [OBJECT Get format](object-get-format.md) -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 236 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md index d303e930c1f504..48dc3d9c19d874 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET HELP TIP**コマンドは*object* と*\** 引数で指定したオブジェクトに割り当てられたヘルプをカレントプロセス内で動的に変更します。 @@ -130,4 +127,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get help tip](object-get-help-tip.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1181 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md index 0d2565206781a3..0ca2bbb5879bd8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET HORIZONTAL ALIGNMENT**コマンドは、引数*object* および *\** で指定したオブジェクトを整列します。 @@ -56,4 +53,13 @@ displayed_sidebar: docs [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 706 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md index 533e0dbe77b68d..3c6a9452459f25 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET INDICATOR TYPE**コマンドは、引数 *object* と *\** で指定したサーモメーターの進捗インジケーターのタイプを、カレントプロセスにおいて変更します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get indicator type](object-get-indicator-type.md) \ No newline at end of file +[OBJECT Get indicator type](object-get-indicator-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1246 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md index d5339160457472..fd546ef3a87e07 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET KEYBOARD LAYOUT**コマンドは*object* と*\** 引数で指定したオブジェクトに割り当てられたキーボードレイアウトをカレントプロセス内で動的に変更します。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get keyboard layout](object-get-keyboard-layout.md) \ No newline at end of file +[OBJECT Get keyboard layout](object-get-keyboard-layout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1179 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md index 497d9961e5213a..5a49f7bcb4d481 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET LIST BY NAME**コマンドは、*object*引数で指定されたオブジェクトあるいはオブジェクトグループの選択リストを、*list*に渡したリスト (デザインモードのリストエディタで定義) に設定あるいは置き換えます。 *list* 引数に名前を渡すリストは、リストエディターまたはデザインモードを使用して予め作成されている必要があります。 @@ -91,4 +88,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 237 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md index 9e598c712bfefa..74bf8cc3ddc9d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET LIST BY REFERENCE**コマンドは、引数 *object* と *\** で指定したオブジェクトと関連付けられたリストを、 *list* 引数で指定した階層リストで置き換えもしくは定義します。 @@ -129,4 +126,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1266 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md index f3631904fcf81c..a897a0fe212791 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET MAXIMUM VALUE**コマンドは、引数 *object* と *\** で指定したオブジェクトの最大値を、カレントプロセスにおいて変更します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1244 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md index c886eed8d4bbcf..f8836097144f37 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET MINIMUM VALUE**コマンドは、引数 *object* と *\** で指定したオブジェクトの最小値を、カレントプロセスにおいて変更します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1242 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md index 838f86bba22b9f..67c8276e7faf92 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET MULTILINE**コマンドは、引数 *object* と *\** で指定したオブジェクトの"複数行"のプロパティを変更します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get multiline](object-get-multiline.md) \ No newline at end of file +[OBJECT Get multiline](object-get-multiline.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1253 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md index 85e7e580b56e9a..815942af880867 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET PLACEHOLDER**コマンドは、引数 *object* と *\** で指定したオブジェクトにプレースホルダーテキストを関連付けます。 @@ -47,4 +44,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get placeholder](object-get-placeholder.md) \ No newline at end of file +[OBJECT Get placeholder](object-get-placeholder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1295 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md index e6f873846fbfcb..d8bd73c90439a3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET PRINT VARIABLE FRAME**コマンドは、引数 *object* と *\** で指定したオブジェクトの印刷時可変のプロパティを、変更します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) \ No newline at end of file +[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1240 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md index 9028a60de527bc..b35de0fddd63e2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET RESIZING OPTIONS**コマンドは*object*と*\** で指定したオブジェクトのリサイズオプションをカレントプロセス内で動的に変更します。これらのオプションを使用して、フォームウィンドウのサイズが変更されたときにオブジェクトをどのように表示するかを指定できます。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) \ No newline at end of file +[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1175 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md index e333c6c02719f4..f15a621608ad81 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET RGB COLORS** コマンドは、引数*object*とオプション引数の *\** によって指定されるオブジェクトの前景色と背景色を変更します。コマンドがリストボックスに対して適用される場合、引数を更に使用して奇数行の背景色を変更することができます。 @@ -105,4 +102,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET RGB COLORS](object-get-rgb-colors.md) -[Select RGB Color](select-rgb-color.md) \ No newline at end of file +[Select RGB Color](select-rgb-color.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 628 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md index be49d27b2e12ab..7f7d0a4a9cc78f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET SCROLL POSITION**コマンドを使用して、 ([MODIFY SELECTION](modify-selection.md)または[DISPLAY SELECTION](display-selection.md)コマンドを用いて表示される) リストフォーム、サブフォーム、階層リストなどの行、あるいはリストボックスの列や行、そしてさらにピクチャのピクセルをスクロールすることができます。 @@ -93,4 +90,13 @@ displayed_sidebar: docs [HIGHLIGHT RECORDS](highlight-records.md) [LISTBOX SELECT ROW](listbox-select-row.md) -[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) \ No newline at end of file +[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 906 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md index 2517a1b7e13848..293e190682208c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET SCROLLBARコマンドは、引数*object* と *\** で指定したオブジェクトの水平/垂直スクロールバーの表示/非表示を設定します。 @@ -46,4 +43,13 @@ displayed_sidebar: docs [LISTBOX Get property](listbox-get-property.md) [LISTBOX SET GRID](listbox-set-grid.md) [OBJECT GET SCROLLBAR](object-get-scrollbar.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 843 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md index 531123d0cc539a..21443000d3caf8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET SHORTCUT**コマンドは*object* と*\** で指定したオブジェクトのキーボードショートカットをカレントプロセスで動的に変更します。 @@ -89,4 +86,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT GET SHORTCUT](object-get-shortcut.md) \ No newline at end of file +[OBJECT GET SHORTCUT](object-get-shortcut.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1185 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md index 16244373a85038..ff518a6c741b14 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET STYLE SHEET**コマンドは、引数 *object* と *\** で指定したオブジェクトと関連付けられたスタイルシートを、カレントのプロセスにおいて変更します。スタイルシートを変更すると、フォント、フォントサイズ、そしてフォントスタイルが変更されます(ただし自動スタイルシートではフォントスタイルは除く)。 @@ -50,4 +47,13 @@ displayed_sidebar: docs *Font Styles* [GET STYLE SHEET INFO](get-style-sheet-info.md) [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT Get style sheet](object-get-style-sheet.md) \ No newline at end of file +[OBJECT Get style sheet](object-get-style-sheet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1257 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md index 91f5eb2e001aa4..352ac63900dda1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET SUBFORM CONTAINER VALUE** コマンドは、オヤフォーム内に表示されたサブフォームコンテナにバインドされたデータソースのカレント値を設定します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs #### 参照 [Form](form.md) -[OBJECT Get subform container value](object-get-subform-container-value.md) \ No newline at end of file +[OBJECT Get subform container value](object-get-subform-container-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1784 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md index f24bddac854036..c1794e34c4945e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET SUBFORM**コマンドは*\** 引数および*object* 引数で指定したサブフォームオブジェクトに割り当てられる詳細フォームおよびオプションでリストフォームを動的に変更します。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 [OBJECT GET SUBFORM](object-get-subform.md) -[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) \ No newline at end of file +[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1138 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md index b02eeace1c39be..d1428b6efaea8a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET TEXT ORIENTATION**コマンドは、引数 *object* と *\** で指定したオブジェクトの方向を、カレントプロセスにおいて変更します。 @@ -50,4 +47,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get text orientation](object-get-text-orientation.md) \ No newline at end of file +[OBJECT Get text orientation](object-get-text-orientation.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1284 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md index ae0b1c42f5003c..44d73ea7544b6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET THREE STATES CHECKBOX**コマンドは、引数 *object* と *\** で指定したチェックボックスの"スリーステート"のプロパティを、カレントのプロセスにおいて変更します。 @@ -32,4 +29,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) \ No newline at end of file +[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1249 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md index 3105af30f74d5c..aae09c214077a7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET TITLE**コマンドは、*object* 引数で指定されたボタンのタイトルを*title*で渡した値に変更します。 @@ -73,4 +70,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get title](object-get-title.md) \ No newline at end of file +[OBJECT Get title](object-get-title.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 194 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md index faf4d424d1efe9..8ff58c11a88f13 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 例題 1 **OBJECT SET VALUE** は、*objectName* 引数で指定したフォームオブジェクトのカレントのデータソースに対して*value* 引数の値を設定します。 @@ -41,4 +38,13 @@ displayed_sidebar: docs #### 参照 -[OBJECT Get value](object-get-value.md) \ No newline at end of file +[OBJECT Get value](object-get-value.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1742 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md index 9115749bcaf51a..91e02e8dca4bd2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OBJECT SET VERTICAL ALIGNMENT**コマンドは*object* と*\** 引数で指定されたオブジェクトに適用される行揃えのタイプを変更します。 @@ -43,4 +40,13 @@ displayed_sidebar: docs [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) \ No newline at end of file +[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1187 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md index 6ce64413b11ce2..70a5c1efadbcd1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OBJECT SET VISIBLE コマンドは、*object*によって指定されるオブジェクトを表示、あるいは非表示にします。 @@ -60,4 +57,13 @@ displayed_sidebar: docs #### 参照 [OBJECT Get visible](object-get-visible.md) -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 603 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md index 6c51c55433981d..6a37207af0621c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md @@ -54,4 +54,13 @@ displayed_sidebar: docs [File](file.md) [Folder](folder.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1548 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md index fbaa8ae9122152..71cdb51edc09d1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md @@ -24,4 +24,15 @@ OLD RELATED MANYはリレートテーブルのセレクションを変更し、 #### 参照 [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 263 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md index 9052a7312a2409..3a8eb6de08a9bf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OLD RELATED ONEは、リレーションを実行する際に*aField*の古い値を使用することを除き、[RELATE ONE](relate-one.md "RELATE ONE")と同じ処理を行います。 @@ -33,4 +30,14 @@ OLD RELATED ONEは、更新前のカレントレコードの内容にリレー [Old](old.md) [OLD RELATED MANY](old-related-many.md) [RELATE ONE](relate-one.md) -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 44 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md index 36e4ef90448edd..5ee0ba689fdb8b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md @@ -40,4 +40,13 @@ Oldは、すべてのフィールドタイプに適用できます。 #### 参照 -[Modified](modified.md) \ No newline at end of file +[Modified](modified.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 35 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md index 2b3fb54a4b3114..129b4894155ea4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Backup Shutdownデータベースメソッド**は、データベースのバックアップが終了するたびに呼び出されます。バックアップが終了する理由には、コピーの終了、 ユーザによる中断、そしてエラーがあります。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md index 242329799251e9..195a82cc2da5e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Backup Startupデータベースメソッド**は、データベースのバックアップを開始しようとするたびに呼び出されます(手動でのバックアップ、定期的自動バックアップ、または[BACKUP](backup.md "BACKUP") コマンドによるバックアップ)。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md index b91d44b009ca3e..0204bf0904b4b9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Dropデータベースメソッド**はローカルおよびリモートモードの4Dで使用できます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md index 95fba9f4d09091..a64ee0cad2e0f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md @@ -180,4 +180,13 @@ IO ERROR HANDLERプロジェクトメソッドは以下のようになります: [Last errors](last-errors.md) [Last errors](last-errors.md) [Method called on error](method-called-on-error.md) -*システム変数* \ No newline at end of file +*システム変数* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 155 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md index 5c16221d246780..bfe9f651e9b205 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ON EVENT CALL** コマンドは、イベントを検知するメソッドである*eventMethod*をインストールします。このメソッドは、**イベント処理メソッド**または**イベントキャッチメソッド**と呼ばれます。 @@ -116,4 +113,14 @@ Ctrl+ピリオドが押されると、イベント処理メソッド内で*<>vbW [FILTER EVENT](filter-event.md) [MOUSE POSITION](mouse-position.md) [Method called on event](method-called-on-event.md) -[Shift down](shift-down.md) \ No newline at end of file +[Shift down](shift-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 190 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-exit-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-exit-database-method.md index 70df4e06c84438..006ff79a8d8551 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-exit-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-exit-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Exitデータベースメソッド**は、データベースを終了すると一回呼び出されます。 @@ -108,4 +105,13 @@ displayed_sidebar: docs #### 参照 [On Startupデータベースメソッド](on-startup-database-method.md) -[QUIT 4D](quit-4d.md) \ No newline at end of file +[QUIT 4D](quit-4d.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 905252 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md index b453a09a86ccd7..e546ee33cce254 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 詳細 **On Host Database Event データベースメソッド** はデータベースが開いた時と閉じられた時に 4D コンポーネントにコードを実行させることが出来るようになりました。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md index baea0de40d30ef..eba59c057b007f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ドキュメンテーションは移動しました** diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md index a4258b14f99039..ed722661239096 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ドキュメンテーションは移動しました** diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md index 3b57d2cd3586be..b243914e34c931 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md @@ -17,11 +17,18 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **On REST Authentication データベースメソッド** は4D 20 R6 以降は廃止予定となります。 今後は[強制ログイン認証](https://developer.4d.com/docs/ja/REST/authUsers/) の使用が強く推奨されます。変換されたプロジェクトにおいては、**[ds.authentify() 関数を通してのREST認証を有効化](https://developer.4d.com/docs/ja/settings/web/#%E3%82%A2%E3%82%AF%E3%82%BB%E3%82%B9)** 設定ボタンをクリックすることで設定をアップグレードすることができます。コードの移行が必要であれば、その方法については[こちらの blog記事](https://blog.4d.com/force-login-now-is-the-default-mode-for-all-rest-authentications) を参照してください。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 3367 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md index ac066ebcb1fb4c..af7f8aeb4e8abf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **On Server Close Connectionデータベースメソッド**は、4Dクライアントプロセスが終了するたびに、サーバマシン上で一度呼び出されます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md index 49f529c4082ddf..a94e2bb87fd448 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### On Server Open Connection データベースメソッドはいつ呼び出されるか **On Server Open Connectionデータベースメソッド**は、4Dリモートワークステーションが接続プロセスを開始するたびに、サーバーマシン上で一度、呼び出されます。4D Server 以外の4D 環境では**On Server Open Connectionデータベースメソッド**が起動されることはありません。 @@ -133,3 +130,13 @@ displayed_sidebar: docs    If((?02:00:00?<=Current time)&(Current time ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 16001 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md index b73593c8558837..53c4301585de40 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Server Shutdownデータベースメソッド**は、カレントのデータベースが4D Server上で閉じられるときに、サーバマシン上で一度呼び出されます。4D Server以外の4D 環境では**On Server Shutdownデータベースメソッド**が起動されることはありません。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md index d0e98e4bdffd13..a9f2d506ee2d1c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Server Startupデータベースメソッド**は、4D Server でデータベースを開くと、サーバマシン上で一度呼び出されます。4D Server 以外の4D環境で**On Server Startupデータベースメソッド**が起動されることはありません。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md index c72578e0d1f833..b75206d45baad8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On SQL Authenticationデータベースメソッド**は4Dに統合されたSQLサーバへ送られたリクエストを選別します。この選別は、名前とパスワー ド、そしてユーザのIPアドレス (オプション) に基づいて実行されます。開発者は独自のユーザーテーブルや、4Dのユーザーテーブルを使用して、接続を識別できます。接続を認証したら、[CHANGE CURRENT USER](change-current-user.md "CHANGE CURRENT USER") コマンドを呼び出して、4Dのデータベース内のリクエストへのアクセスをコントロールしなければなりません。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-startup-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-startup-database-method.md index 58ba26f9c7f898..d3949832678439 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-startup-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Startupデータベースメソッド**は、データベースを開くと1度呼び出されます。 @@ -46,4 +43,13 @@ displayed_sidebar: docs [On Exitデータベースメソッド](on-exit-database-method.md) [QUIT 4D](quit-4d.md) -*データベースメソッド* \ No newline at end of file +*データベースメソッド* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 905263 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-system-event-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-system-event-database-method.md index 2ee61fbc6e7a92..29ce45dd701fe2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-system-event-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-system-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **On System Event データベースメソッド** はシステムイベントが発生するたびに呼び出されます。すべてのモードの4D、4D Server、4D Volume Desktopが統合されたコンパイル済みアプリケーションなど、すべての4D環境で有効です。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md index 5452fe1902c591..ed7ff3a1268d1c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### **On Web Connectionデータベースメソッド**は以下のケースで呼び出されます: diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md index e905ecc2542e0e..d1d9d8fb328393 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 互換性に関する注意 このデータベースメソッドは**旧式Web セッション**でのみ使用可能であり、このセッションモードは4D v18 R6 以前のバージョンから変換されたデータベースでのみ利用可能です。**スケーラブルWeb セッション**モード(4D v18 R6 以降での推奨設定)が有効化されていた場合にはこのメソッドは呼び出されません。詳細な情報については、*Webセッション管理(旧式)* の章を参照してください。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md index 72d869b83d3101..153097b915317d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md @@ -28,4 +28,15 @@ displayed_sidebar: docs [CREATE SELECTION FROM ARRAY](create-selection-from-array.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) -*命名セレクション* \ No newline at end of file +*命名セレクション* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 189 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md index 3e52aece5eccc5..2a7b5b9ee0d955 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OPEN ADMINISTRATION WINDOW**コマンドは、コマンドを実行したマシン上でサーバ管理ウィンドウを開きます。4D Serverの管理ウィンドウで現在のパラメタを表示させたり、さまざまなメンテナンス操作を行ったりできます (4D Server Reference Guide参照)。4D Server のバージョン11から、このウィンドウをクライアントマシン上で表示できるようになりました: @@ -51,4 +48,14 @@ displayed_sidebar: docs #### 参照 -[OPEN SECURITY CENTER](open-security-center.md) \ No newline at end of file +[OPEN SECURITY CENTER](open-security-center.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1047 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md index 2aba279f818319..4bac009e8fdee8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OPEN COLOR PICKER**コマンドは、システムのカラーピッカーダイアログボックスを表示させます。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 -[OPEN FONT PICKER](open-font-picker.md) \ No newline at end of file +[OPEN FONT PICKER](open-font-picker.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1304 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md index 60f8dff0d910e6..06b3b4596c5c56 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**OPEN DATA FILE**コマンドは、4Dアプリケーションによって開かれたデータファイルをオンザフライで変更することを可能にします。 - -*accessPath* 引数には、開こうとするデータファイル (".4DD"拡張子を持つファイル) の名前または完全なアクセスパスを渡します。ファイル名だけを渡す場合、データファイルはデータベースのストラクチャファイルと同じ階層に配置されていなければなりません。 +**OPEN DATA FILE**コマンドは、4Dアプリケーションによって開かれたデータファイルをオンザフライで変更することを可能にします。引数には、開こうとするデータファイル (".4DD"拡張子を持つファイル) の名前または完全なアクセスパスを渡します。ファイル名だけを渡す場合、データファイルはデータベースのストラクチャファイルと同じ階層に配置されていなければなりません。 アクセスパスが有効なデータファイルを指している場合、4Dは現在使用しているデータベースを終了し、指定されたデータファイルを使って再度開きます。シングルユーザーモードでは[On Exitデータベースメソッド](on-exit-database-method.md)と[On Startupデータベースメソッド](on-startup-database-method.md)が続いて呼び出されます。 @@ -53,4 +51,13 @@ displayed_sidebar: docs #### 参照 -[CREATE DATA FILE](create-data-file.md) \ No newline at end of file +[CREATE DATA FILE](create-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 312 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md index 7b0f2e4142f217..0fd961cad3b471 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md @@ -72,3 +72,13 @@ End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1321 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md index d8d568a6232ce3..afff05185ed218 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md @@ -85,4 +85,14 @@ Open documentを3のモードで呼ぶと、関数は?00:00:00? (ドキュメン #### 参照 [Append document](append-document.md) -[Create document](create-document.md) \ No newline at end of file +[Create document](create-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 264 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md index 128e727d952694..49a16781ad973a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OPEN FONT PICKER**コマンドは、システムのフォントピッカーダイアログボックスを表示させます。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[OPEN COLOR PICKER](open-color-picker.md) \ No newline at end of file +[OPEN COLOR PICKER](open-color-picker.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1303 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md index 1c499787a4bdb1..4ade9879aa7539 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Open form window コマンドはフォーム*formName*のサイズとリサイズプロパティを使用して、新しいウィンドウを開きます。 @@ -140,4 +137,13 @@ Movable form dialog box 、Plain form window およびPalette form window タイ [FORM GET PROPERTIES](form-get-properties.md) [Open window](open-window.md) *Window Types* -*ウィンドウタイプ(互換性)* \ No newline at end of file +*ウィンドウタイプ(互換性)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 675 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md index 0feb0898d48b7c..6c3142ed5c3186 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OPEN PRINTING JOB** コマンドはプリントジョブを開き、[CLOSE PRINTING JOB](close-printing-job.md) コマンドが呼ばれるまで、続くすべてのプリント命令をスタックします。このコマンドはプリントジョブのコントロールを可能にし、特に印刷中に他のプリントジョブが予期せず挿入されないようにします。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[CLOSE PRINTING JOB](close-printing-job.md) \ No newline at end of file +[CLOSE PRINTING JOB](close-printing-job.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 995 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md index 79264000eedbbd..ee42487aaf110d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Open resource file**コマンドは、*resFileName*に渡した名前またはパス名を持つリソースファイルを開きます。 @@ -99,4 +96,14 @@ Macintosh上で、この例は“MyPrefs”ファイルを開きます。 #### 参照 [CLOSE RESOURCE FILE](close-resource-file.md) -*リソース* \ No newline at end of file +*リソース* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 497 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md index d900421a01a9e3..fd5f04b823bfd7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md @@ -15,3 +15,13 @@ displayed_sidebar: docs #### 説明 OPEN RUNTIME EXPLORER コマンドは、ランタイムエクスプローラーをフローティングウィンドウ内に表示します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1781 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md index ce86fcb3f6e54a..7cced8685a7cd7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 OPEN SECURITY CENTER コマンドは、Maintenance and Security Center (MSC) ウィンドウを表示します。詳細な情報については、*Maintenance & Security Center* のページを参照してください。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1018 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md index 3f9f737c239555..9a5fc6a7855f6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **OPEN SETTINGS WINDOW**コマンドは、カレントの4Dアプリケーションの環境設定ダイアログボックスまたはカレント4Dアプリケーションのデータベース設定を表示し、*selector*キーで指定されたパラメーターやページを表示します。 @@ -140,3 +137,14 @@ displayed_sidebar: docs #### システム変数およびセット 環境設定/データベース設定ダイアログが受け入れられるとOKシステム変数に1が、キャンセルされると0が設定されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 903 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md index 8f19ad2d57ca1b..1d44d64f1463b8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**OPEN URL** コマンドは、*appName* で指定したアプリケーションを使用して、*path* 引数に渡したファイルやURLを開きます。 - -*path* 引数には標準のURLまたはファイルのパス名のどちらかを渡す事ができます。コマンドは、OS X環境下ではコロン (':')、Windows環境下ではスラッシュ('\\')、またはfile://で始まるPosix URLを受け取る事ができます。 +**OPEN URL** コマンドは、*appName* で指定したアプリケーションを使用して、*path* 引数に渡したファイルやURLを開きます。引数には標準のURLまたはファイルのパス名のどちらかを渡す事ができます。コマンドは、OS X環境下ではコロン (':')、Windows環境下ではスラッシュ('\\')、またはfile://で始まるPosix URLを受け取る事ができます。 *appName* 引数が省略されていた場合、4Dはまず引数をファイルパス名として解釈しようとします。この場合4Dはシステムに、もっとも適切なアプリケーションを使用してファイルを開くよう、リクエストします (例えば、.htmlファイルにはブラウザを、.docファイルにはMS Wordを使用します)。この場合 \* 引数は無視されます。 @@ -80,4 +78,13 @@ OS X 環境下では、アプリケーションを探すのに、インストー #### 参照 -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 673 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md index a947ad4f6317b9..fa2fe6be253d5b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Open window** は最初の4つの引数で指定された寸法を使用して新しいウィンドウを開きます。 @@ -136,4 +133,13 @@ CloseColorPalette メソッドは[CANCEL](cancel.md)コマンドを呼び出し [CLOSE WINDOW](close-window.md) [Open form window](open-form-window.md) -*Open Window* \ No newline at end of file +*Open Window* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 153 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md index c951d1033fa08e..5b5c2799e0192b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md @@ -113,4 +113,13 @@ displayed_sidebar: docs #### 参照 - \ No newline at end of file + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1407 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md index 5aca096f3251c3..8b8a504a6b59a1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md @@ -43,4 +43,15 @@ displayed_sidebar: docs #### 参照 -[ORDER BY](order-by.md) \ No newline at end of file +[ORDER BY](order-by.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 300 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md index 1b88252eb049c6..7d4987a28352ba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md @@ -198,4 +198,15 @@ displayed_sidebar: docs #### 参照 -[ORDER BY FORMULA](order-by-formula.md) \ No newline at end of file +[ORDER BY FORMULA](order-by-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 49 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md index b4f4e5a8d89f48..5ec097b142cdc2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Outside call** は、実行サイクルのあとにTrueを返します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [Form event code](form-event-code.md) -[POST OUTSIDE CALL](post-outside-call.md) \ No newline at end of file +[POST OUTSIDE CALL](post-outside-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 328 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md index 99e18e3c3b0287..3c1e372f29c436 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 PAGE BREAKはプリンタに送信されたデータの印刷を実行させ、改ページを行います。PAGE BREAKは (On Printing Detailフォームイベントのコンテキストで) [Print form](print-form.md "Print form")と共に使用し、強制的に改ページを行ったり、メモリに作成された最後のページを印刷するために使用します。PAGE BREAKは、[PRINT SELECTION](print-selection.md "PRINT SELECTION")コマンドとともに使用してはいけません。この代りに、[Subtotal](subtotal.md "Subtotal")や[BREAK LEVEL](break-level.md "BREAK LEVEL")にオプション引数を使用してページブレークを行ってください。 @@ -45,4 +42,14 @@ displayed_sidebar: docs #### 参照 [CANCEL](cancel.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 6 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md index a6946ce6dd31e0..8ea1b32be38b57 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Parse formula** ファンクションは、*formula* 引数で指定された4D フォーミュラを解析し、シンタックスをチェックし、正規化された形式で返します。これにより、4D ランゲージあるいはストラクチャー要素(コマンド、定数、テーブル、フィールド、4D プラグインなど)の名前が変更された場合でも、フォーミュラが引き続き有効な状態を維持できます。 @@ -106,4 +103,13 @@ displayed_sidebar: docs [Formula from string](formula-from-string.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -*フォーミュラ内でのトークンの使用* \ No newline at end of file +*フォーミュラ内でのトークンの使用* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1576 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md index 4162bab6f4099b..248c7e8c3db5d3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Pasteboard data size コマンドを使用して、*dataType* に渡したデータがペーストボード内に存在するかどうかを調べることができます。 @@ -94,4 +91,14 @@ You want to drag some private data from different objects in your form. You can [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) [Get text from pasteboard](get-text-from-pasteboard.md) -*Pasteboard* \ No newline at end of file +*Pasteboard* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 400 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md index e48796aecd2ef6..1bb1e4ac4a0277 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**Path to object** コマンドは*path* 引数に渡したパスの特定のプロパティを含んだオブジェクトを返します。 - -*pathType* 引数を省略した場合、コマンドはデフォルトで*path* 引数にはシステムセパレータ(Windows では"\\"、macOS では":" )を含んだシステムパスが渡されたものとみなします。Posix セパレータを含んだPosixパスを*path* 引数に渡した場合、あるいはパスのタイプを指定したい場合には、以下の定数のどれか一つを*pathType* 引数に渡します: +**Path to object** コマンドは*path* 引数に渡したパスの特定のプロパティを含んだオブジェクトを返します。引数を省略した場合、コマンドはデフォルトで*path* 引数にはシステムセパレータ(Windows では"\\"、macOS では":" )を含んだシステムパスが渡されたものとみなします。Posix セパレータを含んだPosixパスを*path* 引数に渡した場合、あるいはパスのタイプを指定したい場合には、以下の定数のどれか一つを*pathType* 引数に渡します: | 定数 | 型 | 値 | コメント | | -------------- | ---- | - | --------------------------------------------------------- | @@ -173,4 +171,13 @@ displayed_sidebar: docs [File](file.md) [Folder](folder.md) [Object to path](object-to-path.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1547 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md index 9793772931d15c..68d1604743de3c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md @@ -45,4 +45,13 @@ displayed_sidebar: docs #### 参照 [DELETE INDEX](delete-index.md) -[RESUME INDEXES](resume-indexes.md) \ No newline at end of file +[RESUME INDEXES](resume-indexes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1293 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md index fcad875634e5b3..b2c168bf538c2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md @@ -30,4 +30,13 @@ displayed_sidebar: docs [ABORT PROCESS BY ID](abort-process-by-id.md) [DELAY PROCESS](delay-process.md) [HIDE PROCESS](hide-process.md) -[RESUME PROCESS](resume-process.md) \ No newline at end of file +[RESUME PROCESS](resume-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 319 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md index 39fef2385fb913..a1226d99509727 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - :::info 互換性 **4D のビルトインPHPインタープリターは削除されました**。[`4D.SystemWorkerクラス`](../API/SystemWorkerClass.md) を使用して外部PHPインタープリターをご利用ください。 @@ -285,4 +282,13 @@ trimファンクションについてのより詳細な情報については、P *4DでPHPスクリプトを実行する* [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1058 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md index 15e77c6568b958..c50124025b8b48 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - :::info 互換性 **4D のビルトインPHPインタープリターは削除されました**。[`4D.SystemWorkerクラス`](../API/SystemWorkerClass.md) を使用して外部PHPインタープリターをご利用ください。 @@ -39,4 +36,13 @@ PHPスクリプトはstdoutバッファーにデータを書き込むことが #### 参照 [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1061 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md index 42201f85cfed0e..5c9dfc4c52f6a8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - :::info 互換性 **4D のビルトインPHPインタープリターは削除されました**。[`4D.SystemWorkerクラス`](../API/SystemWorkerClass.md) を使用して外部PHPインタープリターをご利用ください。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1060 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md index 93e2750a58c556..0e99cb22a88586 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - :::info 互換性 **4D のビルトインPHPインタープリターは削除されました**。[`4D.SystemWorkerクラス`](../API/SystemWorkerClass.md) を使用して外部PHPインタープリターをご利用ください。 @@ -39,4 +36,13 @@ option引数には、変更するオプションを指定する"*PHP*"テーマ #### 参照 [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1059 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md index 1786c59b6d15d4..f6855ca26bc7c4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md @@ -34,4 +34,13 @@ Codec IDは以下の異なるフォーマットで*codecArray* 配列に返さ #### 参照 [Is picture file](is-picture-file.md) -*ピクチャ* \ No newline at end of file +*ピクチャ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 992 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md index b0a02e62722d35..8f63a1f40f1347 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 PICTURE LIBRARY LIST コマンドは、データベースのピクチャライブラリの中に現在格納されているピクチャの参照番号と名前を返します。 @@ -94,4 +91,13 @@ displayed_sidebar: docs [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 564 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md index f5d58825649d34..60f646cd82a6d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 -[Picture size](picture-size.md) \ No newline at end of file +[Picture size](picture-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 457 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md index 235e55691ef350..2fe57ae31196e6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### 参照 -[PICTURE PROPERTIES](picture-properties.md) \ No newline at end of file +[PICTURE PROPERTIES](picture-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 356 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md index 5b44249888d054..69d0f636e2942b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md @@ -48,4 +48,14 @@ Codecは拡張子 (例 “.gif”), または Mimeタイプ (例 “image/jpeg [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 692 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md index ccd0e7724b8035..e4f03635796b20 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PLAY**コマンドを使用してサウンドやマルチメディアファイルを再生できます。再生したいファイルの完全なパス名を *objectName* に渡します。OS Xでは、コマンドを使用してシステムサウンドを再生することもできます。 @@ -58,4 +55,13 @@ Windows上でのWAVファイルの再生方法を以下の例題で示します: #### 参照 -[BEEP](beep.md) \ No newline at end of file +[BEEP](beep.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 290 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md index efbcb228dff473..a5f09256f17bc3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md @@ -27,4 +27,13 @@ PLUGIN LISTは、4Dに統合されたプラグイン (例: 4D Chart) やサー [COMPONENT LIST](component-list.md) [Get plugin access](get-plugin-access.md) [Is license available](is-license-available.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 847 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md index 8d710d98be04ae..135f6ba4a97f58 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md @@ -30,4 +30,14 @@ displayed_sidebar: docs #### 参照 [PUSH RECORD](push-record.md) -*レコードスタックの使用* \ No newline at end of file +*レコードスタックの使用* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 177 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md index c41bde2d3fd205..768ddeda849c5f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Pop up menu** コマンドは、現在マウスが置かれている場所でポップアップメニューを表示します。 @@ -88,4 +85,13 @@ Windows上 (左) とMacintosh上 (右)で表示されるポップアップメニ #### 参照 [Dynamic pop up menu](dynamic-pop-up-menu.md) -[MOUSE POSITION](mouse-position.md) \ No newline at end of file +[MOUSE POSITION](mouse-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 542 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md index 9c2eb5ce964421..992b700a041235 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md @@ -29,9 +29,7 @@ displayed_sidebar: docs #### 説明 -**Position** コマンドは、*aString* の中で*find* が最初に現われる位置を返します。 - -*aString* の中に*find* が見つからない場合は、Positionはゼロ(0) を返します。 +**Position** コマンドは、*aString* の中で*find* が最初に現われる位置を返します。の中に*find* が見つからない場合は、Positionはゼロ(0) を返します。 *find* が見つかると、*aString* の中に検索文字列が最初に表示された文字位置を返します。 @@ -116,4 +114,13 @@ Position関数の使用例を次に示します。結果を変数*vlResult*に #### 参照 [Compare strings](compare-strings.md) -[Substring](substring.md) \ No newline at end of file +[Substring](substring.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 15 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md index 31007ab307d78e..e03ffd82359d08 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 POST CLICK コマンドはマウスクリックをシミュレートします。これは、ユーザが実際にマウスボタンをクリックした場合と同様の結果を生じます。 @@ -30,4 +27,13 @@ displayed_sidebar: docs #### 参照 [POST EVENT](post-event.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 466 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md index de4494eaeec5d2..33e81ab48ab70e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 POST EVENT コマンドは、キーボードまたはマウスイベントをシミュレートします。これは、ユーザが実際にキーボードやマウス上で動作を行った場合と同様の結果を生じます。 @@ -75,4 +72,13 @@ displayed_sidebar: docs #### 参照 [POST CLICK](post-click.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 467 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md index 807f7c707391bc..04c71929ed82df 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 POST KEY コマンドはキーストロークをシミュレートします。これは、ユーザが実際にキーボード上で文字を入力した場合と同様の結果を生じます。 @@ -37,4 +34,13 @@ displayed_sidebar: docs *ASCII Codes* [POST CLICK](post-click.md) [POST EVENT](post-event.md) -*ファンクションキーコード* \ No newline at end of file +*ファンクションキーコード* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 465 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md index 3a6b481aada74a..d6004c904e6587 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### Compatibility Note This command was named **CALL PROCESS** in previous 4D releases. @@ -46,4 +43,14 @@ displayed_sidebar: docs [Form event code](form-event-code.md) [GET PROCESS VARIABLE](get-process-variable.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 329 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md index e1dcf56c0a3f66..96bfe044898721 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md @@ -25,4 +25,14 @@ PREVIOUS RECORDで、カレントセレクションの前にカレントレコ [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[NEXT RECORD](next-record.md) \ No newline at end of file +[NEXT RECORD](next-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 110 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md index 2dc3b1b69e603d..a0b37a7ebfc22b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Print form** は、*aTable*のフィールドや変数の現在の値を使用して*form*を印刷します。通常は、印刷処理を完全に制御する必要のある非常に複雑なレポートを印刷するために使用します。**Print form** はレコード処理、ブレーク処理、改ページ処理を全く行いません。これらの処理はすべて開発者が行います。**Print form** は固定されたサイズの枠のなかにフィ-ルドや変数を印刷します。 @@ -188,4 +185,13 @@ displayed_sidebar: docs [CANCEL](cancel.md) [PAGE BREAK](page-break.md) [PRINT SETTINGS](print-settings.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 5 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md index 8db3c1598cd0ed..555757251c24b6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINT LABEL** は、*aTable*のセレクションのデータを使用してラベルを印刷します。 @@ -109,4 +106,14 @@ displayed_sidebar: docs #### 参照 [PRINT SELECTION](print-selection.md) -[QR REPORT](qr-report.md) \ No newline at end of file +[QR REPORT](qr-report.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 39 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md index 1e903f2efea45a..d616b7c2fc41c8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Print object** コマンドを使用して *object*と*\** 引数で指定したフォームオブジェクトを、*posX*と*posY*の位置に、任意のサイズで印刷できます。 @@ -98,4 +95,13 @@ displayed_sidebar: docs #### 参照 -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1095 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md index 2a065d37a042e0..e591dbcd6d5efd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINT OPTION VALUES** コマンドは、*option* で定義した印刷オプションに対して利用可能な名前のリストを*namesArray* に返します。またオプションとして、*info1Array* および *info2Array* 内にそれぞれの名前に対する追加の情報を取得することもできます。 @@ -55,4 +52,13 @@ displayed_sidebar: docs #### 参照 [GET PRINT OPTION](get-print-option.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 785 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md index 63f4425c42dcb0..83298a9036c313 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINT RECORD** は *aTable*のカレントレコードを、カレントセレクションを変更せずに印刷します。カレント出力フォームが印刷に用いられます。*aTable*にカレントレコードが存在しない場合、**PRINT RECORD**は何も行いません。 @@ -65,4 +62,13 @@ displayed_sidebar: docs #### 参照 -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 71 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md index b1b34f8689dad3..aed241ebd2cc18 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINT SELECTION** は、*aTable*のカレントセレクションを印刷します。レコードは、カレントプロセスのテーブルのカレント出力フォームを使用して印刷されます。**PRINT SELECTION**は、デザインモードの**プリント...**メニューと同じ動作を実行します。セレクションが空の場合、**PRINT SELECTION** は何も行いません。 @@ -63,4 +60,14 @@ displayed_sidebar: docs [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 60 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md index c264d9baa421c5..eccc16dd913434 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Print settings to BLOB** コマンドは4Dのカレントのプリント設定を *printSettings* BLOBに格納します。*printSettings* は、印刷で使用されるすべての設定を格納します: @@ -54,4 +51,13 @@ BLOB が正しく生成されるとコマンドは 1を返します。カレン #### 参照 -[BLOB to print settings](blob-to-print-settings.md) \ No newline at end of file +[BLOB to print settings](blob-to-print-settings.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1433 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md index 71a2ab867c304e..9a00f63aa0bd50 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINT SETTINGS** は印刷設定ダイアログボックスを表示します。このコマンドを使用する場合、[Print form](print-form.md) や [OPEN PRINTING JOB](open-printing-job.md) コマンドよりも前に呼び出されなければなりません。 @@ -42,4 +39,14 @@ displayed_sidebar: docs [OPEN PRINTING JOB](open-printing-job.md) [PAGE BREAK](page-break.md) [Print form](print-form.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 106 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md index f952aa2268ae0b..5b70872d2e858c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **PRINTERS LIST** コマンドは、引数として渡された各配列にそのマシンで使用できるプリンタの名前、およびオプションとしてプリンタの場所とモデルを返します。 @@ -46,4 +43,14 @@ macOS上では、プリンタ名 (プリンタサーバの名前) を使用し #### 参照 [Get current printer](get-current-printer.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 789 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md index 713bf9a217bdf5..c4f1d1a0f28f2b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Printing pageは、印刷中のページ番号を返します。このコマンドは、[PRINT SELECTION](print-selection.md "PRINT SELECTION")コマンドまたはデザインモードのプリント...メニューの選択によって印刷する場合にのみ使用することができます。 @@ -39,4 +36,13 @@ displayed_sidebar: docs #### 参照 -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 275 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md index aff86570cfc3b8..2fc7f34b777003 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### 説明 -**PROCESS 4D TAGS**コマンドを使用すると、*inputTemplate* 引数に格納されている4D変換タグの処理が開始されます。*param* 引数を使用して値を挿入し(任意)、その結果が*outputResult* に返されます。 これらのタグの完全な詳細については、*4D 変換タグ* の章を参照して下さい。 +**PROCESS 4D TAGS**コマンドを使用すると、*inputTemplate* 引数に格納されている4D変換タグの処理が開始されます。引数を使用して値を挿入し(任意)、その結果が*outputResult* に返されます。 これらのタグの完全な詳細については、*4D 変換タグ* の章を参照して下さい。 このコマンドにより、タグや、4D式や変数への参照を含んだ"テンプレート"型のテキストを実行でき、それにより実行コンテキストや引数に渡された値に応じた異なる結果を生成することができます。 例 えば、このコマンドにより、4D変換タグを含んだセミダイナミックページに基づいたHTMLページを生成する事ができます(このとき4D Webサーバーを起動する必要はありません)。このコマンドを使用して、データベース内のデータへの参照の処理を(4D Internetコマンド経由で)含んだHTMLフォーマットのEメールを送信する事ができます。テキストに基づいたデータタイプであれば、XML、 SVG、マルチスタイルテキストなど、どんなデータタイプでも処理することができます。 @@ -71,4 +71,13 @@ displayed_sidebar: docs #### 参照 -*4D 変換タグ* \ No newline at end of file +*4D 変換タグ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 816 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md index 2df113522af5cc..34304ce7d6c962 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md @@ -21,4 +21,13 @@ displayed_sidebar: docs #### 参照 -[On Exitデータベースメソッド](on-exit-database-method.md) \ No newline at end of file +[On Exitデータベースメソッド](on-exit-database-method.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 672 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md index 9e74081c013611..fe52b02550e6b3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md @@ -65,4 +65,13 @@ displayed_sidebar: docs [GET PROCESS VARIABLE](get-process-variable.md) [Process info](../commands/process-info.md) [Process state](process-state.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 372 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md index b3d12345405e3c..7c2103a016aad7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Process state** コマンドは、*process*に指定したプロセス番号を持つプロセスの状態を返します。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 [Count tasks](count-tasks.md) -[Process info](../commands/process-info.md) \ No newline at end of file +[Process info](../commands/process-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 330 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md index 2d23506a9dfcc6..1ee21e5a01d805 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 [POP RECORD](pop-record.md) -*レコードスタックの使用* \ No newline at end of file +*レコードスタックの使用* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 176 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md index 070bfa1c668c07..39c800cf3e8356 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR BLOB TO REPORT コマンドは、*blob*に格納されたレポートを*area*に渡されたクイックレポートエリアに配置します。 @@ -45,4 +42,14 @@ displayed_sidebar: docs #### 参照 -[QR REPORT TO BLOB](qr-report-to-blob.md) \ No newline at end of file +[QR REPORT TO BLOB](qr-report-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 771 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md index 31e61f594caa24..bfccb4c1b7aede 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Count columns コマンドは、クイックレポート*area*に存在するカラムの数を返します。 @@ -35,4 +32,14 @@ displayed_sidebar: docs #### 参照 [QR DELETE COLUMN](qr-delete-column.md) -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 764 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md index 64b24a27d98c29..d95fffef165e2e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR DELETE COLUMNは、*area*にある*colNumber*に渡された番号のカラムを削除します。このコマンドはクロステーブルレポートに対しては適用されません。 @@ -36,4 +33,14 @@ displayed_sidebar: docs #### 参照 -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 749 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md index 9770b14649b574..ece971a79c7bf1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR DELETE OFFSCREEN AREA コマンドは、*area*引数に渡された参照番号のクイックレポートオフスクリーンエリアをメモリから削除します。 @@ -24,4 +21,14 @@ displayed_sidebar: docs #### 参照 -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 754 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md index 856840fee58406..0defe1b0b538be 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR EXECUTE COMMAND** コマンドは、*command*に渡された参照番号のツールバーボタンコマンドを実行します。このコマンドの最も一般的な使い方は、[QR ON COMMAND](qr-on-command.md) コマンド経由でコード内で受け取った、ユーザーが選択したコマンドを実行することです。 @@ -39,4 +36,14 @@ displayed_sidebar: docs #### 参照 [QR Get command status](qr-get-command-status.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 791 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md index 3c5e9f4502a965..1bb9b51a1cab80 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Find column コマンドは、*expression*引数で渡された表現式に一致する内容を持つ最初のカラムの番号を返します。 @@ -49,3 +46,14 @@ displayed_sidebar: docs     QR DELETE COLUMN(MyArea;$NumColumn)  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 776 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md index eae53bf50e8175..ac564ba63759c1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR Get area property** コマンドは、*property*に渡されたインタフェース要素(ツールバーまたはメニューバー)が表示されていなければ0を、表示されていれば1を返します。 @@ -36,4 +33,14 @@ displayed_sidebar: docs #### 参照 -[QR SET AREA PROPERTY](qr-set-area-property.md) \ No newline at end of file +[QR SET AREA PROPERTY](qr-set-area-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 795 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md index 36907e2c202aaf..b831c679bd26d1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET BORDERS コマンドを使用し、指定したセルの罫線スタイルを取得できます。 @@ -69,4 +66,14 @@ displayed_sidebar: docs #### 参照 -[QR SET BORDERS](qr-set-borders.md) \ No newline at end of file +[QR SET BORDERS](qr-set-borders.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 798 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md index d9efc9614d45d9..e8bb830e660b61 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get command status コマンドは、*command*が使用不可であれば0を、使用可能であれば1を返します。 @@ -37,4 +34,14 @@ displayed_sidebar: docs #### 参照 [QR EXECUTE COMMAND](qr-execute-command.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 792 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md index 2a3feaebabaf9a..04bd788c770548 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET DESTINATION コマンドは、*area*に渡したエリア参照のレポート出力先を取得します。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[QR SET DESTINATION](qr-set-destination.md) \ No newline at end of file +[QR SET DESTINATION](qr-set-destination.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 756 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md index 774c6899313016..caccf5884e07dd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get document property コマンドを使用し、印刷ダイアログの表示の有無、または*area*に表示されるドキュメントの単位を取得することができます。 @@ -37,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) \ No newline at end of file +[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 773 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md index 8fd27685a10652..cc61d9d9ea86a7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get drop column コマンドは、ドロップ動作が行われた場所の値を返します。 @@ -28,4 +25,14 @@ displayed_sidebar: docs #### 参照 -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 747 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md index f0adffbef03170..066fbdf0698c47 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET HEADER AND FOOTER コマンドを使用し、ヘッダまたはフッタの内容とサイズを取得できます。 @@ -68,4 +65,14 @@ displayed_sidebar: docs #### 参照 -[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) \ No newline at end of file +[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 775 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md index 4a474ac088946d..14288c414fa899 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get HTML template コマンドは、クイックレポート*area*に現在使用されているHTMLテンプレートを返します。戻り値はテキスト値であり、HTMLテンプレートの全内容が納められます。 @@ -27,4 +24,14 @@ displayed_sidebar: docs #### 参照 -[QR SET HTML TEMPLATE](qr-set-html-template.md) \ No newline at end of file +[QR SET HTML TEMPLATE](qr-set-html-template.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 751 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md index f9d3d193dac9d4..bb1d90552e8118 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ##### リストモード @@ -109,4 +106,14 @@ QR GET INFO COLUMN コマンドを使用して、同様のパラメータを取 [QR Get info row](qr-get-info-row.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 766 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md index c0709d21c7bd46..9cbb4ea35cc3c2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get info row コマンドは、*row*に渡した行に関する表示の有無を取得します。 @@ -41,4 +38,14 @@ displayed_sidebar: docs [QR GET INFO COLUMN](qr-get-info-column.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 769 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md index a174b1390bbd7b..434a15b2b42168 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get report kind コマンドは、*area*に渡したエリアのレポートタイプを取得します。 @@ -35,4 +32,14 @@ displayed_sidebar: docs #### 参照 -[QR SET REPORT KIND](qr-set-report-kind.md) \ No newline at end of file +[QR SET REPORT KIND](qr-set-report-kind.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 755 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md index b9b48d1929da61..bba85cf5b7146c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get report table コマンドは、*area*に渡した参照のレポートエリア用のカレントテーブル番号を返します。 @@ -25,4 +22,14 @@ displayed_sidebar: docs #### 参照 -[QR SET REPORT TABLE](qr-set-report-table.md) \ No newline at end of file +[QR SET REPORT TABLE](qr-set-report-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 758 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md index ef389c6a6785e8..b150bb9908d25b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET SELECTION コマンドは、選択されたセルの座標を返します。 @@ -40,4 +37,14 @@ displayed_sidebar: docs #### 参照 -[QR SET SELECTION](qr-set-selection.md) \ No newline at end of file +[QR SET SELECTION](qr-set-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 793 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md index 244018842800c9..e1f7a86633a9b2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET SORTS コマンドは、次の2つの配列を作成します: @@ -37,4 +34,14 @@ displayed_sidebar: docs #### 参照 -[QR SET SORTS](qr-set-sorts.md) \ No newline at end of file +[QR SET SORTS](qr-set-sorts.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 753 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md index 2e7cfdef2c0245..a8be778baa9c68 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR Get text property コマンドは、*colNum* と *rowNum* で指定されたセルのテキスト属性のプロパティ値を返します。 @@ -66,4 +63,14 @@ displayed_sidebar: docs #### 参照 -[QR SET TEXT PROPERTY](qr-set-text-property.md) \ No newline at end of file +[QR SET TEXT PROPERTY](qr-set-text-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 760 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md index c47686ca49bd76..2b07898b6d746c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ##### リストモード @@ -77,4 +74,14 @@ QR GET TOTALS DATA コマンドを使用し、指定したセルの詳細を取 #### 参照 -[QR SET TOTALS DATA](qr-set-totals-data.md) \ No newline at end of file +[QR SET TOTALS DATA](qr-set-totals-data.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 768 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md index 0394765352083f..b71f3468b0b486 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR GET TOTALS SPACING コマンドを使用し、小計行の下部の行間を取得することができます。このコマンドはリストモードにのみ適用されます。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[QR SET TOTALS SPACING](qr-set-totals-spacing.md) \ No newline at end of file +[QR SET TOTALS SPACING](qr-set-totals-spacing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 762 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md index b1e49dbcd7c28c..b1e6c54b66ec05 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR INSERT COLUMN コマンドは指定された位置にカラムの作成または挿入を行います。挿入された場所の右にあるカラムはすべて右側へ移動します。 @@ -40,4 +37,14 @@ displayed_sidebar: docs #### 参照 -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 748 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md index 0a68f8699ffb50..325b9fb20ad089 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR MOVE COLUMN**コマンドは、*column* 変数の位置にあるカラムを*newPos* 変数で指定した位置へと移動させます。 @@ -41,3 +38,13 @@ displayed_sidebar: docs 結果は以下のようになります: ![](../assets/en/commands/pict2569472.en.png) + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1325 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md index 967d25256cc1f1..edc3cf2f1cb985 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md @@ -13,13 +13,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR NEW AREA** コマンドは新しいクイックレポートエリアを作成し、その参照番号を倍長整数変数に保存します(変数は*ptr*ポインターによって参照されます)。 #### 参照 -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1320 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md index 839c0f088d6bb4..e060e738ca4c0f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR New offscreen area コマンドは、新しくクイックレポートのオフスクリーンエリアを作成し、その参照番号を返します。 @@ -23,4 +20,13 @@ displayed_sidebar: docs #### 参照 [QR DELETE OFFSCREEN AREA](qr-delete-offscreen-area.md) -[QR NEW AREA](qr-new-area.md) \ No newline at end of file +[QR NEW AREA](qr-new-area.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 735 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md index 1d91d9840d1b54..81a0fcbce304c6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR ON COMMAND コマンドは、ユーザによるメニューコマンドの選択やボタンのクリックなどで、クイックレポートコマンドが起動されると、 *methodName* に渡された4Dメソッドを実行します。*area*が0の場合、データベースが閉じられるか、QR ON COMMAND (0;"")という構文で QR ON COMMAND コマンドが呼び出されるまで、*methodName*が各クイックレポートエリアに適用されます。 @@ -41,4 +38,14 @@ displayed_sidebar: docs *QR Commands* [QR EXECUTE COMMAND](qr-execute-command.md) -[QR Get command status](qr-get-command-status.md) \ No newline at end of file +[QR Get command status](qr-get-command-status.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 790 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md index 2b51de9358f3e0..e7508d62aec25d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR REPORT TO BLOB コマンドは、*area*に渡された参照番号のレポートをBLOB (変数またはフィールド) に格納します。 @@ -33,4 +30,14 @@ displayed_sidebar: docs #### 参照 -[QR BLOB TO REPORT](qr-blob-to-report.md) \ No newline at end of file +[QR BLOB TO REPORT](qr-blob-to-report.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 770 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md index 6930563e9c7ec2..df03935133e9bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR REPORT**はクイックレポートエディターを用いて作成された、*aTable*のレポートを印刷します。このエディターを使用するとユーザーは独自のレポートを作成できるようになります。クイックレポートエディターを使用してレポートを作成する事については、4D*デザインリファレンス*マニュアルの*クイックレポート* の章を参照して下さい。 @@ -133,4 +130,14 @@ displayed_sidebar: docs [PRINT LABEL](print-label.md) [PRINT SELECTION](print-selection.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 197 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md index 525cd4f1bf62ea..48ef95d7a0fcbb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR RUNコマンドは、出力先を含め、クイックレポートの現在の設定を使用して、*area*引数に渡された参照番号のレポートエリアを実行します。[QR SET DESTINATION](qr-set-destination.md "QR SET DESTINATION")コマンドで出力タイプを変更できます。 @@ -25,3 +22,14 @@ displayed_sidebar: docs 無効な*area*番号を渡した場合、エラー番号-9850が生成されます。 **4D Serverの場合:** このコマンドは4D Server上でストアドプロシージャ―の一部として実行する事ができます。この場合、サーバーマシン上でダイアログボックスが表示されることがないように注意して下さい(ただし特定の条件の場合は除く)。4D Server上で実行するためには、[QR SET DESTINATION](qr-set-destination.md) コマンドに "\*" 引数を渡して呼び出します。プリンターに問題があった場合(用紙切れ、プリンターと接続できない、等)は、エラーメッセージは何も表示されません。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 746 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md index 0aedc08c371555..3578e9e436a388 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR SET AREA PROPERTY** コマンドを使用し、*property* に渡したインタフェース要素 (ツールバーやメニューバー) を表示、または非表示に設定できます。 @@ -36,4 +33,14 @@ displayed_sidebar: docs #### 参照 -[QR Get area property](qr-get-area-property.md) \ No newline at end of file +[QR Get area property](qr-get-area-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 796 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md index ab397ae3b8725a..6c0e6ce77a153a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET BORDERS コマンドを使用し、指定したセルの罫線スタイルを設定できます。 @@ -76,4 +73,14 @@ displayed_sidebar: docs #### 参照 -[QR GET BORDERS](qr-get-borders.md) \ No newline at end of file +[QR GET BORDERS](qr-get-borders.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 797 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md index 4e1f1a0e5bf08e..a200a4da9b1bba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **QR SET DESTINATION** コマンドは、*area* に渡された参照番号のエリア用のレポート出力タイプを設定します。 @@ -51,4 +48,14 @@ displayed_sidebar: docs #### 参照 -[QR GET DESTINATION](qr-get-destination.md) \ No newline at end of file +[QR GET DESTINATION](qr-get-destination.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 745 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md index d1dec882c1fd4d..6a3e7aaa106e5d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET DOCUMENT PROPERTY コマンドを使用し、印刷ダイアログの表示の有無、またはドキュメントで使用する単位の指定を行うことができます。 @@ -36,4 +33,14 @@ displayed_sidebar: docs #### 参照 -[QR Get document property](qr-get-document-property.md) \ No newline at end of file +[QR Get document property](qr-get-document-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 772 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md index 3fd39d76559d0c..e743aa3ef4ac3a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET HEADER AND FOOTER コマンドを使用し、ヘッダまたはフッタの内容とサイズを設定することができます。 @@ -57,4 +54,14 @@ displayed_sidebar: docs #### 参照 -[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) \ No newline at end of file +[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 774 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md index 3acb01024259fb..9365f780775cb3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET HTML TEMPLATEコマンドは、クイックレポートエリアに使用されるHTMLテンプレートを設定します。テンプレートは、HTML形式でレポートを作成する際に使用されます。 @@ -71,4 +68,14 @@ displayed_sidebar: docs #### 参照 -[QR Get HTML template](qr-get-html-template.md) \ No newline at end of file +[QR Get HTML template](qr-get-html-template.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 750 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md index f942134e1dabac..1a7ccde6b5d879 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 ##### リストモード @@ -109,4 +106,14 @@ QR SET INFO COLUMNコマンドを使用しても、すべてのセルに対応 [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 765 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md index 85d9d82ba54eec..72614fa5cd4be8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET INFO ROW コマンドは、*row*に渡した行を表示/非表示に設定します。 @@ -52,4 +49,14 @@ displayed_sidebar: docs [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO COLUMN](qr-set-info-column.md) \ No newline at end of file +[QR SET INFO COLUMN](qr-set-info-column.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 763 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md index a54c99b7bf0d33..e9468d510354fd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET REPORT KIND コマンドは、*area*に渡した参照番号のエリアのレポートタイプを設定します。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[QR Get report kind](qr-get-report-kind.md) \ No newline at end of file +[QR Get report kind](qr-get-report-kind.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 738 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md index 25005945525c2a..05a81c847cdd59 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET REPORT TABLE コマンドは、*area*に渡した参照のレポートエリアに、*table*に渡した番号のテーブルをカレントテーブルとして設定します。 @@ -28,4 +25,14 @@ displayed_sidebar: docs #### 参照 -[QR Get report table](qr-get-report-table.md) \ No newline at end of file +[QR Get report table](qr-get-report-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 757 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md index 34073b3f151556..9a523346e7ab11 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET SELECTION コマンドを使用するとマウスクリックをした場合と同様に、セルや行、カラム、またはエリア全体を反転表示 (選択) することができます。また、現在選択されている範囲を解除することもできます。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[QR GET SELECTION](qr-get-selection.md) \ No newline at end of file +[QR GET SELECTION](qr-get-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 794 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md index 8de00a473fae2a..a148940c3a6f94 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET SORTS コマンド使用し、*area*に渡した参照のレポート内にあるカラムのソート順を設定できます。 @@ -47,4 +44,14 @@ displayed_sidebar: docs #### 参照 -[QR GET SORTS](qr-get-sorts.md) \ No newline at end of file +[QR GET SORTS](qr-get-sorts.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 752 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md index 9573fc5da1f4bd..5b69daaf35476c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET TEXT PROPERTY コマンドを使用し、*colNum* と *rowNum* で指定されたセルのテキスト属性を設定できます。 @@ -85,4 +82,14 @@ displayed_sidebar: docs #### 参照 -[QR Get text property](qr-get-text-property.md) \ No newline at end of file +[QR Get text property](qr-get-text-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 759 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md index 5a5c5d6ea63fd0..3766d57a37920f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Note:** このコマンドで小計を作成することはできません。 @@ -99,4 +96,14 @@ QR SET TOTALS DATA コマンドを使用し、特定のセルの詳細を設定 #### 参照 -[QR GET TOTALS DATA](qr-get-totals-data.md) \ No newline at end of file +[QR GET TOTALS DATA](qr-get-totals-data.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 767 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md index 2387bc7b6c1eda..bb24a5ca450075 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QR SET TOTALS SPACING コマンドを使用し、小計行の下部の行間を設定できます。このコマンドはリストモードにのみ適用されます。 @@ -39,4 +36,14 @@ displayed_sidebar: docs #### 参照 -[QR GET TOTALS SPACING](qr-get-totals-spacing.md) \ No newline at end of file +[QR GET TOTALS SPACING](qr-get-totals-spacing.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 761 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md index 4b186bf2fb94ad..55297feac169ac 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### 説明 -**QUERY BY ATTRIBUTE** は*objectField*、*attributePath*、*queryOp* そして *value* 引数を使用して定義されたクエリ文字列に合致するレコードを検索し、*aTable* に対しレコードのセレクションを返します。 - -**QUERY BY ATTRIBUTE** はカレントプロセスにおいて*aTable* で指定されたテーブルのカレントセレクションを変更し、新しいセレクションの第一レコードをカレントレコードとします。*aTable* 引数が省略されていた場合、コマンドはデフォルトのテーブルへと適用されます。デフォルトテーブルが設定されていない場合、エラーが発生します。 +**QUERY BY ATTRIBUTE** は*objectField*、*attributePath*、*queryOp* そして *value* 引数を使用して定義されたクエリ文字列に合致するレコードを検索し、*aTable* に対しレコードのセレクションを返します。はカレントプロセスにおいて*aTable* で指定されたテーブルのカレントセレクションを変更し、新しいセレクションの第一レコードをカレントレコードとします。*aTable* 引数が省略されていた場合、コマンドはデフォルトのテーブルへと適用されます。デフォルトテーブルが設定されていない場合、エラーが発生します。 任意の*conjOp* 引数を使用すると、**QUERY BY ATTRIBUTE** の呼び出しを複数のクエリ定義と組み合わせることができます。使用可能な接続演算子は[QUERY](query.md) コマンドに対して使用できるものと同じです: @@ -409,4 +407,16 @@ GMT設定を使用したくない場合、これらの設定を以下の様に *4Dオブジェクトの構造* -[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) \ No newline at end of file +[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1331 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md index c3d1e55ee00918..19d66d354b4def 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 QUERY BY EXAMPLEは、デザインモードのフォームによるクエリメニューと同じ処理を実行します。このコマンドはクエリウィンドウとしてカレント入力フォームを表示します。QUERY BY EXAMPLEは、クエリウィンドウに入力された情報を使用して*aTable*を検索します。このときに使用するフォームには、ユーザに検索させたいフィールドを置かなければなりません。この検索は最適化されています。つまり、クエリを最適化するためにインデックスフィールドが自動的に使用されます。 @@ -42,4 +39,17 @@ displayed_sidebar: docs #### 参照 [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 292 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md index d643980e01b9f5..b277b8ffb71204 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md @@ -97,4 +97,15 @@ displayed_sidebar: docs [QUERY](query.md) [QUERY BY SQL](query-by-sql.md) [QUERY SELECTION](query-selection.md) -[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) \ No newline at end of file +[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 48 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md index dedbd86630d375..bc46489a1c1ddd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 4Dに統合されたSQLカーネルのメリットを利用ためにQUERY BY SQLコマンドを使用できます。このコマンドで以下のような簡単なSELECTクエリを実行できます: @@ -158,4 +155,16 @@ QUERY BY SQL コマンドを使用する場合: #### 参照 -[QUERY BY FORMULA](query-by-formula.md) \ No newline at end of file +[QUERY BY FORMULA](query-by-formula.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 942 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md index b0d8a3088c4bac..f414db7d37a25f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md @@ -44,4 +44,16 @@ displayed_sidebar: docs #### 参照 -[QUERY BY ATTRIBUTE](query-by-attribute.md) \ No newline at end of file +[QUERY BY ATTRIBUTE](query-by-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1424 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md index 77492ca41355cc..74639f241da8ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md @@ -29,4 +29,15 @@ QUERY SELECTION BY FORMULAは[QUERY BY FORMULA](query-by-formula.md "QUERY BY FO [QUERY](query.md) [QUERY BY FORMULA](query-by-formula.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 207 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md index cc6ce8a5c8460f..8c670f6ddfa334 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md @@ -27,4 +27,14 @@ QUERY SELECTION WITH ARRAYは[QUERY WITH ARRAY](query-with-array.md "QUERY WITH #### 参照 -[QUERY WITH ARRAY](query-with-array.md) \ No newline at end of file +[QUERY WITH ARRAY](query-with-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1050 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md index c940b3b1468aee..77bc72f4c7d376 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### 説明 -**QUERY SELECTION** は、*aTable*のレコードを検索します。**QUERY SELECTION** はカレントプロセスの*aTable*のカレントセレクションを変更し、セレクションの先頭のレコ-ドをカレントレコ-ドにします。 +**QUERY SELECTION** は、*aTable*のレコードを検索します。はカレントプロセスの*aTable*のカレントセレクションを変更し、セレクションの先頭のレコ-ドをカレントレコ-ドにします。 **QUERY SELECTION** は、[QUERY](query.md)と同じような動作を実行します。相違点は検索する範囲が異なるだけです: @@ -42,4 +42,16 @@ displayed_sidebar: docs #### 参照 -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 341 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md index efaebc1cc50afb..875fc4ad77cb4d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md @@ -38,4 +38,14 @@ displayed_sidebar: docs #### 参照 -[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) \ No newline at end of file +[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 644 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md index f82ae5b477c04e..10fd96445314fb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md @@ -309,4 +309,16 @@ N対1でリレートされた3つのテーブルがあります: \[City\] -> \[D #### 参照 -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 277 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md index 2b8ca7f3f96ede..9d63231eb681af 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md @@ -62,4 +62,13 @@ displayed_sidebar: docs #### 参照 -[On Exitデータベースメソッド](on-exit-database-method.md) \ No newline at end of file +[On Exitデータベースメソッド](on-exit-database-method.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 291 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md index 798cfbe230da80..b50d2c927e5b0e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md @@ -32,3 +32,13 @@ displayed_sidebar: docs ```4d  vlResult:=(Random%21)+10 ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 100 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md index 1ded6ef788ae49..4bd0bc05a74bf6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md @@ -35,4 +35,13 @@ displayed_sidebar: docs [READ ONLY](read-only.md) [READ WRITE](read-write.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 362 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md index 16efad7707ef6c..bf9fa35c1a8294 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md @@ -25,4 +25,13 @@ displayed_sidebar: docs [Read only state](read-only-state.md) [READ WRITE](read-write.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 145 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md index b778b50d22c8e1..c5bb75a71d75c6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -READ PICTURE FILE コマンドを使用してディスクファイル*fileName* に保存されたピクチャを開き、これを*picture* 引数に指定した4Dフィールドまたは変数へロードすることができます。 - -*fileName* には読み込むファイルのフルパス名またはファイル名のみを渡すことができます。ファイル名のみを渡した場合、そのファイルはデータベースストラクチャと同階層になければなりません。Windowsではファイル拡張子が必要です。 +READ PICTURE FILE コマンドを使用してディスクファイル*fileName* に保存されたピクチャを開き、これを*picture* 引数に指定した4Dフィールドまたは変数へロードすることができます。には読み込むファイルのフルパス名またはファイル名のみを渡すことができます。ファイル名のみを渡した場合、そのファイルはデータベースストラクチャと同階層になければなりません。Windowsではファイル拡張子が必要です。 空の文字列 ("") が*fileName* に渡されると、標準のファイルを開くダイアログボックスが表示され、ユーザは読み込むファイルやフォーマットを指定できます。 [PICTURE CODEC LIST](picture-codec-list.md "PICTURE CODEC LIST") コマンドを使用して、利用可能なフォーマットを取得できます。 @@ -39,4 +37,14 @@ displayed_sidebar: docs [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) [WRITE PICTURE FILE](write-picture-file.md) -*ピクチャ* \ No newline at end of file +*ピクチャ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 678 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md index 13000fc6abef24..968684198d025d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md @@ -29,4 +29,13 @@ READ WRITEコマンドは、レコードを修正しその結果を保存しな [READ ONLY](read-only.md) [Read only state](read-only-state.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 146 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md index 883f3e8468d539..e481c6c80e70b9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md @@ -133,4 +133,13 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 552 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md index 844787a396a552..82a8d21d81a2fb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md @@ -62,4 +62,14 @@ Mac OS Xのシリアルポート バッファーサイズは、理論的には [RECEIVE PACKET](receive-packet.md) [Semaphore](semaphore.md) [SET CHANNEL](set-channel.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 172 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md index 51ded97f7dfcfb..b5ebe6ddec6220 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md @@ -112,4 +112,14 @@ RECEIVE PACKET呼び出し後、エラーなしでパケットを受信すれば [SEND PACKET](send-packet.md) [SET DOCUMENT POSITION](set-document-position.md) [SET TIMEOUT](set-timeout.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 104 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md index ccbcf7c4b928f2..23466ecf27b1c9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md @@ -149,4 +149,14 @@ displayed_sidebar: docs [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 79 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md index ca7d3d81416a09..79bcc254a4af6d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md @@ -40,4 +40,14 @@ displayed_sidebar: docs [ON ERR CALL](on-err-call.md) [RECEIVE RECORD](receive-record.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 81 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md index 38b26e6f859eb5..de87f7f82eae5e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md @@ -42,4 +42,13 @@ displayed_sidebar: docs [Is new record](is-new-record.md) [Selected record number](selected-record-number.md) [Sequence number](sequence-number.md) -*レコード番号について* \ No newline at end of file +*レコード番号について* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 243 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md index a51d0d7ddf9ce0..714447d847b0e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 76 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md index 3345ba11a1c2f5..4be317c496b044 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md @@ -32,4 +32,13 @@ displayed_sidebar: docs #### 参照 [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 195 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md index dc63bf97a8cff8..1b6eac3fa297ad 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 83 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md index a64b02ac8339e3..e171fa75f8c217 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 REDRAW WINDOW コマンドは*window*に渡した参照番号を持つウィンドウのグラフィックな更新を行います。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[ERASE WINDOW](erase-window.md) \ No newline at end of file +[ERASE WINDOW](erase-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 456 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md index d7b014bd421f14..cc487bb8f1f937 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 メソッドを使用して、サブフォームで中に表示されるフィールドの値を変更する場合、フォームを確実に更新するために REDRAW コマンドを使用しなければなりません。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 174 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md index f74666ea09c3af..ccad7dfdeed881 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **REDUCE RESTORE WINDOW** コマンドは、*window* 引数に参照を渡したウィンドウを、WindowsのタスクバーまたはmacOS のDockへ収納、またはそこから展開します。 @@ -31,4 +28,13 @@ displayed_sidebar: docs [Is window reduced](is-window-reduced.md) [MAXIMIZE WINDOW](maximize-window.md) -[MINIMIZE WINDOW](minimize-window.md) \ No newline at end of file +[MINIMIZE WINDOW](minimize-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1829 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md index cd7a3c68e6d9b5..fa5d865ab8a92f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md @@ -56,4 +56,15 @@ displayed_sidebar: docs [ORDER BY](order-by.md) [QUERY](query.md) [SCAN INDEX](scan-index.md) -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 351 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md index bdcf4c2676c24a..d968f45345b030 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Refresh license** コマンドはカレントの4D Server ライセンスを更新します。このコマンドは4D カスタマーデータベースへと接続し、カレントのライセンスに関連した新規あるいは更新されたライセンス(*例:* 追加購入したクライアントライセンスなど)を自動的にアクティベートします。 @@ -47,3 +44,13 @@ displayed_sidebar: docs     ALERT($res.statusText)  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1336 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md index 9ef1119a6f52fc..8292a00fe91fe6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 REGENERATE MISSING TABLE コマンドは tableName引数に渡された名前の失われたテーブルを再構築します。失われたテーブルが再構築されると、ストラクチャエディタにそれらが現れ、データに再びアクセスできるようになります。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 -[GET MISSING TABLE NAMES](get-missing-table-names.md) \ No newline at end of file +[GET MISSING TABLE NAMES](get-missing-table-names.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1126 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md index 69dba7edbb7d5b..0a0bed2f711395 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 REGISTER CLIENT コマンドは、4Dクライアントステーションを、*clientName*で指定した名前で4D Serverに登録し、他のクライアントもしくは4D Server (ストアドプロシージャから) が登録されたマシン上で、[EXECUTE ON CLIENT](execute-on-client.md "EXECUTE ON CLIENT")コマンドを使ってメソッドを実行できるようにします。一旦登録されると、4Dクライアントは他のクライアント用に1つまたはそれ以上のメソッドを実行することができます。 @@ -121,4 +118,14 @@ displayed_sidebar: docs [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 648 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md index eae39d2c024ef1..91f5e868357e27 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md @@ -47,4 +47,13 @@ displayed_sidebar: docs #### 参照 -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1638 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md index 51a8cf07fc7f5f..aa79fedb250af5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**REJECT NEW REMOTE CONNECTIONS** コマンドは、アプリケーションサーバーが新規リモートユーザー接続を受け入れるかどうかを指定します。 - -*rejectStatus* 引数には、リモート接続を拒否するためには**true** を渡します。**false** を渡した場合、新規リモート接続を許可することを指定します。 +**REJECT NEW REMOTE CONNECTIONS** コマンドは、アプリケーションサーバーが新規リモートユーザー接続を受け入れるかどうかを指定します。引数には、リモート接続を拒否するためには**true** を渡します。**false** を渡した場合、新規リモート接続を許可することを指定します。 **注**: このコマンドは4D Server 上でのみ実行可能です。コマンドを呼び出しているメソッドが、リモートクライアントでローカルに実行されていた場合、あるいはシングルユーザー版4D で実行されていた場合、**REJECT NEW REMOTE CONNECTIONS** は何もしません。 @@ -38,4 +36,13 @@ displayed_sidebar: docs [DROP REMOTE USER](drop-remote-user.md) [Application info](application-info.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1635 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md index fc761f985bc786..2f790b9a335f23 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **REJECT**には2つの形式があります。第1の形式は、引数がありません。これは、データ入力全体を取り消し、ユーザは強制的にフォーム上にとどまります。第2の形式は、*aField* だけを取り消し、ユーザは強制的にそのフィールド上にとどまります。 @@ -64,4 +61,13 @@ displayed_sidebar: docs [ACCEPT](accept.md) [CANCEL](cancel.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 38 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md index 739c366e67a70d..29537b4d35067c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -RELATE MANY SELECTION コマンドは、1テーブルのレコードセレクションを元にしてnテーブルのレコードセレクションを作成し、nテーブルの一番目のレコードをカレントレコードとしてロードします。 - -**Note:** RELATE MANY SELECTIONは、1テーブルのカレントレコードを変更します。 +RELATE MANY SELECTION コマンドは、1テーブルのレコードセレクションを元にしてnテーブルのレコードセレクションを作成し、nテーブルの一番目のレコードをカレントレコードとしてロードします。RELATE MANY SELECTIONは、1テーブルのカレントレコードを変更します。 #### 例題 @@ -34,4 +32,15 @@ displayed_sidebar: docs [QUERY](query.md) [RELATE ONE](relate-one.md) -[RELATE ONE SELECTION](relate-one-selection.md) \ No newline at end of file +[RELATE ONE SELECTION](relate-one-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 340 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md index fc0ddc8db18245..94344f9329e845 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md @@ -66,4 +66,14 @@ displayed_sidebar: docs #### 参照 [OLD RELATED MANY](old-related-many.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 262 | +| スレッドセーフである | ✓ | +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md index 6d1ea0db3e77ff..905530e85b89cf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md @@ -56,4 +56,15 @@ displayed_sidebar: docs [QUERY](query.md) [RELATE MANY SELECTION](relate-many-selection.md) [RELATE ONE](relate-one.md) -*セット* \ No newline at end of file +*セット* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 349 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md index 902def7b20c71a..789bddb68b48fc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **RELATE ONE** には2つの形式があります。 @@ -90,4 +87,16 @@ displayed_sidebar: docs #### 参照 [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 42 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md index cc3340e31365e5..ccf773eb8900cf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 RELEASE MENU コマンドは*menu* に渡したIDを持つメニューをメモリから解放します。このメニューは[Create menu](create-menu.md "Create menu") コマンドで作成されたものでなければなりません。以下のルールが適用されます: 各[Create menu](create-menu.md)に対応する[RELEASE MENU](release-menu.md)コマンドが呼び出されなければなりません。 @@ -56,4 +53,13 @@ displayed_sidebar: docs #### 参照 -[Create menu](create-menu.md) \ No newline at end of file +[Create menu](create-menu.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 978 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md index 95757a32ac6599..e1aaae3d2219ba 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### 参照 -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1135 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md index 773b71bbf65e7f..cf88361e53ab68 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **RELOAD PROJECT** コマンドは、カレントの4D 環境で実行中のプロジェクトに対して、ソースファイル定義(メソッド、ファイル、等)をディスクから再読み込みします。このコマンドは**インタープリタモード**で実行中の4D プロジェクトに対してのみ使用可能です。コマンドの実行は非同期となります。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 - \ No newline at end of file + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1739 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md index 7d7a744d06c886..b7640c9548720b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### 参照 -[ADD TO SET](add-to-set.md) \ No newline at end of file +[ADD TO SET](add-to-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 561 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md index c7bdda770ce08d..9cfc4a9c5a2999 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 REMOVE PICTURE FROM LIBRARY コマンドは、*picRef*引数に渡した参照番号または*picName*引数の名前を持つピクチャをピクチャライブラリから消去します。 @@ -51,4 +48,14 @@ displayed_sidebar: docs [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 567 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md index 959154eb539c50..43722f6c3ac09a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md @@ -71,4 +71,13 @@ Replace stringの使用例を次に示します。結果を変数*vtResult*に [Change string](change-string.md) [Delete string](delete-string.md) -[Insert string](insert-string.md) \ No newline at end of file +[Insert string](insert-string.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 233 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md index c71260d153bb2c..3a23f871fb8443 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md @@ -79,4 +79,14 @@ displayed_sidebar: docs #### 参照 [ALERT](alert.md) -[CONFIRM](confirm.md) \ No newline at end of file +[CONFIRM](confirm.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 163 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md index 07f5e1f854953e..cdb84064bc4c8e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 RESIZE FORM WINDOW コマンドはカレントフォームウィンドウのサイズを変更します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs [FORM GET PROPERTIES](form-get-properties.md) [FORM SET SIZE](form-set-size.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 890 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md index dad792e2a4604f..4df9b1a1f913ed 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md @@ -28,4 +28,14 @@ displayed_sidebar: docs #### 参照 -[CREATE ALIAS](create-alias.md) \ No newline at end of file +[CREATE ALIAS](create-alias.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 695 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md index 2a9bf4f72b1648..1e1b339a93e34c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md @@ -108,4 +108,13 @@ DRAG AND DROP PROPERTIES コマンドの例を参照. [Get pointer](get-pointer.md) [Is a variable](is-a-variable.md) [Is nil pointer](is-nil-pointer.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 394 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md index 207e3a38621140..82048e6e37b23a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 RESOURCE LIST コマンドは、*resType*に渡したタイプのリソースIDとリソース名から、*resIDs*と*resNames*の配列を作成します。 @@ -71,4 +68,13 @@ RESOURCE LISTを呼び出す前に配列を事前定義する場合は、*resIDs #### 参照 -[RESOURCE TYPE LIST](resource-type-list.md) \ No newline at end of file +[RESOURCE TYPE LIST](resource-type-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 500 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md index 4b415c154dd377..92d51b337a6990 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 RESOURCE TYPE LIST コマンドは、現在開いているリソースファイルの中に存在するリソースのリソースタイプによる*resTypes*配列を作成します。 @@ -82,4 +79,13 @@ RESOURCE TYPE LISTを呼び出す前に、*resTypes*配列を文字列配列ま #### 参照 -[RESOURCE LIST](resource-list.md) \ No newline at end of file +[RESOURCE LIST](resource-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 499 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md index 8f31e1803032ce..3ea307151a19bc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md @@ -33,4 +33,14 @@ displayed_sidebar: docs #### 参照 [Get last update log path](get-last-update-log-path.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1292 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md index 25e6b8b00fd124..8b873a244bcbe3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md @@ -35,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 889 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md index ba7d13c915c496..c3966e5241a185 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 RESTORE コマンドは4Dアーカイブに含まれるファイルを復元するために使用できます。このコマンドはバックアップを管理するためのカスタマイズされたインターフェースで利用できます。 @@ -35,4 +32,14 @@ RESTORE コマンドは*OK*および*Document*変数を更新します。復元 #### 参照 [BACKUP](backup.md) -[RESTORE INFO](restore-info.md) \ No newline at end of file +[RESTORE INFO](restore-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 918 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md index ab63ab211e78c3..d8a9b7a881f1c4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -**RESUME INDEXES** コマンドは、 [PAUSE INDEXES](pause-indexes.md) コマンドを使用して停止させた *aTable* のインデックスを全て再起動させます。 *aTable* のインデックスが停止されていない場合、コマンドは何もしません。 +**RESUME INDEXES** コマンドは、 [PAUSE INDEXES](pause-indexes.md) コマンドを使用して停止させた *aTable* のインデックスを全て再起動させます。のインデックスが停止されていない場合、コマンドは何もしません。 ほとんどの場合、このコマンドの実行は *aTable* のインデックスのリビルドをトリガーします。 任意の *\** 引数を渡した場合、インデックスのリビルドは非同期モードにて実行されます。これはインデックスの完了如何に関わらず、コマンドを呼び出すメソッドは呼び出された後も実行を続けるという事です。この引数を省略した場合、インデックスのリビルドはメソッドの実行をリビルドのオペレーションが完了するまで停止します。 @@ -26,4 +26,13 @@ displayed_sidebar: docs #### 参照 [CREATE INDEX](create-index.md) -[PAUSE INDEXES](pause-indexes.md) \ No newline at end of file +[PAUSE INDEXES](pause-indexes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1294 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md index 4b3843b163f776..1c57a7902711a6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md @@ -24,4 +24,14 @@ displayed_sidebar: docs #### 参照 [DELAY PROCESS](delay-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 320 | +| スレッドセーフである | ✓ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md index b9a09fe09f3bea..61560865ebb911 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md @@ -22,4 +22,13 @@ displayed_sidebar: docs [Active transaction](active-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*トランザクションの停止* \ No newline at end of file +*トランザクションの停止* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1386 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md index cde7a26c93e99f..a066c8500b2ebb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Right click コマンドは、マウスの右ボタンがクリックされた場合に[True](true.md "True") を返します。 @@ -25,4 +22,13 @@ displayed_sidebar: docs #### 参照 [Contextual click](contextual-click.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 712 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md index cd84e56d78972e..89443f57b77d5a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md @@ -37,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[Trunc](trunc.md) \ No newline at end of file +[Trunc](trunc.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 94 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md index a007d59645279d..199f3432bc181b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SAVE LIST コマンドは、デザインモードのリストエディタに、*list* 引数に渡した参照番号を持つリストを*listName* 引数に渡した名前で保存します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 384 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md index 6f15091f27bb3c..10b65b6475ceaf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md @@ -49,4 +49,13 @@ SAVE RECORD が必要とされる場合を次に示します: [CREATE RECORD](create-record.md) [Locked](locked.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 53 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md index 3a710ba383651b..df932d538eac21 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md @@ -24,4 +24,13 @@ SAVE RELATED ONEは、ロックされたレコードを保存しません。こ [CREATE RELATED ONE](create-related-one.md) [Locked](locked.md) [RELATE ONE](relate-one.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 43 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md index 4d9d847bfa77c0..7d60c9c6712264 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md @@ -40,4 +40,14 @@ SAVE SETコマンドは、時間のかかる検索の結果をディスクに保 #### 参照 -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 184 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md index 33e7729b43e847..377c3f6836c879 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md @@ -47,4 +47,14 @@ displayed_sidebar: docs [DOCUMENT TO BLOB](document-to-blob.md) [LOAD VARIABLES](load-variables.md) [VARIABLE TO BLOB](variable-to-blob.md) -*システム変数* \ No newline at end of file +*システム変数* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 75 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md index dfd2aa90e74c14..e5b4bda8275e9a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md @@ -44,4 +44,14 @@ displayed_sidebar: docs #### 参照 -[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) \ No newline at end of file +[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 857 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md index 040c4656cc8daa..0c3687806a09a1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md @@ -73,4 +73,14 @@ else #### 参照 -[SAX GET XML CDATA](sax-get-xml-cdata.md) \ No newline at end of file +[SAX GET XML CDATA](sax-get-xml-cdata.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 856 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md index 65ed8c49328342..9451766a11f596 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md @@ -45,4 +45,14 @@ XMLのコメントはXMLインタプリタが内容を解析しないテキス #### 参照 -[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) \ No newline at end of file +[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 852 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md index bab64753cf06b8..336b64e588b142 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md @@ -45,4 +45,14 @@ DocType文は書かれたXMLのタイプを示し、使用される Document Typ #### 参照 -[SAX ADD XML COMMENT](sax-add-xml-comment.md) \ No newline at end of file +[SAX ADD XML COMMENT](sax-add-xml-comment.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 851 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md index f0e07a45af49c4..4b9b1f25fff380 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md @@ -50,4 +50,14 @@ displayed_sidebar: docs #### 参照 [SAX GET XML ELEMENT VALUE](sax-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 855 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md index 1fc42ebe167563..20900e89d6de2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md @@ -36,4 +36,13 @@ displayed_sidebar: docs #### 参照 [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 854 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md index 955f824ae4dee3..988d8cf065e20c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md @@ -48,4 +48,14 @@ displayed_sidebar: docs #### 参照 [SAX ADD XML CDATA](sax-add-xml-cdata.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 878 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md index 3a1cb082e67632..fcf9ed9663d4ea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md @@ -25,4 +25,14 @@ displayed_sidebar: docs #### 参照 [SAX ADD XML COMMENT](sax-add-xml-comment.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 874 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md index d165f45a0f7f6c..d29f32457c6dfa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md @@ -29,4 +29,14 @@ displayed_sidebar: docs #### 参照 [SAX Get XML node](sax-get-xml-node.md) -[SAX SET XML DECLARATION](sax-set-xml-declaration.md) \ No newline at end of file +[SAX SET XML DECLARATION](sax-set-xml-declaration.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 873 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md index 4113fbab25564a..4451ff457c1671 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md @@ -43,4 +43,14 @@ TextまたはBLOB 型の変数を*value* 引数に渡します。BLOBを渡す #### 参照 [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 877 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md index 9844c09e44530d..b1f6231f5af50b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md @@ -60,4 +60,14 @@ tAttrValues{3} には "333"が返されます。 #### 参照 -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 876 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md index f950fa925bdbbe..82287f7685d734 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md @@ -47,4 +47,14 @@ displayed_sidebar: docs #### 参照 -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 879 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md index 13a96dd6ddfd1e..79453898fb3f8c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md @@ -55,3 +55,14 @@ displayed_sidebar: docs #### システム変数およびセット コマンドが正しく実行されるとシステム変数OKには1が、そうでなければ0が設定されエラーが生成されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 860 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md index 44341cfe82034a..84de52cad0d6ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md @@ -39,4 +39,13 @@ displayed_sidebar: docs #### 参照 [SAX ADD PROCESSING INSTRUCTION](sax-add-processing-instruction.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 875 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md index 4b2c8b16b55c75..73e771368a6be0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md @@ -53,4 +53,13 @@ SAX OPEN XML ELEMENT ARRAYS は日付、数値、ブール、そしてピクチ [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 921 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md index 820b97310091a8..a6f100b9ad7419 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md @@ -51,4 +51,14 @@ displayed_sidebar: docs #### 参照 [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 853 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md index 7936d9f2f12533..61d929f584bf98 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 -[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) \ No newline at end of file +[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 858 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md index 3b148038ef9e16..143439743c08e9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md @@ -48,4 +48,15 @@ SCAN INDEXは、インデックスフィールドにのみ使用できます。 [ORDER BY](order-by.md) [QUERY](query.md) -[REDUCE SELECTION](reduce-selection.md) \ No newline at end of file +[REDUCE SELECTION](reduce-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 350 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md index cd6daba15fb5d6..a8452a6ba87a4f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SCREEN COORDINATES コマンドは、*screenID* に指定した画面のグローバル座標を引数*left*、*top*、*right*と*bottom*に返します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs [Count screens](count-screens.md) [Menu bar screen](menu-bar-screen.md) -[SCREEN DEPTH](screen-depth.md) \ No newline at end of file +[SCREEN DEPTH](screen-depth.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 438 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md index 2b901232f2f333..f4d7d27191ffb0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Screen depthコマンドは、モニターについての情報を引数*depth*と*color*に返します。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 -[Count screens](count-screens.md) \ No newline at end of file +[Count screens](count-screens.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 439 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md index 4cd986fd642b93..2183dcb4e2da1c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Windowsでは、Screen heightは、4Dアプリケーションウィンドウ(MDIウィンドウ) の高さを返します。任意の引数*\** を指定した場合、Screen heightは画面の高さを返します。 @@ -26,4 +23,13 @@ Macintoshでは、Screen height はメイン画面の高さを返します。メ #### 参照 [SCREEN COORDINATES](screen-coordinates.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 188 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md index bd7cf4aa154369..c7d84664142678 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Windowsの場合、Screen width は4Dアプリケーションウィンドウ(MDIウィンドウ) の幅を返します。任意の引数 *\** を指定した場合、Screen widthは画面の幅を返します。 @@ -26,4 +23,13 @@ Macintoshの場合、, Screen width はメイン画面の幅を返します。 #### 参照 [SCREEN COORDINATES](screen-coordinates.md) -[Screen height](screen-height.md) \ No newline at end of file +[Screen height](screen-height.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 187 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md index e4c3397b1f0b0f..d58194af97fc0d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md @@ -97,4 +97,14 @@ displayed_sidebar: docs #### 参照 [Open document](open-document.md) -[Select folder](select-folder.md) \ No newline at end of file +[Select folder](select-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 905 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md index 0474193a887858..8c79d36fb73354 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md @@ -85,4 +85,14 @@ displayed_sidebar: docs [CREATE FOLDER](create-folder.md) [FOLDER LIST](folder-list.md) -[Select document](select-document.md) \ No newline at end of file +[Select document](select-document.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 670 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md index 28f98f1cba95c6..cf05ffadc9cf88 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SELECT LIST ITEMS BY POSITION コマンドは、*list*に渡された参照番号のリストにおいて、*itemPos*ならびにオプションとして*positionsArray*に渡された位置にある項目を選択します。 @@ -73,4 +70,13 @@ displayed_sidebar: docs [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 381 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md index 5638bedf664430..69496d52047e83 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SELECT LIST ITEMS BY REFERENCE コマンドは、*list*に渡された参照番号のリストにおいて、*itemRef*ならびにオプションとして*refArray*に渡された項目参照番号を持つ項目を選択します。 @@ -52,4 +49,13 @@ displayed_sidebar: docs [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 630 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md index c7fd173c82cf3b..d6f767321e1b54 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SELECT LOG FILE** コマンドは、*logFile*引数で指定されたログファイルのオープン、作成、クローズを行います。 @@ -39,4 +36,14 @@ displayed_sidebar: docs #### 参照 -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 345 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md index 3db31a08254d98..e90b981906467b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Select RGB Color**コマンドはシステムカラー選択ウィンドウを表示し、ユーザによって選択された色のRGB値を返します。 @@ -42,4 +39,15 @@ displayed_sidebar: docs #### 参照 -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 956 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md index 02da6f0af48f19..322889d92a85a2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Selected list items** コマンドは、*list*引数に渡された参照番号またはオブジェクト名のリストにおいて、選択された項目の位置または参照番号を返します。 @@ -87,4 +84,13 @@ displayed_sidebar: docs #### 参照 [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 379 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md index 39a21d63069d00..6c2f4cbaefc248 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md @@ -34,4 +34,13 @@ displayed_sidebar: docs [GOTO SELECTED RECORD](goto-selected-record.md) [Records in selection](records-in-selection.md) -*レコード番号について* \ No newline at end of file +*レコード番号について* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 246 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md index f86f3583edc46c..a6743b838f6d69 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md @@ -106,4 +106,13 @@ displayed_sidebar: docs [ON ERR CALL](on-err-call.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 368 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md index 2636d1d7f5d6be..f99d3763d883b9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md @@ -78,4 +78,13 @@ displayed_sidebar: docs [MULTI SORT ARRAY](multi-sort-array.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 260 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md index 3a29d4f580a0f3..348a8caedd63cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md @@ -89,4 +89,13 @@ displayed_sidebar: docs #### 参照 -[JSON TO SELECTION](json-to-selection.md) \ No newline at end of file +[JSON TO SELECTION](json-to-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1234 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md index 61af5599032233..7798385d4e01df 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 互換性に関する注意 このコマンドは互換性の目的で保持されています。4D v12からはOBJECT Get pointerコマンドの利用が推奨されます。 @@ -40,4 +37,13 @@ Self が上記のコンテキスト以外で呼ばれた場合、Nilポインタ [OBJECT Get pointer](object-get-pointer.md) [RESOLVE POINTER](resolve-pointer.md) -[This](this.md) \ No newline at end of file +[This](this.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 308 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md index 2733ee9334a0be..ae07c625a7fa00 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md @@ -149,4 +149,13 @@ var $T_Sema_local;$T_Message : Text [CLEAR SEMAPHORE](clear-semaphore.md) [Test semaphore](test-semaphore.md) -*セマフォーとシグナル* \ No newline at end of file +*セマフォーとシグナル* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 143 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md index a1e50530fcfeb8..54e9f458a24a6d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**SEND MESSAGE TO REMOTE USER** コマンドは、全てのリモートユーザー、あるいは特定のリモートユーザーに対して、メッセージを送信します。 - -*message* 引数には、表示されるメッセージのテキストを渡します。これはセッションユーザーのスクリーン上に、アラート画面あるいは通知として表示されます。 +**SEND MESSAGE TO REMOTE USER** コマンドは、全てのリモートユーザー、あるいは特定のリモートユーザーに対して、メッセージを送信します。引数には、表示されるメッセージのテキストを渡します。これはセッションユーザーのスクリーン上に、アラート画面あるいは通知として表示されます。 任意の*userSession* 引数を使用すると、セッションIDを渡すことでメッセージを送信する特定のユーザーを指定することができます。セッションIDは[Process activity](../commands/process-activity.md) コマンドを使用することで取得できます。*userSession* 引数が省略されていた場合、メッセージは全てのユーザーに送信されます。 @@ -51,4 +49,13 @@ displayed_sidebar: docs #### 参照 -[DROP REMOTE USER](drop-remote-user.md) \ No newline at end of file +[DROP REMOTE USER](drop-remote-user.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1632 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md index 718838eb576f4b..4b6e76e5875bb7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md @@ -79,4 +79,13 @@ SEND PACKETコマンドを使用する前に、 [SET CHANNEL](set-channel.md) [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 103 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md index 793d386ad9957a..84d377a1bd5025 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md @@ -33,4 +33,13 @@ displayed_sidebar: docs [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 78 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md index a561ab158e8270..b96e461bf0a69e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md @@ -31,4 +31,13 @@ displayed_sidebar: docs [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 80 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md index 0a92cff0fe6e6e..4d4ff3f0448712 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md @@ -57,4 +57,13 @@ displayed_sidebar: docs [Record number](record-number.md) [Selected record number](selected-record-number.md) -*レコード番号について* \ No newline at end of file +*レコード番号について* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 244 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md index b6c74613f8f9f5..f6792838a1562d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md @@ -51,4 +51,13 @@ displayed_sidebar: docs #### 参照 -[Process activity](../commands/process-activity.md) \ No newline at end of file +[Process activity](../commands/process-activity.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1839 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md index 5f347c39a56a1f..0b4b523d46c7ca 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET ABOUT** コマンドは、**ヘルプ** メニュー(Windows) または**アプリケーション** メニュー(macOS) 内の"**4Dについて**"メニューを*itemText* に変更します。 @@ -45,4 +42,13 @@ displayed_sidebar: docs #### 参照 -[SET HELP MENU](set-help-menu.md) \ No newline at end of file +[SET HELP MENU](set-help-menu.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 316 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md index fc4930d5427487..ec4d6996840865 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET APPLICATION COLOR SCHEME** コマンドは、カレントセッションにおいて、アプリケーションレベルで使用されるカラースキームを定義します。このスキームは特定のスキームをまだ宣言していないフォームに対して適用されます(フォームレベルで定義されるカラースキームはアプリケーションレベルでの設定を上書きします)。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 [FORM Get color scheme](form-get-color-scheme.md) -[Get application color scheme](get-application-color-scheme.md) \ No newline at end of file +[Get application color scheme](get-application-color-scheme.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1762 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md index c68cd30949625d..3a3eb2dc11af11 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md @@ -37,4 +37,13 @@ displayed_sidebar: docs [ASSERT](assert.md) [Asserted](asserted.md) -[Get assert enabled](get-assert-enabled.md) \ No newline at end of file +[Get assert enabled](get-assert-enabled.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1131 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md index 17e86831a2f0e0..71150c5d8f13d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md @@ -47,4 +47,13 @@ displayed_sidebar: docs [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) [SET FIELD RELATION](set-field-relation.md) -*リレーションについて* \ No newline at end of file +*リレーションについて* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 310 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md index 49627e0bac875f..bd212b759b5812 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md @@ -49,4 +49,13 @@ BLOBに新しいバイトを割り当て、それらのバイトを特定の値 #### 参照 -[BLOB size](blob-size.md) \ No newline at end of file +[BLOB size](blob-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 606 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md index 3583e8bf405c17..dc7c08583c0716 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md @@ -47,4 +47,13 @@ displayed_sidebar: docs #### 参照 [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) -[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) \ No newline at end of file +[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1425 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md index eaf7004ec0b0d1..8df8c5f44bc8df 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**SET CACHE SIZE**コマンドは、データベースキャッシュのサイズを動的に設定し、またオプションとして、メモリを解放する際の最小バイト数を設定します。 - -**注:** このコマンドはローカルモード(4D Serverおよび4D)用です。リモートモードの4Dでは使用できません。 +**SET CACHE SIZE**コマンドは、データベースキャッシュのサイズを動的に設定し、またオプションとして、メモリを解放する際の最小バイト数を設定します。このコマンドはローカルモード(4D Serverおよび4D)用です。リモートモードの4Dでは使用できません。 *size*引数には、データベースの新しいキャッシュサイズをバイト単位で指定します。新しいサイズは、コマンドが実行された際に動的に適用されます。 @@ -39,4 +37,13 @@ displayed_sidebar: docs #### 参照 -[Get cache size](get-cache-size.md) \ No newline at end of file +[Get cache size](get-cache-size.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1399 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md index 19a04e2d1bb12c..988053ca68bdb0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md @@ -172,4 +172,14 @@ SET CHANNELコマンドの第2の形式は、ドキュメントファイルの [SEND PACKET](send-packet.md) [SEND RECORD](send-record.md) [SEND VARIABLE](send-variable.md) -[SET TIMEOUT](set-timeout.md) \ No newline at end of file +[SET TIMEOUT](set-timeout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 77 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md index fabebf7419884e..7d1b5a8d3e809e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET CURRENT PRINTER** コマンドは現行の4Dアプリケーションでの印刷に使用するプリンターを指定するために使用します。 @@ -55,4 +52,14 @@ Windows 環境下でのPDF ドキュメントの作成は、以下のように #### 参照 [Get current printer](get-current-printer.md) -[PRINTERS LIST](printers-list.md) \ No newline at end of file +[PRINTERS LIST](printers-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 787 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md index 5415da7c07bd00..d3e75208f75a48 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET CURSOR コマンド はマウスカーソルを、*cursor* 引数に渡したID番号のシステムカーソルへと変更します。 @@ -62,3 +59,13 @@ displayed_sidebar: docs     SET CURSOR(9019)  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 469 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md index 3f6b74a91aa649..d88f4694722cdc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET DATABASE LOCALIZATION**コマンドを使用して、カレントセッションのデータベースカレント言語を変更できます。 @@ -71,4 +68,14 @@ displayed_sidebar: docs #### 参照 -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1104 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md index 277f2c5e814686..9d40afa47cad6e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET DATABASE PARAMETER**コマンドを使用して、4Dデータベース内部の様々なパラメーターを変更することができます。 @@ -150,4 +147,13 @@ displayed_sidebar: docs [Get database parameter](get-database-parameter.md) [LOG EVENT](log-event.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 642 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md index c25340142b00e2..4b9b2163e3cbad 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md @@ -61,3 +61,13 @@ displayed_sidebar: docs * 2007/01/25 は2007年1月25日を意味します。 このコマンドはデータ入力にのみ影響します。日付の格納や計算には影響しません。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 392 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md index df446043e02a37..b569188687acca 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md @@ -29,4 +29,13 @@ SET DOCUMENT POSITION コマンドは、引数*offset*に渡す、以下の読 [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 482 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md index f85476ac85c450..7e97cd76f3a7c4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md @@ -34,4 +34,14 @@ displayed_sidebar: docs #### 参照 -[GET DOCUMENT PROPERTIES](get-document-properties.md) \ No newline at end of file +[GET DOCUMENT PROPERTIES](get-document-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 478 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md index 1f1aa1cc537436..1af57c202c8910 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md @@ -26,4 +26,13 @@ Macintoshでは、ドキュメントデータフォークのサイズが変更 [Get document position](get-document-position.md) [Get document size](get-document-size.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 480 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md index 6b67ce247b5913..b28de4967cbe25 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET DRAG ICON**コマンドは、指定したアイコンを、ドラッグ&ドロップ中のカーソルと関連付けます。 @@ -59,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1272 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md index 6845fabfcbabcd..fa4fb7e945be51 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md @@ -34,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 812 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md index 76832595b99742..edcf73fcc81b54 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md @@ -58,4 +58,13 @@ displayed_sidebar: docs #### 参照 [Get external data path](get-external-data-path.md) -[RELOAD EXTERNAL DATA](reload-external-data.md) \ No newline at end of file +[RELOAD EXTERNAL DATA](reload-external-data.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1134 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md index 3001b02913f0cf..6071836bd1de5c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md @@ -55,4 +55,14 @@ displayed_sidebar: docs [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 919 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md index cf361a8a3adf83..193dc1bb3fab8a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET FIELD TITLES** コマンドを使用すれば、アプリケーションモードにおいて、クエリエディターのような標準の4 Dダイアログボックスを表示する際に、*aTable* に渡されるそのテーブルのフィールドのマスクや名前の変更、並べ替えが行えます (スタートアップモードが**アプリケーション**である場合、または**実行**メニューから**アプリケーションをテスト**を選択した場合) 。 @@ -63,4 +60,13 @@ displayed_sidebar: docs [GET FIELD TITLES](get-field-titles.md) [Last field number](last-field-number.md) [Parse formula](parse-formula.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 602 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md index 919af06dec30b7..7f398d44072b88 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md @@ -27,4 +27,13 @@ NULL値は、4DのSQLカーネルによって使用されます。詳細につ #### 参照 [Is field value Null](is-field-value-null.md) -[Null](null.md) \ No newline at end of file +[Null](null.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 965 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md index cfc518118b61b7..13908ea5aeb275 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET FILE TO PASTEBOARD コマンドは*filePath* 引数に渡した完全パス名を追加します。このコマンドは例えば、4Dオブジェクトをデスクトップ上のファイルにドラッグ&ドロップさせるインタフェースのセットアップに使用できます。 @@ -29,4 +26,13 @@ displayed_sidebar: docs #### 参照 -[Get file from pasteboard](get-file-from-pasteboard.md) \ No newline at end of file +[Get file from pasteboard](get-file-from-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 975 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md index 9eb7cfe0276402..5cd9b9a2962281 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md @@ -42,4 +42,14 @@ displayed_sidebar: docs [Get group access](get-group-access.md) [Get plugin access](get-plugin-access.md) [SET PLUGIN ACCESS](set-plugin-access.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1737 | +| スレッドセーフである | ✓ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md index 0d56d7ef2a7a81..81a2be1a49258b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Set group properties コマンドは、引数 *groupID* に渡したユニークなグループID番号を持つ既存のグループのプロパティを変更・更新するか、新規グループを追加します。 @@ -58,4 +55,14 @@ displayed_sidebar: docs [GET GROUP LIST](get-group-list.md) [GET GROUP PROPERTIES](get-group-properties.md) -[GET USER LIST](get-user-list.md) \ No newline at end of file +[GET USER LIST](get-user-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 614 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md index 322225671c3574..44274fb4cbfd16 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET HELP MENU** コマンドを使用すると、アプリケーションモードにおいてデフォルトの4D **ヘルプ**メニューの内容を、 *menuCol* 引数に渡したコレクションで置き換えることができます。 @@ -61,4 +58,13 @@ displayed_sidebar: docs #### 参照 -[SET ABOUT](set-about.md) \ No newline at end of file +[SET ABOUT](set-about.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1801 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md index 3f2de2dee44757..0e0723f0cf72d3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md @@ -47,4 +47,13 @@ displayed_sidebar: docs #### 参照 [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) -[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) \ No newline at end of file +[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1401 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md index 7538475aac0aca..7ea197fb44abae 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md @@ -87,4 +87,13 @@ displayed_sidebar: docs [DELETE INDEX](delete-index.md) [GET FIELD PROPERTIES](get-field-properties.md) [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 344 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md index b9a3356c92f07e..712e56de1208a5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET LIST ITEM FONT コマンドは、リスト参照またはオブジェクト名を*list*に指定したリスト中、*itemRef*引数で指定した項目の文字フォントを設定します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs [Get list item font](get-list-item-font.md) [OBJECT SET FONT](object-set-font.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 953 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md index 31140acd254984..2e1dbb4ea7309d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET LIST ITEM ICON コマンドは、リスト参照またはオブジェクト名を*list*に指定したリスト中、*itemRef*引数で指定した項目に割り当てるアイコンを設定します。 @@ -47,4 +44,13 @@ displayed_sidebar: docs [SET LIST ITEM](set-list-item.md) [SET LIST ITEM FONT](set-list-item-font.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 950 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md index 3f1e02039d53fb..5c5d247adef362 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET LIST ITEM PARAMETER**コマンドは、リスト参照またはオブジェクト名を*list*に指定したリスト中、*itemRef*引数で指定した項目の*selector* パラメタを設定するために使用します。 @@ -62,4 +59,13 @@ displayed_sidebar: docs [Action info](action-info.md) [GET LIST ITEM PARAMETER](get-list-item-parameter.md) [GET LIST ITEM PARAMETER ARRAYS](get-list-item-parameter-arrays.md) -[INSERT IN LIST](insert-in-list.md) \ No newline at end of file +[INSERT IN LIST](insert-in-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 986 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md index c5dd79d46ab26f..d7fdb0b923c327 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET LIST ITEM PROPERTIES** コマンドは、引数*list*に渡された参照番号またはオブジェクト名のリスト内で、*itemRef*によって指定された項目を変更します。 @@ -81,4 +78,13 @@ displayed_sidebar: docs [GET LIST ITEM PROPERTIES](get-list-item-properties.md) *Hierarchical Lists* [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 386 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md index a8b01f5202df6b..d92ce3ab2a399d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET LIST ITEM コマンドは、*list*引数に渡した参照番号またはオブジェクト名のリストにおいて、*itemRef*で指定した項目を変更します。 @@ -78,4 +75,13 @@ displayed_sidebar: docs [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [SET LIST ITEM FONT](set-list-item-font.md) [SET LIST ITEM ICON](set-list-item-icon.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 385 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md index 47913c026ea0b7..a1fdd052865da7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET LIST PROPERTIES** コマンドは、*list*引数に渡された参照番号を持つ階層リストの行の高さとセレクションプロパティを設定します。 @@ -62,4 +59,13 @@ displayed_sidebar: docs [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [GET LIST PROPERTIES](get-list-properties.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 387 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md index 2c1fde8d87dad1..6dc789010b3c3c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MACRO PARAMETERコマンドは、呼び出されたメソッドにテキスト*textParam*を挿入します。 @@ -59,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[GET MACRO PARAMETER](get-macro-parameter.md) \ No newline at end of file +[GET MACRO PARAMETER](get-macro-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 998 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md index 3e31d0a5f54b00..3135a5abfe29ac 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU BAR はカレントプロセスのみのメニューバーを*menuBar*で指定したメニューバーで置き換えます。*menuBar* 引数には、新しいメニューバーの番号または名前を渡します。またメニューID ([MenuRef](# "Unique ID (16-character alphanumeric) of a menu") 型, 16文字の文字列) を渡すこともできます。参照を使用する場合、メニューをメニューバーとして、あるいはその逆として使用できます (の節を参照)。 @@ -120,4 +117,13 @@ SET MENU BAR**(1;\*)**を実行すると、メニューバーは前と同じ状 #### 参照 -*メニューの管理* \ No newline at end of file +*メニューの管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 67 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md index c8a265cf00f651..6f640352107ca8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET MENU ITEM ICON** コマンドは、*menu*と*menuItem*引数で指定されたメニュー項目に関連付けるアイコンを変更するために使用します。 @@ -48,4 +45,13 @@ displayed_sidebar: docs #### 参照 -[GET MENU ITEM ICON](get-menu-item-icon.md) \ No newline at end of file +[GET MENU ITEM ICON](get-menu-item-icon.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 984 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md index 3c945ea7580278..68e59c96ba38ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU ITEM MARK コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目のチェックマークを、*mark*に渡した最初の文字に変更します。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[Get menu item mark](get-menu-item-mark.md) \ No newline at end of file +[Get menu item mark](get-menu-item-mark.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 208 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md index 2342e4aa4239f0..fa7c1883e6e4f1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU ITEM METHOD コマンドは、*menu*と*menuItem*引数で指定されたメニュー項目に関連付ける4Dプロジェクトメソッドを変更するために使用します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[Get menu item method](get-menu-item-method.md) \ No newline at end of file +[Get menu item method](get-menu-item-method.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 982 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md index 675750f2016ce6..6ceff53d0881b3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU ITEM PARAMETERコマンドは、*menu*と*menuItem*引数で指定されたメニュー項目に、カスタム文字列を設定するために使用します。 @@ -43,4 +40,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[Get selected menu item parameter](get-selected-menu-item-parameter.md) \ No newline at end of file +[Get selected menu item parameter](get-selected-menu-item-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1004 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md index 47e45f57d75212..2d080ad926a082 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET MENU ITEM PROPERTY**コマンドは、*menu* と *menuItem*引数で指定されたメニュー項目に、*property*の*value*を設定するために使用します。 @@ -47,4 +44,13 @@ Associated Standard Action プロパティの場合、*value* 引数には標準 #### 参照 [Dynamic pop up menu](dynamic-pop-up-menu.md) -[GET MENU ITEM PROPERTY](get-menu-item-property.md) \ No newline at end of file +[GET MENU ITEM PROPERTY](get-menu-item-property.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 973 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md index 3f5304ccbc0720..4d8778c938642b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET MENU ITEM SHORTCUT** コマンドは、あるメニュー項目に新しいショートカットを割り当てます。 @@ -78,4 +75,14 @@ Ctrl+R (Windows) や Cmd+R (Mac OS) ショートカットを"再起動"メニュ #### 参照 [Get menu item key](get-menu-item-key.md) -[Get menu item modifiers](get-menu-item-modifiers.md) \ No newline at end of file +[Get menu item modifiers](get-menu-item-modifiers.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 423 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md index dc7bcf3c12941f..ea58a2871c3348 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU ITEM STYLE コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目のフォントスタイルを、*itemStyle*に変更します。 @@ -40,4 +37,14 @@ displayed_sidebar: docs #### 参照 -[Get menu item style](get-menu-item-style.md) \ No newline at end of file +[Get menu item style](get-menu-item-style.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 425 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md index f510e96017ee3c..0de83b461ad935 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET MENU ITEM コマンドは、*menu*引数にメニュー番号またはメニュー参照で指定したメニュー中、*menuItem*引数にメニュー項目番号で指定したメニュー項目のテキストを、*itemText*に渡したテキストに変更します。*menuItem*に-1を渡すと、*menu*に最後に追加された項目を指定したことになります。 @@ -35,4 +32,14 @@ displayed_sidebar: docs [APPEND MENU ITEM](append-menu-item.md) [Get menu item](get-menu-item.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 348 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md index 74c8943054b416..1b79362d951fc7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 [Get picture file name](get-picture-file-name.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1172 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md index bcdb2521ec4d40..99bd647976ac64 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md @@ -80,4 +80,14 @@ DOM参照を使用してGPSブロックを設定します: [GET PICTURE KEYWORDS](get-picture-keywords.md) [GET PICTURE METADATA](get-picture-metadata.md) *Picture Metadata Names* -*Picture Metadata Values* \ No newline at end of file +*Picture Metadata Values* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1121 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md index 1cade5c9e63934..aaed080885c229 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PICTURE TO LIBRARY コマンドは、新規ピクチャを作成、またはピクチャライブラリにあるピクチャを置き換えます。 @@ -94,4 +91,15 @@ displayed_sidebar: docs [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) \ No newline at end of file +[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 566 | +| スレッドセーフである | ✗ | +| システム変数を更新する | error | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md index 50358042ec372c..66840e0f6b9da3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PICTURE TO PASTEBOARD は、ペーストボードを消去し、*picture*に渡したピクチャのコピーをペーストボードに置きます。 @@ -49,4 +46,14 @@ displayed_sidebar: docs #### 参照 [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) \ No newline at end of file +[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 521 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md index 0899fbfae3b39a..0301c172df59a3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PLUGIN ACCESS コマンドを使用すれば、データベース上にインストールされた各 "シリアルされた" プラグインをプログラムで設定する環境をユーザグループに提供することができます。 @@ -45,4 +42,13 @@ displayed_sidebar: docs [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 845 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md index 1f83df0c0f9b93..c8c1980c11f89c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PRINT MARKER コマンドを使用し、印刷時にマーカ位置を指定することができます。このコマンドを[Get print marker](get-print-marker.md "Get print marker")、[OBJECT MOVE](object-move.md "OBJECT MOVE")、[Print form](print-form.md "Print form")コマンドと組み合わせて使用することにより、印刷エリアのサイズを調節することができます。 @@ -184,4 +181,13 @@ Print\_List3のフォームメソッド: [PAGE BREAK](page-break.md) [Print form](print-form.md) [PRINT RECORD](print-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 709 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md index 6618f19874e810..f88cbc4e3f2088 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET PRINT OPTION** コマンドを使用し、プログラムから印刷オプションの値を変更することができます。プリントパラメーターを変更する他のコマンド ([PRINT SETTINGS](print-settings.md)、*\>* 引数を使用しない [PRINT SELECTION](print-selection.md)) が呼び出されない限り、このコマンドを使用して定義された各オプションは、[カレントの 4D 印刷設定](https://developer.4d.com/docs/settings/compatibility/) に対して適用されます。印刷ジョブが(例えば[OPEN PRINTING JOB](open-printing-job.md) などによって)開かれている間は、ジョブが終わるまではこのオプションを変更することはできません(ただしOrientation option を除く、以下参照)。 @@ -80,4 +77,14 @@ Orientation option の値は同一印刷ジョブ内で変更することがで [Print form](print-form.md) [PRINT OPTION VALUES](print-option-values.md) *Print Options* -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 733 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md index 385927c408e3ed..64453cbaf0c5bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET PRINT PREVIEW** は、プリントダイアログボックスのプレビュー設定のオン/オフをメソッドで切り替るためのものです。*preview* に[True](true.md "True") を渡すとプレビューは有効になり、[False](false.md "False") を渡すと無効になります。この設定はプロセスに対してローカルであり、他のプロセスや他のユーザの印刷には影響を与えません。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 [Get print preview](get-print-preview.md) -[Is in print preview](is-in-print-preview.md) \ No newline at end of file +[Is in print preview](is-in-print-preview.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 364 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md index 1ab34861255ef9..dfdd21639fbaad 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PRINTABLE MARGIN コマンドを使用すると、[Print form](print-form.md)、[PRINT SELECTION](print-selection.md)または [PRINT RECORD](print-record.md) コマンドの使用時に、各種印刷マージンの値を設定することができます。 @@ -59,4 +56,13 @@ displayed_sidebar: docs [GET PRINTABLE MARGIN](get-printable-margin.md) [Get printed height](get-printed-height.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 710 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md index 8eb321055378a8..27b2508341cb1a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET PROCESS VARIABLE コマンドは、引数*expr1* (*expr2*等)に渡す値を、*process*に渡す番号の送り先プロセスの*dstVar* (*dstVar2*等) プロセス変数に書き込みます。 @@ -99,4 +96,13 @@ SET PROCESS VARIABLEは、任意のタイプの送り先プロセスまたはイ [GET PROCESS VARIABLE](get-process-variable.md) [POST OUTSIDE CALL](post-outside-call.md) [VARIABLE TO VARIABLE](variable-to-variable.md) -*プロセス* \ No newline at end of file +*プロセス* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 370 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md index 0476740536c2fb..bca6f3c5f77fb2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md @@ -68,4 +68,14 @@ displayed_sidebar: docs #### 参照 -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 661 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md index 8592bc0adcd10f..4ec70020fff6cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md @@ -250,4 +250,13 @@ displayed_sidebar: docs [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 396 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md index 0185b33de63813..c1bda1f6325b31 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md @@ -62,4 +62,13 @@ SET QUERY LIMITは、下記のクエリコマンドの動作を変更します: [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 395 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md index c1c38763fb5e40..1bd678c49b3bc2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET REAL COMPARISON LEVEL** コマンドは、実数値と式の同等性を比較するために4Dが使用するイプシロン値を設定します。 @@ -37,3 +34,13 @@ displayed_sidebar: docs **重要**: イプシロン値を変更しても、実数の同等性の比較に影響があるだけで、他の実数計算や実数値の表示には影響はありません。 **注:** **SET REAL COMPARISON LEVEL** コマンドは、実数値のフィールドに対して実行されるクエリと並べ替えに関しては何の効力も持ちません。4Dランゲージに対してのみ適用されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 623 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md index 8db4739dc41c00..34cc484bba79e6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET RECENT FONTS**コマンドは、コンテキストメニュー内の"最近使用したフォント"の中に表示されるフォントの一覧を変更します。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1305 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md index 0cff0f9e69e6ee..6911eb855dbaab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md @@ -48,4 +48,13 @@ displayed_sidebar: docs [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) -[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) \ No newline at end of file +[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1400 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md index cc0c4c512af9cc..7534eb28dac408 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET TABLE TITLES**コマンドを使用すれば、アプリケーションモードにおいて、標準の4Dダイアログボックスに現れるデータベーステーブルを一部隠したり、表示名称を変更したり、並び順を変えたりできます(スタートアップモードが**アプリケーション**である、あるいは**実行**メニューの**アプリケーションをテスト**を選択した場合)。例えばこのコマンドを使用すれば、アプリケーションモードでのクエリエディターのテーブル表示を変更できます。 @@ -190,4 +187,13 @@ displayed_sidebar: docs [GET TABLE TITLES](get-table-titles.md) [Parse formula](parse-formula.md) [SET FIELD TITLES](set-field-titles.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 601 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md index b8df79da952db4..0a0bae6fd21ed2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET TEXT TO PASTEBOARD は、ペーストボードを消去し、*text*に渡したテキストのコピーをペーストボードに置きます。 @@ -40,4 +37,14 @@ displayed_sidebar: docs #### 参照 [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 523 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md index 574e48f4c76366..46fc084d80b0ff 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md @@ -48,4 +48,14 @@ displayed_sidebar: docs [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) [RECEIVE RECORD](receive-record.md) -[RECEIVE VARIABLE](receive-variable.md) \ No newline at end of file +[RECEIVE VARIABLE](receive-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 268 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md index 83904d11b8f51d..96ec681f9d2074 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET TIMER** コマンドは、On Timerフォームイベントを有効にし、カレントプロセスのカレントフォームでOn Timerフォームイベント間の間隔Tick数を設定します。 @@ -47,4 +44,13 @@ On Timerフォームイベントの生成を取り消すには、*tickCount*に0 #### 参照 [Form event code](form-event-code.md) -[REDRAW](redraw.md) \ No newline at end of file +[REDRAW](redraw.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 645 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md index 42b81bc4bdb5ea..ee5cf82da2c978 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET UPDATE FOLDER**コマンドは、カレントの組み込まれた4Dアプリケーションのアップデート情報を含んだフォルダの場所を指定します。この情報は [RESTART 4D](restart-4d.md)メソッドが呼ばれるまで4Dセッション中は保存されます。アプリケーションが手動で終了した場合、この情報は保存されません。 @@ -59,4 +56,14 @@ displayed_sidebar: docs #### 参照 [Get last update log path](get-last-update-log-path.md) -[RESTART 4D](restart-4d.md) \ No newline at end of file +[RESTART 4D](restart-4d.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1291 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md index 24893da6561dfd..e2b2a3bccfe92e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md @@ -39,4 +39,14 @@ displayed_sidebar: docs [CHANGE CURRENT USER](change-current-user.md) [Current user](current-user.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1666 | +| スレッドセーフである | ✓ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md index cc61aa2a85bef3..0dca1fde714421 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Set user properties コマンドは、引数 userID に渡したユニークなユーザーID番号を持つ既存のユーザーアカウントのプロパティを変更・更新するか、新規ユーザーを追加します。また、デザイナーあるいは管理者に関連する新規ユーザを追加することもできます。 @@ -65,4 +62,13 @@ displayed_sidebar: docs [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 612 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md index 04ddb910f14fba..d418f5356c08cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SET WINDOW RECT**コマンドは*window*に渡した参照番号のウィンドウのグローバル座標を変更します。ウィンドウが存在しない場合、コマンドはなにも行いません。 @@ -62,4 +59,13 @@ displayed_sidebar: docs [CONVERT COORDINATES](convert-coordinates.md) [DRAG WINDOW](drag-window.md) [GET WINDOW RECT](get-window-rect.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 444 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md index 929295f233bfeb..cd861e42ab6126 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SET WINDOW TITLE コマンドは*window* に渡した参照番号のウィンドウのタイトルを、*title*に渡したテキストに変更します (最大80文字)。 @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 -[Get window title](get-window-title.md) \ No newline at end of file +[Get window title](get-window-title.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 213 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md index 0229b6cdcb3859..27ad8f9c780e1a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md @@ -50,4 +50,13 @@ displayed_sidebar: docs [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 543 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md index 6eff05e78ec02d..4a71f0e930c7ee 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SHOW MENU BARコマンドは、メニューバーを表示します。 @@ -29,4 +26,14 @@ displayed_sidebar: docs [HIDE MENU BAR](hide-menu-bar.md) [HIDE TOOL BAR](hide-tool-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 431 | +| スレッドセーフである | ✗ | +| サーバー上での使用は不可 || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md index bd029e49fd46f6..9127052134b7ca 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md @@ -46,3 +46,14 @@ displayed_sidebar: docs #### システム変数およびセット コマンドが正しく実行されると、システム変数OKに1が代入されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 922 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md index a12276f6a3f00b..5bbb38d4b18283 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SHOW PROCESSは*process*に属する全ウィンドウを表示します。このコマンドは*process*のウィンドウを最前面ウィンドウにするわけではありません。これを行うには[BRING TO FRONT](bring-to-front.md "BRING TO FRONT")コマンドを使用します。 @@ -33,4 +30,13 @@ displayed_sidebar: docs [BRING TO FRONT](bring-to-front.md) [HIDE PROCESS](hide-process.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 325 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md index 7580cf937f9e81..ffc3dbb71876aa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SHOW TOOL BAR** コマンドは、カレントプロセスにおいて[Open form window](open-form-window.md) コマンドで作成されたカスタムのツールバーの表示を管理します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 -[HIDE TOOL BAR](hide-tool-bar.md) \ No newline at end of file +[HIDE TOOL BAR](hide-tool-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 433 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md index 1ec9c611500b01..500b561e827e42 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SHOW WINDOW コマンドは*window*に渡した参照番号のウィンドウを表示します。この引数が省略されていると、カレントプロセスの最前面ウィンドウが表示されます。 @@ -28,4 +25,13 @@ SHOW WINDOWコマンドを使用するには、ウィンドウが[HIDE WINDOW](h #### 参照 -[HIDE WINDOW](hide-window.md) \ No newline at end of file +[HIDE WINDOW](hide-window.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 435 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md index ef1a3f5b3165ae..8d5d6cb3642ba3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Cos](cos.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 17 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md index d265bf042df6e2..90f76e55ec8dbc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md @@ -45,4 +45,13 @@ displayed_sidebar: docs #### 参照 [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 274 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md index d5fbeea638a424..4bdff22ce67f4d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md @@ -193,4 +193,13 @@ Note タイプ Is Text (Is BLOBではなく)を使用していることに留意 [Is data file locked](is-data-file-locked.md) [SOAP Get info](soap-get-info.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 782 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md index 791059d337faf4..4a4eb809c82a34 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md @@ -32,4 +32,13 @@ SOAPリクエストを処理する際、RPC引数のほかに、リクエスト #### 参照 [SET DATABASE PARAMETER](set-database-parameter.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 784 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md index 6ca4885b7c991d..e67f535266d1b2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**SOAP REJECT NEW REQUESTS** コマンドはWeb サービスが新規SOAP リクエストを受け入れるかどうかを指定します。 - -*rejectStatus* 引数には、**True** を渡すと新規SOAP リクエストを拒否します。**False** を渡すと、新規SOAP リクエストを受け入れることを指定します。 +**SOAP REJECT NEW REQUESTS** コマンドはWeb サービスが新規SOAP リクエストを受け入れるかどうかを指定します。引数には、**True** を渡すと新規SOAP リクエストを拒否します。**False** を渡すと、新規SOAP リクエストを受け入れることを指定します。 **注**: このコマンドは4D Server 上でのみ実行可能です。このコマンドを呼び出しているメソッドがリモートのクライアント上でローカルに実行された場合、あるいはシングルユーザー版4D で実行された場合、**SOAP REJECT NEW REQUESTS** は何もしません。 @@ -35,4 +33,13 @@ Web サービスのサーバーにおいて新規リクエストを全て拒否 #### 参照 [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[WEB Get server info](web-get-server-info.md) \ No newline at end of file +[WEB Get server info](web-get-server-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1636 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md index 19312960a2f407..12c3cce6ee54cf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md @@ -21,4 +21,13 @@ displayed_sidebar: docs #### 参照 -[SOAP DECLARATION](soap-declaration.md) \ No newline at end of file +[SOAP DECLARATION](soap-declaration.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 783 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md index d5b2e737f36c6b..fdff0e268518d9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md @@ -43,4 +43,13 @@ displayed_sidebar: docs #### 参照 [SOAP DECLARATION](soap-declaration.md) -[SOAP Get info](soap-get-info.md) \ No newline at end of file +[SOAP Get info](soap-get-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 781 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md index d0981e638313b9..061ae927470e6e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md @@ -18,8 +18,6 @@ displayed_sidebar: docs **SORT ARRAY**コマンドは、1つまたは複数の配列を昇順や降順にソートします。 -**注意:** - * Pointer 配列や Picture 配列のソートは行えません。二次元配列の要素(例えば *a2DArray{$vlThisElem}*)をソートすることはできますが、二次元配列そのもの(*a2DArray*)をソートすることはできません。 * Object 型の配列をソートすることはできます。Null 要素はグループ化され、配列の要素は内部的な順番によってソートされます。 @@ -81,4 +79,13 @@ displayed_sidebar: docs [Find in sorted array](find-in-sorted-array.md) [MULTI SORT ARRAY](multi-sort-array.md) [ORDER BY](order-by.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 229 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md index be25374913d9b8..ed2ff88b6cb30c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SORT LIST コマンドは、*list*引数に渡された参照番号を持つリストをソートします。 @@ -57,4 +54,13 @@ SORT LIST コマンドは、カレントリスト項目またはリストやサ #### 参照 -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 391 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md index dbbf225fb7bfd7..257a289c13ce32 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL ADD TO USER DICTIONARY**コマンドはカレントのユーザー辞書に単語を追加します。 @@ -38,4 +35,13 @@ displayed_sidebar: docs #### 参照 -[SPELL CHECK TEXT](spell-check-text.md) \ No newline at end of file +[SPELL CHECK TEXT](spell-check-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1214 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md index ec1312d9069e9b..c1d7c92ff46910 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL CHECK TEXT**コマンドは*text*引数の内容を、*checkPos*の位置からチェックし、最初に見つかった未知の単語の位置を返します。 @@ -54,4 +51,14 @@ displayed_sidebar: docs #### 参照 [SPELL ADD TO USER DICTIONARY](spell-add-to-user-dictionary.md) -[SPELL CHECKING](spell-checking.md) \ No newline at end of file +[SPELL CHECKING](spell-checking.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1215 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md index 958f9347fd1377..5824b0b9db45a2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL CHECKING** コマンドは、フィールドまたは現在表示されているフォームでフォーカスを持つ変数のスペルチェックを行います。チェックされるオブジェクトは文字列またはテキストタイプでなければなりません。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 [SPELL CHECK TEXT](spell-check-text.md) -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 900 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md index 2b525cf4bfa17b..fe6e4187344631 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL Get current dictionary**コマンドは使用中の辞書のID番号を返します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1205 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md index d0568988a15c00..4ba4df82374185 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL GET DICTIONARY LIST**コマンドはマシンにインストールされたハンスペル辞書ファイルのID、ファイル名、言語名をそれぞれ*langID*、*langFiles*そして*langNames*配列に返します。 @@ -51,4 +48,13 @@ Hunspell辞書に"fr-classic+reform1990.aff"、"fr-classic+reform1990.dic"、"fr #### 参照 -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1204 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md index 9b2ba1bcb3ec0e..8b62b9659adbea 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SPELL SET CURRENT DICTIONARY**コマンドは、現在の辞書を引数*dictionary*に よって指定された辞書で置き換えます。カレント辞書は、4Dに内蔵されているスペルチェック機能に使用されています(詳細については、 4D Design Referenceマニュアルや4D Write Proドキュメントを参照してください) 。設定された現在の辞書は即座にセッションを通して、データベースのすべてのプロセス、および4D Writeや4D Viewプラグインエリアに反映されます。 @@ -52,4 +49,14 @@ Hunspellフォルダーに配置した"fr-classic"辞書をロードする: [SPELL CHECKING](spell-checking.md) [SPELL Get current dictionary](spell-get-current-dictionary.md) -[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) \ No newline at end of file +[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 904 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md index 8f12432650773e..8a6200a5fb20bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md @@ -56,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1554 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md index 96c1ea339711c1..cf1f959ae9b52b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL CANCEL LOAD コマンドコマンドは、現在のSELECTリクエストを終了してパラメタを初期化します。 @@ -53,4 +50,14 @@ displayed_sidebar: docs #### 参照 [SQL LOAD RECORD](sql-load-record.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 824 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md index ee3300c161f104..be9d665b69fc67 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL End selectionコマンドは、結果セットの境界に達したかどうかを判定するために使用します。 @@ -40,3 +37,13 @@ displayed_sidebar: docs ``` このコードは4D変数*vName* にempテーブルの ename を返します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 821 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md index 78bc1edf1c97b7..4b45eea5af365f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL EXECUTE SCRIPTコマンドを使用して、*scriptPath*で指定されたスクリプトファイルに書かれた一連のSQLステートメントを実行できます。このコマンドはローカルマシン (ローカルの4Dまたは4D Server上のストアドプロシージャ) でのみ実行できます。またこのコマンドはカレントデータベース (内部あるいはエクスターナルデータベース) に対して動作します。 @@ -59,3 +56,14 @@ displayed_sidebar: docs * *errorAction*がSQL On error continue (値3) の場合、OKは常に1が設定されます。 **Note:** 大量のデータ読み込みなど、メモリを消費するアクションを実行するためにこのコマンドを使用する場合、一時的にSQLオプションを無効にするために新しいSQLのALTER DATABASEコマンドの実行を検討できます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1089 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md index fc731b9a9440be..ea5c1eaf20113d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SQL EXECUTE**コマンドを使用してSQLコマンドを実行し、結果を4Dのオブジェクト(配列、変数またはフィールド) にバインドできます。 @@ -159,4 +156,14 @@ displayed_sidebar: docs #### 参照 -[SQL LOAD RECORD](sql-load-record.md) \ No newline at end of file +[SQL LOAD RECORD](sql-load-record.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 820 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md index ae4e42374f1db1..96c0fe47624da6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SQL EXPORT DATABASE**コマンドはデータベースのすべてのテーブルのすべてのレコードをSQLフォーマットで書き出します。SQLではこのグローバルな書き出し処理は"ダンプ"と呼ばれます。 @@ -57,4 +54,14 @@ displayed_sidebar: docs #### 参照 -[SQL EXPORT SELECTION](sql-export-selection.md) \ No newline at end of file +[SQL EXPORT SELECTION](sql-export-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1065 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md index 09782176ce28f4..926e382f56a3f8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL EXPORT SELECTION コマンドは、aTable引数で指定した4DテーブルのカレントセレクションをSQLフォーマットで書き出します。 @@ -38,4 +35,14 @@ displayed_sidebar: docs #### 参照 -[SQL EXPORT DATABASE](sql-export-database.md) \ No newline at end of file +[SQL EXPORT DATABASE](sql-export-database.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1064 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md index b74010612b5a3b..bad5520371a0ab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 *Get current data source*コマンドはアプリケーションのカレントデータソースの名前を返します。カレントデータソースは、[Begin SQL](begin-sql.md "Begin SQL")/[End SQL](end-sql.md "End SQL")内で実行されるSQLクエリを受け取ります。 @@ -28,4 +25,13 @@ SQLクエリを実行する前に、このコマンドでカレントデータ [End SQL](end-sql.md) [SQL GET DATA SOURCE LIST](sql-get-data-source-list.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 990 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md index ca1ad5faa3aef6..866ddd09f83628 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 *GET DATA SOURCE LIST*コマンドは、オペレーションシステムのODBCマネージャで定義されている*sourceType* データソースのドライバと名前を*sourceNamesArr*と*driversArr*の配列に返します。 @@ -55,4 +52,14 @@ displayed_sidebar: docs [SQL Get current data source](sql-get-current-data-source.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 989 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md index 56d79f985d9a47..8f0f65c8f8b8cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL GET LAST ERRORコマンドは、ODBCコマンドの実行中に発生した最後のエラーに関連する情報を返します。エラーの発生箇所としては、4Dアプリケーション、ネットワーク、ODBCソースなどが考えられます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 825 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md index e225f28c5cef4b..46ce3d108196aa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL GET OPTIONコマンドは、*option*に渡したオプションの現在の*value*を返します。 @@ -29,4 +26,14 @@ displayed_sidebar: docs #### 参照 -[SQL SET OPTION](sql-set-option.md) \ No newline at end of file +[SQL SET OPTION](sql-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 819 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md index 4f4bf7cc5583d6..f47916c1eefec1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL LOAD RECORDコマンドは、現在の接続において開かれたODBCソースからのレコードを1件以上4D内に取り込みます。 @@ -35,4 +32,14 @@ displayed_sidebar: docs #### 参照 [SQL CANCEL LOAD](sql-cancel-load.md) -[SQL EXECUTE](sql-execute.md) \ No newline at end of file +[SQL EXECUTE](sql-execute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 822 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md index 41653ba4fbfb62..bbef3b9d8d8814 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SQL LOGIN**コマンドを使用すると、*dataEntry*引数で指定されたSQLデータソースへ接続することができます。このコマンドは、カレントプロセスでこのコマンドの後に実行される以下のSQLクエリの対象を指定します: @@ -206,4 +203,14 @@ IPv6アドレス 2a01:e35:2e41:c960:dc39:3eb0:f29b:3747のマシン、およびT [Begin SQL](begin-sql.md) [End SQL](end-sql.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 817 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md index d055de14db9785..548b4f0f141708 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SQL LOGOUT コマンドは、カレントプロセスにおいて開かれているODBCソースとの接続をクローズします(すでに接続されていれば)。ODBC接続が行われていない場合、コマンドは何も行いません。 @@ -25,4 +22,14 @@ displayed_sidebar: docs #### 参照 -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 872 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md index 5c1e29735804f6..1b0fe1a7cdb988 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SQL SET OPTION** コマンドを使用して、optionに渡したオプションのvalueを変更します。 @@ -47,4 +44,14 @@ displayed_sidebar: docs #### 参照 -[SQL GET OPTION](sql-get-option.md) \ No newline at end of file +[SQL GET OPTION](sql-get-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 818 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md index d9ad6c40d7b1b6..24a66b0c3bdafc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SQL SET PARAMETER**コマンドを使用すると、4D変数や配列、フィールドをSQLリクエストで使用することができます。 @@ -80,3 +77,14 @@ SQLリクエスト内におかれた*?*記号が4Dオブジェクトの値で置 #### システム変数およびセット コマンドが正しく実行されるとシステム変数OKに1が、そうでなければ0が設定されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 823 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md index 0eec06494d89fa..6d4669a7857635 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md @@ -39,3 +39,13 @@ displayed_sidebar: docs ``` 例えば、Hypotenuse (4;3) は5を返します。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 539 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md index e182f4b5330768..f9b1b99093cede 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST COMPUTE EXPRESSIONS**コマンドは、*object* 引数で指定したマルチスタイルあるいは4D Write Proのフィールドあるいは変数内にあるダイナミック 4D 式を更新します。 @@ -69,4 +66,14 @@ displayed_sidebar: docs #### 参照 [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1285 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md index 71970778ba45dc..33fe01ce7a8b26 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST FREEZE EXPRESSIONS**コマンドは、*object* 引数で指定されたマルチスタイルテキストあるいは4D Write Proのフィールドまたは変数内の4D 式の内容を固定化します。これにより、ダイナミックな4D式はスタティックなテキストあるいは画像(4D Write Pro エリアのみ)へと変換され、*object* に関連付けられた参照は解除されます。 @@ -67,4 +64,13 @@ displayed_sidebar: docs #### 参照 [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1282 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md index 2b0f2c900e05cb..44df5ae597c709 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST GET ATTRIBUTES** コマンドは、*object*で指定したフォームオブジェクト中で選択されたテキストのスタイル属性を取得するために使用します。 @@ -101,4 +98,14 @@ displayed_sidebar: docs #### 参照 -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1094 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md index f589acbd6c307e..0be4312131a604 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST Get content type**コマンドは、 *object* 引数で指定されたスタイル付テキストフィールドまたはテキスト変数内で見つかったコンテンツの型を返します。 @@ -105,3 +102,14 @@ displayed_sidebar: docs        ...     End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1286 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md index 2daa7643ef1cd1..4a5042fc26fb11 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST Get expression**コマンドは、*object* 引数で指定されたスタイル付テキストフィールドまたはテキスト変数内のカレントセレクションの中で、最初に見つけた 4D 式を返します。 @@ -93,4 +90,14 @@ displayed_sidebar: docs #### 参照 -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1287 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md index f6fb4283fec329..acbad0c659e5c1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST GET OPTIONS**コマンドは、 *object* 引数で指定されたスタイル付テキストフィールドまたはテキスト変数内で動作中のオプションのカレントの値を取得します。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[ST SET OPTIONS](st-set-options.md) \ No newline at end of file +[ST SET OPTIONS](st-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1290 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md index 298fad04b8bb6a..cee1ba6529d3eb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST Get plain text** コマンドは*\**と*object*引数で指定したテキスト変数やフィールドからスタイルタグを取り除き、プレーンテキストを返します。 @@ -106,4 +103,14 @@ It is now Go to the 4D site or Open a window [ST Get text](st-get-text.md) [ST SET PLAIN TEXT](st-set-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1092 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md index 818b216bb53a05..b7c2911f78ebe0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST Get text** コマンドは *object* 引数で指定されたフィールドや変数中のスタイル付きテキストを返します。 @@ -61,4 +58,14 @@ displayed_sidebar: docs [ST Get plain text](st-get-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1116 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md index e71ddf036b0abb..f92cb393d55746 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST GET URL**コマンドは、 *object* 引数で指定されたスタイル付テキストフィールドまたはテキスト変数内で見つかった最初のURL の表示テキストとアドレスを返します。 @@ -72,4 +69,13 @@ displayed_sidebar: docs #### 参照 -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1288 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md index a14c2be293401a..0f219855d0e59a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST INSERT EXPRESSION**コマンドは、*object* 引数で指定したスタイル付テキストフィールドまたはテキスト変数内に、4D 式への参照を挿入します。 @@ -89,4 +86,14 @@ displayed_sidebar: docs [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) [ST Get expression](st-get-expression.md) -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1281 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md index 76f3a259b7c59a..be31310738c8a7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST INSERT URL**コマンドは、*object* 引数で指定したスタイル付テキストフィールドまたはテキスト変数内に、 URL のリンクを挿入します。 @@ -65,4 +62,14 @@ displayed_sidebar: docs #### 参照 [ST GET URL](st-get-url.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1280 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md index 249878d9df30a7..f401b82a14744a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST SET ATTRIBUTES** コマンドを使用して、 *object*で指定したフォームオブジェクト中の1つ以上のスタイル属性を変更できます。 @@ -104,4 +101,14 @@ displayed_sidebar: docs #### 参照 [FONT LIST](font-list.md) -[ST GET ATTRIBUTES](st-get-attributes.md) \ No newline at end of file +[ST GET ATTRIBUTES](st-get-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1093 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md index 159d8d80b16f45..879ea013653fa2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST SET OPTIONS**コマンドは、*object* 引数で指定されたスタイル付テキストフィールドまたはテキスト変数に関する様々なオプションを変更することができます。 @@ -63,4 +60,13 @@ displayed_sidebar: docs #### 参照 -[ST GET OPTIONS](st-get-options.md) \ No newline at end of file +[ST GET OPTIONS](st-get-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1289 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md index 5ba397a223c685..bafb47adaf77c9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST SET PLAIN TEXT**コマンドは*object*引数で指定されたマルチスタイルテキストや変数に、*newText*引数に渡されたテキストを挿入します。このコマンドは*object*引数のプレーンテキストにのみ適用され、そこに含まれるスタイルタグを変更しません。 @@ -94,4 +91,14 @@ displayed_sidebar: docs #### 参照 [ST Get plain text](st-get-plain-text.md) -[ST SET TEXT](st-set-text.md) \ No newline at end of file +[ST SET TEXT](st-set-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1136 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md index f7eaaba280716d..d874a2ed95cd5d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **ST SET TEXT** コマンドは*object*引数で指定されたスタイル付きのフィールドや変数に、 *newText*引数で渡されたテキストを挿入します。 このコマンドは*object*引数のプレーンテキストにのみ適用され、含まれるスタイルタグは更新しません。このコマンドはスクリーンに表示されているスタ イル付きテキストをプログラムで変更するために使用できます。 @@ -93,4 +90,14 @@ displayed_sidebar: docs [ST Get plain text](st-get-plain-text.md) [ST Get text](st-get-text.md) -[ST SET PLAIN TEXT](st-set-plain-text.md) \ No newline at end of file +[ST SET PLAIN TEXT](st-set-plain-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1115 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md index a37b4ee0e980dd..9c8942e518aa8d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md @@ -91,4 +91,13 @@ displayed_sidebar: docs #### 参照 [Monitored activity](monitored-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1712 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md index 9bdf33badabb58..7ef688f000fc6b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 START SQL SERVERコマンドを使用して、実行中の4Dのアプリケーションで、統合されたSQLサーバを起動させます。起動すると、SQLサーバは外部SQLクエリに応答します。 @@ -27,4 +24,14 @@ SQLサーバが正しく起動されるとOKシステム変数は1に、そう #### 参照 -[STOP SQL SERVER](stop-sql-server.md) \ No newline at end of file +[STOP SQL SERVER](stop-sql-server.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 962 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md index f29754bead66db..b7bcaef2289929 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [Transaction level](transaction-level.md) [VALIDATE TRANSACTION](validate-transaction.md) -*トランザクションを使用する* \ No newline at end of file +*トランザクションを使用する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 239 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md index 0e0167bc9364da..63ad01f7f7e7f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md @@ -57,4 +57,13 @@ displayed_sidebar: docs [Average](average.md) [Sum](sum.md) [Sum squares](sum-squares.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 26 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md index 75f1e193efbf93..cd5f6a262d8bb5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### 参照 [Monitored activity](monitored-activity.md) -[START MONITORING ACTIVITY](start-monitoring-activity.md) \ No newline at end of file +[START MONITORING ACTIVITY](start-monitoring-activity.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1721 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md index 01ba1f16b76a6a..690daeae16e2d1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 STOP SQL SERVERコマンドは、実行済み4Dアプリケーションの統合SQLサーバを停止します。 @@ -25,4 +22,13 @@ SQLサーバが起動していた場合、すべてのSQL接続が中断しま #### 参照 -[START SQL SERVER](start-sql-server.md) \ No newline at end of file +[START SQL SERVER](start-sql-server.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 963 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md index 5ae71755fb36d0..afb51536a9e52e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -**Storage** メソッドはカレントのマシンあるいはコンポーネント上において、*Storage* オブジェクトに登録した共有オブジェクトまたは共有コレクションの一覧を返します。 - -**Storage** から返されたカタログは、4Dによって自動的に作成され、プリエンプティブプロセスを含めてデータベースの全てのプロセスが利用可能です。マシンとコンポーネント一つにつき**Storage** カタログは一つしかありません。C/S アプリケーションにおいては、サーバーに**Storage** 共有オブジェクトを一つ、リモート4D アプリケーションに**Storage** 共有オブジェクトを一つ持つことが可能です。データベースがコンポーネントを使用する場合、一つのコンポーネントに対し**Storage** オブジェクトは一つです。 +**Storage** メソッドはカレントのマシンあるいはコンポーネント上において、*Storage* オブジェクトに登録した共有オブジェクトまたは共有コレクションの一覧を返します。から返されたカタログは、4Dによって自動的に作成され、プリエンプティブプロセスを含めてデータベースの全てのプロセスが利用可能です。マシンとコンポーネント一つにつき**Storage** カタログは一つしかありません。C/S アプリケーションにおいては、サーバーに**Storage** 共有オブジェクトを一つ、リモート4D アプリケーションに**Storage** 共有オブジェクトを一つ持つことが可能です。データベースがコンポーネントを使用する場合、一つのコンポーネントに対し**Storage** オブジェクトは一つです。 **Storage** から返されたカタログを使用すると、あらゆるプリエンプティブプロセスあるいは標準プロセスで使用可能な共有オブジェクトあるいは共有コレクションを、すべて参照することができます。共有オブジェクトあるいは共有コレクションをカタログに登録するためには、その参照を**Storage** から返された共有オブジェクトに追加します。 @@ -81,4 +79,13 @@ displayed_sidebar: docs #### 参照 -*共有オブジェクトと共有コレクション* \ No newline at end of file +*共有オブジェクトと共有コレクション* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1525 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md index af8a079aca35b2..c6e68dbc6bf36e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **STRING LIST TO ARRAY**コマンドは以下の要素から構築される*strings*配列を生成します: @@ -47,4 +44,14 @@ displayed_sidebar: docs [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[Get text resource](get-text-resource.md) \ No newline at end of file +[Get text resource](get-text-resource.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 511 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md index 2dcab0e1fe4886..fab6f0f01528b5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md @@ -185,4 +185,13 @@ displayed_sidebar: docs [Date](date.md) [Num](num.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 10 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md index 290339bbfb9700..89aa56e2d2ab50 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**Structure file** コマンドは、現在使用しているデータベースのストラクチャファイルのパス名を返します。 - -* バイナリーモードのデータベースでは、コマンドは**.4db** ファイルのパス名を返します。 +**Structure file** コマンドは、現在使用しているデータベースのストラクチャファイルのパス名を返します。ファイルのパス名を返します。 * プロジェクトモードのデータベースでは、コマンドは**.** **4dproject** ファイルのパス名を返します。 **注:** データベースがコンパイルされて4D Volume Desktopに統合されている場合、WindowsおよびmacOSでこのコマンドはアプリケーションファイル(実行可能なアプリケーション)のパス名を返します。macOS上では、このファイルはソフトウェアパッケージの中の\[Contents:Mac OS\]フォルダに置かれます。これは以前のメカニズムに起因するものであり、互換性のため保持されています。ソフトウェアパッケージ自体のフルアクセスパスを取得したい場合には、[Application file](application-file.md) コマンドの利用をお勧めします。方法としては、[Application type](application-type.md) コマンドを使用してアプリケーションタイプを調べた後、その結果に応じて**Structure file** または[Application file](application-file.md) を実行します。 @@ -66,4 +64,13 @@ displayed_sidebar: docs [Application file](application-file.md) [COMPONENT LIST](component-list.md) -[Data file](data-file.md) \ No newline at end of file +[Data file](data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 489 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md index 8cea65694c4e86..9f2c4a5e384f28 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md @@ -64,4 +64,13 @@ Substringコマンドの使用例を次に示します。結果を変数 vsResul #### 参照 -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 12 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md index 62960d8310aea6..84f8aad4976a52 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **Subtotal** は、現在または最後のブレークレベルにおける*data*の小計を返します。**Subtotal** は、ソートされたセレクションを[PRINT SELECTION](print-selection.md) コマンドで印刷する場合と、デザインモードでプリント...メニューから印刷を行う場合にのみ機能します。*data*引数のタイプは実数、整数、倍長整数のいずれかでなければなりません。フォームのブレークエリアに変数を配置し、**Subtotal** の結果を代入します。 @@ -60,4 +57,13 @@ Subtotal関数はフォームに値を表示するために必要です。 [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 97 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md index 93a3dca850c2dc..180261ba18a132 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md @@ -59,4 +59,13 @@ displayed_sidebar: docs [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 28 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md index c8098380d622dd..41ebdc45b57346 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md @@ -73,4 +73,14 @@ displayed_sidebar: docs [Min](min.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md index 10da7664cb485e..dab9561b67d7e7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md @@ -22,4 +22,13 @@ displayed_sidebar: docs [Active transaction](active-transaction.md) [RESUME TRANSACTION](resume-transaction.md) -*トランザクションの停止* \ No newline at end of file +*トランザクションの停止* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1385 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md index 917285c9039f96..f83d52c60f61d5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -SVG EXPORT TO PICTURE コマンドはXMLツリーのSVGフォーマットのピクチャを、*pictVar* 引数で指定したピクチャフィードや変数に保存するために使用できます。 - -**Note:** SVGフォーマットに関する詳細はの節を参照してください。 +SVG EXPORT TO PICTURE コマンドはXMLツリーのSVGフォーマットのピクチャを、*pictVar* 引数で指定したピクチャフィードや変数に保存するために使用できます。SVGフォーマットに関する詳細はの節を参照してください。 *elementRef*にはSVGピクチャを含むXMLのルート要素参照を渡します。 @@ -52,4 +50,13 @@ displayed_sidebar: docs #### 参照 [DOM EXPORT TO FILE](dom-export-to-file.md) -[DOM EXPORT TO VAR](dom-export-to-var.md) \ No newline at end of file +[DOM EXPORT TO VAR](dom-export-to-var.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1017 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md index fb709056a44da7..317e41eab68eda 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SVG Find element ID by coordinatesコマンドは、 *pictureObject*引数で指定されたSVGピクチャ内で、*x*, *y*座標により設定された場所で見つかるXML要素のID ("id" または "xml:id" 属性) を返します。 このコマンドは特に、SVGオブジェクトを使用してインタラクティブなインタフェースを作成する際に使用します。 @@ -53,4 +50,14 @@ displayed_sidebar: docs #### 参照 -[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) \ No newline at end of file +[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1054 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md index b79454aef74ae8..fcfabb05c5d578 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SVG Find element IDs by rect コマンドは、 バインドされた四角が選択領域に交差するXML要素のID ("id"または"xml:id"属性) をテキストまたは文字配列の*arrIDs*配列に返します。選択領域は*x*および*y*引数で指定されます。 @@ -43,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) \ No newline at end of file +[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1109 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md index a846cd2faebd8d..fd6eb60076130f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **SVG GET ATTRIBUTE**コマンドを使用して、オブジェクトまたはSVGピクチャの*attribName*属性の現在値を取得できます。 @@ -42,4 +39,13 @@ SVG属性に関する詳細は、[SVG SET ATTRIBUTE](svg-set-attribute.md)コマ #### 参照 -[SVG SET ATTRIBUTE](svg-set-attribute.md) \ No newline at end of file +[SVG SET ATTRIBUTE](svg-set-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1056 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md index bcf69527b1fef6..38cc2e812b8b2b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md @@ -91,4 +91,14 @@ displayed_sidebar: docs #### 参照 -[SVG GET ATTRIBUTE](svg-get-attribute.md) \ No newline at end of file +[SVG GET ATTRIBUTE](svg-get-attribute.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1055 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md index 8a6f2a75532601..ac64ae2395be71 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 SVG SHOW ELEMENT コマンドは、*id*引数で指定した"id"属性を持つ要素を表示するように、*pictureObject* SVGドキュメントを移動します。. @@ -30,3 +27,14 @@ displayed_sidebar: docs このコマンドはスクロールバー付きの"左上"表示モードのみで効果があります。 フォームのコンテキストでコマンドが実行されていないか、無効な *pictureObject* が渡された場合、*OK* 変数に0が設定されます。コマンドが正しく実行されると1が設定されます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1108 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md index d8a2b01a400780..7b7453f0bd9308 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md @@ -49,4 +49,13 @@ displayed_sidebar: docs #### 参照 [Get 4D folder](get-4d-folder.md) -[Temporary folder](temporary-folder.md) \ No newline at end of file +[Temporary folder](temporary-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 487 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md index 53b8394db2c2f5..b4e6e6ebca45f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md @@ -144,4 +144,13 @@ Windows マシン上で以下のコードを実行した場合: [Application info](application-info.md) [Is macOS](is-macos.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1571 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md index 8d8db8bf2c7a25..05c4024bbe6c05 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md @@ -40,4 +40,13 @@ displayed_sidebar: docs #### 参照 -[Compact data file](compact-data-file.md) \ No newline at end of file +[Compact data file](compact-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1127 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md index 1bc4c1ab23c226..4cfc4c65bc5b81 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md @@ -37,4 +37,13 @@ displayed_sidebar: docs [Last table number](last-table-number.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 256 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md index 0d83f64e1e9746..7c9e502935e591 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md @@ -59,4 +59,13 @@ displayed_sidebar: docs [Field](field.md) [Last table number](last-table-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 252 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md index 5e5bfb4e5f5b09..dca3c056900e5c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [Arctan](arctan.md) [Cos](cos.md) -[Sin](sin.md) \ No newline at end of file +[Sin](sin.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 19 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md index ef15c81f9ce2ab..17aeb492a4d2c3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[System folder](system-folder.md) \ No newline at end of file +[System folder](system-folder.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 486 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md index e3fb0f9486b656..df581edd9c9cad 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md @@ -49,4 +49,13 @@ displayed_sidebar: docs [Create document](create-document.md) [CREATE FOLDER](create-folder.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 476 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md index 092309c3468e96..86a5f02d66d05a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md @@ -42,4 +42,13 @@ displayed_sidebar: docs #### 参照 [CLEAR SEMAPHORE](clear-semaphore.md) -[Semaphore](semaphore.md) \ No newline at end of file +[Semaphore](semaphore.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 652 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md index 64802591fce004..f120c2e105a6f0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **TEXT TO ARRAY**コマンドはテキスト変数をテキスト配列変換します。元の*varText*テキストは (スタイル付きであってもなくても) 分割され、*arrText*配列の要素となり、コマンドから返されます。このコマンドを使用して例えば適切な位置でテキストが分割されたメール本文を作成することができます。 @@ -110,4 +107,13 @@ displayed_sidebar: docs [Split string](split-string.md) [ST Get plain text](st-get-plain-text.md) -[ST Get text](st-get-text.md) \ No newline at end of file +[ST Get text](st-get-text.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1149 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md index ac69ad05fa5307..64aac222434f65 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md @@ -19,9 +19,7 @@ displayed_sidebar: docs #### 説明 -**TEXT TO BLOB**コマンドはテキスト値 *text*をBLOB *blob*に書き込みます。 - -*textFormat* 引数を使用して、書き込むテキスト値の内部フォーマットと文字セットを指定できます。これを行うには、*BLOB*テーマの以下の定数のうちいずれかを*textFormat* 引数に渡します: +**TEXT TO BLOB**コマンドはテキスト値 *text*をBLOB *blob*に書き込みます。引数を使用して、書き込むテキスト値の内部フォーマットと文字セットを指定できます。これを行うには、*BLOB*テーマの以下の定数のうちいずれかを*textFormat* 引数に渡します: | 定数 | 型 | 値 | | ------------------------ | ---- | - | @@ -104,4 +102,13 @@ displayed_sidebar: docs [CONVERT FROM TEXT](convert-from-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[REAL TO BLOB](real-to-blob.md) \ No newline at end of file +[REAL TO BLOB](real-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 554 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md index 767d30c1520c41..fb4d2f8cd25dcb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -**TEXT TO DOCUMENT**コマンドは、 *text* を直接ディスク上のファイルへと書き込みます。 - -*fileName* 引数には書き込みたいファイルへのパス名を渡します。ファイルが存在しない場合には新たに作成されます。このファイルが既にディスク上に存在する場合、以前の内容は消去されます。ただし既に開かれていた場合にはその中身はロックされエラーが静背されます。*fileName* に渡せるものは以下の通りです: +**TEXT TO DOCUMENT**コマンドは、 *text* を直接ディスク上のファイルへと書き込みます。引数には書き込みたいファイルへのパス名を渡します。ファイルが存在しない場合には新たに作成されます。このファイルが既にディスク上に存在する場合、以前の内容は消去されます。ただし既に開かれていた場合にはその中身はロックされエラーが静背されます。*fileName* に渡せるものは以下の通りです: * ファイル名のみ。例えば "myFile.txt" など。この場合、ファイルはアプリケーションのストラクチャーファイルの隣にある必要があります。 * アプリケーションのストラクチャファイルからの相対パス。例えばWindowsでは "\\\\docs\\\\myFile.txt" またはmacOS では ":docs:myFile.txt" @@ -83,4 +81,13 @@ displayed_sidebar: docs #### 参照 [Document to text](document-to-text.md) -*System Documents* \ No newline at end of file +*System Documents* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1237 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md index a2c1e9fda9ce46..9a7fe1c89d50cc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **throw** コマンドは、エラーを作成します。エラーは即座に、あるいはカレントメソッドの終了時に (遅延モード) スローされます。 @@ -106,4 +103,13 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi [ASSERT](assert.md) [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1805 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md index 0e6eab952a790e..e4a4fe8fd167a6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Tickcount はマシンが起動されてから経過したTick (1/60秒) 数を返します。 - -**Note:** Tickcount は倍長整数型の値を返します。 +Tickcount はマシンが起動されてから経過したTick (1/60秒) 数を返します。Tickcount は倍長整数型の値を返します。 #### 例題 @@ -26,4 +24,13 @@ displayed_sidebar: docs #### 参照 [Current time](current-time.md) -[Milliseconds](milliseconds.md) \ No newline at end of file +[Milliseconds](milliseconds.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 458 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md index 0a8b71d3f08a0c..6c15b94e66419c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md @@ -35,4 +35,13 @@ displayed_sidebar: docs #### 参照 [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 180 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md index e031fdd2642105..0399ee4ba34ab2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -Time コマンドは、*timeValue* 引数で指定した時間に相当する時間表示を返します。 - -*timeValue* 引数には以下のものを渡す事ができます。 +Time コマンドは、*timeValue* 引数で指定した時間に相当する時間表示を返します。引数には以下のものを渡す事ができます。 * システムの言語に対応している4D標準の時間フォーマットで表された時刻を含んでいる文字列(詳細な情報については[String](string.md) を参照して下さい)。 * 00:00:00を経過した秒数を表す倍長整数 @@ -50,4 +48,13 @@ displayed_sidebar: docs [Bool](bool.md) [String](string.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 179 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md index f54e6be4f6d57e..bd4956b53610b8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md @@ -41,4 +41,13 @@ displayed_sidebar: docs [Milliseconds](milliseconds.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1445 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md index cb1624c080d3ca..99cc06450d34ec 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Tool bar height コマンドはカレントの表示されているツールバーの高さを、ピクセル単位で返します。コンテキストに応じて、4Dデザイ ンモードツールバーの場合と、[Open form window](open-form-window.md) コマンドを使用して作成されたカスタムのツールバーの場合があります(デザインモードのツールバーはカスタムのツールバーが表示されている場合には自動的 に非表示になります)。 @@ -26,4 +23,13 @@ displayed_sidebar: docs [HIDE TOOL BAR](hide-tool-bar.md) [Menu bar height](menu-bar-height.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1016 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md index 77df01fcfe3225..8604b9cd2281a8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md @@ -14,9 +14,7 @@ displayed_sidebar: docs #### 説明 -データベースの開発時に、**TRACE** コマンドを使用してメソッドをトレースすることができます。 - -**TRACE** コマンドは、カレントプロセス用の4Dのデバッガを起動します。デバッグウィンドウはコードの次の行が実行される前に表示されます。実行するコードを表示しながらメソッドの実行を続けることができます。コードの実行中に、 **Alt+Shift+右クリック** (Windows) 、または**Control+Option+Command+クリック** (Macintosh) でもデバッガーを起動することができます。 +データベースの開発時に、**TRACE** コマンドを使用してメソッドをトレースすることができます。コマンドは、カレントプロセス用の4Dのデバッガを起動します。デバッグウィンドウはコードの次の行が実行される前に表示されます。実行するコードを表示しながらメソッドの実行を続けることができます。コードの実行中に、 **Alt+Shift+右クリック** (Windows) 、または**Control+Option+Command+クリック** (Macintosh) でもデバッガーを起動することができます。 実行しているコードがコンパイルされている場合には、**TRACE**コマンドは無視されます。 @@ -59,3 +57,13 @@ DEBUG プロジェクトメソッドを次に示します:     End if  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 157 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md index 3ea215644d8e32..d47aee47dc2fa9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md @@ -21,4 +21,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*トランザクションを使用する* \ No newline at end of file +*トランザクションを使用する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 961 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md index 8474b67de698b2..d99f3b90819b2c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### 説明 -TRANSFORM PICTURE コマンドは、*picture*引数に渡したピクチャに、*operator*タイプの変換を適用するために使用します。 - -**Note:** このコマンドはピクチャ変換演算子 (+/ 等, [C\_BOOLEAN](c-boolean.md) の節参照) で提供される機能を拡張します。これらの演算子は4D でも利用可能です。 +TRANSFORM PICTURE コマンドは、*picture*引数に渡したピクチャに、*operator*タイプの変換を適用するために使用します。このコマンドはピクチャ変換演算子 (+/ 等, [C\_BOOLEAN](c-boolean.md) の節参照) で提供される機能を拡張します。これらの演算子は4D でも利用可能です。 コマンド実行後、ソース*picture*は 直接更新されます。一部の操作は可逆的で、反対の処理を行うか“Reset”処理を行うことで元に戻すことができます。例えば、1%に縮小されたピクチャ は後で100倍することで、変換されることなく元のサイズに戻せます。変換は元のピクチャタイプを変更しません。例えばベクタピクチャは変換後もベクタピ クチャです。 @@ -72,4 +70,13 @@ displayed_sidebar: docs #### 参照 -[COMBINE PICTURES](combine-pictures.md) \ No newline at end of file +[COMBINE PICTURES](combine-pictures.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 988 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md index 9da1a3bf753771..519128aeead5cd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md @@ -53,4 +53,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [Trigger level](trigger-level.md) [TRIGGER PROPERTIES](trigger-properties.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 369 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md index 7f39d4c2142c89..7d3360b0c6bbd2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md @@ -23,4 +23,13 @@ displayed_sidebar: docs [Trigger event](trigger-event.md) [TRIGGER PROPERTIES](trigger-properties.md) -*トリガ* \ No newline at end of file +*トリガ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 398 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md index f7e4e9a295885b..dab1048651750b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md @@ -38,4 +38,13 @@ displayed_sidebar: docs [Trigger event](trigger-event.md) [Trigger level](trigger-level.md) *トリガ* -*レコード番号について* \ No newline at end of file +*レコード番号について* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 399 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md index b0b44beaf257e0..28aa616276fc2e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md @@ -28,4 +28,13 @@ displayed_sidebar: docs #### 参照 [False](false.md) -[Not](not.md) \ No newline at end of file +[Not](not.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 214 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md index d2e25da041c2b4..f44d1b4632d763 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md @@ -34,4 +34,13 @@ displayed_sidebar: docs #### 参照 -[Round](round.md) \ No newline at end of file +[Round](round.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 95 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md index 27f955b5fa236e..f8656266a984dd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md @@ -37,4 +37,16 @@ TRUNCATE TABLEコマンドは注意して使用しなければなりませんが #### 参照 -[DELETE SELECTION](delete-selection.md) \ No newline at end of file +[DELETE SELECTION](delete-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1051 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md index dad23e955c68b5..274363a6a0a5c5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md @@ -145,4 +145,13 @@ Type ファンクションはフィールド、インタープロセス変数、 [Is a variable](is-a-variable.md) [Undefined](undefined.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 295 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md index 1e63c247f2f6bb..65bf4e4c01e419 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md @@ -58,4 +58,13 @@ displayed_sidebar: docs #### 参照 -[CLEAR VARIABLE](clear-variable.md) \ No newline at end of file +[CLEAR VARIABLE](clear-variable.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 82 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md index 1d39d2de19240d..6c22db1825e2bb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md @@ -49,4 +49,13 @@ displayed_sidebar: docs #### 参照 [DIFFERENCE](difference.md) -[INTERSECTION](intersection.md) \ No newline at end of file +[INTERSECTION](intersection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 120 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md index 13ced4cf4fb407..2912c4dc8c0f15 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md @@ -28,4 +28,13 @@ UNLOAD RECORDはメモリからレコードをアンロードしますが、そ #### 参照 [LOAD RECORD](load-record.md) -*レコードのロック* \ No newline at end of file +*レコードのロック* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 212 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md index e05116ae529979..b84f19b5e44158 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 UNREGISTER CLIENT コマンドは、クライアントステーションの登録を解除します。クライアントは[REGISTER CLIENT](register-client.md "REGISTER CLIENT")コマンドによって既に登録されているものでなければなりません。 @@ -37,4 +34,14 @@ displayed_sidebar: docs [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[REGISTER CLIENT](register-client.md) \ No newline at end of file +[REGISTER CLIENT](register-client.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 649 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md index 444f00d7f0de71..c868d144f30d3b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md @@ -36,4 +36,13 @@ displayed_sidebar: docs #### 参照 -[Lowercase](lowercase.md) \ No newline at end of file +[Lowercase](lowercase.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 13 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md index 25d704df402da8..1a5af7efad160f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md @@ -53,4 +53,14 @@ IANA名に関する説明は[CONVERT FROM TEXT](convert-from-text.md)コマン [IMPORT TEXT](import-text.md) [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 205 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md index 7044d78736cf8a..148d35e70b2a3d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md @@ -28,4 +28,15 @@ displayed_sidebar: docs [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[CUT NAMED SELECTION](cut-named-selection.md) \ No newline at end of file +[CUT NAMED SELECTION](cut-named-selection.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 332 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md index a458668f24440e..763a00cd1c09e3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md @@ -34,4 +34,15 @@ displayed_sidebar: docs #### 参照 [CLEAR SET](clear-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 118 | +| スレッドセーフである | ✓ | +| カレントレコードを変更する || +| カレントセレクションを変更する || + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md index 2f756b8cd3469c..f51df9dded515b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 User in group コマンドは*user* が*group* に存在する場合、[True](true.md "True")を返します。 @@ -44,4 +41,13 @@ displayed_sidebar: docs #### 参照 -[Current user](current-user.md) \ No newline at end of file +[Current user](current-user.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 338 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md index acd9cd2ad6b02e..2e7f45291a2e57 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **互換性に関する注記:* このコマンドはバイナリデータベースでのみ機能します。プロジェクトデータベースにおいては空のBLOBが返されます。* @@ -33,4 +30,14 @@ displayed_sidebar: docs #### 参照 -[BLOB TO USERS](blob-to-users.md) \ No newline at end of file +[BLOB TO USERS](blob-to-users.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 849 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md index fda9e692793de7..9fe29f1fea4217 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Validate password コマンドは引数 *password* に渡された文字列が、引数 *userID* に渡されたID番号または名前を持つユーザアカウントのパスワードである場合、Trueを返します。 @@ -62,4 +59,13 @@ displayed_sidebar: docs [GET USER PROPERTIES](get-user-properties.md) [Set user properties](set-user-properties.md) -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 638 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md index 92baafa84d8a26..d4f1eb3575ee3f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md @@ -29,4 +29,14 @@ OK変数に0が代入された場合、トランザクションは自動的に [CANCEL TRANSACTION](cancel-transaction.md) [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*トランザクションを使用する* \ No newline at end of file +*トランザクションを使用する* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 240 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md index d985759800b86c..e23c4e76b55907 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md @@ -112,4 +112,13 @@ displayed_sidebar: docs #### 参照 [OB Get type](ob-get-type.md) -[Type](type.md) \ No newline at end of file +[Type](type.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1509 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md index 2bdb6bed569fe2..07c92b286ce105 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md @@ -131,4 +131,14 @@ displayed_sidebar: docs [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 532 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md index b0f31b5a9ea0fc..f5dfb0e093ce10 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 VARIABLE TO VARIABLEコマンドは、引数*srcVar1* *srcVar2*に渡す値を、*process*に渡す番号を持つ送り先プロセスの*dstVar* (*dstVar2*等) プロセス変数に書き込みます。 @@ -64,4 +61,13 @@ VARIABLE TO VARIABLE は、任意のタイプの送り先プロセスまたは [GET PROCESS VARIABLE](get-process-variable.md) [SET PROCESS VARIABLE](set-process-variable.md) -*プロセス* \ No newline at end of file +*プロセス* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 635 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md index 02cb1685c67019..a3dadeced59e33 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md @@ -67,4 +67,13 @@ displayed_sidebar: docs [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Sum squares](sum-squares.md) \ No newline at end of file +[Sum squares](sum-squares.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 27 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md index b68b7b455713f0..36c95a8c0dbecc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md @@ -41,4 +41,14 @@ VERIFY CURRENT DATA FILEコマンドを引数なしで呼び出すと、デフ #### 参照 -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1008 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md index bd1be59a79ac59..9e8e3c1562089b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### 説明 -**VERIFY DATA FILE**コマンドは、*structurePath*と*dataPath*で指定したデータファイル中にあるオブジェクトの構造的な検証を行います。 - -**注:** データ検証に関する詳細は、Design Referenceマニュアルを参照してください。 +**VERIFY DATA FILE**コマンドは、*structurePath*と*dataPath*で指定したデータファイル中にあるオブジェクトの構造的な検証を行います。データ検証に関する詳細は、Design Referenceマニュアルを参照してください。 *structurePath*は、 検証するデータファイルに対応するストラクチャーファイル (コンパイル済みまたはインタプリター) を指定します。開かれたストラクチャーや他のストラクチャーを指定できます。OSに対応した完全パス名を指定しなければなりません。空の文字列を渡すと標準のファイルを開くダイアログボックスが表示され、使用するストラクチャーファイルをユーザーが指定できます。 @@ -170,4 +168,14 @@ displayed_sidebar: docs #### 参照 -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 939 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md index da73778bfb7d29..5e7c1b054a07e4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md @@ -52,4 +52,13 @@ displayed_sidebar: docs #### 参照 -[Generate password hash](generate-password-hash.md) \ No newline at end of file +[Generate password hash](generate-password-hash.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1534 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md index bc392b915ad1be..97d3b28b4184aa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md @@ -42,4 +42,13 @@ displayed_sidebar: docs #### 参照 [Application type](application-type.md) -[Application version](application-version.md) \ No newline at end of file +[Application version](application-version.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 495 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md index 844cc19d8d0375..9674a9a5ac84b0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### 説明 -VOLUME ATTRIBUTESコマンドは、引数*volume*に渡した名前を持つボリュームのサイズ、使用サイズおよび空きサイズをバイト単位で表わして返します。 - -**Note:** *volume*がマウントされていないリモートボリュームを示す場合、OK変数に0が代入され、3つの引数は-1を返します。 +VOLUME ATTRIBUTESコマンドは、引数*volume*に渡した名前を持つボリュームのサイズ、使用サイズおよび空きサイズをバイト単位で表わして返します。*volume*がマウントされていないリモートボリュームを示す場合、OK変数に0が代入され、3つの引数は-1を返します。 #### 例題 @@ -96,4 +94,14 @@ displayed_sidebar: docs #### 参照 -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 472 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md index 8a25560f3dfe42..04e38ad595b7e5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md @@ -40,4 +40,13 @@ displayed_sidebar: docs [DOCUMENT LIST](document-list.md) [FOLDER LIST](folder-list.md) -[VOLUME ATTRIBUTES](volume-attributes.md) \ No newline at end of file +[VOLUME ATTRIBUTES](volume-attributes.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 471 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md index 55b85fbcb5325c..f0040c63ca2032 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Back URL available コマンドは、*\** と *object* 引数で指定したWebエリアに開かれた一連のURLで、前のURLが利用できるかどうかを知るために使用します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [WA Forward URL available](wa-forward-url-available.md) -[WA OPEN BACK URL](wa-open-back-url.md) \ No newline at end of file +[WA OPEN BACK URL](wa-open-back-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1026 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md index 55c2957dcdc1b4..dafe315eae3f0e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **WA Create URL history menu** コマンドは、*\** と *object* で指定したWebエリアがセッション中に訪問したURL間をナビゲートするメニューを作成します。このコマンドを使用して、カスタムのナビゲーションインタフェースを作成できます。 @@ -69,4 +66,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[WA GET URL HISTORY](wa-get-url-history.md) \ No newline at end of file +[WA GET URL HISTORY](wa-get-url-history.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1049 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md index c86e25d4ea60d8..8f224cde4ba9f3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Evaluate JavaScript コマンドは、*\** と *object* 引数で指定したWebエリアで、*jsCode*に渡されたJavaScriptコードを実行し、結果を戻します。このコマンドはページが読み込まれた後に呼び出してください(On End URL Loading フォームイベントが生成されている必要があります)。 @@ -103,4 +100,13 @@ HTML ファイル内にあるJavaScriptファンクションの例: #### 参照 -[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) \ No newline at end of file +[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1029 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md index 2086620f3dee9f..1384ef732c1cd8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA EXECUTE JAVASCRIPT FUNCTION コマンドは、*\** と *object* で指定したWebエリアで、*jsFunction*に渡したJavaScript関数を実行し、*result* 引数に結果を返します (オプション)。 @@ -59,4 +56,13 @@ displayed_sidebar: docs #### 参照 -[WA Evaluate JavaScript](wa-evaluate-javascript.md) \ No newline at end of file +[WA Evaluate JavaScript](wa-evaluate-javascript.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1043 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md index 00d9e8661fa6f9..7376751c893949 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Forward URL available コマンドは、*\** と *object* 引数で指定したWebエリアに開かれた一連のURLで、次のURLが利用できるかどうかを知るために使用します。 @@ -27,4 +24,13 @@ displayed_sidebar: docs #### 参照 [WA Back URL available](wa-back-url-available.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1027 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md index 2d65e670e87ef9..be2b3858a1ade1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Get current URL コマンドは、*\** と *object* 引数で指定したWebエリアに現在表示されているページのURLアドレスを返します。 @@ -37,4 +34,13 @@ Webページが完全にロードされると、この関数から返される #### 参照 -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1025 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md index 017f6af665d0be..0da3a746ec2bab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA GET EXTERNAL LINKS FILTERS コマンドは*filtersArr* と *allowDenyArr*配列に、*\** と *object* 引数で指定したWebエリアの外部リンクフィルタを返します。フィルタが有効でない場合、空の配列が返されます。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1033 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md index 5d1b30687035e1..22077cf3e2abdd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Get last filtered URL コマンドは、*\** と *object* 引数で指定したWebエリアで、最後にフィルタされたURLを返します。 @@ -35,4 +32,13 @@ URLは以下のいずれかの理由でフィルタされることがありま [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) [WA GET URL FILTERS](wa-get-url-filters.md) [WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1035 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md index da5011fd950bc1..896d4956e9af6a 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA GET LAST URL ERROR コマンドを使用して、*\** と *object* 引数で指定したWebエリアで発生した最後のエラーに関する情報のいくつかの項目を取得できます。 @@ -36,4 +33,13 @@ displayed_sidebar: docs #### 参照 -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1034 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md index 2ea4def9a92773..6c3f7b0e8bcda2 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Get page content コマンドは、*\** と *object* 引数で指定したWebエリアの現在のページまたは表示されているページのHTMLコードを返します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[WA SET PAGE CONTENT](wa-set-page-content.md) \ No newline at end of file +[WA SET PAGE CONTENT](wa-set-page-content.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1038 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md index ccc8d87ac2019a..a1d587ab24d337 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA Get page title コマンドは、*\** と *object* 引数で指定したWebエリアの現在のページまたは表示されているページのタイトルを返します。タイトルはHTMLのtitleタグに対応します。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1036 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md index 661e5ba6e421e4..9a4d572bbaf788 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA GET PREFERENCE コマンドを使用して、*\** と *object* によって指定されたWebエリアの環境設定の現在値を取得します。 @@ -35,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[WA SET PREFERENCE](wa-set-preference.md) \ No newline at end of file +[WA SET PREFERENCE](wa-set-preference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1042 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md index 8cd71fc2dcde47..d8e4acf944ca0c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA GET URL FILTERS コマンドは*filtersArr* と *allowDenyArr*配列に、*\** と *object* 引数で指定したWebエリアで有効なフィルタを返します。フィルタが有効でない場合、空の配列が返されます。 @@ -28,4 +25,13 @@ displayed_sidebar: docs #### 参照 [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1031 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md index e1322af724a47c..de3f0ae49cd500 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA GET URL HISTORY コマンドは、*\** と *object* 引数で指定したWebエリアのセッション中に訪問したURLを含む1つまたは2つの配列を返します。このコマンドを使用して、カスタムのナビゲーションシステムを作成できます。 @@ -45,4 +42,13 @@ URLは時間順に並びかえられます。 #### 参照 -[WA Create URL history menu](wa-create-url-history-menu.md) \ No newline at end of file +[WA Create URL history menu](wa-create-url-history-menu.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1048 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md index d874b652ce3052..3d2d1c4d83e509 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA OPEN BACK URL コマンドは、*\** と *object* 引数で指定したWebエリアに開かれた一連のURL中、現在のURLのひとつ前のURLをロードします。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 [WA OPEN FORWARD URL](wa-open-forward-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1021 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md index 7f8a5361ebb39e..a16bb7f312268b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA OPEN FORWARD URL コマンドは、*\** と *object* 引数で指定したWebエリアに開かれた一連のURL中、現在のURLのひとつ次のURLをロードします。 @@ -26,4 +23,13 @@ displayed_sidebar: docs #### 参照 [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1022 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md index 53de1136fcd137..f42af424285310 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **WA OPEN URL**コマンドは、*url* 引数に渡したURLを、*\** と *object* 引数で指定したWebエリアにロードします。 @@ -49,4 +46,13 @@ Mac OSにおいてFileVault が有効化されている場合には、Posix シ [OPEN URL](open-url.md) [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1020 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md index 707a092b3661ee..6c4993f08c9bb3 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **WA OPEN WEB INSPECTOR** コマンドは、 *\** および *object* 引数で指定されたWeb エリアにおいてWeb インスペクターを開きます。 @@ -24,4 +21,13 @@ displayed_sidebar: docs #### 参照 [WA Run offscreen area](wa-run-offscreen-area.md) -*Webエリアのプログラムによる管理* \ No newline at end of file +*Webエリアのプログラムによる管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1736 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md index 8b0ae006258a04..d916c39b3ad33b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA REFRESH CURRENT URL コマンドは、*\** と *object* 引数で指定したWebエリアに現在表示されているURLを再読み込みします。 #### 参照 -[WA STOP LOADING URL](wa-stop-loading-url.md) \ No newline at end of file +[WA STOP LOADING URL](wa-stop-loading-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1023 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md index 966614d9ec0b61..397a06a9836e01 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 **WA Run offscreen area** コマンドは、メモリ内にWeb エリアを作成します。このWeb エリアはWeb ページを自動的に読み込んで解析することなどに使用できます。 @@ -97,4 +94,14 @@ displayed_sidebar: docs [FORM Event](form-event.md) [WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) -*Webエリアのプログラムによる管理* \ No newline at end of file +*Webエリアのプログラムによる管理* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1727 | +| スレッドセーフである | ✗ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md index 7d1818615a82e3..d22265dd2042c4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA SET EXTERNAL LINKS FILTERS コマンドを使用して、*\** と *object* 引数で指定したWebエリアの外部リンクフィルタを設定できます。外部リンクフィルタは、リンクを使用して現在のページに関連付けられているURLをWebエリアで開くか、マシンのデフォルトWebブラウザで開くかどうか決定するために使用されます。 @@ -76,4 +73,13 @@ displayed_sidebar: docs #### 参照 [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1032 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md index 56533be10740b5..2aa8fd8fc0d122 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 互換性に関する注意 この歴史的なコマンドは現実的にはもはや実用的とは言えません。現代的なブラウザにおいてはセキュリティが厳格化されているため、ページコンテンツを"オンザフライ"で変更することに対しては制約が増える一方です。より信頼性のある方法としてはローカルなファイルを(例: 一時フォルダ内などに)作成し、[WA OPEN URL](wa-open-url.md) を使用してロードすることです。コンテンツを消去するためには、**WA OPEN URL**(myArea;”about:blank”) を呼び出してください。 @@ -46,4 +43,13 @@ Windows では、この引数は効果がなく、ベースURLは指定されま #### 参照 -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1037 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md index 70a3634bbeee13..21920156a6c3b4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA SET PREFERENCE コマンドを使用して、引数 *\** と *object* によって指定されたWebエリアに対して、さまざまな環境設定を行います。 @@ -51,4 +48,13 @@ displayed_sidebar: docs #### 参照 -[WA GET PREFERENCE](wa-get-preference.md) \ No newline at end of file +[WA GET PREFERENCE](wa-get-preference.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1041 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md index e636853d023f2c..bac161edb93b86 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA SET URL FILTERS コマンドは、*\** と *object* 引数で指定したWebエリアで、1 つ以上のフィルタを設定するために使用します。 @@ -139,4 +136,13 @@ displayed_sidebar: docs #### 参照 [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1030 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md index 7451e9d707e59d..f48456b6062288 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA STOP LOADING URL コマンドは、*\** と *object* 引数で指定したWebエリアの現在のURL のリソース読み込みを停止します。 #### 参照 -[WA REFRESH CURRENT URL](wa-refresh-current-url.md) \ No newline at end of file +[WA REFRESH CURRENT URL](wa-refresh-current-url.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1024 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md index dc6ab7b74a40f3..57256f1b89243e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA ZOOM IN コマンドは、*\** と *object* 引数で指定したWebエリアに表示されているテキストのサイズを大きくします。 @@ -27,4 +24,13 @@ Windows では、このコマンドのスコープはグローバルです。4D #### 参照 -[WA ZOOM OUT](wa-zoom-out.md) \ No newline at end of file +[WA ZOOM OUT](wa-zoom-out.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1039 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md index 4ddfe8887a1b8b..7e796f5ad8df6e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WA ZOOM OUT コマンドは、*\** と *object* 引数で指定したWebエリアに表示されているテキストのサイズを小さくします。 @@ -27,4 +24,13 @@ Windows では、このコマンドのスコープはグローバルです。4D #### 参照 -[WA ZOOM IN](wa-zoom-in.md) \ No newline at end of file +[WA ZOOM IN](wa-zoom-in.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1040 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md index 63c47e140e8f2f..47a890fa1d2cac 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### 参照 -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1211 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md index 8712e97e83fde7..ca376fe9a3fcc9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md @@ -19,9 +19,7 @@ displayed_sidebar: docs #### 説明 -**WEB GET BODY PART**コマンドはWebプロセスのコンテキストで使用され、マルチパートリクエストのボディ部を解析します。 - -*part* 引数には解析対象のパート番号を渡します。総パート数は[WEB Get body part count](web-get-body-part-count.md)コマンドで取得できます。 +**WEB GET BODY PART**コマンドはWebプロセスのコンテキストで使用され、マルチパートリクエストのボディ部を解析します。引数には解析対象のパート番号を渡します。総パート数は[WEB Get body part count](web-get-body-part-count.md)コマンドで取得できます。 *contents* 引数にはパートのコンテンツが返されます。取得するパートがファイルの場合、BLOB型の引数を渡さなければなりません。Webフォームから送信されるテキストデータの場合、テキスト型の引数を渡すことができます。 @@ -94,4 +92,13 @@ GetFileのコードは以下の通りです: [WEB Get body part count](web-get-body-part-count.md) [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET VARIABLES](web-get-variables.md) \ No newline at end of file +[WEB GET VARIABLES](web-get-variables.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1212 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md index b4f0227f1ae855..64dc1f52817470 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md @@ -22,4 +22,13 @@ displayed_sidebar: docs #### 参照 [WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) -*Webセッション管理(旧式)* \ No newline at end of file +*Webセッション管理(旧式)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1162 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md index e4566d69cf26c5..58873ce46dc45d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md @@ -46,4 +46,13 @@ displayed_sidebar: docs #### 参照 [WEB GET BODY PART](web-get-body-part.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 814 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md index c083a41fd284c8..1446ec3535885c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md @@ -114,4 +114,13 @@ HTTP標準に準拠するには、フィールド名を常に英語で記述し #### 参照 [WEB GET HTTP BODY](web-get-http-body.md) -[WEB SET HTTP HEADER](web-set-http-header.md) \ No newline at end of file +[WEB SET HTTP HEADER](web-set-http-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 697 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md index a28b3fd6349f06..945219958f0f1b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### 説明 -**WEB GET OPTION** コマンドは4D Webサーバー処理に関するオプションの現在の設定値を取得するために使用します。 - -*selector* 引数には取得するWebオプションを指定する値を渡します。*Web Server*テーマの以下の定数を使用できます: +**WEB GET OPTION** コマンドは4D Webサーバー処理に関するオプションの現在の設定値を取得するために使用します。引数には取得するWebオプションを指定する値を渡します。*Web Server*テーマの以下の定数を使用できます: | 定数 | 値 | コメント | | ---------------------------------------- | -- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | @@ -62,4 +60,13 @@ displayed_sidebar: docs #### 参照 -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1209 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md index 815badf62657ba..d4f65fddf3aeed 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md @@ -89,4 +89,13 @@ displayed_sidebar: docs [License info](license-info.md) [Process activity](../commands/process-activity.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1531 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md index 9370dfbe236f80..3d62646acb54a9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md @@ -60,3 +60,13 @@ STATSプロジェクトメソッドには以下のコードを書きます: ``` URLリンクまたは[WEB SEND FILE](web-send-file.md)コマンドを使用して"stats.shtm"ページを参照できます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 658 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md index 19be89728f390c..33d36010194f57 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md @@ -63,4 +63,13 @@ WEBFORMメソッド以下のように記述します。 #### 参照 -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 683 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md index e7352dba8042e8..fa84c74c16e57c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md @@ -26,4 +26,13 @@ displayed_sidebar: docs #### 参照 -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 698 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md index 4cdba0f813f398..1d30cd79d163a8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md @@ -36,3 +36,13 @@ Webサーバーが実行中かどうかをチェックしたい場合:     ... //実行する処理  End if ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1313 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md index 70f80d6de19af2..85401f1dd393f9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md @@ -34,4 +34,13 @@ Webプロセスや他のプロセスからこのコマンドが呼び出され #### 参照 [On Web Legacy Close Session database method](on-web-legacy-close-session-database-method.md) -*Webセッション管理(旧式)* \ No newline at end of file +*Webセッション管理(旧式)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1208 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md index 02844cd8052ad4..5e59134de0c84e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md @@ -37,4 +37,13 @@ displayed_sidebar: docs [WEB Get Current Session ID](web-get-current-session-id.md) [WEB SET OPTION](web-set-option.md) -*Webセッション管理(旧式)* \ No newline at end of file +*Webセッション管理(旧式)* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1207 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md index 7a15922bd5ec38..85fc4ab25f5270 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md @@ -78,4 +78,13 @@ BLOBに含まれるデータのタイプは *type* によって示されます #### 参照 -[WEB SEND FILE](web-send-file.md) \ No newline at end of file +[WEB SEND FILE](web-send-file.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 654 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md index bc5d5d7a302f1b..cca34829f3f9d7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md @@ -48,4 +48,14 @@ Webページ "MyPage.HTM"を送信するには以下のようにします。 #### 参照 -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 619 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md index b087387bf08056..8d53f692f53606 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md @@ -55,3 +55,13 @@ displayed_sidebar: docs        ... // 検索コードをここに入れる  End case ``` + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 659 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md index 99cc9c75044802..9d53361f707eb1 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md @@ -79,4 +79,13 @@ Location: http://... #### 参照 [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 815 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md index b28c18792f2a67..3c38f219a4ddfc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md @@ -44,4 +44,13 @@ displayed_sidebar: docs #### 参照 -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 677 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md index 84b207e0992408..7ed323cb9866ab 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md @@ -51,4 +51,13 @@ displayed_sidebar: docs #### 参照 [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE Get info](web-service-get-info.md) \ No newline at end of file +[WEB SERVICE Get info](web-service-get-info.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 786 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md index c8a10e4a65c859..39c162b9c1854b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md @@ -159,4 +159,14 @@ DOCモード (または複合タイプのRPCモード) で公開されたWebサ #### 参照 [WEB SERVICE GET RESULT](web-service-get-result.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 778 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md index ba4ba9318cd550..780021dfb3a1a9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md @@ -28,3 +28,13 @@ displayed_sidebar: docs | Web Service HTTP status code | 倍長整数 | 2 | HTTPエラーコード (メインエラーが9912の場合に使用)。 | 情報が利用できない場合、空の文字列が返されます。特に最後のSOAPリクエストがエラーを生成しなかった場合。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 780 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md index 1fced98ac148a0..03f10afaf0a82c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**WEB SERVICE GET RESULT**コマンドは、行われた処理の結果としてWebサービスから返された結果を取得するために使用します。 - -**注:** このコマンドは[WEB SERVICE CALL](web-service-call.md)コマンドの後に使用しなければなりません。 +**WEB SERVICE GET RESULT**コマンドは、行われた処理の結果としてWebサービスから返された結果を取得するために使用します。このコマンドは[WEB SERVICE CALL](web-service-call.md)コマンドの後に使用しなければなりません。 *returnValue* 引数はWebサービスから送り返された値を受け取ります。この引数には4D変数を渡します。この変数は通常、プロクシメソッドから返される値に対応する$0です。しかし中間変数を使用することもできます (プロセス変数のみ)。 @@ -51,4 +49,13 @@ Webサービスがある都市の時間を返すとします。Webサービス #### 参照 [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 779 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md index a82c685b7824fe..f6cd76276e19b6 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md @@ -60,4 +60,13 @@ SOAPリクエストにカスタマイズしたヘッダーを挿入する: #### 参照 -[WEB SERVICE CALL](web-service-call.md) \ No newline at end of file +[WEB SERVICE CALL](web-service-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 901 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md index 92556c0106c80c..5fa26abffe2357 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md @@ -71,4 +71,13 @@ displayed_sidebar: docs #### 参照 [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE GET RESULT](web-service-get-result.md) \ No newline at end of file +[WEB SERVICE GET RESULT](web-service-get-result.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 777 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md index 829bb27de7d521..d7262c2f4c3b0d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md @@ -26,3 +26,13 @@ HTMLホームページの名前、またはそのページのHTMLアクセスパ 現在のWebプロセスのホームページとして *homePage* の使用を停止するには、*homePage* に空の文字列 ("") を渡して**WEB SET HOME PAGE**コマンドを実行します。 **注:** Webサーバーのデフォルトホームページはデータベース設定ダイアログボックスで定義できます。 + + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 639 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md index 9b1e4306a4bad6..a77a619ca5b7c4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md @@ -62,4 +62,13 @@ X-VERSIONとX-STATUSを指定しないと、自動的にHTTP/1.0 200 OKが設定 #### 参照 -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 660 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md index c05bbb4c620dfc..a25d41aa998c73 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md @@ -110,4 +110,13 @@ Server: 4D/16.0.1 #### 参照 [WEB GET OPTION](web-get-option.md) -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 5 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md index 7d7a67db9f8ff0..bc435a06a444c8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md @@ -36,4 +36,14 @@ HTMLシンタックス (URLタイプ) 、またはシステムシンタックス #### 参照 [Get 4D folder](get-4d-folder.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 634 | +| スレッドセーフである | ✓ | +| システム変数を更新する | error | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md index f433ba02fefc0e..5af034ecafb138 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md @@ -22,4 +22,14 @@ Webサーバの起動が成功すると、OK に1が代入されます。その #### 参照 -[WEB STOP SERVER](web-stop-server.md) \ No newline at end of file +[WEB STOP SERVER](web-stop-server.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 617 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md index 23d41e9597152d..b36c255a1ffa94 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md @@ -19,4 +19,13 @@ Webサーバが起動していない場合、コマンドは何も行いませ #### 参照 -[WEB START SERVER](web-start-server.md) \ No newline at end of file +[WEB START SERVER](web-start-server.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 618 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md index 0055de70bf7472..f41e6cd4cb04a5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md @@ -55,4 +55,13 @@ displayed_sidebar: docs #### 参照 [Generate digest](generate-digest.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 946 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md index 0925038b44c03f..0ef3e8e9af2637 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Window kind コマンドは*window*に渡した参照番号のウィンドウのタイプを返します。ウィンドウが存在しない場合、 Window kind には *0* が返されます。 @@ -41,4 +38,13 @@ displayed_sidebar: docs [GET WINDOW RECT](get-window-rect.md) [Get window title](get-window-title.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 445 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md index 8cd2427d270d59..7c560430a77031 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 WINDOW LIST コマンドは配列 *windows* を生成し、実行中のすべての (カーネルおよびユーザ) プロセスで開かれているウィンドウの参照番号を返します。"可視状態"のウィンドウ(非表示になっていないウィンドウ)のみが返されます。 @@ -52,4 +49,13 @@ displayed_sidebar: docs #### 参照 [Window kind](window-kind.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 442 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md index c8544fcf5c211f..732d18f2cf016e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*このコマンドはスレッドセーフではないため、プリエンプティブなコードには使えません。* - - #### 説明 Window process コマンドは*window*に渡されたウィンドウが実行されているプロセスの番号を返します。ウィンドウが存在しない場合0が返されます。 @@ -25,4 +22,13 @@ displayed_sidebar: docs #### 参照 -[Current process](current-process.md) \ No newline at end of file +[Current process](current-process.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 446 | +| スレッドセーフである | ✗ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md index 5ec58f1abad4c7..db88b6b1169730 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Windows Alt down はWindowsのAlt キーが押されていると[True](true.md "True")を返します。 - -**Note:** Macintoshのプラットフォーム上で呼び出された場合は、Macintoshのoptionキーが押されていると、 Windows Alt down は[True](true.md "True")を返します。 +Windows Alt down はWindowsのAlt キーが押されていると[True](true.md "True")を返します。Macintoshのプラットフォーム上で呼び出された場合は、Macintoshのoptionキーが押されていると、 Windows Alt down は[True](true.md "True")を返します。 #### 例題 @@ -30,4 +28,13 @@ displayed_sidebar: docs [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 563 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md index d336086a61136a..b1fef467e51518 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### 説明 -Windows Ctrl down はWindowsのCtrlキーが押されていると[True](true.md "True")を返します。 - -**Note:** Macintoshのプラットフォーム上で呼び出された場合は、 Macintoshのcommandキーが押されていると、Windows Ctrl down は[True](true.md "True")を返します。 +Windows Ctrl down はWindowsのCtrlキーが押されていると[True](true.md "True")を返します。Macintoshのプラットフォーム上で呼び出された場合は、 Macintoshのcommandキーが押されていると、Windows Ctrl down は[True](true.md "True")を返します。 #### 例題 @@ -30,4 +28,13 @@ displayed_sidebar: docs [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 562 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md index 8ff3d7f2682011..a2d29638e8bc0c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md @@ -45,4 +45,14 @@ displayed_sidebar: docs [PICTURE TO BLOB](picture-to-blob.md) [READ PICTURE FILE](read-picture-file.md) [SET PICTURE FILE NAME](set-picture-file-name.md) -*ピクチャ* \ No newline at end of file +*ピクチャ* + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 680 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK、Document | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md index b9bea398620bd4..f8276e0d1fb09b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md @@ -85,4 +85,13 @@ Title="4 Stabat mater"/> #### 参照 [BASE64 DECODE](base64-decode.md) -[BASE64 ENCODE](base64-encode.md) \ No newline at end of file +[BASE64 ENCODE](base64-encode.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1091 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md index 65cdb67ba5c8fb..629ab3d61f627c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md @@ -28,4 +28,14 @@ displayed_sidebar: docs #### 参照 -[DOM Get XML information](dom-get-xml-information.md) \ No newline at end of file +[DOM Get XML information](dom-get-xml-information.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 732 | +| スレッドセーフである | ✓ | +| システム変数を更新する | OK | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md index 6f4060615d8b1a..38d3dd417af2a5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### 説明 -**XML GET OPTIONS** コマンドは、カレントセッションおよびカレントユーザで使用されている1つ以上のXMLパラメタの現在値を取得するために使用します。 - -*selector*には取得するオプションを指定する、"*XML*"テーマの定義済み定数を渡します。オプションの現在の値は*value* 引数に返されます: +**XML GET OPTIONS** コマンドは、カレントセッションおよびカレントユーザで使用されている1つ以上のXMLパラメタの現在値を取得するために使用します。引数に返されます: | 定数 | 型 | 値 | コメント | | ------------------------------ | ---- | - | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | @@ -34,4 +32,13 @@ displayed_sidebar: docs #### 参照 -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1096 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md index 621b394a2ba760..4c31277a6b9573 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md @@ -65,4 +65,13 @@ SVG ピクチャの挿入: [DOM SET XML DECLARATION](dom-set-xml-declaration.md) [DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[XML GET OPTIONS](xml-get-options.md) \ No newline at end of file +[XML GET OPTIONS](xml-get-options.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 1090 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md index 26d6b7d50c3704..f989e6127850fa 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md @@ -37,4 +37,13 @@ displayed_sidebar: docs #### 参照 [Day of](day-of.md) -[Month of](month-of.md) \ No newline at end of file +[Month of](month-of.md) + +#### プロパティ + +| | | +| --- | --- | +| コマンド番号 | 25 | +| スレッドセーフである | ✓ | + + diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/create-entity-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/create-entity-selection.md index 5b70f5d0e38512..6fa56d9f9254ef 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/create-entity-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/create-entity-selection.md @@ -20,9 +20,9 @@ displayed_sidebar: docs `Create entity selection` コマンドは、*dsTable* で指定したテーブルに対応するデータクラスの[追加可能な](../ORDA/entities.md#shareable-or-alterable-entity-selections)新規エンティティセレくションを、同テーブルのカレントセレクションに基づいてビルドして返します。 -ソートされたカレントセレクションの場合、[順列のある](ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) エンティティセレクションが作成されます (カレントセレクションの並び順が受け継がれます)。 カレントセレクションがソートされていない場合、順列のないエンティティセレクションが作成されます。 +ソートされたカレントセレクションの場合、[順列のある](ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし) エンティティセレクションが作成されます (カレントセレクションの並び順が受け継がれます)。 カレントセレクションがソートされていない場合、順列のないエンティティセレクションが作成されます。 カレントセレクションがソートされていない場合、順列のないエンティティセレクションが作成されます。 カレントセレクションがソートされていない場合、順列のないエンティティセレクションが作成されます。 カレントセレクションがソートされていない場合、順列のないエンティティセレクションが作成されます。 -[`ds`](ds.md) において *dsTable* が公開されていない場合には、エラーが返されます。 リモートデータストアの場合は、このコマンドは使用できません。 +[`ds`](ds.md) において *dsTable* が公開されていない場合には、エラーが返されます。 リモートデータストアの場合は、このコマンドは使用できません。 リモートデータストアの場合は、このコマンドは使用できません。 任意の *settings* には、以下のプロパティを持つオブジェクトを渡せます: diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md index 742327808b6ecb..1c80e365a5c918 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md @@ -14,13 +14,13 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* +*このコマンドはスレッドセーフではないので、プリエンプティブなコードでは使用できません。* #### 説明 -**Form event code** コマンドは、現在生成中のフォームイベントタイプを示す数値を返します。 通常フォームメソッドやオブジェクトメソッド内で**Form event code** を使用します。 +**Form event code** コマンドは、現在生成中のフォームイベントタイプを示す数値を返します。 通常フォームメソッドやオブジェクトメソッド内で**Form event code** を使用します。 通常フォームメソッドやオブジェクトメソッド内で**Form event code** を使用します。 -4DにはForm Eventsテーマで定義された定数が用意されており、**Form event code** コマンドから返される値と比較することができます。 イベントには、一般的なイベント(任意のタイプのオブジェクトに対して生成される)と、特定タイプのオブジェクトのみに発生するイベントがあります。 +4DにはForm Eventsテーマで定義された定数が用意されており、**Form event code** コマンドから返される値と比較することができます。 イベントには、一般的なイベント(任意のタイプのオブジェクトに対して生成される)と、特定タイプのオブジェクトのみに発生するイベントがあります。 イベントには、一般的なイベント(任意のタイプのオブジェクトに対して生成される)と、特定タイプのオブジェクトのみに発生するイベントがあります。 イベントの詳細については[**Form Events**](../Events/overview.md) の章を参照してください。 @@ -60,7 +60,7 @@ displayed_sidebar: docs #### 例題 3 -この例題はフォームメソッドのテンプレートです。 出力フォームとしてサマリレポートがフォームを使用する際に発生し得るイベントを示しています: +この例題はフォームメソッドのテンプレートです。 この例題はフォームメソッドのテンプレートです。 出力フォームとしてサマリレポートがフォームを使用する際に発生し得るイベントを示しています: ```4d   // 概要レポートの出力フォームとして使用されているフォームのフォームメソッド @@ -101,7 +101,7 @@ displayed_sidebar: docs #### 例題 4 -この例題は[DISPLAY SELECTION](../commands-legacy/display-selection.md) または[MODIFY SELECTION](../commands-legacy/modify-selection.md) で表示されるフォームで発生するイベントを処理するメソッドのテンプレートです。 説明的にするため、フォームウィンドウのタイトルバーにイベントの説明が表示されます: +この例題は[DISPLAY SELECTION](../commands-legacy/display-selection.md) または[MODIFY SELECTION](../commands-legacy/modify-selection.md) で表示されるフォームで発生するイベントを処理するメソッドのテンプレートです。 説明的にするため、フォームウィンドウのタイトルバーにイベントの説明が表示されます: 説明的にするため、フォームウィンドウのタイトルバーにイベントの説明が表示されます: ```4d   // フォームメソッド @@ -164,7 +164,7 @@ displayed_sidebar: docs #### 例題 7 -この例題では、クリックとダブルクリックで異なるレスポンスをする方法を示します。 要素0を使用して選択された項目を追跡していることに注目してください: +この例題では、クリックとダブルクリックで異なるレスポンスをする方法を示します。 要素0を使用して選択された項目を追跡していることに注目してください: 要素0を使用して選択された項目を追跡していることに注目してください: ```4d   // asChoices スクロール可能エリアのオブジェクトメソッド @@ -259,7 +259,6 @@ displayed_sidebar: docs  End case ``` - #### 例題 11 以下の例題では階層リストで削除アクションを管理する方法を示します: @@ -290,7 +289,7 @@ displayed_sidebar: docs #### 例題 12 -この例題では[`On Scroll`](../Events/onScroll.md) フォームイベントを使用してフォーム中の2つのピクチャーを同期します。 以下のコードを"satellite" のオブジェクトメソッド(ピクチャーフィールドまたは変数)に記述します: +この例題では[`On Scroll`](../Events/onScroll.md) フォームイベントを使用してフォーム中の2つのピクチャーを同期します。 以下のコードを"satellite" のオブジェクトメソッド(ピクチャーフィールドまたは変数)に記述します: 以下のコードを"satellite" のオブジェクトメソッド(ピクチャーフィールドまたは変数)に記述します: ```4d  Case of @@ -306,7 +305,7 @@ displayed_sidebar: docs #### 例題 13 -リストボックスで選択されたセルの周りに赤い長方形を描画し、リストボックスがユーザーによって垂直方向にスクロールされた場合には、その長方形を一緒に移動させたい場合を考えます。 その場合、リストボックスのオブジェクトメソッドに対して以下のように書きます: +リストボックスで選択されたセルの周りに赤い長方形を描画し、リストボックスがユーザーによって垂直方向にスクロールされた場合には、その長方形を一緒に移動させたい場合を考えます。 その場合、リストボックスのオブジェクトメソッドに対して以下のように書きます: その場合、リストボックスのオブジェクトメソッドに対して以下のように書きます: ```4d  Case of diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md index 8aa1db3338e157..570c8e1d724442 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md @@ -29,18 +29,18 @@ displayed_sidebar: docs *server* 引数として、以下のプロパティを持つオブジェクトを渡します: -| *server* | デフォルト値 (省略時) | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------- | -| [](../API/IMAPTransporterClass.md#acceptunsecureconnection)
    | false | -| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Object
    OAuth2 認証の資格情報を表すテキスト文字列またはトークンオブジェクト。 `authenticationMode` が OAUTH2 の場合のみ使用されます。 `accessTokenOAuth2` が使用されているが `authenticationMode` が省略されていた場合、OAuth2 プロトコルが使用されます (サーバーで許可されていれば)。 Not returned in *[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)* object. | なし | -| [](../API/IMAPTransporterClass.md#authenticationmode)
    | サーバーがサポートするもっともセキュアな認証モードが使用されます | -| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
    | 300 | -| [](../API/IMAPTransporterClass.md#connectiontimeout)
    | 30 | -| [](../API/IMAPTransporterClass.md#host)
    | *mandatory* | -| [](../API/IMAPTransporterClass.md#logfile)
    | なし | -| .**password** : Text
    サーバーとの認証のためのユーザーパスワード。 *[IMAP transporter](#imap-transporter-オブジェクト)* オブジェクトには返されません。 | なし | -| [](../API/IMAPTransporterClass.md#port)
    | 993 | -| [](../API/IMAPTransporterClass.md#user)
    | なし | +| *server* | デフォルト値 (省略時) | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------- | +| [](../API/IMAPTransporterClass.md#acceptunsecureconnection)
    | false | +| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Object
    OAuth2 認証の資格情報を表すテキスト文字列またはトークンオブジェクト。 `authenticationMode` が OAUTH2 の場合のみ使用されます。 `accessTokenOAuth2` が使用されているが `authenticationMode` が省略されていた場合、OAuth2 プロトコルが使用されます (サーバーで許可されていれば)。 これは\*[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)\* オブジェクトではでは返されません。 | なし | +| [](../API/IMAPTransporterClass.md#authenticationmode)
    | サーバーがサポートするもっともセキュアな認証モードが使用されます | +| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
    | 300 | +| [](../API/IMAPTransporterClass.md#connectiontimeout)
    | 30 | +| [](../API/IMAPTransporterClass.md#host)
    | *mandatory* | +| [](../API/IMAPTransporterClass.md#logfile)
    | なし | +| .**password** : Text
    サーバーとの認証のためのユーザーパスワード。 *[IMAP transporter](#imap-transporter-オブジェクト)* オブジェクトには返されません。 | なし | +| [](../API/IMAPTransporterClass.md#port)
    | 993 | +| [](../API/IMAPTransporterClass.md#user)
    | なし | > **警告**: 定義されたタイムアウトが、サーバータイムアウトより短いようにしてください。そうでない場合、クライアントタイムアウトは無意味になります。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md index a46a17bbcb8e36..29fcdda6043851 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md @@ -16,35 +16,35 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ------------- | ------- | :-: | ----------------------------- | -| processNumber | Integer | → | Process number | -| 戻り値 | Object | ← | Information about the process | +| 引数 | 型 | | 説明 | +| ------------- | ------- | :-: | -------------- | +| processNumber | Integer | → | Process number | +| 戻り値 | Object | ← | プロセスに関する情報 | #### 説明 -The `Process info` command returns an object providing detailed information about process whose number you pass in *processNumber*. If you pass an incorrect process number, the command returns a null object. +`Process info` コマンドは、*processNumber* 引数にプロセス番号を渡したプロセスについての詳細な情報を提供するオブジェクトを返します。 正しくないプロセス番号を渡した場合、コマンドはnull オブジェクトを返します。 戻り値のオブジェクトには、以下のプロパティが格納されています: -| プロパティ | 型 | 説明 | -| ---------------- | --------------------------------------- | -------------------------------------------------------------------------------- | -| cpuTime | Real | Running time (seconds) | -| cpuUsage | Real | Percentage of time devoted to this process (between 0 and 1) | -| creationDateTime | Text (Date ISO 8601) | Date and time of process creation | -| ID | Integer | Process unique ID | -| name | Text | プロセス名 | -| number | Integer | Process number | -| プリエンプティブ | Boolean | True if run preemptive, false otherwise | -| sessionID | Text | Session UUID | -| state | Integer | Current status. Possible values: see below | -| systemID | Text | ID for the user process, 4D process or spare process | -| type | Integer | Running process type. Possible values: see below | -| visible | Boolean | True if visible, false otherwise | - -- Possible values for "state": +| プロパティ | 型 | 説明 | +| ---------------- | --------------------------------------- | ---------------------------------------------------- | +| cpuTime | Real | 実行時間(秒) | +| cpuUsage | Real | このプロセスに割り当てられてる時間のパーセント(0 から1 の間) | +| creationDateTime | Text (Date ISO 8601) | プロセス作成の日時 | +| ID | Integer | プロセス固有のID | +| name | Text | プロセス名 | +| number | Integer | Process number | +| プリエンプティブ | Boolean | プリエンプティブに実行可能ならTrue、それ以外の場合にはfalse | +| sessionID | Text | セッションUUID | +| state | Integer | 現在の状態。 取り得る値: 以下を参照のこと | +| systemID | Text | ユーザープロセス、4D プロセス、またはスペアプロセスのID | +| type | Integer | 実行中のプロセスタイプ。 取り得る値: 以下を参照のこと | +| visible | Boolean | 表示であればTrue、それ以外はFalse | + +- "state" の取り得る値: | 定数 | 値 | | ------------------------- | ---- | @@ -57,7 +57,7 @@ The `Process info` command returns a | Waiting for internal flag | 4 | | Paused | 5 | -- Possible values for "type": +- "type" の取り得る値: | 定数 | 値 | | ----------------------------- | --- | @@ -118,11 +118,11 @@ The `Process info` command returns a :::note -4D's internal processes have a negative type value and processes generated by the user have a positive value. Worker processes launched by user have type 5. +4D の内部プロセスのtype は負の値を持ち、ユーザーによって生成されたプロセスのtype は正の値を持ちます。 ユーザーによってローンチされたワーカープロセスのtype は5 です。 ::: -Here is an example of output object: +これが出力されたオブジェクトの一例です: ```json @@ -145,14 +145,13 @@ Here is an example of output object: #### 例題 -You want to know if the process is preemptive: +プロセスがプリエンプティブかどうかを調べたい場合を考えます: ```4d var $preemptive : Boolean $preemptive:=Process info(Current process).preemptive - ``` #### 参照 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/process-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/process-number.md index 9b2b8d6541938a..dee361509e4bdb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/process-number.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/process-number.md @@ -9,30 +9,30 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ---- | ------- | - | -------------------------------------------------------- | -| name | Text | → | Name of process for which to retrieve the process number | -| id | Text | → | ID of process for which to retrieve the process number | -| \* | 演算子 | → | Return the process number from the server | -| 戻り値 | Integer | ← | Process number | +| 引数 | 型 | | 説明 | +| ---- | ------- | - | ------------------- | +| name | Text | → | プロセス番号を取得したいプロセスの名前 | +| id | Text | → | プロセス番号を取得したいプロセスのID | +| \* | 演算子 | → | サーバーからプロセス番号を返す | +| 戻り値 | Integer | ← | Process number |
    履歴 -| リリース | 内容 | -| ----- | ----------------------- | -| 20 R7 | Support of id parameter | +| リリース | 内容 | +| ----- | ---------- | +| 20 R7 | id 引数のサポート |
    #### 説明 -`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter. If no process is found, `Process number` returns 0. +`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter`Process number` returns the number of the process whose *name* or *id* you pass in the first parameter`Process number` コマンドは第一引数*name* または *id* に渡した名前またはID を持つプロセスの番号を返します。 プロセスが見つからない場合、`Process number` は0 を返します。 プロセスが見つからない場合、`Process number` は0 を返します。 プロセスが見つからない場合、`Process number` は0 を返します。 プロセスが見つからない場合、`Process number` は0 を返します。 -The optional parameter \* allows you to retrieve, from a remote 4D, the number of a process that is executed on the server. In this case, the returned value is negative. This option is especially useful when using the [GET PROCESS VARIABLE](../commands-legacy/get-process-variable.md), [SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) and [VARIABLE TO VARIABLE](../commands-legacy/variable-to-variable.md) commands. +オプションの \* 引数を渡すと、サーバー上で実行中のプロセス番号をリモートの4D から取得することができます。 この場合、返される値は負の値になります。 このオプションは特に[GET PROCESS VARIABLE](../commands-legacy/get-process-variable.md)、 [SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) および [VARIABLE TO VARIABLE](../commands-legacy/variable-to-variable.md) コマンドを使用する場合などに有用です。 この場合、返される値は負の値になります。 このオプションは特に[GET PROCESS VARIABLE](../commands-legacy/get-process-variable.md)、 [SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) および [VARIABLE TO VARIABLE](../commands-legacy/variable-to-variable.md) コマンドを使用する場合などに有用です。 この場合、返される値は負の値になります。 このオプションは特に[GET PROCESS VARIABLE](../commands-legacy/get-process-variable.md)、 [SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) および [VARIABLE TO VARIABLE](../commands-legacy/variable-to-variable.md) コマンドを使用する場合などに有用です。 -If the command is executed with the \* parameter from a process on the server machine, the returned value is positive. +このコマンドが\* 引数付きでサーバーマシン上で実行された場合、返された値は正の値になります。 #### 参照 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md index 4e42454fd8e371..cf3d66008aa2f5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md @@ -16,16 +16,16 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| --------- | ------- | :-: | ----------------------------- | -| sessionID | Integer | → | セッションID | -| 戻り値 | Object | ← | Information about the session | +| 引数 | 型 | | 説明 | +| --------- | ------- | :-: | ----------- | +| sessionID | Integer | → | セッションID | +| 戻り値 | Object | ← | セッションに関する情報 | #### 説明 -The `Session info` command returns an object describing the session whose ID you pass in the *sessionID* parameter.. If you pass an invalid *sessionID*, the command returns a null object. +`Session info` コマンドは、*sessionID* 引数に渡したID を持つセッションの詳細を記述したオブジェクトを返します。 *sessionID* 引数に無効なID を渡した場合、コマンドはnull オブジェクトを返します。 *sessionID* 引数に無効なID を渡した場合、コマンドはnull オブジェクトを返します。 *sessionID* 引数に無効なID を渡した場合、コマンドはnull オブジェクトを返します。 *sessionID* 引数に無効なID を渡した場合、コマンドはnull オブジェクトを返します。 戻り値のオブジェクトには、以下のプロパティが格納されています: @@ -39,16 +39,16 @@ The `Session info` command returns a | hostType | Text (enum) | Host type. Possible values: "windows", "mac", "browser" | | creationDateTime | Text (Date ISO 8601) | Date and time of connection of the remote machine | | state | Text (enum) | Session state. Possible values: "active", "postponed", "sleeping" | -| ID | Text | Session UUID | +| ID | Text | セッションUUID | | persistentID | Text | セッションの永続的な ID | :::note -This command returns the [`.info`](../API/SessionClass.md#info) property of the *sessionID* session. To get information about the current session, you can directly call `Session.info`. +コマンドは*sessionID* 引数にID を渡したセッションの[`.info`](../API/SessionClass.md#info) プロパティを返します。 カレントのセッションに関する情報を取得する場合、`Session.info` を直接呼び出すことができます。 カレントのセッションに関する情報を取得する場合、`Session.info` を直接呼び出すことができます。 カレントのセッションに関する情報を取得する場合、`Session.info` を直接呼び出すことができます。 カレントのセッションに関する情報を取得する場合、`Session.info` を直接呼び出すことができます。 ::: -Here is an example of output object: +これが出力されたオブジェクトの一例です: ```json diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/session.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/session.md index a048e5735eb3aa..a958556686fa8d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/session.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/session.md @@ -47,7 +47,7 @@ Webセッションの `Session` オブジェクトは、どの Webプロセス - モバイルリクエスト用の [`On Mobile App Authentication`](https://developer.4d.com/go-mobile/docs/4d/on-mobile-app-authentication) と [`On Mobile App Action`](https://developer.4d.com/go-mobile/docs/4d/on-mobile-app-action) データベースメソッド - [RESTリクエストで呼び出された](../REST/ClassFunctions.md) ORDA関数。 -For more information on web user sessions, please refer to the [Web Server Sessions](../WebServer/sessions.md) section. +Web ユーザーセッションに関する詳細な情報については、[Web Server Sessions](../WebServer/sessions.md) の章を参照してください。 #### リモートクライアントセッション @@ -63,7 +63,7 @@ For more information on web user sessions, please refer to the [Web Server Sessi すべてのストアドプロシージャープロセスは、同じ仮想ユーザーセッションを共有します。 ストアドプロシージャーの `Session` オブジェクトは、次のいずれかから利用できます: -- methods called with the [`Execute on server`](../commands-legacy/execute-on-server.md) command, +- [`Execute on server`](../commands-legacy/execute-on-server.md) コマンドで呼び出されたメソッド - `On Server Startup`、`On Server Shutdown`、`On Backup Startup`、`On Backup Shutdown`、および `On System event` データベースメソッド ストアドプロシージャーの仮想ユーザーセッションに関する情報については、[4D Serverと4Dランゲージ](https://doc.4d.com/4Dv20R5/4D/20-R5/4D-Server-and-the-4D-Language.300-6932726.ja.html) のページを参照ください。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md index 79c6e7d356c3bd..2090bd38f6f194 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md @@ -9,44 +9,44 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ------------ | ---------- | - | --------------------- | -| methodsArray | Text array | → | Array of method names | +| 引数 | 型 | | 説明 | +| ------------ | ------ | - | -------- | +| methodsArray | テキスト配列 | → | メソッド名の配列 | -*This command is not thread-safe, it cannot be used in preemptive code.* +*このコマンドはスレッドセーフではないので、プリエンプティブなコードでは使用できません。* #### 説明 The **SET ALLOWED METHODS** command designates the project methods that can be entered via the application. -4D includes a security mechanism that filters enterable project methods from the following contexts: +4Dには、以下のコンテキストからの呼び出し可能なプロジェクトメソッドをフィルターするセキュリティ機構が含まれています: -- The formula editor - allowed methods appear at the end of the list of default commands and can be used in formulas (see section *Description of formula editor*). -- The label editor - the allowed methods are listed in the **Apply** menu if they are also shared with the component (see section *Description of label editor*). -- Formulas inserted in styled text areas or 4D Write Pro documents through the [ST INSERT EXPRESSION](../commands-legacy/st-insert-expression.md) command - disallowed methods are automatically rejected. -- 4D View Pro documents - by default, if the [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) command has never been called during the session, 4D View Pro formulas only accept methods defined by **SET ALLOWED METHODS**. However, using [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) is recommended. See [Declaring allowed method](../ViewPro/formulas.md#declaring-allowed-methods). +- フォーミュラーエディター - 許可されたメソッドはデフォルトコマンドの一覧の最後に表示され、フォーミュラー内で使用することができます(*フォーミュラエディター* の章を参照してください)。 +- ラベルエディター - 許可されたメソッドがコンポーネントとも共有されていた場合、メソッドは**許可**メニュー内に表示されます(*ラベルエディターの詳細* の章を参照してください)。 +- [ST INSERT EXPRESSION](../commands-legacy/st-insert-expression.md) コマンドを通してスタイル付きテキストエリアまたは4D Write Pro ドキュメントに挿入されたフォーミュラ - 許可されていないメソッドは自動的に排除されます。 +- 4D View Pro ドキュメント - デフォルトで、[`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) コマンドがセッション中に一度も実行されていない場合、4D View Pro フォーミュラーは**SET ALLOWED METHODS** で許可されたメソッドは使用できます。 ですが、[`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) コマンドの使用が推奨されます。 [許可されたメソッドの宣言](../ViewPro/formulas.md#許可されたメソッドの宣言) を参照してください。 ですが、[`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) コマンドの使用が推奨されます。 [許可されたメソッドの宣言](../ViewPro/formulas.md#許可されたメソッドの宣言) を参照してください。 ですが、[`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) コマンドの使用が推奨されます。 [許可されたメソッドの宣言](../ViewPro/formulas.md#許可されたメソッドの宣言) を参照してください。 ですが、[`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) コマンドの使用が推奨されます。 [許可されたメソッドの宣言](../ViewPro/formulas.md#許可されたメソッドの宣言) を参照してください。 -By default, if you do not use the **SET ALLOWED METHODS** command, no method is enterable (using an unauthorized method in an expression causes an error). +デフォルトでは、**SET ALLOWED METHODS** コマンドを使用しない場合、入力可能なメソッドはありません (許可されていないメソッドを式の中で使用するとエラーが発生します)。 -In the *methodsArray* parameter, pass the name of an array containing the list of methods to allow. The array must have been set previously. +*methodsArray* 引数には、許可したいメソッドの一覧を格納した名前の配列を渡します。 この配列は事前に定義しておかなければなりません。 この配列は事前に定義しておかなければなりません。 この配列は事前に定義しておかなければなりません。 この配列は事前に定義しておかなければなりません。 -You can use the wildcard character (@) in method names to define one or more authorized method groups. +メソッド名にワイルドカード記号 (@) を使用し、許可されるメソッドグループを複数定義することができます。 -If you would like the user to be able to call 4D commands that are unauthorized by default or plug-in commands, you must use specific methods that handle these commands. +デフォルトとして許可されていない4Dコマンドやプラグインコマンドをユーザーが呼び出せるようにしたい場合、これらのコマンドを取り扱う特定のメソッドを使用しなくてはなりません。 -**Note:** Formula filtering access can be disabled for all users or for the Designer and Administrator via [an option on the "Security" page of the Settings](../settings/security.md#options). If the "Disabled for all" option is checked, the **SET ALLOWED METHODS** command will have no effect. +**注**: [データベース設定の"セキュリティ"ページのオプション](../settings/security.md#オプション) によって、すべてのユーザーまたはDesignerとAdministratorに対し、フォーミュラーでのフィルタリングアクセスを無効にすることができるようになりました。 "すべてのユーザーを制限する"オプションが チェックされていると、**SET ALLOWED METHODS** コマンドは効果がありません。 "すべてのユーザーを制限する"オプションが チェックされていると、**SET ALLOWED METHODS** コマンドは効果がありません。 "すべてのユーザーを制限する"オプションが チェックされていると、**SET ALLOWED METHODS** コマンドは効果がありません。 "すべてのユーザーを制限する"オプションが チェックされていると、**SET ALLOWED METHODS** コマンドは効果がありません。 :::warning -This command only filters the **input** of methods, not their **execution**. It does not control the execution of formulas created outside the application. +このコマンドはメソッドの**入力** を制限するもので、**実行** を制限するものではありません。 これはアプリケーション外で作成されたフォーミュラの実行は管理しません。 ::: #### 例題 -This example authorizes all methods starting with “formula” and the “Total\_general” method to be entered by the user in protected contexts: +この例は、名前が“formula”で始まるすべてのメソッドと、“Total\_general” メソッドを、保護されたコンテキスト下においてユーザーによって入力できるようにします: ```4d  ARRAY TEXT(methodsArray;2) diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/set-window-document-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/set-window-document-icon.md index f2a71e885c1103..3eb5a203dd50f4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/set-window-document-icon.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/set-window-document-icon.md @@ -8,11 +8,11 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| ------ | -------------------------------------------------- | - | ------------------------ | -| winRef | Integer | → | Window reference number | -| image | Picture | → | Custom icon | -| file | 4D.File, 4D.Folder | → | File path or folder path | +| 引数 | 型 | | 説明 | +| ------ | -------------------------------------------------- | - | --------------- | +| winRef | Integer | → | ウィンドウ参照番号 | +| image | Picture | → | カスタムアイコン | +| file | 4D.File, 4D.Folder | → | ファイルパスまたはフォルダパス | @@ -26,47 +26,47 @@ displayed_sidebar: docs #### 説明 -The `SET WINDOW DOCUMENT ICON` command allows you to define an icon for windows in multi-window applications using either an *image* and/or *file* with the window reference *winRef*. The icon will be visible within the window itself and on the windows taskbar to help users identify and navigate different windows. +`SET WINDOW DOCUMENT ICON` コマンドは、*winRef* ウィンドウ参照の引数に合わせて、*image* または *file* 引数を使用してマルチウィンドウアプリケーションにおいてウィンドウのアイコンを定義することができます。 アイコンはウィンドウ自身とウィンドウタスクバーにおいて表示され、ユーザーが異なるウィンドウを識別して切り替えるのを助けます。 アイコンはウィンドウ自身とウィンドウタスクバーにおいて表示され、ユーザーが異なるウィンドウを識別して切り替えるのを助けます。 アイコンはウィンドウ自身とウィンドウタスクバーにおいて表示され、ユーザーが異なるウィンドウを識別して切り替えるのを助けます。 アイコンはウィンドウ自身とウィンドウタスクバーにおいて表示され、ユーザーが異なるウィンドウを識別して切り替えるのを助けます。 -In the case of an MDI application on Windows, you can pass `-1` in *winRef* to set the icon of the main window. In other contexts (macOS or [SDI application](../Menus/sdi.md) on Windows), using -1 does nothing. +Windows でのMDI アプリケーションの場合、*winRef* 引数に`-1` を渡すことでメインウィンドウのアイコンを設定することができます。 この他のコンテキスト(Windows での[SDI アプリケーション](../Menus/sdi.md)またはmacOS) において-1 を使用しても何も起きません。 この他のコンテキスト(Windows での[SDI アプリケーション](../Menus/sdi.md)またはmacOS) において-1 を使用しても何も起きません。 この他のコンテキスト(Windows での[SDI アプリケーション](../Menus/sdi.md)またはmacOS) において-1 を使用しても何も起きません。 この他のコンテキスト(Windows での[SDI アプリケーション](../Menus/sdi.md)またはmacOS) において-1 を使用しても何も起きません。 -- If only *file* is passed, the window uses the icon corresponding to the file type and the file’s path is displayed in the window’s menu. -- If only *image* is passed, 4D does not show the path and the passed image is used for the window icon. -- If both *file* and *image* are passed, the file’s path is displayed in the window’s menu and the passed image is used for the window icon. -- If only *winRef* is passed or *image* is empty, the icon is removed on macOS and the default icon is displayed on Windows (application icon). +- *file* 引数のみが渡された場合、ウィンドウはファイルタイプに対応したアイコンを使用し、ウィンドウのメニューにはファイルのパスが表示されます。 +- *image* 引数のみが渡された場合、4D はパスを表示せず、渡された画像がウィンドウアイコンとして使用されます。 +- *file* および *image* 引数の両方が渡された場合、ウィンドウのメニューにはファイルのパスが表示され、渡された画像がウィンドウのアイコンとして使用されます。 +- *winRef* のみが渡された場合、あるいは*image* 引数が空の場合、macOS ではアイコンが削除され、Windows ではデフォルトアイコン(アプリケーションアイコン)が表示されます。 #### 例題 -In this example, we want to create four windows: +この例題では、4つのウィンドウを作成したい場合を考えます: -1. Use the application icon on Windows and no icon on macOS (default state when no *image* or *file* is used). -2. Use a "user" icon. -3. Associate a document with the window (this uses its file type icon). -4. Customize the icon associated with the document. +1. Windows ではアプリケーションアイコンを使用し、macOs ではアイコンなしにする(*image* 引数も *file* 引数も使用しない場合のデフォルトの状態)。 +2. "user"アイコンを使用する +3. ウィンドウにドキュメントを割り当てる(これはそのファイルタイプのアイコンを使用します) +4. ドキュメントに割り当てられたアイコンをカスタマイズする ```4d var $winRef : Integer var $userImage : Picture var $file : 4D.File - // 1- Open "Contact" form + // 1- "Contact" フォームを開く $winRef:=Open form window("Contact";Plain form window+Form has no menu bar) SET WINDOW DOCUMENT ICON($winRef) DIALOG("Contact";*) - // 2- Open "Contact" form with "user" icon + // 2- "Contact" を"user" アイコンで開く $winRef:=Open form window("Contact";Plain form window+Form has no menu bar) BLOB TO PICTURE(File("/RESOURCES/icon/user.png").getContent();$userImage) SET WINDOW DOCUMENT ICON($winRef;$userImage) DIALOG("Contact";*) - // 3- Open "Contact" form associated with the document "user" + // 3- "Contact" フォームに"user" ドキュメントを割り当てて開く $winRef:=Open form window("Contact";Plain form window+Form has no menu bar) $file:=File("/RESOURCES/files/user.txt") SET WINDOW DOCUMENT ICON($winRef;$file) DIALOG("Contact";*) - // 4- Open "Contact" form associated with the document "user" with "user" icon + // 4- "Contact" フォームに"user" ドキュメントと"user" アイコンを割り当てる $winRef:=Open form window("Contact";Plain form window+Form has no menu bar) BLOB TO PICTURE(File("/RESOURCES/icon/user.png").getContent();$userImage) $file:=File("/RESOURCES/files/user.txt") diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/smtp-new-transporter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/smtp-new-transporter.md index 675ce032101c03..cf652aac4c8c3f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/smtp-new-transporter.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/smtp-new-transporter.md @@ -11,7 +11,7 @@ displayed_sidebar: docs | 引数 | 型 | | 説明 | | ------ | ---------------------------------- | - | --------------------------------------------------------------------------------- | | server | Object | → | メールサーバー情報 | -| 戻り値 | 4D.SMTPTransporter | ← | [SMTP transporter object](../API/SMTPTransporterClass.md#smtp-transporter-object) | +| 戻り値 | 4D.SMTPTransporter | ← | [SMTP transporter オブジェクト](../API/SMTPTransporterClass.md#smtp-transporter-object) | @@ -27,14 +27,14 @@ displayed_sidebar: docs #### 説明 -The `SMTP New transporter` command configures a new SMTP connection according to the *server* parameter and returns a new [SMTP transporter object](../API/SMTPTransporterClass.md#smtp-transporter-object) object. 返された transporter オブジェクトは、通常メールの送信に使用されます。 +`SMTP New transporter` コマンドは、新規のSMTP 接続を設定します。このSMTP 接続は*server* 引数の指定に応じて設定され、コマンドは新しい[SMTP transporter オブジェクト](../API/SMTPTransporterClass.md#smtp-transporter-object) オブジェクトを返します。 返された transporter オブジェクトは、通常メールの送信に使用されます。 返された transporter オブジェクトは、通常メールの送信に使用されます。 返された transporter オブジェクトは、通常メールの送信に使用されます。 -> このコマンドは SMTPサーバーとの接続を開始しません。 The SMTP connection is actually opened when the [`.send()`](../API/SMTPTransporterClass.md#send) function is executed. +> このコマンドは SMTPサーバーとの接続を開始しません。 このコマンドは SMTPサーバーとの接続を開始しません。 このコマンドは SMTPサーバーとの接続を開始しません。 SMTP 接続は、実際には[`.send()`](../API/SMTPTransporterClass.md#send) 関数が実行されたときに開かれます。 > > SMTP接続は、以下の場合に自動的に閉じられます: > -> - when the transporter object is destroyed if the [`keepAlive`](../API/SMTPTransporterClass.md#keepalive) property is true (default), -> - after each [`.send()`](../API/SMTPTransporterClass.md#send) function execution if the [`keepAlive`](../API/SMTPTransporterClass.md#keepalive) property is set to false. +> - [`.keepAlive`](#keepalive) プロパティが true (デフォルト) の場合に、transporter オブジェクトが消去された時。 +> - [`keepAlive`](../API/SMTPTransporterClass.md#keepalive) プロパティがfalse に設定されている場合に、[`.send()`](../API/SMTPTransporterClass.md#send) 関数が実行された後。 *server* 引数として、以下のプロパティを持つオブジェクトを渡します: @@ -56,7 +56,7 @@ The `SMTP New transporter` command -| 引数 | 型 | | 説明 | -| --- | ------ | - | ------------------------- | -| 戻り値 | Object | ← | Current element or object | +| 引数 | 型 | | 説明 | +| --- | ------ | - | ---------------- | +| 戻り値 | Object | ← | カレントの要素またはオブジェクト | #### 説明 -The `This` command returns a reference to the currently processed object. +`This` コマンドは現在処理中のオブジェクトへの参照を返します。 `This` の値は、呼ばれ方によって決まります。 This の値は実行時に代入により設定することはできません。また、呼び出されるたびに違う値となりえます。 -This command can be used in different contexts, described below. Within these contexts, you will access object/collection element properties or entity attributes through **This.<*propertyPath*\>**. For example, *This.name* or *This.employer.lastName* are valid pathes to object, element or entity properties. +このコマンドは以下で説明するように、異なるコンテキストで使用することができます。 これらのコンテキストの中においては、**This.<*propertyPath*\>** を通してオブジェクト/コレクションの要素プロパティやエンティティの属性にアクセスすることができます。 例えば、*This.name* や*This.employer.lastName* はオブジェクト、要素やエンティティプロパティへの有効なパスとなります。 -In any other context, the command returns **Null**. +これら以外のコンテキストにおいては、コマンドは**Null** を返します。 #### クラス関数 @@ -45,7 +45,7 @@ $o:=cs.ob.new() $val:=$o.a //42 ``` -> コンストラクター内で [Super](#super) キーワードを使ってスーパークラスのコンストラクターを呼び出す場合、必ず `This` より先にスーパークラスのコンストラクターを呼ぶ必要があることに留意してください。順番を違えるとエラーが生成されます。 こちらの [例題](#例題-1) を参照ください。 See [this example](super.md#example-1). +> コンストラクター内で [Super](#super) キーワードを使ってスーパークラスのコンストラクターを呼び出す場合、必ず `This` より先にスーパークラスのコンストラクターを呼ぶ必要があることに留意してください。順番を違えるとエラーが生成されます。 こちらの [例題](#例題-1) を参照ください。 こちらの [例題](super.md#例題-1) を参照ください。 基本的に、`This` はメソッドの呼び出し元のオブジェクトを指します。 @@ -70,20 +70,20 @@ $val:=$o.f() //8 #### フォーミュラオブジェクト -In the context of the execution of a formula object created by the [Formula](formula.md) or [Formula from string](formula-from-string.md) commands, `This` returns a reference to the object currently processed by the formula. +[Formula](formula.md) あるいは [Formula from string](formula-from-string.md) コマンドで作成されたフォーミュラオブジェクトの実行コンテキストにおいては、`This` はフォーミュラによって現在処理されているオブジェクトへの参照を返します。 -For example, you want to use a project method as a formula encapsulated in an object: +例えば、プロジェクトをオブジェクトのカプセル化されたフォーミュラとして使用したい場合を考えます: ```4d var $person : Object := New object $person.firstName:="John" $person.lastName:="Smith" $person.greeting:=Formula(Greeting) - $g:=$person.greeting("hello") // returns "hello John Smith" - $g:=$person.greeting("hi") // returns "hi John Smith" + $g:=$person.greeting("hello") // "hello John Smith" を返す + $g:=$person.greeting("hi") // "hi John Smith" を返す ``` -With the *Greeting* project method: +*Greeting* プロジェクトメソッドの中身は以下のようになっています: ```4d #DECLARE($greeting : Text) : Text @@ -92,17 +92,17 @@ With the *Greeting* project method: #### リストボックス -In the context of a list box associated to a collection or an entity selection, during the [`On Display Detail`](../Events/onDisplayDetail.md) or the [`On Data Change`](../Events/onDataChange.md) events, `This` returns a reference to the collection element or entity accessed by the list box to display the current row. +コレクションまたはエンティティセレクションに割り当てられたリストボックスのコンテキストにおいては、[`On Display Detail`](../Events/onDisplayDetail.md) あるいは [`On Data Change`](../Events/onDataChange.md) イベントの最中において、は現在の行を表示するためにリストボックス割り当てられたコレクション要素またはエンティティへの参照を返します。 :::note -If you use a collection of scalar values in a list box, 4D creates an object for each element with a single **value** property. Thus, the element value is returned by the **This.value** non-assignable expression. +スカラー値のコレクションをリストボックスに対して使用した場合、4D はそれぞれの要素に対して、単一のプロパティ**value** を持つオブジェクトを作成します。 Thus, the element value is returned by the **This.value** non-assignable expression. そのため、要素の値は**This.value** という代入不可の式によって返されます。 ::: #### 例題 1 -A collection of objects, each with this structure: +以下のような構造を持つオブジェクトのコレクションがある場合を考えます: ```json { @@ -127,14 +127,14 @@ A collection of objects, each with this structure: ``` -In the list box, each column refers to one of the properties of the object, either directly (This.name), indirectly (This.employees.length), or through an expression (*getPicture*) in which can be used directly. The list box looks like: +リストボックス内では、各カラムはオブジェクトのプロパティいずれか一つを、直接的(This.name) に、あるいは間接的(This.employees.length) に、あるいは直接使用できる式(*getPicture*) を通して参照しています。 このリストボックスは、以下のようになります: このリストボックスは、以下のようになります: ![](../assets/en/commands/pict3776706.en.png) -The *GetPicture* project method is automatically executed during the **On display detail** event: +*GetPicture* プロジェクトメソッドは、**On display detail** イベント中に自動的に実行されます: ```4d - //GetPicture Method + //GetPicture メソッド #DECLARE -> $genderPict : Picture If(This.isFemale) $genderPict:=Form.genericFemaleImage @@ -143,34 +143,34 @@ The *GetPicture* project method is automatically executed during the **On displa End if ``` -Once the form is executed, you can see the result: +フォームを実行すると、以下のような結果が表示されます: ![](../assets/en/commands/pict3783169.en.png) #### 例題 2 -You want to display entities from the following structure in a list box: +以下のようなストラクチャーからのエンティティをリストボックスに表示したい場合を考えます: ![](../assets/en/commands/pict3872836.en.png) -You build a list box of the "Collection or entity selection" type with the following definition: +その場合、以下のような定義を持つ"コレクションまたはエンティティセレクション"型のリストボックスを作成します: ![](../assets/en/commands/pict3872844.en.png) 注: -- *This.ID*, *This.Title* and *This.Date* directly refers to the corresponding attributes in the ds.Event dataclass. -- *This.meetings* is a related attribute (based upon the One To Many relation name) that returns an entity selection of the ds.Meeting dataclass. -- **Form.eventList** is the entity selection that is attached to the list box. The initialization code can be put in the on load form event: +- *This.ID*、*This.Title* および *This.Date* は、ds.Event データクラス内の対応する属性を直接参照します。 +- *This.meetings* は(1対N リレーション名に基づいた)リレーション属性であり、ds.Meeting データクラスのエンティティセレクションを返します。 +- **Form.eventList** はリストボックスに割り当てられているエンティティセレクションです。 初期化コードは、On Load フォームイベント内で以下のように書くことができます: 初期化コードは、On Load フォームイベント内で以下のように書くことができます: ```4d Case of :(Form event code=On Load) - Form.eventList:=ds.Event.all() //returns an entity selection with all entities + Form.eventList:=ds.Event.all() //全てのエンティティを格納したエンティティセレクションを返す End case ``` -Once the form is executed, the list box is automatically filled with the entity selection: +フォームが実行されると、リストボックスにはエンティティセレクションが入った状態で表示されます: ![](../assets/en/commands/pict3872875.en.png) diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/use-entity-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/use-entity-selection.md index 2dc0fd7758d0f8..1b60f7c8013bcd 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/use-entity-selection.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/use-entity-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### 説明 -The `USE ENTITY SELECTION` command updates the current selection of the table matching the dataclass of the *entitySelection* parameter, according to the content of the entity selection. +`USE ENTITY SELECTION` コマンドは、*entitySelection* 引数のデータクラスに合致するテーブルのカレントセレクションを、渡したエンティティセレクションの内容で更新します。 [リモートデータストア](../ORDA/remoteDatastores.md) の場合は、このコマンドは使用できません。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/web-server-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/web-server-list.md index 26a265e12f6bf5..342f4650eda288 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/web-server-list.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/web-server-list.md @@ -8,9 +8,9 @@ displayed_sidebar: docs -| 引数 | 型 | | 説明 | -| --- | ---------- | - | ---------------------------------------------- | -| 戻り値 | Collection | ← | Collection of the available Web Server objects | +| 引数 | 型 | | 説明 | +| --- | ---------- | - | -------------------------- | +| 戻り値 | Collection | ← | 利用可能なWeb サーバーオブジェクトのコレクション | @@ -33,9 +33,9 @@ displayed_sidebar: docs サーバーが実際に実行中か否かに関わらず、`WEB Server list` コマンドは利用可能な Webサーバーをすべて返します。 -> デフォルトの Webサーバーオブジェクトは、4D 起動時に自動的にロードされます。 On the other hand, each component Web server that you want to use must be instantiated using the [`WEB Server`](web-server.md) command. +> デフォルトの Webサーバーオブジェクトは、4D 起動時に自動的にロードされます。 一方で、使用したいコンポーネントのWeb サーバーは、[`WEB Server`](web-server.md) コマンドによってそれぞれインスタンス化されている必要があります。 -You can use the [.name](../API/WebServerClass.md#name) property of the Web server object to identify the project or component to which each Web server object in the list is attached. +Webサーバオブジェクトの [.name](../API/WebServerClass.md#name) プロパティを使用することで、リスト内の各 Webサーバーオブジェクトが関連づけられているデータベースまたはコンポーネントを識別することができます。 #### 例題 @@ -47,7 +47,7 @@ You can use the [.name](../API/WebServerClass.md#name) property of the Web serve $wSList:=WEB Server list $vRun:=$wSList.countValues(True;"isRunning") - ALERT(String($vRun)+" web server(s) running on "+String($wSList.length)+" available.") + ALERT(String($wSList.length)+" 個のリストの中で、"+String($vRun)+" 個の Web サーバーが実行中です。") ``` #### 参照 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md index 7cbd5b845487e6..01bb277fab8cf4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md @@ -15,7 +15,7 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* +*このコマンドはスレッドセーフではないので、プリエンプティブなコードでは使用できません。*
    履歴 @@ -38,7 +38,7 @@ displayed_sidebar: docs | `Web server host database` | 2 | コンポーネントのホストデータベースの Webサーバー | | `Web server receiving request` | 3 | リクエストを受け取った Webサーバー (ターゲットWebサーバー) | -The **returned Web server object** contains the current values of the [Web server properties](../API/WebServerClass.md). +**返されたWeb サーバーオブジェクト** には[Web server プロパティ](../API/WebServerClass.md) のカレントのプロパティが格納されています。 #### 例題 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/zip-read-archive.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/zip-read-archive.md index 75fb44afc829c9..1057d12b8bdc9d 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/zip-read-archive.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R7/commands/zip-read-archive.md @@ -28,7 +28,7 @@ displayed_sidebar: docs `ZIP Read archive` コマンドは、*zipFile* のコンテンツを取得し、`4D.ZipArchive` オブジェクト形式で返します。 -> このコマンドは ZIPアーカイブを展開することはしません。その中身に関する情報を提供するのみです。 To extract the contents of an archive, you need to use methods such as [file.copyTo()](../API/Document.md#copyto) or [folder.copyTo()](../API/Directory.md#copyto). +> このコマンドは ZIPアーカイブを展開することはしません。その中身に関する情報を提供するのみです。 アーカイブの中身を取り出すためには、[file.copyTo()](../API/Document.md#copyto) や [folder.copyTo()](../API/Directory.md#copyto)などのメソッドを使用する必要があります。 *zipFile* 引数として、圧縮された ZIPアーカイブを参照している `4D.File` オブジェクトを渡します。 ターゲットのアーカイブファイルは `ZIP Read archive` が実行を終えるまで (全コンテンツ/参照が取得/解放されるまで) は開いた状態となり、その後自動的に閉じられます。 @@ -36,7 +36,7 @@ displayed_sidebar: docs **アーカイブオブジェクト** -The returned `4D.ZipArchive` object contains a single [`root`](../API/ZipArchiveClass.md#root) property whose value is a `4D.ZipFolder` object. このフォルダーは ZIPアーカイブの全コンテンツを表します。 +返されたオブジェクトは単一の[`root`](../API/ZipArchiveClass.md#root) プロパティだけを格納しており、その値は`4D.ZipFolder` オブジェクトです。 このフォルダーは ZIPアーカイブの全コンテンツを表します。 このフォルダーは ZIPアーカイブの全コンテンツを表します。 #### 例題 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md index ca5f27bb56e5bb..8bd0b57de71fa0 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md @@ -1018,6 +1018,21 @@ $vSingles:=ds.Person.query("spouse = :1";Null) // 機能しません $vSingles:=ds.Person.query("spouse = null") // 正しいシンタックス ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + + #### コレクションにおける "等しくない" コレクションを含むデータクラス属性内を検索する場合、"*値* と等しくない" 比較演算子 (`#` または `!=`) は、すべてのプロパティが *値* と異なる要素を検索します (ほかの比較演算子とは異なり、少なくとも 1つのプロパティが *値* と異なる要素は検索しません)。 つまり、"Not(プロパティ値が *value* と等しいコレクション要素を検索する)" を検索することと同じです。 たとえば、以下のような エンティティがあるとき: diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/classes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/classes.md index 537ef3d4e171e6..e6209907336579 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/classes.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/classes.md @@ -182,7 +182,7 @@ Function ({$parameterName : type; ...}){->$parameterName : type} :::note -There is no ending keyword for function code. There is no ending keyword for function code. +関数コードにおいては、終了キーワードはありません。 There is no ending keyword for function code. ::: @@ -307,7 +307,7 @@ Class Constructor({$parameterName : type; ...}) :::note -There is no ending keyword for class constructor function code. There is no ending keyword for function code. +クラスコンストラクター関数コードにおいては、終了キーワードはありません。 There is no ending keyword for function code. ::: diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/text.md index 2546154f061cb8..1fc844b35b8103 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/text.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/text.md @@ -51,4 +51,4 @@ title: テキスト
    -[タイプ](properties_Object.md#タイプ) - [オブジェクト名](properties_Object.md#オブジェクト名) - [タイトル](properties_Object.md#タイトル) - [CSSクラス](properties_Object.md#cssクラス) - [左](properties_CoordinatesAndSizing.md#左) - [上](properties_CoordinatesAndSizing.md#上) - [右](properties_CoordinatesAndSizing.md#右) - [下](properties_CoordinatesAndSizing.md#下) - [幅](properties_CoordinatesAndSizing.md#幅) - [高さ](properties_CoordinatesAndSizing.md#高さ) - [角の半径](properties_CoordinatesAndSizing.md#角の半径) - [横方向サイズ変更](properties_ResizingOptions.md#横方向サイズ変更) - [縦方向サイズ変更](properties_ResizingOptions.md#縦方向サイズ変更) - [表示状態](properties_Display.md#表示状態) - [塗りカラー](properties_BackgroundAndBorder.md#背景色塗りカラー) - [境界線スタイル](properties_BackgroundAndBorder.md#境界線スタイル) - [フォント](properties_Text.md#フォント) - [フォントサイズ](properties_Text.md#フォントサイズ) - [太字](properties_Text.md#太字) - [イタリック](properties_Text.md#イタリック) - [下線](properties_Text.md#下線) - [フォントカラー](properties_Text.md#フォントカラー) - [方向](properties_Text.md#方向) - [横揃え](properties_Text.md#横揃え) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/pt/docusaurus-plugin-content-docs/current.json b/i18n/pt/docusaurus-plugin-content-docs/current.json index 8b185ae1ec9606..acb12f712805cd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current.json +++ b/i18n/pt/docusaurus-plugin-content-docs/current.json @@ -512,7 +512,7 @@ "description": "The generated-index page title for category Language in sidebar docs" }, "sidebar.docs.category.4D Environment": { - "message": "4D Environment", + "message": "Ambiente 4D", "description": "The label for category 4D Environment in sidebar docs" }, "sidebar.docs.category.Arrays": { @@ -688,7 +688,7 @@ "description": "The label for category Records in sidebar docs" }, "sidebar.docs.category.Relations": { - "message": "Relations", + "message": "Relações", "description": "The label for category Relations in sidebar docs" }, "sidebar.docs.category.Resources": { @@ -704,11 +704,11 @@ "description": "The label for category SVG in sidebar docs" }, "sidebar.docs.category.Secured Protocol": { - "message": "Secured Protocol", + "message": "Protocolo seguro", "description": "The label for category Secured Protocol in sidebar docs" }, "sidebar.docs.category.Selection": { - "message": "Selection", + "message": "Seleção", "description": "The label for category Selection in sidebar docs" }, "sidebar.docs.category.Sets": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/CollectionClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/CollectionClass.md index 7f79186554c7a1..66a44f1442d4d2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/CollectionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/CollectionClass.md @@ -2585,7 +2585,7 @@ No parâmetro *querySettings*, você pode passar um objeto que contenha placehol | parameters | Object | **Placeholders com nome para os valores** usados na *queryString*. Os valores são expressos como pares de propriedade/valor, em que propriedade é o nome do espaço reservado inserido para um valor na *queryString* (":placeholder") e valor é o valor a ser comparado. Pode combinar marcadores de posição indexados (valores passados diretamente em parâmetros de valor) e valores de marcadores de posição com nome na mesma pesquisa. | | attributes | Object | **Placeholders nomeados para os caminhos de atributos** usados na *queryString*. Os atributos são expressos como pares de propriedade/valor, em que propriedade é o nome do espaço reservado inserido para um caminho de atributo no *queryString* (":placeholder"), e o valor pode ser uma cadeia de caracteres ou uma coleção de cadeias de caracteres. Cada valor é um caminho que pode designar uma propriedade em um objeto da coleção
    Tipo de propriedadeDescrição
    String (cadeia de caracteres)attributePath expresso usando a notação de ponto, por exemplo, "name" ou "user.address.zipCode"
    Coleção de cadeias de caracteresCada cadeia de caracteres da coleção representa um nível de attributePath, por exemplo, \["name"] ou \["user", "address", "zipCode"]. Using a collection allows querying on attributes with names that are not compliant with dot notation, e.g. \["4Dv17.1","en/fr"]
    You can mix indexed placeholders (values directly passed in *value* parameters) and named placeholder values in the same query. | -> Using this parameter is mandatory if you want to query a collection [using a **collection reference** or **object reference**](#object-or-collection-reference-as-value). +> O uso desse parâmetro é obrigatório se você quiser consultar uma coleção [usando uma **referência de coleção** ou **referência de objeto**](#object-or-collection-reference-as-value). #### Exemplo 1 @@ -2678,19 +2678,19 @@ More examples of queries can be found in the `dataClass.query()` page. -| Parâmetro | Tipo | | Descrição | -| ---------- | ----------------------------------------------- | :-------------------------: | --------------------------------------------------------------------------------- | -| formula | 4D. Function | -> | Objecto fórmula | -| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | -| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Value to use as the first argument to the first call of *formula* or *methodName* | -| param | expressão | -> | Parâmetro(s) a transmitir | -| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | +| Parâmetro | Tipo | | Descrição | +| ---------- | ----------------------------------------------- | :-------------------------: | ---------------------------------------------------------------------------------------------- | +| formula | 4D. Function | -> | Objecto fórmula | +| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | +| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Valor a ser usado como primeiro argumento para a primeira chamada de *formula* ou *methodName* | +| param | expressão | -> | Parâmetro(s) a transmitir | +| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | #### Descrição -The `.reduce()` function applies the *formula* or *methodName* callback against an accumulator and each element in the collection (from left to right) to reduce it to a single value. +A função `.reduce()` aplica a chamada de retorno *formula* ou *methodName* em um acumulador e em cada elemento da coleção (da esquerda para a direita) para reduzi-lo a um único valor. > Essa função não modifica a coleção original. @@ -2699,9 +2699,9 @@ Designa-se a chamada de retorno a ser executada para avaliar os elementos da col - *formula* (sintaxe recomendada), um [objecto Formula](FunctionClass.md) que pode encapsular qualquer expressão executável, incluindo funções e métodos projecto; - ou *methodName*, o nome de um método projeto (texto). -The callback takes each collection element and performs any desired operation to accumulate the result into *$1.accumulator*, which is returned in *$1.value*. +O retorno de chamada pega cada elemento da coleção e executa qualquer operação desejada para acumular o resultado em *$1.accumulator*, retornado em *$1.value*. -Pode passar o valor para inicializar o acumulador em *initValue*. If omitted, *$1.accumulator* starts with *Undefined*. +Pode passar o valor para inicializar o acumulador em *initValue*. Se omitido, *$1.accumulator* começa com *Undefined*. A chamada de retorno recebe os seguintes parâmetros: @@ -2711,7 +2711,7 @@ A chamada de retorno recebe os seguintes parâmetros: A chamada de retorno recebe os seguintes parâmetros: -- *$1.accumulator*: value to be modified by the function and which is initialized by *initValue*. +- *$1.accumulator*: valor a ser modificado pela função sendo inicializado por *initValue*. - *$1.stop* (boolean, opcional): **true** para parar o callback do método. O valor retornado é o último calculado. #### Exemplo 1 @@ -2763,19 +2763,19 @@ Com o seguinte método ***Flatten***: -| Parâmetro | Tipo | | Descrição | -| ---------- | ----------------------------------------------- | :-------------------------: | --------------------------------------------------------------------------------- | -| formula | 4D. Function | -> | Objecto fórmula | -| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | -| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Value to use as the first argument to the first call of *formula* or *methodName* | -| param | expressão | -> | Parâmetro(s) a transmitir | -| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | +| Parâmetro | Tipo | | Descrição | +| ---------- | ----------------------------------------------- | :-------------------------: | ---------------------------------------------------------------------------------------------- | +| formula | 4D. Function | -> | Objecto fórmula | +| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | +| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Valor a ser usado como primeiro argumento para a primeira chamada de *formula* ou *methodName* | +| param | expressão | -> | Parâmetro(s) a transmitir | +| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | #### Descrição -The `.reduceRight()` function applies the *formula* or *methodName* callback against an accumulator and each element in the collection (from right to left) to reduce it to a single value. +A função `.reduceRight()` aplica a chamada de retorno *formula* ou *methodName* em um acumulador e em cada elemento da coleção (da direita para a esquerda) para reduzi-lo a um único valor. > Essa função não modifica a coleção original. @@ -2784,9 +2784,9 @@ Designa-se a chamada de retorno a ser executada para avaliar os elementos da col - *formula* (sintaxe recomendada), um [objecto Formula](FunctionClass.md) que pode encapsular qualquer expressão executável, incluindo funções e métodos projecto; - ou *methodName*, o nome de um método projeto (texto). -The callback takes each collection element and performs any desired operation to accumulate the result into *$1.accumulator*, which is returned in *$1.value*. +O retorno de chamada pega cada elemento da coleção e executa qualquer operação desejada para acumular o resultado em *$1.accumulator*, retornado em *$1.value*. -Pode passar o valor para inicializar o acumulador em *initValue*. If omitted, *$1.accumulator* starts with *Undefined*. +Pode passar o valor para inicializar o acumulador em *initValue*. Se omitido, *$1.accumulator* começa com *Undefined*. A chamada de retorno recebe os seguintes parâmetros: @@ -2796,7 +2796,7 @@ A chamada de retorno recebe os seguintes parâmetros: A chamada de retorno recebe os seguintes parâmetros: -- *$1.accumulator*: value to be modified by the function and which is initialized by *initValue*. +- *$1.accumulator*: valor a ser modificado pela função sendo inicializado por *initValue*. - *$1.stop* (boolean, opcional): **true** para parar o callback do método. O valor retornado é o último calculado. #### Exemplo 1 @@ -2860,19 +2860,19 @@ Com o seguinte método ***Flatten***: #### Descrição -The `.remove()` function removes one or more element(s) from the specified *index* position in the collection and returns the edited collection. +A função `.remove()` remove um ou mais elemento(s) da posição *índice* especificada na coleção e retorna a coleção editada. > Essa função modifica a coleção original. Em *index*, passe a posição onde deseja que o elemento seja retirado da colecção. -> **Aviso**: lembre que elementos de coleção são numerados a partir de 0. If *index* is greater than the length of the collection, actual starting index will be set to the length of the collection. +> **Aviso**: lembre que elementos de coleção são numerados a partir de 0. Se *index* for maior que o comprimento da coleção, o índice inicial real será definido como o comprimento da coleção. - Se *index* < 0, ele será recalculado como *index:=index+length* (ele é considerado como o deslocamento do final da coleção). - Se o valor calculado for < 0, *index* será definido como 0. -- If the calculated value > the length of the collection, *index* is set to the length. +- Se o valor calculado > o comprimento da coleção, *index* é definido para o comprimento. -Em *howMany*, passe o número de elementos a serem removidos de *index*. If *howMany* is not specified, then one element is removed. +Em *howMany*, passe o número de elementos a serem removidos de *index*. Se \*howMany \*não for especificado, então um elemento é removido. Se tentar remover um elemento de uma coleção vazia, o método não faz nada (não é gerado qualquer erro). @@ -2919,10 +2919,10 @@ The `.resize()` function sets the colle > Essa função modifica a coleção original. -- If *size* < collection length, exceeding elements are removed from the collection. +- Se *size* < comprimento da coleção, os elementos excedentes são removidos da coleção. - Se *size* > comprimento da coleção, o comprimento da coleção é aumentado à medida. -Por padrão, novos elementos são preenchidos com valores **null**. You can specify the value to fill in added elements using the *defaultValue* parameter. +Por padrão, novos elementos são preenchidos com valores **null**. Pode especificar o valor para preencher os elementos adicionados usando o parâmetro *defaultValue*. #### Exemplo @@ -3051,16 +3051,16 @@ Se a colecção estiver vazia, este método não faz nada. #### Descrição -The `.slice()` function returns a portion of a collection into a new collection, selected from *startFrom* index to *end* index (end not included). This function returns a *shallow copy* of the collection. Na coleção original é uma coleção partilhada, a coleção retornada também é uma coleção partilhada. +A função `.slice()` retorna uma parte de uma coleção em uma nova coleção, selecionada do índice *startFrom* ao índice *end* (end não incluído). Esta função devolve uma *cópia superficial* da coleção. Na coleção original é uma coleção partilhada, a coleção retornada também é uma coleção partilhada. > Essa função não modifica a coleção original. -The returned collection contains the element specified by *startFrom* and all subsequent elements up to, but not including, the element specified by *end*. If only the *startFrom* parameter is specified, the returned collection contains all elements from *startFrom* to the last element of the original collection. +A coleção devolvida contém o elemento especificado por *startFrom* e todos os elementos subsequentes até, mas não incluindo, o elemento especificado por *end*. Se apenas for especificado o parâmetro *startFrom*, a coleção devolvida contém todos os elementos desde *startFrom* até ao último elemento da coleção original. - Se *startFrom* < 0, ele é recalculado como *startFrom:=startFrom+length* (é considerado como o deslocamento a partir do final da coleção). -- If the calculated value < 0, *startFrom* is set to 0. +- Se o valor calculado < 0, *startFrom* é definido como 0. - Se *end* < 0 , ele será recalculado como *end:=end+length*. -- If *end < startFrom* (passed or calculated values), the method does nothing. +- Se *end < startFrom* (valores passados ou calculados), o método não fará nada. #### Exemplo @@ -3105,7 +3105,7 @@ The returned collection contains the element specified by *startFrom* and all su #### Descrição -The `.some()` function returns true if at least one element in the collection successfully passed a test implemented in the provided *formula* or *methodName* code. +A função `.some()` retorna true se pelo menos um elemento da coleção passar com êxito em um teste implementado no código *formula* ou *methodName* fornecido. Designa-se a chamada de retorno a ser executada para avaliar os elementos da colecção utilizando qualquer um dos dois: @@ -3122,16 +3122,16 @@ A chamada de retorno recebe os seguintes parâmetros: Pode definir o(s) seguinte(s) parâmetro(s): -- (mandatory if you used a method) *$1.result* (boolean): **true** if the element value evaluation is successful, **false** otherwise. +- (obrigatório se você usou um método) *$1.result* (boolean): **true** se a avaliação do valor do elemento for bem-sucedida, **false** caso contrário. - *$1.stop* (boolean, opcional): **true** para parar o callback do método. O valor retornado é o último calculado. De qualquer forma, no momento em que a função `.some()` encontra o primeiro elemento da coleção retornando true, ela para de chamar o retorno de chamada e retorna **true**. -Por padrão, `.some()` testa toda a coleção. Optionally, you can pass the index of an element from which to start the test in *startFrom*. +Por padrão, `.some()` testa toda a coleção. Opcionalmente pode passar o índice da coleção para a qual iniciar a pesquisa em *startFrom*. - Se *startFrom* >= tamanho da coleção, é retornado **False**, o que significa que a coleção não é testada. -- If *startFrom* < 0, it is considered as the offset from the end of the collection. +- Se *startFrom* < 0, é considerado como a compensação a partir do final da recolha. - Se *startFrom* = 0, a coleção inteira é pesquisada (padrão). @@ -3198,7 +3198,7 @@ If `.sort()` is called with no parameters, only scalar values (number, text, dat 6. collections 7. datas -If you want to sort the collection elements in some other order or sort any type of element, you must supply in *formula* ([Formula object](FunctionClass.md)) or *methodName* (Text) a callback that defines the sort order. O valor de retorno deve ser um booleano que indica a ordem relativa dos dois elementos: **True** se *$1.value* for menor que *$1.value2*, **False** se *$1.value* for maior que *$1.value2*. Pode fornecer parâmetros adicionais a methodName se for necessário. +Se pretender ordenar os elementos da coleção por outra ordem ou ordenar qualquer tipo de elemento, deve fornecer em *formula* ([objeto Formula](FunctionClass.md)) ou *methodName* (Text) uma chamada de retorno que defina a ordem de ordenação. O valor de retorno deve ser um booleano que indica a ordem relativa dos dois elementos: **True** se *$1.value* for menor que *$1.value2*, **False** se *$1.value* for maior que *$1.value2*. Pode fornecer parâmetros adicionais a methodName se for necessário. A chamada de retorno recebe os seguintes parâmetros: @@ -3325,7 +3325,7 @@ Se a coleção contiver objetos, passe o parâmetro *propertyPath* para indicar #### Descrição -The `.unshift()` function inserts the given *value*(s) at the beginning of the collection and returns the modified collection. +A função `.unshift()` insere o(s) \*valu(es) fornecido(s) no início da coleção e retorna a coleção modificada. > Essa função modifica a coleção original. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md index 9eae5d96826d34..c40d226e009c70 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md @@ -9,7 +9,7 @@ Essa classe está disponível no "class store" de `4D`. :::info Veja também -For a comprehensive overview of this class, please refer to the [**CryptoKey: encrypt, decrypt, sign, and verify!**](https://blog.4d.com/cryptokey-encrypt-decrypt-sign-and-verify/) blog post. +Para obter uma visão geral abrangente dessa classe, consulte a postagem do blog [**CryptoKey: criptografar, descriptografar, assinar e verificar!**](https://blog.4d.com/cryptokey-encrypt-decrypt-sign-and-verify/). ::: @@ -49,7 +49,7 @@ For a comprehensive overview of this class, please refer to the [**CryptoKey: en -The `4D.CryptoKey.new()` function creates a new `4D.CryptoKey` object encapsulating an encryption key pair, based upon the *settings* object parameter. It allows to generate a new RSA or ECDSA key, or to load an existing key pair from a PEM definition. +A função `4D.CryptoKey.new()` cria um novo objeto `4D.CryptoKey` que encapsula um par de chaves de criptografia, com base no parâmetro objeto *settings*. It allows to generate a new RSA or ECDSA key, or to load an existing key pair from a PEM definition. #### *parâmetros* @@ -71,21 +71,21 @@ A message is signed by a private key and the signature is verified by the corres - Lado bob: ```4d -// Create the message +// Criar a mensagem $message:="hello world" Folder(fk desktop folder).file("message.txt").setText($message) -// Create a key -$type:=New object("type";"RSA") +// Criar uma chave +$type:=New object("type"; "RSA") $key:=4D.CryptoKey.new($type) -// Get the public key and save it +// Obtenha a chave pública e salve-a Folder(fk desktop folder).file("public.pem").setText($key.getPublicKey()) -// Get signature as base64 and save it +// Obtenha a assinatura como base64 e salve-a Folder(fk desktop folder).file("signature").setText($key.sign($message;$type)) -/*Bob sends the message, the public key and the signature to Alice*/ +/*Bob envia a mensagem, a chave pública e a assinatura para Alice*/ ``` - O lado Alice: @@ -166,7 +166,7 @@ Defined only for ECDSA keys: the normalised -The `.decrypt()` function decrypts the *message* parameter using the **private** key. O algoritmo utilizado depende do tipo da chave. +A função `.encrypt()` criptografa o parâmetro *message* usando a chave **pública**. O algoritmo utilizado depende do tipo da chave. The key must be a RSA key, the algorithm is RSA-OAEP (see [RFC 3447](https://tools.ietf.org/html/rfc3447)). @@ -180,7 +180,7 @@ The key must be a RSA key, the algorithm is RSA-OAEP (see [RFC 3447](https://too #### *Resultado* -The function returns a status object with `success` property set to `true` if the *message* could be successfully decrypted. +A função retorna um objeto status com a propriedade `success` definida como `true` se a *mensagem* puder ser descriptografada com êxito. | Propriedade | Tipo | Descrição | | ----------- | ---------- | ------------------------------------------------------------------------ | @@ -188,7 +188,7 @@ The function returns a status object with `success` property set to `true` if th | resultado | text | Mensagem decifrado e decodificado utilizando `options.encodingDecrypted` | | errors | collection | Se `success` for `false`, pode conter uma coleção de erros | -In case the *message* couldn't be decrypted because it was not encrypted with the same key or algorithm, the `status` object being returned contains an error collection in `status.errors`. +Caso a *mensagem* não possa ser descriptografada porque não foi criptografada com a mesma chave ou algoritmo, o objeto `status` que está sendo retornado contém uma coleção de erros em `status.errors`. @@ -216,7 +216,7 @@ In case the *message* couldn't be decrypted because it was not encrypted with th -The `.encrypt()` function encrypts the *message* parameter using the **public** key. O algoritmo utilizado depende do tipo da chave. +A função `.decrypt()` descriptografa o parâmetro *message* usando a chave **privada**. O algoritmo utilizado depende do tipo da chave. The key must be a RSA key, the algorithm is RSA-OAEP (see [RFC 3447](https://tools.ietf.org/html/rfc3447)). @@ -225,7 +225,7 @@ The key must be a RSA key, the algorithm is RSA-OAEP (see [RFC 3447](https://too | Propriedade | Tipo | Descrição | | ----------------- | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | hash | text | Algoritmo Digest a utilizar. Por exemplo: "SHA256", "SHA384", ou "SHA512". | -| encodingEncrypted | text | Codificação utilizada para converter a mensagem binária criptografada na string resultante. Pode ser "Base64", ou "Base64URL". Por padrão é "Base64". | +| encodingEncrypted | text | Codificação utilizada para converter a mensagem binária criptografada na string resultante. Pode ser "Base64", ou "Base64URL". Por padrão é "Base64". | | encodingDecrypted | text | Encoding used to convert the `message` parameter into the binary representation to encrypt. Pode ser "UTF-8", "Base64" ou "Base64URL". Por padrão é "UTF-8". | #### *Resultado* @@ -320,25 +320,26 @@ Definição PEM de uma chave de cifrado a carregar. Se a chave for uma chave pri
    História -| Release | Mudanças | -| ------- | ---------- | -| 18 R4 | Adicionado | +| Release | Mudanças | +| ------- | -------------------------- | +| 20 R8 | Support of message as Blob | +| 18 R4 | Adicionado |
    -.**sign** (*message* : Text ; *options* : Object) : Text +.**sign** (*message* : Text ; *options* : Object) : Text
    .**sign** (*message* : Blob ; *options* : Object) : Text -| Parâmetro | Tipo | | Descrição | -| ---------- | ------ | --------------------------- | ------------------------------------------------------------------------------- | -| message | Text | -> | String mensagem a assinar | -| options | Object | -> | Opções de assinatura | -| Resultados | Text | <- | Signature in Base64 or Base64URL representation, depending on "encoding" option | +| Parâmetro | Tipo | | Descrição | +| ---------- | ------------- | --------------------------- | ------------------------------------------------------------------------------- | +| message | Texto OU Blob | -> | Message to sign | +| options | Object | -> | Opções de assinatura | +| Resultados | Text | <- | Signature in Base64 or Base64URL representation, depending on "encoding" option | -The `.sign()` function signs the utf8 representation of a *message* string using the `CryptoKey` object keys and provided *options*. It returns its signature in base64 or base64URL format, depending on the value of the `options.encoding` attribute you passed. +The `.sign()` function signs the utf8 representation of a *message* string or Blob using the `CryptoKey` object keys and provided *options*. It returns its signature in base64 or base64URL format, depending on the value of the `options.encoding` attribute you passed. A `CryptoKey` deve conter uma chave **privada** válida. @@ -349,11 +350,11 @@ A `CryptoKey` deve conter uma chave **privada** válida. | hash | text | Algoritmo Digest a utilizar. Por exemplo: "SHA256", "SHA384", ou "SHA512". Quando utilizar para produzir um JWT, o tamanho de hash deve coincidir com o tamanho do algoritmo PS@, ES@, RS@ ou PS@ | | encodingEncrypted | text | Codificação utilizada para converter a mensagem binária criptografada na string resultante. Pode ser "Base64", ou "Base64URL". Por padrão é "Base64". | | pss | boolean | Utiliza Probabilistic Signature Scheme (PSS). Ignorado se a chave não for uma chave RSA. Passe `true` ao produzir um JWT para o algoritmo PS@ | -| encoding | text | Representation of provided signature. Possible values are "Base64" or "Base64URL". Por padrão é "Base64". | +| encoding | text | Representation to be used for result signature. Pode ser "Base64", ou "Base64URL". Por padrão é "Base64". | #### *Resultado* -A representação utf8 da string *message*. +A representação utf8 de *mensagem*. @@ -395,7 +396,7 @@ Contains the name of the key type - "RSA", " - "RSA": um par de chaves RSA, usando `settings.size` como [.size](#size). - "ECDSA": an Elliptic Curve Digital Signature Algorithm key pair, using `settings.curve` as [.curve](#curve). Lembre que chaves ECDSA não podem ser usadas para a criptografia mas só pela assinatura. -- "PEM": a key pair definition in PEM format, using `settings.pem` as [.pem](#pem). +- "PEM": uma definição de par chave em formato PEM, usando `settings.pem` como [.pem](#pem). @@ -403,22 +404,23 @@ Contains the name of the key type - "RSA", "
    História -| Release | Mudanças | -| ------- | ---------- | -| 18 R4 | Adicionado | +| Release | Mudanças | +| ------- | -------------------------- | +| 20 R8 | Support of message as Blob | +| 18 R4 | Adicionado |
    -**.verify**( *message* : Text ; *signature* : Text ; *options* : Object) : Object +**.verify**( *message* : Text ; *signature* : Text ; *options* : Object) : Object
    *.verify**( *message* : Blob ; *signature* : Text ; *options* : Object) : Object -| Parâmetro | Tipo | | Descrição | -| ---------- | ------ | --------------------------- | ------------------------------------------------------------------------------------------------- | -| message | Text | -> | String de mensagem utilizada para gerar a assinatura | -| signature | Text | -> | Signature to verify, in Base64 or Base64URL representation, depending on `options.encoding` value | -| options | Object | -> | Opções de assinatura | -| Resultados | Object | <- | Estado da verificação | +| Parâmetro | Tipo | | Descrição | +| ---------- | ------------- | --------------------------- | ------------------------------------------------------------------------------------------------- | +| message | Texto OU Blob | -> | Message that was used to produce the signature | +| signature | Text | -> | Signature to verify, in Base64 or Base64URL representation, depending on `options.encoding` value | +| options | Object | -> | Opções de assinatura | +| Resultados | Object | <- | Estado da verificação | @@ -432,7 +434,7 @@ A `CryptoKey` deve conter uma chave **pública** válida. | ----------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | hash | text | Algoritmo Digest a utilizar. Por exemplo: "SHA256", "SHA384", ou "SHA512". Quando utilizar para produzir um JWT, o tamanho de hash deve coincidir com o tamanho do algoritmo PS@, ES@, RS@ ou PS@ | | pss | boolean | Utiliza Probabilistic Signature Scheme (PSS). Ignorado se a chave não for uma chave RSA. Passa `true` ao verficar um JWT para o algoritmo PS@ | -| encoding | text | Codificação utilizada para converter a mensagem binária criptografada na string resultante. Pode ser "Base64", ou "Base64URL". Por padrão é "Base64". | +| encoding | text | Representation to be used for result signature. Pode ser "Base64", ou "Base64URL". Por padrão é "Base64". | #### *Resultado* diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/DataClassClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/DataClassClass.md index a19744ea2aa39f..4d0a7e1c9a8bd5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/DataClassClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/DataClassClass.md @@ -940,7 +940,7 @@ Fórmulas nas consultas podem receber parâmetros através de $1. Este ponto est | Incluído em | IN | Retorna dados iguais a ao menos um dos valores de uma coleção ou de um conjunto de valores, admite o coringa (@) | | Contém palavra chave | % | As palavras chaves podem ser usadas em atributos de string ou imagem | -- **value**: o valor a comparar ao valor atual da propriedade de cada entidade na seleção de entidade. Pode ser um **marcador** (ver **Uso de marcadores** abaixo) ou qualquer expressão que coincida com a propriedade de tipo de dados. Note that, in case of type mismatch with scalar types (text, date, number...), 4D will try to convert the **value** type to the attribute data type whenever possible, for an easier handling of values coming from the Internet. For example, if the string "v20" is entered as **value** to compare with an integer attribute, it will be converted to 20. +- **value**: o valor a comparar ao valor atual da propriedade de cada entidade na seleção de entidade. Pode ser um **marcador** (ver **Uso de marcadores** abaixo) ou qualquer expressão que coincida com a propriedade de tipo de dados. Observe que, em caso de incompatibilidade de tipo com tipos escalares (texto, data, número...), 4D tentará converter o tipo **value** para o tipo de atributo sempre que possível, para um tratamento mais fácil de valores vindos da Internet. Por exemplo, se a string "v20" for digitada como **value** para comparar com um atributo inteiro, ela será convertida em 20. Quando usar um valor constante, as regras abaixo devem ser respeitadas: - A constante de tipo texto pode ser passada com ou sem aspas simples (ver **Uso de aspas mais abaixo**). Para pesquisar uma string dentro de uma string (uma pesquisa "contém") use o símbolo coringa (@) em valor para isolar a string a ser pesquisada como mostrado neste exemplo: "@Smith@". As palavras chaves abaixo são proibidas para constantes de texto: true, false. - Valores constantes de tipo **booleano**: **true** ou **false** (diferencia maiúscula de minúscula). @@ -1035,6 +1035,20 @@ Não obterá o resultado esperado porque o valor nulo será avaliado por 4D como $vSingles:=ds.Person.query("spouse = null") //sintaxe correta ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### Não igual a em colecções Ao pesquisar nos atributos de objectos de classe de dados que contêm colecções, o comparador "não igual a valor" (`#` ou `!=`) encontrará elementos em que TODAS as propriedades são diferentes de valor (e não aqueles em que PELO MENOS uma propriedade é diferente de valor, que é como funcionam outros comparadores). Basicamente, é equivalente à pesquisa por "Not(encontrar elementos da coleção onde a propriedade é igual a *value*"). Por exemplo, com as seguintes entidades: @@ -1205,7 +1219,7 @@ No parâmetro *querySettings* é possível passar um objeto que conteha opções | ------------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | parameters | Object | **Espaços reservados nomeados para valores** usados na *queryString* ou *formula*. Os valores são expressos como pares propriedade / valor, onde propriedade é o nome do marcador de posição inserido para um valor na *queryString* ou na *formula* (":placeholder") e valor é o valor a ser comparado. Pode combinar marcadores de posição indexados (valores passados diretamente em parâmetros de valor) e valores de marcadores de posição com nome na mesma pesquisa. | | attributes | Object | **Espaços reservados nomeados para caminhos de atributos** usados na *queryString* ou *formula*. Os atributos se expressam como pares propriedade/ valor, onde propriedade é o nome do marcador de posição inserido para uma rota de atributo em *queryString* ou *formula* (":placeholder") e valor pode ser uma string ou uma coleção de strings. Cada valor é um caminho que pode designar um escalar ou um atributo relacionado da classe de dados ou uma propriedade em um campo de objeto da classe de dados.
    TipoDescrição
    StringattributePath expresso usando a notação de ponto, por exemplo, "nome" ou "usuario.endereco.cep"
    Coleção de stringsCada string da coleção representa um nível do attributePath, por exemplo, \["nome"] ou \["usuario","endereco","cep"]. Using a collection allows querying on attributes with names that are not compliant with dot notation, e.g. \["4Dv17.1","en/fr"]
    You can mix indexed placeholders (values directly passed in *value* parameters) and named placeholder values in the same query. | -| args | Object | Parámetro(s) a passar para as fórmulas, se houver. The **args** object will be received in $1 within formulas and thus its values will be available through *$1.property* (see example 3). | +| args | Object | Parámetro(s) a passar para as fórmulas, se houver. O objeto **args** será recebido em $1 nas fórmulas e, portanto, seus valores estarão disponíveis através de *$1.property* (ver exemplo 3). | | allowFormulas | Parâmetros | True para permitir as chamadas de fórmulas na pesquisa (padrão). Passe falso para desautorizar a execução de fórmulas. If set to false and `query()` is given a formula, an error is sent (1278 - Formula not allowed in this member method). | | context | Text | Etiqueta para o contexto de otimização automático aplicados à seleção de entidade. Este contexto será utilizado pelo código que maneja a seleção de entidades para que possa se beneficiar da otimização. This feature is designed for client/server processing; for more information, please refer to the [**Client/server optimization**](../ORDA/client-server-optimization.md#optimization-context) section. | | queryPlan | Parâmetros | Na entity selection resultante, devolve ou não a descrição detalhada da pesquisa logo antes de ser executada, ou seja, a pesquisa planificada. A propriedade devolvida é um objeto que inclui cada pesquisa e subpesquisa prevista (no caso de uma pesquisa complexa). Esta opção é útil durante a fase de desenvolvimento de uma aplicação. Geralmente é usada em conjunto com queryPath. Como padrão é omitido: false. | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/DataStoreClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/DataStoreClass.md index 0d4a27900df7d8..d1df7092c6d2ff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/DataStoreClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/DataStoreClass.md @@ -5,8 +5,8 @@ title: DataStore A [Datastore](ORDA/dsMapping.md#datastore) is the interface object provided by ORDA to reference and access a database. Os objetos `Datastore` são retornados pelos seguintes comandos: -- [ds](../commands/ds.md): a shortcut to the main datastore -- [Open datastore](../commands/open-datastore.md): to open any remote datastore +- [ds](../commands/ds.md): um atalho para o datastore principal +- [Open datastore](../commands/open-datastore.md): para abrir qualquer datastore remoto ### Resumo @@ -240,7 +240,7 @@ A função `.flushAndLock()` Esta função só pode ser chamada: -- on the local datastore ([`ds`](../commands/ds.md)). +- no datastore local ([`ds`](../commands/ds.md)). - no ambiente cliente/servidor, na máquina do servidor. ::: @@ -391,7 +391,7 @@ A função `.getGlobalStamp()` retorna um **Objeto devolvido** -| Propriedade | Tipo | Descrição | -| ----------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| type | string |
  • "4D": repositório de dados principal, disponível por meio do ds
  • "4D Server": repositório de dados remoto, aberto com Open datastore
  • | -| networked | boolean |
  • True: o armazenamento de dados é acessado por meio de uma conexão de rede.
  • False: o armazenamento de dados não é acessado por meio de uma conexão de rede (banco de dados local)
  • | -| localID | text | ID do armazém de dados na máquina. Corresponde à cadeia de caracteres localId fornecida com o comando `Open datastore`. String vazia ("") para o datastore principal. | -| connection | object | Objeto descrevendo a conexão remota da datastore (não retornado para datastore principal) Propriedades disponiveis: Propriedades disponiveis: Propriedades disponíveis:
    PropriedadeTipoDescrição
    hostnametextoEndereço IP ou nome do datastore remoto + ":" + número da porta
    tlsbooleanoTrue se a conexão segura é usada com o datastore remoto
    idleTimeoutnúmeroTempo limite de inatividade da sessão (em minutos)
    usertextoUsuário autenticado no datastore remoto
    | +| Propriedade | Tipo | Descrição | +| ----------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| type | string |
  • "4D": repositório de dados principal, disponível por meio do ds
  • "4D Server": repositório de dados remoto, aberto com Open datastore
  • | +| networked | boolean |
  • True: o armazenamento de dados é acessado por meio de uma conexão de rede.
  • False: o armazenamento de dados não é acessado por meio de uma conexão de rede (banco de dados local)
  • | +| localID | text | ID do armazém de dados na máquina. ID do armazém de dados na máquina. String vazia ("") para o datastore principal. | +| connection | object | Objeto descrevendo a conexão remota da datastore (não retornado para datastore principal) Propriedades disponiveis: Propriedades disponiveis: Objeto descrevendo a conexão remota da datastore (não retornado para datastore principal) Propriedades disponiveis: Propriedades disponiveis: Propriedades disponíveis:
    PropriedadeTipoDescrição
    hostnametextoEndereço IP ou nome do datastore remoto + ":" + número da porta
    tlsbooleanoTrue se a conexão segura é usada com o datastore remoto
    idleTimeoutnúmeroTempo limite de inatividade da sessão (em minutos)
    usertextoUsuário autenticado no datastore remoto
    | - Se a função `.getInfo()` for executada em um servidor 4D ou um único usuário, `networked` é Falso. - Se a função `.getInfo()` for executada em um 4D remoto, `networked` será True @@ -710,7 +710,7 @@ Quando essa função não é chamada, as novas seleções de entidades podem ser A função `.provideDataKey()` permite fornecer uma chave de criptografia de dados para o arquivo de dados atual do armazenamento de dados e detecta se a chave corresponde aos dados criptografados. Esta função pode ser utilizada ao abrir um banco de dados criptografado, ou ao executar qualquer operação de criptografia que precise da chave de criptografia, como por exemplo voltar a criptografar o arquivo de dados. -> - A função `.provideDataKey()` deve ser chamada em um banco de dados criptografado. Se for chamado em um banco de dados não criptografado, o erro 2003 (a chave de criptografia não corresponde aos dados) é retornado. Use o comando `Data file encryption status` para determinar se o banco de dados está criptografado. +> - A função `.provideDataKey()` deve ser chamada em um banco de dados criptografado. Se for chamado em um banco de dados não criptografado, o erro 2003 (a chave de criptografia não corresponde aos dados) é retornado. é retornado. Use o comando `Data file encryption status` para determinar se o banco de dados está criptografado. > - A função `.provideDataKey()` não pode ser chamada de um 4D remoto ou de um datastore remoto criptografado. Se você usar o parâmetro *curPassPhrase*, passe a cadeia de caracteres usada para gerar a chave de criptografia de dados. Quando usar este parâmetro, uma chave de criptografia é gerada. @@ -838,7 +838,7 @@ A função `.setGlobalStamp()` returns a `4D.Blob` object containing the entire content of a file. For information on BLOBs, please refer to the [BLOB](Concepts/dt_blob.md) section. +The `.getContent()` function returns a `4D.Blob` object containing the entire content of a file. Para obter informações sobre BLOBs, consulte a seção [BLOB](Concepts/dt_blob.md). **Valor retornado** diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/EmailObjectClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/EmailObjectClass.md index a13519740ea16e..183c81dfc7b522 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/EmailObjectClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/EmailObjectClass.md @@ -10,7 +10,7 @@ Creating, sending or receiving emails in 4D is done by handling an `Email` objec - IMAP - [`.getMail()`](IMAPTransporterClass.md#getmail) and [`.getMails()`](IMAPTransporterClass.md#getmails) functions to get emails from an IMAP server - POP3 - Função [`.getMail()`](POP3TransporterClass.md#getmail) para obter um e-mail de um servidor POP3. -> You can also create a new, blank `Email` object and then fill it with [Email object properties](#email-object). +> Você também pode criar um novo objeto `Email` em branco e preenchê-lo com [propriedades do objeto Email](#email-object). You send `Email` objects using the SMTP [`.send()`](SMTPTransporterClass.md#send) function. @@ -110,7 +110,7 @@ The [`textBody`](#textbody) and [`htmlBody`](#htmlbody) properties are only used The `.attachments` property contains a collection of `4D.MailAttachment` object(s). -Attachment objects are defined through the [`MAIL New attachment`](MailAttachmentClass.md#mail-new-attachment) command. Attachment objects have specific [properties and functions](MailAttachmentClass.md). +Os objetos de anexo são definidos por meio do comando [`MAIL New attachment`](MailAttachmentClass.md#mail-new-attachment). Os objetos anexo têm [propriedades e funções](MailAttachmentClass.md) específicas. ## .bcc @@ -207,7 +207,7 @@ Cada objeto da coleção de cabeçalhos pode conter as propriedades abaixo: | Propriedade | Tipo | Valor | | ---------------------------------------------------------------------------- | ---- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | [].name | text | (mandatory) Header field name as defined in [RFC#5322](https://tools.ietf.org/html/rfc5322). Caso seja nulo ou indefinido, o campo cabeçalho não será adicionado ao cabeçalho MIME. | -| [].value | text | Header field values as defined in [RFC#5322](https://tools.ietf.org/html/rfc5322) | +| [].value | text | Valores do campo de cabeçalho conforme definido em [RFC#5322](https://tools.ietf.org/html/rfc5322) | ## .htmlBody @@ -223,7 +223,7 @@ The `.htmlBody` property contains the unique ID from the IMAP server. @@ -282,7 +282,7 @@ Este cabeçalho geralmente é "lettersOrNumbers@domainname", por exemplo, "abcde #### Descrição -[IMAP transporter](IMAPTransporterClass.md) only. +[IMAP transporter](IMAPTransporterClass.md) unicamente. The `.receivedAt` property contains the timestamp of the email's arrival on the IMAP server in ISO 8601 UTC format (ex: 2020-09-13T16:11:53Z). @@ -333,7 +333,7 @@ Para uma melhor capacidade de entrega, é recomendado usar o mesmo endereço de #### Descrição -[IMAP transporter](IMAPTransporterClass.md) only. +[IMAP transporter](IMAPTransporterClass.md) unicamente. The `.size` property contains the size (expressed in bytes) of the Email object returned by the IMAP server. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/EntityClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/EntityClass.md index 4d7af6a78403ef..55b54890d28549 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/EntityClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/EntityClass.md @@ -102,7 +102,7 @@ The `.clone()` function creates in memo This function allows you to update entities separately. Note however that, for performance reasons, the new entity shares the same reference of object attributes as the cloned entity. -> Keep in mind that any modifications done to entities will be saved in the referenced record only when the [`.save()`](#save) function is executed. +> Tenha em mente que quaisquer modificações feitas em entidades serão salvas no registro referenciado somente quando a função [`.save()`](#save) for executada. Esta função só pode ser usada com entidades já salvas no banco de dados. Não pode ser chamado em uma entidade recém-criada (para a qual [`.isNew()`](#isnew) retorna **True**). @@ -966,34 +966,34 @@ Otherwise, you can pass the `dk reload if stamp changed` option in the *mode* pa O objeto retornado por `.lock()` contém as seguintes propriedades: -| Propriedade | | Tipo | Descrição | -| --------------------------------- | ----------------------------------- | ---------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| success | | boolean | true se a ação de bloqueio for bem sucedida (ou se a entidade já estiver bloqueada no processo atual), falso caso contrário. | -| | | | ***Disponível somente se a opção `dk reload if stamp changed` for usada:*** | -| **wasReloaded** | | boolean | verdadeiro se a entidade foi recarregada com sucesso, falso caso contrário. | -| | | | ***Disponível apenas em caso de erro:*** | -| status(\*) | | number | Código de erro, ver abaixo | -| statusText(\*) | | text | Descrição do erro, ver abaixo | -| | | | ***Disponível apenas em caso de erro de bloqueio pessimista:*** | -| lockKindText | | text | "Locked by record" se trancado por um processo 4D, "Locked by session" se trancado por uma sessão REST | -| lockInfo | | object | Informações sobre a origem do bloqueio. Retorna propriedades dependendo da origem da trava (processo 4D ou sessão REST) | -| | | | ***Disponível só para um processo trava 4D:*** | -| | task_id | number | Process ID | -| | user_name | text | Nome de usuário de sessão na máquina | -| | user4d_alias | text | Nome ou apelido do usuário 4D | -| | user4d_id | number | Id do usuário no diretório do banco de dados 4D | -| | host_name | text | Nome da máquina | -| | task_name | text | Nome de processo | -| | client_version | text | Versão do cliente | -| | | | ***Disponível só para um processo trava REST:*** | -| | host | text | URL que trava a entidade (por exemplo "www.myserver.com") | -| | IPAddr | text | Endereço IP da trava (por exemplo. "127.0.0.1") | -| | userAgent | text | userAgent of the locker (e.g. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | -| | | | ***Disponível somente em caso de erro grave*** (chave primária já existe, disco cheio...): | -| errors | | uma coleção de objetos | | -| | message | text | Mensagem de erro | -| | assinatura de componentes | text | assinatura interna do componente (ex.: "dmbg" significa componente da base de dados) | -| | errCode | number | Código de erro | +| Propriedade | | Tipo | Descrição | +| --------------------------------- | ----------------------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| success | | boolean | true se a ação de bloqueio for bem sucedida (ou se a entidade já estiver bloqueada no processo atual), falso caso contrário. | +| | | | ***Disponível somente se a opção `dk reload if stamp changed` for usada:*** | +| **wasReloaded** | | boolean | verdadeiro se a entidade foi recarregada com sucesso, falso caso contrário. | +| | | | ***Disponível apenas em caso de erro:*** | +| status(\*) | | number | Código de erro, ver abaixo | +| statusText(\*) | | text | Descrição do erro, ver abaixo | +| | | | ***Disponível apenas em caso de erro de bloqueio pessimista:*** | +| lockKindText | | text | "Locked by record" se trancado por um processo 4D, "Locked by session" se trancado por uma sessão REST | +| lockInfo | | object | Informações sobre a origem do bloqueio. Retorna propriedades dependendo da origem da trava (processo 4D ou sessão REST) | +| | | | ***Disponível só para um processo trava 4D:*** | +| | task_id | number | Process ID | +| | user_name | text | Nome de usuário de sessão na máquina | +| | user4d_alias | text | Nome ou apelido do usuário 4D | +| | user4d_id | number | Id do usuário no diretório do banco de dados 4D | +| | host_name | text | Nome da máquina | +| | task_name | text | Nome de processo | +| | client_version | text | Versão do cliente | +| | | | ***Disponível só para um processo trava REST:*** | +| | host | text | \| \\| URL que trava a entidade (por exemplo "www.myserver.com") \\| \| | +| | IPAddr | text | Endereço IP da trava (por exemplo. "127.0.0.1") | +| | userAgent | text | userAgent of the locker (e.g. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | +| | | | ***Disponível somente em caso de erro grave*** (chave primária já existe, disco cheio...): | +| errors | | uma coleção de objetos | | +| | message | text | Mensagem de erro | +| | assinatura de componentes | text | assinatura interna do componente (ex.: "dmbg" significa componente da base de dados) | +| | errCode | number | Código de erro | (\*) The following values can be returned in the *status* and *statusText* properties of the *Result* object in case of error: @@ -1366,7 +1366,7 @@ No primeiro par|âmetro, passa os atributos entidade a extrair. Pode passar: - *filterString*: a string with property paths separated with commas: "propertyPath1, propertyPath2, ...", or - *filterCol*: a collection of strings: \["propertyPath1","propertyPath2";...] -If a filter is specified for attributes of the relatedEntity [kind](DataClassClass.md#attributename): +Se um filtro for especificado para os atributos onde [kind](DataClassClass.md#attributename) é relatedEntity: - propertyPath = "relatedEntity" -> it is extracted with simple form: an object with property \_\_KEY (primary key). - propertyPath = "relatedEntity.\*" -> todas as propriedades são extraídas @@ -1643,7 +1643,7 @@ The `.touched()` function tests wheth Se um atributo for modificado ou calculado, a função retorna True, senão retorna False. Pode usar essa função para determinar se precisar salvar a entidade. -This function returns False for a new entity that has just been created (with [`.new( )`](DataClassClass.md#new)). Note however that if you use a function which calculates an attribute of the entity, the `.touched()` function will then return True. For example, if you call [`.getKey()`](#getkey) to calculate the primary key, `.touched()` returns True. +Essa função retorna False para uma nova entidade que acabou de ser criada (com [`.new( )`](DataClassClass.md#new)). Note however that if you use a function which calculates an attribute of the entity, the `.touched()` function will then return True. Por exemplo, se você chamar [`.getKey()`](#getkey) para calcular a chave primária, `.touched()` retornará True. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/FileClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/FileClass.md index d3a9c885cdc15f..9b0676bb98b875 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/FileClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/FileClass.md @@ -627,7 +627,7 @@ $infoPlistFile.setAppInfo($info) #### Descrição -The `.setContent( )` function rewrites the entire content of the file using the data stored in the *content* BLOB. For information on BLOBs, please refer to the [BLOB](Concepts/dt_blob.md) section. +The `.setContent( )` function rewrites the entire content of the file using the data stored in the *content* BLOB. Para obter informações sobre BLOBs, consulte a seção [BLOB](Concepts/dt_blob.md). #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/FileHandleClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/FileHandleClass.md index b2b8b0cc141e65..8f2370c046c95f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/FileHandleClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/FileHandleClass.md @@ -3,9 +3,9 @@ id: FileHandleClass title: FileHandle --- -The `FileHandle` class has functions that allow you to sequentially read from or append contents to an opened [`File`](FileClass) object. O manuseamento de um arquivo pode acessar a qualquer parte de um documento. +A classe `FileHandle` tem funções que lhe permitem ler sequencialmente ou anexar conteúdos a um objeto aberto [`File`](FileClass). O manuseamento de um arquivo pode acessar a qualquer parte de um documento. -File handle objects are created with the [`file.open()`](FileClass#open) function. +Os objetos File handle são criados usando a função [`file.open()`](FileClass#open). > To read or write a whole document at once, you might consider using the [file.getText()](FileClass.md#gettext) and [file.setText()](FileClass.md#settext) functions. @@ -216,7 +216,7 @@ Essa propriedade é **somente leitura**. The `.getSize()` function returns the current size of the document, expressed in bytes. -> This function returns the same value as the ([.size](FileClass#size)) property of the `File` class. +> Essa função retorna o mesmo valor que a propriedade ([.size](FileClass#size)) da classe `File`. #### Veja também @@ -275,7 +275,7 @@ Essa propriedade é **leitura/escrita**. :::caution -Quando um identificador de arquivo é criado, o valor `.offset` é um número de bytes. However, the unit of offset measurement differs according to the reading function: with [`readBlob()`](#readblob), `.offset` is a number of bytes, whereas with [`readText()`](#readtext)/[`readLine()`](#readline) it is a number of characters. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. So, if you start reading with `readBlob()` and then call `readText()`, text reading will start at an inconsistent position. It is therefore essential to set the `.offset` property yourself if you switch from reading/writing blob to reading/writing text in the same filehandle. Por exemplo: +Quando um identificador de arquivo é criado, o valor `.offset` é um número de bytes. However, the unit of offset measurement differs according to the reading function: with [`readBlob()`](#readblob), `.offset` is a number of bytes, whereas with [`readText()`](#readtext)/[`readLine()`](#readline) it is a number of characters. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. Por exemplo: ```4d // Open a european text file using utf-16 encoding (two bytes per character) @@ -321,7 +321,7 @@ $s:=$fh.readText() The `.readBlob()` function returns a blob a *bytes* size from the file, starting from the current position . -When this function is executed, the current position ([.offset](#offset)) is updated after the last byte read. +Quando esta função é executada, a posição atual ([.offset](#offset)) é atualizada após a leitura do último byte. #### Veja também @@ -355,11 +355,11 @@ When this function is executed, the current position ([.offset](#offset)) is upd The `.readLine()` function returns a line of text from the current position until an end-of-line delimiter is encountered or the end of the document is reached. -When this function is executed, the current position ([`.offset`](#offset)) is updated. +Quando essa função é executada, a posição atual ([`.offset`](#offset)) é atualizada. :::caution Aviso -This function assumes that the [`.offset`](#offset) property is a number of characters, not a number of bytes. Para obter mais informações, consulte [descrição de .offset](#offset). +Essa função assume que a propriedade [`.offset`](#offset) é um número de caracteres, não um número de bytes. Para obter mais informações, consulte [descrição de .offset](#offset). ::: @@ -400,11 +400,11 @@ The `.readText()` function retur A string de caracteres *stopChar* não está incluída no texto devolvido. Se omitir o parâmetro *stopChar*, todo o texto do documento é devolvido. -When this function is executed, the ([.offset](#offset)) is placed just after the *stopChar* string. +Quando essa função é executada, o ([.offset](#offset)) é colocado logo após a string *stopChar*. :::caution Aviso -This function assumes that the [`.offset`](#offset) property is a number of characters, not a number of bytes. Para obter mais informações, consulte [descrição de .offset](#offset). +Essa função assume que a propriedade [`.offset`](#offset) é um número de caracteres, não um número de bytes. Para obter mais informações, consulte [descrição de .offset](#offset). ::: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/FolderClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/FolderClass.md index 27208530b50391..1470b0c4e4e2a7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/FolderClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/FolderClass.md @@ -3,7 +3,7 @@ id: FolderClass title: Folder --- -`Folder` objects are created with the [`Folder`](../commands/folder.md) command. Contêm referências a pastas que podem ou não existir efectivamente no disco. Por exemplo, quando executa o comando ’Folder`para criar uma pasta, é criado um objeto válido`Folder` mas nada é realmente armazenado no disco até chamar a função [`folder.create()\`](#create). +Os objetos `Folder` são criados com o comando [`Folder`](../commands/folder.md). Contêm referências a pastas que podem ou não existir efectivamente no disco. Por exemplo, quando executa o comando ’Folder`para criar uma pasta, é criado um objeto válido`Folder` mas nada é realmente armazenado no disco até chamar a função [`folder.create()\\\`](#create). ### Exemplo @@ -67,9 +67,9 @@ Os objetos `Folder` suportam vários pathnames, incluindo a sintaxe `filesystems #### Descrição -A função `4D.Folder.new()` cria e retorna um novo objeto do tipo `4D.Folder`. It is identical to the [`Folder`](../commands/folder.md) command (shortcut). +A função `4D.Folder.new()` cria e retorna um novo objeto do tipo `4D.Folder`. É idêntico ao comando [`Folder`](../commands/folder.md) (atalho). -> It is recommended to use the [`Folder`](../commands/folder.md) shortcut command instead of `4D.Folder.new()`. +> Recomenda-se usar o comando de atalho [`Folder`](../commands/folder.md) em vez de `4D.Folder.new()`. @@ -297,7 +297,7 @@ A função `.moveTo( )` move ou renome A *destinationFolder* deve existir em disco, senão um erro é gerado. -Por padrão, a pasta mantém o seu nome quando movida. Se quiser renomear a pasta movida, passe o novo nome completo no parâmetro *newName*. O novo nome deve cumprir com as regras de nomenclatura (por exemplo, não deve conter caracteres como ":", "/", etc.), do contrário se devolve um erro. +Por padrão, a pasta mantém o seu nome quando movida. Por padrão, a pasta mantém o seu nome quando movida. O novo nome deve cumprir com as regras de nomenclatura (por exemplo, não deve conter caracteres como ":", "/", etc.), do contrário se devolve um erro. **Objeto devolvido** diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/FunctionClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/FunctionClass.md index b2f75756a69fd5..1271b1c5121a6e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/FunctionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/FunctionClass.md @@ -128,7 +128,7 @@ In the *thisObj* parameter, you can pass a reference to the object to be used as You can also pass a collection to be used as $1...$n parameters in the formula using the optional *formulaParams* parameter. -Note that `.apply()` is similar to [`.call()`](#call) except that parameters are passed as a collection. Isso pode ser útil para passar resultados calculados. +Note que `.apply()` é similar a [`.call()`](#call) exceto que os parâmetros são passados como coleção. Isso pode ser útil para passar resultados calculados. Isso pode ser útil para passar resultados calculados. #### Exemplo 1 diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/HTTPRequestClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/HTTPRequestClass.md index 071a37106d802c..910aff3cde4787 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/HTTPRequestClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/HTTPRequestClass.md @@ -142,7 +142,7 @@ In the *options* parameter, pass an object that can contain the following proper | protocol | Text | "auto" ou "HTTP1". "auto" significa HTTP1 na implementação actual | "auto" | | proxyAuthentication | [objeto de autenticação](#authentication-object) | Autenticação por procuração de tratamento de objectos | indefinido | | serverAuthentication | [objeto de autenticação](#authentication-object) | Autenticação do servidor de tratamento de objectos | indefinido | -| returnResponseBody | Parâmetros | If false, the response body is not returned in the [`response` object](#response). Devolve um erro se falso e `onData` é indefinido | True | +| returnResponseBody | Parâmetros | Se false, o corpo de resposta não é retornado no objeto [`response`](#response). Devolve um erro se falso e `onData` é indefinido | True | | timeout | Real | Tempo de espera em segundos. Indefinido = sem timeout | Indefinido | | validateTLSCertificate | Parâmetros | Se false, 4D não valida o certificado TLS e não retorna um erro se ele for inválido (i.e. expirado, auto-assinado...). Importante: Na implementação actual, a Autoridade de Certificação em si não é verificada. | True | @@ -175,7 +175,7 @@ For the callback functions to be called when you do not use [`wait()`](#wait) (a #### objecto evento -An `event` object is returned when a [callback function](#callback-functions) is called. Contém as seguintes propriedades: +Um objeto `event` é retornado quando uma [função de retorno de chamada](#callback-functions) é chamada. Contém as seguintes propriedades: | Propriedade | Tipo | Descrição | | --------------------- | ---- | -------------------------------------------------------------------------------------------------------------------------- | @@ -390,7 +390,7 @@ Um objeto `response` é um objeto não compartilhável. Contém as seguintes pro | Propriedade | Tipo | Descrição | | --------------------------- | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| .body | Diferente de | Corpo da resposta. The type of the message is defined according to the [`dataType`](#datatype) property. Indefinido se o corpo ainda não tiver sido recebido | +| .body | Diferente de | Corpo da resposta. O tipo da mensagem é definido conforme a propriedade [`dataType`](#datatype). Indefinido se o corpo ainda não tiver sido recebido | | .headers | Object | Cabeçalhos da resposta. Os nomes dos cabeçalhos são devolvidos em minúsculas. `.key` = value (value can be a collection if the same key appears multiple times). Indefinido se os cabeçalhos ainda não tiverem sido recebidos. | | .status | Number | Código de estado da resposta | | .statusText | Text | Mensagem que explica o código de estado | @@ -493,6 +493,6 @@ If a *time* parameter is passed, the function will wait at most the defined numb Se a resposta do servidor já tiver chegado, a função regressa imediatamente. -During a `.wait()` execution, callback functions are executed, whether from other `HTTPRequest` or [`SystemWorker`](SystemWorkerClass.md) instances, or other [`CALL WORKER`](../commands-legacy/call-worker.md) calls. You can exit from a `.wait()` by calling [`terminate()`](#terminate) from a callback. +During a `.wait()` execution, callback functions are executed, whether from other `HTTPRequest` or [`SystemWorker`](SystemWorkerClass.md) instances, or other [`CALL WORKER`](../commands-legacy/call-worker.md) calls. Você pode sair de um `.wait()` chamando [`terminate()`](#terminate) de um retorno de chamada. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md index 26ae5dca2ac06e..7f9eb8756fe811 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md @@ -57,7 +57,7 @@ IMAP Transporter objects are instantiated with the [IMAP New transporter](../com #### Descrição -A função `4D.IMAPTransporter.new()` cria e retorna um novo objeto do tipo `4D.IMAPTransporter`. It is identical to the [`IMAP New transporter`](../commands/imap-new-transporter.md) command (shortcut). +A função `4D.IMAPTransporter.new()` cria e retorna um novo objeto do tipo `4D.IMAPTransporter`. É idêntico ao comando [`IMAP New transporter`](../commands/imap-new-transporter.md) (atalho). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md index 64391e2e98a98f..1c5ffa8d7e03e5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/IncomingMessageClass.md @@ -19,7 +19,7 @@ All properties of this class are read-only. They are automatically filled by the ### Exemplo -The following [**HTTPHandlers.json** file](../WebServer/http-request-handler.md) has been defined: +O seguinte arquivo [**HTTPHandlers.json**](../WebServer/http-request-handler.md) foi definido: ```json [ @@ -74,7 +74,7 @@ The verb is: GET There are 2 url parts - Url parts are: start - example ``` -### IncomingMessage Object +### Objeto IncomingMessage 4D.IncomingMessage objects provide the following properties and functions: @@ -93,7 +93,7 @@ There are 2 url parts - Url parts are: start - example :::note -A 4D.IncomingMessage object is a [non-sharable](../Concepts/shared.md) object. +Um objeto 4D.IncomingMessage é um objeto [não compartilhável](../Concepts/shared.md). ::: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md index 0f08e1e9fb7795..9c1dc74cdab0b3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md @@ -3,7 +3,7 @@ id: MailAttachmentClass title: MailAttachment --- -Attachment objects allow referencing files within a [`Email`](EmailObjectClass.md) object. Attachment objects are created using the [`MAIL New attachment`](../commands/mail-new-attachment.md) command. +Attachment objects allow referencing files within a [`Email`](EmailObjectClass.md) object. Os objetos Attachment são criados usando o comando [`MAIL New attachment`](../commands/mail-new-attachment.md). ### Objeto anexos @@ -50,7 +50,7 @@ Objetos anexos oferecem as propriedades e funções apenas leitura abaixo: #### Descrição -The `4D.MailAttachment.new()` function creates and returns a new object of the `4D.MailAttachment` type. It is identical to the [`MAIL New attachment`](../commands/mail-new-attachment.md) command (shortcut). +The `4D.MailAttachment.new()` function creates and returns a new object of the `4D.MailAttachment` type. Ele é idêntico ao comando [`MAIL New attachment`](../commands/mail-new-attachment.md) (atalho). ## .cid @@ -85,7 +85,7 @@ The `.disposition` property contains returns the contents of the attachment object in a `4D.Blob` object. You can use this method with attachment objects received by the [`MAIL Convert from MIME`](EmailObjectClass.md#mail-convert-from-mime) command. +The `.getContent()` function returns the contents of the attachment object in a `4D.Blob` object. Você pode usar esse método com objetos de anexo recebidos pelo comando [`MAIL Convert from MIME`](EmailObjectClass.md#mail-convert-from-mime). ## .name diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md index 1d4465815a17f9..932957f4a8cbe2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/OutgoingMessageClass.md @@ -34,7 +34,7 @@ exposed onHTTPGet Function getFile() : 4D.OutgoingMessage return $result ``` -### OutgoingMessage Object +### Objeto OutgoingMessage 4D.OutgoingMessage objects provide the following properties and functions: @@ -49,7 +49,7 @@ exposed onHTTPGet Function getFile() : 4D.OutgoingMessage :::note -A 4D.OutgoingMessage object is a [non-sharable](../Concepts/shared.md) object. +Um objeto 4D.OutgoingMessage é um objeto [não compartilhável](../Concepts/shared.md). ::: @@ -70,7 +70,7 @@ The `.body` property contains the The `.body` property is read-write. -You can also set the `.body` property using the [`setBody()`](#setbody) function, in which case the `content-type` header is automatically set. +Você também pode definir a propriedade `.body` usando a função [`setBody()`](#setbody), caso em que o cabeçalho `content-type` é automaticamente definido. @@ -84,7 +84,7 @@ You can also set the `.body` property using the [`setBody()`](#setbody) function The `.headers` property contains the current headers of the outgoing message as key/value pairs. -The `.headers` property is read-only. To set a header, use the [`setHeader()`](#setheader) function. +The `.headers` property is read-only. Para definir um cabeçalho, use a função [`setHeader()`](#setheader). @@ -132,10 +132,10 @@ If *body* is not of a supported value type, an error is returned. -| Parâmetro | Tipo | | Descrição | -| --------- | ---- | -- | ---------------------------- | -| \| | Text | -> | Header property to set | -| value | Text | -> | Value of the header property | +| Parâmetro | Tipo | | Descrição | +| --------- | ---- | -- | ------------------------------------- | +| \| | Text | -> | Propriedade de cabeçalho para definir | +| value | Text | -> | Value of the header property | @@ -185,6 +185,6 @@ For a list of HTTP status codes, please refer the [HTTP status code list on Wiki #### Descrição -The `.status` property contains the current status of the outgoing message. This property can be set using the [`setStatus()`](setstatus) function. +The `.status` property contains the current status of the outgoing message. Essa propriedade pode ser definida com a função [`setStatus()`](setstatus). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/POP3TransporterClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/POP3TransporterClass.md index 16cdb413c5a091..151a0b27c550cd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/POP3TransporterClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/POP3TransporterClass.md @@ -42,7 +42,7 @@ POP3 Transporter objects are instantiated with the [`POP3 New transporter`](../c #### Descrição -The `4D.POP3Transporter.new()` function creates and returns a new object of the `4D.POP3Transporter` type. It is identical to the [`POP3 New transporter`](../commands/pop3-new-transporter.md) command (shortcut). +The `4D.POP3Transporter.new()` function creates and returns a new object of the `4D.POP3Transporter` type. É idêntico ao comando [`POP3 New transporter`](../commands/pop3-new-transporter.md) (atalho). @@ -101,7 +101,7 @@ The `4D.POP3Transporter.new()` function flags the *msgNumber* email for deletion from the POP3 server. -No parâmetro *msgNumber*, passe o número do email a apagar. This number is returned in the number property by the [`.getMailInfoList()`](#getmailinfolist) method. +No parâmetro *msgNumber*, passe o número do email a apagar. Esse número é retornado na propriedade number pelo método [`.getMailInfoList()`](#getmailinfolist). Executar esse método não remove de verdade qualquer email. The flagged email will be deleted from the POP3 server only when the `POP3_transporter` object (created with `POP3 New transporter`) is destroyed. A marcação pode ser removida com o método `.undeleteAll()`. @@ -200,9 +200,9 @@ O objeto `boxInfo` retornado contém as seguintes propriedades: The `.getMail()` function returns the `Email` object corresponding to the *msgNumber* in the mailbox designated by the [`POP3 transporter`](#pop3-transporter-object). Essa função permite manejar localmente os conteúdos de email. -Pass in *msgNumber* the number of the message to retrieve. This number is returned in the `number` property by the [`.getMailInfoList()`](#getmailinfolist) function. +Pass in *msgNumber* the number of the message to retrieve. Esse número é retornado na propriedade `number` pela função [`.getMailInfoList()`](#getmailinfolist). -Optionally, you can pass `true` in the *headerOnly* parameter to exclude the body parts from the returned `Email` object. Only headers properties ([`headers`](EmailObjectClass.md#headers), [`to`](EmailObjectClass.md#to), [`from`](EmailObjectClass.md#from)...) são então retornados. Esta opção permite-lhe optimizar a etapa de descarregamento quando muitos e-mails estão no servidor. +Optionally, you can pass `true` in the *headerOnly* parameter to exclude the body parts from the returned `Email` object. Somente propriedades de cabeçalhos ([`headers`](EmailObjectClass.md#headers), [`to`](EmailObjectClass.md#to), [`from`](EmailObjectClass.md#from)...) são então retornados. Esta opção permite-lhe optimizar a etapa de descarregamento quando muitos e-mails estão no servidor. :::note @@ -265,7 +265,7 @@ Se quiser saber o emissário do primeiro email da mailbox: The `.getMailInfo()` function returns a `mailInfo` object corresponding corresponding to the *msgNumber* in the mailbox designated by the [`POP3 transporter`](#pop3-transporter-object). Essa função permite que recupere informação sobre o email. -In *msgNumber*, pass the number of the message to retrieve. This number is returned in the number property by the [`.getMailInfoList()`](#getmailinfolist) method. +In *msgNumber*, pass the number of the message to retrieve. Esse número é retornado na propriedade number pelo método [`.getMailInfoList()`](#getmailinfolist). The `mailInfo` object returned contains the following properties: @@ -390,7 +390,7 @@ Se quiser saber o número total e tamanho dos emails nas mailbox: The `.getMIMEAsBlob()` function returns a BLOB containing the MIME contents for the message corresponding to the *msgNumber* in the mailbox designated by the [`POP3_transporter`](#pop3-transporter-object). -In *msgNumber*, pass the number of the message to retrieve. This number is returned in the number property by the [`.getMailInfoList()`](#getmailinfolist) method. +In *msgNumber*, pass the number of the message to retrieve. Esse número é retornado na propriedade number pelo método [`.getMailInfoList()`](#getmailinfolist). O método retorna uma BLOB vazia se: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/SMTPTransporterClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/SMTPTransporterClass.md index 0abc5acb6f8833..84dfcf7effdc76 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/SMTPTransporterClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/SMTPTransporterClass.md @@ -40,7 +40,7 @@ SMTP Transporter objects are instantiated with the [`SMTP New transporter`](../c #### Descrição -The `4D.SMTPTransporter.new()` function creates and returns a new object of the `4D.SMTPTransporter` type. It is identical to the [`SMTP New transporter`](../commands/smtp-new-transporter.md) command (shortcut). +The `4D.SMTPTransporter.new()` function creates and returns a new object of the `4D.SMTPTransporter` type. É idêntico ao comando [`SMTP New transporter`](../commands/smtp-new-transporter.md) (atalho). @@ -135,7 +135,7 @@ The `.send()` function sends th > The `transporter` object must have already been created using the `SMTP New transporter` command. -O método cria a ligação SMTP se esta ainda não estiver viva. If the `.keepAlive` property of the `transporter` object is **false**, the SMTP connection is automatically closed after the execution of `.send()`, otherwise it stays alive until the `transporter` object is destroyed. For more information, please refer to the [`SMTP New transporter`](#smtp-new-transporter) command description. +O método cria a ligação SMTP se esta ainda não estiver viva. If the `.keepAlive` property of the `transporter` object is **false**, the SMTP connection is automatically closed after the execution of `.send()`, otherwise it stays alive until the `transporter` object is destroyed. Para obter mais informações, consulte a descrição do comando [`SMTP New transporter`](#smtp-new-transporter). Em *mail*, passe um objeto [`Email`](EmailObjectClass.md#email-object) válido para enviar. As propriedades de origem (de onde vem o e-mail) e de destino (um ou mais destinatários) devem ser incluídas, as restantes propriedades são opcionais. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/SessionClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/SessionClass.md index c7e652fa996712..26f883b5eb86ab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/SessionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/SessionClass.md @@ -3,7 +3,7 @@ id: SessionClass title: Session --- -Session objects are returned by the [`Session`](../commands/session.md) command. These objects provide the developer with an interface allowing to manage the current user session and execute actions such as store contextual data, share information between session processes, launch session-related preemptive processes, or (web only) manage [privileges](../ORDA/privileges.md). +Os objetos de sessão são retornados pelo comando [`Session`](../commands/session.md). These objects provide the developer with an interface allowing to manage the current user session and execute actions such as store contextual data, share information between session processes, launch session-related preemptive processes, or (web only) manage [privileges](../ORDA/privileges.md). ### Tipos de sessão @@ -152,7 +152,7 @@ Privileges are assigned to a Session using the [`setPrivileges()`](#setprivilege #### Exemplo -The following [`roles.json`](../ORDA/privileges.md#rolesjson-file) has been defined: +O seguinte arquivo [`roles.json`](../ORDA/privileges.md#rolesjson-file) foi definido: ```json { @@ -356,7 +356,7 @@ The `.info` property describes the remote :::note - The `.info` object is the same object as the one returned in the "session" property by the [`Process activity`](../commands/process-activity.md) command for remote client and stored procedure sessions. -- The `.info` object is the same object as the one returned by the [`Session info`](../commands/session-info.md) command for a standalone session. +- O objeto `.info` é o mesmo objeto retornado pelo comando [`Session info`](../commands/session-info.md) para uma sessão autônoma. ::: @@ -477,15 +477,15 @@ The `.setPrivileges()` function contains the encoding of the response body content. Esta propriedade só está disponível se o [`dataType`](#datatype) for "text". +The `.exitCode` property contains the exit code returned by the external process. Parâmetro Essa propriedade é **somente leitura**. @@ -396,7 +396,7 @@ Se não ocorrer nenhum erro, `.errors` será undefined. #### Descrição -The `.exitCode` property contains the exit code returned by the external process. Se o processo não tiver terminado normalmente, `exitCode` é *undefined*. +Parâmetro Se o processo não tiver terminado normalmente, `exitCode` é *undefined*. Essa propriedade é **somente leitura**. @@ -447,7 +447,7 @@ Essa propriedade é **somente leitura**. #### Descrição -The `.postMessage()` function allows you to write on the input stream (stdin) of the external process. No parâmetro *message*, passe o texto a ser escrito em *stdin*. +Parâmetro No parâmetro *message*, passe o texto a ser escrito em *stdin*. The `.postMessage()` function also accepts a Blob type value in *messageBLOB* to pass in *stdin*, so that you can post binary data. @@ -465,7 +465,7 @@ You can use the `.dataType` property of the [options object](#options-object) to The `.response` property contains the concatenation of all data returned once the request is terminated, i.e. the full message received from the process output. -The type of the message is defined according to the [`dataType`](#datatype) attribute. +O tipo da mensagem é definido conforme o atributo [`dataType`](#datatype). Essa propriedade é **somente leitura**. @@ -565,7 +565,7 @@ Em *timeout*, passe um valor em segundos. The `SystemWorker` script will wait fo Actually, `.wait()` waits until the end of processing of the `onTerminate` formula, except if the *timeout* is reached. Se *timeout* for alcançado, o `SystemWorker` não é morto. -During a `.wait()` execution, callback functions are executed, especially callbacks from other events or from other `SystemWorker` instances. You can exit from a `.wait()` by calling [`terminate()`](#terminate) from a callback. +During a `.wait()` execution, callback functions are executed, especially callbacks from other events or from other `SystemWorker` instances. Você pode sair de um `.wait()` chamando [`terminate()`](#terminate) de um retorno de chamada. Esta função devolve o objecto SystemWorker. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebServerClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebServerClass.md index 917b31e481b2a9..d0cf8732fc412c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebServerClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebServerClass.md @@ -7,7 +7,7 @@ The `WebServer` class API allows you to start and monitor a web server for the m ### Objeto Web Server -Web server objects are instantiated with the [`WEB Server`](#web-server) command. +Os objetos servidor Web são instanciados com o comando [`WEB Server`](#web-server). Eles oferecem as propriedades abaixo e funções: @@ -67,7 +67,7 @@ A propriedade **.accessKeyDefined** contém **.certificateFolder** : Text -Path of the folder where the certificate files are located. O caminho está formatado no caminho completo POSIX usando sistemas de arquivos. When using this property in the `settings` parameter of the [`.start()`](#start) function, it can be a [`Folder` object](FolderClass.md). +Path of the folder where the certificate files are located. O caminho está formatado no caminho completo POSIX usando sistemas de arquivos. Ao usar essa propriedade no parâmetro `settings` da função [`.start()`](#start), ela pode ser um objeto [`Folder`](FolderClass.md). @@ -101,7 +101,7 @@ The character set that the 4D W **.cipherSuite** : Text -The cipher list used for the secure protocol. Define a prioridade dos algoritmos de criptografia implementados pelo servidor web 4D. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). See the [ciphers page](https://www.openssl.org/docs/manmaster/man1/ciphers.html) on the OpenSSL site. +The cipher list used for the secure protocol. Define a prioridade dos algoritmos de criptografia implementados pelo servidor web 4D. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). Veja a [página ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) no site OpenSSL. @@ -133,7 +133,7 @@ Contains the list of allowed ho - 192.168.\* - 192.168.\*:8081 - - - + - - - \*.myDomain.com - myProject.myDomain.com diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketClass.md index 10f498dc1024bc..029a9ca0972f83 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketClass.md @@ -193,11 +193,11 @@ The `.send()` function sends *message Os conteúdos seguintes são enviados em função do tipo de *message*: -| Tipo | Conteúdo | -| ------ | -------------------------------------------------------------------------------------------------------------------------------------- | -| Text | Texto em UTF-8 | -| Blob | Dados binários | -| Object | Text in JSON UTF-8 (same result as with [`JSON Stringify`](https://doc.4d.com/4dv20/help/command/en/page1217.html)) | +| Tipo | Conteúdo | +| ------ | --------------------------------------------------------------------------------------------------------------------------------------------- | +| Text | Texto em UTF-8 | +| Blob | Dados binários | +| Object | Texto em JSON UTF-8 (o mesmo resultado que com [`JSON Stringify`](https://doc.4d.com/4dv20/help/command/en/page1217.html)) | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md index 7ffb07dbc578ce..4ba8da0099714e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md @@ -80,11 +80,11 @@ The `.send()` function send Os conteúdos seguintes são enviados em função do tipo de *message*: -| Tipo | Conteúdo | -| ------ | --------------------------------------------------------------------------------------------------------------------------------------- | -| Text | Texto em UTF-8 | -| Blob | Dados binários | -| Object | Text in JSON UTF-8 (same result as with [`JSON Stringify`](https://doc.4d.com/4dv19R/help/command/en/page1217.html)) | +| Tipo | Conteúdo | +| ------ | ---------------------------------------------------------------------------------------------------------------------------------------------- | +| Text | Texto em UTF-8 | +| Blob | Dados binários | +| Object | Texto em JSON UTF-8 (o mesmo resultado que com [`JSON Stringify`](https://doc.4d.com/4dv19R/help/command/en/page1217.html)) | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipArchiveClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipArchiveClass.md index bb0d1d3b5dda1c..dd4323db7cde81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipArchiveClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipArchiveClass.md @@ -5,7 +5,7 @@ title: ZIPArchive A 4D ZIP archive is a `File` or `Folder` object containing one or more files or folders, which are compressed to be smaller than their original size. Esses arquivos são criados com uma extensão ".zip" e podem ser usados para poupar espaço em disco ou transferir arquivos via meios que tenham limitações de tamanho (por exemplo, um email ou por uma rede). -- You create a 4D ZIP archive with the [`ZIP Create archive`](../commands/zip-create-archive.md) command. +- Você cria um arquivo ZIP 4D com o comando [`ZIP Create archive`](../commands/zip-create-archive.md). - 4D [`ZIPFile`](ZipFileClass.md) and [`ZIPFolder`](ZipFolderClass.md) instances are available through the [`root`](#root) property (`ZIPFolder`) of the object returned by [`ZIP Read archive`](../commands/zip-read-archive.md) command. ### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipFileClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipFileClass.md index 989410aa9d3960..7ce4981557cdeb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipFileClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipFileClass.md @@ -3,7 +3,7 @@ id: ZipFileClass title: ZIPFile --- -The following properties and functions from the [File](FileClass.md) class are available to `ZIPFile` objects: +As seguintes propriedades e funções da classe [File](FileClass.md) estão disponíveis para os objetos `ZIPFile`: | APIs disponíveis de [File](FileClass.md) para ZIPFile | Comentário | | ----------------------------------------------------------------------------------- | -------------------------------------- | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipFolderClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipFolderClass.md index 3370ca69187521..8f2525fddd1120 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipFolderClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/ZipFolderClass.md @@ -5,7 +5,7 @@ title: ZIPFolder The following properties and functions from the [Folder](FolderClass.md) class are available to `ZIPFolder` objects: -| Available [Folder](FolderClass.md) APIs for ZIPFolder | Comentário | +| APIs disponíveis de [Folder](FolderClass.md) para ZIPFolder | Comentário | | -------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | | [](FolderClass.md#copyto) | | | [](FolderClass.md#creationdate) | A data pode ser diferente para a pasta `root` de uma pasta dentro do arquivo | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/overview.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/overview.md index c525b49a8b52d7..79f88578c528a9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/API/overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/overview.md @@ -19,4 +19,4 @@ As seguintes convenções são utilizadas na sintaxe da função: ## Veja também -[Classes in the 4D Language](../Concepts/classes.md). +[Classes na linguagem 4D](../Concepts/classes.md). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/classes.md b/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/classes.md index 43a0efa8078621..51518b53779c22 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/classes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/classes.md @@ -158,7 +158,7 @@ Quando uma classe é [definida](#class-definition) no projeto, ela é carregada - [`new()`](API/ClassClass.md#new) função, permitindo instanciar objetos de classe - Propriedade [`isShared`](API/ClassClass.md#isshared), true se a classe é [compartilhada](#classes-compartilhadas) - Propriedade [`isSingleton`](API/ClassClass.md#issingleton), true se a classe define uma [singleton](#singleton-classes). -- [`isSectionSingleton`](API/ClassClass.md#issectionsingleton) property, true if the class defines a [session singleton](#singleton-classes). +- propriedade [`isSectionSingleton`](API/ClassClass.md#issectionsingleton), true se a classe definir um [session singleton](#singleton-classes). - Propriedade [`me`](API/ClassClass.md#me), permitindo instanciar e acessar [singletons](#singleton-classes). Além disso, um objeto de classe pode fazer referência a um objeto [`construtor`](#class-constructor) (opcional). @@ -610,11 +610,11 @@ The following commands have specific features when they are used within class fu The [`Super`](../commands/super.md) command allows calls to the [`superclass`](../API/ClassClass#superclass), i.e. the parent class of the function. Só pode haver uma função de construtor em uma classe (caso contrário um erro é retornado). -For more details, see the [`Super`](../commands/super.md) command description. +Para obter mais detalhes, consulte a descrição do comando [`Super`](../commands/super.md). ### `This` -The [`This`](../commands/this.md) command returns a reference to the currently processed object. In most cases, the value of `This` is determined by how a class function is called. Usually, `This` refers to the object the function was called on, as if the function were on the object. +O comando [`This`](../commands/this.md) retorna uma referência ao objeto processado no momento. In most cases, the value of `This` is determined by how a class function is called. Usually, `This` refers to the object the function was called on, as if the function were on the object. Exemplo: @@ -634,7 +634,7 @@ $o.b:=3 $val:=$o.f() //8 ``` -For more details, see the [`This`](../commands/this.md) command description. +Para obter mais detalhes, consulte a descrição do comando [`This`](../commands/this.md). ## Comandos de classe @@ -729,17 +729,17 @@ As classes Singleton não são suportadas por [classes baseadas em ORDA](../ORDA The following table indicates the scope of a singleton instance depending on where it was created: -| Singleton criado em | Scope of process singleton | Scope of shared singleton | Scope of session singleton | -| -------------------- | ---------------------------------------------------------------------------------------------------------- | ------------------------- | --------------------------------------------------------------------- | -| **4D usuário único** | Processo | Aplicação | Application or Web/REST session | -| **4D Server** | Processo | Máquina 4D Server | Client/server session or Web/REST session or Stored procedure session | -| **Modo remoto 4D** | Process (_nota_: os singletons não são sincronizados no processo gêmeo) | Máquina remota 4D | 4D remote machine or Web/REST session | +| Singleton criado em | Scope of process singleton | Escopo do singleton compartilhado | Scope of session singleton | +| -------------------- | ---------------------------------------------------------------------------------------------------------- | --------------------------------- | --------------------------------------------------------------------- | +| **4D usuário único** | Processo | Aplicação | Application or Web/REST session | +| **4D Server** | Processo | Máquina 4D Server | Client/server session or Web/REST session or Stored procedure session | +| **Modo remoto 4D** | Process (_nota_: os singletons não são sincronizados no processo gêmeo) | Máquina remota 4D | 4D remote machine or Web/REST session | Once instantiated, a singleton class (and its singleton) exists as long as a reference to it exists somewhere in the application running on the machine. -### Creating and using singletons +### Criação e uso de singletons -You declare singleton classes by adding appropriate keyword(s) before the [`Class constructor`](#class-constructor): +Você declara classes singleton adicionando a(s) palavra(s)-chave apropriada(s) antes do [`Class constructor`](#class-constructor): - To declare a (process) singleton class, write `singleton Class Constructor()`. - To declare a shared singleton class, write `shared singleton Class constructor()`. @@ -748,7 +748,7 @@ You declare singleton classes by adding appropriate keyword(s) before the [`Clas :::note - Session singletons are automatically shared singletons (there's no need to use the `shared` keyword in the class constructor). -- Singleton shared functions support [`onHttpGet` keyword](../ORDA/ordaClasses.md#onhttpget-keyword). +- As funções compartilhadas Singleton suportam a palavra-chave `onHttpGet`(../ORDA/ordaClasses.md#onhttpget-keyword). ::: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/dt_collection.md b/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/dt_collection.md index 3070fb2f24a36b..ae87b6eb7cf351 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/dt_collection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/dt_collection.md @@ -46,7 +46,7 @@ As coleções devem ter sido inicializadas, por exemplo utilizando o comando ` | Objecto do nome da classe 4D | | `cs.` | Objeto do nome da classe usuário | | `cs.` | Objeto do nome da classe do componente `` | @@ -256,11 +256,11 @@ System variables are used by [4D commands](../commands/command-index.md). Refer | `Document` | Text | Contains the "long name" (full path+name) of the last file opened or created using commands such as [Open document](https://doc.4d.com/4dv20/help/command/en/page264.html) or [SELECT LOG FILE](https://doc.4d.com/4dv20/help/command/en/page345.html). | | `FldDelimit`, `RecDelimit` | Text | Contain the character codes that will be used respectively as a field separator (default is **Tab** (9)) and record separator (default is **carriage return** (13)) when importing or exporting text. Para usar um separador diferente, atribua um novo valor à variável do sistema. | | `Error`, `Error method`, `Error line`, `Error formula` | Text, Longint | Used in an error-catching method installed by the [`ON ERR CALL`](https://doc.4d.com/4dv20/help/command/en/page155.html) command. See [Handling errors within the method](../Concepts/error-handling.md#handling-errors-within-the-method). | -| `MouseDown` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to 1 when the mouse button is pushed, otherwise set to 0. | -| `MouseX`, `MouseY` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command.
  • In a `MouseDown=1` event, `MouseX` and `MouseY` are respectively set to the vertical and horizontal coordinates of the click. Both values are expressed in pixels and use the local coordinate system of the window.
  • In case of a picture field or variable, `MouseX` and `MouseY` return the local coordinates of a mouse click in the [`On Clicked`](../Events/onClicked.md), [`On Double Clicked`](../Events/onDoubleClicked.md) and [`On Mouse Up`](../Events/onMouseUp.md) form events. Local coordinates of the mouse cursor are also returned in the [`On Mouse Enter`](../Events/onMouseEnter.md) and [`On Mouse Move`](../Events/onMouseMove.md) form events. For more information, see the [Mouse Coordinates in a picture](../FormEditor/pictures.md#mouse-coordinates-in-a-picture) section.
  • | -| `KeyCode` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to the character code of the key that was just pressed. If the key is a function key, `KeyCode` is set to a special code. | -| `Modifiers` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to the keyboard modifier keys (Ctrl/Command, Alt/Option, Shift, Caps Lock). | -| `MouseProc` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to the process number in which the last event took place | +| `MouseDown` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to 1 when the mouse button is pushed, otherwise set to 0. | +| `MouseX`, `MouseY` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html).
  • In a `MouseDown=1` event, `MouseX` and `MouseY` are respectively set to the vertical and horizontal coordinates of the click. Both values are expressed in pixels and use the local coordinate system of the window.
  • In case of a picture field or variable, `MouseX` and `MouseY` return the local coordinates of a mouse click in the [`On Clicked`](../Events/onClicked.md), [`On Double Clicked`](../Events/onDoubleClicked.md) and [`On Mouse Up`](../Events/onMouseUp.md) form events. Local coordinates of the mouse cursor are also returned in the [`On Mouse Enter`](../Events/onMouseEnter.md) and [`On Mouse Move`](../Events/onMouseMove.md) form events. For more information, see the [Mouse Coordinates in a picture](../FormEditor/pictures.md#mouse-coordinates-in-a-picture) section.
  • | +| `KeyCode` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to the character code of the key that was just pressed. If the key is a function key, `KeyCode` is set to a special code. | +| `Modifiers` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to the keyboard modifier keys (Ctrl/Command, Alt/Option, Shift, Caps Lock). | +| `MouseProc` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to the process number in which the last event took place | :::note diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/basics.md b/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/basics.md index 85b70f9d919b3a..73c41ec2a7a4e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/basics.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/basics.md @@ -70,27 +70,31 @@ A janela de erro de sintaxe propõe várias opções: - **Continuar**: la ejecución continua. A linha com o erro pode ser parcialmente executada, dependendo da localização do erro. Continue com cuidado: o erro pode impedir que o resto do seu método seja executado corretamente. Recomendamos hacer clic en **Continuar** sólo si el error está en una llamada trivial (como `SET WINDOW TITLE`) que no impide ejecutar y probar el resto de su código. -> Consejo: para ignorar un error que ocurre repetidamente (por ejemplo, en bucles), puede convertir el botón **Continuar** en un botón **Ignorar**. Mantenga presionada la tecla **Alt** (Windows) u **Opción** (macOS) y haga clic en el botón **Continuar** la primera vez que aparece. La etiqueta del botón cambia a **Ignorar** si el diálogo es llamado de nuevo por el mismo error. +:::tip -- **Abandonar**: detiene la ejecución del método y devuelve al estado antes del inicio de la ejecución del método: +To ignore an error that occurs repeatedly (for example, in loops), you can turn the **Continue** button into an **Ignore** button. Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. + +::: + +- **Abort**: Stops method execution and returns to the state before the method started executing: - Se um método formulário ou um método objeto estiver a ser executado em resposta a um evento, é interrompido e o usuário regressa ao formulário. - Se o método estiver sendo executado a partir do ambiente Application, o usuário regressa a esse ambiente. -- **Copiar**: copia la información de depuración en el portapapeles. A informação descreve o ambiente interno do erro (número, componente interno, etc.). Eles são formatados como texto tabulado. +- **Copy**: Copies the debugging information into the clipboard. A informação descreve o ambiente interno do erro (número, componente interno, etc.). Eles são formatados como texto tabulado. -- **Guardar...**: guarda el contenido de la ventana de error de sintaxis y la cadena de llamadas en un archivo `.txt`. +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## Depurador -Un error común de los principiantes al tratar con la detección de errores es hacer clic en **Abandonar** en la ventana de error de sintaxis, volver al editor de código, y tratar de averiguar lo que está pasando mirando el código. Não faça isso! Ahorrará mucho tiempo y energía utilizando siempre el **Depurador**. +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. Não faça isso! You will save plenty of time and energy by always using the [**Debugger**](debugger.md). O depurador permite-lhe percorrer os métodos lentamente. Apresenta todas as informações necessárias para compreender o motivo do erro. Assim que tiver esta informação, saberá como corrigir o erro. -Outra razão para utilizar o depurador é para desenvolver código. Por vezes, pode escrever um algoritmo que é mais complexo do que o habitual. Apesar de todos os sentimentos de realização, não pode ter a certeza absoluta de que a sua codificação está 100% correcta. En lugar de ejecutarlo "ciego", puede utilizar el comando `TRACE` al comienzo de su código, luego ejecutarlo paso a paso para mantener un ojo en lo que sucede. +Outra razão para utilizar o depurador é para desenvolver código. Por vezes, pode escrever um algoritmo que é mais complexo do que o habitual. Apesar de todos os sentimentos de realização, não pode ter a certeza absoluta de que a sua codificação está 100% correcta. Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## Rupturas -No processo de depuração, pode ser necessário saltar o rastreio de algumas partes do código até uma determinada linha. O, puede querer rastrear el código cuando una expresión dada tiene un determinado valor (e.. "$myVar > 1000"), o cada vez que se llama un comando 4D específico. +No processo de depuração, pode ser necessário saltar o rastreio de algumas partes do código até uma determinada linha. Or, you may want to trace the code when a given expression has a certain value (e.g. `$myVar > 1000`), or every time a specific 4D command is called. -Estas necesidades están cubiertas por **puntos de interrupción** y las funciones de **captura de comando**. Podem ser configurados a partir do editor de código, do depurador ou do explorador de execução. +These needs are covered by **breakpoints** and **command catching** features. Podem ser configurados a partir do editor de código, do depurador ou do explorador de execução. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md b/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md index 42ecf4e72817a1..21ea52890bd4fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/breakpoints.md @@ -15,7 +15,7 @@ A captura de um comando permite começar a rastrear a execução de qualquer pro Para criar um ponto de interrupção, clique na margem esquerda do painel Código-fonte no depurador ou no Editor de código. -En el siguiente ejemplo, se ha definido un punto de ruptura (la viñeta roja), en el depurador, en la línea `If ($in.dataClass#Null)`: +In the following example, a break point (the red bullet) has been set, in the debugger, on the line `If (Value type(request.reponse.headers...`: ![break-point](../assets/en/Debugging/break.png) diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugger.md b/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugger.md index c4953084cf0b28..7ec76892047f6b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugger.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugger.md @@ -18,7 +18,7 @@ If you are used to coding with **VS Code**, you can also use this editor to debu Há várias formas de exibir o depurador: - Clicar no botão **Trace** na [janela Syntax Error] (basics.md#syntax-error-window) -- Usando o comando [`TRACE`] (https://doc.4d.com/4dv19/help/command/en/page157.html) +- Usando o comando [`TRACE`](../commands-legacy/trace.md) - Clicando no botão **Depurar** na janela Executar método ou selecionando o botão **Executar e depurar...** no Editor de Código - Usando **Alt+Shift+Botão Direito** (Windows) ou **Ctrl+Option+Cmd+Click** (macOS) enquanto um método está sendo executado, em seguida, selecionando o processo para rastrear no menu pop-up: @@ -29,8 +29,8 @@ Há várias formas de exibir o depurador: Quando chamada, a janela do depurador fornece o nome do método ou da função de classe que rastreia atualmente e a ação que causa o aparecimento inicial da janela do depurador. Por exemplo, na janela do depurador acima: -- \*Clients_BuildLogo é o método que é rastreado -- A janela do depurador apareceu porque detectou uma chamada para o comando `C_PICTURE` e este comando era um dos comandos a ser pego +- _drop_ is the method being traced +- The debugger window appeared because of a break point. A exibição de uma nova janela do depurador utiliza a mesma configuração que a última janela exibida na mesma sessão. Se executar vários processos usuário, pode rastreá-los de forma independente e ter uma janela do depurador aberta para cada processo. @@ -52,29 +52,33 @@ A barra de ferramentas do depurador inclui vários botões, associados a atalhos ![execution-control-toolbar-buttons](../assets/en/Debugging/executionToolbarButtons.png) -> Os atalhos padrão podem ser personalizados na página Atalhos da caixa de diálogo Preferências. +:::note + +Default shortcuts can be customized in the [Shortcuts Page](../Preferences/shortcuts.md) of the Preferences dialog box. + +::: #### Retomar execução Interrompe o modo de rastreamento e retoma o curso normal da execução do método. -> **Shift** + **F5** o **Shift** + clic en el botón **No Trace** retoma la ejecución. Também desativa todas as chamadas TRACE subsequentes para o processo atual. +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. Também desativa todas as chamadas TRACE subsequentes para o processo atual. #### Executar passo a passo Executa a linha de método atual, indicada pelo contador de programa (a seta amarela). O depurador passa para a linha seguinte. -O botão Executar não entra em sub-rotinas e funções, mantém-se ao nível do método que rastreia atualmente. Se você quiser rastrear também as chamadas de subrotinas e funções, use o botão **Step Into**. +O botão Executar não entra em sub-rotinas e funções, mantém-se ao nível do método que rastreia atualmente. If you want to also trace subroutines and functions calls, use the **Step Into** button. -Na depuração remota, se o método for executado no servidor, o método principal é chamado após a execução da última linha do método secundário. Se o método pai for executado no lado remoto, o botão **Step Over** terá o mesmo efeito que o botão **No Trace**. +Na depuração remota, se o método for executado no servidor, o método principal é chamado após a execução da última linha do método secundário. If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### Passo a passo detalhado Quando uma linha que chama outro método (sub-rotina ou função) é executada, clique neste botão para exibir o outro método e percorrê-lo. -O novo método torna-se o atual (topo) método no [Chame Chain Pane](#call-chain-pane) da janela do Depurador. +The new method becomes the current (top) method in the [Call Chain Pane](#call-chain-pane) of the Debugger window. -Ao executar uma linha que não chama outro método, esse botão tem o mesmo efeito que o botão **Step Over**. +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. #### Step Out @@ -95,9 +99,9 @@ Interrompe a execução do método e regressa ao estado anterior ao início da e #### Abortar e editar -O método que está sendo executado quando você clica no botão **Abortar e editar** é aberto no Editor de código. +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Sugestão**: Utilize este botão quando você sabe quais alterações são necessárias no seu código e quando essas alterações são necessárias para prosseguir com o teste dos seus métodos. Quando terminar as alterações, volte a executar o método. +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. Quando terminar as alterações, volte a executar o método. #### Editar @@ -105,18 +109,20 @@ O método executado no momento em que se clica no botão Editar abre-se no Edito Se utilizar este botão para modificar um método, as modificações só entram em vigor na próxima vez que este for executado. -> **Dica:** Use este botão quando você souber quais alterações são necessárias no seu código e quando eles não interferem com o resto do código a ser executado ou rastreado. +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. -#### Botão Salvar parâmetros +## Auto-saving -Salva a configuração atual da janela do depurador e a torna a configuração padrão. Isto inclui: +The current state of the debugger window is automatically saved in the project. Isto inclui: -- o tamanho e a posição da janela -- a posição das linhas de divisão e o conteúdo da área que avalia as expressões +- the size and position of the window, +- the position of the division lines, +- o [modo de exibição](#display-mode), +- the expressions currently displayed in the custom watch pane expressions. By default, expressions are saved with the current method or function. You can [**pin an expression**](#pin-an-expression) to keep it displayed in all contexts. -Estes parâmetros são armazenados no projeto. +The **Default window configuration** button restores the default position and size of the current window (including the division lines and the window itself). -Essa ação não está disponível no modo de depuração remota (consulte [Depuração de máquinas remotas](./debugging-remote)). +![factory-settings-button](../assets/en/Debugging/debugger-factory.png) ## Janela de expressão @@ -134,9 +140,9 @@ A qualquer momento, você pode arrastar e soltar temas, sublistas de temas (se h ### Lista de expressões -#### Objetos linha +#### Line Expressions -Este tema permite-lhe acompanhar os valores dos objetos ou expressões: +This theme lets you keep track of the values of expressions: - usado na linha de código a ser executada (aquela marcada com o contador de programas - a seta amarela no [Painel Código-fonte] (#painel código-fonte)), - utilizado na linha de código anterior @@ -294,8 +300,9 @@ You can also use the [Call chain](https://doc.4d.com/4dv19/help/command/en/page1 O Painel de controle personalizado é útil para avaliar expressões. É semelhante ao [Watch Pane](#watch-pane), exceto que aqui você decide quais expressões são exibidas. Qualquer tipo de expressão pode ser avaliado: -- campo - variável +- object and object property +- campo - pointer - cálculo - Comando 4D @@ -304,41 +311,72 @@ O Painel de controle personalizado é útil para avaliar expressões. É semelha ![custom-Watch-pane](../assets/en/Debugging/custom-watch-pane.png) -É possível avaliar qualquer expressão que possa ser apresentada sob a forma de texto. Isto não abrange os campos ou variáveis imagem e BLOB. Para exibir o conteúdo do BLOB, você pode usar comandos BLOB, como [BLOB to text] (https://doc.4d.com/4dv19/help/command/en/page555.html). +É possível avaliar qualquer expressão que possa ser apresentada sob a forma de texto. Isto não abrange os campos ou variáveis imagem e BLOB. To display BLOB contents, you can use BLOB commands, such as [BLOB to text](../commands-legacy/blob-to-text.md). + +### Display mode + +You select the display mode to be used for all debugger windows using the **Display** option of the Custom Watch pane's [contextual menu](#contextual-menu). + +![custom-Watch-pane](../assets/en/Debugging/custom-watch-pane-display-menu.png) + +As opções abaixo estão disponíveis: + +- **Local variables**: Displays and evaluates automatically local variables as soon as they are initialized in the running source code. +- **Line Expressions**: Displays and evaluates automatically the same contents as the [Line Expressions](#line-expressions) item of the Expression List. +- **Expressions**: Only displays custom expressions that you have entered manually. Custom expressions have a specific blue icon ![custom-expression-icon](../assets/en/Debugging/custom-expression-icon.png). + +:::note + +Whatever the display mode, you can add custom expressions at any moment. + +::: ### Manuseamento de expressões +You can enter any expression to evaluate. A custom expression is only displayed in the current debugger window, except if you [pin it](#pin-an-expression). + Existem várias formas de adicionar expressões à lista: - Arraste e solte um objeto ou expressão do painel Watch ou do painel Call Chain - Selecione uma expressão no [painel Source Code](#source-code-pane) e pressione **ctrl+D** (Windows) ou **cmd+D** (macOS) - Dê duplo clique em algum lugar no espaço vazio do Custom Watch Pane (adiciona uma expressão com um nome de espaço reservado que você pode editar) - -Pode introduzir qualquer fórmula que devolva um resultado. +- Selecione uma [opção de exibição](#display-mode) que insere expressões automaticamente. +- Select **New Expression...** in the Custom Watch pane's [contextual menu](#contextual-menu) to add an expression using the **Formula Editor**. Pode introduzir qualquer fórmula que devolva um resultado. Para editar uma expressão, clique nela para selecioná-la e, em seguida, clique novamente ou pressione **Enter** no seu teclado. -Para excluir uma expressão, clique nela para selecioná-la e, em seguida, pressione **Backspace** ou **Delete** no teclado. +To delete a custom expression, click on it to select it, then press **Backspace** or **Delete** on your keyboard, or click on the **x** icon. -> \*\*Aviso: Tenha cuidado quando avalia uma expressão 4D que modifica o valor de uma das variáveis de sistema (por exemplo, a variável OK) porque a execução do resto do método pode ser alterada. +:::warning -### Menu contextual +Be careful when you evaluate a 4D expression modifying the value of one of the System Variables (for instance, the OK variable) because the execution of the rest of the method may be altered. -O menu de contexto do Custom Watch Pane lhe dá acesso ao editor de fórmulas 4D e a outras opções: +::: -![custom-watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-context-menu.png) +### Pinning an expression + +You can click on the pushpin icon to pin an expression: + +![pinning-expression](../assets/en/Debugging/pin-expression.png) -**Nova expressão**: Isso insere uma nova expressão e exibe o 4D Formula Editor. +The expression will then be displayed in all debugger windows. -![custom-Watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-formula-editor.png) +### Menu contextual + +The Custom Watch Pane’s menu is available on a contextual click or using the ![menu](../assets/en/Debugging/custom-watch-pane-menu.png) icon: + +![custom-watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-context-menu.png) -For more information on the Formula Editor, see the [4D Design Reference manual](https://doc.4d.com/4Dv19/4D/19/4D-Design-Reference.100-5416591.en.html). +- **Display**: Selects the [display mode](#display-mode) to be used for all debugger windows. +- **New Expression...**: Inserts a new expression and displays the 4D Formula Editor. + ![custom-Watch-pane-context-menu](../assets/en/Debugging/custom-watch-pane-formula-editor.png) + For more information on the Formula Editor, see the [4D Design Reference manual](https://doc.4d.com/4Dv20/4D/20.2/Description-of-formula-editor.300-6750169.en.html). -- **Inserir comando**: Atalho para inserir um comando 4D como uma nova expressão. -- **Excluir tudo**: Remove todas as expressões do Painel de Vigia Personalizado. -- **Expressões Padrão**: Copia a lista de expressões do Watch. +* **Insert Command...**: Displays a menu allowing to insert a 4D command as a new expression. +* **Excluir tudo**: Remove todas as expressões do Painel de Vigia Personalizado. +* **Standard Expressions**: Copies the Watch Pane's list of expressions as custom expressions. -> This option is not available in [remote debugging mode](debugging-remote.md). +> Essa opção não está disponível no [modo de depuração remota](debugging-remote.md). - **Recolher tudo/Expandir tudo**: Recolhe ou expande todas as listas hierárquicas. - **Mostrar tipos**: Exibe o tipo de cada item da lista (quando apropriado). @@ -353,6 +391,12 @@ O painel Código-fonte mostra o código-fonte do método ou função que está s Essa área também permite que você adicione ou remova [**pontos de interrupção**] (breakpoints.md). +### Prototype + +The prototype of the currently executed method or function in the Call chain is displayed on the top of the pane: + +![prototype](../assets/en/Debugging/prototype.png) + ### Tips Passe o ponteiro do rato sobre qualquer expressão para visualizar uma dica de ferramenta que indica: @@ -410,12 +454,9 @@ O menu contextual do painel Código-fonte fornece acesso a várias funções que ![source-code-pane-context-window](../assets/en/Debugging/sourceCodePaneContext.png) -- **Goto Definition**: Vai para o local onde o objeto selecionado está definido. Este comando está disponível para: - - _Métodos do projeto:_ exibe o conteúdo do método em uma nova janela do Editor de Código - - _Campos:_ Exibe as propriedades do campo no inspetor da janela de estrutura - - _Tabelas:_ Exibe as propriedades da tabela no inspetor da janela Estrutura - - _Formulários:_ Apresenta o formulário no editor de formulários - - _Variáveis_ (parâmetro local, de processo, entre processos ou $n ): exibe a linha no método atual ou entre os métodos do compilador em que a variável é declarada +- **Show documentation**: Opens the documentation for the target element. Este comando está disponível para: + - _Project methods_, _user classes_: Selects the method in the Explorer and switches to the documentation tab + - _4D commands, functions, class names:_ Displays the online documentation. - **Search References** (também disponível no Editor de código): Pesquisa todos os objetos do projeto (métodos e formulários) nos quais o elemento atual do método é referenciado. O elemento atual é o elemento selecionado ou o elemento onde se encontra o cursor. Pode ser o nome de um campo, variável, comando, cadeia de caracteres, etc. Os resultados da pesquisa são apresentados numa nova janela de resultados padrão. - **Cópia**: Cópia padrão da expressão selecionada para a área de transferência. - **Copiar para o Painel de Expressão**: Copia a expressão selecionada para o painel de observação personalizado. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md b/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md index 8a9fa777aec84c..413866392f1c8b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugging-remote.md @@ -20,9 +20,7 @@ Apenas um depurador pode depurar uma aplicação 4D Server num determinado momen - o depurador local do Servidor 4D (padrão) - se o servidor não estiver sendo executado sem interface. - o depurador de um cliente 4D remoto - se a sessão remota tiver acesso ao modo Desenho. - the [Qodly debugger](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server) on 4D Server - if the server allows access to Qodly Studio. -- the VS Code debugger, provided you installed the [4D-Debugger](https://github.com/4d/4D-Debugger-VSCode) extension. - -::: +- the **VS Code** debugger, provided you installed the [4D-Debugger](https://github.com/4d/4D-Debugger-VSCode) extension. O depurador anexado é chamado sempre que um 4D Server se encontra: @@ -35,7 +33,7 @@ Tenga en cuenta que los mensajes de error se envían a la máquina depuradora as Note que: -- El código ejecutado en el método `On Server Startup Database` no se puede depurar de forma remota. Só pode ser depurado no lado do servidor +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. Só pode ser depurado no lado do servidor - Se não estiver ligado um depurador, o código em execução não é interrompido pelos comandos de depuração ## Ligar o depurador @@ -51,20 +49,20 @@ Pode anexar o depurador a qualquer cliente 4D remoto autorizado a conectar-se à Para anexar o depurador a um cliente 4D remoto: -1. En la barra de menús de 4D Server, seleccione **Editar** > **Separar depurador** para que el depurador esté disponible para las máquinas remotas (este paso es inútil si 4D Server está funcionando sin interfaz). -2. En un cliente 4D remoto conectado al servidor, seleccione **Ejecutar** > **Adjuntar depurador remoto** +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -Si se acepta el archivo adjunto (ver [Solicitudes de archivo adjunto rechazadas](#rejected-attachment-requests)), el comando de menú se convierte en **Desconectar depurador remoto**. +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. O depurador é então ligado ao cliente 4D remoto: - até ao fim da sessão do usuário -- hasta que se seleccione `Detach Remote Debugger` +- until you select `Detach Remote Debugger` Para ligar o depurador de novo ao servidor: -1. En el cliente 4D remoto que tiene el depurador conectado, seleccione **Ejecutar** > **Separar depurador remoto**. -2. En la barra de menú de 4D Server, seleccione **Editar** > **Adjuntar depurador**. +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > Quando o depurador estiver conectado ao servidor (padrão), todos os processos do servidor são executados automaticamente no modo cooperativo para permitir a depuração. Este fato pode ter um impacto significativo no desempenho. Quando não for necessário depurar na máquina do servidor, recomenda-se desconectar o depurador e anexá-lo a uma máquina remota, se necessário. @@ -72,11 +70,11 @@ Para ligar o depurador de novo ao servidor: 4D permite que você anexe automaticamente o depurador a um cliente 4D remoto ou ao servidor na inicialização: -- En el servidor (si no es headless), esta opción se llama **Attach Debugger At Startup**. Quando o servidor é iniciado, ele anexa automaticamente o depurador (padrão). +- On the server (if not headless), this option is named **Attach Debugger At Startup**. Quando o servidor é iniciado, ele anexa automaticamente o depurador (padrão). -> **Advertencia**: si se selecciona esta opción para un servidor que posteriormente se lanza en modo sin interfaz, el depurador no estará disponible para este servidor. +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- En un cliente 4D remoto, esta opción se llama **Attach Remote Debugger At Startup**. Quando selecionado, o cliente 4D remoto tentará automaticamente anexar o depurador remoto em cada conexão subsequente com o mesmo banco de dados do 4D Server. Si el adjunto es aceptado (ver [Rejected attachment requests](#rejected-attachment-requests)), el depurador remoto se adjunta automáticamente al cliente 4D remoto y se muestra la opción **Detach Remote Debugger**. +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. Quando selecionado, o cliente 4D remoto tentará automaticamente anexar o depurador remoto em cada conexão subsequente com o mesmo banco de dados do 4D Server. If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. > Essa configuração é aplicada por projeto e é armazenada localmente no arquivo [`.4DPreferences`] (Project/architecture.md#userpreferencesusername). @@ -92,5 +90,5 @@ Se uma máquina tentar anexar o depurador enquanto este já estiver anexado, a a A ligação do depurador neste caso exige que: -- el depurador adjunto se separa del servidor o del cliente 4D remoto utilizando respectivamente el comando de menú **Detach debugger** o **Detach remote debugger**, +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - a sessão do cliente remoto 4D anexado é encerrada. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/building.md b/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/building.md index 16574e898b323b..bd4e0761b83267 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/building.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/building.md @@ -20,7 +20,7 @@ O construtor de aplicações permite-lhe: A cria de um pacote de projetos pode ser efetuada utilizando: -- either the [`BUILD APPLICATION`](../commands-legacy/build-application.md) command, +- ou o comando [`BUILD APPLICATION`](../commands-legacy/build-application.md), - ou na [caixa de diálogo Criar aplicativo] (#application-builder). :::tip @@ -87,7 +87,7 @@ Esta funcionalidad crea un archivo _.4dz_ en una carpeta `Compiled Database/ Quando gerar arquivos .4dz, 4D usa um formato zip **padrão** por padrão. A vantagem desse formato é que ele pode ser lido facilmente por todas as ferramentas de descompactação. If you do not want to use this standard format, add the `UseStandardZipFormat` XML key with value `False` in your [`buildApp.4DSettings`](#build-application-settings) file (for more information, see the [4D XML Keys BuildApplication](https://doc.4d.com/4Dv20/4D/20/4D-XML-Keys-BuildApplication.100-6335734.en.html) manual). +> Quando gerar arquivos .4dz, 4D usa um formato zip **padrão** por padrão. A vantagem desse formato é que ele pode ser lido facilmente por todas as ferramentas de descompactação. A vantagem desse formato é que ele pode ser lido facilmente por todas as ferramentas de descompactação. If you do not want to use this standard format, add the `UseStandardZipFormat` XML key with value `False` in your [`buildApp.4DSettings`](#build-application-settings) file (for more information, see the [4D XML Keys BuildApplication](https://doc.4d.com/4Dv20/4D/20/4D-XML-Keys-BuildApplication.100-6335734.en.html) manual). #### Incluir pastas relacionadas @@ -234,7 +234,7 @@ Marque esta opção para gerar a parte do servidor da sua aplicação durante a #### Localização do 4D Server -Clique no \*\* Botão[...]\*\* e use a caixa de diálogo _Procurar pasta_ para localizar o aplicativo 4D Server No macOS, deve selecionar o pacote 4D Server diretamente. +Clique no \*\* Botão[...]\*\* e use a caixa de diálogo _Procurar pasta_ para localizar o aplicativo 4D Server Clique no \*\* Botão[...]\*\* e use a caixa de diálogo _Procurar pasta_ para localizar o aplicativo 4D Server No macOS, deve selecionar o pacote 4D Server diretamente. #### Versão atual @@ -302,7 +302,7 @@ Designa a localização no seu disco da aplicação 4D Volume Desktop a ser usad A Área de Trabalho de Volume 4D deve corresponder à plataforma atual (que também será a plataforma do aplicativo cliente). Se você deseja criar um aplicativo cliente para a plataforma "simultânea", você deve realizar uma operação de construção adicional usando uma aplicação 4D em execução nessa plataforma. -Se você deseja que o aplicativo cliente se conecte ao servidor usando um endereço específico (diferente do nome do servidor publicado na sub-rede), você deve usar a chave `IPAddress` XML no arquivo buildapp.4DSettings. For more information about this file, refer to the description of the [`BUILD APPLICATION`](../commands-legacy/build-application.md) command. Você também pode implementar mecanismos específicos em caso de falha na conexão. Os diferentes cenários propostos são descritos no [Gerenciamento de conexões por aplicativos cliente](#management-of-client-connections) parágrafo. +Se você deseja que o aplicativo cliente se conecte ao servidor usando um endereço específico (diferente do nome do servidor publicado na sub-rede), você deve usar a chave `IPAddress` XML no arquivo buildapp.4DSettings. Para obter mais informações sobre esse arquivo, consulte a descrição do comando [`BUILD APPLICATION`](../commands-legacy/build-application.md). Você também pode implementar mecanismos específicos em caso de falha na conexão. Os diferentes cenários propostos são descritos no [Gerenciamento de conexões por aplicativos cliente](#management-of-client-connections) parágrafo. #### Cópia de aplicativos cliente dentro do aplicativo servidor @@ -373,7 +373,7 @@ A pasta `Cliente` contém a porção do cliente do aplicativo c O conteúdo dessas pastas varia dependendo da plataforma atual: -- _Windows_ - Cada pasta contém o arquivo executável da aplicação, chamado `Cliente. xe` para a parte do cliente e `Servidor.exe` para a parte do servidor, bem como os arquivos .rsr correspondentes. As pastas também contêm vários arquivos e pastas necessários para que os aplicativos funcionem e itens personalizados que podem estar na pasta de Volume 4D e no Servidor 4D. +- Se você quiser integrar outros plugins ou componentes na aplicação executável, você só precisa colocá-los em uma pasta **Plugins** ou **Components** ao lado da aplicação 4D Volume Desktop ou ao lado do aplicativo 4D do servidor. O mecanismo para copiar o conteúdo da pasta do aplicativo de origem (ver [Personalizando a pasta 4D Volume Deskto](#customizing-4d-volume-desktop-folder)) pode ser usado para integrar qualquer tipo de arquivo no aplicativo executável. - _macOS_ - Cada pasta contém apenas o pacote de aplicação, chamado ` Client` para a parte do cliente e ` Server` para a parte do servidor. Cada pacote contém todos os itens necessários para que a aplicação funcione. No macOS, inicie um pacote fazendo duplo clique no mesmo. > Os pacotes macOS construídos contêm os mesmos itens que as subpastas do Windows. Você pode exibir seus conteúdos (**Control+click** no ícone) para poder modificá-los. @@ -395,7 +395,7 @@ Os elementos devem ser instalados: - **no macOS** - **Aplicativo do servidor** - ao lado do pacote de software `Server`. - - **Aplicação de cliente** - ao lado do pacote de software \`cliente. + - **Aplicação de cliente** - ao lado do pacote de software \\`cliente. ### Incorporar uma aplicação cliente usuário único @@ -578,11 +578,11 @@ For more information on the stapling concept, please read [this Apple forum post > A Apple, Inc. fornece uma ferramenta específica para a construção de arquivos de ícones _icns_ (para mais informações, consulte a [documentação da Apple](https://developer.apple.com/library/archive/documentation/GraphicsAnimation/Conceptual/HighResolutionOSX/Optimizing/Optimizing.html#/apple_ref/doc/uid/TP40012302-CH7-SW2)). -Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão .ico. 4D leva automaticamente este arquivo em conta ao construir o aplicativo clicável duplo (o arquivo _.icns_ é renomeado _ApplicationName. cns_ e copiados para a pasta Repositório; a entrada _CFBundleFileIcon_ do arquivo _info.plist_ é atualizada). +Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão _.ico_. 4D leva este arquivo automaticamente em conta ao construir um aplicativo clicável duplo. - **Windows** - Ao construir uma aplicação clicável e dupla, o 4D lida com a personalização do seu ícone. Para fazer isso, você deve criar um arquivo de ícone (_.ico_ extensão), antes de construir o arquivo do aplicativo e colocá-lo ao lado da pasta do projeto. -Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão _.ico_. 4D leva este arquivo automaticamente em conta ao construir um aplicativo clicável duplo. +Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão .ico. 4D leva automaticamente este arquivo em conta ao construir o aplicativo clicável duplo (o arquivo _.icns_ é renomeado _ApplicationName. You can also set specific [XML keys](https://doc.4d.com/4Dv20/4D/20/4D-XML-Keys-BuildApplication.100-6335734.en.html) in the buildApp.4DSettings file to designate each icon to use. Estão disponíveis as seguintes chaves: @@ -676,6 +676,8 @@ A gestão de conexões por aplicativos cliente cobre os mecanismos pelos quais u O procedimento de conexão para aplicativos cliente mesclados suporta casos onde o servidor dedicado não está disponível. O cenário de inicialização de um aplicação cliente 4D é o seguinte: 1. Se informações de conexão válidas forem armazenadas no arquivo "EnginedServer.4DLink" dentro do aplicativo cliente, o aplicativo cliente se conecta ao endereço do servidor especificado.\ + OU + O aplicativo cliente tenta se conectar ao servidor usando o serviço de descoberta (com base no nome do servidor, transmitido na mesma sub-rede).\ OU O aplicativo cliente tenta se conectar ao servidor usando o serviço de descoberta (com base no nome do servidor, transmitido na mesma sub-rede). @@ -710,6 +712,7 @@ Este mecanismo aborda o caso de o servidor principal alvo estar temporariamente Você pode escolher se deseja ou não exibir a caixa de diálogo de seleção padrão do servidor em aplicações cliente mescladas quando o servidor não pode ser alcançado. The configuration depends on the value of the [ServerSelectionAllowed](https://doc.4d.com/4Dv20/4D/20/ServerSelectionAllowed.300-6335767.en.html) XML key on the machine where the application was built: - **exibir uma mensagem de erro sem acesso possível à caixa de diálogo de seleção do servidor**. Operação padrão. A aplicação só pode encerrar.\ + A aplicação só pode encerrar.\ `ServerSelectionAllowed`: **False** or key omitted ![](../assets/en/Project/connect1.png) diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/clientServer.md b/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/clientServer.md index 8a6c202b3c6ae3..4b4872b7860cc1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/clientServer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/clientServer.md @@ -101,7 +101,7 @@ O objeto `session` do usuário remoto está disponível em: - Métodos de projeto que têm o atributo [Execute on Server](../Project/code-overview.md#execute-on-server) (são executados no processo "geminado" do processo do cliente), - Triggers, -- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword, +- ORDA [funções do modelo de dados](../ORDA/ordaClasses.md) (exceto aquelas declaradas com a palavra-chave [`local`](../ORDA/ordaClasses.md#local-functions), - 'Conexão aberta com o servidor' e 'Conexão com o servidor' métodos de banco de dados. :::info diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormEditor/formEditor.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormEditor/formEditor.md index 8cfaf2e7ec412c..675d4a29dd05f5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormEditor/formEditor.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormEditor/formEditor.md @@ -768,4 +768,4 @@ Pode fazer zoom no formulário atual. Switch to “Zoom” mode by clicking on t No modo Zoom, todas as funções do editor de formulários permanecem disponíveis(\*). -(\*) For technical reasons, it is not possible to select list box elements (headers, columns, footers) when the Form editor is in Zoom mode. +(\*) Por motivos técnicos, não é possível selecionar elementos da caixa de listagem (cabeçalhos, colunas, rodapés) quando o editor de formulários está no modo Zoom. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormEditor/properties_FormProperties.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormEditor/properties_FormProperties.md index cfb6c530dcfbab..0d2706f54038f0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormEditor/properties_FormProperties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormEditor/properties_FormProperties.md @@ -40,7 +40,7 @@ Um ficheiro CSS definido ao nível do formulário substituirá a(s) folha(s) de ## Form Class -Name of an existing [user class](../Concepts/classes.md#class-definition) to associate to the form . The user class can belong to the host project or to a [component](../Extensions/develop-components.md#sharing-of-classes), in which case the formal syntax is "[_componentNameSpace_](../settings/general.md#component-namespace-in-the-class-store).className". +Nome de uma [classe usuário](../Concepts/classes.md#class-definition) existente para associar ao formulário. The user class can belong to the host project or to a [component](../Extensions/develop-components.md#sharing-of-classes), in which case the formal syntax is "[_componentNameSpace_](../settings/general.md#component-namespace-in-the-class-store).className". Associating a class to the form provides the following benefits: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/button_overview.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/button_overview.md index 8db387909cc54d..9864fd679725b3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/button_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/button_overview.md @@ -38,7 +38,7 @@ O estilo de botão Clássico é um botão padrão do sistema (ou seja, um retân By default, the Regular style has a light gray background with a label in the center. When the cursor hovers over the Regular button style, the border and background color change to demonstrate that it has the focus. In addition to initiating code execution, the Regular button style mimics a mechanical button by quickly changing background color when being clicked. -#### JSON Exemplo +#### Exemplo JSON: ```4d @@ -65,7 +65,7 @@ O estilo de botão Plano é um botão padrão do sistema (ou seja, um retângulo By default, the Flat style has a white background with a label in the center, rounded corners, and a minimalist appearance. The Flat button style's graphic nature is particularly useful for forms that will be printed. -#### JSON Exemplo +#### Exemplo JSON: ```4d @@ -96,7 +96,7 @@ By default, the Toolbar style has a transparent background with a label in the c - _macOS_ - o destaque do botão nunca aparece. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -124,7 +124,7 @@ By default, the Bevel style has a light gray background with a label in the cent - _macOS_ - o destaque do botão nunca aparece. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -152,7 +152,7 @@ By default, the Rounded Bevel style has a light gray background with a label in - _macOS_ - las esquinas del botón están redondeadas. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -180,7 +180,7 @@ By default, the OS X Gradient style has a light gray background with a label in - _macOS_ - el botón se muestra como un botón de dos tonos. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -208,7 +208,7 @@ Como padrão, o estilo OS X Textured aparece como: - _macOS_ - um botão sistema padrão que mostra uma mudança de cor cinza-claro a cinza-escuro. Sua altura está predefinida: não é possível ampliar ou reduzir. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -236,7 +236,7 @@ As cores (ressaltado e fundo) de um botão com o estilo Office XP são baseadas - _macOS_ - its background is always displayed. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -258,7 +258,7 @@ The Help button style can be used to display a standard system help button. By d ![](../assets/en/FormObjects/button_help.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -283,7 +283,7 @@ O estilo de botão Círculo aparece como um botão sistema redondo. Este estilo No Windows, ele é idêntico ao estilo "Nenhum" (o círculo no plano de fundo não é considerado). -#### JSON Exemplo +#### Exemplo JSON: ``` "myButton": { @@ -304,7 +304,7 @@ The Custom button style accepts a personalized background picture and allows man ![](../assets/en/FormObjects/button_custom.png) -#### JSON Exemplo +#### Exemplo JSON: ```code "myButton": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/checkbox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/checkbox_overview.md index db52c872c767dd..5374554c64f4d0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/checkbox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/checkbox_overview.md @@ -32,7 +32,7 @@ Essa propriedade só está disponível para caixas de seleção clássicas e pla A variável associada à caixa de seleção devolve o valor 2 quando a caixa estiver no terceiro estado. -> In entry mode, the Three-States check boxes display each state sequentially, in the following order: unchecked / checked / intermediary / unchecked, etc. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. +> In entry mode, the Three-States check boxes display each state sequentially, in the following order: unchecked / checked / intermediary / unchecked, etc. The intermediary state is generally not very useful in entry mode; in the code, simply force the value of the variable to 0 when it takes the value of 2 in order to pass directly from the checked state to the unchecked state. ## Usar uma ação padrão @@ -87,7 +87,7 @@ O estilo Clássico de caixa de seleção corresponde a um sistema de caixa de se ![](../assets/en/FormObjects/checkbox_regular.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -109,7 +109,7 @@ O estilo de caixa de seleção Plano tem uma aparência minimalista. A natureza ![](../assets/en/FormObjects/checkbox_flat.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -134,7 +134,7 @@ Exemplo com estados selecionado/ não selecionado/ ressaltado: ![](../assets/en/FormObjects/checkbox_toolbar.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -160,7 +160,7 @@ Exemplo com estados selecionado/ não selecionado/ ressaltado: ![](../assets/en/FormObjects/checkbox_bevel.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -188,7 +188,7 @@ Exemplo em macOS: > No Windows, o estilo de botão Rounded Bevel é idêntico ao estilo de botão [Bevel](#bevel). -#### JSON Exemplo +#### Exemplo JSON: ```4d "myCheckBox": { @@ -214,7 +214,7 @@ O estilo Gradient OS X tem um fundo cinza claro com um título e se mostra como > No Windows, esse estilo de botão de caixa de seleção é idêntico ao estilo de botão [Bevel](#bevel). -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -244,7 +244,7 @@ Como padrão, o estilo OS X Textured aparece como: ![](../assets/en/FormObjects/checkbox_osxtextured_mac.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -272,7 +272,7 @@ As cores (ressaltado e fundo) de um botão com o estilo Office XP são baseadas ![](../assets/en/FormObjects/checkbox_officexp_mac.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -307,7 +307,7 @@ O estilo Recolher/Expandir é denominado "disclosure" na [gramática JSON de est ::: -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -339,7 +339,7 @@ O estilo Disclosure é denominado "roundedDisclosure" na [gramática JSON do est ::: -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -363,7 +363,7 @@ O estilo de botão Personalizado aceita uma imagem de fundo personalizada e perm It is usually associated with a [4-state picture](properties_TextAndPicture.md#number-of-states), that can be used in conjunction with a [4-state](properties_TextAndPicture.md#number-of-states) [background picture](properties_TextAndPicture.md#background-pathname). -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckbox": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/groupBox.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/groupBox.md index e5e366d7a6f9ba..47e240f0996d33 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/groupBox.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/groupBox.md @@ -9,7 +9,7 @@ A group box is a static object that allows you to visually assemble multiple for > O nome de uma caixa de grupo é texto estático; você pode usar uma referência "localizável" como com qualquer rótulo 4D (veja [Usando referências em texto estático](https://doc.4d.com/4Dv17R5/4D/17-R5/Using-references-in-static-text.300-4163725.en.html) e seção _Arquitetura XLIFF_ em referência Desenho 4D. -#### JSON Exemplo +#### Exemplo JSON: ``` "myGroup": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/list_overview.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/list_overview.md index 8b13d4ef83511e..3c3228d77df5ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/list_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/list_overview.md @@ -41,7 +41,7 @@ Each representation of the list has its own specific characteristics and shares As outras características (fonte, tamanho da fonte, estilo, controle de entrada, cor, conteúdo da lista, ícones, etc.) são comuns a todas as representações e não podem ser modificados separadamente. Consequentemente, quando você usa comandos com base na configuração expandida/colapsada ou no item atual, por exemplo, `Count list items` (quando o parâmetro final `*` não é passado), é importante poder especificar a representação a ser usada sem nenhuma ambiguidade. -Você deve usar o ID `ListRef` com comandos de linguagem quando quiser especificar a lista hierárquica encontrada na memória. On the other hand, if you want to specify the representation of a hierarchical list object at the form level, you must use the object name (string type) in the command, via the standard syntax (\*;"ListName", etc.). +Você deve usar o ID `ListRef` com comandos de linguagem quando quiser especificar a lista hierárquica encontrada na memória. Por outro lado, se você quiser especificar a representação de um objeto lista hierárquica no nível do formulário, deverá usar o nome do objeto (tipo string) no comando, por meio da sintaxe padrão (\*; "ListName", etc.). > In the case of commands that set properties, the syntax based on the object name does not mean that only the form object specified will be modified by the command, but rather that the action of the command will be based on the state of this object. The common characteristics of hierarchical lists are always modified in all of their representations. > Por exemplo, se executa: @@ -80,7 +80,7 @@ Assim como em outros comandos de gerenciamento de propriedades de objetos, é po ## Comandos genéricos utilizáveis com listas hierárquicas -It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. You can pass to these commands either the object name of the hierarchical list (using the \* parameter), or its variable name (containing the ListRef value): +It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. Você pode passar para esses comandos o nome do objeto da lista hierárquica (usando o parâmetro \*) ou o nome da variável (contendo o valor ListRef): - `OBJECT SET FONT` - `OBJECT SET FONT STYLE` diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/listbox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/listbox_overview.md index b8e1b1177671e1..74b58570a0b747 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/listbox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/listbox_overview.md @@ -121,7 +121,7 @@ Propriedades compatíveis dependem do tipo de list box. | Propriedade | List box array | List box seleção | List box coleção ou entity selection | | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | ---------------- | ------------------------------------ | | [Cor de fundo alternativa](properties_BackgroundAndBorder.md#alternate-background-color) | X | X | X | -| [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) | X | X | X | +| [Cor de Fundo](properties_BackgroundAndBorder.md#background-color--fill-color) | X | X | X | | [Negrito](properties_Text.md#bold) | X | X | X | | [Expressão de cor de fundo](properties_BackgroundAndBorder.md#background-color-expression) | | X | X | | [Estilo da linha de borda](properties_BackgroundAndBorder.md#border-line-style) | X | X | X | @@ -149,7 +149,7 @@ Propriedades compatíveis dependem do tipo de list box. | [Ocultar linhas em branco extras](properties_BackgroundAndBorder.md#hide-extra-blank-rows) | X | X | X | | [Ocultar retângulo de foco](properties_Appearance.md#hide-focus-rectangle) | X | X | X | | [Ocultar destaque de seleção](properties_Appearance.md#hide-selection-highlight) | X | X | X | -| [Hierarchical List Box](properties_Object.md#array-list-box) | X | | | +| [List Box hierárquico](properties_Object.md#array-list-box) | X | | | | [Highlight Set](properties_ListBox.md#highlight-set) | | X | | | [Alinhamento Horizontal](properties_Text.md#horizontal-alignment) | X | X | X | | [Horizontal Line Color](properties_Gridlines.md#horizontal-line-color) | X | X | X | @@ -176,7 +176,7 @@ Propriedades compatíveis dependem do tipo de list box. | [Row Style Array](properties_Text.md#row-style-array) | X | | | | [Selected Items](properties_DataSource.md#selected-items) | | | X | | [Selection Mode](properties_ListBox.md#selection-mode) | X | X | X | -| [Single-Click Edit](properties_Entry.md#single-click-edit) | X | X | X | +| [Edição com um único clique](properties_Entry.md#single-click-edit) | X | X | X | | [Ordenável](properties_Action.md#sortable) | X | X | X | | [Ação padrão](properties_Action.md#standard-action) | X | | | | [Expressão de estilo](properties_Text.md#style-expression) | | X | X | @@ -520,14 +520,14 @@ Você pode ativar ou desativar a classificação padrão do usuário desativando O suporte de ordenação padrão depende do tipo de list box: -| Tipo de list box | Suporte de ordenação padrão | Comentários | -| ----------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| Uma coleção de objetos | Sim |
    • "This.a" or "This.a.b" columns are sortable.
    • The [list box source property](properties_Object.md#variable-or-expression) must be an [assignable expression](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
    | -| Colecção de valores escalares | Não | Use a classificação personalizada com a função [`orderBy()`](../API/CollectionClass.md#orderby) | -| Seleção de entidades | Sim |
  • A [propriedade de origem da caixa de listagem](properties_Object.md#variable-or-expression) deve ser uma [expressão atribuível](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data
  • .
  • city" quando "data" é um
  • atributo de objeto)
  • Suportado: classifica propriedades de atributos relacionados
  • (por exemplo, "This.company
  • .
  • name"
  • )
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data.city" quando "data" é um atributo de objeto)Suportado
  • : classifica
  • atributos relacionados (por exemplo, "This.company.name")
  • Não suportado: classifica propriedades de atributos de objetos por meio de atributos relacionados (por exemplo, "This.company.data.city"). For this, you need to use custom sort with [`orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) function (see example below)
  • | -| Selecção actual | Sim | Somente expressões simples podem ser classificadas (por exemplo, `[Table_1]Field_2`) | -| Seleção temporal | Não | | -| Arrays | Sim | As colunas ligadas a arrays de imagens e ponteiros não podem ser ordenadas | +| Tipo de list box | Suporte de ordenação padrão | Comentários | +| ----------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Uma coleção de objetos | Sim |
    • "This.a" or "This.a.b" columns are sortable.
    • The [list box source property](properties_Object.md#variable-or-expression) must be an [assignable expression](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
    | +| Colecção de valores escalares | Não | Use a classificação personalizada com a função [`orderBy()`](../API/CollectionClass.md#orderby) | +| Seleção de entidades | Sim |
  • A [propriedade de origem da caixa de listagem](properties_Object.md#variable-or-expression) deve ser uma [expressão atribuível](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data
  • .
  • city" quando "data" é um
  • atributo de objeto)
  • Suportado: classifica propriedades de atributos relacionados
  • (por exemplo, "This.company
  • .
  • name"
  • )
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data.city" quando "data" é um atributo de objeto)Suportado
  • : classifica
  • atributos relacionados (por exemplo, "This.company.name")
  • Não suportado: classifica propriedades de atributos de objetos por meio de atributos relacionados (por exemplo, "This.company.data.city"). Para isso, você precisa usar a classificação personalizada com a função [`orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) (veja o exemplo abaixo)
  • | +| Selecção actual | Sim | Somente expressões simples podem ser classificadas (por exemplo, `[Table_1]Field_2`) | +| Seleção temporal | Não | | +| Arrays | Sim | As colunas ligadas a arrays de imagens e ponteiros não podem ser ordenadas | ### Ordenação personalizada diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/pictureButton_overview.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/pictureButton_overview.md index fd7bbc9ee6004a..eedd5fff78eb74 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/pictureButton_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/pictureButton_overview.md @@ -49,7 +49,7 @@ In addition to the standard positioning and appearance settings, you can set som Estão disponíveis os seguintes outros modos: -- [Loop back to first frame](properties_Animation.md#loop-back-to-first-frame) +- [Loop de volta ao primeiro quadro](properties_Animation.md#loop-back-to-first-frame) - [Volte quando lançado](properties_Animation.md#switch-back-when-released) - [Alterne quando Roll Over] (properties_Animation.md#switch-when-roll-over) - [Alterne continuamente nos cliques](properties_Animation.md#switch-continuously-on-clicks) diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_Appearance.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_Appearance.md index 0034ab1ec9317b..ab75d3cf992e7c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_Appearance.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_Appearance.md @@ -301,7 +301,7 @@ Quando os controles de aba com uma direção personalizada são exibidos no Wind #### Objectos suportados -[Tab Control](tabControl.md) +[Controle de guias](tabControl.md) --- diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_CoordinatesAndSizing.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_CoordinatesAndSizing.md index 95e1e07a0a95f0..46835a43cd95ce 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_CoordinatesAndSizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_CoordinatesAndSizing.md @@ -10,7 +10,7 @@ Esta propriedade só está disponível para os list box com as seguintes [fontes - collection ou entity selection, - array (não hierárquico). -A propriedade não está selecionada por padrão. Note that only columns with the option selected will be taken into account to calculate the row height. Note that only columns with the option selected will be taken into account to calculate the row height. +A propriedade não está selecionada por padrão. Quando usado para pelo menos uma coluna, a altura de cada linha na coluna será automaticamente calculada por 4D, e o conteúdo da coluna será levado em consideração. Note that only columns with the option selected will be taken into account to calculate the row height. :::note @@ -122,11 +122,11 @@ Coordenada superior do objecto no formulário.
    -Defines the corner roundness (in pixels) of the object. By default, the radius value for rectangles is 0 pixels. You can change this property to draw rounded rectangles with custom shapes: +Define o arredondamento do canto (em pixels) do objeto. Por padrão, o valor do raio é 0 pixels. Você pode alterar essa propriedade para desenhar objetos arredondados com formas personalizadas: ![](../assets/en/FormObjects/shape_rectangle.png) -Minimum value is 0, in this case a standard non-rounded rectangle is drawn. +O valor mínimo é 0; nesse caso, um retângulo de objeto padrão não arredondado é desenhado. Maximum value depends on the rectangle size (it cannot exceed half the size of the shortest rectangle side) and is calculated dynamically. :::note diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_DataSource.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_DataSource.md index bee5cac488c025..2e3f3f3c2942be 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_DataSource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_DataSource.md @@ -63,7 +63,7 @@ Lista de valores estáticos a serem usados como etiquetas para o objeto de contr #### Objectos suportados -[Tab Control](tabControl.md) +[Controle de guias](tabControl.md) --- diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_Object.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_Object.md index 27f1058792d3c5..6b7394c4e14456 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_Object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_Object.md @@ -103,7 +103,7 @@ You can leave it up to 4D to create variables associated with your form objects When a variable is not named, when the form is loaded, 4D creates a new variable for the object, with a calculated name that is unique in the space of the process variables of the interpreter (which means that this mechanism can be used even in compiled mode). Esta variável temporária será destruída quando o formulário for fechado. Para que este princípio funcione em modo compilado, é imperativo que as variáveis dinâmicas sejam explicitamente tipadas. Há duas formas de o fazer: -- You can set the type using the [Expression type](#expression-type) property. +- Você pode definir o tipo usando a propriedade [Tipo de expressão](#expression-type). - Puede utilizar un código de inicialización específico cuando se carga el formulario que utilice, por ejemplo, el comando `VARIABLE TO VARIABLE`: ```4d diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_TextAndPicture.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_TextAndPicture.md index 35875881d264dd..ed9ab8a6d5d3e2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_TextAndPicture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_TextAndPicture.md @@ -239,7 +239,7 @@ To attach a pop-up menu symbol to a button, there are two display options availa Each option specifies the relation between the button and the attached pop-up menu: -- When the pop-up menu is **separated**, clicking on the left part of the button directly executes the current action of the button; this action can be modified using the pop-up menu accessible in the right part of the button. +- Quando o menu pop-up é **separado**, clicar na parte esquerda do botão executa diretamente a ação atual do botão; essa ação pode ser modificada usando o menu pop-up acessível na parte direita do botão. - Quando o menu pop-up está **vinculado**, um simples clique no botão exibe apenas o menu pop-up. Only the selection of the action in the pop-up menu causes its execution. :::info diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_WebArea.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_WebArea.md index 75b6e6727422c9..11424142a2cca6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_WebArea.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/properties_WebArea.md @@ -79,7 +79,7 @@ This option allows choosing between two rendering engines for the Web area, depe - **unchecked** - `JSON value: system` (default): In this case, 4D uses the "best" engine corresponding to the system. This means that you automatically benefit from the latest advances in Web rendering, through HTML5 or JavaScript. No entanto, você poderá notar algumas diferenças de renderização entre as plataformas. No Windows, 4D usa Microsoft Edge WebView2. No macOS, 4D usa a versão atual do WebKit (Safari). -> On Windows, if Microsoft Edge WebView2 is not installed, 4D uses the embedded engine as system rendering engine. To know if it is installed in your system, look for "Microsoft Edge WebView2 Runtime" in your applications panel. +> No Windows, se o Microsoft Edge WebView2 não estiver instalado, o 4D usa o mecanismo incorporado como mecanismo de renderização do sistema. To know if it is installed in your system, look for "Microsoft Edge WebView2 Runtime" in your applications panel. - **marcado** - `valor JSON: anidado`: en este caso, 4D utiliza Chromium Embedded Framework (CEF). Using the embedded Web engine means that Web area rendering and their functioning in your application are identical regardless of the platform used to run 4D (slight variations of pixels or differences related to network implementation may nevertheless be observed). Using the embedded Web engine means that Web area rendering and their functioning in your application are identical regardless of the platform used to run 4D (slight variations of pixels or differences related to network implementation may nevertheless be observed). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/shapes_overview.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/shapes_overview.md index 3d54859ca69901..60daceb779965b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/shapes_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/shapes_overview.md @@ -19,7 +19,7 @@ O desenho dos retângulos é controlado através de muitas propriedades (cor, es ![](../assets/en/FormObjects/shapes_rectangle2.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myRectangle": { @@ -90,7 +90,7 @@ Uma oval estática é um objeto decorativo para formas. Los objetos ovalados pue ![](../assets/en/FormObjects/shape_oval.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myOval": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/splitters.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/splitters.md index 82affbb11b7f86..fc438bbf735492 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/splitters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/splitters.md @@ -18,7 +18,7 @@ Algumas das características gerais do repartidor: Uma vez inserido, o separador aparece como uma linha. You can modify its [border style](properties_BackgroundAndBorder.md#border-line-style-dotted-line-type) to obtain a thinner line or [change its color](properties_BackgroundAndBorder.md#line-color). -#### JSON Exemplo +#### Exemplo JSON: ```4d "mySplitter": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/stepper.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/stepper.md index 0af8dc2d03d2b8..346708f472fed5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/stepper.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/stepper.md @@ -14,7 +14,7 @@ You can assign the variable associated with the object to an enterable area (fie Um stepper pode ser associado diretamente a uma variável número, hora ou data. - For values of the time type, the Minimum, Maximum and Step properties represent seconds. Por exemplo, para definir um passo de 8:00 a 18:00 com passos de 10 minutos: - - [minimum](properties_Scale.md#minimum) = 28 800 (8\*60\*60) + - [mínimo](properties_Scale.md#minimum) = 28 800 (8\*60\*60) - [maximum](properties_Scale.md#maximum) = 64 800 (18\*60\*60) - [step](properties_Scale.md#step) = 600 (10\*60) - For values of the date type, the value entered in the [step](properties_Scale.md#step) property represents days. As propriedades Mínimo e Máximo são ignoradas. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/tabControl.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/tabControl.md index 988a3291bfa87d..07d9c464b38c1a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/tabControl.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/tabControl.md @@ -25,7 +25,7 @@ If the tab control is wide enough to display all the tabs with both the labels a Under macOS, in addition to the standard position (top), the tab controls can also be aligned to the bottom. -### JSON Exemplo +### Exemplo JSON: ```4d "myTab": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/text.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/text.md index c023e48a5b561e..d6bb0115d83dde 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/text.md @@ -5,7 +5,7 @@ title: Text Um objeto texto permite exibir conteúdo escrito estático (_e.g._, instruções, títulos, etiquetas, etc.) em um formulário. Estas áreas de texto estático podem se tornar dinâmicas quando incluem referências dinâmicas. Para más información, consulte [Uso de referencias en textos estáticos](https://doc.4d.com/4Dv17R5/4D/17-R5/Using-references-in-static-text.300-4163725.en.html). -#### JSON Exemplo +#### Exemplo JSON: ```4d "myText": { @@ -47,4 +47,4 @@ Quando um texto é rodado, pode continuar a alterar o seu tamanho ou posição, -[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color(properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/webArea_overview.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/webArea_overview.md index 42aa7d27729ebc..1bae8ce84dd7ff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/webArea_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/webArea_overview.md @@ -5,7 +5,7 @@ title: Área Web Web areas can display various types of web content within your forms: HTML pages with static or dynamic contents, files, pictures, JavaScript, etc. The rendering engine of the web area depends on the execution platform of the application and the selected [rendering engine option](properties_WebArea.md#use-embedded-web-rendering-engine). -É possível criar várias áreas web no mesmo formulário. Note, however, that the use of web areas must follow [several rules](#web-area-rules). +É possível criar várias áreas web no mesmo formulário. No entanto, observe que o uso de áreas web deve seguir [várias regras](#web-area-rules). Several dedicated [standard actions](#standard-actions), numerous [language commands](../category/web-area) as well as generic and specific [form events](#form-events) allow the developer to control the functioning of web areas. Specific variables can be used to exchange information between the area and the 4D environment. @@ -69,7 +69,7 @@ $4d.4DMethodName(param1,paramN,function(result){}) Given a 4D project method named `today` that does not receive parameters and returns the current date as a string. -4D code of `today` method: +Código 4D do método `today`: ```4d #DECLARE : Text @@ -193,7 +193,7 @@ To display the Web inspector, you can either execute the `WA OPEN WEB INSPECTOR` - **Use the web area context menu**
    This feature can only be used with onscreen web areas and requires that the following conditions are met: - - the [context menu](properties_Entry.md#context-menu) for the web area is enabled + - o [menu contextual](properties_Entry.md#context-menu) para a área web está ativado - Deve habilitar expressamente ao uso do inspetor na área mediante a instrução abaixo: ```4d WA SET PREFERENCE(*;"WA";WA enable Web inspector;True) @@ -302,7 +302,7 @@ The default 4DCEFParameters.json file contains the following switches: } ``` -#### Example for Autoplay +#### Exemplo para Autoplay ```json { diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/GettingStarted/creating.md b/i18n/pt/docusaurus-plugin-content-docs/current/GettingStarted/creating.md index 5bcb514ae99395..6a181d9465a102 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/GettingStarted/creating.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/GettingStarted/creating.md @@ -14,7 +14,7 @@ Para criar um novo projeto de banco de dados: 1. Inicie 4D ou 4D Server. 2. Faça uma das seguintes opções: - - Select **New > Project...** from the **File** menu: ![](../assets/en/getStart/projectCreate1.png) + - Selecione **Novo > Projeto...** no menu **Arquivo**: ![](../assets/en/getStart/projectCreate1.png) - (4D only) Select **Project...** from the **New** toolbar button:

    ![](../assets/en/getStart/projectCreate2.png)

    A standard **Save** dialog appears so you can choose the name and location of the 4D project's main folder. 3. Introduzca el nombre de su carpeta de proyecto y haga clic en **Guardar**. Este nome será utilizado: @@ -72,7 +72,7 @@ Además de las opciones sistema estándar, la caja de diálogo _Abrir_ de 4D ofr ### Abrir um projeto com um ficheiro 4DLink -You can use a [`.4DLink` file](#about-4DLink-files) to launch the 4D application and open the target 4D project. Há duas formas de o fazer: +Você pode usar um [arquivo `.4DLink`](#about-4DLink-files) para iniciar a aplicação 4D e abrir o projeto alvo 4D. Há duas formas de o fazer: - haga doble clic o arrastre y suelte el archivo `.4DLink` en la aplicación 4D - vaya a **Archivo** > **Abrir los proyectos recientes** y seleccione un proyecto diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Menus/creating.md b/i18n/pt/docusaurus-plugin-content-docs/current/Menus/creating.md index 01caa80ee01cba..7ac3f0bc271bd4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Menus/creating.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Menus/creating.md @@ -57,8 +57,8 @@ Para adicionar um item de menu: 1. In the list of source menus, select the menu to which you want to add a command. Se o menu já contiver comandos, eles serão exibidos na lista central. If you want to insert the new command, select the command that you want it to appear above. Você sempre pode reorganizar o menu posteriormente, arrastando e soltando. 2. Elija **Añadir un elemento al menú "NombreDelMenú"** en el menú de opciones del editor o desde el menú contextual (clic derecho en la lista central). - OR - Click on the add ![](../assets/en/Menus/PlussNew.png) button located below the central list. + OU + Clique no botão adicionar ![](../assets/en/Menus/PlussNew.png) localizado abaixo da lista central. 4D adds a new item with the default name “Item X” where X is the number of items already created. 3. Double-click on the name of the command in order to switch it to editing mode and enter a custom name. OR Enter the custom name in the "Title" area. Pode conter até 31 caracteres. Você pode digitar o nome como "código duro" ou insira uma referência (veja abaixo). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Notes/updates.md b/i18n/pt/docusaurus-plugin-content-docs/current/Notes/updates.md index 6ae17f56507694..0648d15226ebe0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Notes/updates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Notes/updates.md @@ -13,9 +13,12 @@ Read [**What’s new in 4D 20 R8**](https://blog.4d.com/en-whats-new-in-4d-v20-R - Expressions used in [form object properties](../FormObjects/properties_Reference.md) now benefit from syntax checking in the [Property list](../FormEditor/formEditor.md#property-list) and in the [Compiler](../Project/compiler.md#check-syntax). - You can [associate a class to a form](../FormEditor/properties_FormProperties.md#form-class) to enable code type-ahead and automatic instantiation of form data when using the [`Form`](../commands/form.md) command. - Support of [standalone sessions](../API/SessionClass.md) to simplify local coding for client/server applications. +- [4D debugger](../Debugging/debugger.md): new design and auto-save, display mode features. - [New built component architecture](../Desktop/building.md#build-component) for a better compliance with Apple notarization guidelines. +- Dependencies: Use the Dependency manager to [check for new versions](../Project/components.md#checking-for-new-versions) and [update](../Project/components.md#updating-dependencies) GitHub components. - 4D Language: - - Modified commands: [`FORM EDIT`](../commands/form-edit.md) + - Comandos modificados: [`FORM EDIT`](../commands/form-edit.md) + - [`.sign()`](../API/CryptoKeyClass.md#sign) and [`.verify()`](../API/CryptoKeyClass.md#verify) functions of the [4D.CryptoKey class](../API/CryptoKeyClass.md) support Blob in the _message_ parameter. - [**Fixed bug list**](https://bugs.4d.fr/fixedbugslist?version=20_R8): list of all bugs that have been fixed in 4D 20 R8. #### Mudanças de comportamento @@ -29,12 +32,12 @@ Leia [**O que há de novo no 4D 20 R7**](https://blog.4d.com/en-whats-new-in-4d- #### Destaques - As colunas e cabeçalhos da list box de tipo tempo agora suportam a opção ["blankIfNull"](../FormObjects/properties_Display.md#time-format). -- New properties in [`.getBoxInfo()`](../API/IMAPTransporterClass.md#getboxinfo) and [`.getBoxList()`](../API/IMAPTransporterClass.md#getboxlist). +- Novas propriedades em [`.getBoxInfo()`](../API/IMAPTransporterClass.md#getboxinfo) e [`.getBoxList()`](../API/IMAPTransporterClass.md#getboxlist). - Agora você pode [adicionar e remover componentes usando a interface do gerenciador de componentes](../Project/components.md#adding-and-removing-dependencies). - New [**direct typing mode**](../Project/compiler.md#enabling-direct-typing) in which you declare all variables and parameters in your code using `var` and `#DECLARE`/`Function` keywords (only mode supported in new projects). [Syntax checking feature](../Project/compiler.md#check-syntax) has been enhanced accordingly. - Support of [Session singletons](../Concepts/classes.md#singleton-classes) and new [`.isSessionSingleton`](../API/ClassClass.md#issessionsingleton) Class property. - New [`onHttpGet` function keyword](../ORDA/ordaClasses.md#onhttpget-keyword) to define singleton or ORDA functions that can be called through [HTTP REST GET requests](../REST/ClassFunctions.md#function-calls). -- New [`4D.OutgoingMessage`](../API/OutgoingMessageClass.md) class for the REST server to return any web contents. +- Nova classe [`4D.OutgoingMessage`](../API/OutgoingMessageClass.md) para que o servidor REST retorne qualquer conteúdo Web. - Qodly Studio: You can now [attach the Qodly debugger to 4D Server](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server). - New Build Application keys for remote 4D applications to validate the server certificate authority [signatures](https://doc.4d.com/4Dv20R7/4D/20-R7/CertificateAuthoritiesCertificates.300-7425900.en.html) and/or [domain](https://doc.4d.com/4Dv20R7/4D/20-R7/CertificateDomainName.300-7425906.en.html). - 4D Language: @@ -50,6 +53,7 @@ Leia [**O que há de novo no 4D 20 R7**](https://blog.4d.com/en-whats-new-in-4d- - Documentations for [4D Language](../commands/command-index.md) and [4D Write Pro Language](../WritePro/commands/command-index.md) are now fully available on developer.4d.com. Find out about all the new features and changes concerning these documentations in this release note. - The [`File`](../commands/file.md) command (as well as [`4D.File.new()`](../API/FileClass.md#4dfilenew)) is stricter when it comes to checking the syntax of the _path_ supplied as a parameter. +- The **describe** action [permission](../ORDA/privileges.md#permission-actions) has been removed from available actions. Acesso às urls [`/rest/$catalog`](../REST/$catalog.md) não é mais controlado. Session _describe_ privileges are now ignored. ## 4D 20 R6 @@ -63,11 +67,11 @@ Leia [**O que há de novo no 4D 20 R6**](https://blog.4d.com/en-whats-new-in-4d- - New [`entitySelection.clean()`](../API/EntitySelectionClass.md#clean) function and [`$clean`](../REST/$clean.md) REST API to get a new entity selection based upon the original entity selection but without its deleted entities. - New [`session.getPrivileges()`](../API/SessionClass.md#getprivileges) function and [`$info/privileges`](../REST/$info.md) REST API to inspect session privileges for an easier debugging. - New [4DCEFParameters.json file](../FormObjects/webArea_overview.md#4dcefparametersjson) to customize 4D embedded web areas. -- New [HTTPAgent](../API/HTTPAgentClass.md) class and new [`agent`](../API/HTTPRequestClass.md#options-parameter) property for HTTPRequest class. +- Nova classe [HTTPAgent](../API/HTTPAgentClass.md) e nova propriedade [`agent`](../API/HTTPRequestClass.md#options-parameter) para a classe HTTPRequest. - New [`enableState()`](../API/WebFormClass.md) and [`disableState()`](../API/WebFormClass.md) functions to monitor Qodly page states from the server. - New [`$singleton` API](../REST/$singleton.md) to call exposed singleton functions from REST and new [associated privileges](../ORDA/privileges.md). - Um [novo botão de configurações](../settings/web.md#activate-rest-authentication-through-dsauthentify-function) ajuda você a atualizar seu projeto para usar o modo REST de "login forçado" (o método de banco de dados `On REST Authentication` agora está obsoleto). -- A [new settings tab](../Project/compiler.md#warnings) helps you define warnings generation globally. +- Uma [nova guia de parametros](../Project/compiler.md#warnings) ajuda a definir a geração de avisos globalmente. - Several commands, mainly from the "4D Environment" theme, are now thread-safe ([see the full list](https://doc.4d.com/4Dv20R6/4D/Preemptive_6957385.999-2878208.en.html)), as well as some selectors of the [`SET DATABASE PARAMETER`](https://doc.4d.com/4dv20R/help/command/en/page642.html)/[`Get database parameter`](https://doc.4d.com/4dv20R/help/command/en/page643.html) commands. - New [4D-QPDF component](https://github.com/4d/4D-QPDF) that provides the `PDF Get attachments` command to extract attachments from a PDF/A3 document. - Comandos da linguagem 4D: [página Novidades](https://doc.4d.com/4Dv20R6/4D/20-R6/What-s-new.901-6957482.en.html) em doc.4d.com. @@ -93,7 +97,7 @@ Leia [**O que há de novo no 4D 20 R5**](https://blog.4d.com/en-whats-new-in-4d- - Suporte à [inicializando uma propriedade de classe em sua linha de declaração](../Concepts/classes.md/#initializing-the-property-in-the-declaration-line). - Novo modo [forçar login para solicitações REST](../REST/authUsers.md#force-login-mode) com um suporte específico [no Qodly Studio para 4D](../WebServer/qodly-studio.md#force-login). - Nuevo parámetro REST [$format](../REST/$format.md). -- [`Session`](../commands/session.md) object is now available in remote user sessions and stored procedures session. +- O objeto [`Session`](../commands/session.md) agora está disponível em sessões de usuários remotos e sessões de procedimentos armazenados. - Comandos da linguagem 4D: [página Novidades](https://doc.4d.com/4Dv20R5/4D/20-R5/What-s-new.901-6817247.en.html) em doc.4d.com. - 4D Write Pro: [What's new page](https://doc.4d.com/4Dv20R5/4D/20-R5/What-s-new.901-6851780.en.html) on doc.4d.com. - [**Lista de erros corrigida**](https://bugs.4d.fr/fixedbugslist?version=20_R5): lista de todos os bugs corrigidos em 4D 20 R5. @@ -101,7 +105,7 @@ Leia [**O que há de novo no 4D 20 R5**](https://blog.4d.com/en-whats-new-in-4d- #### Mudanças de comportamento - Os plug-ins _4D Internet Commands_ e _4D for OCI_ não estão mais incluídos nos instaladores do 4D. Para obter esses plug-ins, você precisa se conectar ao [**Portal de descarrega de produtos 4D**](https://product-download.4d.com/). -- Changes made in the Structure editor regarding graphical appearance of tables and fields (color, position, order...) are now saved in a separate file named `catalog_editor.json` stored in the project's [`Sources`](../Project/architecture.md#sources) folder. +- Changes made in the Structure editor regarding graphical appearance of tables and fields (color, position, order...) agora são salvas em um arquivo separado chamado `catalog_editor.json` armazenado na pasta [`Sources`](../Project/architecture.md#sources) do projeto. ## 4D 20 R4 @@ -109,15 +113,15 @@ Leia [**O que há de novo no 4D v20 R4**](https://blog.4d.com/en-whats-new-in-4d #### Destaques -- Support of [`ECDSA` encryption format](../Admin/tls.md#encryption) for TLS certificates. +- Suporte do [formato de criptografia `ECDSA`](../Admin/tls.md#encryption) para os certificados TLS. - Client/server and SQL server TLS connections are now [configured dynamically](../Admin/tls.md#enabling-tls-with-the-other-servers) (no certificate files are required). - Direct HTML format for [structure definition exports](https://doc.4d.com/4Dv20R4/4D/20-R4/Exporting-and-importing-structure-definitions.300-6654851.en.html). - New [Code Live Checker](../code-editor/write-class-method.md#warnings-and-errors) that enhances code control during code typing, syntax checking, and compilation steps to prevent execution errors. - Method parameters declared in `#DECLARE` prototypes are [no longer necessary in "Compiler_" methods](../Concepts/parameters.md#compilation). - Suporte de [formatos personalizados de data e hora](../Project/date-time-formats.md) -- New [`Try(expression)` keyword](../Concepts/error-handling.md#tryexpression) to handle simple error cases. +- Nova palavra-chave [`Try(expression)`](../Concepts/error-handling.md#tryexpression) para tratar casos de erro simples. - Novo comando [`HTTP Parse message`](../API/HTTPRequestClass.md#http-parse-message). -- New [Non-blocking printing](../settings/compatibility.md) compatibility option. +- Nova opção de compatibilidade [Impressão sem bloqueio](../settings/compatibility.md). - Nuevo [modo de edición](../Admin/dataExplorer.md#editing-data) en el Explorador de datos. - Comandos da linguagem 4D: [Novidades de página](https://doc.4d.com/4Dv20R4/4D/20-R4/What-s-new.901-6655756.en.html) em doc.4d.com. - 4D Write Pro: [Página Novidades] (https://doc.4d.com/4Dv20R4/4D/20-R4/What-s-new.901-6683440.en.html) em doc.4d.com. @@ -128,7 +132,7 @@ Leia [**O que há de novo no 4D v20 R4**](https://blog.4d.com/en-whats-new-in-4d - Usando uma sintaxe legada para declarar parâmetros (por exemplo, `C_TEXT($1)` ou `var $1 : Text`) está agora obsoleto e gera avisos na digitação de código, verificação de sintaxe e etapas de compilação. - La coherencia de las selecciones ahora se mantiene después de que se hayan eliminado algunos registros y se hayan creado otros (ver [esta entrada de blog](https://blog.4d.com/4d-keeps-your-selections-of-records-consistent-regarding-deletion-of-records/)). - In the updated [OpenSSL library](#library-table), the default SSL/TLS security level has been changed from 1 to 2. Chaves RSA, DSA e DH de 1024 bits ou mais e menos de 2048 bits, assim como chaves ECC de 160 bits ou mais e menos de 224 bits, agora não são mais permitidas. Por padrão, a compressão TLS já estava desativada nas versões anteriores do OpenSSL. No nível de segurança 2, ele não pode ser habilitado. -- In order to allow password verification when the [4D user directory uses the bcrypt algorithm](https://blog.4d.com/bcrypt-support-for-passwords/), the "password" value in the _connectionInfo_ parameter of the [`Open datastore`](../commands/open-datastore.md) command is now sent in clear form by default. Make sure your "On REST authentication" database method can handle passwords in clear form (third parameter is then **False**) and that `Open datastore` encrypts your connection by passing the "tls" option to **True** in _connectionInfo_. In specific cases, a new "passwordAlgorithm" option can also be used for compatibility (see [`Open datastore`](../commands/open-datastore.md) command). +- Make sure your "On REST authentication" database method can handle passwords in clear form (third parameter is then **False**) and that `Open datastore` encrypts your connection by passing the "tls" option to **True** in _connectionInfo_. In order to allow password verification when the [4D user directory uses the bcrypt algorithm](https://blog.4d.com/bcrypt-support-for-passwords/), the "password" value in the _connectionInfo_ parameter of the [`Open datastore`](../commands/open-datastore.md) command is now sent in clear form by default. In specific cases, a new "passwordAlgorithm" option can also be used for compatibility (see [`Open datastore`](../commands/open-datastore.md) command). ## 4D 20 R3 @@ -167,11 +171,11 @@ Se suas aplicações 4D utilizam conexões TLS, é recomendado que você faça a #### Destaques - New [WebSocket class](../API/WebSocketClass.md) to create and manage client WebSocket connections from 4D. -- New QUIC network layer [interface setting](../settings/client-server.md#network-layer). +- Nova [configuração de interface] (../settings/client-server.md#network-layer) para a camada de rede QUIC. - 4D View Pro: soporte del formato de archivo **.sjs** para [la importación](../ViewPro/commands/vp-import-document) y la [exportación](../ViewPro/commands/vp-export-document) de documentos. - Comandos da linguagem 4D: [Novidades de página](https://doc.4d.com/4Dv20R2/4D/20-R2/What-s-new.901-6398284.en.html) em doc.4d.com. - 4D Write Pro: [Página Novidades] (https://doc.4d.com/4Dv20R2/4D/20-R2/What-s-new.901-6390313.en.html) em doc.4d.com. -- 4D Write Pro Interface: New [Table Wizard](../WritePro/writeprointerface.md). +- Interface 4D Write Pro: novo [Table Wizard](../WritePro/writeprointerface.md). - [**Lista de erros corrigida**](https://bugs.4d.fr/fixedbugslist?version=20_R2): lista de todos os bugs corrigidos em 4D 20 R2. #### Mudanças de comportamento diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/entities.md b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/entities.md index 6e6717207aacc5..140c254821522f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/entities.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/entities.md @@ -90,7 +90,7 @@ Puede manejar las entidades como cualquier otro objeto en 4D y pasar sus referen :::info -Com as entidades, não há o conceito de "registro atual" como na linguagem 4D. Pode utilizar tantas entidades quantas as necessárias, em simultâneo. There is also no automatic lock on an entity (see [Entity locking](#entity-locking)). When an entity is loaded, it uses the [lazy loading](glossary.md#lazy-loading) mechanism, which means that only the needed information is loaded. No entanto, no cliente/servidor, a entidade pode ser carregada automaticamente de forma direta, se necessário. +Com as entidades, não há o conceito de "registro atual" como na linguagem 4D. Pode utilizar tantas entidades quantas as necessárias, em simultâneo. Não há também bloqueio automático em uma entidade (veja [bloqueio de Entity](#entity-locking)). When an entity is loaded, it uses the [lazy loading](glossary.md#lazy-loading) mechanism, which means that only the needed information is loaded. No entanto, no cliente/servidor, a entidade pode ser carregada automaticamente de forma direta, se necessário. ::: @@ -238,7 +238,7 @@ Você pode atribuir ou modificar o valor de um "1" atributo da entidade relacion Puede crear un objeto de tipo [entity selection](dsMapping.md#entity-selection) de la siguiente manera: - Lance una búsqueda en las entidades [en una dataclass](API/DataClassClass.md#query) o en una [selección de entidades existente](API/EntitySelectionClass.md#query); -- Using the [`.all()`](API/DataClassClass.md#all) dataclass function to select all the entities in a dataclass; +- Usando a função dataclass [`.all()`](API/DataClassClassClass.md#all), para selecionar todas as entidades em um dataclass; - Using the [`Create entity selection`](../commands/create-entity-selection.md) command or the [`.newSelection()`](API/DataClassClass.md#newselection) dataclass function to create a blank entity selection; - Usando a [`.copy()`](API/EntitySelectionClass.md#copy) função para duplicar uma seleção de entidade existente; - Using one of the various functions from the [Entity selection class](API/EntitySelectionClass.md) that returns a new entity selection, such as [`.or()`](API/EntitySelectionClass.md#or); @@ -270,12 +270,12 @@ Una entity selection **compartible** tiene las siguientes características: - it can be stored in several shared objects or collections, or in a shared object or collection which already belongs to a group; - não permite a adição de novas entidades. A tentativa de adicionar uma entidade a uma seleção de entidade compartilhável acionará um erro (1637 - Esta seleção de entidade não pode ser alterada). To add an entity to a shareable entity selection, you must first transform it into a non-shareable entity selection using the [`.copy()`](API/EntitySelectionClass.md#copy) function, before calling [`.add()`](API/EntitySelectionClass.md#add). -> Most entity selection functions (such as [`.slice()`](API/EntitySelectionClass.md#slice), [`.and()`](API/EntitySelectionClass.md#and)...) support shareable entity selections since they do not need to alter the original entity selection (they return a new one). +> A maioria das funções de seleção de entidades (como [`.slice()`](API/EntitySelectionClass.md#slice), [`.and()`](API/EntitySelectionClass.md#and)...) support shareable entity selections since they do not need to alter the original entity selection (they return a new one). Una entity selection **modificable** tiene las siguientes características: - não pode ser compartilhado entre processos, nem armazenado em um objeto ou coleção compartilhada. A tentativa de armazenar uma seleção de entidade não compartilhável em um objeto ou coleção compartilhada acionará um erro (-10721 - Tipo de valor não suportado em um objeto compartilhado ou coleção compartilhada); -- it accepts the addition of new entities, i.e. it is supports the [`.add()`](API/EntitySelectionClass.md#add) function. +- ele aceita a adição de novas entidades, ou seja, suporta a função [`.add()`](API/EntitySelectionClass.md#add). #### Como é que são definidos? @@ -334,7 +334,7 @@ $comp2:=$lowSal.employer //$comp2 is alterable because $lowSal is alterable :::note Entity selections devolvidas pelo servidor -In client/server architecture, entity selections returned from the server are always shareable on the client, even if [`copy()`](API/EntitySelectionClass.md#copy) was called on the server. To make such an entity selection alterable on the client, you need to execute [`copy()`](API/EntitySelectionClass.md#copy) on the client side. Exemplo: +In client/server architecture, entity selections returned from the server are always shareable on the client, even if [`copy()`](API/EntitySelectionClass.md#copy) was called on the server. Para tornar essa seleção de entidade alterável no cliente, você precisa executar [`copy()`](API/EntitySelectionClass.md#copy) no lado do cliente. Exemplo: ```4d //a function is always executed on the server @@ -530,7 +530,7 @@ Los filtros no se aplican a las selecciones heredadas de registros manejadas a t | [entity.attributeName](../API/EntityClass.md#attributename) | Filtro aplicado si _attributeName_ corresponde a entidades relacionadas de una clase de datos filtrada (incluyendo alias o atributo calculado) | | [Create entity selection](../commands/create-entity-selection.md) | | -Other ORDA functions accessing data do not directly trigger the filter, but they nevertheless benefit from it. For example, the [`entity.next()`](../API/EntityClass.md#next) function will return the next entity in the already-filtered entity selection. On the other hand, if the entity selection is not filtered, [`entity.next()`](../API/EntityClass.md#next) will work on non-filtered entities. +Other ORDA functions accessing data do not directly trigger the filter, but they nevertheless benefit from it. Por exemplo, a função [`entity.next()`](../API/EntityClass.md#next) retornará a próxima entidade na seleção de entidade já filtrada. Por outro lado, se a seleção de entidade não estiver filtrada, [`entity.next()`](../API/EntityClass.md#next) funcionará em entidades não filtradas. :::note diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/global-stamp.md b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/global-stamp.md index 9f726a4360ebcc..733e4d18006750 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/global-stamp.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/global-stamp.md @@ -26,7 +26,7 @@ No confunda el **sello de modificación global** con el **sello de entidad** int ## Configurando rastreamento de alterações de dados -By default, the global modification stamp is not created (the [`.getGlobalStamp()`](../API/DataStoreClass.md#getglobalstamp) function returns 0. To enable data change tracking, you need to add special fields and a table to your structure. You can use the contextual menu of the Structure Editor to create automatically all necessary elements. +Por padrão, o carimbo de modificação global não é criado (a função [`.getGlobalStamp()`](../API/DataStoreClass.md#getglobalstamp) retorna 0. To enable data change tracking, you need to add special fields and a table to your structure. You can use the contextual menu of the Structure Editor to create automatically all necessary elements. ### Requisitos de estrutura diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/glossary.md b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/glossary.md index 4638a279249305..fe023e9dde6395 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/glossary.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/glossary.md @@ -9,7 +9,7 @@ title: Glossary ## Ação -Todas las acciones que pueden realizarse en un [recurso](#resource). As ações disponíveis são: criar, ler, atualizar, largar, executar, promover e descrever. +Todas las acciones que pueden realizarse en un [recurso](#resource). Available actions are: create, read, update, drop, execute, and promote. ## Atributo diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/ordaClasses.md b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/ordaClasses.md index 50b7119094f4a5..ae5b45dc2373fa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/ordaClasses.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/ordaClasses.md @@ -847,7 +847,7 @@ As this type of call is an easy offered action, the developer must ensure no sen ### params -A function with `onHttpGet` keyword accepts [parameters](../Concepts/parameters.md). +Uma função com a palavra-chave `onHttpGet` aceita [parâmetros](../Concepts/parameters.md). In the HTTP GET request, parameters must be passed directly in the URL and declared using the `$params` keyword (they must be enclosed in a collection). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/privileges.md b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/privileges.md index a85887f7e28bcb..fde7f94459a87a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/privileges.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/privileges.md @@ -49,15 +49,14 @@ Permissões controlam o acesso a objetos ou funções de armazenamento de dados. As ações disponíveis estão relacionadas com o recurso alvo. -| Acções | armazém de dados | dataclass | atributo | função de modelo de dados ou função singleton | -| ------------ | ------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **create** | Criar entidade em qualquer classe de dados | Criar entidade nesta classe de dados | Criar uma entidade com um valor diferente do valor padrão permitido para este atributo (ignorado para atributos de alias). | n/a | -| **read** | Ler atributos em qualquer dataclass | Ler atributos nesta classe de dados | Leia o conteúdo desse atributo | n/a | -| **update** | Atualizar atributos em qualquer classe de dados. | Atualiza os atributos nesta classe de dados. | Atualiza o conteúdo deste atributo (ignorado para atributos alias). | n/a | -| **drop** | Eliminar dados em qualquer classe de dados. | Eliminar dados nesta classe de dados. | Excluir um valor não nulo para este atributo (exceto para alias e atributo calculado). | n/a | -| **execute** | Executar qualquer função no projeto (datastore, dataclass, seleção de entidade, entidade) | Executa qualquer função na classe de dados. Funções de Dataclass e funções de seleção de entidades, e funções de seleção de entidades são tratadas como funções de dataclass | n/a | Executar esta função | -| **describe** | Todas as classes de dados estão disponíveis na /rest/$catalog API | Esta dataclass está disponível na API /rest/$catalog | Esse atributo está disponível na API /rest/$catalog. | Esta função de dataclass está disponível na API /rest/$catalog (não disponível com singletons) | -| **promote** | n/a | n/a | n/a | Associa um determinado privilégio durante a execução da função. O privilégio é temporariamente adicionado à sessão e removido no final da execução da função. Por segurança, só o processo de execução da função é acrescentado o privilégio, não toda a sessão. | +| Acções | armazém de dados | dataclass | atributo | função de modelo de dados ou função singleton | +| ----------- | ------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **create** | Criar entidade em qualquer classe de dados | Criar entidade nesta classe de dados | Criar uma entidade com um valor diferente do valor padrão permitido para este atributo (ignorado para atributos de alias). | n/a | +| **read** | Ler atributos em qualquer dataclass | Ler atributos nesta classe de dados | Leia o conteúdo desse atributo | n/a | +| **update** | Atualizar atributos em qualquer classe de dados. | Atualiza os atributos nesta classe de dados. | Atualiza o conteúdo deste atributo (ignorado para atributos alias). | n/a | +| **drop** | Eliminar dados em qualquer classe de dados. | Eliminar dados nesta classe de dados. | Excluir um valor não nulo para este atributo (exceto para alias e atributo calculado). | n/a | +| **execute** | Executar qualquer função no projeto (datastore, dataclass, seleção de entidade, entidade) | Executa qualquer função na classe de dados. Funções de Dataclass e funções de seleção de entidades, e funções de seleção de entidades são tratadas como funções de dataclass | n/a | Executar esta função | +| **promote** | n/a | n/a | n/a | Associa um determinado privilégio durante a execução da função. O privilégio é temporariamente adicionado à sessão e removido no final da execução da função. Por segurança, só o processo de execução da função é acrescentado o privilégio, não toda a sessão. | **Notas:** @@ -67,10 +66,7 @@ As ações disponíveis estão relacionadas com o recurso alvo. - Valores padrão: na implementação atual, apenas _Null_ está disponível como valor padrão. - No REST [modo de login](../REST/authUsers.md/#force-login-mode), a [função `authentify()`](../REST/authUsers.md#function-authentify) é sempre executável por usuários convidados, independentemente da configuração das permissões. -A definição das permissões deve ser coerente, nomeadamente: - -- Permissões de **atualização** e **drop** também precisam da permissão **read** (mas **create** não precisa dela) -- Para funções do modelo de dados, permissão de **promoção** também precisa de permissão **descrever**. +Setting permissions requires to be consistent, in particular **update** and **drop** permissions also need **read** permission (but **create** does not need it). ## Privilégios e roles @@ -139,7 +135,6 @@ O arquivo padrão tem o seguinte conteúdo: "create": ["none"], "update": ["none"], "drop": ["none"], - "describe": ["none"], "execute": ["none"], "promote": ["none"] } @@ -175,26 +170,25 @@ No Qodly Studio para 4D, o modo pode ser definido usando a opção [**Forçar lo A sintaxe do arquivo `roles.json` é a seguinte: -| Nome da propriedade | | | Tipo | Obrigatório | Descrição | -| ------------------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | ---------------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------- | -| privileges | | | Coleção de objetos de 'privilégio' | X | Lista de privilégios definidos | -| | \[].privilege | | Text | | Nome do privilégio | -| | \[].includes | | Coleção de strings | | Lista de nomes de privilégios incluídos | -| roles | | | Coleção de objetos `papel` | | Lista de roles definidos | -| | \[].role | | Text | | Nome da role | -| | \[].privileges | | Coleção de strings | | Lista de nomes de privilégios incluídos | -| permissions | | | Object | X | Lista de acções permitidas | -| | allowed | | Colección de objetos `permission` | | Lista de permissões permitidas | -| | | \[].applyTo | Text | X | Targeted [resource](#resources) name | -| | | \[].type | Text | X | [Resource](#resources) type: "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | -| | | \[].read | Coleção de strings | | Lista de privilégios | -| | | \[].create | Coleção de strings | | Lista de privilégios | -| | | \[].update | Coleção de strings | | Lista de privilégios | -| | | \[].drop | Coleção de strings | | Lista de privilégios | -| | | \[].describe | Coleção de strings | | Lista de privilégios | -| | | \[].execute | Coleção de strings | | Lista de privilégios | -| | | \[].promote | Coleção de strings | | Lista de privilégios | -| forceLogin | | | Parâmetros | | True para habilitar el [modo "forceLogin"](../REST/authUsers.md#force-login-mode) | +| Nome da propriedade | | | Tipo | Obrigatório | Descrição | +| ------------------- | ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ---------------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------- | +| privileges | | | Coleção de objetos de 'privilégio' | X | Lista de privilégios definidos | +| | \[].privilege | | Text | | Nome do privilégio | +| | \[].includes | | Coleção de strings | | Lista de nomes de privilégios incluídos | +| roles | | | Coleção de objetos `papel` | | Lista de roles definidos | +| | \[].role | | Text | | Nome da role | +| | \[].privileges | | Coleção de strings | | Lista de nomes de privilégios incluídos | +| permissions | | | Object | X | Lista de acções permitidas | +| | allowed | | Colección de objetos `permission` | | Lista de permissões permitidas | +| | | \[].applyTo | Text | X | Targeted [resource](#resources) name | +| | | \[].type | Text | X | [Resource](#resources) type: "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | +| | | \[].read | Coleção de strings | | Lista de privilégios | +| | | \[].create | Coleção de strings | | Lista de privilégios | +| | | \[].update | Coleção de strings | | Lista de privilégios | +| | | \[].drop | Coleção de strings | | Lista de privilégios | +| | | \[].execute | Coleção de strings | | Lista de privilégios | +| | | \[].promote | Coleção de strings | | Lista de privilégios | +| forceLogin | | | Parâmetros | | True para habilitar el [modo "forceLogin"](../REST/authUsers.md#force-login-mode) | :::caution Lembrete @@ -254,9 +248,6 @@ A boa prática é manter todo o acesso aos dados bloqueado por padrão graças a "execute": [ "none" ], - "describe": [ - "none" - ], "promote": [ "none" ] diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md index 3471df94d3ab52..31afa0f5d2e3c9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ORDA/remoteDatastores.md @@ -49,7 +49,7 @@ Os recursos do ORDA relacionados ao bloqueio de entidades e à transação são - Si un proceso bloquea una entidad de un datastores remoto, la entidad se bloquea para todos los otros procesos, incluso cuando estos procesos comparten la misma sesión (ver [Bloqueo de entidades](entities.md#entity-locking)). Se várias entidades que apontam para um mesmo registro tiverem sido bloqueadas em um processo, todas elas deverão ser desbloqueadas no processo para remover o bloqueio. Se um bloqueio tiver sido colocado em uma entidade, o bloqueio será removido quando não houver mais referência a essa entidade na memória. - Las transacciones pueden iniciarse, validarse o cancelarse por separado en cada almacén de datos remoto mediante las funciones `dataStore.startTransaction()`, `dataStore.cancelTransaction()` y `dataStore.validateTransaction()`. Não têm impacto noutros datastores. -- Los comandos clásicos del lenguaje 4D (`START TRANSACTION`, `VALIDATE TRANSACTION`, `CANCEL TRANSACTION`) sólo se aplican al datastore principal (devuelto por `ds`). +- Classic 4D language commands ([`START TRANSACTION`](../commands-legacy/start-transaction.md), [`VALIDATE TRANSACTION`](../commands-legacy/validate-transaction.md), [`CANCEL TRANSACTION`](../commands-legacy/cancel-transaction.md)) only apply to the main datastore (returned by `ds`). Se uma entidade de um datastore remoto é segurada por uma transação em um processo, outros processos não podem atualizá-lo, mesmo que esses processos compartilhem a mesma sessão. - Os bloqueios nas entidades são removidos e as transações são anuladas: - quando o processo é eliminado. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Project/architecture.md b/i18n/pt/docusaurus-plugin-content-docs/current/Project/architecture.md index 84a4a69c74ce89..0c7d0433b43ff2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Project/architecture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Project/architecture.md @@ -62,7 +62,7 @@ This text file can also contain configuration keys, in particular [`"tokenizedTe | tips.json | Dicas definidas | JSON | | lists.json | Listas definidas | JSON | | filters.json | Filtros definidos | JSON | -| dependencies.json | Names of [components to load](components.md) in the project | JSON | +| dependencies.json | Nomes de [componentes a serem carregados](components.md) no projeto | JSON | | HTTPHandlers.json | Custom [HTTP request handlers](../WebServer/http-request-handler.md) defined for the web server | JSON | | styleSheets.css | Folhas de estilo CSS | CSS | | styleSheets_mac.css | Folhas de estilo css para Mac (de um banco de dados binário convertido) | CSS | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Project/compiler.md b/i18n/pt/docusaurus-plugin-content-docs/current/Project/compiler.md index 50e43485075592..6e888511039519 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Project/compiler.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Project/compiler.md @@ -31,7 +31,7 @@ If errors are detected, the process is stopped and the "Compilation failed" mess ![](../assets/en/Project/compilerWin2.png) -Double-click on each error detected to open the method or class concerned directly in the 4D method editor. The line containing the error is highlighted and the type of error is displayed in the syntax area of the window. +Clique duas vezes em cada erro detectado para abrir o método ou a classe em questão diretamente no Editor de Código 4D. The line containing the error is highlighted and the type of error is displayed in the syntax area of the window. Utilice los comandos **Error anterior** / **Error siguiente** del menú **Método** para navegar de un error a otro. @@ -91,7 +91,7 @@ The "Compiler" tab of the Settings dialog box lets you set parameters related to This area groups the generic options used during the compilation process. -#### Generate symbol file +#### Gerar o arquivo de símbolo Used to generate the error file (see [error file](#symbol-file)) at the time of syntax checking. Used to generate the symbol file (see [symbol file](#symbol-file)). @@ -231,7 +231,7 @@ Estas duas listas contêm quatro colunas: - Tipo da variável. Types are set by compiler directive commands or are determined by the compiler based on the use of the variable. Se o tipo de uma variável não puder ser determinado, a coluna estará vazia. - Número de dimensões se a variável for um array. - Reference to the context in which the compiler established the type of the variable. If the variable is used in several contexts, the context mentioned is the one used by the compiler to determine its type. - - If the variable was found in a database method, the database method name is given, preceded by (M)\*. + - Se a variável foi encontrada em um método de banco de dados, o nome do método de banco de dados é dado, precedido por (M)\*. - If the variable was found in a project method, the method is identified as it has been defined in 4D, preceded by (M). - If the variable was found in a trigger, the table name is given, preceded by (TM). - If the variable was found in a form method, the form name is given, preceded by the table name and (FM). @@ -287,7 +287,7 @@ Si su proyecto no tiene errores generales, el archivo no tendrá una sección _E Um ficheiro de erros pode conter três tipos de mensagens: -- **Errores asociados a una línea específica**: estos errores se muestran en contexto -la línea en la que se encontraron y con una explicación. The compiler reports this type of error when it encounters an expression in which it sees an inconsistency related to data type or syntax. In the compiler window, double–click on each error detected in order to open the method concerned directly in the 4D Method editor, with the line containing the error highlighted. +- **Errores asociados a una línea específica**: estos errores se muestran en contexto -la línea en la que se encontraron y con una explicación. The compiler reports this type of error when it encounters an expression in which it sees an inconsistency related to data type or syntax. Na janela do compilador, clique duas vezes em cada erro detectado para abrir o método em questão diretamente no Editor de Código 4D, com a linha que contém o erro destacado. - **Errores generales**: son errores que imposibilitan la compilación del proyecto. Há dois casos em que o compilador informa um erro geral: - Não foi possível determinar o tipo de dados de uma variável processo. @@ -295,7 +295,7 @@ Um ficheiro de erros pode conter três tipos de mensagens: General errors are so named because they cannot be linked to any specific method. In the first case, the compiler could not perform a specified typing anywhere in the project. In the second, it was unable to decide whether to associate a given name with one object rather than with another. -- **Avisos**: los avisos no son errores. They do not prevent the project from being compiled, but simply point out potential code errors. Na janela do compilador, os avisos aparecem em itálico. Double-click on each warning to open the method concerned directly in the 4D Method editor, with the line containing the warning highlighted. +- **Avisos**: los avisos no son errores. They do not prevent the project from being compiled, but simply point out potential code errors. Na janela do compilador, os avisos aparecem em itálico. Clique duas vezes em cada aviso para abrir o método em questão diretamente no Editor de Código 4D, com a linha que contém o aviso destacado. ### Controlo de execução diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Project/components.md b/i18n/pt/docusaurus-plugin-content-docs/current/Project/components.md index 7ff590e3a7624a..ecc2ee272661d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Project/components.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Project/components.md @@ -47,7 +47,7 @@ Esta página descreve como trabalhar com componentes nos ambientes **4D** e **4D To load a component in your 4D project, you can either: - copie os arquivos de componentes na pasta [**Components** do seu projeto] (architecture.md#components), -- or, declare the component in the **dependencies.json** file of your project; this is done automatically for local files when you [**add a dependency using the Dependency manager interface**](#adding-a-dependency). +- or, declare the component in the **dependencies.json** file of your project; this is done automatically for local files when you [**add a dependency using the Dependency manager interface**](#adding-a-github-dependency). Os componentes declarados no arquivo **dependencies.json** podem ser armazenados em locais diferentes: @@ -55,7 +55,7 @@ Os componentes declarados no arquivo **dependencies.json** podem ser armazenados - em qualquer lugar de sua máquina: o caminho do componente deve ser declarado no arquivo **environment4d.json** - em um repositório GitHub: o caminho do componente pode ser declarado no arquivo **dependencies.json** ou no arquivo **environment4d.json**, ou em ambos os arquivos. -If the same component is installed at different locations, a [priority order](#priority) is applied. +Se o mesmo componente for instalado em locais diferentes, uma [ordem de prioridade](#prioridade) é aplicada. ### dependencies.json e environment4d.json @@ -95,14 +95,16 @@ Since components can be installed in different ways, a priority order is applied ```mermaid flowchart TB - id1("1\nComponents from project's Components folder")~~~ - id2("2\nComponents listed in dependencies.json")~~~ - id2 -- environment4d.json gives path --> id4("Load component\nbased on path declared\nin environment4d.json") + id1("1
    Components from project's Components folder") + ~~~ + id2("2
    Components listed in dependencies.json") + ~~~ + id2 -- environment4d.json gives path --> id4("Load component based on path declared in environment4d.json") ~~~ - id3("3\nUser 4D components") - id2 -- environment4d.json doesn't give path --> id5("Load component\nnext to\npackage folder") + id3("3
    User 4D components") + id2 -- environment4d.json doesn't give path --> id5("Load component next to package folder") ~~~ - id3("3\nUser 4D components") + id3("3
    User 4D components") ``` When a component cannot be loaded because of another instance of the same component located at a higher priority level, both get a specific [status](#dependency-status): the non-loaded component is given the _Overloaded_ status, while the loaded component has the _Overloading_ status. @@ -163,7 +165,7 @@ If a component path declared in the **environment4d.json** file is not found whe #### Caminhos relativos versus caminhos absolutos -Paths are expressed in POSIX syntax as described in [this paragraph](../Concepts/paths#posix-syntax). +Os caminhos são expressos na sintaxe POSIX, conforme descrito em [este parágrafo](../Concepts/paths#posix-syntax). Os caminhos relativos são relativos ao arquivo [`environment4d.json`](#environment4djson). Absolute paths are linked to the user's machine. @@ -171,9 +173,9 @@ Using relative paths is **recommended** in most cases, since they provide flexib Absolute paths should only be used for components that are specific to one machine and one user. -### Components stored on GitHub +### Componentes armazenados no GitHub -4D components available as GitHub releases can be referenced and automatically loaded in your 4D projects. +4D components available as GitHub releases can be referenced and automatically loaded and updated in your 4D projects. :::note @@ -222,7 +224,7 @@ Você declara um componente armazenado no GitHub no arquivo [**dependencies.json #### Tags and versions -Ao criar uma versão no GitHub, você especifica uma **etiqueta** e uma **versão**. +When a release is created in GitHub, it is associated to a **tag** and a **version**. The Dependency manager uses these information to handle automatic availability of components. - **Etiquetas** são textos que fazem referência exclusiva a uma versão. **Etiquetas** são textos que fazem referência exclusiva a uma versão. In the [**dependencies.json** file](#dependencyjson) and [**environment4d.json**](#environment4djson) files, you can indicate the release tag you want to use in your project. Por exemplo : @@ -237,7 +239,7 @@ Ao criar uma versão no GitHub, você especifica uma **etiqueta** e uma **versã } ``` -- Uma versão também é identificada por uma **versão**. The versioning system used is based on the _Semantic Versioning_ concept, which is the most commonly used. Each version number is identified as follows: `majorNumber.minorNumber.pathNumber`. In the same way as for tags, you can indicate the version of the component you wish to use in your project, as in this example: +- Uma versão também é identificada por uma **versão**. The versioning system used is based on the [_Semantic Versioning_](https://regex101.com/r/Ly7O1x/3/) concept, which is the most commonly used. Each version number is identified as follows: `majorNumber.minorNumber.pathNumber`. In the same way as for tags, you can indicate the version of the component you wish to use in your project, as in this example: ```json { @@ -250,7 +252,7 @@ Ao criar uma versão no GitHub, você especifica uma **etiqueta** e uma **versã } ``` -The version is used to define which versions can be used. É usada uma [versão semântica padrão] (https://regex101.com/r/Ly7O1x/3/). A range is defined by two semantic versions, a min and a max, with operators '\< | > | >= | <= | ='. O `*` pode ser usado como um espaço reservado para todas as versões. ~ and ^ prefixes define versions starting at a number, and up to respectively the next major and minor version. +A range is defined by two semantic versions, a min and a max, with operators '\< | > | >= | <= | ='. O `*` pode ser usado como um espaço reservado para todas as versões. ~ and ^ prefixes define versions starting at a number, and up to respectively the next major and minor version. Eis alguns exemplos: @@ -268,6 +270,8 @@ Eis alguns exemplos: If you do not specify a tag or a version, 4D automatically retrieves the "latest" version. +The Dependency manager checks periodically if component updates are available on Github. If a new version is available for a component, an update indicator is then displayed for the component in the dependency list, [depending on your settings](#defining-a-github-dependency-version-range). + #### Repositórios privados If you want to integrate a component located in a private repository, you need to tell 4D to use a connection token to access it. @@ -280,21 +284,7 @@ For more information, please refer to the [GitHub token interface](https://githu ::: -Em seguida, insira a chave "github" em seu arquivo [**environment4d.json**](#environment4djson): - -```json -{ - "github": { - "token": "ghpXXXXXXXXXXXXUvW8x9yZ" - }, - "dependencies": { - - "mySecondGitHubComponent": { - "github": "JohnSmith/mySecondGitHubComponent" - } - } -} -``` +You then need to [provide your connection token](#providing-your-github-access-token) to the Dependency manager. #### Cache local para dependências @@ -305,7 +295,7 @@ Referenced GitHub components are downloaded in a local cache folder then loaded ...onde `` pode ser "4D", "4D Server" ou "tool4D". -#### dependency-lock.json +### dependency-lock.json A `dependency-lock.json` file is created in the [`userPreferences` folder](architecture.md#userpreferencesusername) of your project. @@ -313,7 +303,7 @@ This file logs information such as the state of dependencies, paths, urls, loadi ## Monitoramento das dependências do projeto -In an opened project, you can add, remove, and get information about dependencies and their current loading status in the **Dependencies** panel. +In an opened project, you can add, remove, update, and get information about dependencies and their current loading status in the **Dependencies** panel. Para exibir o painel Dependências: @@ -327,7 +317,72 @@ The Dependencies panel is then displayed. Dependencies are sorted by name in alp ![dependency](../assets/en/Project/dependency.png) -The Dependencies panel interface allows you to manage dependencies (on 4D single-user and 4D Server). Você pode adicionar ou remover as dependências **local** e **GitHub**. +The Dependencies panel interface allows you to manage dependencies (on 4D single-user and 4D Server). + +### Filtering dependencies + +By default, all dependencies identified by the Dependency manager are listed, whatever their [status](#dependency-status). You can filter the displayed dependencies according to their status by selecting the appropriate tab at the top of the Dependencies panel: + +![dependency-tabs](../assets/en/Project/dependency-tabs.png) + +- **Ativo**: dependências carregadas e podem ser usadas no projeto. Isso inclui dependências _overloading_, que são de fato carregadas. _Overloaded_ dependencies are listed in the **Conflicts** panel, along with all conflicting dependencies. +- **Inativo**: dependências que não estão carregadas no projeto e não estão disponíveis. There are many possible reasons for this status: missing files, version incompatibility... +- **Conflito**: dependências carregadas, mas que sobrecarregam pelo menos outra dependência em um [nível de prioridade](#priority) inferior. Overloaded dependencies are also displayed so that you can check the origin of the conflict and take appropriate actions. + +### Dependency status + +Dependencies requiring the developer's attention are indicated by a **status label** at the right side of the line and a specific background color: + +![dependency-status](../assets/en/Project/dependency-conflict2.png) + +Estão disponíveis as seguintes etiquetas de status: + +- **Overloaded**: a dependência não é carregada porque está sobrecarregada por outra dependência com o mesmo nome em um [nível de prioridade] mais alto (#prioridade). +- **Overloading**: a dependência está carregada e está sobrecarregando uma ou mais dependências com o mesmo nome em um [nível de prioridade] inferior (#prioridade). +- **Not found**: a dependência está declarada no arquivo dependencies.json, mas não foi encontrada. +- **Inactive**: a dependência não é carregada porque não é compatível com o projeto (por exemplo, o componente não é compilado para a plataforma atual). +- **Duplicated**: The dependency is not loaded because another dependency with the same name exists at the same location (and is loaded). +- **Available after restart**: The dependency reference has just been added or updated [using the interface](#monitoring-project-dependencies), it will be loaded once the application restarts. +- **Unloaded after restart**: The dependency reference has just been removed [using the interface](#removing-a-dependency), it will be unloaded once the application restarts. +- **Update available \**: A new version of the GitHub dependency matching your [component version configuration](#defining-a-github-dependency-version-range) has been detected. +- **Refreshed after restart**: The [component version configuration](#defining-a-github-dependency-version-range) of the GitHub dependency has been modified, it will be adjusted the next startup. +- **Recent update**: A new version of the GitHub dependency has been loaded at startup. + +A tooltip is displayed when you hover over the dependency line, provding additional information about the status: + +![dependency-tips](../assets/en/Project/dependency-tip1.png) + +### Dependency origin + +The Dependencies panel lists all project dependencies, whatever their origin, i.e. wherever they come from. The dependency origin is provided by the tag under its name: + +![dependency-origin](../assets/en/Project/dependency-origin.png) + +As seguintes origens são possíveis: + +| Origin tag | Descrição | +| --------------------------------- | ---------------------------------------------------------------------------- | +| Componente 4D | Componente 4D incorporado, armazenado na pasta `Components` da aplicação 4D | +| dependencies.json | Component declared in the [`dependencies.json`](#dependenciesjson) file | +| Environment | Componente declarado no arquivo [`environnement4d.json`](#environment4djson) | +| Componente do projeto | Componente localizado na pasta [`Components`](architecture.md#components) | + +**Clique com o botão direito do mouse** em uma linha de dependência e selecione **Mostrar no disco** para revelar o local de uma dependência: + +![dependency-show](../assets/en/Project/dependency-show.png) + +:::note + +This item is not displayed if the dependency is inactive because its files are not found. + +::: + +Component icon and location logo provide additional information: + +- The component logo indicates if it is provided by 4D or a third-party developer. +- Local components can be differentiated from GitHub components by a small icon. + +![dependency-origin](../assets/en/Project/dependency-github.png) ### Adding a local dependency @@ -374,7 +429,15 @@ If the component is stored on a [private GitHub repository](#private-repositorie ::: -You can then define the [tag or version](#tags-and-versions) option for the dependency: +Define the [dependency version range](#tags-and-versions) to use for this project. By defaut, "Latest" is selected, which means that the lastest version will be automatically used. + +Clique no botão **Adicionar** para adicionar a dependência ao projeto. + +The GitHub dependency declared in the [**dependencies.json**](#dependenciesjson) file and added to the [inactive dependency list](#dependency-status) with the **Available at restart** status. It will be loaded once the application restarts. + +#### Defining a GitHub dependency version range + +Você pode definir a opção [tag ou versão](#tags-and-versions) para uma dependência: ![dependency-git-tag](../assets/en/Project/dependency-git-tag.png) @@ -383,99 +446,116 @@ You can then define the [tag or version](#tags-and-versions) option for the depe - **Up to Next Minor Version**: Similarly, restrict updates to the next minor version. - **Exact Version (Tag)**: Select or manually enter a [specific tag](#tags-and-versions) from the available list. -Clique no botão **Adicionar** para adicionar a dependência ao projeto. +The current GitHub dependency version is displayed on the right side of the dependency item: -The GitHub dependency declared in the [**dependencies.json**](#dependenciesjson) file and added to the [inactive dependency list](#dependency-status) with the **Available at restart** status. It will be loaded once the application restarts. +![dependency-origin](../assets/en/Project/dependency-version.png) -#### Providing your GitHub access token +#### Modifying the GitHub dependency version range -If the component is stored on a [private GitHub repository](#private-repositories), you need to provide your personal access token to the Dependency manager. Para fazer isso, você pode: +You can modify the [version setting](#defining-a-github-dependency-version-range) for a listed GitHub dependency: select the dependency to modify and select **Modify the dependency...** from the contextual menu. In the "Modify the dependency" dialog box, edit the Dependency Rule menu and click **Apply**. -- click on **Add a personal access token...** button that is displayed in the "Add a dependency" dialog box after you entered a private GitHub repository path. -- or, select **Add a GitHub personal access token...** in the Dependency manager menu at any moment. +Modifying the version range is useful for example if you use the automatic update feature and want to lock a dependency to a specific version number. -![dependency-add-token](../assets/en/Project/dependency-add-token.png) +### Updating GitHub dependencies -You can then enter your personal access token: +The Dependency manager provides an integrated handling of updates on GitHub. The following features are supported: -![dependency-add-token-2](../assets/en/Project/dependency-add-token-2.png) +- Automatic and manual checking of available versions +- Automatic and manual updating of components -You can only enter one personal access token. Once a token has been entered, you can edit it. +Manual operations can be done **per dependency** or **for all dependencies**. -### Removing a dependency +#### Checking for new versions -To remove a dependency from the Dependencies panel, select the dependency to remove and click on the **-** button of the panel or select **Remove the dependency...** from the contextual menu. You can select several dependencies, in which case the action is applied to all selected dependencies. +Dependencies are regularly checked for updates on GitHub. This checking is done transparently in background. :::note -Somente as dependências declaradas no arquivo [**dependencies.json**](#dependenciesjson) podem ser removidas usando o painel Dependencies. If a selected dependency cannot be removed, the **-** button is disabled and the **Remove the dependency...** menu item is hidden. +If you provide an [access token](#providing-your-github-access-token), checks are performed more frequently, as GitHub then allows a higher frequency of requests to repositories. ::: -É exibida uma caixa de diálogo de confirmação. Se a dependência foi declarada no arquivo **environment4d.json**, uma opção permite que você a remova: +In addition, you can check for updates at any moment, for a single dependency or for all dependencies: -![dependency-remove](../assets/en/Project/remove-comp.png) +- To check for updates of a single dependency, right-click on the dependency and select **Check for updates** in the contextual menu. -If you confirm the dialog box, the removed dependency [status](#dependency-status) is automatically flagged "Unload after restart". It will be unloaded once the application restarts. +![check component](../assets/en/Project/check-component-one.png) -### Origem da dependência +- To check for updates of all dependencies, click on the **options** menu at the bottom of the Dependency manager window and select **Check for updates**. -The Dependencies panel lists all project dependencies, whatever their origin, i.e. wherever they come from. The dependency origin is provided by the tag under its name: +![check components](../assets/en/Project/check-component-all.png) -![dependency-origin](../assets/en/Project/dependency-origin.png) +If a new component version matching your [component versioning configuration](#defining-a-github-dependency-version-range) is detected on GitHub, a specific dependency status is displayed: -As seguintes origens são possíveis: +![dependency-new-version](../assets/en/Project/dependency-available.png) -| Origin tag | Descrição | -| --------------------------------- | ---------------------------------------------------------------------------- | -| Componente 4D | Componente 4D incorporado, armazenado na pasta `Components` da aplicação 4D | -| dependencies.json | Component declared in the [`dependencies.json`](#dependenciesjson) file | -| Environment | Componente declarado no arquivo [`environnement4d.json`](#environment4djson) | -| Componente do projeto | Componente localizado na pasta [`Components`](architecture.md#components) | +You can decide to [update the component](#updating-dependencies) or not. -**Clique com o botão direito do mouse** em uma linha de dependência e selecione **Mostrar no disco** para revelar o local de uma dependência: +If you do not want to use a component update (for example you want to stay with a specific version), just let the current status (make sure the [**Automatic update**](#automatic-update) feature is not checked). -![dependency-show](../assets/en/Project/dependency-show.png) +#### Updating dependencies -:::note +**Updating a dependency** means downloading a new version of the dependency from GitHub and keeping it ready to be loaded the next time the project is started. -This item is not displayed if the dependency is inactive because its files are not found. +You can update dependencies at any moment, for a single dependency or for all dependencies: -::: +- To update a single dependency, right-click on the dependency and select **Update \ on next startup** in the contextual menu or in the **options** menu at the bottom of the Dependency manager window: -Component icon and location logo provide additional information: +![check component](../assets/en/Project/update-component-one.png) -- The component logo indicates if it is provided by 4D or a third-party developer. -- Local components can be differentiated from GitHub components by a small icon. +- To update all dependencies at once, click on the **options** menu at the bottom of the Dependency manager window and select **Update all remote dependencies on next startup**: -![dependency-origin](../assets/en/Project/dependency-github.png) +![check components](../assets/en/Project/update-component-all.png) -### Filtragem de dependências +In any cases, whatever the current dependency status, an automatic checking is done on GitHub before updating the dependency, to make sure the most recent version is retrieved, [according to your component versioning configuration](#defining-a-github-dependency-version-range). -By default, all dependencies identified by the Dependency manager are listed, whatever their [status](#dependency-status). You can filter the displayed dependencies according to their status by selecting the appropriate tab at the top of the Dependencies panel: +When you select an update command: -![dependency-tabs](../assets/en/Project/dependency-tabs.png) +- a dialog box is displayed and proposes to **restart the project**, so that the updated dependencies are immediately available. It is usually recommended to restart the project to evaluate updated dependencies. +- if you click Later, the update command is no longer available in the menu, meaning the action has been planned for the next startup. -- **Ativo**: dependências carregadas e podem ser usadas no projeto. Isso inclui dependências _overloading_, que são de fato carregadas. _Overloaded_ dependencies are listed in the **Conflicts** panel, along with all conflicting dependencies. -- **Inativo**: dependências que não estão carregadas no projeto e não estão disponíveis. There are many possible reasons for this status: missing files, version incompatibility... -- **Conflito**: dependências carregadas, mas que sobrecarregam pelo menos outra dependência em um [nível de prioridade](#priority) inferior. Overloaded dependencies are also displayed so that you can check the origin of the conflict and take appropriate actions. +#### Automatic update -### Status de dependência +The **Automatic update** option is available in the **options** menu at the bottom of the Dependency manager window. -Dependencies requiring the developer's attention are indicated by a **status label** at the right side of the line and a specific background color: +When this option is checked (default), new GitHub component versions matching your [component versioning configuration](#defining-a-github-dependency-version-range) are automatically updated for the next project startup. This option facilitates the day-to-day management of dependency updates, by eliminating the need to manually select updates. -![dependency-status](../assets/en/Project/dependency-conflict2.png) +When this option is unchecked, a new component version matching your [component versioning configuration](#defining-a-github-dependency-version-range) is only indicated as available and will require a [manual updating](#updating-dependencies). Unselect the **Automatic update** option if you want to monitor dependency updates precisely. -Estão disponíveis as seguintes etiquetas de status: +### Providing your GitHub access token -- **Overloaded**: a dependência não é carregada porque está sobrecarregada por outra dependência com o mesmo nome em um [nível de prioridade] mais alto (#prioridade). -- **Overloading**: a dependência está carregada e está sobrecarregando uma ou mais dependências com o mesmo nome em um [nível de prioridade] inferior (#prioridade). -- **Not found**: a dependência está declarada no arquivo dependencies.json, mas não foi encontrada. -- **Inactive**: a dependência não é carregada porque não é compatível com o projeto (por exemplo, o componente não é compilado para a plataforma atual). -- **Duplicated**: The dependency is not loaded because another dependency with the same name exists at the same location (and is loaded). -- **Available after restart**: The dependency reference has just been added [using the interface](#monitoring-project-dependencies), it will be loaded once the application restarts. -- **Unloaded after restart**: The dependency reference has just been removed [using the interface](#removing-a-dependency), it will be unloaded once the application restarts. +Registering your personal access token in the Dependency manager is: -A tooltip is displayed when you hover over the dependency line, provding additional information about the status: +- mandatory if the component is stored on a [private GitHub repository](#private-repositories), +- recommended for a more frequent [checking of dependency updates](#updating-github-dependencies). -![dependency-tips](../assets/en/Project/dependency-tip1.png) +To provide your GitHub access token, you can either: + +- click on **Add a personal access token...** button that is displayed in the "Add a dependency" dialog box after you entered a private GitHub repository path. +- or, select **Add a GitHub personal access token...** in the Dependency manager menu at any moment. + +![dependency-add-token](../assets/en/Project/dependency-add-token.png) + +You can then enter your personal access token: + +![dependency-add-token-2](../assets/en/Project/dependency-add-token-2.png) + +You can only enter one personal access token. Once a token has been entered, you can edit it. + +The provided token is stored in a **github.json** file in the [active 4D folder](../commands-legacy/get-4d-folder.md#active-4d-folder). + +### Removing a dependency + +To remove a dependency from the Dependencies panel, select the dependency to remove and click on the **-** button of the panel or select **Remove the dependency...** from the contextual menu. You can select several dependencies, in which case the action is applied to all selected dependencies. + +:::note + +Somente as dependências declaradas no arquivo [**dependencies.json**](#dependenciesjson) podem ser removidas usando o painel Dependencies. If a selected dependency cannot be removed, the **-** button is disabled and the **Remove the dependency...** menu item is hidden. + +::: + +É exibida uma caixa de diálogo de confirmação. Se a dependência foi declarada no arquivo **environment4d.json**, uma opção permite que você a remova: + +![dependency-remove](../assets/en/Project/remove-comp.png) + +If you confirm the dialog box, the removed dependency [status](#dependency-status) is automatically flagged "Unload after restart". It will be unloaded once the application restarts. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Project/documentation.md b/i18n/pt/docusaurus-plugin-content-docs/current/Project/documentation.md index 2cad8bb8986d95..d0ad8aa8ad09b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/Project/documentation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/Project/documentation.md @@ -3,11 +3,11 @@ id: documentation title: Documentar um projecto --- -In application projects, you can document your methods as well as your forms, tables, or fields. Creating documentation is particularly appropriate for projects being developed by multiple programmers and is generally good programming practice. Documentation can contain a description of an element as well as any information necessary to understand how the element functions in the application. +Nos projetos de aplicação, você pode documentar seus métodos e suas classes, formulários, tabelas ou campos. Creating documentation is particularly appropriate for projects being developed by multiple programmers and is generally good programming practice. Documentation can contain a description of an element as well as any information necessary to understand how the element functions in the application. Os seguintes elementos do projeto aceitam documentação: -- Methods (database methods, component methods, project methods, form methods, 4D Mobile methods, triggers, and classes) +- Métodos (métodos banco de dados, métodos componentes, métodos projeto, métodos formulário, métodos 4D Mobile e triggers) - Classes - Formulários - Tabela diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/REST/$format.md b/i18n/pt/docusaurus-plugin-content-docs/current/REST/$format.md index a3ea7f9cddaaf0..9be4ca307fe9be 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/REST/$format.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/REST/$format.md @@ -11,10 +11,10 @@ This parameter allows you to define the format to use to return data of your dat São suportados os seguintes formatos: -| Formato | Descrição | -| -------- | ------------------------------------------------------------------------------------------------- | -| `json` | Formato padrão do servidor 4D REST (usado por padrão) | -| `looker` | JSON format compliant with the [Looker Studio](https://lookerstudio.google.com/). | +| Formato | Descrição | +| -------- | ------------------------------------------------------------------------------------------------ | +| `json` | Formato padrão do servidor 4D REST (usado por padrão) | +| `looker` | Formato JSON compatível com o [Looker Studio](https://lookerstudio.google.com/). | ## Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/REST/ClassFunctions.md b/i18n/pt/docusaurus-plugin-content-docs/current/REST/ClassFunctions.md index 5a1810213eb535..f7998968606190 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/REST/ClassFunctions.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/REST/ClassFunctions.md @@ -628,7 +628,7 @@ $ageAverage:=$students.getAgeAverage() ### Returning a document -You want to propose a link to download the user manual for a selected product with several formats available. You write a `getUserManual()` function of the Products dataclass. You return an object of the [`OutgoingMessage` class](../API/OutgoingMessageClass.md). +You want to propose a link to download the user manual for a selected product with several formats available. You write a `getUserManual()` function of the Products dataclass. Você retorna um objeto da [classe `OutgoingMessage`](../API/OutgoingMessageClass.md). ```4d // Product dataclass diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/REST/REST_requests.md b/i18n/pt/docusaurus-plugin-content-docs/current/REST/REST_requests.md index d741b9ebc2e9a9..dc720cdfc84e33 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/REST/REST_requests.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/REST/REST_requests.md @@ -22,7 +22,7 @@ Como com todas as URIs, o primeiro parâmetro é definido por um “?” e todos Os parâmetros permitem que manipule dados em dataclasses em seu projeto 4D. Además de recuperar datos mediante los métodos HTTP `GET`, también se pueden añadir, actualizar y eliminar entidades de una clase de datos utilizando los métodos HTTP `POST`. -If you want the data to be returned in an array instead of JSON, use the [`$asArray`]($asArray.md) parameter. +Se quiser que os dados sejam retornados em um array em vez de JSON, use o parâmetro [`$asArray`]($asArray.md). ## Estado e resposta REST diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/REST/authUsers.md b/i18n/pt/docusaurus-plugin-content-docs/current/REST/authUsers.md index 556a6e1c80affb..e0e48c615af5eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/REST/authUsers.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/REST/authUsers.md @@ -27,7 +27,7 @@ A sequência de login do usuário é a seguinte: 1. At the first REST call (for a Qodly page call for example), a "guest" web user session is created. It has no privileges, no rights to execute requests other than [descriptive REST requests](#descriptive-rest-requests), no license consumption.\ Descriptive REST requests are always processed by the server, even if no web user session using a license is opened. In this case, they are processed through "guest" sessions. -2. You call your [`authentify()` function](#authentify) (created beforehand), in which you check the user credentials and call [`Session.setPrivileges()`](../API/SessionClass.md#setprivileges) with appropriate privileges. `authentify()` must be an exposed [datastore class function](../ORDA/ordaClasses.md#datastore-class). +2. You call your [`authentify()` function](#authentify) (created beforehand), in which you check the user credentials and call [`Session.setPrivileges()`](../API/SessionClass.md#setprivileges) with appropriate privileges. `authentify()` deve ser uma [função de datastore class](../ORDA/ordaClasses.md#datastore-class) exposta. 3. La petición `/rest/$catalog/authentify` se envía al servidor junto con las credenciales del usuario. This step only requires a basic login form that do not access data; it can be a [Qodly page](../WebServer/qodly-studio.md) (called via the `/rest/$getWebForm` request). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/REST/manData.md b/i18n/pt/docusaurus-plugin-content-docs/current/REST/manData.md index 8730b9f488e0a9..92881ca50465cf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/REST/manData.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/REST/manData.md @@ -7,7 +7,7 @@ Todos [los atributos, dataclasses expuestos](configuration.md#exposing-tables-an ## Pesquisas de dados -To query data directly, you can do so using the [`$filter`]($filter.md) function. Por exemplo, para encontrar a pessoa chamada "smith" poderia escrever: +Para consultar os dados diretamente, você pode fazer isso usando a função [`$filter`]($filter.md). Por exemplo, para encontrar a pessoa chamada "smith" poderia escrever: `http://127.0.0.1:8081/rest/Person/?$filter="lastName=Smith"` @@ -15,11 +15,11 @@ To query data directly, you can do so using the [`$filter`]($filter.md) function Com o REST API, pode realizar todas as manipulações de dados que quiser em 4D. -To add and modify entities, you can call [`$method=update`]($method.md#methodupdate). Sintaxe +Para adicionar e modificar entidades, você pode chamar [`$method=update`]($method.md#methodupdate). Sintaxe Besides retrieving a single entity in a dataclass using [\{dataClass\}({key})](dataClass.md#dataclasskey), you can also write a [class function](ClassFunctions.md#function-calls) that returns an entity selection (or a collection). -Before returning a selection, you can also sort it by using [`$orderby`]($orderby.md) one one or more attributes (even relation attributes). +Antes de devolver a coleção, também pode ordená-la utilizando [`$orderby`]($orderby.md) um ou vários atributos (mesmo os atributos de relação). ## Navegando dados @@ -35,7 +35,7 @@ To access the entity set, you must use `$entityset/\{entitySetID\}`, for example `/rest/People/$entityset/0AF4679A5C394746BFEB68D2162A19FF` -By default, an entity set is stored for two hours; however, you can change the timeout by passing a new value to [`$timeout`]($timeout.md). O timeout é continuamente resetado ao valor definido (seja o valor padrão ou um definido por você) a cada vez que for usado. +Por padrão, um conjunto de entidades é armazenado por duas horas; no entanto, você pode alterar o tempo limite passando um novo valor para [`$timeout`]($timeout.md). O timeout é continuamente resetado ao valor definido (seja o valor padrão ou um definido por você) a cada vez que for usado. Se quiser remover um conjunto de entidades do cache de 4D Server, você pode usar [`$method=release`]($method.md#methodrelease). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/application-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/application-server.md index 0efa303d84851c..9c73c94a778a5c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/application-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/application-server.md @@ -33,7 +33,7 @@ Si presiona el botón **Rechazar nuevas conexiones**: - O nome do projeto já não aparece na caixa de diálogo da ligação remota. - Os clientes de ambiente de trabalho que já estão ligados não são desligados e podem continuar a trabalhar normalmente. -> You can perform the same action with the [`REJECT NEW REMOTE CONNECTIONS`](https://doc.4d.com/4dv19/help/command/en/page1635.html) command. +> Você pode executar a mesma ação com o comando [`REJECT NEW REMOTE CONNECTIONS`](https://doc.4d.com/4dv19/help/command/en/page1635.html). - Si presiona el botón **Aceptar nuevas conexiones**, el servidor de aplicaciones vuelve a su estado por defecto. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/users.md b/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/users.md index c2b36ad2446a64..8c24faae495f1b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/users.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/users.md @@ -66,4 +66,4 @@ This button can be used to directly show the processes of the user(s) selected o Este botão pode ser utilizado para forçar a desconexão do(s) usuário(s) selecionado(s). When you click on this button, a warning dialog box appears so that you can confirm or cancel this operation (hold down **Alt** key while clicking on the **Drop user** button to disconnect the selected user(s) directly without displaying the confirmation dialog box). -> You can perfom the same action for remote users with the [`DROP REMOTE USER`](https://doc.4d.com/4dv19/help/command/en/page1633.html) command. +> É possível executar a mesma ação para usuários remotos com o comando [`DROP REMOTE USER`](https://doc.4d.com/4dv19/help/command/en/page1633.html). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/advanced-programming.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/advanced-programming.md index 46a3bf2d94cce7..b0cbf5fe77ecf3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/advanced-programming.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/advanced-programming.md @@ -12,7 +12,7 @@ Dado que 4D View Pro es alimentado por la [solución de hoja de cálculo SpreadJ Since 4D View Pro is a web area, you can select a webpage element and modify its behavior using Javascript. El siguiente ejemplo oculta la [cinta](./configuring.md#ribbon) spreadJS: ```4d -//Button's object method +//Método objeto do botão var $js; $answer : Text diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-add-formula-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-add-formula-name.md index d6249c5a7b505a..6d655dc2a3958d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-add-formula-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-add-formula-name.md @@ -24,7 +24,7 @@ O comando `VP ADD FORMULA NAME` retorna um novo objeto de intervalo que faz referência a uma célula específica. -> Este comando destina-se a intervalos de uma única célula. To create a range object for multiple cells, use the [VP Cells](vp-cells.md) command. +> Este comando destina-se a intervalos de uma única célula. Para criar um objeto de intervalo para várias células, use o comando [VP Cells](vp-cells.md). Em *vpAreaName*, passe o nome da área 4D View Pro. Se passar um nome que não existe, é devolvido um erro. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-get-workbook-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-get-workbook-options.md index 724c6dd7c26262..14a96d0fa6aa5d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-get-workbook-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-get-workbook-options.md @@ -25,7 +25,7 @@ Em *vpAreaName*, passe o nome da área 4D View Pro. O objeto devolvido contém todas as opções de workbook (padrão e modificadas) no workbook. -The list of workbook options is referenced in [`VP SET WORKBOOK OPTIONS`'s description](vp-set-workbook-options.md). +A lista de opções de pasta de trabalho é referenciada na descrição de [`VP SET WORKBOOK OPTIONS`](vp-set-workbook-options.md). #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-border.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-border.md index 807c4e3036d386..4dd35273bf5673 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-border.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-border.md @@ -56,7 +56,7 @@ VP SET BORDER(VP Cells("ViewProArea";1;1;3;3);$border;$option) #### Exemplo 2 -This code demonstrates the difference between `VP SET BORDER` and setting borders with the [`VP SET CELL STYLE`](vp-set-cell-style.md) command: +Esse código demonstra a diferença entre `VP SET BORDER` e a definição de bordas com o comando [`VP SET CELL STYLE`](vp-set-cell-style.md): ```4d // Set borders using VP SET BORDER diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-formula.md index 0fc67ccd6fea54..dad6e91eb3ec0f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-formula.md @@ -24,9 +24,9 @@ Em *rangeObj*, passe um intervalo de células (criado, por exemplo, com [`VP Cel The *formula* parameter specifies a formula or 4D method name to be assigned to the *rangeObj*. > If the *formula* is a string, use the period `.` as numerical separator and the comma `,` as parameter separator. -> If a 4D method is used, it must be allowed with the [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md) command. +> Se um método 4D for usado, ele deverá ser permitido com o comando [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md). -The optional *formatPattern* defines a [pattern](../configuring.md#cell-format) for the *formula*. +O *formatPattern* opcional define um [padrão](../configuring.md#cell-format) para a *fórmula*. You remove the formula in *rangeObj* by replacing it with an empty string (""). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-formulas.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-formulas.md index de0559a29e96fc..56b36e603b5946 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-formulas.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-formulas.md @@ -26,7 +26,7 @@ O parâmetro *formulasCol* é uma coleção bidimensional: - Cada subcoleção define os valores das células para a linha. Values must be text elements containing the formulas to assign to the cells. > If the formula is a string, use the period `.` as numerical separator and the comma `,` as parameter separator. -> If a 4D method is used, it must be allowed with the [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md) command. +> Se um método 4D for usado, ele deverá ser permitido com o comando [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md). You remove the formulas in *rangeObj* by replacing them with an empty string (""). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-print-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-print-info.md index b58864f38ce14b..ee8a2c6517733e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-print-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-print-info.md @@ -21,7 +21,7 @@ The `VP SET PRINT INFO` command Passe o nome da área 4D View Pro a ser impressa em *vpAreaName*. Se passar um nome que não existe, é devolvido um erro. -You can pass an object containing definitions for various printing attributes in the *printInfo* parameter. To view the full list of the available attributes, see [Print Attributes](../configuring.md#print-attributes). +You can pass an object containing definitions for various printing attributes in the *printInfo* parameter. Para ver a lista completa dos atributos disponíveis, consulte [Atributos de impressão](../configuring.md#print-attributes). In the optional *sheet* parameter, you can designate a specific spreadsheet to print (counting begins at 0). Se omitido, a planilha atual será utilizada por padrão. Você pode selecionar explicitamente a planilha atual com a seguinte constante: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-text-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-text-value.md index 842d3b7903d14c..3a5c11b7c5901d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-text-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-text-value.md @@ -23,7 +23,7 @@ Em *rangeObj*, passe um intervalo de células (criado, por exemplo, com [`VP Cel The *textValue* parameter specifies a text value to be assigned to the *rangeObj*. -The optional *formatPattern* defines a [pattern](../configuring.md#cell-format) for the *textValue* parameter. +O *formatPattern* opcional define um [padrão](../configuring.md#cell-format) para o parâmetro *textValue*. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-time-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-time-value.md index 0ebc2c92de83f0..ddfd4684f97c35 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-time-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-time-value.md @@ -23,7 +23,7 @@ Em *rangeObj*, passe um intervalo de células (criado, por exemplo, com [`VP Cel The *timeValue* parameter specifies a time expressed in seconds to be assigned to the *rangeObj*. -The optional *formatPattern* defines a [pattern](../configuring.md#cell-format) for the *timeValue* parameter. +O *formatPattern* opcional define um [padrão](../configuring.md#cell-format) para o parâmetro *timeValue*. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-values.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-values.md index 63b25f978549de..b50a8c78fac060 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-values.md @@ -18,7 +18,7 @@ title: VP SET VALUES The `VP SET VALUES` command assigns a collection of values starting at the specified cell range. -In *rangeObj*, pass a range for the cell (created with [`VP Cell`](vp-cell.md)) whose value you want to specify. The cell defined in the *rangeObj* is used to determine the starting point. +Em *rangeObj*, passe um intervalo para a célula (criada com [`VP Cell`](vp-cell.md)) cujo valor você deseja especificar. The cell defined in the *rangeObj* is used to determine the starting point. > - If *rangeObj* is not a cell range, only the first cell of the range is used. > - If *rangeObj* includes multiple ranges, only the first cell of the first range is used. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-workbook-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-workbook-options.md index 1c6f7226b99b3b..57fba92e78379e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-workbook-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/commands/vp-set-workbook-options.md @@ -52,7 +52,7 @@ A tabela seguinte lista as opções de libro disponíveis: | calcOnDemand | boolean | As fórmulas só são calculadas quando são solicitadas. | | columnResizeMode | number | Modo de redimensionamento de colunas. Available values:
    ConstantValueDescription
    vk resize mode normal 0 Use normal resize mode (i.e remaining columns are affected)
    vk resize mode split 1 Use split mode (i.e remaining columns are not affected)
    | | copyPasteHeaderOptions | number | Cabeçalhos a incluir quando os dados são copiados ou colados. Available values:
    ConstantValueDescription
    vk copy paste header options all headers3 Includes selected headers when data is copied; overwrites selected headers when data is pasted.
    vk copy paste header options column headers 2 Includes selected column headers when data is copied; overwrites selected column headers when data is pasted.
    vk copy paste header options no headers0 Column and row headers are not included when data is copied; does not overwrite selected column or row headers when data is pasted.
    vk copy paste header options row headers1 Includes selected row headers when data is copied; overwrites selected row headers when data is pasted.
    | -| customList | collection | The list for users to customize drag fill, prioritize matching this list in each fill. Cada item da coleção é um conjunto de cadeias de caracteres. See on [SpreadJS docs](https://developer.mescius.com/spreadjs/docs/features/cells/AutoFillData/AutoFillLists). | +| customList | collection | The list for users to customize drag fill, prioritize matching this list in each fill. Cada item da coleção é um conjunto de cadeias de caracteres. Veja na [documentação SpreadJS](https://developer.mescius.com/spreadjs/docs/features/cells/AutoFillData/AutoFillLists). | | cutCopyIndicatorBorderColor | string | Border color for the indicator displayed when the user cuts or copies the selection. | | cutCopyIndicatorVisible | boolean | Apresenta um indicador quando se copia ou corta o item selecionado. | | defaultDragFillType | number | O tipo de preenchimento de arrastamento padrão. Valores disponíveis:
    ConstanteValorDescrição
    vk auto fill type auto5Preenche automaticamente as células.
    vk auto fill type clear values 4 Clears cell values.
    vk auto fill type copycells 0 Fills cells with all data objects, including values, formatting, and formulas.
    vk auto fill type fill formatting only 2 Fills cells only with formatting.
    vk auto fill type fill series 1 Fills cells with series.
    vk auto fill type fill without formatting 3 Preenche as células com valores e sem formatação.
    | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/configuring.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/configuring.md index b6052735852c4b..88d0334cfd83b1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/configuring.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/configuring.md @@ -143,7 +143,7 @@ Number formats apply to all number types (e.g., positive, negative, and zeros). | , | Mostra o separador de milhares num número. Thousands are separated by commas if the format contains a comma enclosed by number signs "#" or by zeros. Uma vírgula após um marcador de posição de dígito escala o número por 1.000. | #,0 mostrará 12200000 como 12,200,000 | | \_ | Salta a largura do carácter seguinte. | Usually used in combination with parentheses to add left and right indents, \_( and _) respectively. | | @ | Formatador de texto. Aplica o formato a todo o texto da célula | "\[Red]@" aplica a cor de letra vermelha aos valores de texto. | -| \* | Repete o carácter seguinte para preencher a largura da coluna. | 0\*- will include enough dashes after a number to fill the cell, whereas \*0 before any format will include leading zeros. | +| \* | Repete o carácter seguinte para preencher a largura da coluna. | 0\*- incluirá traços suficientes após um número para preencher a célula, enquanto \*0 antes de qualquer formato incluirá zeros à esquerda. | | " " | Exibe o texto dentro das aspas sem interpretá-lo. | "8%" será exibido como: 8% | | % | Mostra os números como uma percentagem de 100. | 8% será exibido como 0,08 | | \# | Espaço reservado para dígitos que não apresenta zeros extra. If a number has more digits to the right of the decimal than there are placeholders, the number is rounded up. | #.# mostrará 1.54 como 1.5 | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/formulas.md b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/formulas.md index fa2a0e9e7e496b..60b08dfa86b9e2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/formulas.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/ViewPro/formulas.md @@ -135,7 +135,7 @@ O 4D View Pro permite que você defina e chame **funções personalizadas 4D**, As funções personalizadas 4D podem receber [parâmetros](#parameters) da área 4D View Pro e retornar valores. -You declare all your functions using the [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions) command. Exemplos: +Você declara todas as suas funções usando o comando [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions). Exemplos: ```4d $o:=New object @@ -221,7 +221,7 @@ If you do not declare parameters, values can be sequentially passed to methods ( Os parâmetros Date e Object são tratados da seguinte maneira: -- Dates in _jstype_ will be passed as [object](Concepts/dt_object.md) in 4D code with two properties: +- As datas em _jstype_ serão passadas como [objeto](Concepts/dt_object.md) no código 4D com duas propriedades: | Propriedade | Tipo | Descrição | | ----------- | ---- | ----------------- | @@ -239,12 +239,12 @@ Os parâmetros Date e Object são tratados da seguinte maneira: 4D project methods can also return values in the 4D View Pro cell formula via $0. São suportados os seguintes tipos de dados para os parâmetros devolvidos: - [text](Aceitar/dt_string.md) (convertido em string em 4D View Pro) -- [real](Concepts/dt_number.md)/[longint](Concepts/dt_number.md) (converted to number in 4D View Pro) +- [real](Concepts/dt_number.md)/[longint](Concepts/dt_number.md) (convertido em número no 4D View Pro) - [date](Concepts/dt_date.md) (converted to JS Date type in 4D View Pro - hour, minute, sec = 0) - [time](Concepts/dt_time.md) (converted to JS Date type in 4D View Pro - date in base date, i.e. 12/30/1899) - [boolean](Concepts/dt_boolean.md) (convertido em bool no 4D View Pro) - [picture](Concepts/dt_picture.md) (jpg,png,gif,bmp,svg other types converted into png) creates a URI (data:image/png;base64,xxxx) and then used as the background in 4D View Pro in the cell where the formula is executed -- [object](Concepts/dt_object.md) with the following two properties (allowing passing a date and time): +- [object](Concepts/dt_object.md) com as duas propriedades a seguir (permitindo a passagem de uma data e hora): | Propriedade | Tipo | Descrição | | ----------- | ---- | ----------------- | @@ -276,7 +276,7 @@ $o.BIRTH_INFORMATION.summary:="Returns a formatted string from given information ## Compatibidade -Alternate solutions are available to declare fields or methods as functions in your 4D View Pro areas. These solutions are maintained for compatibility reasons and can be used in specific cases. However, using the [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions.md) command is recommended. +Alternate solutions are available to declare fields or methods as functions in your 4D View Pro areas. These solutions are maintained for compatibility reasons and can be used in specific cases. No entanto, é recomendável usar o comando [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions.md). ### Referência a campos utilizando a estrutura virtual diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/authentication.md b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/authentication.md index 1aa48784ff0fe1..c7e279a27b7e26 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/authentication.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/authentication.md @@ -28,7 +28,7 @@ Basically in this mode, it's up to the developer to define how to authenticate u Este modo de autenticação é o mais flexível porque permite que você: - ou delegar a autenticação do usuário a um aplicativo de terceiros (por exemplo, uma rede social, SSO); -- o bien, ofrecer una interfaz al usuario (por ejemplo, un formulario web) para que pueda crear su cuenta en su base de datos clientes; luego, puede autenticar a los usuarios con cualquier algoritmo personalizado (ver [este ejemplo](sessions.md#example) del O importante é que você nunca armazene a senha de forma não protegida, usando esse código: +- o bien, ofrecer una interfaz al usuario (por ejemplo, un formulario web) para que pueda crear su cuenta en su base de datos clientes; luego, puede autenticar a los usuarios con cualquier algoritmo personalizado (ver [este ejemplo](sessions.md#example) del O importante é que você nunca armazene a senha de forma não protegida, usando esse código: O importante é que você nunca armazene a senha de forma não protegida, usando esse código: ```4d //... criar conta de usuário @@ -52,7 +52,7 @@ Os valores introduzidos são então avaliados: - Si la opción **Incluir contraseñas de 4D** está marcada, las credenciales de los usuarios se evaluarán primero contra la [tabla interna de usuarios 4D](Users/overview.md). - Se o nome de usuário enviado pelo navegador existir na tabela de usuários 4D e a senha estiver correta, a conexão será aceita. Se a palavra-passe estiver incorreta, a ligação é recusada. - - If the user name does not exist in the table of 4D users, the [`On Web Authentication`](#on-web-authentication) database method is called. Si el método base `On Web Authentication` no existe, se rechazan las conexiones. + - Se o nome de usuário não existir na tabela de usuários 4D, o método de banco de dados [`On Web Authentication`](#on-web-authentication) será chamado. Si el método base `On Web Authentication` no existe, se rechazan las conexiones. - If the **Include 4D passwords** option is not checked, user credentials are sent to the [`On Web Authentication`](#on-web-authentication) database method along with the other connection parameters (IP address and port, URL...) para que você possa processá-los. Si el método base `On Web Authentication` no existe, se rechazan las conexiones. > Com o servidor da Web 4D Client, lembre-se de que todos os sites publicados pelas máquinas 4D Client compartilharão a mesma tabela de usuários. Validação de usuários/senhas é realizada pela aplicação 4D Server. @@ -61,7 +61,7 @@ Os valores introduzidos são então avaliados: This mode provides a greater level of security since the authentication information is processed by a one-way process called hashing which makes their contents impossible to decipher. -Como no modo BASIC, os usuários devem digitar seu nome e senha ao se conectarem. The [`On Web Authentication`](#on-web-authentication) database method is then called. When the DIGEST mode is activated, the $password parameter (password) is always returned empty. In fact, when using this mode, this information does not pass by the network as clear text (unencrypted). Por lo tanto, en este caso es imprescindible evaluar las solicitudes de conexión mediante el comando `WEB Validate digest`. +Como no modo BASIC, os usuários devem digitar seu nome e senha ao se conectarem. O método banco de dados [`On Web Authentication`](#on-web-authentication) é então chamado. When the DIGEST mode is activated, the $password parameter (password) is always returned empty. In fact, when using this mode, this information does not pass by the network as clear text (unencrypted). Por lo tanto, en este caso es imprescindible evaluar las solicitudes de conexión mediante el comando `WEB Validate digest`. > Você deve reiniciar o servidor Web para que as alterações feitas nesses parâmetros sejam levadas em conta. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/http-request-handler.md b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/http-request-handler.md index 28ad3a52072c03..481addc87fdc67 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/http-request-handler.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/http-request-handler.md @@ -22,7 +22,7 @@ Custom HTTP Request handlers are supported: - when [scalable sessions](./sessions.md#enabling-web-sessions) are enabled, - with the main Web Server only (HTTP Request handlers that may have been defined in [Web Servers of components](../WebServer/webServerObject.md) are ignored). -## HTTPHandlers.json File +## Arquivo HTTPHandlers.json You define your custom HTTP Request handlers in a configuration file named **HTTPHandlers.json** stored in the [`Project/Sources`](../Project/architecture.md#sources) folder. @@ -234,7 +234,7 @@ The HTTP Request handler code must be implemented in a function of a [**Shared** If the singleton is missing or not shared, an error "Cannot find singleton" is returned by the server. If the class or the function [defined as handler](#handler-definition) in the HTTPHandlers.json file is not found, an error "Cannot find singleton function" is returned by the server. -Request handler functions are not necessarily shared, unless some request handler properties are updated by the functions. In this case, you need to declare its functions with the [`shared` keyword](../Concepts/classes.md#shared-functions). +Request handler functions are not necessarily shared, unless some request handler properties are updated by the functions. Nesse caso, você precisa declarar suas funções com a palavra-chave [`shared`](../Concepts/classes.md#shared-functions). :::note @@ -275,7 +275,7 @@ The **HTTPHandlers.json** file: The called URL is: http://127.0.0.1:8044/putFile?fileName=testFile -The binary content of the file is put in the body of the request and a POST verb is used. The file name is given as parameter (*fileName*) in the URL. It is received in the [`urlQuery`](../API/IncomingMessageClass.md#urlquery) object in the request. +The binary content of the file is put in the body of the request and a POST verb is used. The file name is given as parameter (*fileName*) in the URL. Ele é recebido no objeto [`urlQuery`](../API/IncomingMessageClass.md#urlquery) na solicitação. ```4d //UploadFile class diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/httpRequests.md b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/httpRequests.md index 81be229f1ec48f..47938d40c2ebb2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/httpRequests.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/httpRequests.md @@ -323,8 +323,8 @@ Tenha em atenção que, com HTML, todos os objetos são objetos texto. Si se uti The 4D web server provides several low-level web commands allowing you to develop custom processing of requests: -- the [`WEB GET HTTP BODY`](../commands-legacy/web-get-http-body.md) command returns the body as raw text, allowing any parsing you may need -- the [`WEB GET HTTP HEADER`](../commands-legacy/web-get-http-header.md) command return the headers of the request. Es útil para manejar cookies personalizadas, por ejemplo (junto con el comando `WEB SET HTTP HEADER`). +- o comando [`WEB GET HTTP BODY`](../commands-legacy/web-get-http-body.md) retorna o corpo como texto bruto, permitindo qualquer análise necessária +- o comando [`WEB GET HTTP HEADER`](../commands-legacy/web-get-http-header.md) retorna os cabeçalhos da solicitação. Es útil para manejar cookies personalizadas, por ejemplo (junto con el comando `WEB SET HTTP HEADER`). - the [`WEB GET BODY PART`](../commands-legacy/web-get-body-part.md) and [`WEB Get body part count`](../commands-legacy/web-get-body-part-count.md) commands to parse the body part of a multi-part request and retrieve text values, but also files posted, using BLOBs. Esses comandos estão resumidos no gráfico a seguir: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/qodly-studio.md b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/qodly-studio.md index 4a0c1a4d4eaa30..1dc3f53618ac59 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/qodly-studio.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/qodly-studio.md @@ -128,15 +128,15 @@ There is no direct compatibility between apps implemented with 4D and apps imple ### Comparação de funcionalidades -| | Qodly Studio in 4D | Qodly Studio in Qodly Cloud platform | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| Visualizar e editar tabelas (classes de dados), atributos e relações | Editor de estrutura 4D(1) | Qodly Studio Model Editor | -| Páginas Qodly | Editor de páginas Qodly Studio | Editor de páginas Qodly Studio | -| Formulários para desktop | 4D IDE | _não suportado_ | -| Linguagem de programação | Linguagem 4D com ORDA | [QodlyScript](https://developer.qodly.com/docs/category/qodlyscript) featuring ORDA | -| IDE de codificação | 4D IDE code editor _or_ VS Code with [4D-Analyzer extension](https://github.com/4d/4D-Analyzer-VSCode)
    _4D Server only_: Qodly Studio code editor (see (2)) | Editor de código Qodly Studio | -| Depurador | 4D IDE debugger
    _4D Server only_: Qodly Studio debugger (see [this paragraph](#using-qodly-debugger-on-4d-server)) | Depurador Qodly Studio | -| REST/Web roles and privileges | roles.json direct edit/Qodly Studio roles and privileges editor | Qodly Studio role and privileges editor | +| | Qodly Studio no 4D | Qodly Studio in Qodly Cloud platform | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| Visualizar e editar tabelas (classes de dados), atributos e relações | Editor de estrutura 4D(1) | Qodly Studio Model Editor | +| Páginas Qodly | Editor de páginas Qodly Studio | Editor de páginas Qodly Studio | +| Formulários para desktop | 4D IDE | _não suportado_ | +| Linguagem de programação | Linguagem 4D com ORDA | [QodlyScript](https://developer.qodly.com/docs/category/qodlyscript) apresentando ORDA | +| IDE de codificação | 4D IDE code editor _or_ VS Code with [4D-Analyzer extension](https://github.com/4d/4D-Analyzer-VSCode)
    _4D Server only_: Qodly Studio code editor (see (2)) | Editor de código Qodly Studio | +| Depurador | 4D IDE debugger
    _4D Server only_: Qodly Studio debugger (see [this paragraph](#using-qodly-debugger-on-4d-server)) | Depurador Qodly Studio | +| Funções e privilégios REST/Web | roles.json direct edit/Qodly Studio roles and privileges editor | Qodly Studio role and privileges editor | Note that in 4D single-user, if you open some 4D code with the Qodly Studio code editor, syntax coloring is not available and a "Lsp not loaded" warning is displayed. (1) The **Model** item is disabled in Qodly Studio.
    (2) In 4D Server, opening 4D code with the Qodly Studio code editor is supported **for testing and debugging purposes** (see [this paragraph](#development-and-deployment)). @@ -146,9 +146,9 @@ Note that in 4D single-user, if you open some 4D code with the Qodly Studio code The following commands and classes are dedicated to the server-side management of Qodly pages: - Comando [`Web Form`](../API/WebFormClass.md#web-form): retorna a página Qodly como um objeto. -- [`Web Event`](../API/WebFormClass.md#web-event) command: returns events triggered within Qodly page components. +- comando [`Web Event`](../API/WebFormClass.md#web-event): retorna eventos acionados nos componentes da página Qodly. - [`WebForm`](../API/WebFormClass.md) class: functions and properties to manage the rendered Qodly page. -- [`WebFormItem`](../API/WebFormItemClass.md) class: functions and properties to manage Qodly page components. +- Classe [`WebFormItem`](../API/WebFormItemClass.md): funções e propriedades para gerenciar componentes de página Qodly. ### Uso de métodos projeto @@ -162,7 +162,7 @@ Recomendamos o uso de funções classe em vez de métodos projeto. Apenas as fun You can develop with Qodly Studio while your computer is not connected to the internet. Nesse caso, entretanto, os seguintes recursos não estão disponíveis: - [Templates](https://developer.qodly.com/docs/studio/pageLoaders/templates): the Template library is empty -- UI tips: they are not displayed when you click on ![alt-text](../assets/en/WebServer/tips.png) icons. +- Dicas da UI: elas não são exibidas quando você clica ![alt-text](../assets/en/WebServer/tips.png). ## Implantação @@ -189,7 +189,7 @@ Para ativar a renderização das páginas Qodly, as seguintes opções devem ser ### Escopo dos formulários Qodly -Ao renderizar formulários Qodly no Qodly Studio, o renderizador se conectará ao servidor web 4D por HTTP ou HTTPS, dependendo das configurações, seguindo o mesmo padrão de conexão HTTP/HTTPS do servidor web [4D WebAdmin](../Admin/webAdmin.md#accept-http-connections-on-localhost). See also [this paragraph](#about-license_usage) about URL schemes and license usage. +Ao renderizar formulários Qodly no Qodly Studio, o renderizador se conectará ao servidor web 4D por HTTP ou HTTPS, dependendo das configurações, seguindo o mesmo padrão de conexão HTTP/HTTPS do servidor web [4D WebAdmin](../Admin/webAdmin.md#accept-http-connections-on-localhost). Consulte também [este parágrafo](#about-license_usage) sobre esquemas de URL e uso de licenças. Keep in mind that Qodly Studio runs through the 4D WebAdmin web server. When you use Qodly Studio as a developer, even when you preview a Qodly Page in the studio, you're using the 4D WebAdmin web server. This allows you to see dataclasses, functions and attributes that are not exposed as REST resources for example (they are greyed out). @@ -227,7 +227,7 @@ Note that in this case, the Qodly Studio debugger will display all the code exec To attach the Qodly Studio debugger to your running 4D Server application: -1. [Open Qodly Studio](#opening-qodly-studio) from 4D Server. +1. [Abrir Qodly Studio](#opening-qodly-studio) do servidor 4D. :::note @@ -250,7 +250,7 @@ To detach the Qodly Studio debugger from your running 4D Server application: ## Force login -With Qodly Studio for 4D, the ["force login" mode](../REST/authUsers.md#force-login-mode) allows you to control the number of opened web sessions that require 4D Client licenses. You can also [logout](#logout) the user at any moment to decrement the number of retained licenses. +With Qodly Studio for 4D, the ["force login" mode](../REST/authUsers.md#force-login-mode) allows you to control the number of opened web sessions that require 4D Client licenses. Você também pode fazer [desconectar](#logout) o usuário a qualquer momento para diminuir o número de licenças retidas. ### Configuração diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/sessions.md b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/sessions.md index bd893e9327f0ce..45d1ded98cb9fc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/sessions.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/sessions.md @@ -8,7 +8,7 @@ O servidor web 4D oferece recursos integrados para gerenciar **sessões web**. C As sessões Web permitem: - manipular várias solicitações simultaneamente do mesmo cliente web através de um número ilimitado de processos preventivos (sessões web são **escaláveis**), -- manage session through a `Session` object and the [Session API](API/SessionClass.md), +- gerenciar a sessão por um objeto `Session` e da [API de session](API/SessionClass.md), - store and share data between processes of a web client using the [.storage](../API/SessionClass.md#storage) of the session, - associate privileges to the user running the session. @@ -42,7 +42,7 @@ Cuando [se habilitan las sesiones](#enabling-sessions), se implementan mecanismo :::info -The cookie name can be get using the [`.sessionCookieName`](API/WebServerClass.md#sessioncookiename) property. +O nome do cookie pode ser obtido usando a propriedade [`.sessionCookieName`](API/WebServerClass.md#sessioncookiename). ::: @@ -86,7 +86,7 @@ The lifespan of an inactive cookie is 60 minutes by default, which means that th This timeout can be set using the [`.idleTimeout`](API/SessionClass.md#idletimeout) property of the `Session` object (the timeout cannot be less than 60 minutes) or the _connectionInfo_ parameter of the [`Open datastore`](../commands/open-datastore.md) command. -When a web session is closed, if the [`Session`](commands/session.md) command is called afterwards: +Quando uma sessão Web é fechada, se o comando [`Session`](commands/session.md) for chamado posteriormente: - el objeto `Session` no contiene privilegios (es una sesión de invitado) - a propriedade [`storage`](API/SessionClass.md#storage) está vazia diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/webServerConfig.md b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/webServerConfig.md index 639d2244cb4db5..ffefed01cec3ba 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/webServerConfig.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/webServerConfig.md @@ -11,7 +11,7 @@ Há diferentes maneiras de configurar as definições do servidor web 4D, depend | Localização do parâmetro | Âmbito | Servidor Web a ser usado | | --------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | -------------------------------------------------------------- | -| [webServer object](webServerObject.md) | Temporário (sessão atual) | Qualquer servidor Web, incluindo servidores Web de componentes | +| [objeto webServer](webServerObject.md) | Temporário (sessão atual) | Qualquer servidor Web, incluindo servidores Web de componentes | | `WEB SET OPTION` o comando `WEB XXX` | Temporário (sessão atual) | Servidor principal | | [Caixa de diálogo **Configurações**](../settings/web.md) (páginas **Web**) | Permanente (todas as sessões, armazenadas no disco) | Servidor principal | @@ -64,7 +64,7 @@ Define o conjunto de caracteres a serem usados pelo servidor web 4D. O valor pad | --------------------- | -------------------------------------------------- | ----------- | | objeto webServer | [`cipherSuite`](API/WebServerClass.md#ciphersuite) | Text | -Lista de criptogramas usada para o protocolo seguro; define a prioridade dos algoritmos de cifra implementados pelo servidor da Web. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). See the [ciphers page](https://www.openssl.org/docs/manmaster/man1/ciphers.html) on the OpenSSL site. +Lista de criptogramas usada para o protocolo seguro; define a prioridade dos algoritmos de cifra implementados pelo servidor da Web. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). Veja a [página ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) no site OpenSSL. > The default cipher list used by 4D can be modified for the session using the `SET DATABASE PARAMETER` command, in which case the modification applies to the entire 4D application, including the web server, SQL server, client/server connections, as well as the HTTP client and all the 4D commands that make use of the secure protocol. @@ -131,11 +131,11 @@ Status of the HTTP request log file of the web server ([_HTTPDebugLog_nn.txt_](. ## Defaut Home page -| Pode ser definido com | Nome | Comentários | -| ---------------------------------- | ---------------------------------------------------------------------------- | ----------------------------------------- | -| objeto webServer | [`defaultHomepage`](API/WebServerClass.md#defaulthomepage) | Text | -| `WEB SET HOME PAGE` | | Pode ser diferente para cada processo web | -| Caixa de diálogos de configurações | [Configuration page/Default Home Page](../settings/web.md#default-home-page) | | +| Pode ser definido com | Nome | Comentários | +| ---------------------------------- | --------------------------------------------------------------------------------- | ----------------------------------------- | +| objeto webServer | [`defaultHomepage`](API/WebServerClass.md#defaulthomepage) | Text | +| `WEB SET HOME PAGE` | | Pode ser diferente para cada processo web | +| Caixa de diálogos de configurações | [Página Configuração/Página inicial padrão](../settings/web.md#default-home-page) | | Designar uma página inicial padrão para o servidor Web. Esta página pode ser estática ou [semi-dynamic]. @@ -351,11 +351,11 @@ Estado do gerenciamento de sessão antigo para o servidor Web 4D (obsoleto). ## Log Recording -| Pode ser definido com | Nome | Comentários | -| ---------------------------------- | ------------------------------------------------------------------- | ----------- | -| objeto webServer | [`logRecording`](API/WebServerClass.md#logrecording) | | -| `WEB SET OPTION` | `Web log recording` | | -| Caixa de diálogos de configurações | [Log (type) page](../settings/web.md#log-format) | Menu pop-up | +| Pode ser definido com | Nome | Comentários | +| ---------------------------------- | --------------------------------------------------------------------- | ----------- | +| objeto webServer | [`logRecording`](API/WebServerClass.md#logrecording) | | +| `WEB SET OPTION` | `Web log recording` | | +| Caixa de diálogos de configurações | [Página Log (type)](../settings/web.md#log-format) | Menu pop-up | Inicia o detiene el registro de las peticiones recibidas por el servidor web 4D en el archivo _logweb.txt_ y define su formato. Por padrão, os pedidos não são registados (0/No Log File). Cuando se activa, el archivo _logweb.txt_ se coloca automáticamente en la carpeta Logs. @@ -506,7 +506,7 @@ Neste caso, os robots não estão autorizados a aceder a todo o sítio. | ---------------------------------- | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | | objeto webServer | [`rootFolder`](API/WebServerClass.md#rootfolder) | Text property but can be a [`4D.Folder`](API/FolderClass.md) object when used with the _settings_ parameter of the `start()` function | | `WEB SET ROOT FOLDER` | | | -| Caixa de diálogos de configurações | [Configuration page/Default HTML Root](../settings/web.md#default-html-root) | | +| Caixa de diálogos de configurações | [Página Configuração/raiz HTML padrão](../settings/web.md#default-html-root) | | Caminho da pasta raiz do servidor web, ou seja, a pasta na qual 4D procurará as páginas HTML estáticas e semidinâmicas, imagens, etc., para enviar aos navegadores. O caminho é formatado no caminho completo POSIX. O servidor da Web precisará ser reiniciado para que a nova pasta raiz seja levada em consideração. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/writeprointerface.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/writeprointerface.md index d9799a4a049aa5..d5a0242d4e5e7b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/writeprointerface.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/writeprointerface.md @@ -72,7 +72,7 @@ O ficheiro modelo permite-lhe definir o seguinte: - os atributos dataclass que podem ser usados como colunas da tabela, - the formulas available as contextual menus inside break rows, carry-over row, placeholder row or extra rows. -The template file must be stored in a "[`Resources`](../Project/architecture.md#resources)/4DWP_Wizard/Templates" folder within your project. +O arquivo modelo deve ser armazenado em uma pasta "[`Resources`](../Project/architecture.md#resources)/4DWP_Wizard/Templates" em seu projeto. O arquivo de modelo no formato JSON contém os seguintes atributos: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png index 87f2c7ec6cc15d..f350cb995a59fd 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/break.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png index 35222f97254a0d..cba6de249cf77a 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/contextual-menu.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png new file mode 100644 index 00000000000000..723465a0e2af57 Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-expression-icon.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png index f4372b543ee6b7..8718fded2a0b4c 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-context-menu.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png new file mode 100644 index 00000000000000..21e28b40a2becf Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-display-menu.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png new file mode 100644 index 00000000000000..97e0485cac6531 Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane-menu.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png index 282eef4ee9e9f9..e3c0e17dd9d02b 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/custom-watch-pane.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png new file mode 100644 index 00000000000000..723465a0e2af57 Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-default-configuration.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png new file mode 100644 index 00000000000000..34e97fb3ae5556 Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-factory.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png index cf71bd2d50e871..ddc56eac8963bd 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debugger-window-intro.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png index 5790890448635f..a2bf8c9b7a7bce 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/debuggerWindowRemote.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png index 3ebacf28c5868d..ba0f3543b2a69a 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/executionToolbarButtons.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png new file mode 100644 index 00000000000000..f2e18d4d1ae84c Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/pin-expression.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png new file mode 100644 index 00000000000000..ef983192ecd1c3 Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/prototype.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png index 704002e1efdbe2..62e449d25b5084 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/sourceCodePaneContext.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png index b70d73b8d2d592..69183c18d0472b 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Debugging/watchPane.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png new file mode 100644 index 00000000000000..e69c0a944123d4 Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-all.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png new file mode 100644 index 00000000000000..a28b341c2f5711 Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/check-component-one.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png new file mode 100644 index 00000000000000..7d703a9fdb9d0a Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-available.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png index aca6352b6228e0..894064ff9c279c 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-conflict2.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png index 3a8dde7cb02f1d..560e17bb42a38e 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-github.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png index 9d43fe6bd4f506..3b750ab5dbaf05 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-origin.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png index ed358b57e41768..d862bd91343a59 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-show.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png index 05788609ab8a91..50830ff5e6adcb 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-tip1.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png new file mode 100644 index 00000000000000..b37014fd85bc8b Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency-version.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png index 34127bf5a3d063..2515791f19c790 100644 Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png new file mode 100644 index 00000000000000..8c88840165538b Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/project-dependencies-indicator.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png new file mode 100644 index 00000000000000..3494e7faee10c5 Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-all.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png new file mode 100644 index 00000000000000..0c734b11774382 Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/update-component-one.png differ diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md index 0d4f3836cfc874..8d5eaa8dcb8b5d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md @@ -41,4 +41,13 @@ Se quiser deter o processo selecionado da coleção de processos que são mostra #### Ver também -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1634 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort.md index eeda1f07d230de..d4434f3f938b49 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort.md @@ -34,4 +34,13 @@ Apesar do comando ABORT está destinado a ser utilizado apenas a partir de um m #### Ver também -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 156 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abs.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abs.md index 021fadc8e48808..67ff9e6ad7a503 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abs.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abs.md @@ -25,3 +25,13 @@ O exemplo a seguir retorna o valor absoluto de –10.3, que é de 10.3: ```4d  vlVector:=Abs(-10.3) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 99 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accept.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accept.md index f59f142c771c76..85320d6c103356 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accept.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accept.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ACCEPT é utilizado em métodos de objeto ou de formulário (ou em subrotinas) para: @@ -37,4 +34,14 @@ Não é possível concatenar vários ACCEPT. A execução consecutiva de dois co #### Ver também -[CANCEL](cancel.md) \ No newline at end of file +[CANCEL](cancel.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 269 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md index 230057d622109e..52387ddb04ccfe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição ACCUMULATE especifica os campos ou variáveis a acumular em um relatório realizado utilizando [PRINT SELECTION](print-selection.md).. @@ -37,4 +34,13 @@ Ver o exemplo do comando [BREAK LEVEL](break-level.md) . [BREAK LEVEL](break-level.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 303 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md index 0b3eb4e8ab0f14..6f680e87f80aab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md @@ -66,4 +66,13 @@ Se quiser saber se a ação copiar está disponível (ou seja, se foram selecion #### Ver também [INVOKE ACTION](invoke-action.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1442 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activated.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activated.md index 274cf7c77b2bc3..f6ea56b4e56df5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activated.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Activated** retorna **True** em um método de formulário quando a janela que contém o formulário passa ao primeiro plano. @@ -29,4 +26,13 @@ displayed_sidebar: docs #### Ver também [Deactivated](deactivated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 346 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md index 1a8127b320bf72..42af33846c0e22 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md @@ -42,4 +42,13 @@ Se quiser conhecer o estado da transação atual: [In transaction](in-transaction.md) [RESUME TRANSACTION](resume-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspender as transações* \ No newline at end of file +*Suspender as transações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1387 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md index b3cca9d1f1d950..b2b465f112399d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md @@ -104,3 +104,13 @@ Este método, executado em um processo separado em 4D ou 4D Server, oferece uma Obtém arrays do tipo: ![](../assets/en/commands/pict1213741.en.png) + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1277 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md index 81e7ec69d3fe12..53fd04640b5d7e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Compatibilidade Esse comando foi implementado em 4D em lançamentos anteriores e é ainda útil para desenvolvimento básico ou protótipos. Entretanto, para construir interfaces personalizadas e modernas, agora não é recomendado usar formulários genéricos baseados no comando *[DIALOG](../commands/dialog.md) que oferece propriedades avançadas e melhor controle sobre o fluxo de dados* @@ -87,4 +84,17 @@ A variável sistema OK toma o valor 1 se aceitar o registro e 0 se o cancelar. A [CANCEL](cancel.md) [CREATE RECORD](create-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 56 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md index ff9026ee57dd3c..8f39251d0e1de1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md @@ -35,3 +35,13 @@ Mesmo que você possa utilizar os [Self](self.md) para adicionar dias a uma data   // Esta linha faz o mesmo que $vdAmanhã:=Current date+1  $vdAmanhã:=Add to date(Current date;0;0;1) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 393 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md index 47ef62338b3728..f2539d20202e96 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver também -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 119 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md index 6972cdcc6c40e8..12caf0e657dc52 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md @@ -52,4 +52,13 @@ Se quiser mudar temporariamente a prioridade da cache dos campos de texto da tab #### Ver também [Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1431 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md index 946f73982d91a5..0370093c79926e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md @@ -51,4 +51,13 @@ Se quiser mudar temporariamente a prioridade de cache para o índice de campo \[ #### Ver também [Get adjusted index cache priority](get-adjusted-index-cache-priority.md) -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1430 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md index 7b3c84c1e27c8a..342ea15fdcbc12 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md @@ -49,4 +49,13 @@ Se quiser mudar temporariamente a prioridade de cache para os campos escalares \ #### Ver também [Get adjusted table cache priority](get-adjusted-table-cache-priority.md) -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1429 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/after.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/after.md index 6237abc8aac3bb..887bd1736f64b1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/after.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/after.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **After** devolve True para o ciclo de execução After. @@ -26,4 +23,13 @@ Para que seja gerado o ciclo de execução **After**, tenha certeza de que o eve #### Ver também -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 31 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/alert.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/alert.md index 786dc31feded41..4aee2526370a25 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/alert.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/alert.md @@ -66,4 +66,13 @@ Mostra a seguinte caixa de diálogo de alerta (em Windows): [CONFIRM](confirm.md) [DISPLAY NOTIFICATION](display-notification.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 41 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md index 21726a368e4ca8..3e911227bbd022 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md @@ -33,4 +33,15 @@ O exemplo a seguir mostra todos os registros da tabela \[Pessoas\]: [ORDER BY](order-by.md) [QUERY](query.md) [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 47 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md index 24e2f4ae7df6bb..23121ef080eb15 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando APPEND DATA TO PASTEBOARD adiciona na área de transferência os dados do tipo especificado em *tipoDados* no BLOB *dados*. @@ -218,4 +215,14 @@ Se os dados no BLOB são adicionados corretamente á área de transferência, a [CLEAR PASTEBOARD](clear-pasteboard.md) [SET PICTURE TO PASTEBOARD](set-picture-to-pasteboard.md) -[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) \ No newline at end of file +[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 403 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md index f435436bab36a7..0f045b1f99ac63 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md @@ -37,4 +37,14 @@ O exemplo abaixo abre um documento existente chamado Nota, adiciona a string “ #### Ver também [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 265 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md index 5dec2aae7f2a32..9ee8d83e92802e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando APPEND MENU ITEM adiciona nova linhas de menu ao menu cujo número ou referência se passa em *menu*. @@ -82,4 +79,14 @@ Então, em todo método de formulário ou de projeto, pode escrever: [DELETE MENU ITEM](delete-menu-item.md) [INSERT MENU ITEM](insert-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 411 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md index b5c23a5c90f8d0..e0b43a5e8922a4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md @@ -42,4 +42,13 @@ O seguinte código: #### Ver também [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 911 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md index 067200350ea8ab..f836fb1f14face 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando APPEND TO LIST adiciona um novo elemento à lista hierárquica cujo número de referência se passa em *lista*. @@ -155,4 +152,13 @@ Quando o formulário é executado, a lista será vista desta forma: [INSERT IN LIST](insert-in-list.md) [SET LIST ITEM](set-list-item.md) [SET LIST ITEM PARAMETER](set-list-item-parameter.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 376 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md index a9181530ddf4bb..5db84abffe94a8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md @@ -40,4 +40,13 @@ Ao iniciar seu banco de dados em Windows, você precisa verificar se uma bibliot #### Ver também [Data file](data-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 491 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md index 9fa99f7a88a21a..b394ed0e5b6d21 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md @@ -130,4 +130,13 @@ Se o código for executado em 4D Server, o objeto contém (por exemplo): [Execute on server](execute-on-server.md) [Get database parameter](get-database-parameter.md) [System info](system-info.md) -[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) \ No newline at end of file +[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1599 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md index b9b06d830248e8..c6597479b732bf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md @@ -41,4 +41,13 @@ Em alguma parte do seu código, diferente do método de banco de dados *Método #### Ver também [Application version](application-version.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 494 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md index 72d22919d5ae91..be17bb8f8421e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md @@ -118,4 +118,13 @@ Você quer usar o número pequeno de versão da aplicação retornado pelo coman #### Ver também [Application type](application-type.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 493 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md index 02fec94aa10655..9a60a23158958b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md @@ -61,4 +61,14 @@ Se o usuário clicar no botão Deter no termômetro de progressão, a variável #### Ver também *Conjuntos* -[EDIT FORMULA](edit-formula.md) \ No newline at end of file +[EDIT FORMULA](edit-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 70 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md index b3e7b2ac547134..5841c97fb05008 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -Arctan retorna o ângulo, expresso em radianos, da tangente *numero*. - -**Nota:** 4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna número Pi (3,14159...), Degree retorna o valor em radianos de um grau (0.01745...) e Radian retorna o valor em graus de um radiano (57.29577...). +Arctan retorna o ângulo, expresso em radianos, da tangente *numero*.4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna número Pi (3,14159...), Degree retorna o valor em radianos de um grau (0.01745...) e Radian retorna o valor em graus de um radiano (57.29577...). #### Exemplo @@ -32,4 +30,13 @@ O exemplo a seguir mostra o valor de Pi: [Cos](cos.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 20 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md index b3f9ec6c67f199..06ce16e24b6e33 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md @@ -59,4 +59,13 @@ Este exemplo cria um array local de 100 filas, contendo cada uma 50 elementos de #### Ver também -*Criando arrays* \ No newline at end of file +*Criando arrays* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1222 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md index 02309c091c057d..55a6e0617715bf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY BOOLEAN cria e/ou redimensiona um array de elementos na memória. - -* O parâmetro n*omeArray* é o nome do array. +O comando ARRAY BOOLEAN cria e/ou redimensiona um array de elementos na memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. @@ -61,4 +59,13 @@ Este exemplo cria um array interprocesso de 50 elementos do tipo Booleano e dete #### Ver também -[ARRAY INTEGER](array-integer.md) \ No newline at end of file +[ARRAY INTEGER](array-integer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 223 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md index a0f9b371321afd..1c159ac9452423 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY DATE cria e/ou redimensiona um array de elementos de tipo Data em memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY DATE cria e/ou redimensiona um array de elementos de tipo Data em memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos no array. * O parâmetro *tamanho2* é opcional; se *tamanho2*, for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de linhas e *tamanho2* especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -54,3 +52,13 @@ Este exemplo cria um array interprocesso de 50 elementos do tipo Data e determin     ◊adValores{$vlElem}:=Current date+$vlElem  End for ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 224 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md index 5596e9310d31ac..a65dd16ecf4e10 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY INTEGER cria e/ou redimensiona um array de elementos de tipo *Inteiro* de 2 bytes de memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY INTEGER cria e/ou redimensiona um array de elementos de tipo *Inteiro* de 2 bytes de memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2*, for especificado, o comando cria um array de duas dimensões. Neste caso, size especifica o número de linhas e *tamanho2*especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -58,4 +56,13 @@ Este exemplo cria um array interprocesso de 2 bytes de 50 elementos do tipo *Int #### Ver também [ARRAY LONGINT](array-longint.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 220 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md index 6527c425d29f04..f7ed8e1bd1d6cf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY LONGINT cria e/ou redimensiona um array de elementos de tipo Intero longo de 4 bytes em memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY LONGINT cria e/ou redimensiona um array de elementos de tipo Intero longo de 4 bytes em memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos no array. * O parâmetro *tamanhoi2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de filas e *tamanho2* o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -58,4 +56,13 @@ Este exemplo cria um array interprocesso de 4 bytes de 50 elementos do tipo *Int #### Ver também [ARRAY INTEGER](array-integer.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 221 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md index a19e098c8a265f..5200697d6e53b1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md @@ -68,4 +68,13 @@ Criação e cheio de um array local de objetos: [C\_OBJECT](c-object.md) *Criando arrays* -*Objetos (Linguagem)* \ No newline at end of file +*Objetos (Linguagem)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1221 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md index 64aa852462f546..1d0037ca3095c7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY PICTURE cria e/ou redimensiona um array de elementos [Imagem](# "Can be any Windows or Macintosh picture") na memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY PICTURE cria e/ou redimensiona um array de elementos [Imagem](# "Can be any Windows or Macintosh picture") na memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de linhas e *tamanho2* especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -61,3 +59,13 @@ Este exemplo cria um array de interprocesso de tipo [Imagem](# "Can be any Windo  End for  ARRAY PICTURE(◊agValores;$vlPictElem) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 279 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md index 95f839e8358eb7..b33ee0bc3ae9c1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY POINTER cria e/ou redimensiona um array de elementos do tipo Puntero na memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY POINTER cria e/ou redimensiona um array de elementos do tipo Puntero na memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de linhas e *tamanho2* especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -56,3 +54,13 @@ Este exemplo cria um array de interprocesso de elementos do tipo [Ponteiro](# "A     End if  End for ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 280 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md index 5eee08c1c8fe24..9aa802cf66bd2c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY REAL cria e/ou redimensiona um array de elementos do tipo Real na memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY REAL cria e/ou redimensiona um array de elementos do tipo Real na memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de linhas e *tamanho2* especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -58,4 +56,13 @@ Este exemplo cria um array de interprocesso de 50 elementos do tipo Real e deter #### Ver também [ARRAY INTEGER](array-integer.md) -[ARRAY LONGINT](array-longint.md) \ No newline at end of file +[ARRAY LONGINT](array-longint.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 219 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md index 855a996975a766..b165437707bb89 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY TEXT cria e/ou redimensiona um array de elementos do tipo [Texto](# "A character string that may contain from 0 to 2 GB of text") na memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY TEXT cria e/ou redimensiona um array de elementos do tipo [Texto](# "A character string that may contain from 0 to 2 GB of text") na memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de linhas e *tamanho2* especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -54,3 +52,13 @@ Este exemplo cria um array de interprocesso de elementos do tipo texto e atribui     ◊atValores{$vlElem}:="Elemento #"+String($vlElem)  End for ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 222 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md index 6c685c4c8883dd..98eb561606e677 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **ARRAY TIME** cria ou redimensiona um array de tipo tempo em memória. - -**Lembrete:** em 4D, as horas podem ser processadas ​​como valores numéricos. Nas versões de 4D anteriores a v14, tinham que combinar um array inteiro longo com um formato de visualização para gerenciar um array de horas. +O comando **ARRAY TIME** cria ou redimensiona um array de tipo tempo em memória.em 4D, as horas podem ser processadas ​​como valores numéricos. Nas versões de 4D anteriores a v14, tinham que combinar um array inteiro longo com um formato de visualização para gerenciar um array de horas. O parâmetro *nomArray* é o nome do array. @@ -64,4 +62,13 @@ Como os arrays de horas aceitam valores numéricos, o seguinte código é válid #### Ver também *Criando arrays* -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1223 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md index 8b046fa766021f..ecf01b0b5d9ce7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md @@ -81,4 +81,13 @@ Se quiser copiar um array de texto em uma coleção compartilhada: #### Ver também [COLLECTION TO ARRAY](collection-to-array.md) -*Conversões de Tipo entre coleções e arrays 4D* \ No newline at end of file +*Conversões de Tipo entre coleções e arrays 4D* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1563 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md index 4341e36ff4a008..2acc1cf8ad43b1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ARRAY TO LIST cria ou substitui a lista hierárquica ou a lista de escolha (criada no editor LIsta) que é especificada em *lista* usando os elementos do *array* *.* @@ -62,4 +59,14 @@ O comando ARRAY TO LIST gera o erro *\-9957* quando é aplicado a uma lista que [LIST TO ARRAY](list-to-array.md) [Load list](load-list.md) [ON ERR CALL](on-err-call.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 287 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md index cc006fc6a064eb..220e62a418e403 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md @@ -79,4 +79,14 @@ Se quiser copiar uma seleção de registroar para uma tablela arquivo selecionan #### Ver também [SELECTION TO ARRAY](selection-to-array.md) -*Variáveis sistema* \ No newline at end of file +*Variáveis sistema* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 261 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/assert.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/assert.md index 6032882acbf27f..8de83e3618fe2a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/assert.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/assert.md @@ -52,4 +52,14 @@ Uma asserção permite provar os parâmetros passados a um método de projeto pa [Asserted](asserted.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1129 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md index af7f778fe5f053..f0305233eb85f9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md @@ -40,4 +40,14 @@ Inserir uma asserção na avaliação de uma expressão: [ASSERT](assert.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1132 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/average.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/average.md index 38e5d74efe0bbb..6c8cd9c6111eac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/average.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/average.md @@ -89,4 +89,14 @@ Pode fazer os seguintes cálculos: [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) [Subtotal](subtotal.md) -[Sum](sum.md) \ No newline at end of file +[Sum](sum.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 2 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md index 73f8b2f725d815..a126ee7c17294c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md @@ -30,4 +30,13 @@ Passe o tipo de informação a se obter em *seletor*. É possível utilizar uma #### Ver também -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 888 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup.md index 9a44b86a06a00f..f0a2e28b1822e4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando BACKUP inicia o backup do banco de dados utilizando os parâmetros de cópia de segurança atuais. Não aparece uma caixa de diálogo de confirmação; no entanto, aparece uma barra de progresso na tela. @@ -40,4 +37,14 @@ Em caso de que ocorram incidentes durante o backup, a informação relativa ao i [BACKUP INFO](backup-info.md) *Método de Banco de Dados On Backup Startup* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 887 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md index aeb940b3cc553a..86bbf411d2c5f1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md @@ -54,4 +54,13 @@ Este exemplo lhe permite transferir uma imagem através de um BLOB: [BASE64 ENCODE](base64-encode.md) [Generate digest](generate-digest.md) *Visão Geral dos comandos XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 896 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md index 05359c76a67cd3..49bd2e1a1e69ba 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md @@ -36,4 +36,13 @@ Por padrão, se omitir o parâmetro *\**, o comando utiliza uma codificação Ba [BASE64 DECODE](base64-decode.md) [Generate digest](generate-digest.md) *Visão Geral dos comandos XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 895 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/beep.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/beep.md index 7c44af56feb696..5068fd7e830c04 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/beep.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/beep.md @@ -32,4 +32,13 @@ No exemplo abaixo, se uma pesquisa não encontrar nenhum registro, um bip é emi #### Ver também -[PLAY](play.md) \ No newline at end of file +[PLAY](play.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 151 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md index f8ccf55fce57c2..d11371a0799281 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md @@ -60,4 +60,13 @@ Este formulário é utilizado durante a impressão de um relatório. Define uma [FIRST RECORD](first-record.md) [Form event code](../commands/form-event-code.md) [PREVIOUS RECORD](previous-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 198 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before.md index be5ffb9f98cdb7..e4cc5e33e70339 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Before** devolve True para o ciclo de execução Before. @@ -26,4 +23,13 @@ Para que se gere o ciclo de execução **Before** tenha certeza de que a proprie #### Ver também -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 29 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md index 0f2ab10f49559e..2ebf47ff0eaec9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md @@ -44,4 +44,13 @@ Note que o *Depurador* 4D avaliará o código SQL linha por linha. Em alguns cas [End SQL](end-sql.md) [SQL Get current data source](sql-get-current-data-source.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 948 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md index b31ac20c9133e7..6fe00cf9f50578 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descrição -O comando **BLOB PROPERTIES** retorna informações sobre o *blob* BLOB. - -* O parâmetro *comprimido* diz se o BLOB é comprimido ou não, e retorna um dos seguintes valores. +O comando **BLOB PROPERTIES** retorna informações sobre o *blob* BLOB.diz se o BLOB é comprimido ou não, e retorna um dos seguintes valores. | Constante | Tipo | Valor | Comentário | | -------------------------- | ------------- | ----- | ------------------------------------------------------------------------------------------------------------------------------------------------------ | @@ -76,4 +74,13 @@ Depois que este método tenha sido adicionado à sua aplicação, você pode us #### Ver também [COMPRESS BLOB](compress-blob.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 536 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md index bdb345245f4fde..5a82f38b16e736 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md @@ -28,4 +28,13 @@ A linha de código adiciona 100 bytes ao BLOB *meuBlob*: #### Ver também -[SET BLOB SIZE](set-blob-size.md) \ No newline at end of file +[SET BLOB SIZE](set-blob-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 605 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md index 4e1f15a528e2d8..c0824eeaebedc4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md @@ -52,4 +52,14 @@ Em todos os casos, você pode interceptar o erro usando um método [ON ERR CALL] [Create document](create-document.md) [DOCUMENT TO BLOB](document-to-blob.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 526 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md index a6447c6df28cdb..b8aa5516a56a49 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md @@ -58,4 +58,13 @@ O exemplo a seguir lê 20 valores inteiros de um BLOB, iniciando no offset 0x200 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 549 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md index 01a5f5f3b26ca5..d7c1a44a4bfbc4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando BLOB to list cria uma lista hierárquica com os dados armazenados no BLOB blob no o offset de bytes (a partir de zero) especificado pelo *offset* e retorna um número de referência de lista hierárquica para essa nova lista. @@ -61,4 +58,14 @@ A variável OK recebe o valor 1 se a lista for criada corretamente, caso contrá #### Ver também -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 557 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md index c362c90c7ca8de..a6fc22946a804f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md @@ -57,4 +57,13 @@ O exemplo a seguir lê 20 valores Inteiro longo de um BLOB, iniciando no offset [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 551 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md index 9221e18182420c..3fbb34a5724cea 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md @@ -50,4 +50,14 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1\. Se [PICTURE CODEC LIST](picture-codec-list.md) [PICTURE TO BLOB](picture-to-blob.md) -[READ PICTURE FILE](read-picture-file.md) \ No newline at end of file +[READ PICTURE FILE](read-picture-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 682 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md index 225fc30e79ab71..c451eff81a3de5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **BLOB to print settings** substitui a configuração de impressão 4D atual pelos parâmetros armazenados no BLOB *confImpr*. Este BLOB deve ter sido gerado pelo comando [Print settings to BLOB](print-settings-to-blob.md) ou pelo comando 4D Pack 4D Pack (ver abaixo). @@ -76,4 +73,13 @@ Se quiser aplicar a configuração de impressão salva no disco para o contexto #### Ver também -[Print settings to BLOB](print-settings-to-blob.md) \ No newline at end of file +[Print settings to BLOB](print-settings-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1434 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md index 03686690a068e1..c329cfa3a304fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md @@ -58,4 +58,13 @@ O exemplo a seguir lê 20 valores Reais de um BLOB, iniciando no offset 0x200: [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 553 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md index fd871740d93dbb..3c093a0442f752 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md @@ -59,4 +59,13 @@ Após a chamada, a variável é incrementada pelo número de bytes lidos. Portan [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 555 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md index de521aa5b8f56d..3e7456313df3bf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando BLOB TO USERS adiciona as contas de usuários presentes no BLOB *usuarios* ao banco de dados. O BLOB *usuarios* está criptografado e deve ter sido criado usando o comando [USERS TO BLOB](users-to-blob.md). @@ -48,4 +45,14 @@ este comando causa a substituição de quaisquer contas e grupos existentes cria #### Ver também -[USERS TO BLOB](users-to-blob.md) \ No newline at end of file +[USERS TO BLOB](users-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 850 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md index 816d80b1819fb0..2f090ac1d2c4b2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md @@ -40,4 +40,14 @@ A variável OK é definida como 1 se a variável foi reescrita com sucesso, caso #### Ver também -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 533 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bool.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bool.md index 73da6720ec5713..1156d00bab6162 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bool.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bool.md @@ -46,4 +46,13 @@ Seleciona um valor dependendo do conteúdo de um atributo de campo de objeto, an [Date](date.md) [Num](num.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1537 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md index f36d4452704afb..e9171371e3e7bb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md @@ -31,4 +31,13 @@ Se você não passar o parâmetro *conjunto*, o comando utilizará UserSet no pr #### Ver também -[CREATE SET FROM ARRAY](create-set-from-array.md) \ No newline at end of file +[CREATE SET FROM ARRAY](create-set-from-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 646 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md index 3a2702197cf8e3..a0fbabcd436399 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição BREAK LEVEL especifica o número de níveis de quebra em um relatório realizado utilizando [PRINT SELECTION](print-selection.md). @@ -46,4 +43,13 @@ O exemplo a seguir imprime um relatório com dois níveis de quebra. A seleção [ACCUMULATE](accumulate.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 302 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md index caf2e8b6c8f434..66d278c553ebad 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição BRING TO FRONT passa todas as janelas que pertencem a *processo* ao primeiro plano. Se o processo já está no primeiro plano, o comando não faz nada. Se o processo estiver oculto, deve utilizar [SHOW PROCESS](show-process.md "SHOW PROCESS") para mostrar o processo, do contrário BRING TO FRONT não tem efeito. @@ -38,4 +35,13 @@ O exemplo a seguir é um método que pode ser executado desde um menu. Ele verif [HIDE PROCESS](hide-process.md) [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 326 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md index 6550822a3a3e25..4b3152940c0918 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando BUILD APPLICATION inicia o processo de geração da aplicação levando em consideração os parâmetros definidos nas configurações do aplicativo atual ou na configuração de aplicação designado no parâmetro *constrAppConfigurações*. @@ -55,4 +52,15 @@ Se o comando falhar, é gerado um erro que pode ser interceptado com a ajuda do #### Ver também -[Compile project ](../commands/compile-project.md) \ No newline at end of file +[Compile project ](../commands/compile-project.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 871 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, Document, error | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md index b6083b45fa80a1..5be6f8de7dea96 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md @@ -52,4 +52,13 @@ Se quiser obter informação da cache do banco de dados e todos os componentes a #### Ver também -[MEMORY STATISTICS](memory-statistics.md) \ No newline at end of file +[MEMORY STATISTICS](memory-statistics.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1402 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md index a4dddd717526ff..de6ccf6ef4dde6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-chain.md @@ -48,3 +48,13 @@ Se for executado um método de objeto de formulário, a cadeia de chamadas poder ```json [   {    "type":"formObjectMethod",    "name":"detailForm.Button",    "line":1,    "database":"myDatabase"   },   {    "type":"formMethod",    "name”:"detailForm",    "line":2,    "database":"myDatabase"   },   {    "type":"projectMethod",    "name”:"showDetailForm",    "line":2,    "database":"myDatabase”   }] ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1662 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md index bbd8084312f33c..eda23d561ae3d5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md @@ -100,4 +100,13 @@ Depois pode adicionar outras mensagens executando o comando **CALL FORM** novame [CALL WORKER](call-worker.md) -[DIALOG](../commands/dialog.md) \ No newline at end of file +[DIALOG](../commands/dialog.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1391 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md index a05eec5ffbde5a..585834126b3e5f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **CALL SUBFORM CONTAINER** permite a uma instância de subformulário enviar o *evento* ao objeto subformulário que o contiver. O objeto subformulário pode então processar o *evento* no contexto do formulário pai. @@ -31,4 +28,13 @@ Em *evento*, pode passar todo evento de formulário pré-definido de 4D (pode ut #### Ver também [Form event code](../commands/form-event-code.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1086 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md index 7f7e306e0522f4..db37bb6d099493 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md @@ -79,7 +79,16 @@ O código de *workerMethod é*: #### Ver também -[CALL FORM](../commands/call-form.md) +[CALL FORM](call-form.md) [Current process name](current-process-name.md) [KILL WORKER](kill-worker.md) -*Sobre Workers* \ No newline at end of file +*Sobre Workers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1389 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md index e7b63805e72a81..fda7e8d507d2bb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [START TRANSACTION](start-transaction.md) [Transaction level](transaction-level.md) *Usar Transações* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 241 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md index 8648ddde2d0677..789736f6548f09 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição No contexto de entrada de dados, **CANCEL** realiza a mesma ação que se o usuário tivesse pressionado a tecla de cancelação (**Esc**). Também é possível colocar no método de caixa de fechamento opcional de uma janela criada pelo comando[Open window](open-window.md) @@ -52,4 +49,14 @@ Quando o comando CANCEL é executado (anulação de formulário ou de impressão [ACCEPT](accept.md) [PAGE BREAK](page-break.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 270 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md index 2b8d7bc0fbf5ee..8ec3452cf2adab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md @@ -28,4 +28,13 @@ Veja o exemplo do comando [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 547 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md index 8d2146413dfa22..2b9a3675791df5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição CHANGE CURRENT USER permite mudar a identidade do usuário atual no banco, sem ter que sair. O usuário pode mudar sua identidade utilizando a caixa de diálogo de identificação do usuário do banco (quando o comando é chamado sem parâmetros) ou diretamente através deste comando. Quando um usuário muda sua identidade, o usuário abandona seus privilégios de acesso anteriores para os direitos do usuário escolhido. @@ -69,4 +66,13 @@ O exemplo abaixo exibe a caixa de diálogo de conexão: #### Ver também [CHANGE PASSWORD](change-password.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 289 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md index eacf1d1e4e57fa..dd4ebcb62a33f0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando CHANGE LICENSES mostra a caixa de diálogo de atualização de licenças 4D . @@ -42,4 +39,14 @@ Desta forma um usuário pode ativar licenças sem ter que modificar a base. #### Ver também [License info](license-info.md) -[Is license available](is-license-available.md) \ No newline at end of file +[Is license available](is-license-available.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 637 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md index 34b4c1572fbd00..b67e744fb1b291 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição CHANGE PASSWORD muda a senha do usuário atual. Este comando substitui a senha atual com a nova senha que se passa em *senha*. @@ -44,4 +41,13 @@ O exemplo abaixo permite ao usuário mudar sua senha. #### Ver também [CHANGE CURRENT USER](change-current-user.md) -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 186 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md index 70b32ff352c593..6eac2615b5ebc0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md @@ -37,4 +37,13 @@ O seguinte exemplo ilustra o uso de Change string. Os resultados são atribuído [Delete string](delete-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 234 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/char.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/char.md index 6a1a761bc37eeb..b50d69d8e5dc02 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/char.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/char.md @@ -36,4 +36,13 @@ O seguinte exemplo utiliza Char para inserir um retorno de carro no texto de uma [Character code](character-code.md) *Códigos Unicode* -*Símbolos de referência de caracteres* \ No newline at end of file +*Símbolos de referência de caracteres* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 90 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md index e7f4a45ad7c389..b63869377f43ad 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md @@ -84,4 +84,13 @@ O segundo código é executado mais rápido por duas razões: apenas referencia #### Ver também [Char](char.md) -*Símbolos de referência de caracteres* \ No newline at end of file +*Símbolos de referência de caracteres* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 91 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md index 757d5955a67e68..1f47de18e8f4ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **CHECK LOG FILE** mostra a caixa de diálogo de visulização do arquivo de histórico atual da base de dados (acessível também através da janela do Centro de segurança e manutenção) : @@ -36,4 +33,14 @@ Este comando só pode ser utilizado no contexto de aplicativos monousuários. Ma #### Ver também *Erros de Gestão de backup (1401 -> 1421)* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 799 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/choose.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/choose.md index c8e0a7e454e132..561f71e289aa1c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/choose.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/choose.md @@ -80,3 +80,13 @@ Este código é estritamente equivalente a:        vEstado:="Separado"  End case ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 955 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md index 2f68b22355de26..71743b7b1ce239 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando CLEAR LIST apaga da memória a lista hierárquica cujo número de referência é passado em *lista*. @@ -55,4 +52,13 @@ Ver o exemplo do comando [BLOB to list](blob-to-list.md "BLOB to list"). [BLOB to list](blob-to-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 377 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md index a7b639fd1ba526..79fbfbd0da321d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md @@ -23,4 +23,13 @@ Se *nome* foi criado pelo comando [CUT NAMED SELECTION](cut-named-selection.md " [COPY NAMED SELECTION](copy-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 333 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md index 5c1caf032bbb08..d72e02f282a7c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando CLEAR PASTEBOARD apaga o conteúdo da área de transferência. Se a área de transferência contiver múltiplas instâncias dos mesmos dados, todas as instâncias são apagadas. Depois de chamar a CLEAR PASTEBOARD, a área de transferência fica vazio. @@ -41,4 +38,13 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m #### Ver também -[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) \ No newline at end of file +[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 402 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md index 75393f0ff7dede..5e007c3ca154b0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md @@ -27,4 +27,13 @@ Ver o exemplo de [Semaphore](semaphore.md "Semaphore"). *Semáforos e Sinais* [Semaphore](semaphore.md) -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 144 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md index 543f716e0c6921..c1f12911e6148a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md @@ -25,4 +25,13 @@ Ver o exemplo do comando [USE SET](use-set.md "USE SET"). [CREATE EMPTY SET](create-empty-set.md) [CREATE SET](create-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 117 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md index 13a9e73eeb43ad..3c1122de8c6157 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md @@ -43,4 +43,13 @@ Em um formulário, utilize uma lista suspensa (drop down) chamada *MinhaListaSus #### Ver também -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 89 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md index 23f46bfa52a169..5d124367ba87cc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Clickcount** devolve, no contexto de um evento clique, o número de vezes que o usuário fez clique de maneira repetida com o mesmo botão do mouse. Normalmente, este comando devolve 2 para um clique duplo. @@ -61,3 +58,13 @@ As etiquetas não são editáveis mas o são depois de um triplo-clique. Se dese     End case  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1332 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md index c07613b3651423..b10849b6f20928 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md @@ -36,4 +36,13 @@ O exemplo abaixo permite ao usuário criar um novo documento, escreva a string " [Append document](append-document.md) [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 267 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md index fe931a428fe61a..195f2f20dd25b0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando CLOSE PRINTING JOB permite fechar o trabalho de impressão previamente aberto pelo comando [OPEN PRINTING JOB](open-printing-job.md) e enviar à impressora atual o documento de impressão eventualmente construído. @@ -25,4 +22,13 @@ Quando tiver executado este comando, a impressora novamente está disponível pa #### Ver também -[OPEN PRINTING JOB](open-printing-job.md) \ No newline at end of file +[OPEN PRINTING JOB](open-printing-job.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 996 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md index 9d72886df03c4c..f07204e9bc894e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **CLOSE RESOURCE FILE** fecha o arquivo de recursos cujo número de referência se passa em *resArquivo*. @@ -30,4 +27,13 @@ Lembre chamar finalmente **CLOSE RESOURCE FILE** para um arquivo de recursos que #### Ver também -[Open resource file](open-resource-file.md) \ No newline at end of file +[Open resource file](open-resource-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 498 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md index e320c4a5cf9a5f..e028835fcda28e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição CLOSE WINDOW fecha a janela ativa aberta pelo comando [Open window](open-window.md) ou [Open form window](open-form-window.md) no processo atual. CLOSE WINDOW não faz nada se não houver uma janela personalizada aberta; não fecha as janelas sistema. CLOSE WINDOW tampoco tem efeito se for chamado enquanto um formulário estiver ativo na janela. Deve chamar CLOSE WINDOW quando tiver terminado de utilizar uma janela aberta por [Open window](open-window.md) ou [Open form window](open-form-window.md).. @@ -40,4 +37,13 @@ O seguinte exemplo abre uma janela formulario e cria novos registros com o coman #### Ver também [Open form window](open-form-window.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 154 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md index 33e1a738b473ad..a3239f452d908d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md @@ -64,4 +64,13 @@ Se quiser copiar diferentes valores de propriedade de uma coleção de objetos e #### Ver também [ARRAY TO COLLECTION ](array-to-collection.md) -*Conversões de Tipo entre coleções e arrays 4D* \ No newline at end of file +*Conversões de Tipo entre coleções e arrays 4D* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1562 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md index fdf5ab5f21a37b..fbb36cd676dabc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md @@ -50,4 +50,13 @@ Resultado: #### Ver também -[TRANSFORM PICTURE](transform-picture.md) \ No newline at end of file +[TRANSFORM PICTURE](transform-picture.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 987 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md index 668ed11d8b7fee..d61055c31b0feb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/command-name.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descrição -O comando **Command name** retorna o nome do comando cujno número foi passado em *comando*. - -**Nota:** O número de cada comando é indicado no Explorer assim como na área Propriedades desta documentação. +O comando **Command name** retorna o nome do comando cujno número foi passado em *comando*.O número de cada comando é indicado no Explorer assim como na área Propriedades desta documentação. **Nota de Compatibilidade:** Já que o nome de comando pode variar entre versões de 4D (comandos renomeados) ou de acordo com a linguagem do aplicativo, pode ser útil designar um comando através de seu número, especialmente em porções de código não-tokenizadas. A utilidade do comando com respeito a esta necessidade diminui ao longo do tempo com a evolução de 4D, já que agora 4D oferece uma sintaxe token. Esta sintaxe token pode ser usada para evitar possíveis problemas por variações em nomes de comando, assim como outros elementos tais como tabelas, mas permitindo digitar os nomes em uma maneira legível (para saber mais, veja *Usar tokens em fórmulas* ). Além disso, de forma pré-determinada, a versão na língua inglesa a partir de 4D v15; entretanto, a opção "Use regional system settings" em [Is a list](is-a-list.md) das Preferências permite que continue a usar a linguagem francesa na versão francesa de 4D. @@ -101,4 +99,14 @@ Depois, para o comando "SAVE RECORD" (53) por exemplo, pode escrever: #### Ver também [EXECUTE FORMULA](execute-formula.md) -*Processos 4D Preemptivos* \ No newline at end of file +*Processos 4D Preemptivos* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 538 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md index 80f64f5f2dc03c..fe2c55fde53260 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md @@ -69,4 +69,14 @@ Se um arquivo de histórico for gerado, seu nome de caminho completo é retornad #### Ver também [Table fragmentation](table-fragmentation.md) -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 937 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md index bc5b5a2916d15b..145e8a33c01256 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md @@ -102,4 +102,13 @@ Os exemplos abaixo ilustram o impacto específico das opções no **contexto da #### Ver também -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1756 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md index 8f5d05383313bb..fe8d452a0d9f1a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md @@ -32,4 +32,13 @@ Para maiores informações sobre componentes 4D, por favor consulte o Manual de #### Ver também -[PLUGIN LIST](plugin-list.md) \ No newline at end of file +[PLUGIN LIST](plugin-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1001 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md index d7532a1637c506..02d7c84c4948db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md @@ -90,4 +90,14 @@ A variável OK é definida como 1 se o BLOB foi compactado com sucesso, caso con #### Ver também [BLOB PROPERTIES](blob-properties.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 534 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md index 3750a013e8402b..92637ceef975c5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md @@ -91,4 +91,14 @@ Mostrará a seguinte caixa de diálogo de confirmação (em Macintosh): #### Ver também [ALERT](alert.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 162 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md index 2bab694af2530b..47aa55b28e39af 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Contextual click retorna Verdadeiro se foi realizado um clique contextual: @@ -42,4 +39,13 @@ Este método, combinado com uma área de rolagem, lhe permite modificar o valor #### Ver também [Form event code](../commands/form-event-code.md) -[Right click](right-click.md) \ No newline at end of file +[Right click](right-click.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 713 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md index 3b571d088c0298..476c246564c1ae 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **CONVERT COORDINATES**converte as coordenadas (x;y) de um ponto de um sistema de coordenadas para outro. Os sistemas de coordenada de entrada e saída compatíveis são formulários e subformulários, janelas e a tela. Por exemplo, pode usar este comando para obter as coordenadas no formulário principal de um objeto que pertence a um subformulário. Isso faz com que seja fácil criar um menu contextual para qualquer posição personalizada. @@ -86,4 +83,13 @@ Se quiser abrir uma janela pop-up na posição do cursor do mouse, em Windows, p [GET WINDOW RECT](get-window-rect.md) [OBJECT GET COORDINATES](object-get-coordinates.md) [OBJECT SET COORDINATES](object-set-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1365 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md index 29694e99dc4f6b..1c1df07b792362 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md @@ -185,4 +185,14 @@ Se o comando tiver sido executado corretamente, a variável OK assume o valor 1\ #### Ver também -[Convert to text](convert-to-text.md) \ No newline at end of file +[Convert to text](convert-to-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1011 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md index 8fdd20a9928dd7..b56858e72c942b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md @@ -53,4 +53,13 @@ Exemplos em Windows: [Convert path system to POSIX](convert-path-system-to-posix.md) [Object to path](object-to-path.md) -[Path to object ](path-to-object.md) \ No newline at end of file +[Path to object ](path-to-object.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1107 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md index 71280e24d4b7d0..9a6fd6ae4998a3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md @@ -60,4 +60,13 @@ Exemplo em Windows [Convert path POSIX to system](convert-path-posix-to-system.md) [Object to path](object-to-path.md) [Path to object ](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1106 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md index bdd531d6107109..72d646a1771d22 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md @@ -49,4 +49,13 @@ Conversão de uma imagem com qualidade de 60%: #### Ver também -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1002 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md index eb2667ca5f8ea0..c981e9eed330f1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md @@ -30,4 +30,14 @@ Se o comando for executado corretamente, a variável OK assume o valor 1\. Do co #### Ver também -[CONVERT FROM TEXT](convert-from-text.md) \ No newline at end of file +[CONVERT FROM TEXT](convert-from-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1012 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md index 18cca8a2d52f75..475adfcbbda80e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando COPY ARRAY cria ou reescreve o array de destino com os mesmos conteúdo, tamanho e fonte do array fonte. - -**Nota**: no caso de arrays numéricos de tipos diferentes, o tipo de array *destino* é mantido. +O comando COPY ARRAY cria ou reescreve o array de destino com os mesmos conteúdo, tamanho e fonte do array fonte.é mantido. Os arrays *fonte* e *destino* podem ser arrays locais, de processo ou interprocesso. Ao se copiar arrays, o tamanho do array não interessa. @@ -36,3 +34,13 @@ O exemplo seguinte preenche o array chamado C. Ele então cria um novo array, ch  SELECTION TO ARRAY([Pessoas]Empresa;C) // Mover os dados do campo empresa ao array C  COPY ARRAY(C;D) // Copiar o array C ao array D ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 226 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md index a31b682cc5f4ca..9a7848e5b1fcb4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md @@ -28,4 +28,13 @@ A cópia começa na posição (expressa em relação ao início do BLOB fonte) e #### Ver também [DELETE FROM BLOB](delete-from-blob.md) -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 558 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md index c7cdefc14d3c3e..08a37eb8c3290e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descrição -O comando **COPY DOCUMENT** copia o documento especificado por *nomFonte* na localização especificada por *nomDest*. - -* **Cópia de arquivos** +O comando **COPY DOCUMENT** copia o documento especificado por *nomFonte* na localização especificada por *nomDest*. Este caso, o parâmetro *nomFonte* deve conter um caminho de arquivo completo, expressa em relação à raiz do volume. O parâmetro *nomDest* pode conter vários tipos de locais: * um caminho de arquivo completo expressa com relação à raiz do volume: o arquivo é copiado para este local @@ -119,4 +117,14 @@ Os seguintes exemplos criam diferentes arquivos e pastas na pasta da base (exemp #### Ver também *Documentos de Sistema* -[MOVE DOCUMENT](move-document.md) \ No newline at end of file +[MOVE DOCUMENT](move-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 541 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md index 77acf39bf76946..9338ad6228503a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Copy list duplica a lista cujo número de referência é passado no parâmetro *lista* e retorna o número de referência da nova lista. @@ -27,4 +24,13 @@ Quando tiver terminado de utilizar a nova lista, chame a [CLEAR LIST](clear-list [CLEAR LIST](clear-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 626 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md index b592b04529c9c1..21087159b4b163 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md @@ -49,4 +49,13 @@ O seguinte exemplo permite verificar se há outras faturas vencidas na tabela *\ [CLEAR NAMED SELECTION](clear-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 331 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md index b341417a084890..43fc80b467562f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md @@ -79,4 +79,13 @@ Como o comando devolve uma coleção, pode ser utilizada com **.join()** para cr #### Ver também -[Count parameters](count-parameters.md) \ No newline at end of file +[Count parameters](count-parameters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1790 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md index 609cddbb83e674..d3ee57e41c818a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md @@ -38,4 +38,13 @@ O seguinte exemplo em Cliente/Servidor, copia o conjunto processo "*ConjuntoA*", #### Ver também -*Conjuntos* \ No newline at end of file +*Conjuntos* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 600 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cos.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cos.md index e42e02aa3be5e8..4c1f98e58ceb34 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cos.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cos.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descrição -Cos retorna o cosseno do *numero*, onde *numero* é expresso em radianos. - -**Nota:** 4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3.14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). +Cos retorna o cosseno do *numero*, onde *numero* é expresso em radianos.4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3.14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). #### Ver também [Arctan](arctan.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 18 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md index 210d2b5c7f3a15..e382ed437a1d43 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md @@ -56,4 +56,13 @@ Para contar referências de objeto em um array de objeto: #### Ver também [Find in array](find-in-array.md) -[Find in sorted array](find-in-sorted-array.md) \ No newline at end of file +[Find in sorted array](find-in-sorted-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 907 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md index 9efb7f8b75f239..9727334c7d0dbf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Count list items retorna o número atual de elementos visíveis ou o número total de elementos na lista cujo número de referência ou nome de objeto se passa em *lista*. @@ -62,4 +59,13 @@ Aqui temos uma lista chamada *hList* mostrada no ambiente Aplicação: #### Ver também [List item position](list-item-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 380 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md index 99e5c9bdd848e2..8052e66df17807 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Count menu items devolve o número dos elementos do menu presentes no menu cujo número ou referência é passada em *menu.* @@ -28,4 +25,14 @@ Se omite o parâmetro *processo*, Count menu items é aplicada a barra de menus #### Ver também -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 405 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md index c7a9c32ded50dc..425e78ce00a48e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Count menus devolve o número de menus presentes na barra de menus. @@ -25,4 +22,14 @@ Se omitir o parâmetro *processo*, Count menus é aplicada a barra de menus do p #### Ver também -[Count menu items](count-menu-items.md) \ No newline at end of file +[Count menu items](count-menu-items.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 404 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md index ded46dd0175aac..54c81526ba3f32 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descrição -O comando Count parameters devolve o número de parâmetros passados a um método de projeto. - -**Advertência:** Count parameters é significativo apenas em um método de projeto que tenha sido chamado por outro método (método de projeto ou outro). Se o método de projeto que chama Count parameters está associado a um menu, Count parameters devolve 0. +O comando Count parameters devolve o número de parâmetros passados a um método de projeto.Count parameters é significativo apenas em um método de projeto que tenha sido chamado por outro método (método de projeto ou outro). Se o método de projeto que chama Count parameters está associado a um menu, Count parameters devolve 0. #### Exemplo 1 @@ -94,4 +92,13 @@ ou: #### Ver também *Comandos de Compilação* -[Copy parameters](copy-parameters.md) \ No newline at end of file +[Copy parameters](copy-parameters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 259 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md index 9827dbf08c22c0..51439a3c6b098e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Count screens devolve o número de telas conectadas a seu equipo. @@ -26,4 +23,13 @@ displayed_sidebar: docs [SCREEN COORDINATES](screen-coordinates.md) [SCREEN DEPTH](screen-depth.md) [Screen height](screen-height.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 437 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md index 6a06db8b9a723b..5ea8cb459ff6b5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md @@ -28,4 +28,13 @@ Ver o exemplo para [Process state](process-state.md "Process state") e [On Exit [Count user processes](count-user-processes.md) [Count users](count-users.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 335 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md index 5aecb016436634..bd922d1e0e3083 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### Ver também [Count tasks](count-tasks.md) -[Count users](count-users.md) \ No newline at end of file +[Count users](count-users.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 343 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md index 12e5356fe9b13e..ced03dac40d270 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md @@ -22,4 +22,13 @@ Quando em versão monousuário de 4D, **Count users** devolve 1. #### Ver também [Count tasks](count-tasks.md) -[Count user processes](count-user-processes.md) \ No newline at end of file +[Count user processes](count-user-processes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 342 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md index d82236484fcb83..2e72b770971131 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md @@ -66,4 +66,14 @@ A variável sistema OK assume o valor 1 se o comando for executado corretamente, #### Ver também -[RESOLVE ALIAS](resolve-alias.md) \ No newline at end of file +[RESOLVE ALIAS](resolve-alias.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 694 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md index 2620358430bbd1..70a42c413923c3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md @@ -25,4 +25,13 @@ Antes de iniciar a operação, o comando verifica que o endereço de acesso não #### Ver também -[OPEN DATA FILE](open-data-file.md) \ No newline at end of file +[OPEN DATA FILE](open-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 313 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md index ace5c79fcb920c..1a023809712092 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-deployment-license.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **Create deployment license** command creates an embedded license file in the Licenses folder of the *mergedApp* built application. If the Licenses folder does not exist the *mergedApp*, it is created by the command. @@ -58,4 +55,13 @@ The command returns a *status* object containing the following properties: #### Ver também - \ No newline at end of file + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1811 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md index 632c03723764c3..75093da2ed44cc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md @@ -71,4 +71,14 @@ Se o documento for criado corretamente, a variável sistema OK assume o valor 1 #### Ver também [Append document](append-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 266 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md index 6ad3523d1af198..9237579ca9f826 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md @@ -27,4 +27,13 @@ Consulte o exemplo da seção *Conjuntos*. #### Ver também [CLEAR SET](clear-set.md) -[CREATE SET](create-set.md) \ No newline at end of file +[CREATE SET](create-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 140 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md index 9ae23149766c6c..78d9c6f06a7bd3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md @@ -66,4 +66,14 @@ Criação da subpasta "\\Fevereiro\\" na atual pasta "C:\\Arquivos\\": #### Ver também [FOLDER LIST](folder-list.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 475 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md index 7e7c87c7519369..6a17d25624e9aa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md @@ -86,4 +86,13 @@ Criação de um índice composto nos campos “Cidade” e “CódigoPostal” d [DELETE INDEX](delete-index.md) [RESUME INDEXES](resume-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 966 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md index deb4d23c6d40da..238740e0632c1c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Create menu** permite criar um novo menu em memória. Este menu só existirá em memória e não será adicionado ao editor de menu no ambiente Desenho. Toda modificação realizada a este menu durante a sessão repercutirá imediatamente em todas as instâncias deste menu e em todos os processos do banco. @@ -44,4 +41,13 @@ Consulte o exemplo do comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR"). [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 408 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md index e9e56e763a7108..af526f2886e516 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md @@ -45,4 +45,14 @@ O seguinte exemplo arquiva os registros que tem mais de 30 dias. Esta operação [ADD RECORD](add-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 68 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md index 22b1c3a25e96ca..97abccb6b204ac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md @@ -23,4 +23,13 @@ Se já existe um registro relacionado, CREATE RELATED ONE atua como [RELATE ONE] #### Ver também -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 65 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md index 499b85f42c0227..ecef4c84818a95 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md @@ -47,4 +47,15 @@ Se um número de registro não é válido (registro não criado), é gerado o er [CREATE SET FROM ARRAY](create-set-from-array.md) [LONGINT ARRAY FROM SELECTION](longint-array-from-selection.md) [SELECTION TO ARRAY](selection-to-array.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 640 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md index b2eac0d9dd38f1..aa1777456d5ae5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md @@ -38,4 +38,14 @@ Em um array de inteiros longos, se um número de registro não for válido (regi #### Ver também [BOOLEAN ARRAY FROM SET](boolean-array-from-set.md) -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 641 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md index 2e1a7b54e88229..5e7cf8da248c51 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md @@ -31,4 +31,13 @@ O seguinte exemplo cria um conjunto depois de realizar uma pesquisa, de maneira #### Ver também [CLEAR SET](clear-set.md) -[CREATE EMPTY SET](create-empty-set.md) \ No newline at end of file +[CREATE EMPTY SET](create-empty-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 116 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md index a1fc801b615c60..c5e00c444e4ccc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md @@ -58,3 +58,13 @@ O parâmetro *profundidade* é ignorado e portanto deve ser omitido. O comando s O parâmetro opcional *profundidade* define o número de cores em Mac OS (ou seja, a profundidade de tela) a conservar na miniatura resultante. O parâmetro é um inteiro igual ao número de bits por píxel: 1, 2, 4, 8, 16 ou 32\. Introduza 0 para utilizar a profundidade de tela atual (valor padrão). **Nota:** Em Windows, se ignora o parâmetro *profundidade*; o comando sempre utiliza a profundidade de tela atual. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 679 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md index 6de34571fad047..cf2c4ea5a3a25a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md @@ -70,3 +70,13 @@ Com esta configuração, não se mostra um diálogo de senha para um 4D remoto q * replicar os nomes do diretório Active nos nomes de usuário 4D e grupos, para um mapeamento automático, * mapa retorna informação para uma tabela personalizada \[users\] , * usa propriedades LDAP para conseguir credenciais de usuário. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1355 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md index 1739d399d22af2..29bd970c504cc5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando Current date retorna a data atual tal como está definida no relógio do sistema. - -**4D Server:** se passado o parâmetro asterisco (\*) durante a execução desta função em um equipo cliente 4D Client, a função devolve a data atual do servidor. +O comando Current date retorna a data atual tal como está definida no relógio do sistema.se passado o parâmetro asterisco (\*) durante a execução desta função em um equipo cliente 4D Client, a função devolve a data atual do servidor. #### Exemplo 1 @@ -97,4 +95,13 @@ O seguinte método de projeto permite fazer isso: [Day of](day-of.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 33 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md index 88ead3145d8028..b6f839bb2aaa60 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md @@ -29,4 +29,13 @@ Desde que uma tabela padrão tenha sido estabelecida, a linha de código abaixo [DEFAULT TABLE](default-table.md) [Table](table.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 363 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md index ab6631b88f3624..1a312063fee295 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Current form name** retorna o nome do formulário atual definido para o processo. O formulário atual pode ser um formulário de projeto ou formulário de tabela. @@ -59,4 +56,13 @@ Se quiser obter o formulário atual se este for um formulário projeto: #### Ver também -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1298 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md index da67de94eb8837..a56010aca92b9a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Current form table retorna o ponteiro para a tabela do formulário em tela ou impresso no processo atual. @@ -63,4 +60,13 @@ Para isso, utilize o método de objeto para criar a variável *vstRegistroAtual* [DIALOG](../commands/dialog.md) [FORM SET OUTPUT](form-set-output.md) [FORM SET INPUT](form-set-input.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 627 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md index 597370fac733e2..c06c90d39c556b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Current form window devolve a referência da janela do formulário atual. Se nenhuma janela tiver sido definida para o formulário atual, o comando devolve 0. @@ -26,4 +23,13 @@ A janela do formulário atual pode ser gerada automaticamente por um comando tal [Open form window](open-form-window.md) [Open window](open-window.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 827 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md index 24c9f7506f1c3e..950d6fbaa9b4e6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md @@ -29,4 +29,13 @@ Inclusive se não está correndo a versão cliente/servidor de 4D, sua aplicaç #### Ver também -[Current system user](current-system-user.md) \ No newline at end of file +[Current system user](current-system-user.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 483 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md index adc9d222da4129..824fc2b59a2889 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md @@ -45,3 +45,13 @@ Este comando não pode ser chamado desde uma fórmula 4D. ```4d ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 684 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md index eeb2ea05fb4623..4b9d6984f77f83 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md @@ -15,11 +15,18 @@ displayed_sidebar: docs #### Descrição -O comando **Current method path** devolve o caminho de acesso interna do método base, trigger, método de projeto, método formulário ou método objeto em execução. - -**Nota:** no contexto dos macro comandos 4D, a etiqueta ** é substituída pelo caminho de acesso completa do código em execução. +O comando **Current method path** devolve o caminho de acesso interna do método base, trigger, método de projeto, método formulário ou método objeto em execução.no contexto dos macro comandos 4D, a etiqueta ** é substituída pelo caminho de acesso completa do código em execução. #### Ver também [METHOD Get path](method-get-path.md) -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1201 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md index e296be6cab3857..5ad15efb8529c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md @@ -31,4 +31,13 @@ Se quiser chamar a um processo worker e passar o nome de processo de chamada com [CALL WORKER](call-worker.md) [KILL WORKER](kill-worker.md) -*Sobre Workers* \ No newline at end of file +*Sobre Workers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1392 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md index a02c4cf0bce46b..cb461afb1cfdca 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md @@ -25,4 +25,13 @@ Ver os exemplos de [DELAY PROCESS](delay-process.md "DELAY PROCESS") e [PROCESS [Process number](process-number.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 322 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md index 9a9c03dd9ec8e8..3c20fac7cde9f7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md @@ -23,4 +23,13 @@ Ver o exemplo do comando [Current machine](current-machine.md "Current machine") #### Ver também -[Current machine](current-machine.md) \ No newline at end of file +[Current machine](current-machine.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 484 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md index 886c7bc1b260df..da8bd83c8db876 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md @@ -48,4 +48,13 @@ O exemplo a seguir extrai as horas, minutos e segundos da hora atual: [Milliseconds](milliseconds.md) [String](string.md) -[Tickcount](tickcount.md) \ No newline at end of file +[Tickcount](tickcount.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 178 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md index e5033e642e9bb2..4cb6af1a482d98 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md @@ -37,4 +37,13 @@ Ver exemplo do comando [User in group](user-in-group.md). [CHANGE CURRENT USER](change-current-user.md) [CHANGE PASSWORD](change-password.md) [SET USER ALIAS](set-user-alias.md) -[User in group](user-in-group.md) \ No newline at end of file +[User in group](user-in-group.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 182 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md index 0436fa183e9cde..d92b9c105825ef 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md @@ -35,4 +35,14 @@ O método seguinte vazia a seleção atual de uma tabela *\[Clientes\]*: [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 334 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md index 0e815cc35bae12..2919664ddee17c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md @@ -67,4 +67,13 @@ Se quiser conhecer o estado de criptografia de um arquivo de dados que correspon #### Ver também -[Encrypt data file](encrypt-data-file.md) \ No newline at end of file +[Encrypt data file](encrypt-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1609 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md index b8714a107a14e1..74dac41630f773 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md @@ -31,4 +31,13 @@ Se você está trabalhando, por exemplo, com o banco na pasta Documentos:MeusCDs #### Ver também [Application file](application-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 490 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md index dad98365c1f5f0..5def1a8de1ff8f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md @@ -328,3 +328,13 @@ Queremos obter as medidas de bytes de cachê nos últimos dois minutos:  OB SET($oParams;"historyLength";2*60)  $measures:=Database measures($oParams) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1314 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/date.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/date.md index 9959945f4d6f65..db17406c59be20 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/date.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/date.md @@ -93,4 +93,13 @@ Se quiser obter uma data de um atributo de objeto, qualquer que seja a opção a #### Ver também [Bool](bool.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 102 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md index 28094d10336975..7515274a95f03e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando Day number retorna um número que representa o dia da semana que corresponde a *data*. - -**Nota:** Day Number retorna *2* para datas nulas. +O comando Day number retorna um número que representa o dia da semana que corresponde a *data*.Day Number retorna *2* para datas nulas. 4D oferece as seguintes constantes pré-definidas: @@ -60,4 +58,13 @@ O seguinte exemplo é uma função que retorna o dia atual como uma string: #### Ver também -[Day of](day-of.md) \ No newline at end of file +[Day of](day-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 114 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md index bd89cae94b0c38..4387749a97c3be 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando Day of retorna o dia do mês de *data*. - -**Nota:** Day of retorna um valor entre 1 e 31\. Para obter o dia da semana de uma data, utilize o comando [Day number](day-number.md "Day number"). +O comando Day of retorna o dia do mês de *data*.Day of retorna um valor entre 1 e 31\. Para obter o dia da semana de uma data, utilize o comando [Day number](day-number.md "Day number"). #### Exemplo 1 @@ -37,4 +35,13 @@ Veja o exemplo para o comando [Current date](current-date.md "Current date"). [Day number](day-number.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 23 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md index fea0f8daa8beb8..f88940e13c96c6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Deactivated retorna TRUE em um método formulário de objeto quando a janela do primeiro plano do processo do primeiro plano, que contém ol formulário, passa ao segundo plano. @@ -27,4 +24,13 @@ Para que seja gerado o ciclo de execução Deactivated, tenha certeza de que o e #### Ver também [Activated](activated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 347 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dec.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dec.md index d74fcf4992eb88..636c296ce1ceec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dec.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dec.md @@ -29,4 +29,13 @@ O exemplo a seguir utiliza um valor monetário expresso como um número real, e #### Ver também -[Int](int.md) \ No newline at end of file +[Int](int.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 9 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md index 8a0125b1438b02..2bb64357253b34 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md @@ -33,4 +33,13 @@ Consulte os exemplos dados para o comando . #### Ver também [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 690 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md index a5a9be89563282..e660b8feb960fb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md @@ -58,4 +58,13 @@ O exemplo abaixo mostra como decriptogrofar um arquivo criptografado localizado [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1774 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md index 622a18669e5ea9..910994eb74e022 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md @@ -76,4 +76,13 @@ Neste código o resultado da tabela padrão: #### Ver também [Current default table](current-default-table.md) -[NO DEFAULT TABLE](no-default-table.md) \ No newline at end of file +[NO DEFAULT TABLE](no-default-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 46 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md index ca98364c75f280..8fd00abd169930 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md @@ -37,4 +37,13 @@ Ver o exemplo do comando [Process number](process-number.md). #### Ver também [HIDE PROCESS](hide-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 323 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md index 7f516a7e8ed813..3f9512968bdd47 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md @@ -47,4 +47,14 @@ A eliminação de um documento faz que a variável sistema assuma o valor 1\. Se #### Ver também -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 159 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md index 3aba9b29abf3b3..c4a6a08b86bb58 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md @@ -41,4 +41,14 @@ Pode interceptar estes erros usando o método isntalado pelo comando [ON ERR CAL #### Ver também -[DELETE DOCUMENT](delete-document.md) \ No newline at end of file +[DELETE DOCUMENT](delete-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 693 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md index 22f0b579a43fa5..f04df85fa56ec5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md @@ -43,4 +43,13 @@ O exemplo a seguir deleta o última elemento de um array, se ele existir: #### Ver também [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 228 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md index acdbbebf466432..263b7f43341b67 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### Ver também -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 560 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md index a751febfb9711f..dac28333363ae7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DELETE FROM LIST apaga o elemento designado pelo parâmetro *refElem* da lista cujo número de referência se passa em *lista*. @@ -44,4 +41,13 @@ O código a seguir apaga o elemento selecionado da lista *hList*. Se o elemento #### Ver também [CLEAR LIST](clear-list.md) -[GET LIST ITEM](get-list-item.md) \ No newline at end of file +[GET LIST ITEM](get-list-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 624 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md index 65bf5848296004..ce1712d94c9551 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md @@ -44,4 +44,13 @@ Este exemplo ilustra as duas sintaxes do comando: [CREATE INDEX](create-index.md) [PAUSE INDEXES](pause-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 967 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md index 762c1e19ec722f..feb8af0d815702 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DELETE MENU ITEM elimina a linha de menu cujo número ou referência de menu e número de elemento você passou em *menu* e *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu.* @@ -35,4 +32,14 @@ Se omite o parâmetro *processo*, DELETE MENU ITEM é aplicado a barra de menus #### Ver também [APPEND MENU ITEM](append-menu-item.md) -[INSERT MENU ITEM](insert-menu-item.md) \ No newline at end of file +[INSERT MENU ITEM](insert-menu-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 413 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md index 9b8ec8005627ba..133140ffa816b5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md @@ -41,4 +41,14 @@ O exemplo apaga um registro de um empregado. O código pergunta ao usuário o n #### Ver também [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 58 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md index d33ffa510be348..32cb7d95e7d9fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md @@ -61,4 +61,14 @@ Se for encontrado um registro bloqueado durante a execução de DELETE SELECTION [DISPLAY SELECTION](display-selection.md) [MODIFY SELECTION](modify-selection.md) *Record Locking* -[TRUNCATE TABLE](truncate-table.md) \ No newline at end of file +[TRUNCATE TABLE](truncate-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 66 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md index 3fa9e6673d7d4b..05e62b681779ff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md @@ -43,4 +43,13 @@ O exemplo abaixo ilustra o uso de Delete string. Os resultados são atribuídos [Change string](change-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 232 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md index 7064df03d19516..247716475ca30a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando [ON ERR CALL](on-err-call.md) apaga o usuário cujo número se passa em *refUsuario*. Deve passar um número válido de usuário retornado pelo comando [GET USER LIST](get-user-list.md). @@ -35,4 +32,14 @@ Se não tiver os privilégios de acesso para chamar DELETE USER ou se outro proc [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 615 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md index 86285782626c7b..2aeff1128d77ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md @@ -65,4 +65,13 @@ $vResultPath : #### Ver também [Last query path](last-query-path.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1044 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/difference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/difference.md index 795a47feb6e148..1c52d1d3bba4f0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/difference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/difference.md @@ -53,4 +53,13 @@ Ao final da lista de registros há um botão com um método de objeto. O método #### Ver também [INTERSECTION](intersection.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 122 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md index a03f985c2bfbb0..97c3c68c3f838f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DISABLE MENU ITEM desativa o comando de menu cujo número ou referência de menu e número de elemento você passou em *menu* e *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu*. @@ -32,4 +29,14 @@ Se o parâmetro *menuItem* designa um submenu hierárquico, todos os elementos d #### Ver também -[ENABLE MENU ITEM](enable-menu-item.md) \ No newline at end of file +[ENABLE MENU ITEM](enable-menu-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 150 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md index 116a9011874946..5bcab9f769c808 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md @@ -48,4 +48,13 @@ Os archivos chave (arquivos de extensão ".4DKeyChain") devem ser armazenados no #### Ver também -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1639 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md index d14f82f02798c7..2c5ac6a35b4b4f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DISPLAY NOTIFICATION mostra uma mensagem na área de notificação ao usuário: @@ -42,4 +39,13 @@ Sob Windows, é mostrada a janela da mensagem se não se detecta atividade na m #### Ver também -[ALERT](alert.md) \ No newline at end of file +[ALERT](alert.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 910 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md index 5e5adaccd5fd21..c6945f9d778f9e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DISPLAY RECORD mostra o registro atual de *tabela*, utilizando o formulário de entrada atual. O registro se mostra até que um evento provoque um redesenho da janela. Tal evento pode ser a execução de um comando ADD RECORD, o regresso ao formulário de entrada, ou a barra de menus. DISPLAY RECORD não faz nada se não houver registro atual. @@ -42,4 +39,13 @@ O exemplo a seguir mostra uma série de registros como uma apresentação de sli #### Ver também -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 105 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md index 1f3405b24361d3..6d28745c9c0cb0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição DISPLAY SELECTION mostra a seleção de *tabela*, utilizando o formulário de saída. Os registros se mostram em uma lista pela qual pode ser deslocada similar ao do modo Desenho. Se o usuário fizer duplo clique em um registro, por padrão é mostrado o registro no formulário de entrada atual. A lista é mostrada na janela do primeiro plano. @@ -103,4 +100,14 @@ Também pode utilizar outros comandos, tais como [PRINT SELECTION](print-selecti *Conjuntos* [Form event code](../commands/form-event-code.md) -[MODIFY SELECTION](modify-selection.md) \ No newline at end of file +[MODIFY SELECTION](modify-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 59 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md index 68ad40a433b9d8..f6c3cb4e8eab4e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Displayed line number funciona unicamente no contexto do evento de formulário On Display Detail. Retorna o número da linha que estiver sendo processada enquanto uma lista de registros é mostrada em tela. Se Displayed line number for chamada quando não se mostra uma lista, retorna 0. @@ -46,4 +43,13 @@ Este exemplo lhe permite aplicar uma cor alternativa em um formulário listado m #### Ver também [Form event code](../commands/form-event-code.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 897 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md index e67cfa124aa9ea..5b944cd1fbe20f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md @@ -66,4 +66,13 @@ O array *aTPaths* obtém os elementos abaixo: #### Ver também -[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) \ No newline at end of file +[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1395 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md index 28499e776724a8..a0c61e12c5be15 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md @@ -63,4 +63,13 @@ O array *aLAges* obtém os seguintes 9 elementos: #### Ver também -[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) \ No newline at end of file +[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1397 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md index 13d4ebaedda81e..d1d76bd04c4cc7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md @@ -82,4 +82,13 @@ Para calcular as estatísticas, se quiser ordenar o número de valores distintos [GET TEXT KEYWORDS](get-text-keywords.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 339 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md index 5f0ba77e8eead3..cba93a12e682a8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **DOCUMENT LIST** preenche o array *documentos* de tipo texto ou alfa com os nomes dos documentos localizados na rota de acesso que se passa em *rotaAcesso*. - -**Nota**: o parâmetro *rotaAcesso* apenas aceita rotas de acesso absolutas. +O comando **DOCUMENT LIST** preenche o array *documentos* de tipo texto ou alfa com os nomes dos documentos localizados na rota de acesso que se passa em *rotaAcesso*.apenas aceita rotas de acesso absolutas. Por padrão, se você omitir o parâmetro *opções*, apenas os nomes dos documentos são retornados no array *documentos*. Você pode modificar esta passando, no parâmetro *opções*, uma ou mais das seguintes constantes, encontrado no tema *Documentos Sistema*: @@ -114,4 +112,14 @@ Lista de todos os documentos em modo recursivo Posix (relativo): #### Ver também [FOLDER LIST](folder-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 474 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md index df2f30c0888a70..ae703335030fdb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md @@ -49,4 +49,14 @@ Em cada caso, você pode interceptar o erro usando um método de interrupção [ #### Ver também [BLOB TO DOCUMENT](blob-to-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 525 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md index 9c32d261c6ea12..0d42643d59d8b1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md @@ -76,4 +76,13 @@ Quando executa este código: #### Ver também *Documentos Sistema* -[TEXT TO DOCUMENT](text-to-document.md) \ No newline at end of file +[TEXT TO DOCUMENT](text-to-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1236 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md index dba01f25552cdd..60d6e1b10dce7b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md @@ -145,4 +145,13 @@ Se o conteúdo de *valorFilho* não é válido, se devolve um erro. #### Ver também [DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1080 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md index 04eca8ff070a26..f7b16c66a367a3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md @@ -27,4 +27,13 @@ Ver o exemplo do comando [DOM Insert XML element](dom-insert-xml-element.md "DOM #### Ver também -[DOM Insert XML element](dom-insert-xml-element.md) \ No newline at end of file +[DOM Insert XML element](dom-insert-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1082 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md index 1c56db879a41f7..49e956ed0e3d79 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md @@ -26,4 +26,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também [DOM Parse XML source](dom-parse-xml-source.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 722 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md index f416eeed1bc140..6f6e4ff16b0ef7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md @@ -51,4 +51,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também -[DOM Count XML elements](dom-count-xml-elements.md) \ No newline at end of file +[DOM Count XML elements](dom-count-xml-elements.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 727 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md index 4564267dbe7232..4e4c0a731b9d60 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando DOM Count XML elements devolve o número de elementos “filho” dependentes do elemento pai *refElemento* e chamado *nomeElemento*. - -**Nota:** como padrão, **DOM Count XML elements** diferencia maiúsculas de minúsculas relativas ao parâmetro *nomeElemento* (regras xml). Pode controlar se o comando diferencia maiúsculas de minúsculas usando o seletor XML DOM case sensitivity ou o comando [XML SET OPTIONS](xml-set-options.md). +O comando DOM Count XML elements devolve o número de elementos “filho” dependentes do elemento pai *refElemento* e chamado *nomeElemento*.como padrão, **DOM Count XML elements** diferencia maiúsculas de minúsculas relativas ao parâmetro *nomeElemento* (regras xml). Pode controlar se o comando diferencia maiúsculas de minúsculas usando o seletor XML DOM case sensitivity ou o comando [XML SET OPTIONS](xml-set-options.md). #### Variáveis e conjuntos do sistema @@ -28,4 +26,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também [DOM Get XML element](dom-get-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 726 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md index 72b04ce0f1e918..283b7b62e34981 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md @@ -60,4 +60,13 @@ Para isso, basta escrever: #### Ver também -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1097 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md index 4e1382b617f498..8e818553cdd55f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md @@ -155,4 +155,14 @@ Um erro é gerado quando: [DOM Create XML element arrays](dom-create-xml-element-arrays.md) [DOM Get XML element](dom-get-xml-element.md) -[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) \ No newline at end of file +[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 865 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md index 997fa3fa8848d0..0a2099e4ae7073 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md @@ -97,4 +97,14 @@ Se o comando foi executado corretamente, a variável sistema Ok assume o valor 1 #### Ver também [DOM CLOSE XML](dom-close-xml.md) -[DOM SET XML DECLARATION](dom-set-xml-declaration.md) \ No newline at end of file +[DOM SET XML DECLARATION](dom-set-xml-declaration.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 861 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md index 6d7157d1d88b26..8523d75aff7cb2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md @@ -61,4 +61,14 @@ Se gera um erro quando: #### Ver também [DOM EXPORT TO VAR](dom-export-to-var.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 862 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md index c8d0ab3b962909..3fa20107d0c677 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md @@ -54,4 +54,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 #### Ver também [DOM EXPORT TO FILE](dom-export-to-file.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 863 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md index 7cd3f97b5c3244..d685a1ce3d4720 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md @@ -27,4 +27,14 @@ O comando retorna como resultado a referência XML do elemento encontrado. #### Ver também -[DOM Find XML element](dom-find-xml-element.md) \ No newline at end of file +[DOM Find XML element](dom-find-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1010 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md index db3d235f98d1ae..eb84c80ade1ccc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md @@ -109,4 +109,14 @@ Um erro é gerado quando: #### Ver também [DOM Count XML elements](dom-count-xml-elements.md) -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 864 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md index efc73986615803..7eb282aa65be3d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md @@ -57,4 +57,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 #### Ver também -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 723 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md index 1f719b5993735f..7688f12f3628e4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md @@ -42,4 +42,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 925 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md index 9d7a209104ca2c..b05eaaf78de20f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md @@ -59,4 +59,14 @@ Se o comando tiver sido executado corretamente e se o elemento analisado não fo #### Ver também -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 724 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md index 90bf2926562bd0..2ac2b61469e259 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md @@ -35,4 +35,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 [DOM Get first child XML element](dom-get-first-child-xml-element.md) [DOM Get last child XML element](dom-get-last-child-xml-element.md) -[DOM Get Root XML element](dom-get-root-xml-element.md) \ No newline at end of file +[DOM Get Root XML element](dom-get-root-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 923 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md index c117dbe819b8cc..e46e4700e08d65 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md @@ -32,4 +32,14 @@ Se o comando for executado corretamente e se o elemento referenciado não for o #### Ver também -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 924 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md index e43d169191cff2..2e67d0d6e8ef62 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver também -[DOM Get parent XML element](dom-get-parent-xml-element.md) \ No newline at end of file +[DOM Get parent XML element](dom-get-parent-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1053 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md index 57d5423ac8f4fb..af1d338475f393 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md @@ -37,4 +37,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 729 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md index 153a7bdc12aefa..9cfa67bf848e3e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md @@ -48,4 +48,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 728 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md index 0b6d40b6f08edd..feb1baf4b6381f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md @@ -62,4 +62,13 @@ Depois da execução destas instruções: #### Ver também [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1081 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md index 03a57facfd40ef..ff30264939d6ab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md @@ -51,4 +51,13 @@ Neste exemplo, queremos encontrar a declaração DTD do documento XML: #### Ver também [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) \ No newline at end of file +[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1088 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md index 09ee81e735018d..67423bfffa9704 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md @@ -39,4 +39,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) \ No newline at end of file +[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 730 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md index 192253d33adb4f..13863684871834 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md @@ -42,4 +42,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) -[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) \ No newline at end of file +[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 731 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md index bf4d67e1d48b89..8d2a7e091b197d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md @@ -32,4 +32,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 725 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md index 01372113cd689a..d3eae64e049616 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md @@ -32,4 +32,13 @@ Em *xmlInfo*, passe um código indicando o tipo de informação a ser recuperado #### Ver também -[XML GET ERROR](xml-get-error.md) \ No newline at end of file +[XML GET ERROR](xml-get-error.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 721 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md index 9bde2ee4275b23..e9d06d9076f6ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md @@ -77,4 +77,13 @@ Para fazer isso, simplesmente execute o código abaixo: #### Ver também -[DOM Append XML element](dom-append-xml-element.md) \ No newline at end of file +[DOM Append XML element](dom-append-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1083 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md index e2ed9e6e910ba4..22ea7aa66f5623 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md @@ -91,4 +91,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 719 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md index 3d393cab625236..bd1ff5d791bb42 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md @@ -81,4 +81,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML source](dom-parse-xml-source.md) \ No newline at end of file +[DOM Parse XML source](dom-parse-xml-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 720 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md index 35f8235418c9e3..8baa050d6c257f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md @@ -43,4 +43,14 @@ O código abaixo permite remover o primeiro atributo "N=1": [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) -[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) \ No newline at end of file +[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1084 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md index b39c5db51bbcf7..fbb6bfc8af568b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md @@ -26,4 +26,14 @@ Um erro é gerado quando o elemento de referência for inválido #### Ver também [DOM Create XML element](dom-create-xml-element.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 869 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md index 3dfeb3d734068b..9d49906145f04c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md @@ -66,4 +66,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 866 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md index da940a4688343f..57a798ad14fcc3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md @@ -36,4 +36,13 @@ O exemplo define a codificação a utilizar e a opção autônoma do elemento *e #### Ver também [DOM Create XML Ref](dom-create-xml-ref.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 859 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md index 025932fa8a60d6..a933d6c7a0c316 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md @@ -57,4 +57,14 @@ Um erro é gerado quando: #### Ver também -[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) \ No newline at end of file +[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 867 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md index 1199a84d717d98..bad1f202ecac1e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md @@ -118,4 +118,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 868 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md index 3cf567618009a4..c88446b1cacc8b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DRAG WINDOW permite arrastar a janela na qual o usuário clica para seguindo os movimentos do mouse. Geralmente este comando se chama desde um método de objeto de um objeto que possa responder instantaneamente aos cliques do mouse (por exemplo um botão invisível). @@ -55,4 +52,13 @@ Depois pode arrastar a janela clicando em qualquer das margens. #### Ver também [GET WINDOW RECT](get-window-rect.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 452 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md index bd528b5193afb0..50987f0079c947 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Drop position pode ser utilizado para descobrir a localização, em um objeto de destino “complexo”, onde um objeto foi (arrastado e) soltado. @@ -95,4 +92,13 @@ O método de objeto de list box da esquerda (destino) contém o código abaixo: #### Ver também -*Arrastar e Soltar* \ No newline at end of file +*Arrastar e Soltar* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 608 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md index fdf0993de8ad69..553c8a85e161dc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md @@ -42,4 +42,13 @@ Se quiser eliminar um usu\[ario remoto específico: #### Ver também [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) \ No newline at end of file +[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1633 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md index 37052dbe6300dc..6190a1d7dad2fc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md @@ -23,4 +23,14 @@ DUPLICATE RECORD pode ser executado durante a entrada de dados. Isso permite dup #### Ver também -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 225 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md index 93a8266af1cad4..d239c76021dce2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Dynamic pop up menu faz aparecer um menu suspenso hierárquico na localização atual do mouse ou na localização definida pelos parâmetros opcionais *Coordx* e *Coordy*. @@ -93,4 +90,13 @@ Este código permite criar um menu emergente dinâmico hierárquico baseado em a [Get selected menu item parameter](get-selected-menu-item-parameter.md) [Pop up menu](pop-up-menu.md) [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1006 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md index 988dd1a0d09cd0..0db1c9faf1292e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição EDIT ACCESS permite modificar o sistema de senhas. Quando se executa este comando, a janela da caixa de ferramentas que contiver as páginas Usuários e Grupos é mostrada. @@ -36,4 +33,14 @@ O exemplo abaixo mostra ao usuário a janela de gestão de usuários e grupos: #### Ver também [CHANGE CURRENT USER](change-current-user.md) -[CHANGE PASSWORD](change-password.md) \ No newline at end of file +[CHANGE PASSWORD](change-password.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 281 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md index f48743b60f50d8..7b1a6de3cc0d8d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **EDIT FORMULA** mostra o editor de fórmulas com o propósito de permitir ao usuário escrever ou modificar uma fórmula. O editor contém ao abrir: @@ -55,4 +52,14 @@ Se o usuário valida a caixa de diálogo, a variável de sistema OK toma o valor [APPLY TO SELECTION](apply-to-selection.md) [EXECUTE FORMULA](execute-formula.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 806 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md index 066804033098f6..11acd070ee608a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **EDIT ITEM** lhe permite editar o elemento atual ou o elemento de número *item* do array ou a lista designada pelo parâmetro *objeto*. @@ -75,4 +72,13 @@ Dadas duas colunas em una list box onde os nomes das variáveis são “Array1 [GOTO OBJECT](goto-object.md) [INSERT IN LIST](insert-in-list.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 870 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md index cf70286659d668..41559f0d78838e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ENABLE MENU ITEM ativa o comando de menu cujo número ou referência de menu e número de elemento que passou em *menu* e *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu*. @@ -30,4 +27,14 @@ Se omite o parâmetro *processo*, ENABLE MENU ITEM é aplicado a barra de menus #### Ver também -[DISABLE MENU ITEM](disable-menu-item.md) \ No newline at end of file +[DISABLE MENU ITEM](disable-menu-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 149 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md index dc5187d8054c17..5664d2f2f7c4f6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md @@ -184,4 +184,13 @@ A empresa quer usar a Internet para trocar informações. Cada filial recebe inf [DECRYPT BLOB](decrypt-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 689 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md index 5a677ac439d351..6e4b0b0f023628 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md @@ -58,4 +58,13 @@ Para criptografar um arquivo texto na pasta RESOURCES no banco de dados: [Decrypt data BLOB](decrypt-data-blob.md) [ENCRYPT BLOB](encrypt-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1773 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md index 14478733c3097a..bd0c5a552fa1a4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Encrypt data file** se utiliza para cifrar ou cifrar novamente o arquivo de dados designado pelo parâmetro *rotaDados* associado ao parâmetro *rotaEstrutura*. Também pode ser utilizado para eliminar o cifrado do banco de dados. O comando não modifica os arquivos originais, devolve o nome de rota completo da pasta criada para respaldar o arquivo de dados original. @@ -133,4 +130,13 @@ Re-encriptar um arquivo de dados criptografado com a chave atual (por exemplo, q [Data file encryption status](data-file-encryption-status.md) [Decrypt data BLOB](decrypt-data-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1610 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md index f53f761fbe1ef6..3ad2bf1fddc738 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md @@ -59,4 +59,13 @@ Este método de formulário é utilizado durante a impressão de um relatório. [Form event code](../commands/form-event-code.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 36 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md index e7494a4aa8a31d..45b5090f0267b2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md @@ -20,4 +20,13 @@ Uma sequência de instruções SQL deve estar rodeada pelas palavras chaves [Beg #### Ver também -[Begin SQL](begin-sql.md) \ No newline at end of file +[Begin SQL](begin-sql.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 949 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md index 8ca5b80aae9bcc..0edf9f6eef58f0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md @@ -41,3 +41,14 @@ Este é o código do botão **Compare**: ```4d  $equal :=Equal pictures($pict1;$pict2;$mask) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1196 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md index d74fa8745cead8..9b4965807d2a06 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ERASE WINDOW apaga o conteúdo da janela cujo número de referência se passa em janela. @@ -29,4 +26,13 @@ No confunda ERASE WINDOW , que apaga o conteúdo de uma janela, com [CLOSE WINDO #### Ver também [GOTO XY](goto-xy.md) -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 160 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md index 9f6c52079666f5..8aee5a396ca5d8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md @@ -78,3 +78,13 @@ Estes são alguns exemplos de conversões que podem ser realizadas com este coma   //Converter o valor a Liras Italianas  $EmLiras:=Euro converter($valor;French Franc;Italian Lira) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 676 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md index 917bcdcb586cde..3141602404b311 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md @@ -62,4 +62,13 @@ Se quiser executar instruções usando chamadas para comandos 4D e tabelas. Já [Command name](command-name.md) [EDIT FORMULA](edit-formula.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 63 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md index 506fefc9a455dd..ce684feba2e9bc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando EXECUTE METHOD IN SUBFORM pode ser utilizado para executar o método de projeto *nomeMetodo no* contexto do sub formulário *objetoSubform*. @@ -77,3 +74,14 @@ Se este método foi utilizado diretamente no método do formulário Calendar, po #### Variáveis e conjuntos do sistema Se este comando é executado corretamente, a variável sistema OK toma o valor 1; do contrário toma o valor 0. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1085 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md index 95a08fcc725ccf..824a053a66e43a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md @@ -31,4 +31,14 @@ Se este comando é executado corretamente, a variável sistema OK toma o valor 1 #### Ver também -[EXECUTE FORMULA](execute-formula.md) \ No newline at end of file +[EXECUTE FORMULA](execute-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1007 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md index b7a978c4a249c5..e095619a03c1f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **EXECUTE ON CLIENT** é usado para forçar a execução do método *nomeMetodo*, com lo parâmetros *param1... paramN*, se necessário, no cliente 4D registrado de nome *nomeCliente*.. O nome registrado do cliente 4D é definido pelo comando [REGISTER CLIENT](register-client.md). @@ -63,4 +60,14 @@ A variável do sistema **OK é** igual a 1 se o 4D Server recebeu corretamente o [Execute on server](execute-on-server.md) [GET REGISTERED CLIENTS](get-registered-clients.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 651 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md index 17103b6cbb70d4..5700fb5bf2119e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Execute on server inicia um novo processo na máquina servidor (quando se chama em Cliente/Servidor) ou na mesma máquina (se é chamado em monousuário) e devolve o número deste processo. @@ -198,4 +195,13 @@ Consulte a seção *Serviços baseados nos procedimentos armazenados (exemplo)* #### Ver também [EXECUTE ON CLIENT](execute-on-client.md) -[New process](new-process.md) \ No newline at end of file +[New process](new-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 373 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/exp.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/exp.md index 862b17617db220..8b9ee315356df7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/exp.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/exp.md @@ -30,4 +30,13 @@ O exemplo a seguir atribui a exponencial de 1 a *vrE* (o log de *vrE* é 1): #### Ver também -[Log](log.md) \ No newline at end of file +[Log](log.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 21 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md index f2b39973c9da7d..b8bb2e3f31e972 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md @@ -63,4 +63,14 @@ A variável OK é definida como 1 se o BLOB foi expandido com êxito, caso contr #### Ver também [BLOB PROPERTIES](blob-properties.md) -[COMPRESS BLOB](compress-blob.md) \ No newline at end of file +[COMPRESS BLOB](compress-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 535 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md index 98741ed80533f9..120345e0837177 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando EXPORT DATA exporta dados no arquivo *nomArquivo*. 4D pode exportar dados nos seguintes formatos: Texto, Texto de longitude fixa, XML, SYLK, DIF, DBF (dBase) e 4D. @@ -98,4 +95,14 @@ Se o usuário clicar em **Cancelar** na caixa de diálogo padrão de abrir arqui [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) -[IMPORT DATA](import-data.md) \ No newline at end of file +[IMPORT DATA](import-data.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 666 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md index b40e15b8dec331..f0edc8857be156 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando EXPORT DIF escreve os dados dos registros da seleção atual de *tabela* no processo atual. Os dados são escritos em *documento*, um documento DIF Windows ou Macintosh, no disco. @@ -51,4 +48,14 @@ OK toma o valor 1 se a exportação termina com sucesso; do contrário, toma o v [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 84 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md index b6f0be05ea2cf8..d38202ba278e8f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Export structure file** divide a estrutura atual do banco de dados 4D em um conjunto de arquivos de texto ou arquivos de imagem nativos e os armazena na *rotaPastta* especificada. Como padrão, se exporta a totalidade da estrutura do banco de dados (métodos, formulários, catálogo, etc.). Pode filtrar os conteúdos a exportar utilizando o parâmetro *opções* (ver abaixo). @@ -115,4 +112,13 @@ Se quiser exportar apenas os métodos projeto e banco de dados, e um arquivo de #### Ver também -[FORM Convert to dynamic](form-convert-to-dynamic.md) \ No newline at end of file +[FORM Convert to dynamic](form-convert-to-dynamic.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1565 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md index 9385794fe27497..48076698d54c64 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md @@ -57,4 +57,13 @@ Se quiser exportar a estrutura atual do banco de dados em formato html: #### Ver também -[IMPORT STRUCTURE](import-structure.md) \ No newline at end of file +[IMPORT STRUCTURE](import-structure.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1311 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md index 25ea417e7391ec..67639abf7a6959 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **EXPORT SYLK** escreve os dados dos registros da seleção atual de *tabela* no processo atual. Os dados são escritos em *documento*, um documento Sylk Windows ou Macintosh, no disco. @@ -51,4 +48,14 @@ OK toma el valor 1 se a exportação termina com sucesso; do contrário, toma o [EXPORT DIF](export-dif.md) [EXPORT TEXT](export-text.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 85 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md index 249a8f182183b5..69eff019a52258 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando EXPORT TEXT escreve os dados dos registros da seleção atual de *tabela* no processo atual. Os dados são escritos em *documento*, um documento de texto Windows ou Macintosh, no disco. @@ -53,4 +50,14 @@ OK toma o valor 1 se a exportação termina com sucesso; do contrário, toma o v [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 167 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/false.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/false.md index caf1dc5518f8fe..3188bab936be9c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/false.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/false.md @@ -28,4 +28,13 @@ O exemplo atribui a variável *vbOpcoes* Falso: #### Ver também [Not](not.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 215 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md index ef806a41dc791f..a492150bef9d75 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md @@ -48,4 +48,13 @@ Este exemplo mostra um alerta. Este método passa um ponteiro a um campo: [Field](field.md) [Last field number](last-field-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 257 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field.md index 523bb03e1f37e9..d12591e3e5eac9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field.md @@ -60,4 +60,13 @@ No seguinte exemplo, a variável *numCampo* for igual ao número do campo de \[T [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last field number](last-field-number.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 253 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md index 8ca3bf55f83f99..9fb57539a87ce1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FILTER EVENT** deve ser chamado desde o interior do método de gestão de eventos instalado utilizando o comando [ON EVENT CALL](on-event-call.md). @@ -41,4 +38,14 @@ Ver o exemplo do comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL"). #### Ver também -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 321 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md index ea1e6f4ecfccdf..c7bc1333d42a53 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição FILTER KEYSTROKE permite substituir ou caractere introduzido pelo usuário em um campo ou em uma área editável pelo primeiro caractere da string *carFiltro*. @@ -243,3 +240,13 @@ O método ObterTextoSelecionado é o seguinte: [Get edited text](get-edited-text.md) [Is editing text](is-editing-text.md) [Keystroke](keystroke.md) + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 389 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md index b5ed8f61520864..eb672e566dacb8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md @@ -115,4 +115,13 @@ $o1:={a10;b"xyz"} [DELETE FROM ARRAY](delete-from-array.md) [Find in sorted array](find-in-sorted-array.md) [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 230 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md index 776bd625615d19..9720c87ac8a635 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md @@ -61,3 +61,13 @@ Este é um exemplo que permite verificar a existência de um valor: ``` Tenha em conta >= permite cobrir todos os casos. De fato, a função devolve um número de registro e o primeiro registro tem o número 0. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 653 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md index a258b35b1beed3..9056168b6d4627 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Find in list retorna a posição ou referência do primeiro elemento da *lista* que é equivalente à cadeia passada em *valor*. Se são encontrados vários elementos, a função também pode preencher um array *arrayElem* com a posição ou a referência de cada elemento. @@ -64,3 +61,13 @@ Dada a seguinte lista hierárquica:  $vlItemPos:=Find in list(hList;"Fecha";0;*)   //$vlItemPos igual a 0 ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 952 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md index 8462a521647eaa..733ad54efc1343 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md @@ -72,4 +72,13 @@ Você quer encontrar o número de ocorrências das cadeias que começam por "tes [Count in array](count-in-array.md) [Find in array](find-in-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1333 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md index 1e6f3f45a5849d..a237a11a8ec8cc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Find window devolve (se existe) o número de referência da primeira janela “tocada” pelo ponto cujas coordenadas se passam em *esquerda e superior*. @@ -30,4 +27,13 @@ O parâmetro *parteJanela*, devolve 3 se toca a janela, caso contrário 0\. (**N #### Ver também [Frontmost window](frontmost-window.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 449 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md index 7674243a06d621..8aa157062f0048 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md @@ -33,4 +33,14 @@ O exemplo a seguir carrega o primeiro registro da tabela \[Clientes\]: [End selection](end-selection.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 50 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md index 600bcec33bf4df..74635c5b8d7fbd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md @@ -29,4 +29,13 @@ Geralmente não precisa chamar este comando, já que 4D salva modificações de #### Ver também [Get database parameter](get-database-parameter.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 297 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md index c370c5798d1ba0..36636d0bb7b687 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Nota de compatibilidade Este comando só é conservado por razões de compatibilidade. Começa com a versão 12 de 4D, recomenda-se que se use o comando [OBJECT Get pointer](object-get-pointer.md). @@ -47,4 +44,13 @@ O exemplo abaixo é um método de objeto para um botão. O método de objeto mod #### Ver também -[OBJECT Get pointer](object-get-pointer.md) \ No newline at end of file +[OBJECT Get pointer](object-get-pointer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 278 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md index a626762fc1eeeb..087957e0f8e0b8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md @@ -25,4 +25,14 @@ Se não houver pastas na localização especificada, o comando retorna um array #### Ver também [DOCUMENT LIST](document-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 473 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md index 3e75ee9c3f752e..15d8456cf975c4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md @@ -47,4 +47,13 @@ You want to make sure the font used in a text area is available on the user syst #### Ver também -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1700 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md index 8a54c622bd0774..251ee8c9849662 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md @@ -74,4 +74,13 @@ Você quer obter uma lista de fontes recentes: [OBJECT SET FONT](object-set-font.md) [SET RECENT FONTS](set-recent-fonts.md) [ST SET ATTRIBUTES](st-set-attributes.md) -*Tipo de lista das fontes* \ No newline at end of file +*Tipo de lista das fontes* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 460 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md index a2363a3e8f5698..3d00f64836676c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md @@ -57,4 +57,13 @@ Se quiser selecionar estilos da familia de fontes "Verdana" (se estiver disponí #### Ver também -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1362 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md index 5c87de17ad0037..d0eba4cfc93839 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM Convert to dynamic** converte o *nomeFormulario* (formulário clássico) a um formulário dinâmico e o devolve em um objeto. @@ -61,4 +58,13 @@ Se executar o código: #### Ver também [DIALOG](../commands/dialog.md) -[Export structure file](export-structure-file.md) \ No newline at end of file +[Export structure file](export-structure-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1570 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md index 2bc8b5ebe52f21..ef8bd1cbea1c7f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM Get color scheme** retorna o nome do esquema atual de cores do formulário atualmente sendo exibido . Se não houver formulário atual, o comando retorna uma string vazia. @@ -45,4 +42,13 @@ Se quiser carregar uma imagem dependendo do esquema atual do formulário: #### Ver também [Get application color scheme](get-application-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1761 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md index f545ab1d9133ad..3c3c16e66f1d2b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM Get current page** retorna o número da página atual do formulário mostrado atualmente ou do formulário atual carregado via o comando [FORM LOAD](../commands/form-load.md). @@ -69,4 +66,13 @@ Em um formulário, se seleciona um comando de menu da barra de menu ou quando o [FORM GOTO PAGE](form-goto-page.md) [LAST PAGE](last-page.md) [NEXT PAGE](next-page.md) -[PREVIOUS PAGE](previous-page.md) \ No newline at end of file +[PREVIOUS PAGE](previous-page.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 276 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md index d49996bae4b447..cf015d50c94d97 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM GET ENTRY ORDER** devolve em *nomObjetos* os nomes ordenados dos objetos que definem a ordem de entrada do formulario. @@ -53,4 +50,13 @@ Pode excluir certos objetos da ordem de entrada: #### Ver também -[FORM SET ENTRY ORDER](form-set-entry-order.md) \ No newline at end of file +[FORM SET ENTRY ORDER](form-set-entry-order.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1469 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md index 718903559762c7..c5f3b81fa38018 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM GET HORIZONTAL RESIZING retorna as propriedades de redimensionamento horizontal do formulário atual nas variáveis *redimension*, *larguraMin* e *larguraMax*. Estas propriedades podem ser definidas para o formulário no editor de formulários em modo Desenho ou para o proceso atual através do comando [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md "FORM SET HORIZONTAL RESIZING"). #### Ver também -[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) \ No newline at end of file +[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1077 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md index d1e649473ed0d2..e932474749acfb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM GET NAMES** enche o array *arrayNoms* com os nomes dos formulários da aplicação. @@ -67,4 +64,13 @@ Exemplos de usos típicos: #### Ver também *Formulários* -[METHOD GET PATHS FORM](../commands/method-get-paths-form.md) \ No newline at end of file +[METHOD GET PATHS FORM](method-get-paths-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1167 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md index 6686c53f70a2e0..f968b2f8557180 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM GET OBJECTS retorna em forma de array(s) a lista de todos os objetos presentes no formulário atual da tabela atual. Esta lista pode estar restrita à página atual do formulário. O comando pode ser utilizado com os formulários de entrada e de saída. @@ -126,4 +123,13 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list [FORM GET PROPERTIES](form-get-properties.md) *Objetos (Formulários)* -*Objetos de formulário (Acesso)* \ No newline at end of file +*Objetos de formulário (Acesso)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 898 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md index 8df93d24afdca5..1a8fdf70057109 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM GET PROPERTIES retorna as propriedades do formulário *nomForm*. @@ -43,4 +40,13 @@ O parâmetro *título* retorna o título da janela do formulário, tal como foi [FORM GET OBJECTS](form-get-objects.md) [FORM SET SIZE](form-set-size.md) -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 674 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md index 32e540326ef228..2a3f37cab0f59e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM GET VERTICAL RESIZING retorna as propriedades de redimensionamento vertical do formulário atual nas variáveis *redimension*, *alturaMin* e *alturaMax*. Estas propriedades podem ser definidas para o formulário no editor de formulários em modo Desenho ou para o processo atual através do comando [FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md "FORM SET VERTICAL RESIZING"). #### Ver também -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1078 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md index e470e28358d394..923cf3c49e62b3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **FORM GOTO PAGE** modifica a página atual de um formulário para mostrar a página especificada por *numPag*. @@ -50,4 +47,13 @@ O exemplo a seguir é um método de objeto para um botão que mostra uma página [FORM Get current page](form-get-current-page.md) [LAST PAGE](last-page.md) [NEXT PAGE](next-page.md) -[PREVIOUS PAGE](previous-page.md) \ No newline at end of file +[PREVIOUS PAGE](previous-page.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 247 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md index fd1245d8fd5e5f..c3a2d0fa7ad45b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM SCREENSHOT** retorna um formulário em forma de imagem. Este comando aceita duas sintaxes diferentes: em função da sintaxe utilizada, você obtém ou uma imagem do formulário em execução ou uma imagem do formulário no editor de formulários. @@ -38,4 +35,13 @@ Automaticamente, o comando retorna uma captura de tela da página 1 do formulár #### Ver também -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 940 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md index 627b0b4631b692..1e8bb23d41f173 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM SET ENTRY ORDER** permite definir dinâmicamente a ordem de entrada do formulário atual para o processo atual baseado no array *nomObjetos*. @@ -55,4 +52,13 @@ Se quiser definir a ordem de entrada dos objetos no formulário baseado em seus #### Ver também -[FORM GET ENTRY ORDER](form-get-entry-order.md) \ No newline at end of file +[FORM GET ENTRY ORDER](form-get-entry-order.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1468 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md index 1fc86aca8f9990..9777ea35ccb4e2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM SET HORIZONTAL RESIZING permite modificar por programação as propriedades de redimensionamento horizontal do formulário atual. Automaticamente, estas propriedades são definidas no editor de formulários no ambiente Desenho. As novas propriedades são definidas para o processo atual; não são armazenadas com o formulário. @@ -38,4 +35,13 @@ Consulte o exemplo do comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE"). [FORM GET HORIZONTAL RESIZING](form-get-horizontal-resizing.md) [FORM SET SIZE](form-set-size.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 892 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md index 30354d32e544a4..e62531fd59c89e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM SET INPUT define o formulario de entrada atual de *tabela* para *form* ou *userForm*. O formulario deve pertencer a *tabela*. @@ -106,4 +103,13 @@ o que retorna: [MODIFY RECORD](modify-record.md) [MODIFY SELECTION](modify-selection.md) [Open window](open-window.md) -[QUERY BY EXAMPLE](query-by-example.md) \ No newline at end of file +[QUERY BY EXAMPLE](query-by-example.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 55 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md index 59bd5d2e057771..c10a3926f181d8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM SET OUTPUT define o formulário de salida atual de *formulario* ou *formUsuario*. O formulário deve pertencer a *tabela*. @@ -71,4 +68,13 @@ Os exemplos abaixo usam a rota a um formulário json para imprimir os registros [FORM SET INPUT](form-set-input.md) [MODIFY SELECTION](modify-selection.md) [PRINT LABEL](print-label.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 54 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md index 87189d4d8b3321..1259bc2f32b9f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM SET SIZE lhe permite modificar o tamanho do formulário atual por programação. O novo tamanho é definido pelo processo atual; não está armazenado com o formulário. @@ -123,4 +120,13 @@ O método de objeto associado com este botão é o seguinte: #### Ver também [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 891 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md index 334b710e1ff969..fb45feca6a89b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM SET VERTICAL RESIZING lhe permite modificar por programação as propriedades de redimensionamento vertical do formulário atual. Automaticamente estas propriedades são definidas no editor de formulários no ambiente Desenho. As novas propriedades são definidas para o processo atual; não são armazenadas com o formulário. @@ -38,4 +35,13 @@ Consulte o exemplo do comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE"). [FORM GET VERTICAL RESIZING](form-get-vertical-resizing.md) [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET SIZE](form-set-size.md) \ No newline at end of file +[FORM SET SIZE](form-set-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 893 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md index a45cba2e07c992..986a92f6230387 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM UNLOAD** libera da memória o formulário atual designado utilizando o comando [FORM LOAD](../commands/form-load.md). @@ -23,4 +20,13 @@ Chamar este comando é necessário quando se utiliza o comando [FORM LOAD](../co #### Ver também -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1299 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md index b2448f5282baf7..bbc335c68882b8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Frontmost process devolve o número do processo cuja janela (ou janelas) estão no primeiro plano. @@ -35,4 +32,13 @@ Ver o exemplo para [BRING TO FRONT](bring-to-front.md "BRING TO FRONT"). #### Ver também [BRING TO FRONT](bring-to-front.md) -[WINDOW LIST](window-list.md) \ No newline at end of file +[WINDOW LIST](window-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 327 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md index fa016a10ad1273..48e7928c439c50 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Frontmost window devolve o número de referência da janela localizada no primeiro plano. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver também [Frontmost process](frontmost-process.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 447 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md index 26753b6c5ad5a3..c65696ae3d48dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md @@ -85,4 +85,13 @@ Este es o método do botão **Gerar** #### Ver também [GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 691 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md index 1c8831e8d882c9..e9859acd11c372 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md @@ -83,4 +83,13 @@ Esses exemplos ilustram como recuperar a chave digest de um texto: [BASE64 ENCODE](base64-encode.md) [Generate password hash](generate-password-hash.md) *Protocolo de segurança* -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1147 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md index a12b08be2b5801..6f72d468ba13f3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md @@ -51,4 +51,13 @@ Ver o exemplo do comando [ENCRYPT BLOB](encrypt-blob.md). [DECRYPT BLOB](decrypt-blob.md) [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 688 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md index d54ffad108af4c..09f15493d6fe1f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md @@ -66,4 +66,13 @@ Este exemplo gera um hash de senha utilizando bcrypt com um fator de custo 4. [Generate digest](generate-digest.md) -[Verify password hash ](verify-password-hash.md) \ No newline at end of file +[Verify password hash ](verify-password-hash.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1533 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md index 9d8f734fa7a3b0..f51bd6ef7fe365 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-uuid.md @@ -29,3 +29,13 @@ Geração de um UUID em uma variável:  var MyUUID : Text  MyUUID:=Generate UUID ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1066 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md index 9aba3798011a58..fca3daa6d71df0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md @@ -68,4 +68,13 @@ Se quiser obter a rota do último arquivo de backup: #### Ver também -[File](file.md) \ No newline at end of file +[File](file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1418 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md index d21f320ef74248..953b4971f5c8ef 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md @@ -53,8 +53,9 @@ Aplicações em ambiente 4D usar a pasta específica para armazenar as seguintes Com as principais aplicações 4D (4D e 4D Server), a pasta 4D ativa chamada **4D** e está localizada por padrão no seguinte local: -* No Windows 7 e seguintes: *{Disco}:\\Usuarios\\* *<* *nomeUsuario\>\\AppData\\Roaming\\* ** -* No OS X: *{Disco}:Usuarios:* *<* *nomeUsuario* *\>:Library:Application Support:<* *nomeBanco* *\>* +* Windows: *{Disk}:\\Users\\{userName}\\AppData\\Roaming\\{applicationName}* +* macOS: *{Disk}:Users:{userName}:Library:Application Support:{applicationName}* + ##### Pasta Licenças @@ -210,4 +211,14 @@ Se o parâmetro *pasta* não é válido ou se o endereço de acesso retornado é [System folder](system-folder.md) [Temporary folder](temporary-folder.md) [Test path name](test-path-name.md) -[WEB SET ROOT FOLDER](web-set-root-folder.md) \ No newline at end of file +[WEB SET ROOT FOLDER](web-set-root-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 485 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md index f9aa7e2ea6d1f9..192fb55f6d78d1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) *Gerenciar prioridades em cache de banco de dados* -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1428 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md index 39aec83b7f68e9..d33672f3150cd9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) *Gerenciar prioridades em cache de banco de dados* -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1427 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md index 7667773a14adda..6bf5252c6463ce 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md @@ -26,4 +26,13 @@ Os tipos de campos de dados escalares incluem campos de tipo data/hora, numéric [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) *Gerenciar prioridades em cache de banco de dados* -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1426 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md index 47387e66f6cd0a..7a6e9c32143f16 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET ALLOWED METHODS retorna, em *arrMetodos*, os nomes dos métodos que possam ser utilizados para escrever fórmulas. Estes métodos estão listados ao final da lista de comandos no editor. @@ -45,4 +42,13 @@ Este exemplo autoriza um conjunto de métodos específicos para criar um relató #### Ver também -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 908 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md index ceb3beb8941271..a6ac783c53920d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Get application color scheme** retorna o nome do esquema de cor atual para uso ao nível da aplicação. @@ -45,4 +42,13 @@ Veja a descrição do comando [SET APPLICATION COLOR SCHEME](set-application-col #### Ver também [FORM Get color scheme](form-get-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1763 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md index 201f4f0631ceb6..c2f1a9cde637d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md @@ -23,4 +23,13 @@ Automaticamente, as asserções estão ativas mas é possível desativá-las uti [ASSERT](assert.md) [Asserted](asserted.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1130 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md index fb939979564e2a..9afc11e9aa63eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md @@ -31,4 +31,13 @@ Consulte o exemplo do comando [GET FIELD RELATION](get-field-relation.md "GET FI [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 899 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md index e67246bf0a37ae..7acdd083bd1c0e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descrição -O comando **Get cache size** devolve, em bytes, o tamanho atual da cache do banco de dados. - -**Nota:** este comando só funciona em modo local (4D Server e 4D); não deve ser utilizado com 4D em modo remoto. +O comando **Get cache size** devolve, em bytes, o tamanho atual da cache do banco de dados.este comando só funciona em modo local (4D Server e 4D); não deve ser utilizado com 4D em modo remoto. #### Exemplo @@ -25,4 +23,13 @@ Ver exemplo de comando [SET CACHE SIZE](set-cache-size.md). #### Ver também -[SET CACHE SIZE](set-cache-size.md) \ No newline at end of file +[SET CACHE SIZE](set-cache-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1432 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md index 0d6890c863b710..447cbc9761d7f3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get current printer devolve o nome da impressora atual definida na aplicação 4D. Como padrão, ao iniciar 4D, a impressora atual é a impressora definida no sistema. @@ -33,4 +30,13 @@ Se não tiver uma impressora instalada, um erro é gerado #### Ver também [PRINTERS LIST](printers-list.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 788 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md index 6060e19290c47a..99f904495c72f7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md @@ -51,4 +51,13 @@ O idioma atual do banco de dados pode ser usada para determinar a pasta. lproj o #### Ver também [Localized document path](localized-document-path.md) -[SET DATABASE LOCALIZATION](set-database-localization.md) \ No newline at end of file +[SET DATABASE LOCALIZATION](set-database-localization.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1009 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md index 23902c45067e10..0e9f59180eabb5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Get database parameter** permite obter o valor atual de um parâmetro do banco 4D. Quando o valor do parâmetro é uma cadeia de caracteres, é retornado o o parâmetro *valorAlfa*. @@ -134,4 +131,13 @@ Em [Método banco de dados On Startup](metodo-banco-de-dados-on-startup.md), pod [DISTINCT VALUES](distinct-values.md) [Application info](application-info.md) [QUERY SELECTION](query-selection.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 643 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md index 8e5255eeee3acf..3d34923c2c8c74 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get default user retorna o número de referência único do usuário designado como “Usuário por padrão” na caixa de diálogo de Preferências do banco: @@ -24,3 +21,13 @@ displayed_sidebar: docs Se nenhum usuário por padrão estiver definido, o comando retorna 0. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 826 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md index befaaec24e6ed7..b6f911013bbeaf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md @@ -26,3 +26,14 @@ Se passa uma string vazia em *rotaDoc*, aparece a caixa de diálogo padrão de a Passe em *ícone* um campo ou uma variável imagem 4D. Depois da execução do comando, este parâmetro contém o ícone do arquivo (formato PICT). O parâmetro opcional *tamanho* permite indicar as dimensões em píxels do ícone. Este valor representa o comprimento do quadrado incluindo o ícone. Geralmente, os ícones são definidos de 32x32 píxels (“ícones longos”) ou 16x16 píxels (“ícones pequenos”). Se passa 0 ou omite este parâmetro, o comando retorna o ícone mais grande disponível. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 700 | +| Thread-seguro | ✓ | +| Modificar variáveis | Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md index 79c40e1f7c3a96..fe1f65f5e67d5a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md @@ -24,4 +24,13 @@ Get document position devolve a posição, a partir do início do documento, ond [RECEIVE PACKET](receive-packet.md) [SEND PACKET](send-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 481 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md index 2271a553eb749b..a2026749c9a10f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md @@ -209,4 +209,14 @@ Quando esse método tiver sido implementado no banco de dados, nóste mos todo o #### Ver também -[SET DOCUMENT PROPERTIES](set-document-properties.md) \ No newline at end of file +[SET DOCUMENT PROPERTIES](set-document-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 477 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md index 0b6d7a4f01eadb..0ad0324364a6f7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md @@ -28,4 +28,14 @@ Em Macintosh, se não passa o parâmetro opcional *\**, se retorna o tamanho do [Get document position](get-document-position.md) [SET DOCUMENT POSITION](set-document-position.md) -[SET DOCUMENT SIZE](set-document-size.md) \ No newline at end of file +[SET DOCUMENT SIZE](set-document-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 479 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md index 3a3f334f6696e8..89af497008b2d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get edited text é utilizado principalmente com o evento de formulário On After Keystroke para recuperar o texto a medida em que é introduzido. Também pode ser utilizado com o evento de formulário On Before Keystroke. Para maior informação sobre estes eventos de formulário, por favor consulte a descrição do comando [Form event code](../commands/form-event-code.md). @@ -68,4 +65,13 @@ End if #### Ver também [Form event code](../commands/form-event-code.md) -[Is editing text](is-editing-text.md) \ No newline at end of file +[Is editing text](is-editing-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 655 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md index 4c6d4387866bee..a215e61112428e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md @@ -30,4 +30,13 @@ Este comando devolve uma cadeia vazia nos seguintes casos: #### Ver também -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1133 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md index 09a362fd4e1555..d877976521d3e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET FIELD ENTRY PROPERTIES retorna as propriedades de entrada de dados para o campo especificado por *numTabela* e *numCampo* ou por *pontCampo*. @@ -43,4 +40,13 @@ Se nenhuma lista estiver associada ao campo ou se o tipo do campo não permitir [GET FIELD PROPERTIES](get-field-properties.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[GET TABLE PROPERTIES](get-table-properties.md) \ No newline at end of file +[GET TABLE PROPERTIES](get-table-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 685 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md index cec827f19d2dc6..965c10b2671add 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md @@ -72,4 +72,13 @@ Este exemplo recupera nas variáveis *vTipo*, *vTamanho*, *vIndice*, *vUnico* e [Field](field.md) [Field name](field-name.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 258 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md index c3d1f0706ae4a5..be28c994e7267a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md @@ -91,4 +91,13 @@ O código a seguir ilustra as diferentes possibilidades oferecidas pelos comando [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET RELATION PROPERTIES](get-relation-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 920 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md index d7a49055230078..6fb84100bf1d85 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET FIELD TITLES preenche os arrays *titulosCampos* e *numCampos* com os nomes e os números dos campos da *Tabela*. Os conteúdos desses dois arrays estão sincronizados. @@ -31,4 +28,13 @@ Em ambos casos, o comando não retorna campos invisíveis. #### Ver também [GET TABLE TITLES](get-table-titles.md) -[SET FIELD TITLES](set-field-titles.md) \ No newline at end of file +[SET FIELD TITLES](set-field-titles.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 804 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md index 32a8a68f8690c7..a2c175974d2672 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get file from pasteboard devolve a rota de acesso absoluto de um arquivo incluído em uma operação de arrastar e soltar. Vários arquivos podem ser selecionados e movidos simultâneamente. O parâmetro *indiceN* são utilizados para designar um arquivo entre um conjunto de arquivos selecionados. @@ -43,4 +40,13 @@ O exemplo a seguir pode ser utilizado para recuperar em um array todas as rotas #### Ver também -[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) \ No newline at end of file +[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 976 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md index 837ef4df0b45e3..f993cd1869281e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md @@ -34,4 +34,13 @@ Se qusier verificar se o usuário atual pertence ao grupo "plugins": #### Ver também -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1738 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md index 29d9b6549b0456..e5e133b1b12cc0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GET GROUP LIST preenche os arrays *nomGrupos e numGrupos* com os nomes e os números de referência únicos dos grupos tais como aparecem no editor de senhas. @@ -34,4 +31,14 @@ Se não tiver privilégios de acesso para chamar ao comando GET GROUP LIST ou se [GET GROUP PROPERTIES](get-group-properties.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 610 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md index 11aafdf840bcd1..345705ba9c7b69 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GET GROUP PROPERTIES retorna as propriedades do grupo cujo número de referência único de ID de grupo pode passar em *GrupoID*. Deve passar o número de referência do grupo retornado pelo comando [GET GROUP LIST](get-group-list.md). @@ -41,4 +38,14 @@ Se não tiver privilégios de acesso para chamar ao comando GET GROUP PROPERTIES [GET GROUP LIST](get-group-list.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 613 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md index 182cb720646607..b8357b7091795d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET HIGHLIGHT permite determinar o texto selecionado atualmente em *objeto*. @@ -64,4 +61,13 @@ Modificação do estilo do texto ressaltado: [FILTER KEYSTROKE](filter-keystroke.md) [HIGHLIGHT TEXT](highlight-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 209 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md index 005b2c4f30148e..f7014c87bad8db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET HIGHLIGHTED RECORDS guarda, no conjunto designado pelo parâmetro *nomConjunto,* os registros selecionados (ou seja, os registros selecionados pelo usuário no formulário listado) da *tabela* passada como parâmetro. Se o parâmetro *tabela* for omitido, é utilizada a tabela do formulário ou do subformulário atual. @@ -45,4 +42,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 #### Ver também -[HIGHLIGHT RECORDS](highlight-records.md) \ No newline at end of file +[HIGHLIGHT RECORDS](highlight-records.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 902 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md index 29d584d634bc12..d6ced947466e24 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get indexed string devolve: @@ -40,4 +37,14 @@ Se o recurso for encontrado, OK toma o valor 1, do contrário assume o valor 0 ( [Get string resource](get-string-resource.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 510 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md index 4faf0132588ff3..18c623b7e80506 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-last-update-log-path.md @@ -24,4 +24,13 @@ Este comando está destinado a ser utilizado em um processo de atualização aut #### Ver também [RESTART 4D](restart-4d.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1301 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md index 0ea2f408eb20cf..1c79243568dbd4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get list item font retorna o nome da fonte do caractere atual do elemento especificado pelo parâmetro *RefElem* da lista cujo número de referência o nome de objeto se passa em *lista*. @@ -33,4 +30,13 @@ Finalmente, pode passar \* em *refElem*: neste caso, o comando se aplicará ao e #### Ver também -[SET LIST ITEM FONT](set-list-item-font.md) \ No newline at end of file +[SET LIST ITEM FONT](set-list-item-font.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 954 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md index 27ce8ad90bfe99..30797f93f24f0a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET LIST ITEM ICON retorna, em *ícone*, o ícone associado ao elemento cujo número de referencia se passa em *refElem* da lista cujo número de referencia o nome de objeto passa em *lista*. @@ -40,4 +37,13 @@ Se nenhum ícone está associado ao elemento, a variável ícone seja retornada #### Ver também [GET LIST ITEM PROPERTIES](get-list-item-properties.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 951 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md index fbd6c6ccb19bea..85f6e23dd165f5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **GET LIST ITEM PARAMETER ARRAYS** permite recuperar somente em uma chamada o conjunto dos parâmetros (também como, opcionalmente, seus valores) associados ao elemento *refElemento* da lista hierárquica cuja referencia ou nome de objeto se passou no parâmetro *lista*. @@ -77,4 +74,13 @@ Caso também queiras obter os valores dos parâmetros, escreva: #### Ver também -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1195 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md index 50867bc8da3c5d..f21c9bfaaec489 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comandoGET LIST ITEM PARAMETER retorna o nome da fonte do caractere atual do elemento especificado pelo parâmetro *refElem* da lista cujo número de referência o nome de objeto se passa em *lista*. @@ -37,4 +34,13 @@ Em *seletor*, pode passar a constante Additional text ou a constante de ação p #### Ver também *Listas hierárquicas* -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 985 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md index edcb8403632285..aa747e853be658 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **GET LIST ITEM PROPERTIES** retorna o nome da fonte do caractere atual do elemento especificado pelo parâmetro *refElem* da lista cujo número de referência o nome de objeto se passa em *lista*. @@ -53,4 +50,13 @@ Para maior informação sobre estas propriedades, consulte a descrição do coma [GET LIST ITEM](get-list-item.md) [GET LIST ITEM ICON](get-list-item-icon.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 631 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md index 50883846e06565..43dd3dfda9f015 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET LIST ITEM retorna a informação sobre o elemento especificado por *posiçaoElem* da lista cujo número de referencia ou nome de objeto se passa em *lista*. @@ -67,4 +64,13 @@ Consulte o exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST [List item position](list-item-position.md) [Selected list items](selected-list-items.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 378 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md index d03a47f171aa85..5d990de25bd1df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET LIST PROPERTIES retorna informação sobre a lista cujo número de referência se passa em *lista*. @@ -39,4 +36,13 @@ Para uma completa descrição da aparência, ícones de knots, altura de linha m #### Ver também -[SET LIST PROPERTIES](set-list-properties.md) \ No newline at end of file +[SET LIST PROPERTIES](set-list-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 632 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md index 0e7d70c1c15126..074f9f6e569a7d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET MACRO PARAMETER retorna, no parâmetro *paramText*, uma parte ou a totalidade do texto do método desde o qual é chamado. @@ -37,4 +34,13 @@ Consulte o exemplo do comando [SET MACRO PARAMETER](set-macro-parameter.md "SET #### Ver também -[SET MACRO PARAMETER](set-macro-parameter.md) \ No newline at end of file +[SET MACRO PARAMETER](set-macro-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 997 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md index 52fee4a3bcfb88..2c242c03e3f207 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Get menu bar reference** devolve a identificação única da barra de menus atual ou da barra de menus de um processo específico. @@ -41,4 +38,13 @@ Consulte o exemplo do comando [GET MENU ITEMS](get-menu-items.md "GET MENU ITEMS #### Ver também -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 979 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md index 500f6daf05da6b..af8b64103ee0fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET MENU ITEM ICON devolve, na variável *refIcone*, a referencia do ícone associado a linha de menu designada pelos parâmetros *menu* e *menuItem*. Esta referência é o nome ou número da imagem na biblioteca de imagens. @@ -35,4 +32,13 @@ Se nenhum ícone está associado a linha de menu, o comando devolve uma imagem v #### Ver também -[SET MENU ITEM ICON](set-menu-item-icon.md) \ No newline at end of file +[SET MENU ITEM ICON](set-menu-item-icon.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 983 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md index f78091b4fa8bdf..effde0a5395849 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item key devolve o código do atalho **Ctrl** (Windows) ou **Comando** (Mac OS) para o comando de menu cujo número ou referência de menu se passa em *menu* e cujo número de comando se passa em *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu.* @@ -49,4 +46,14 @@ Para obter um atalho associado com um comando de menu, é útil implementar uma #### Ver também [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 424 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md index fe92a7d8c78518..dce29c94d5d726 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item mark devolve a marca da linha de menu cujo número ou referência de menu e número de linha se passam em *menu* e *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu.* @@ -41,4 +38,14 @@ O exemplo a seguir exemplo inverte a marca de uma linha de menu: #### Ver também -[SET MENU ITEM MARK](set-menu-item-mark.md) \ No newline at end of file +[SET MENU ITEM MARK](set-menu-item-mark.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 428 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md index f8a5e5fdabe47b..dfc607bcbe212b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item method devolve o nome do método de projeto 4D associado a linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -31,4 +28,13 @@ O comando devolve o nome do método 4D como uma cadeia de caracteres (expressão #### Ver também -[SET MENU ITEM METHOD](set-menu-item-method.md) \ No newline at end of file +[SET MENU ITEM METHOD](set-menu-item-method.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 981 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md index e3f14f099843c9..343937e1b517df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item modifiers devolve os modificadores adicionais associados aos atalhos de teclado padrão da linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -53,4 +50,13 @@ Consulte o exemplo do comando [Get menu item key](get-menu-item-key.md "Get menu #### Ver também [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 980 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md index 22044fdf372010..73de5b1a1140a6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item parameter devolve a cadeia de caracteres personalizada associada a linha de menu designada pelos parâmetros *menu* e *menuItem*. Esta cadeia deve ter sido definida previamente utilizando o comando [SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER"). @@ -26,4 +23,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get selected menu item parameter](get-selected-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1003 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md index 29281ddddf6247..2830c39db7f1ac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comandoGET MENU ITEM PROPERTY devolve, no parâmetro *valor*, o valor atual da linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -34,4 +31,13 @@ Nota de compatibilidade: Como padrão, se o valor da variável não for digitado #### Ver também -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 972 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md index 2e914897fbfd62..adae1c67cc7119 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item style devolve o estilo de fonte da linha de menu cujo número ou referência se passa em *menu* e cujo número de elemento é passado em *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu.* @@ -48,4 +45,14 @@ Para provar se um elemento de menu é mostrado em negrito, escreve: #### Ver também -[SET MENU ITEM STYLE](set-menu-item-style.md) \ No newline at end of file +[SET MENU ITEM STYLE](set-menu-item-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 426 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md index e45e5fe7f80987..ba68e4bc880703 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item devolve o texto do comando de menu cujos números de menu e de comando são passados em *menu* e *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu*. @@ -30,4 +27,14 @@ Se omite o parâmetro *processo*, Get menu item é aplicado a barra de menus do #### Ver também [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM](set-menu-item.md) \ No newline at end of file +[SET MENU ITEM](set-menu-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 422 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md index 6f0e944f3d7997..f45bfeef1f030b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET MENU ITEMS devolve, nos arrays *arrayTitMenus* e *arraysRefMenus*, os títulos e identificadores de todas as linhas de menu ou da barra de menus designada pelo parâmetro *menu*. @@ -36,3 +33,13 @@ Imagine que queira conhecer o conteúdo da barra de menu do processo atual:  RefBarMenu:=Get menu bar reference(Frontmost process)  GET MENU ITEMS(RefBarMenu;arrayTitMenus;arraysRefMenus) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 977 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md index b7024252f8602b..9271370ac1c4ee 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu title devolve o título do menu cujo número ou referência é passada em *menu.* @@ -28,4 +25,14 @@ Se omite o parâmetro *processo*, Get menu title é aplicado à barra de menus d #### Ver também -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 430 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md index cb8c874788f4ca..99626aefef6145 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md @@ -31,4 +31,13 @@ Quando tiver identificado as tabelas faltantes do banco, pode reativá-las atrav #### Ver também -[REGENERATE MISSING TABLE](regenerate-missing-table.md) \ No newline at end of file +[REGENERATE MISSING TABLE](regenerate-missing-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1125 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md index c571b8a4a10349..2bd8b3b971d33d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PASTEBOARD DATA TYPE permite obter a lista dos tipos de dados presentes na área de transferência. Este comando geralmente deve ser utilizado no contexto de uma operação arrastar e soltar, nos eventos de formulário On Drop ou On Drag Over do objeto de destino. Mais particularmente, permite verificar a presença de um tipo de dados específico na área de transferência. @@ -39,4 +36,13 @@ Para maior informação sobre os tipos de dados suportados, consulte a seção * #### Ver também -*Gerenciar área de transferência* \ No newline at end of file +*Gerenciar área de transferência* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 958 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md index 9e66fdee31116c..d46d07d34a8cd0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PASTEBOARD DATA devolve no campo ou variável de tipo BLOB ou na variável *dados*, os dados que se encontram na área de transferência e cujo tipo se passa em *tipoDados*.(Se a cópia contiver texto copiado dentro de 4D, então o conjunto de caracteres do BLOB é provavelmente UTF-16) @@ -55,4 +52,14 @@ Se os dados são extraídos corretamente, a variável OK toma o valor 1; do cont [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 401 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md index 94a345f842b284..4a036a4914945c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md @@ -24,4 +24,13 @@ Se a imagem nao tiver um nome por defeito, o comando devolve uma cadeia vazia. #### Ver também -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1171 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md index 89d920cae2e679..1cec3d3197241c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md @@ -47,4 +47,13 @@ Se quiser saber os formatos de imagem armazenados em um campo para o registro at #### Ver também - \ No newline at end of file + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1406 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md index 022030a7599e40..5490972365621e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PICTURE FROM LIBRARY devolve no parâmetro *imagem* a imagem da biblioteca de imagens cujo número de referência se passa em *refImag* ou cujo nome se passa em *nomImag*. @@ -55,4 +52,14 @@ Se não houver suficiente memória para devolver a imagem, se gera o erro -108\. [PICTURE LIBRARY LIST](picture-library-list.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 565 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md index 9abebcb3159a47..53c9a0a3d1dee3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GET PICTURE FROM PASTEBOARD devolve a imagem presente na área de transferência no campo ou variável imagem *imagem*. @@ -42,4 +39,14 @@ Se a imagem for extraída corretamente, OK toma o valor 1; do contrário OK toma [GET PASTEBOARD DATA](get-pasteboard-data.md) [Get text from pasteboard](get-text-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 522 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md index 39f49395329638..bd3c5a18d34a81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md @@ -32,4 +32,13 @@ Caso a imagem não contém palavras-chaves ou metadados IPTC/Keywords, o comando #### Ver também [GET PICTURE METADATA](get-picture-metadata.md) -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1142 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md index 293b99d6f3ee43..04e2369f630125 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md @@ -99,4 +99,14 @@ La variable sistema *OK* devolve 1 se a recuperación dos metadados es correta e [GET PICTURE KEYWORDS](get-picture-keywords.md) *Picture Metadata Names* *Picture Metadata Values* -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1122 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md index 117518763b06b5..b264b34c511ce4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PICTURE RESOURCE retorna no campo ou na variável *resDados* a imagem guardada no recurso imagem (“PICT”) cujo número se passa em *resNum*. @@ -43,4 +40,14 @@ Se não houver memória suficiente para carregar a imagem, um erro é gerado. Po #### Ver também -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 502 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md index a2155febe7ad4a..ddbcbf92b3c29b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get plugin access retorna o nome do grupo de usuários autorizados a utilizar o *plug-in* cujo número se passa no parâmetro *plugIn*. Se nenhum grupo estiver associado ao plug-in, o comando retorna uma cadeia vazia (""). @@ -35,4 +32,13 @@ Passe no parâmetro *plugIn* o número do plug-in do que deseja conhecer o grupo #### Ver também [SET GROUP ACCESS](set-group-access.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 846 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md index 99eb5266e76270..63feca5a36499d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md @@ -49,4 +49,13 @@ Usando ponteiros para elementos de arrays bi-dimensionais: #### Ver também [Field](field.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 304 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md index 416c54c8c75d4a..6514ec1e0e302c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get print marker permite obter a posição atual de um marcador durante uma impressão. @@ -62,4 +59,13 @@ Consulte o exemplo do comando [SET PRINT MARKER](set-print-marker.md). #### Ver também [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 708 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md index ee6b28a559a1d9..d83d75aef82ada 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **GET PRINT OPTION** devolve os valores atuais de uma opção de impressão. @@ -51,4 +48,14 @@ A variável sistema OK toma o valor 1 se o comando tiver sido executado corretam #### Ver também [PRINT OPTION VALUES](print-option-values.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 734 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md index 3793755dfdecb4..42a2d9d2e8bd73 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Get print preview** devolve True se o comando [SET PRINT PREVIEW](set-print-preview.md) foi chamado com o valor **True** no processo atual. @@ -25,4 +22,13 @@ Note que o usuário pode modificar esta opção antes de validar a caixa de diá #### Ver também [Is in print preview](is-in-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1197 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md index 8a9fb3e0159997..944b3eb12037e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PRINTABLE AREA devolve o tamanho em píxels da área de impressão nos parâmetros *altura* e *largura* ou tamanho. Este tamanho depende dos parâmetros de impressão atuais, a orientação do papel, etc. @@ -40,4 +37,13 @@ Para saber o tamanho total da página, pode: #### Ver também [GET PRINTABLE MARGIN](get-printable-margin.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 703 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md index 9bacf819cfef62..20f35933ebb844 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PRINTABLE MARGIN devolve os valores atuais das diferentes margens definidas utilizando o comando [Print form](../commands/print-form.md) [PRINT SELECTION](print-selection.md) e [PRINT RECORD](print-record.md).. @@ -45,4 +42,13 @@ Por padrão, em 4D o cálculo das impressões é realizada baseada nas “margen [GET PRINTABLE AREA](get-printable-area.md) [Print form](../commands/print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 711 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md index 9d4e7ff651a93d..9e26d1083f08ef 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get printed height devolve a altura global (em píxels) da seção impressa pelo comando [Print form](../commands/print-form.md). @@ -32,4 +29,13 @@ As margens de impressão direita e esquerda não influem no valor devolvido, dif [GET PRINTABLE AREA](get-printable-area.md) [Print form](../commands/print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 702 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md index 9707fed1729dcd..d1add50e0a2509 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PROCESS VARIABLE lê o valor de as variáveis processo *srcVar* (*srvVar2*, etc.) desde o processo fonte cujo número se passa em *processo* e devolve seus valores atuais nas variáveis *dstVar* (*dstVar2*, etc.) do processo atual. @@ -119,4 +116,13 @@ Ver o exemplo do comando DRAG AND DROP PROPERTIES. [POST OUTSIDE CALL](post-outside-call.md) *Processos* [SET PROCESS VARIABLE](set-process-variable.md) -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 371 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md index 64a223f3c67d83..1c65bd49199b1c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md @@ -55,4 +55,13 @@ Queremos modificar temporariamente o destino de pesquisa e restabelecer os parâ #### Ver também -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1155 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md index 561249d9079639..46c327ab62610d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md @@ -23,4 +23,13 @@ Por defeito, caso nenhum limite tenha sido definido, o comando devolve 0. #### Ver também -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1156 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md index 556bc379c78b26..79a2cdd30fc738 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET REGISTERED CLIENTS preenche dois arrays: @@ -48,4 +45,14 @@ Consulte o exemplo do comando [REGISTER CLIENT](register-client.md). [EXECUTE ON CLIENT](execute-on-client.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 650 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md index c8fe47581cc4cb..50dcb2170fa877 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md @@ -40,4 +40,13 @@ Quando o comando tiver sido executado: [GET FIELD PROPERTIES](get-field-properties.md) [GET TABLE PROPERTIES](get-table-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 686 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md index e83b150ccf79de..df1a7276062772 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get resource name retorna o nome do recurso cujo tipo se passa em *resTipo* e cujo número de referência (ID) em *resNum*. @@ -26,3 +23,13 @@ displayed_sidebar: docs Se passa um número de referência de arquivo de recursos no parâmetro *resArquivo*, o recurso é pesquisado apenas nesse arquivo. Se não passa *resArquivo*, o arquivo é pesquisado nos arquivos de recursos que estão abertos. Se o recurso não existir, Get resource name retorna uma cadeia vazia. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 513 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md index b5a15654cb268f..8ca1824d1048b8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Get resource properties** retorna os atributos do recurso cujo tipo se passa em *resTipo* e cujo número de identificação se passa em *resNum*. @@ -36,3 +33,14 @@ Ver o exemplo do comando [Get resource name](get-resource-name.md). #### Variáveis e conjuntos do sistema A variável sistema OK toma o valor 0 se o recurso não existir, do contrário assume o valor 1\. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 515 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md index fedd18d26f3395..87845622756d6c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição o comando GET RESOURCE retorna no campo o a variável BLOB *resDados* o conteúdo do recurso cujo tipo e número se passa em *resTipo* e *resNum*. @@ -50,4 +47,14 @@ Se não houver memória suficiente para carregar a imagem, um erro é gerado. Po #### Ver também -*Recursos* \ No newline at end of file +*Recursos* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 508 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md index c4d85347b04e66..758b658591ebf6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get selected menu item parameter devolve a cadeia de caracteres personalizada associada a linha de menu selecionada. Este parâmetro deve ter sido definido antecipadamente utilizando o comando [SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER"). @@ -27,4 +24,13 @@ Se nenhuma linha de menu for selecionada, o comando retorna uma cadeia vazia"". [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1005 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md index 22fa615329971e..29be9e89119dfc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md @@ -48,4 +48,13 @@ Este método de projeto pode ser usado para tratar a mesma porta serial (sem pro #### Ver também -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 909 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md index 59b77092dc212f..a9104782b92b97 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição o comando Get string resource retorna a string armazenada no recurso string (“STR ”) cujo número de referência se passa em *resNum*. @@ -44,4 +41,14 @@ A variável sistema OK toma o valor 1 se for encontrado o recurso, do contrário [Get indexed string](get-indexed-string.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 506 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md index e2bd67ba76fca7..fc32fcc3f090e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **GET STYLE SHEET INFO** devolve a configuração atual da folha de estilo *nomeFolhaEstilo* . @@ -66,4 +63,14 @@ Se quiser conhecer a configuração atual da folha de estilo "Automatic" #### Ver também [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1256 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md index e12a94f1a1c9a3..0dc81fc9caa8fe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -El comando [Get subrecord key](get-subrecord-key.md) facilita la migración del código 4D utilizando subtablas convertidas al código estándar de manipulación de tablas. - -**Recordatorio:** a partir de la versión 11 de 4D, no se soportan subtablas. Cuando se convierte una base antigua, las subtablas existentes se transforman automáticamente en tablas estándar relacionadas con las tablas originales por una relación automática. La subtabla anterior se convierte en la tabla Muchos y la tabla original es la tabla Uno. En la tabla Uno, el campo subtabla anterior se transforma en un campo especial de tipo "Relación subtabla" y en la tabla Muchos, se añade un campo especial, de tipo "Relación subtabla", llamado "id\_anadido\_por\_convertidor". +El comando [Get subrecord key](get-subrecord-key.md) facilita la migración del código 4D utilizando subtablas convertidas al código estándar de manipulación de tablas.a partir de la versión 11 de 4D, no se soportan subtablas. Cuando se convierte una base antigua, las subtablas existentes se transforman automáticamente en tablas estándar relacionadas con las tablas originales por una relación automática. La subtabla anterior se convierte en la tabla Muchos y la tabla original es la tabla Uno. En la tabla Uno, el campo subtabla anterior se transforma en un campo especial de tipo "Relación subtabla" y en la tabla Muchos, se añade un campo especial, de tipo "Relación subtabla", llamado "id\_anadido\_por\_convertidor". Esto permite preservar el funcionamiento de bases de datos convertidas, pero le recomendamos que sustituya los mecanismos de subtablas en sus bases por los que se utilizan para las tablas estándar. @@ -80,3 +78,13 @@ Por ejemplo, con la estructura anterior puede escribir: ``` Este código funcionará tanto con una relación especial como con una estándar. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1137 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md index 1be18acc458e89..92f4f87017f98b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md @@ -41,4 +41,13 @@ No parâmetro *formato*, passe o tipo do parâmetro do qual queira conhecer o va #### Ver também -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 994 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md index 17a12c5e943d35..c5477e412e3177 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md @@ -33,4 +33,13 @@ Una vez executado o comando: [GET FIELD ENTRY PROPERTIES](get-field-entry-properties.md) [GET FIELD PROPERTIES](get-field-properties.md) -[GET RELATION PROPERTIES](get-relation-properties.md) \ No newline at end of file +[GET RELATION PROPERTIES](get-relation-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 687 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md index 45bff622666554..ac2a8bf59003e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET TABLE TITLES preenche os arrays *tituloTabelas* e *numTabelas* com os nomes e números das tabelas da banco definidas na janela de estrutura ou através do comando [SET TABLE TITLES](set-table-titles.md). O conteúdo desses dois arrays está sincronizado. @@ -30,4 +27,13 @@ Em ambos os casos, o comando não retorna as tabelas invisíveis. #### Ver também [GET FIELD TITLES](get-field-titles.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 803 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md index 71d39f537e3b6b..e42eec79fe23e6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Get text from pasteboard devolve o texto na área de transferência. @@ -34,4 +31,14 @@ Se o texto for extraído corretamente, OK toma o valor 1; do contrário OK toma [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 524 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md index 338fed22c5df1e..7d28ef77223429 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md @@ -82,4 +82,13 @@ Para contar as palavras de um texto: #### Ver também -[DISTINCT VALUES](distinct-values.md) \ No newline at end of file +[DISTINCT VALUES](distinct-values.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1141 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md index 0272b008f686af..08863cc28570fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get text resource retorna o texto guardado no recurso texto (“TEXT”) cujo número de identificação é passado em *resNum*. @@ -44,4 +41,14 @@ Se o recurso for encontrado, OK assume o valor 1\. Do contrário, assume o valor [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 504 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md index b3026b0cd86232..26f9d3df9fe7a6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GET USER LIST preenche os arrays *nomUsuario* e *numUsuario* com os nomes e os números de referência únicos dos usuários tais como aparecem na janela de senhas. @@ -37,4 +34,14 @@ Se não tiver privilégios de acesso para chamar ao comando GET USER LIST ou se [GET GROUP LIST](get-group-list.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 609 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md index c19445ca29a6fe..b8380c018c2602 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GET USER PROPERTIES retorna a informação sobre o usuário cujo número de referência se passa no parâmetro *refUsuario*. Deve passar um número de referência de usuário retornado pelo comando [GET USER LIST](get-user-list.md). @@ -56,4 +53,14 @@ Se não tiver privilégios de acesso para chamar ao comando GET USER PROPERTIES [GET USER LIST](get-user-list.md) [Is user deleted](is-user-deleted.md) [Set user properties](set-user-properties.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 611 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md index 95016d463436cf..cc424940c294a7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET WINDOW RECT devolve as coordenadas globais da janela cujo número de referência se passa em janela. Se a janela não existir, as variáveis dos parâmetros não modificam. @@ -37,4 +34,13 @@ Ver o exemplo do comando [WINDOW LIST](window-list.md).. #### Ver também [CONVERT COORDINATES](convert-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 443 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md index ca089c4a33bc4a..4cec7fe6871ffb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get window title devolve o título da janela cujo número de referência se passa em *janela*. Se a janela não existir, se devolve uma cadeia vazia. @@ -29,4 +26,13 @@ Ver exemplo do comando [SET WINDOW TITLE](set-window-title.md). #### Ver também -[SET WINDOW TITLE](set-window-title.md) \ No newline at end of file +[SET WINDOW TITLE](set-window-title.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 450 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md index fcbdcb5b7f44e8..f1309623155934 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GOTO OBJECT é utilizado para selecionar o objeto editável *objeto* como a área ativa do formulário. É equivalente a um clique do usuário na área ou de utilizar a tecla Tab para selecionar o campo ou a variável. @@ -51,4 +48,13 @@ Veja o exemplo do comando [REJECT](reject.md "REJECT"). #### Ver também [CALL SUBFORM CONTAINER](call-subform-container.md) -[REJECT](reject.md) \ No newline at end of file +[REJECT](reject.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 206 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md index 3cccf60f355e20..e29686902a6984 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md @@ -28,4 +28,15 @@ Veja o exemplo para Record Number. #### Ver também [Record number](record-number.md) -*Sobre Números de Registros* \ No newline at end of file +*Sobre Números de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 242 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md index 4e6bcbbd8ad8c5..af6a2934d588e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md @@ -58,4 +58,14 @@ O seguinte método de objeto para *atNomes* seleciona o registro correto na sele #### Ver também -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 245 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md index e563e65ae66d31..b344860b52620a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GOTO XY se utiliza conjuntamente com o comando [MESSAGE](message.md "MESSAGE") quando mostra mensagens em uma janela aberta pelo comando [Open window](open-window.md "Open window"). @@ -60,4 +57,13 @@ Mostra a janela a seguir (em Macintosh) por 30 segundos: #### Ver também -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 161 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md index 190a2c51f460b7..50a6b0039fedb1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GRAPH SETTINGS permite modificar os parâmetros dos gráficos mostrados em um formulário. O gráfico deve ter sido definido com o comando [GRAPH](graph.md). GRAPH SETTINGS não tem efeito em um gráfico de tipo setores. Este comando deve ser chamado obrigatoriamente no mesmo processo que o formulário. @@ -44,4 +41,13 @@ Ver o exemplo do comando [GRAPH](graph.md "GRAPH"). #### Ver também -[GRAPH](graph.md) \ No newline at end of file +[GRAPH](graph.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 298 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph.md index 0db8b4f4fb49ce..ddea07184e0bfa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph.md @@ -279,4 +279,13 @@ Neste exemplo, personalizamos alguns parâmetros: [GRAPH SETTINGS](graph-settings.md) *Parâmetros de Gráficos* -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 169 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md index 4b836644e55b73..11d4e2ddf3aaa1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando HIDE MENU BAR torna invisível a barra de menus. @@ -45,4 +42,14 @@ O método abaixo mostra um registro em toda a tela (Macintosh) até que dê um c [HIDE TOOL BAR](hide-tool-bar.md) [SHOW MENU BAR](show-menu-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 432 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md index 5d068fda6360ed..ae6d1f6c836420 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição HIDE PROCESS oculta todas as janelas que pertencem ao *processo*. Todos os elementos de interface de *processo* se ocultam até o seguinte [SHOW PROCESS](show-process.md "SHOW PROCESS"). A barra de menus do processo também se oculta. Isso significa que a abertura de uma janela enquanto o processo está oculto não provocará nenhuma mudança na visualização em tela. Se o processo já estiver oculto, o comando não tem nenhum efeito. @@ -37,4 +34,13 @@ O exemplo a seguir oculta todas as janelas que pertencem ao processo atual: #### Ver também [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 324 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md index 9178451800e4e4..330aa759982a94 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando HIDE TOOL BAR gerencia a visualização das barras de ferramentas personalizadas criadas pelo comando [Open form window](open-form-window.md) para o processo atual. @@ -41,4 +38,13 @@ Para evitar isto, no evento formulário On Resize da janela estandarte, é neces #### Ver também -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 434 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md index d8f02d6d994ba9..78e95604e7d501 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando HIDE WINDOW permite ocultar a janela cujo número de referência se passa em *janela* ou, se for omitido este parâmetro, a janela do primeiro plano do processo atual. Este comando permite, por exemplo, em um processo com várias janelas, mostrar apenas a janela ativa. @@ -47,4 +44,13 @@ Este exemplo corresponde a um método de um botão localizado em um formulário #### Ver também -[SHOW WINDOW](show-window.md) \ No newline at end of file +[SHOW WINDOW](show-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 436 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md index 78df423a2bc35c..6b336de24a688b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando HIGHLIGHT RECORDS permite selecionar registros em um formulário listado. Esta operação é idêntica à seleção de registros manual em modo listado utilizando o mouse ou as combinações de teclado **Shift+Clique** ou **Ctrl+Clique** (Windows) ou **comando+Clique** (Mac OS). A seleção atual não é modificada. @@ -49,4 +46,13 @@ Quando o usuário clicar no botão, aparece a caixa de diálogo padrão procurar #### Ver também [GET HIGHLIGHTED RECORDS](get-highlighted-records.md) -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 656 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md index dc34408ed30691..f9e5c562e178c3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando HIGHLIGHT TEXT seleciona uma parte de texto em *objeto*. @@ -63,4 +60,13 @@ Ver o exemplo do comando [FILTER KEYSTROKE](filter-keystroke.md "FILTER KEYSTROK #### Ver também -[GET HIGHLIGHT](get-highlight.md) \ No newline at end of file +[GET HIGHLIGHT](get-highlight.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 210 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md index a9e7517521cc65..8ca2a8e73e828b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md @@ -57,4 +57,13 @@ Exemplos de petições com autenticação: #### Ver também -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1161 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md index f76d63087a6d87..216f6a3dd062ee 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md @@ -37,4 +37,13 @@ Você quer mudar temporalmente a pasta de certificados: #### Ver também -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1307 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md index 13ca72ec4105da..c22c2936b02df4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md @@ -43,4 +43,13 @@ No parâmetro *valor*, passe uma variável para receber o valor atual da *opçã #### Ver também -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1159 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md index a2a9c6f7f21787..a264655fbed394 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md @@ -103,4 +103,14 @@ Recuperação de um vídeo: #### Ver também -[HTTP Request](http-request.md) \ No newline at end of file +[HTTP Request](http-request.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1157 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md index 8c249d0950447d..313e9a61f726f9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-parse-message.md @@ -14,9 +14,16 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição A documentação para este comando está disponível em [developer.4d.com.](https://developer.4d.com/docs/API/HTTPRequestClass#http-parse-messege) + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1824 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md index 6f45f175401a7f..047994c79f2bf3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md @@ -126,4 +126,13 @@ Petição para adicionar um registro em JSON a um banco de dados remoto: #### Ver também -[HTTP Get](http-get.md) \ No newline at end of file +[HTTP Get](http-get.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1158 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md index 3e223c56523d67..b394da03d0c22f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md @@ -55,4 +55,13 @@ Você quer mudar temporalmente a pasta de certificados: #### Ver também [GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) -[HTTP Get certificates folder](http-get-certificates-folder.md) \ No newline at end of file +[HTTP Get certificates folder](http-get-certificates-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1306 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md index 8a86d3285fda81..fe3dc9e2aa7fd4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md @@ -44,4 +44,13 @@ Não importa a ordem das opções de chamada. Se a mesma opção é definida mai #### Ver também [HTTP AUTHENTICATE](http-authenticate.md) -[HTTP GET OPTION](http-get-option.md) \ No newline at end of file +[HTTP GET OPTION](http-get-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1160 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/idle.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/idle.md index b7cbec034220eb..afa0848af87f87 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/idle.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/idle.md @@ -50,4 +50,13 @@ com: #### Ver também *Comandos de Compilação* -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 311 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md index e8ad83a96d31d6..fa915b1bb9f039 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md @@ -45,4 +45,14 @@ Se o usuário clicar em **Cancelar** na caixa de diálogo de salvar arquivos ou [EXPORT DATA](export-data.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[IMPORT TEXT](import-text.md) \ No newline at end of file +[IMPORT TEXT](import-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 665 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md index fdedd8196d2439..31cb11936c084d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando IMPORT DIF lê dados de *documento*, um documento DIF Windows ou Macintosh e os escreve em *tabela* criando novos registros para essa tabela. @@ -53,4 +50,14 @@ OK toma o valor 1 se la importação termina com sucesso; do contrário, toma o [EXPORT DIF](export-dif.md) [IMPORT SYLK](import-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 86 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md index bdc0d0cabe7944..c482c8758fc5c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **IMPORT STRUCTURE** importa, na base atual, a definição XML da estrutura da base 4D passada no parâmetro *estruturaXML*. @@ -49,4 +46,13 @@ Você deseja importar uma definição de estrutura guardada na base de dados atu #### Ver também -[EXPORT STRUCTURE](export-structure.md) \ No newline at end of file +[EXPORT STRUCTURE](export-structure.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1310 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md index 67736f46f22975..a198c8d6c22172 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando IMPORT SYLK lê dados de *documento*, um documento SYLK Windows ou Macintosh e os escreve em *tabela* criando novos registros para essa tabela. @@ -53,4 +50,14 @@ OK toma o valor 1 se a importação termina com sucesso; do contrário, toma o v [EXPORT SYLK](export-sylk.md) [IMPORT DIF](import-dif.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 87 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md index 13e8aadb7ee17c..01e1f0a0d30aee 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando IMPORT TEXT lê dados de *documento*, um documento texto Windows ou Macintosh e os escreve em *tabela* criando novos registros para essa tabela. @@ -55,4 +52,14 @@ OK toma o valor 1 se a importação termina com sucesso; do contrário, toma o v [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 168 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md index 9a6b609e1d1cbe..48e0d1116d22c1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **In break** devolve True para o ciclo de execução In break. @@ -27,4 +24,13 @@ Para que seja gerado o ciclo de execução **In break**, tenha certeza de que o #### Ver também [In footer](in-footer.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 113 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md index 89770a4abe2bb1..57f9750e095df7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **In footer** devolve True para o ciclo de execução In footer. @@ -27,4 +24,13 @@ Para que seja gerado o ciclo de execução **In footer** tenha certeza de que o #### Ver também [In break](in-break.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 191 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md index 4d87f5d67febf8..9d6547b96214fa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **In header** devolve True para o ciclo de execução In header. @@ -27,4 +24,13 @@ Para que seja gerado o ciclo de execução **In header**, tenha certeza de que o #### Ver também [In break](in-break.md) -[In footer](in-footer.md) \ No newline at end of file +[In footer](in-footer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 112 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md index 2bc3dc339517cc..8267690eca45b0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md @@ -29,4 +29,13 @@ Se realiza as operações (adição, modificação, ou eliminação de registros [CANCEL TRANSACTION](cancel-transaction.md) [START TRANSACTION](start-transaction.md) *Triggers* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 397 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md index 054c41f4a4072e..29521bfab219cf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md @@ -44,4 +44,13 @@ O exemplo a seguir adiciona um elemento a um array: #### Ver também [DELETE FROM ARRAY](delete-from-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 227 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md index 61e80ce60753f8..7e223e5ba531bc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md @@ -30,4 +30,13 @@ Antes da chamada, você passa no parâmetro *offset* a posição de inserção e #### Ver também -[DELETE FROM BLOB](delete-from-blob.md) \ No newline at end of file +[DELETE FROM BLOB](delete-from-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 559 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md index cc7eb9507c8f78..b263c4162a2cd9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comandoINSERT IN LIST insere o elemento designado pelo parâmetro *refElem* na lista cujo número de referência é passado em *lista*. @@ -52,4 +49,13 @@ O código a seguir insere um elemento (sem sub-lista associada) justo antes do e #### Ver também [APPEND TO LIST](append-to-list.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 625 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md index 673cfe609b8597..3fdfc931516ba3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comandoINSERT MENU ITEM insere novas linhas no menu cujo número ou referência é passada em *menu* e as localiza depois da linha de menu cujo número se passa em *depoisItem*. @@ -56,4 +53,14 @@ O exemplo a seguir cria um menu que consiste em dois comandos os quais atribuem #### Ver também [APPEND MENU ITEM](append-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 412 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md index af0f71a7b58595..5f1ddfc18712d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md @@ -40,4 +40,13 @@ O seguinte exemplo ilustra o uso de Insert string. Os resultados são atribuído [Change string](change-string.md) [Delete string](delete-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 231 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/int.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/int.md index 1b6fd52d7d85fe..4677711822fd93 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/int.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/int.md @@ -29,4 +29,13 @@ O exemplo a seguir ilustra o funcionamento de Int para números positivos e nega #### Ver também -[Dec](dec.md) \ No newline at end of file +[Dec](dec.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 8 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md index b1ab3212f41a42..085235a1e0c516 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md @@ -113,4 +113,13 @@ Depois de executar este código: [BLOB to text](blob-to-text.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 548 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md index 21552ea16ec7d4..0adcf216171d72 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md @@ -101,4 +101,14 @@ Se a integração é efetuada corretamente, a variável sistema OK recebe o valo #### Ver também -[LOG FILE TO JSON](log-file-to-json.md) \ No newline at end of file +[LOG FILE TO JSON](log-file-to-json.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1312 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md index 7c7094bc569a8d..ee9698b0cb7254 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md @@ -47,4 +47,13 @@ O exemplo a seguir pesquisa os clientes que são atendidos por dois representant #### Ver também [DIFFERENCE](difference.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 121 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md index 4b99f869447069..7ee36785830b67 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **INVOKE ACTION** ativa a ação padrão definida pelo parâmetro ação, opcionalmente no contexto objetivo. @@ -65,4 +62,13 @@ Se quiser executar uma ação padrão **Goto page** (página 3) no formulário p #### Ver também -[Action info](action-info.md) \ No newline at end of file +[Action info](action-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1439 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md index 3dd73ed2186a42..4e441e8476fb69 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Is a list retorna TRUE se o valor passado em *lista* é uma referência válida a uma lista hierárquica. Do contrário, retorna FALSE. @@ -28,3 +25,13 @@ Ver o exemplo do comando [CLEAR LIST](clear-list.md "CLEAR LIST"). #### Exemplo 2 Ver os exemplos do comando DRAG AND DROP PROPERTIES. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 621 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md index d08a3ffcca63b3..6d098e6b2e6569 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### Ver também [Is nil pointer](is-nil-pointer.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 294 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md index f6f2b3599472b3..e56086d57b983b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md @@ -40,4 +40,13 @@ Em uma de suas rotinas, você inclui a depuração do código apenas quando voc #### Ver também [IDLE](idle.md) -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 492 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md index 1d0c03b13f44a7..befda7de4ab2bd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md @@ -29,3 +29,13 @@ Este método vai impedir a abertura do banco de dados se o arquivo de dados esti     QUIT 4D  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 716 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md index 5051a1cb074477..50e44826bc86ff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Is editing text** devolve **True** se o usuário estiver ingressando valores em um objeto de formulário de entrada e **False** em todos os demais casos. @@ -60,4 +57,13 @@ Se quiser permitir que o usuário selecione uma linha começando com a letra ou [FILTER KEYSTROKE](filter-keystroke.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1744 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md index 13588dc0345291..705f1c8290d0c7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md @@ -24,4 +24,13 @@ Este comando permite detectar as eventuais eliminações de campos, que criam qu #### Ver também [Last table number](last-table-number.md) -[Is table number valid](is-table-number-valid.md) \ No newline at end of file +[Is table number valid](is-table-number-valid.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1000 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md index cf0f57da4f2b16..1a1417ab6af485 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md @@ -27,4 +27,13 @@ O valor retornado por esse comando só tem significado se a opção *Mapear valo #### Ver também [Null](null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 964 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md index 18d8a3de8425cc..e5a28a95c0f612 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Is in print preview** devolve True se a opção **Vista previa de impressão** está selecionada na caixa de diálogo de impressão e False caso contrário. Esta configuração é local ao processo. @@ -46,4 +43,13 @@ Este exemplo permite ter em conta todos os tipos de impressões: #### Ver também [Get print preview](get-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1198 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md index 31330f6322e166..a8052922561504 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md @@ -35,4 +35,13 @@ O seguinte exemplo é um método de objeto de um botão que testa se o registro #### Ver também [ADD TO SET](add-to-set.md) -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 273 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md index 67ddd81c5f7b23..da37357f627784 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Is license available permite conhecer a disponibilidade de um plug-in. É útil, por exemplo, para mostrar ou ocultar funções que necessitam da presença de um plug-in. @@ -50,4 +47,13 @@ O comando Is license available pode ser utilizado de três maneiras diferentes: [License info](license-info.md) [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 714 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md index 1521e14b651a00..e3b1771b3e4cce 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md @@ -32,4 +32,13 @@ Se quiser determinar se o sistema operativo atual for macOS: #### Ver também [System info](system-info.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1572 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md index d93012823b6284..25e0616f5aadca 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md @@ -39,4 +39,13 @@ As duas instruções a seguir são idênticas. A segunda é recomendada para que #### Ver também [Modified record](modified-record.md) -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 668 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md index 49b66e01b85c84..34d55c698f2947 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md @@ -35,4 +35,13 @@ Caso deseje conhecer o nome da variável apontada ou o número do campo, pode ut #### Ver também [Is a variable](is-a-variable.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 315 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md index e982f94b019b59..68a11e15ac6548 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md @@ -27,4 +27,13 @@ Se não passa o parâmetro *\**, o comando prova o arquivo buscando sua extensã #### Ver também -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1113 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md index 77ec20cb29119d..d1360fa713d93a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md @@ -43,3 +43,13 @@ Ao invés de utilizar as ações automáticas “Seguinte registro” ou “Regi     End if  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 669 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md index a65ea38f375af0..8478852b1a5ea8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md @@ -23,4 +23,13 @@ Este comando permite detectar as eventuais eliminações de tabelas, que criam q #### Ver também [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 999 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md index fb18ee05a42bcf..3d34d94827be3e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Is user deleted testa a conta de usuário cujo número de identificação único se passa em *numUsuario*. @@ -31,4 +28,14 @@ Se não tiver os privilégios de acesso adequados para chamar Is user deleted ou [DELETE USER](delete-user.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 616 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md index bda113ca051b6d..5e8c6a46eb2fc3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Tema:** Eventos formulário @@ -60,4 +57,13 @@ O código abaixo pode ser usado para gerenciar uma propriedade de tracking de mo #### Ver também -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1422 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md index 0d25fdfc0e7209..3277964640b237 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Is window maximized** devolve **True** se a janela cujo número de referência for passado em *janela* estiver maximizada,no momento e **False** no caso contrário. @@ -36,4 +33,13 @@ Se quiser mudar entre o estado maximizado e o anterior: #### Ver também [Is window reduced](is-window-reduced.md) -[MAXIMIZE WINDOW](maximize-window.md) \ No newline at end of file +[MAXIMIZE WINDOW](maximize-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1830 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md index c167b34c3af09b..c5c5800074f656 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Is window reduced** devolve **True** se a janela cujo número de referência se passar na *Janela* estiver atualmente reduzida na barra de tarefas (Windows) ou no dock (macOS), e **False** no caso contrário. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver também [Is window maximized](is-window-maximized.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1831 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md index 0c8be45c4b2510..70dbb83d81a50c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md @@ -32,4 +32,13 @@ Se quiser determinar se o sistema operativo atual é Windows: #### Ver também [System info](system-info.md) -[Is macOS](is-macos.md) \ No newline at end of file +[Is macOS](is-macos.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1573 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md index c450ba4992f4a7..479bab16a7156a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md @@ -57,4 +57,13 @@ Neste exemplo, os dados dos campos dos registros de uma tabela se extraem e loca #### Ver também [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1219 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md index 00a86317a1859f..ae6179cbf92970 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md @@ -188,4 +188,13 @@ beta[1].golf:{line:10,offset:12}}} [JSON PARSE ARRAY](json-parse-array.md) [JSON Stringify](json-stringify.md) [JSON Validate](json-validate.md) -*Tipos de campos e variáveis* \ No newline at end of file +*Tipos de campos e variáveis* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1218 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md index f774e85de19ff4..ad9673e12e8317 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md @@ -229,4 +229,13 @@ Se executar: #### Ver também - \ No newline at end of file + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1478 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md index 852b3b96f2090e..3cb9cd37fc5077 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md @@ -107,4 +107,13 @@ Conversão de uma seleção 4D em um array objeto: #### Ver também [JSON PARSE ARRAY](json-parse-array.md) -[JSON Stringify](json-stringify.md) \ No newline at end of file +[JSON Stringify](json-stringify.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1228 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md index 6a21fd9896bcdd..cf1d4b70d8bc67 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md @@ -173,4 +173,13 @@ $myTxtCol="[33,"mike","2017-08-28",false]" #### Ver também [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1217 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md index ac602b6bc37180..0ac69f005f65d2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md @@ -67,4 +67,13 @@ Uso do comando **JSON TO SELECTION** para adicionar os registros a tabela \[Comp #### Ver também -[Selection to JSON](selection-to-json.md) \ No newline at end of file +[Selection to JSON](selection-to-json.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1235 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md index 583d94096b7de2..f88e14d51a6b1b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md @@ -103,4 +103,13 @@ Se quiser validar um objeto JSON com um esquema e obter a lista de erros de vali -[JSON Parse](json-parse.md) \ No newline at end of file +[JSON Parse](json-parse.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1456 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md index d79e11cd05d2f2..c5499c098534d5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Keystroke retorna o caractere introduzido pelo usuário em um campo o em uma área editável. @@ -178,4 +175,13 @@ Utilizando as habilidades da comunicação interprocesso de 4D, pode construir i [FILTER KEYSTROKE](filter-keystroke.md) [Form event code](../commands/form-event-code.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 390 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md index 3977611cfc2bd0..0623d548fd982d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md @@ -53,4 +53,13 @@ No método (*theWorker*), adicionou código para manejar esta situaçao: [CALL WORKER](call-worker.md) [Current process name](current-process-name.md) -*Sobre Workers* \ No newline at end of file +*Sobre Workers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1390 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md index d86290bce5491a..d853c9db4254dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-errors.md @@ -32,4 +32,13 @@ Este comando deve ser chamado desde um método de chamada de erro instalado pelo #### Ver também [ON ERR CALL](on-err-call.md) -[throw](throw.md) \ No newline at end of file +[throw](throw.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1799 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md index 58b1044434693c..640338388d33e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md @@ -41,4 +41,13 @@ Os campos estão numerados na ordem na qual foram criados. Se nenhum campo foi a [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 255 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md index 893a33119b0562..b724b6af76a058 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md @@ -33,4 +33,13 @@ A descrição da rota da última pesquisa pode ser comparada com a descrição d #### Ver também [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1045 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md index 569ef84fc9a44f..8d4af279ea58c0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md @@ -33,4 +33,13 @@ A descrição do plano da última pesquisa pode ser comparada com a descrição #### Ver também [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query path](last-query-path.md) \ No newline at end of file +[Last query path](last-query-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1046 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md index e0009f649ec4b9..3370b663e04a70 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md @@ -31,4 +31,14 @@ O exemplo a seguir designa o último registro da tabela \[Pessoas\] como registr [End selection](end-selection.md) [FIRST RECORD](first-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 200 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md index 51e01ff9492514..5565a6883c473c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md @@ -38,4 +38,13 @@ O seguinte exemplo inicializa os elementos do array *arrayTabelas*, com os nomes [Last field number](last-field-number.md) [Is table number valid](is-table-number-valid.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 254 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md index 9c77e2c5a6ce5f..18c35c5f5e46db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md @@ -135,4 +135,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 #### Ver também [OPEN URL](open-url.md) -[SET ENVIRONMENT VARIABLE](set-environment-variable.md) \ No newline at end of file +[SET ENVIRONMENT VARIABLE](set-environment-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 811 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md index c2f79a1a15a38f..181e3b92788fe5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando**LDAP LOGIN** abre uma conexão somente leitura no servidor LDAP especificado pelo parâmetro *url* com os identificadores de *login* e *senha*. Se for aceito pelo servidor, esta ligação é utilizada para todas as pesquisas de LDAP posteriormente introduzidas no processo atual até que o comando *RuntimeVLWinFolder* sejaé executado (ou até que o processo seja fechado). @@ -98,4 +95,13 @@ Este exemplo tenta conectar-se a um aplicativo: #### Ver também *LDAP* -[LDAP LOGOUT](ldap-logout.md) \ No newline at end of file +[LDAP LOGOUT](ldap-logout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1326 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md index b83151fac9df14..8727db8ff695c2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md @@ -12,13 +12,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LDAP LOGOUT** termina a conexão com um servidor LDAP no processo atual (se for aplicável). Se não houver conexão, o error 1003 é retornado indicando que não está conectado. #### Ver também -[LDAP LOGIN](ldap-login.md) \ No newline at end of file +[LDAP LOGIN](ldap-login.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1327 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md index 3ebd7ddb7dfaf8..d5bc53bbe78530 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LDAP SEARCH ALL** encontra todas as ocorrências que correspondem aos critérios definidos no servidor LDAP objetivo. Este comando deve ser executado dentro de uma conexão com um servidor LDAP aberto com *LDAP LOGIN*; caso contrário, um erro 1003 é retornado. @@ -117,4 +114,13 @@ Estes exemplos ilustram o uso do parâmetro *atributosEmArray*: #### Ver também *LDAP* -[LDAP Search](ldap-search.md) \ No newline at end of file +[LDAP Search](ldap-search.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1329 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md index c1bc2a0fcd8823..4c57410a34fabf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LDAP Search** encontra a primeira ocorrência que corresponde aos critérios definidos no servidor LDAP alvo. Este comando deve ser executado em uma conexão com um servidor LDAP aberta com [LDAP LOGIN](ldap-login.md); caso contrário, é devolvido um erro 1003. @@ -85,4 +82,13 @@ Queremos obter um array de todas as entradas que se encontram no atributo "membe #### Ver também *LDAP* -[LDAP SEARCH ALL](ldap-search-all.md) \ No newline at end of file +[LDAP SEARCH ALL](ldap-search-all.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1328 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/length.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/length.md index 9efa211de07c55..cab5493598fcbc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/length.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/length.md @@ -28,3 +28,13 @@ Este exemplo ilustra o uso de **Length**. Os resultados, descritos nos comentár  vlResult:=Length("Topázio") // vlResult obtém 7  vlResult:=Length("Cidadania") // vlResult obtém 9 ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 16 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/level.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/level.md index 0748a5b5f583af..67362f1076df6e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/level.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Level se utiliza para determinar o nível de quebra do cabeçalho atual. Devolve o nível de quebra durante os eventos On Header e On Printing Break. @@ -68,4 +65,13 @@ Este exemplo é um modelo para um método de formulário. Mostra cada evento pos [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Form event code](../commands/form-event-code.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 101 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md index 468dc3f07fd3b5..cf2d8062abdb32 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md @@ -71,3 +71,13 @@ Essa tabela detalha os conteúdos do objeto sessão para sessões REST: | sessionID | Text | Sessão REST ID | | IPAddress | Text | ID do cliente que iniciou a sessão REST | | isDatastore | Boolean | True se a petição REST vem de uma datastore | + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1782 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md index 8a9011effcc480..042790618b7034 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando List item parent retorna o número de referência do elemento pai. @@ -73,4 +70,13 @@ Os números de referência dos elementos são os seguintes: [GET LIST ITEM](get-list-item.md) [List item position](list-item-position.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 633 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md index 89480dd0818874..9a6663ca79820b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando List item position retorna a posição do elemento cujo número de referencia ou nome de objeto se passa em *refElem*,na lista cujo número de referência se passa na lista. @@ -40,4 +37,13 @@ Se o elemento não existir, List item position retorna 0. #### Ver também [Count list items](count-list-items.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 629 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md index d5a399f1a62c9a..c06c342cbe2eff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md @@ -14,11 +14,18 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LIST OF CHOICE LISTS retorna, nos arrays sincronizados *arrayNums* e *arrayNoms*, os números e os nomes das listas definidas no editor de listas no ambiente Desenho. Os números das listas correspondem a sua ordem de criação. No editor de listas, as listas são mostradas em ordem alfabética. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 957 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md index d1ab0b634f16db..82c01cbace5c42 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LIST OF STYLE SHEETS** devolve a lista de folhas de estilo da aplicação no array *arrFolhasEstilo*. @@ -51,4 +48,13 @@ Se executa o seguinte código: #### Ver também [GET STYLE SHEET INFO](get-style-sheet-info.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1255 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md index 68090bc4f91e19..51867a5f4e21b4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LIST TO ARRAY cria ou substitui o array *array* com os elementos de primeiro nível da lista ou da lista de seleção designada por *lista*. @@ -86,4 +83,13 @@ Se executa a seguinte instrução: [ARRAY TO LIST](array-to-list.md) [Load list](load-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 288 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md index 349f64a4483926..8064b215733b82 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LIST TO BLOB armazena a *lista* hierárquica no BLOB *blob*. @@ -47,4 +44,14 @@ Veja o exemplo para o comando [BLOB to list](blob-to-list.md "BLOB to list"). [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) [SAVE LIST](save-list.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 556 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md index 52482a7a9666fc..feb5c2067c2994 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX COLLAPSE é utilizado para contrair linhas de quebra do objeto list box designado pelos parâmetros *objeto* e *\** . @@ -52,4 +49,13 @@ Este exemplo colapsa o primeiro nível de linhas de quebra da seleção no list #### Ver também -[LISTBOX EXPAND](listbox-expand.md) \ No newline at end of file +[LISTBOX EXPAND](listbox-expand.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1101 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md index 1771292efac00f..2814fdab0c22d4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX DELETE COLUMN apaga uma ou mais colunas (visíveis ou não) no list box designado pelos parâmetros *objeto* e *\**. @@ -35,4 +32,13 @@ Se o parâmetro *posicionCol* é maior que o número de colunas no list box, o c #### Ver também [LISTBOX Get number of columns](listbox-get-number-of-columns.md) -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 830 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md index 9b3edf1de828d0..8e4b75d116f81b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX DELETE ROWS apaga a fila número *posição* (visível ou não) do list box definido pelos parâmetros *objeto* e \*. @@ -37,4 +34,14 @@ Se o parâmetro *posição* é superior ao número de linhas do array do list bo #### Ver também [LISTBOX Get number of rows](listbox-get-number-of-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 914 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md index e583b5130996ae..bc3dc200f1f570 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX DUPLICATE COLUMN** duplica a coluna definida pelos parâmetros *objeto* e *\** por programação no contexto do formulário executado (Modo Aplicação). O formulário original, gerado em modo Desenho não se modifica. @@ -93,4 +90,13 @@ A partir de 4D v14 R3, pode duplicar dinamicamente as colunas de list box e 4D s #### Ver também -[LISTBOX MOVE COLUMN](listbox-move-column.md) \ No newline at end of file +[LISTBOX MOVE COLUMN](listbox-move-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1273 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md index 3f27d76caed4c5..54915abed5f0e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX EXPAND é utilizado para expandir as linhas de quebra do objeto list box designado pelos parâmetros objeto e \*. @@ -82,4 +79,13 @@ Este ejemplo ilustra diferentes modos de utilizar el comando. Dados los siguient #### Ver também -[LISTBOX COLLAPSE](listbox-collapse.md) \ No newline at end of file +[LISTBOX COLLAPSE](listbox-collapse.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1100 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md index e6e28d16c4afab..fba0f438675645 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** Este comando só funciona com os list box de tipo array. @@ -62,4 +59,13 @@ Exemplos típicos de uso: #### Ver também [LISTBOX GET ARRAYS](listbox-get-arrays.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1278 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md index 4e398b5892ceb4..d18f0209407e11 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX GET ARRAYS** devolve um conjunto de arrays sincronizados oferecendo informação sobre cada coluna (visível ou invisível) do list box designado pelos parâmetros *objeto* e *\**. @@ -51,4 +48,13 @@ Para seleção de registro, list boxes do tipo coleção ou seleção de entidad [LISTBOX Get array](listbox-get-array.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 832 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md index ade8d581f70dbf..9d2308e0113056 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get auto row height** devolve o valor de altura de fila mínimo ou máximo actual definido para o objeto list box designado utilizando os parâmetros *objeto* e *\**. @@ -60,4 +57,13 @@ vhMax:=LISTBOX Get auto row height(*;"LB";lk row max height;lk lines) [LISTBOX Get row height ](listbox-get-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) \ No newline at end of file +[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1502 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md index fdcb3d157ebdcf..3eb297b96a32c7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX GET CELL COORDINATES devolve nas variáveis ou campos *esq*, *sup*, *dir* e *inf* as coordenadas (em pontos) da célula designada pelos parâmetros *coluna* e *linha*, no list box definido por *\** e *objeto*. @@ -54,4 +51,13 @@ Você quer desenhar um retângulo vermelho arredor da célula selecionada de um #### Ver também [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[OBJECT GET COORDINATES](object-get-coordinates.md) \ No newline at end of file +[OBJECT GET COORDINATES](object-get-coordinates.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1330 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md index 5be966aa6e25f9..53fbf25aa21e59 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX GET CELL POSITION devolve os números da *coluna* e da *fila* correspondentes a localização no list box (designado por *\** e *objeto*) do último clique ou as coordenadas vertical e horizontal do mouse. @@ -57,4 +54,13 @@ Se a seleção é modificada utilizando as flechas do teclado, *coluna* devolve #### Ver também [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) -[LISTBOX SELECT BREAK](listbox-select-break.md) \ No newline at end of file +[LISTBOX SELECT BREAK](listbox-select-break.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 971 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md index 54a835bba41b31..a72f81c79767e5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get column formula** devolve a fórmula associada à coluna de list box designada pelos parâmetros *objeto* e *\**. As fórmulas só podem ser utilizadas quando a propriedade “Fonte de dados” do list box for **Seleção atual**, **Seleção temporal**.ou **Coleção ou Seleção de Entidades**. Se nenhuma fórmula estiver associada à coluna, o comando devolve uma cadeia vazia. @@ -26,4 +23,13 @@ Passado o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome #### Ver também -[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) \ No newline at end of file +[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1202 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md index 61e881917581e2..342c9ddeb3cf22 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX Get column width devolve a largura (em pixels) da coluna designada pelos parâmetros *objeto* e *\*.* Pode passar indiferentemente uma coluna ou um título de coluna de list box no parâmetro *objeto*. @@ -31,4 +28,13 @@ Se não tiver definido nenhum valor de largura mínima ou máxima para a coluna, #### Ver também -[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) \ No newline at end of file +[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 834 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md index c3ce16fe250c37..27163278c79cf8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O novo comando **LISTBOX Get footer calculation** devolve o tipo de cálculo associado à área de rodapé de página do list box designado pelos parâmetros *objeto* e *\**. @@ -32,4 +29,13 @@ Pode comparar o valor devolvido com as constantes do tema *Listbox Footer Calcul #### Ver também -[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) \ No newline at end of file +[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1150 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md index d9d27a90a2139f..e5691cb4089c40 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get footers height** devolve a altura da linha de rodapé do list box designado pelos parâmetros *objeto* e *\**. @@ -37,4 +34,13 @@ Por defeito, é omitido o parâmetro *unidad*e, a altura de linha devolvida se e #### Ver também -[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) \ No newline at end of file +[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1146 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md index 260133a911932e..86d705c69b04cd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX GET GRID COLORS** devolve a cor das linhas horizontais e verticais que eles compõem a grade do objeto list box designado pelo objeto de parâmetros *objeto* e *\**. @@ -32,4 +29,13 @@ Em *corH* e *corV*, o comando devolve os valores das cores RGB. O formato de cor #### Ver também -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1200 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md index c5f3a74a10e177..0c8d9d7bae0301 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX GET GRID** devolve o estado visível/oculto das linhas horizontais e verticais que compõem a grade do objeto list box designado pelos parâmetros *objeto* e *\**. @@ -29,4 +26,13 @@ O comando devolve nos parâmetros *horizontal* e *vertical*, o valor **True** ou #### Ver também -[LISTBOX SET GRID](listbox-set-grid.md) \ No newline at end of file +[LISTBOX SET GRID](listbox-set-grid.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1199 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md index 879726fb899351..e0cddbd7be16b0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get headers height** devolve a altura da linha horizontais de cabeçalho do list box designado pelos parâmetros *objeto* e *\**. @@ -36,4 +33,13 @@ Por defeito, se omitido o parâmetro *unidade*, a altura de linha devolvida se e #### Ver também -[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) \ No newline at end of file +[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1144 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md index 3452f6377f1a25..a6350db1000f3b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX GET HIERARCHY permite buscar as propriedades hierárquicas do objeto list box designado pelos parámetros *objeto* e *\** . @@ -36,4 +33,13 @@ Se o list box está em modo hierárquico, o comando preenche o array *hierarquia #### Ver também -[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) \ No newline at end of file +[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1099 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md index 498899ce68be80..def27f62e0ac72 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get locked columns** devolve o número de colunas bloquedas no list box designado pelos parâmetros objeto e *\**. @@ -31,4 +28,13 @@ Se uma coluna é inserida ou é eliminada por programação dentro de uma área #### Ver também -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1152 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md index 0a87b83fab5c3d..5bc2dc87d1962e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX Get number of columns devolve o número total de colunas (visíveis ou invisíveis) presentes no list box designado pelos parâmetros *objeto* e *\**. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome #### Ver também -[LISTBOX DELETE COLUMN](listbox-delete-column.md) \ No newline at end of file +[LISTBOX DELETE COLUMN](listbox-delete-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 831 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md index 0d3ba03d94ba9a..be168f48ca79b2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX Get number of rows devolve o número de filas do list box designado pelos parâmetros objeto e \*. @@ -31,4 +28,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome #### Ver também [LISTBOX DELETE ROWS](listbox-delete-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 915 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md index 28cf7f3198dfcc..4ef48641c6a2e6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX GET OBJECTS** devolve um array que contém os nomes de todos os objetos que compõem o list box designado pelos parâmetros *objeto* e *\** . @@ -61,4 +58,13 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list #### Ver também [FORM LOAD](../commands/form-load.md) -[OBJECT Get type](object-get-type.md) \ No newline at end of file +[OBJECT Get type](object-get-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1302 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md index fe70b0f67de6f8..8d081c84664bfc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX GET PRINT INFORMATION devolve a informação atual relativa a impressão do objeto list box designado pelos parâmetros *objeto e* *\** . Este comando permite controlar a impressão do conteúdo do list box. @@ -69,3 +66,13 @@ Impressão de pelo menos 500 linhas do list box, conhecendo que algumas linhas e     PAGE BREAK  Until($GlobalPrinted>=500) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1110 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md index d709c6d4331f79..fd33c8a2985410 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get property** devolve diferente informação relacionada com o tamanho e a visibilidade dos títulos e as barras de rolagem do objeto list box designado usandoos parâmetros *objeto* e *\**. @@ -100,4 +97,13 @@ Dado um list box "MyListbox", é executada a seguinte instrução: [LISTBOX SET GRID](listbox-set-grid.md) [LISTBOX SET PROPERTY](listbox-set-property.md) -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 917 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md index 39ff8e3d56bc85..53cda8a8aee646 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** este comando só funciona com os list box de tipo array. @@ -60,4 +57,13 @@ Given the following list box: *List box* [LISTBOX Get row color](listbox-get-row-color.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1271 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md index a3b204b79a1874..0e4120d6961102 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** este comando só funciona com list boxes de tipo array. @@ -59,4 +56,13 @@ Dado a list box abaixo: #### Ver também -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1658 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md index bc061f49383a78..2932c1c1105a61 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** Este comando só funciona com os list box de tipo array. @@ -51,4 +48,13 @@ Dado o seguinte list box: #### Ver também -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1269 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md index 336d1e21d23f29..8fe5929925853b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get row height** devolve a altura da *fila* especificada no objeto list box designado utilizando o *objeto* e os parâmetros *\**. @@ -36,4 +33,13 @@ O valor da altura da linha se expressa: [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1408 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md index 455f32a844caef..c6786da283fd83 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get rows height** devolve a altura atual (em píxels) das filas do objeto list box designado utilizando os parâmetros *objeto* e *\**. O valor devolvido corresponde à altura de uma só linha. @@ -38,4 +35,13 @@ Por padrão, se omitir o parâmetro *unidade*, a altura da linha devolvida é ex [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX Get row height ](listbox-get-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 836 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md index e4696ba5177192..568a157bb27599 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get static columns** devolve o número de colunas estáticas no list box designado pelos parâmetros objeto e *\**. @@ -33,4 +30,13 @@ Se uma coluna é inserida ou é eliminada por programação dentro de uma conjun #### Ver também -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1154 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md index 6d886ff3d6964e..11eef27051369c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX GET TABLE SOURCE permite conhecer a fonte atual de dados mostrados no list box designado pelos parâmetros *\** e *objeto*. @@ -34,4 +31,13 @@ Se o list box está associado com arrays, *numTabela* devolve -1 e *tempo*, se #### Ver também -[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) \ No newline at end of file +[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1014 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md index 1b7eec38185c26..b04c44b527174b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX INSERT COLUMN FORMULA** insere uma coluna no listbox designado pelos parâmetros *objeto* e *\**. @@ -120,4 +117,13 @@ A coluna é anexada à list box : #### Ver também -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 970 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md index 180c5f6655c959..796e316aab814c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX INSERT COLUMN insere uma coluna no list box designado pelos parâmetros *objeto* e *\**. @@ -99,4 +96,13 @@ Você deseja inserir uma coluna de forma dinâmica em um array de tipo list box #### Ver também [LISTBOX DELETE COLUMN](listbox-delete-column.md) -[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) \ No newline at end of file +[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 829 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md index 9da318bd9c70a2..cee428810ba4d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX INSERT ROWS** insere uma nova linha no list box designado pelos parâmetros *objeto* e *\**. @@ -35,4 +32,14 @@ Se o parâmetro *numFilas* excede o número de linhas de tabelas nas arrays do l #### Ver também -[LISTBOX DELETE ROWS](listbox-delete-rows.md) \ No newline at end of file +[LISTBOX DELETE ROWS](listbox-delete-rows.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 913 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md index 201c4592ffb64b..700166d69ee185 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX MOVE COLUMN** move por programação a coluna designada pelos parâmetros *objeto* e *\** no contexto do formulário em execução (modo Aplicação). O formulário original, gerado em modo Desenho, não se modifica. @@ -42,4 +39,13 @@ Você quer inverter a segunda e terceira coluna do list box: #### Ver também -[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) \ No newline at end of file +[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1274 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md index 01f870c8c732b5..4fb2a33d805957 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX MOVED COLUMN NUMBER devolve dois números em *antPosição* e *novPosição* indicando respectivamente a posição anterior e a nova posição da coluna movida no list box designado pelos parâmetros *objeto* e *\**. @@ -32,4 +29,13 @@ Este comando deve ser utilizado com o evento de formulário On column moved (ver #### Ver também [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) \ No newline at end of file +[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 844 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md index 1f4e70ff29a967..3b2394a6623428 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX MOVED ROW NUMBER devolve dois números em *antPosição* e *novPosição* indicando respectivamente a posição anterior e a nova posição da fila movida no list box, especificados pelos parâmetros *objeto* e *\**. @@ -34,4 +31,13 @@ Este comando deve ser utilizado com o evento de formulário On row moved (ver o #### Ver também [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) \ No newline at end of file +[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 837 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md index 783ea254ad123c..89364388515052 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SELECT BREAK se utiliza para selecionar linhas de quebra no objeto list box designado pelos parâmetros *objeto* e *\**. O list box deve ser mostrado em modo hierárquico. @@ -63,4 +60,13 @@ Este é o resultado: #### Ver também [ LISTBOX SELECT ROW ](listbox-select-row.md) -[LISTBOX GET CELL POSITION](listbox-get-cell-position.md) \ No newline at end of file +[LISTBOX GET CELL POSITION](listbox-get-cell-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1117 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md index d7d7c098ca332b..31f02ee738c733 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SELECT ROW seleciona a fila cujo número é passado em *posição* no list box designado pelos parâmetros *objeto* e *\**. @@ -55,4 +52,13 @@ Depois da execução do método, os arrays são sincronizados: se o array fonte [LISTBOX INSERT ROWS](listbox-insert-rows.md) [LISTBOX SELECT BREAK](listbox-select-break.md) [LISTBOX SELECT ROWS](listbox-select-rows.md) -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 912 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md index 64f99509fad7db..e7326ffd6ba6df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **O comandoLISTBOX SELECT ROWS** seleciona as alinhas de uma list box de seleção de entidades ou uma list box coleção que corresponde às entidades ou objetos contendo o parâmetro *seleção*. @@ -85,4 +82,13 @@ Exemplo com a coleção de objetos: #### Ver também -[ LISTBOX SELECT ROW ](listbox-select-row.md) \ No newline at end of file +[ LISTBOX SELECT ROW ](listbox-select-row.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1715 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md index b1191a203cf77c..bb5598b03f1aa6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota**: este comando só funciona com os list box de tipo array. @@ -67,4 +64,13 @@ Se quiser definir um array de altura de linha para um list box: #### Ver também [LISTBOX Get array](listbox-get-array.md) -[LISTBOX GET ARRAYS](listbox-get-arrays.md) \ No newline at end of file +[LISTBOX GET ARRAYS](listbox-get-arrays.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1279 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md index 97d3c062164442..9f25c6e61a97fc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET AUTO ROW HEIGHT** \[#descv\]lhe permite estabelecer o *valor* de altura de fila mínimo ou máximo no objeto de list box designado utilizando os parâmetros *objeto* e *\**\[#/descv\]. @@ -59,4 +56,13 @@ Se quiser definir as alturas mínimas e máximas para um list box com uma altura [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1501 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md index 7f78093e4eb15a..ea1c4c760bc81e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET COLUMN FORMULA** modifica a *formula* associada à coluna de list box designada pelos parâmetros *objeto* e *\**. As fórmulas só podem ser utilizadas quando a propriedade “Fonte de dados” do list box forem de **Seleção atual**, **Seleção temporal** ou **Coleção ou Seleção de Entidades.** @@ -43,4 +40,13 @@ O parâmetro *tipoDados* designa o tipo de dados resultantes da execução da f #### Ver também [LISTBOX Get column formula](listbox-get-column-formula.md) -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1203 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md index 90536b3006706a..ac7cb66a10ceed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SET COLUMN WIDTH le permite modificar por programação a largura de uma ou todas as colunas do objeto (list box, coluna ou título) designado utilizando os parâmetros *objeto* e *\**. @@ -34,4 +31,13 @@ Os parâmetros opcionais *larguraMin e* *larguraMax* permitem definir os limites #### Ver também -[LISTBOX Get column width](listbox-get-column-width.md) \ No newline at end of file +[LISTBOX Get column width](listbox-get-column-width.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 833 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md index b084529d015127..baa9eeba2c5ba7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET FOOTER CALCULATION** permite definir o cálculo automático associado à área de rodapé do list box designado pelos parâmetros *objeto* e *\**. @@ -52,4 +49,13 @@ Se o tipo de dados da coluna ou de pelo menos uma coluna do list box (se objeto #### Ver também -[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) \ No newline at end of file +[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1140 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md index 54f20afd3fd7a9..26916a336daaa9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET FOOTERS HEIGHT** modifica por programação a altura da linha de rodapé do list box designado pelos parâmetros *objeto* e *\**. @@ -37,4 +34,13 @@ Passe no parâmetro *altura* a altura a definir. Por defeito, é omitido o parâ #### Ver também -[LISTBOX Get footers height](listbox-get-footers-height.md) \ No newline at end of file +[LISTBOX Get footers height](listbox-get-footers-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1145 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md index 9500db384b367f..cb7039d61604eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET GRID COLOR** lhe permite modificar a cor da grade do objeto list box designado pelos parâmetros *objeto* e *\**. @@ -37,4 +34,13 @@ Os parâmetros *horizontal* e *vertical* lhe permitem especificar as linhas as q [LISTBOX GET GRID COLORS](listbox-get-grid-colors.md) [LISTBOX SET GRID](listbox-set-grid.md) -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 842 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md index 3001e1bb8735ea..52d3452cf2be17 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET GRID** lhe permite mostrar ou ocultar as linhas horizontais e verticais que compõe a matriz no list box designado pelos parâmetros *objeto* e *\**. @@ -31,4 +28,13 @@ Passe nos parâmetros *horizontal* e *vertical* os valores booleanos que indicam [LISTBOX GET GRID](listbox-get-grid.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 841 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md index 5703b17031125f..672d74a2d80ef5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET HEADERS HEIGHT** modifica por programação a altura da linha de cabeçalho do list box designado pelos parâmetros *objeto* e *\**. @@ -41,4 +38,13 @@ Cabeçalhos devem respeitar a altura mínima estabelecida pelo sistema. Esta alt #### Ver também -[LISTBOX Get headers height](listbox-get-headers-height.md) \ No newline at end of file +[LISTBOX Get headers height](listbox-get-headers-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1143 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md index e1d651a65f09d5..6b967a857d5e0d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SET HIERARCHY permite configurar o objeto list box designado pelos parâmetros objeto e *\** em modo hierárquico ou não hierárquico. @@ -55,4 +52,13 @@ Definição dos arrays aPais, aRegião e aCidade como hierarquia de um list box: #### Ver também -[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) \ No newline at end of file +[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1098 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md index 08096018d941f9..a6ad869cf7f15b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando**LISTBOX SET LOCKED COLUMNS** bloqueia as primeiras *numColunas* colunas esquerdas do list box designado pelos parâmetros *objeto* e *\**. @@ -33,4 +30,13 @@ Para eliminar o bloqueio de colunas, passe 0 em *numColunas*. #### Ver também [LISTBOX Get locked columns](listbox-get-locked-columns.md) -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1151 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md index 724ee83dd4879b..fd0b0702dcd215 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET PROPERTY** define o *valor* da *propriedade* da coluna list box ou list box especificada utilizando os parâmetros *objeto* e *\**. @@ -86,4 +83,13 @@ Se quiser definir a largura máxima da coluna "ProductNumber": *List box* -[LISTBOX Get property](listbox-get-property.md) \ No newline at end of file +[LISTBOX Get property](listbox-get-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1440 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md index 21cb76493dd2c6..e699a2733d4b20 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** Este comando só funciona com listboxes de tipo array. @@ -65,4 +62,13 @@ Em um array de tipo list box, queremos estabelecer as cores de uma fila e para u *List box* [LISTBOX Get row color](listbox-get-row-color.md) [LISTBOX Get row color as number](listbox-get-row-color-as-number.md) -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1270 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md index fe13cba3a5fbd9..cd25b91eb2ac31 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** Este comando só funciona com os list boxes de tipo array. @@ -80,4 +77,13 @@ Depois da segunda declaração, todas as células da terceira fila mudam de fila #### Ver também [LISTBOX Get row font style](listbox-get-row-font-style.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1268 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md index 02c02fdce6bd02..a781b11ac81b26 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET ROW HEIGHT** lhe permite modificar a altura da *fila* especificada no objeto list box designado utilizando os parâmetros *objeto e* *\**. @@ -86,4 +83,13 @@ Por outro lado, se o código abaixo for executado posteriormente... [LISTBOX Get row height ](listbox-get-row-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1409 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md index 39b8921db0ca65..ccaaf04f55742d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SET ROWS HEIGHT lhe permite modificar por programação a altura das filas do objeto list box designado pelos parâmetros *objeto* e *\**. @@ -38,4 +35,13 @@ Nota: para mais informação sobre o cálculo das alturas das linhas, consulte o [LISTBOX Get rows height](listbox-get-rows-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 835 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md index 86bb6cb3b20627..e4a6b46b83a2a6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET STATIC COLUMNS** define as primeiras *numColunas* colunas (começando pela esquerda) no list box designado pelos parâmetros *objeto* e *\**. @@ -29,4 +26,13 @@ As colunas estáticas não podem mover-se no list box. #### Ver também [LISTBOX Get static columns](listbox-get-static-columns.md) -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1153 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md index 5024550ea01dfa..941c78b2c2b61f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET TABLE SOURCE** permite modificar a fonte de dados mostrada no listbox desenhado pelos parâmetros *\** e *objeto* @@ -39,4 +36,13 @@ Se o list box já conter as colunas, seus conteúdos são atualizados depois da #### Ver também -[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) \ No newline at end of file +[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1013 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md index a45b551999d469..0f0aed6f725635 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SORT COLUMNS \[descv\] ordena as filas do list box designado pelos parâmetros objeto e \* em função dos valores de uma ou várias colunas.\[#/descv\] @@ -36,3 +33,13 @@ Pode definir ordenações multiniveis: para fazer isso, passe tantos pares (*num Conforme com o princípio de funcionamento do list box, as colunas estão sincronizadas, o que significa que a ordenação de uma coluna repercute automaticamente em todas as outras colunas do objeto. Nota: O comando LISTBOX SORT COLUMNS não leva em consideração a propriedade de listbox *Ordenável* . + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 916 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md index 81ecd364dd9065..da899c1e65c907 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md @@ -194,3 +194,13 @@ Obterá o resultado abaixo (objeto stringified): ``` **Nota:** para mais informação sobre o formato do [objeto](# "Estruturas de dados como objetos 4D nativos"), devolvido, contacte os serviços técnicos de 4D. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1528 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md index 807abe66baf1e7..931805de5cbc89 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Load list cria uma lista hierárquica cujo conteúdo é copiado da lista passada em *nomeLista*. Depois retorna o número de referência da lista criada recentemente. @@ -50,4 +47,13 @@ Você cria um banco para o mercado internacional e necessita mudar aos diferente [CLEAR LIST](clear-list.md) [Is a list](is-a-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 383 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md index ccb142bd100154..e59e793fea7909 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md @@ -35,4 +35,13 @@ displayed_sidebar: docs [Locked](locked.md) *Record Locking* -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 52 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md index 842dffd7b7bb1c..7bf76bdb0080c0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md @@ -41,4 +41,14 @@ Se o usuário clicar em Cancelar na caixa de diálogo de abrir arquivos, ou se f #### Ver também -[SAVE SET](save-set.md) \ No newline at end of file +[SAVE SET](save-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 185 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md index bc78b87a4d0973..f19bc10d15b91b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md @@ -44,4 +44,14 @@ Se as variáveis são carregadas corretamente, a variável sistema OK assume o v [BLOB TO VARIABLE](blob-to-variable.md) [DOCUMENT TO BLOB](document-to-blob.md) [RECEIVE VARIABLE](receive-variable.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 74 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md index 64754185393e98..7282826a32f540 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md @@ -64,4 +64,13 @@ Se a linguagem atuarl for, por exemplo, francês canadense (fr-ca), o comando de #### Ver também -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1105 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md index 599245ed444633..47cd70bcc61664 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md @@ -53,4 +53,14 @@ Se o comando for executado corretamente, a variável OK assume o valor 1\. Se *r #### Ver também -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 991 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md index c3431b8132c3be..45d8ecd73ffe3d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md @@ -38,4 +38,13 @@ nomeProcesso devolve o endereço IP do locker, p. ex. "127.0.0.1" #### Ver também [Locked](locked.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 353 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md index c651de238ecd53..14916159f93dc2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md @@ -89,4 +89,13 @@ Se o código é executado em um 4D Server e o bloqueio é causado por uma máqui #### Ver também -[Locked](locked.md) \ No newline at end of file +[Locked](locked.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1316 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked.md index db57fa3a89c26e..4cc9e656d20211 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked.md @@ -33,4 +33,13 @@ Durante uma transação, [LOAD RECORD](load-record.md) e Locked se utilizam com [Locked records info](locked-records-info.md) [LOAD RECORD](load-record.md) [LOCKED BY](locked-by.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 147 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md index 7ed3ab06619fb9..07a690004d2a5d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md @@ -63,3 +63,13 @@ Cada vez que se abre o banco de dados, esta informação será escrita no visor #### Ver também [SET DATABASE PARAMETER](set-database-parameter.md) + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 667 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md index b4448c1bad328f..2655ce52331019 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md @@ -95,4 +95,14 @@ Ocomando **LOG FILE TO JSON** modifica o valor das variáveis OK e Document: se #### Ver também -[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) \ No newline at end of file +[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1352 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md index 2c5c586e941100..1dae3982337cbe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md @@ -30,4 +30,14 @@ Se o banco de dados funciona com um arquivo de histórico, a variável de sistem #### Ver também -[SELECT LOG FILE](select-log-file.md) \ No newline at end of file +[SELECT LOG FILE](select-log-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 928 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log.md index f7958a93429fec..8ffeba8e63b6d1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log.md @@ -30,4 +30,13 @@ A linha a seguir mostra 1: #### Ver também -[Exp](exp.md) \ No newline at end of file +[Exp](exp.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 22 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md index 2f8a7edc631154..a753020113f45c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md @@ -34,4 +34,13 @@ Se quiser recuperar os números dos registros da seleção atual: #### Ver também -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 647 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md index 4f971bb0ebb4d2..170ebd3671628e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md @@ -113,4 +113,13 @@ Depois de executar esse código: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 550 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md index 3838cad1db03fd..b5621a85564331 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md @@ -46,4 +46,13 @@ Este exemplo compara os resultados obtidos de acordo com se é passado ou não o #### Ver também -[Uppercase](uppercase.md) \ No newline at end of file +[Uppercase](uppercase.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 14 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md index d3a327942876d7..82e43222957933 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md @@ -30,4 +30,13 @@ Ver exemplo do comando [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 546 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md index 725e5db6986ade..5515fcfda14c72 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md @@ -30,4 +30,13 @@ Ver exemplo do comando [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 544 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md index 8ee9af9d0b24cd..db64cd3686f801 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md @@ -30,4 +30,13 @@ Ver exemplo do comando [Shift down](shift-down.md). [Macintosh control down](macintosh-control-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 545 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md index 308cd5698d7a08..0a412189558809 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md @@ -111,3 +111,14 @@ Adicionar una estrela ao final de uma das duas sintaxes anteriores. #### Gestão de erros Em caso de erro, o comando gera um erro que pode interceptar através de um método instalado pelo comando [ON ERR CALL](on-err-call.md "ON ERR CALL"). + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1019 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/max.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/max.md index c9cd72068b341a..ffb73b06ea96d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/max.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/max.md @@ -69,4 +69,14 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri #### Ver também -[Min](min.md) \ No newline at end of file +[Min](min.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 3 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md index b6c5e523f7e981..92ad9e1c2c7a9e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando MAXIMIZE WINDOW provoca a expansão da janela cujo número de referência se passa em *janela*. Se for omitido este parâmetro, o efeito é o mesmo mas é aplicado a todas as janelas da aplicação (Windows) ou a janela do primeiro plano do processo atual (Mac OS). @@ -81,4 +78,13 @@ Neste contexto, se o usuário fizer clique no botão: [Is window maximized](is-window-maximized.md) [MINIMIZE WINDOW](minimize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 453 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md index 47b750b533c0e5..90c85fae3e8366 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md @@ -26,4 +26,13 @@ Depois que o comando for executado, as estatísticas são fornecidas nos arrays #### Ver também -[Cache info](cache-info.md) \ No newline at end of file +[Cache info](cache-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1118 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md index 7c831ea1185b05..8c7f274d87e0e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Menu bar height retorna a altura da barra menu, expressa em pixels. @@ -31,4 +28,13 @@ O comando retorna 0: [HIDE MENU BAR](hide-menu-bar.md) [Menu bar screen](menu-bar-screen.md) -[SHOW MENU BAR](show-menu-bar.md) \ No newline at end of file +[SHOW MENU BAR](show-menu-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 440 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md index ba18c2b63a9c0d..5ed0cde75698d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Menu bar screen devolve o número da tela onde está a barra de menus. @@ -25,4 +22,13 @@ displayed_sidebar: docs #### Ver também [Count screens](count-screens.md) -[Menu bar height](menu-bar-height.md) \ No newline at end of file +[Menu bar height](menu-bar-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 441 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md index a5451da373bae7..64e6f79abf1bc0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Menu selected é utilizado só quando são mostrados formulários. Esta função detecta o comando de menu escolhido no menu no caso de um submenu hierárquico, retorna a referência do submenu. @@ -63,4 +60,14 @@ O método a seguir de formulário utiliza Menu selected para proporcionar os arg #### Ver também -*Gestão de Menus* \ No newline at end of file +*Gestão de Menus* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 152 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/message.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/message.md index b3cba598d1b136..9d16b144435953 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/message.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/message.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **MESSAGE** geralmente se utiliza para informar ao usuário sobre alguma atividade. Mostra *mensagem* na tela em uma janela de mensagem especial que se abre e fecha cada vez que chamar a **MESSAGE**, a menos que trabalhe com uma janela que abriu previamente utilizando [Open window](open-window.md) (ver detalhes abaixo). A mensagem é temporária e é apagada assim que um formulário for exibido ou o método parar de executar. Se outra **MESSAGE** for executada, a mensagem antiga é apagada. @@ -114,4 +111,13 @@ O resultado é o seguinte (em Windows): [CLOSE WINDOW](close-window.md) [ERASE WINDOW](erase-window.md) [GOTO XY](goto-xy.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 88 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md index 49744c86fabd22..30ee528b30acf9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md @@ -64,4 +64,13 @@ O exemplo a seguir elimina os termômetros de progresso antes de realizar uma or #### Ver também -[MESSAGES ON](messages-on.md) \ No newline at end of file +[MESSAGES ON](messages-on.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 175 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md index f1f0949eb4c74f..bd39e5b0fcbafd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md @@ -18,4 +18,13 @@ displayed_sidebar: docs #### Ver também -[MESSAGES OFF](messages-off.md) \ No newline at end of file +[MESSAGES OFF](messages-off.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 181 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md index 947808166f624b..e3c039cb7f6cd3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md @@ -44,4 +44,13 @@ Este comando é particularmente útil no contexto de componentes porque lhe perm #### Ver também *Error Handler* -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 704 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md index 7abc3ef6639993..4f353a1cae4cf2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Method called on event devolve o nome do método instalado pelo comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL"). @@ -24,4 +21,13 @@ Se nenhum método do tipo for instalado, uma cadeia vazia ("") é retornada. #### Ver também -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 705 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md index 99cb9094b1e9de..f6038f4a4c2782 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando**METHOD Get attribute**retorna o valor do atributo *tipoAtributo* para o método projeto designado pelo parâmetro *rota*. @@ -43,4 +40,13 @@ O comando retorna **True** se for selecionado um atributo e **False** se for des #### Ver também -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1169 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md index dcf0b8badcb066..34deb7a53ea8e7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md @@ -58,4 +58,13 @@ Depois da execução, $att contém, por exemplo: #### Ver também -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1334 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md index 498b77abf72f6e..99a15eda04dea5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET CODE** devolve no parâmetro *codigo*, o conteúdo dos métodos designados pelo parâmetro *rota*. Este comando pode devolver o código de todos os tipos de métodos: métodos base, triggers, métodos projeto, métodos formulário e métodos objeto. @@ -126,4 +123,13 @@ O documento resultante conterá: #### Ver também [METHOD SET CODE](method-set-code.md) -*Usar tokens em fórmulas* \ No newline at end of file +*Usar tokens em fórmulas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1190 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md index 367f339996f237..6f794e76399b66 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET COMMENTS** devolve no parâmetro *comentários*, os comentários dos métodos designados pelo parâmetro *rota*. @@ -58,4 +55,13 @@ Se o comando é executado desde um componente, se aplica por defeito aos método #### Ver também -[METHOD SET COMMENTS](method-set-comments.md) \ No newline at end of file +[METHOD SET COMMENTS](method-set-comments.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1189 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md index 1a8789e7747cde..7c55d32383c73d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET FOLDERS** devolve no array *arrayNoms*, os nomes das pastas criadas na página Início do Explorador de 4D: @@ -31,4 +28,13 @@ Se executado este comando desde um componente, devolve por defeito os caminhos d #### Ver também -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1206 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md index 8bdbd08504df4e..a76fdb019d0b9f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET MODIFICATION DATE** retorna nos parâmetros *dataMod* e *horaMod* as datas e horários da última modificação dos métodos designados pelo parâmetro rota. @@ -70,3 +67,13 @@ Se quiser obter as datas de modificação dos métodos de um módulo com o prefi ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1170 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md index 18fbc96c61eaa9..2f6cc7b1093fed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md @@ -39,3 +39,13 @@ Exemplos de uso:   // Lista dos métodos projeto da base local que começam por uma cadeia específica  METHOD GET NAMES(t_Names;"web_@";*) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1166 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md index 6fd934b62743c2..bd092935a54c03 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD Get path** devolve a rota de acesso interna completa de um método. @@ -66,4 +63,13 @@ Se o comando for executado desde um componente, retorna como padrão as rotas do [Current method path](current-method-path.md) [METHOD OPEN PATH](method-open-path.md) -[METHOD RESOLVE PATH](method-resolve-path.md) \ No newline at end of file +[METHOD RESOLVE PATH](method-resolve-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1164 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md index 36fcd926e5e9fe..9043a2a870869d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET PATHS FORM** enche o array *arrRotas* com as rotas de acesso internas e os nomes dos métodos de todos os objetos dos formulários assim como também dos métodos formulário. Os métodos formulário se etiquetam {formMethod}. @@ -71,4 +68,13 @@ Lista de todos os objetos dos formulários "input" da tabela \[Empregados\] a pa #### Ver também -[FORM GET NAMES](form-get-names.md) \ No newline at end of file +[FORM GET NAMES](form-get-names.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1168 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md index c6e16d84cd1ebe..f7cb893e87dc32 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET PATHS** enche o array *arrRotas* com as rotas de acesso internas e os nomes dos métodos da aplicação do tipo definido pelo parâmetro *tipoMetodo*. @@ -86,4 +83,13 @@ Consulte o exemplo do comando [METHOD SET CODE](method-set-code.md). #### Ver também [Current method path](current-method-path.md) -[METHOD GET FOLDERS](method-get-folders.md) \ No newline at end of file +[METHOD GET FOLDERS](method-get-folders.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1163 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md index 9256b90613fc3d..905a64c8395c03 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD OPEN PATH** abre, no editor de métodos de 4D, o método cuja rota de acesso interna é passada no parâmetro *rota*. @@ -31,4 +28,13 @@ Pode executar este comando desde um componente, mas neste caso, deve passar o pa #### Ver também *Design Object Access Commands* -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1213 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md index 954dd453182f47..19e304933643eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD RESOLVE PATH** analisa a rota de acesso interna passada no parâmetro *rota* e devolve seus diferentes componentes nos parâmetros *tipoMetodo*, *ptrTabela*, *nomObjeto* e *nomObjetoForm*. @@ -85,4 +82,13 @@ Resolução de uma rota de método de formulário tabela: #### Ver também -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1165 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md index 2abb70f1c612f0..cd7d0f00f951ba 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD SET ACCESS MODE** permite definir o comportamento de 4D quando intenta acessar em escritura a um objeto que já foi carregado em modificação por outro usuário ou processo . O alcance deste comando é a sessão atual. @@ -27,3 +24,13 @@ Em *modo*, passe uma das seguintes constantes do tema *Design Object Access*: | On object locked abort | Inteiro longo | 0 | A carga do objeto se aborta (funcionamento por defeito) | | On object locked confirm | Inteiro longo | 2 | 4D mostra uma caixa de diálogo permitindo-lhe eleger entre intentar novamente o abortar. Em modo remoto, esta opção não é suportada (a carga se abandona) | | On object locked retry | Inteiro longo | 1 | 4D tenta carregar o objeto até que seja liberado | + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1191 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md index a11d72e171ffec..e7779da73e6286 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD SET ATTRIBUTE** permite definir o valor do atributo tipoAtrib para o método projeto designado pelo parâmetro *rota*. Este comando somente funciona com métodos projeto. Se passar uma rota não válida, um erro é gerado. @@ -69,4 +66,13 @@ Definição de vários pares de atributos/valores: *Design Object Access* [METHOD Get attribute](method-get-attribute.md) -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1192 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md index 315deb99bc286a..ad6044d41ba46f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O novo comando **METHOD SET ATTRIBUTES** permite que você defina os valores dos *atributos* para os métodos especificados no parâmetro *caminho*. @@ -62,4 +59,13 @@ Se você desejar modificar apenas um atributo: #### Ver também [METHOD GET ATTRIBUTES](method-get-attributes.md) -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1335 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md index 899a4b2950c9f2..712f8f5d6f4901 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD SET CODE** modifica o código dos métodos designados pelo parâmetro *rota* com o conteúdo passado no parâmetro *codigo*. Este comando pode acessar ao código de todos os tipos de métodos: métodos de banco, triggers, métodos projeto, métodos formulário e métodos objeto. Se um método não existir, é criado com os conteúdos *codigo*. @@ -98,4 +95,13 @@ Este exemplo exporta e importa a totalidade dos métodos projeto de uma aplicaç #### Ver também -[METHOD GET CODE](method-get-code.md) \ No newline at end of file +[METHOD GET CODE](method-get-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1194 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md index 5c5193546f92d5..3554435048afab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD SET COMMENTS** substitui os comentários dos métodos designados pelo parâmtero *rota* pelos definidos no parâmetro *comentarios*. @@ -71,4 +68,13 @@ Pode executar o comando de uma componente, mas neste caso você deve passar o pa #### Ver também -[METHOD GET COMMENTS](method-get-comments.md) \ No newline at end of file +[METHOD GET COMMENTS](method-get-comments.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1193 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md index 1811cf2b032219..784b453b5b2846 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md @@ -46,4 +46,13 @@ O código abaixo espera até 5 segundos para que um registro bloqueado seja desb [Current time](current-time.md) [Tickcount](tickcount.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 459 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/min.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/min.md index 4597575c7ce959..97db3c2a9e74f5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/min.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/min.md @@ -77,4 +77,14 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri #### Ver também -[Max](max.md) \ No newline at end of file +[Max](max.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 4 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md index a76cb35f1d45d0..c15afe2de80160 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando MINIMIZE WINDOW define o tamanho da janela, cujo número foi passado em *janela*, do tamanho que tinha antes de ser maximizada. Se for omitido janela, o comando aplica a cada janela da aplicação (Windows) ou a janela do primeiro plano do processo atual (em Mac OS). @@ -52,4 +49,13 @@ Mac OS #### Ver também [MAXIMIZE WINDOW](maximize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 454 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md index 9d01e7d2c0fffb..c18b9336d11465 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md @@ -44,4 +44,13 @@ Se quiser resetar todas as sessões atuais para todas as aplicações móveis: #### Ver também -[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) \ No newline at end of file +[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1596 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mod.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mod.md index 8fd7f2af12b71f..cb54b2753a539e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mod.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mod.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando Mod retorna o resto da divisão inteira de *numero1* por *numero2*. - -**Notas:** +O comando Mod retorna o resto da divisão inteira de *numero1* por *numero2*. • Mod aceita expressões de tipo Inteiro, Inteiro longo e Reais. Entretanto, se *numero1* ou *numero2* são números reais, os números são arredondados primeiro e depois Mod é calculado. • Seja cuidadoso quando utilize Mod com números reais de grande tamanho (acima de 2^31), já que neste caso, sua operação poderia alcançar os limites das capacidades de cálculo dos processadores padrão. @@ -36,3 +34,13 @@ O exemplo a seguir ilustra o funcionamento de Mod com diferentes argumentos. Cad  vlResult:=Mod(4;2) // vlResult vale 0  vlResult:=Mod(3.5;2) // vlResult vale 0 ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 98 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md index 9558179ff82b9b..0aff1a38a806d3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md @@ -41,4 +41,13 @@ O exemplo a seguir mostra uma utilização típica de Modified record: [Modified](modified.md) [Old](old.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 314 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified.md index 6f9e330dcad427..fcdb6262517891 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Modified** retorna [True](true.md "True") se um valor tiver sido atribuído por programação a *campo* ou se tiver sido modificado durante a entrada de dados. O comando **Modified**deve ser utilizado unicamente em um método de formulário (ou uma subrotina chamada por um método de formulário). @@ -69,4 +66,13 @@ Seleciona um registro para a tabela *\[umaTabela\]*, depois chama múltiplas sub #### Ver também [Form event code](../commands/form-event-code.md) -[Old](old.md) \ No newline at end of file +[Old](old.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 32 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md index 32e15d9148eec3..9ed0b760be6a98 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando MODIFY RECORD permite ao usuário modificar o registro atual da tabela *tabela* ou da tabela por padrão se é omitido o parâmetro *tabela*. MODIFY RECORD carrega o registro, se não for carregado pelo processo atual e mostra o formulário de entrada atual. Se não houver registro atual, então MODIFY RECORD não faz nada. MODIFY RECORD não afeta a seleção atual. @@ -50,4 +47,15 @@ A variável sistema OK toma o valor 1 se aceitar o registro e 0 se o cancelar. A [Locked](locked.md) [Modified record](modified-record.md) [READ WRITE](read-write.md) -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 57 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md index 4d8dc918d50b54..c3e81b28a1d3d1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição MODIFY SELECTION é quase idêntico ao comando [DISPLAY SELECTION](display-selection.md). Consulte a descrição do comando [DISPLAY SELECTION](display-selection.md) para uma descrição detalhada. As diferenças entre os dois comandos são: . @@ -32,4 +29,14 @@ displayed_sidebar: docs *Conjuntos* [DISPLAY SELECTION](display-selection.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 204 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md index 8f1d6b2f39c971..352d008751c988 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md @@ -134,4 +134,13 @@ Ver exemplos para **[START MONITORING ACTIVITY](start-monitoring-activity.md)** #### Ver também [START MONITORING ACTIVITY](start-monitoring-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1713 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md index 2f5f67a179f68e..8d4eca233b2c94 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando Month of retorna o mês de *data*. - -**Nota:** Month of retorna o número do mês, não o nome. (ver exemplo 1). +O comando Month of retorna o mês de *data*.Month of retorna o número do mês, não o nome. (ver exemplo 1). Para comparar o valor retornado por esta função, 4D oferece as seguintes constantes pré-definidas, que se encontram no tema "Days and Months": @@ -53,4 +51,13 @@ Ver o exemplo do comando [Current date](current-date.md "Current date"). #### Ver também [Day of](day-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 24 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md index 08fd62f21eec05..fab938e3b4c780 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md @@ -40,4 +40,13 @@ Ver o exemplo do comando [Pop up menu](pop-up-menu.md). [ON EVENT CALL](on-event-call.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 468 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md index 94a794cc00f9c5..7f3b630d785a4f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md @@ -50,4 +50,14 @@ O exemplo abaixo move o documento DocNome: #### Ver também -[COPY DOCUMENT](copy-document.md) \ No newline at end of file +[COPY DOCUMENT](copy-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 540 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md index 22dac32ccddf89..f0c33853baf6fb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md @@ -114,4 +114,13 @@ Se quiser que o array de nomes seja usado como um terceiro critério de ordenaç [ORDER BY](order-by.md) [SELECTION TO ARRAY](selection-to-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 718 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md index ed3c5aa64fd164..ec36a10b7781e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md @@ -54,4 +54,13 @@ Se quiser salvar uma chave de criptografia em um arquivo .4DKeyChain: [Discover data key](discover-data-key.md) [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[Register data key](register-data-key.md) \ No newline at end of file +[Register data key](register-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1611 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md index 5e9c26c7c8d1b2..d42710913eae5d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição New list cria uma nova lista hierárquica vazia em memória e retorna seu número de referência único. @@ -46,4 +43,13 @@ Ver o exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST"). [DELETE FROM LIST](delete-from-list.md) [INSERT IN LIST](insert-in-list.md) [LIST TO BLOB](list-to-blob.md) -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 375 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md index 522a3be91b1ebf..fe40095d56ba69 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-log-file.md @@ -30,3 +30,14 @@ O arquivo é renomeado com os números de backups atuais do banco de dados e o a Caso se apresente um erro, o comando gera um código que pode ser interceptado utilizando o comando [ON ERR CALL](on-err-call.md "ON ERR CALL"). + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 926 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md index e6bf14783e5de6..b7ac374a1fe57b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md @@ -107,4 +107,13 @@ Com este comando, pode fácilmente manejar objetos em loops: #### Ver também -[New shared object](new-shared-object.md) \ No newline at end of file +[New shared object](new-shared-object.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1471 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md index 7c9968ea0b30c6..de5334d92871e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md @@ -105,4 +105,13 @@ No editor de barras de menus, pode substituir ADICIONAR CLIENTES pelo método IN [Execute on server](execute-on-server.md) *Processos* -*Processos 4D Preemptivos* \ No newline at end of file +*Processos 4D Preemptivos* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 317 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md index 883d774b42a719..f8a1917f38e17b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md @@ -66,4 +66,13 @@ Se quiser criar e modificar um objeto compartido. A estrutura deve ser chamada p [New object](new-object.md) [New shared collection](new-shared-collection.md) -*Objetos compartidos e Coleções compartidas* \ No newline at end of file +*Objetos compartidos e Coleções compartidas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1526 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md index 960b2b853264ae..6dac254ee1e9bc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md @@ -29,4 +29,14 @@ Ver o exemplo do comando [DISPLAY RECORD](display-record.md "DISPLAY RECORD"). [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 51 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md index 5e0dbed4ccabb3..eff0ff20d08ed5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição @@ -25,4 +22,13 @@ O comando Next window devolve o número de referência da janela localizada “a #### Ver também -[Frontmost window](frontmost-window.md) \ No newline at end of file +[Frontmost window](frontmost-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 448 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md index 981ccf6093f82f..13333dae89083b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md @@ -41,4 +41,13 @@ Em um banco que contenha um formulário de projeto chamado "oFormulário" e um f #### Ver também -[DEFAULT TABLE](default-table.md) \ No newline at end of file +[DEFAULT TABLE](default-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 993 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/not.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/not.md index 0160c4ebf22de7..cff138a46bd08b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/not.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/not.md @@ -31,4 +31,13 @@ Este exemplo atribui primeiro Verdadeiro a uma variável, logo muda o valor da v #### Ver também [False](false.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 34 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md index 732ebb89b233b2..8670d49d29c6fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando NOTIFY RESOURCES FOLDER MODIFICATION "força" 4D Server a enviar uma notificação a todas as máquinas conectadas a 4D, indicando que a pasta de Resources do banco de dados foi modificada de modo que eles possam sincronizar sua pasta de recursos locais. @@ -35,4 +32,13 @@ O parâmetro atual pode estar definido: #### Ver também -[Get 4D folder](get-4d-folder.md) \ No newline at end of file +[Get 4D folder](get-4d-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1052 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/null.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/null.md index af13662050b843..ed603440591805 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/null.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/null.md @@ -129,4 +129,13 @@ Abaixo os diferentes resultados do comando [Undefined](undefined.md) assim como [Is field value Null](is-field-value-null.md) [OB SET NULL](ob-set-null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1517 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/num.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/num.md index 1f267edccb9c61..80278a68706bd6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/num.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/num.md @@ -84,4 +84,13 @@ Este exemplo compara os resultados obtidos dependendo do separador “atual”: [Bool](bool.md) [GET SYSTEM FORMAT](get-system-format.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 11 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md index 2cb59ba01c69c8..45260d36edeb84 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md @@ -42,4 +42,13 @@ Depois, em um método, pode escrever: #### Ver também -[OB Instance of](ob-instance-of.md) \ No newline at end of file +[OB Instance of](ob-instance-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1730 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md index dd8b09e4c429a0..01237538bc216b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md @@ -20,9 +20,6 @@ displayed_sidebar: docs #### Descrição O comando **OB Copy** devolve um objeto que contém uma cópia completa das propriedades, sub objetos e valores de *objeto*. - -* Primeira sintaxe: **OB Copy(object{; resolvePtrs})** - Se o *objeto* conter valores de tipo de ponteiro, por padrão a cópia também contém os ponteiros. No entanto, pode resolver os ponteiros ao momento da cópia passando **True** no parâmetro *resolvePont*. Neste caso, cada ponteiro presente como valor em objeto se avalia ao momento da cópia e utiliza seu valor não referenciado. @@ -167,4 +164,13 @@ Imagine que queira copiar *$sharedObj* em *$sharedCol mas* como eles pertencem a #### Ver também [OB Get](ob-get.md) -*Objetos compartidos e Coleções compartidas* \ No newline at end of file +*Objetos compartidos e Coleções compartidas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1225 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md index dedcf9bfae2bb4..c9054193ac40e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OB Entries** retorna uma coleção de objetos contendo os conteúdos de *objeto* como pares de propriedade key/value. @@ -56,4 +53,13 @@ Usando um objeto com um map hash (sistema key/value) oferece um acesso rápido e #### Ver também [OB Keys](ob-keys.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1720 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md index b1c438a9876a97..e4a35edfd6a3a4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB GET ARRAY** recupera em *array*, o array de valores armazenados na *propriedade* do objeto de linguagem designado pelo parâmetro *objeto*. - -*objeto* deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. +O comando **OB GET ARRAY** recupera em *array*, o array de valores armazenados na *propriedade* do objeto de linguagem designado pelo parâmetro *objeto*.deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. No parâmetro *propriedade*, passe a etiqueta da propriedade a ler. Tenha em conta que o parâmetro *propriedade* leva em conta as maiúsculas e minúsculas. @@ -52,4 +50,13 @@ Queremos mudar um valor no primeiro elemento do array: #### Ver também *Conversões de Tipo entre coleções e arrays 4D* -[OB SET ARRAY](ob-set-array.md) \ No newline at end of file +[OB SET ARRAY](ob-set-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1229 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md index c81839ceee0bda..fcdd719ee50bed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB GET PROPERTY NAMES** devolve, em *arrProp*, os nomes das propriedades contidas no objeto de linguagem designados pelo parâmetro *objeto* . - -*objeto* deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. +O comando **OB GET PROPERTY NAMES** devolve, em *arrProp*, os nomes das propriedades contidas no objeto de linguagem designados pelo parâmetro *objeto* .deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. Passe um array texto no parâmetro *arrProp*. Se o array não existe, o comando cria e o redimensiona de forma automática. @@ -98,4 +96,13 @@ Utilizando um elemento de array de objetos: #### Ver também [OB Get type](ob-get-type.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1232 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md index 8e2ba545e63110..97e691fbfaaa8d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB Get type** devolve o tipo do valor associado a *propriedade* do *objeto*. - -*objeto* deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. +O comando **OB Get type** devolve o tipo do valor associado a *propriedade* do *objeto*.deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. No parâmetro *propriedade*, passe a etiqueta da propriedade cujo tipo quer conhecer. Tenha em conta que o parâmetro *propriedade* leva em conta as maiúsculas e minúsculas. @@ -54,4 +52,13 @@ Queremos obter o tipo de valores padrão: #### Ver também [OB GET PROPERTY NAMES](ob-get-property-names.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1230 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md index f5722a74c963f5..8662dc28a7c367 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB Get** devolve o valor atual da *propriedade* do *objeto*, convertido opcionalmente no *tipo* definido. - -*objeto* deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. +O comando **OB Get** devolve o valor atual da *propriedade* do *objeto*, convertido opcionalmente no *tipo* definido.deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. **Nota:** este comando suporta definições de atributo em *objetos* 4D Write Pro, como o comando *WP GET ATTRIBUTES* (ver o exemplo 9). . @@ -221,4 +219,13 @@ Se quiser conhecer o tamanho de uma imagem armazenada em um atributo objeto: [OB Copy](ob-copy.md) [OB SET](ob-set.md) -*Tipos de campos e variáveis* \ No newline at end of file +*Tipos de campos e variáveis* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1224 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md index 487d1c6fc5ad09..5cbdd133772ef2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md @@ -52,4 +52,13 @@ Depois em um método, pode escrever: #### Ver também -[OB Class](ob-class.md) \ No newline at end of file +[OB Class](ob-class.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1731 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md index 1be1247c72397c..da412e26b83d51 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando**OB Is defined** devolve **True** se *objeto* ou *propriedade* se definem e **False** em caso contrário. - -*objeto* deve ter sido criado com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. +O comando**OB Is defined** devolve **True** se *objeto* ou *propriedade* se definem e **False** em caso contrário.deve ter sido criado com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. Por padrão, se omitir o parâmetro *propriedade*, o comando comprova que *objeto* esteja definido. Um objeto está definido se seu conteúdo foi inicializado. @@ -61,4 +59,13 @@ Esta prova é equivalente a: #### Ver também -[OB Is empty](ob-is-empty.md) \ No newline at end of file +[OB Is empty](ob-is-empty.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1231 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md index 92cca9f9754563..79453f09f6d2c1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB Is empty** devolve **True** se *objeto* não está definido ou está vazio, e **False** se *objeto* está definido (inicializado) e contém ao menos uma propriedade. - -*objeto* deve ter sido criado com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. +O comando **OB Is empty** devolve **True** se *objeto* não está definido ou está vazio, e **False** se *objeto* está definido (inicializado) e contém ao menos uma propriedade.deve ter sido criado com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. #### Exemplo @@ -42,4 +40,13 @@ Estes são os diferentes resultados deste comando como também do comando [OB Is #### Ver também -[OB Is defined](ob-is-defined.md) \ No newline at end of file +[OB Is defined](ob-is-defined.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1297 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md index d6e628992e90b3..d0079a2eff5dee 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md @@ -19,3 +19,13 @@ displayed_sidebar: docs O comando **OB Is shared** devolve **True** se o objeto ou coleção *aVerificar* é compartido, e **False** em caso contrário (ver *Objetos compartidos e Coleções compartidas*). Este comando devolve **True** se for passado uma seleção de entidades compaível em *aVerificar* (ver ). + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1759 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md index f3395a708bddfa..aba1eae9162547 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OB Keys** retorna uma coleção de strings contendo todos os nomes de propriedade enumeráveis do *objeto*. @@ -48,4 +45,13 @@ Se quiser uma coleção com todos os nomes de propriedade de primeiro-nível de #### Ver também [OB Entries](ob-entries.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1719 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md index 70d24ec67b8f41..67ce69d8cceed7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md @@ -36,4 +36,13 @@ Você quer eliminar a propriedade "idade" de um objeto: #### Ver também -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1226 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md index 19badcd43a2d05..639f623a3c3395 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB SET ARRAY** define o *array* a ser associado a *propriedade* no objeto definido pelo parâmetro *objeto*. - -*objeto* deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. +O comando **OB SET ARRAY** define o *array* a ser associado a *propriedade* no objeto definido pelo parâmetro *objeto*.deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. No parâmetro *propriedade*, passe a etiqueta da propriedade a criar ou modificar. Se a propriedade já existe em *objeto*, seu valor se atualiza. Se não existe, é criado. Tenha em conta que o parâmetro *propriedade* leva em conta as maiúsculas e minúsculas. @@ -131,4 +129,13 @@ Usar um array de imagem: *Conversões de Tipo entre coleções e arrays 4D* [OB GET ARRAY](ob-get-array.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1227 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md index fd2e9602ad383f..148099c0e90058 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB SET NULL** armazena o valor **null** no objeto de linguagem designado pelo parâmetro *objeto* . - -*objeto* deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. +O comando **OB SET NULL** armazena o valor **null** no objeto de linguagem designado pelo parâmetro *objeto* .deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. No parâmetro *propriedade*, passe a etiqueta da propriedade na que deseja armazenar o valor **null**. Se a propriedade já existe em *objeto*, seu valor se atualiza. Se não existe, é criada. Tenha em conta que o parâmetro *propriedade* tem em conta as maiúsculas e minúsculas. @@ -40,4 +38,13 @@ Queremos colocar o valor nulo na propriedade "idade" para Lea: [Null](null.md) [OB GET PROPERTY NAMES](ob-get-property-names.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1233 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md index c3fba845c66671..17c862c2a279b6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB SET** cria ou modifica um ou mais pares de *propriedade*/*valor* no objeto de linguagem designado pelo parâmetro *objeto*. - -*objeto* deve ter sido definido usando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. +O comando **OB SET** cria ou modifica um ou mais pares de *propriedade*/*valor* no objeto de linguagem designado pelo parâmetro *objeto*.deve ter sido definido usando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. No parâmetro *propriedade*, passe a etiqueta da propriedade a criar ou modificar. Se a propriedade já existe em *objeto*, seu valor se atualiza. Se não existe, é criado. @@ -199,4 +197,13 @@ Se quiser armazenar uma imagem em um campo objeto. Pode escrever: [OB Get](ob-get.md) [OB REMOVE](ob-remove.md) [OB SET ARRAY](ob-set-array.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1220 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md index 689c370371801f..cc8a394c03bd21 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OB Values** retorna uma coleção de variantes contendo todas os valores de propriedade enumeráveis de *objeto*. @@ -46,4 +43,13 @@ Se quiser uma coleção com todos os valores de propriedade de um objeto: #### Ver também [OB Entries](ob-entries.md) -[OB Keys](ob-keys.md) \ No newline at end of file +[OB Keys](ob-keys.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1718 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md index 9f09c6f0b1fe41..e8fee872fe6120 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT DUPLICATE permite criar uma cópia do objeto designado pelo parâmetro *objeto* no contexto do formulário que está sendo executado (modo Aplicação). O formulário de origem, gerado em modo Desenho, não se modifica. @@ -102,4 +99,14 @@ Criação de um novo botão opção "bRadio6" baseado no botão opção existent [OBJECT Get pointer](object-get-pointer.md) [OBJECT MOVE](object-move.md) -*Objetos de formulário (Acesso)* \ No newline at end of file +*Objetos de formulário (Acesso)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1111 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md index 393e0ff1c839e3..501a45234a9fb6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get action** devolve o nome e (se for o caso) o parâmetro da ação padrão associada com o objeto designado pelos parâmetros *objeto e* *\**. @@ -45,4 +42,13 @@ Se quiser associar a ação "Cancelar" com todos os objetos no formulário que a #### Ver também -[OBJECT SET ACTION](object-set-action.md) \ No newline at end of file +[OBJECT SET ACTION](object-set-action.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1457 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md index e06054746bb059..16a48a8eec8306 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get auto spellcheck** devolve o estado da opção Correção ortográfica automática do ou dos objeto(s) designado(s) pelos parâmetros *objeto* e *\** para o processo atual . @@ -28,4 +25,13 @@ O comando devolve **True** quando a correção ortográfica automática está at #### Ver também -[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) \ No newline at end of file +[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1174 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md index d6c2e236be3204..a0590244ab918e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET BEST SIZE** devolve nos parâmetros *largOpt* e *altOpt*, a largo e alto “ótimo” do objeto de formulário designado pelos parâmetros *\** e *objeto*. Estes valores se expressan em píxeles. Este comando é particularmente útil para a visualização ou impressão de relatórios complexos, associados ao comando [OBJECT MOVE](object-move.md). @@ -53,4 +50,13 @@ Consulte o exemplo no comando [SET PRINT MARKER](set-print-marker.md "SET PRINT #### Ver também [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 717 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md index 5c0f95a4b025b5..40b0c28de76627 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get border style** devolve o estilo de linha de borde do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\**. @@ -40,4 +37,13 @@ O comando devolve um valor que corresponde ao estilo da linha fronteira. Pode co #### Ver também -[OBJECT SET BORDER STYLE](object-set-border-style.md) \ No newline at end of file +[OBJECT SET BORDER STYLE](object-set-border-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1263 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md index d5193a16892981..6cd12b7541ef94 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get context menu** devolve o estado atual da opção "Menú contextual" do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -30,4 +27,13 @@ O comando devolve **True** se o menu contextual está ativo para o objeto e **Fa #### Ver também -[OBJECT SET CONTEXT MENU](object-set-context-menu.md) \ No newline at end of file +[OBJECT SET CONTEXT MENU](object-set-context-menu.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1252 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md index 7e65c6eaf5cda9..ab94394f2136b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET COORDINATES** devolve as coordenadas *esquerda*, *superior*, *direita* e *inferior* (em pontos) nas variáveis ou campos dos objetos do formulário atual definido pelos parâmetros *\** e *objeto*. @@ -86,4 +83,13 @@ O método devolve as coordenadas teóricas. Se o listbox é redimensionado, pode [CONVERT COORDINATES](convert-coordinates.md) [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) [OBJECT MOVE](object-move.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 663 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md index 5ebac7a6903819..c07b2d47bd7e47 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get corner radius** devolve o valor atual do rádio da esquina para o objeto retângulo arredondado cujo nome se passar no parâmetro *objeto*. Este valor pode ter sido definido a nível do formulário utilizando a lista de propriedades (ver *Rádio da esquina (retângulos)*), ou para o processo atual com o comando [OBJECT SET CORNER RADIUS](object-set-corner-radius.md). @@ -48,4 +45,13 @@ O seguinte código pode ser adicionado a um método button: #### Ver também -[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) \ No newline at end of file +[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1324 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md index c10cc85b0e5f0c..293ed3ba70aeec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get data source** devolve a fonte de dados atual dos objetos designados pelos parâmetros *objeto* e *\** . @@ -43,4 +40,13 @@ Executa o seguinte código: #### Ver também -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1265 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md index 6e772e15845cd2..89108af0efe864 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET DRAG AND DROP OPTIONS** devolve as opções de arrastar e soltar para o objeto o os objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -38,4 +35,13 @@ Cada parâmetro devolve True ou False dependendo se a opção correspondente est #### Ver também -[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) \ No newline at end of file +[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1184 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md index e69f4af2875f32..09ce26cb2f6643 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get enabled devolve True se o objeto ou grupo de objetos designado por objeto está ativo no formulário e False se não está ativo. @@ -36,4 +33,13 @@ Este comando pode ser aplicado aos seguintes tipos de objetos: #### Ver também -[OBJECT SET ENABLED](object-set-enabled.md) \ No newline at end of file +[OBJECT SET ENABLED](object-set-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1079 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md index 3a3c53936b630f..22e7490a6d0178 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get enterable devolve True se o objeto ou grupo de objetos designado por *objeto* tem o atributo **editável**; do contrário, devolve False. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d #### Ver também -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1067 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md index 7d7c7feb01c584..8778b2a138f1c5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET EVENTS** permite obter a configuração atual dos eventos formulário do formulário, do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\**. @@ -48,4 +45,13 @@ Você quer ativar dois eventos e obter a lista de eventos para um objeto: #### Ver também -[OBJECT SET EVENTS](object-set-events.md) \ No newline at end of file +[OBJECT SET EVENTS](object-set-events.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1238 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md index 2b85ce4061acd6..c2e90cec6cd5b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get filter devolve o nome de todo filtro associado com o objeto ou grupo de objetos designado por *objeto*. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d #### Ver também -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1073 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md index 11d06232b6c0be..b5cf9b3a6f658d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get focus rectangle invisible** devolve o estado da opção de invisibilidade do retângulo de foco do objeto e dos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. Esta configuração corresponde à opção **Ocultar retângulo de foco** disponível para os objetos editados na Lista de propriedades em modo Desenho. Este comando devolve o estado atual da opção, como se definiu em modo Desenho ou utilizando o comando [OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md). @@ -30,4 +27,13 @@ O comando devolve **True** se o retângulo de foco está oculto e **False** quan #### Ver também -[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1178 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md index aea5fe10ec60e8..f419e134a0fac2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get font size devolve o tamanho (em pontos) da fonte utilizada pelo objeto de formulário designado por *objeto*. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d #### Ver também -[OBJECT SET FONT SIZE](object-set-font-size.md) \ No newline at end of file +[OBJECT SET FONT SIZE](object-set-font-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1070 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md index 48b76b8e49b580..617c068632d5bf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get font style devolve o estilo atual da fonte utilizada pelo objeto de formulário designado por *objeto*. @@ -35,4 +32,13 @@ Pode comparar o valor retornado pelo comando com o valor de um ou mais das segui #### Ver também -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1071 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md index 7257bac123e377..f7c10ff1b5ac61 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get font devolve o nome da fonte utilizada pelo objeto de formulário designado por *objeto*. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d #### Ver também -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1069 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md index b756f2e7bc41b6..d2c7de320f34ed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get format** devolve o formato de saída atual aplicado ao objeto especificado no parâmetro *objeto*. @@ -65,4 +62,13 @@ Customized formats are returned untouched: #### Ver também -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 894 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md index 8bac06d2dc26b3..e2ec3d9a252758 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get help tip** devolve a mensagem de ajuda associado ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** no processo atual. @@ -38,4 +35,13 @@ O título de um botão imagem é guardado em forma de mensagem de ajuda. Este t #### Ver também -[OBJECT SET HELP TIP](object-set-help-tip.md) \ No newline at end of file +[OBJECT SET HELP TIP](object-set-help-tip.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1182 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md index f68248ab20dc0d..a2c4d4f995a789 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get horizontal alignment** devolve um código indicando o tipo de alinhamento aplicado ao objeto designado pelos parâmetros *objeto* e *\**. @@ -57,4 +54,13 @@ Os objetos de formulário aos quais se pode aplicar alinhamento são os seguinte [OBJECT Get vertical alignment](object-get-vertical-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 707 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md index 404396c3666584..627f126839fed5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get indicator type** devolve o tipo do indicador atual atribuído ao termômetro(s) designado pelos parâmetros *objeto* e *\**. @@ -36,4 +33,13 @@ Pode comparar o valor devolvido pelo comando com as seguintes constantes, que se #### Ver também -[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) \ No newline at end of file +[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1247 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md index dfba5763a45705..4ab452eae063be 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get keyboard layout** devolve a configuração do teclado atual associada aos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -28,4 +25,13 @@ O comando devolve uma cadeia indicando o código da linguagem utilizada, baseado #### Ver também -[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) \ No newline at end of file +[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1180 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md index a76ab119b479b0..ee9fe2eab94837 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get list name devolve o nome da lista associada ao objeto ou a um grupo de objetos designados por *objeto*. 4D lhe permite associar uma lista de opções (criada com o editor de listas em modo Desenho) com objetos de formulário utilizando o editor de formulários ou o comando [OBJECT SET LIST BY NAME](object-set-list-by-name.md). @@ -39,4 +36,13 @@ Se nenhuma lista do tipo definido está associada ao *objeto*, o comando devolve #### Ver também [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1072 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md index 6782c586de0157..fbaf6856a9bb30 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get list reference** devolve o número de referência (*RefList*) da lista hierárquica associada ao objeto ou grupo de objetos designados pelos parâmetros *objeto* e *\** . @@ -39,4 +36,13 @@ Se não há uma lista hierárquica associada ao objeto para o *tipoLista* defini #### Ver também [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1267 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md index 243afd5395663b..e5898ffd210651 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET MAXIMUM VALUE** devolve, na variável *valorMax*, o valor máximo atual do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\**. @@ -29,4 +26,13 @@ Se passar o parâmetro opcional *\** indica que o parâmetro *objeto* é um nome #### Ver também [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1245 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md index 9eb88eae3d8109..c97375868186c4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET MINIMUM VALUE** devolve, na variável *valorMin*, o valor mínimo atual do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\**. @@ -29,4 +26,13 @@ Se passar o parâmetro opcional *\** indica que o parâmetro *objeto* é um nome #### Ver também [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1243 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md index 286776291b0300..014eb5a1eebbfa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get multiline** devolve o estado atual da opção "Multi linha" do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -39,4 +36,13 @@ O valor devolvido corresponde a uma das seguintes constantes do tema "*Proprieda #### Ver também -[OBJECT SET MULTILINE](object-set-multiline.md) \ No newline at end of file +[OBJECT SET MULTILINE](object-set-multiline.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1254 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md index 49c3ee59afe79c..a9b6921f15c284 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get name retorna o nome de um objeto de formulário. @@ -40,4 +37,13 @@ Depois da execução deste método objeto, a variável *$btnName* contém o valo [OBJECT Get pointer](object-get-pointer.md) *Objetos (Formulários)* -*Objetos de formulário (Acesso)* \ No newline at end of file +*Objetos de formulário (Acesso)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1087 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md index f60bd8a9c62c01..8e7f49fe41f6d7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get placeholder** devolve o texto de exemplo associado ao objeto ou aos objetos designado(s) pelos parâmetros *objeto* e *\**. Se não há nenhum texto do marcador associado com o objeto, o comando devolve uma cadeia vazia. @@ -38,4 +35,13 @@ Se quer receber o texto do marcador de campo: #### Ver também -[OBJECT SET PLACEHOLDER](object-set-placeholder.md) \ No newline at end of file +[OBJECT SET PLACEHOLDER](object-set-placeholder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1296 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md index 0e04673bf9c44a..6ec11b651f0d3c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get pointer retorna um ponteiro à variável de um objeto de formulário. @@ -57,4 +54,13 @@ Dado um formulário "SF" utilizado duas vezes como sub-formulário no mesmo form [OBJECT Get subform container value](object-get-subform-container-value.md) *Objetos (Formulários)* *Objetos de formulário (Acesso)* -[Self](self.md) \ No newline at end of file +[Self](self.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1124 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md index a67ca96230a976..1e9c75e109d0d8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET PRINT VARIABLE FRAME** obtém a configuração atual das opções de impressão em tamanho variável do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -37,4 +34,13 @@ Se o *objeto* é um sub formulário e se a impressão em tamanho variável está #### Ver também -[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) \ No newline at end of file +[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1241 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md index 6cca0fa343caeb..6092c043808f13 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET RESIZING OPTIONS** devolve as opções de redimensionar atualmente os objetos designados pelos parâmetros *objeto* e *\**. @@ -45,4 +42,13 @@ O parâmetro *vertical* devolve um valor indicando a opção de redimensionament #### Ver também -[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) \ No newline at end of file +[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1176 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md index 013b036cb92768..07ede60ad1bff3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT GET RGB COLORS devolve as cores de fundo e primeiro plano do objeto ou grupo de objetos designados por *objeto*. @@ -37,4 +34,13 @@ Para obter mais informação sobre do formato dos parâmetros *corPrimeiroPlano* #### Ver também -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1074 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md index 802970bcfe3988..0e4dcde99c03f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OBJECT GET SCROLL POSITION devolve, nos parâmetros *vPosição* e *hPosição*, informação relacionada com a posição das barras de rolagem do objeto de formulário designado pelos parâmetros *\** e *objeto*. @@ -33,4 +30,13 @@ Se *objeto* designa uma imagem (variável ou campo), *vPosição* retorna o movi #### Ver também -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1114 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md index 8b69c3583b641e..14bf718c378c07 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT GET SCROLLBAR se utiliza para mostrar ou ocultar as barras de deslocamento horizontal e/ou vertical no objeto designado pelos parâmetros *objeto* e *\**. @@ -45,4 +42,13 @@ Para obter mais informação, consulte a descrição do comando [OBJECT SET SCRO #### Ver também -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1076 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md index e17e31bb1b7e21..d9350aad50151d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET SHORTCUT** devolve o atalho de teclado associado ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** no processo atual. @@ -43,4 +40,13 @@ Se nenhuma tecla de modificação foi definida para o atalho, modificadores devo #### Ver também -[OBJECT SET SHORTCUT](object-set-shortcut.md) \ No newline at end of file +[OBJECT SET SHORTCUT](object-set-shortcut.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1186 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md index 7496f2c1e2c8dd..6a02ec1f292f80 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get style sheet** devolve o nome da folha de estilos associada ao objeto ou aos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -48,4 +45,13 @@ Em **arquitetura de projeto**, só as três folhas de estilo automáticas são c #### Ver também *Estilos de fonte* -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1258 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md index e7cf93163bb16c..4c9e298eae2601 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET SUBFORM CONTAINER SIZE** devolve a *largura* e a *altura* (em pixels) de um objeto sub-formulário "atual", mostrado no formulário pai. @@ -33,5 +30,14 @@ O evento On Resize é gerado no método formulario de subformulário se o objeto #### Ver também -[OBJECT GET SUBFORM](../commands/object-get-subform.md) -[OBJECT SET SUBFORM](../commands/object-set-subform.md) \ No newline at end of file +[OBJECT GET SUBFORM](object-get-subform.md) +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1148 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md index aab3cc556de4a9..b8ee6d6a473754 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **OBJECT Get subform container value** command returns the current value of the data source bound with the subform container displayed in the parent form. @@ -57,4 +54,13 @@ As a result, at runtime, updating the value of the main form's Input object also [Form](../commands/form.md) [OBJECT Get pointer](object-get-pointer.md) -[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) \ No newline at end of file +[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1785 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md index 867d7966daf9de..f72a49066c5102 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET SUBFORM** obtém os nomes dele ou dos formulário(s) associado(s) ao objeto sub-formulário designado pelos parâmetros *objeto* e *\**. @@ -42,4 +39,13 @@ Se não houver formulário lista, uma string vazia é devolvida no parâmetro *s #### Ver também [OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) -[OBJECT SET SUBFORM](../commands/object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1139 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md index 5338df5621537b..49be5aef07d29f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get text orientation** devolve o valor de orientação atual aplicado ao texto do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\**. @@ -57,4 +54,13 @@ Quando se executa o formulário, é chamada a seguinte declaração: #### Ver também -[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) \ No newline at end of file +[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1283 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md index 48c668b88117f2..54bfc5a7b204da 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get three states checkbox** devolve o estado atual da propriedade "Três estados" da(s) caixa(s) de seleção designada(s) pelos parâmetros *objeto* e *\** . @@ -26,4 +23,13 @@ A propriedade "Três estados" se pode definir seja usando a lista de propriedade #### Ver também -[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) \ No newline at end of file +[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1250 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md index 783c8a1dca8784..0bede12b5401da 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get title devolve o título (etiqueta) do objeto de formulário designado por *objeto* . Você pode usar esse comando com todos os objetos simples que tenham uma etiqueta: @@ -32,4 +29,13 @@ Se passar o parâmetro opcional *\**, indica que o parâmetro *objeto é* um nom #### Ver também -[OBJECT SET TITLE](object-set-title.md) \ No newline at end of file +[OBJECT SET TITLE](object-set-title.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1068 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md index 08d3e479261ee9..406470fb84f9ac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **OBJECT Get type** command returns the type of the object designated by the *object* and *\** parameters in the current form. @@ -97,4 +94,13 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list #### Ver também [FORM LOAD](../commands/form-load.md) -[LISTBOX GET OBJECTS](listbox-get-objects.md) \ No newline at end of file +[LISTBOX GET OBJECTS](listbox-get-objects.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1300 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md index 9c566e6935fed7..14d05eda95f18f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get value** retorna o valor atual da fonte de dados para os objetos formulários determinados pelo parâmetro *nomObjeto*. @@ -40,4 +37,13 @@ Ver o exemplo para o comando [OBJECT SET VALUE](object-set-value.md). #### Ver também -[OBJECT SET VALUE](object-set-value.md) \ No newline at end of file +[OBJECT SET VALUE](object-set-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1743 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md index 4bc06df648ca5b..e5d416c552bb7c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get vertical alignment** devolve um valor indicando o tipo de alinhamento vertical aplicada ao objeto designado pelos parâmetros *objeto* e *\**. @@ -44,4 +41,13 @@ O alinhamento vertical pode ser aplicado aos seguintes tipos de objetos de formu [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1188 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md index 17d540f40f6990..4eedc48c759722 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get visible devolve True se o objeto ou grupo de objetos designado por *objeto* tem o atributo visível e do contrário False. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto é* um nome #### Ver também -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1075 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md index 4d2067342b3d35..4804b28ce9fbfe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Is styled text** devolve **True** se a opção "Multiestilo" está selecionada para o(s) objeto(s) designado(s) pelos parâmetros *objeto* e *\** . @@ -44,4 +41,13 @@ Um formulário contém um campo representado por dois objetos diferentes, um dos #### Ver também -*Texto multi estilo* \ No newline at end of file +*Texto multi estilo* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1261 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md index 69e235f6ffde73..477db0c5bf4f29 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT MOVE permite mover os objetos no formulário atual, definido pelos parâmetros *\** e *objeto, moveH* píxels horizontalmente e *moveV* píxels verticalmente. @@ -68,4 +65,13 @@ A seguinte instrução move o botão “botão\_1” as seguintes coordenadas (1 [OBJECT DUPLICATE](object-duplicate.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 664 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md index 9fb767dcce5508..a685c54cad9497 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET ACTION** modifica, para o processo atual, a ação estandarte associada ao objeto ou aos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -91,4 +88,13 @@ Se quiser associar a ação padrão **Validate** com um botão: #### Ver também -[OBJECT Get action](object-get-action.md) \ No newline at end of file +[OBJECT Get action](object-get-action.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1259 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md index 131295c112cc75..fbeb24c0d28980 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET AUTO SPELLCHECK** permite definir ou modificar dinamicamente o estado da opção **Correção ortográfica** dos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. Esta opção ativa ou desativa a correção ortográfica automática durante a entrada para o objeto (objetos de tipo texto unicamente). @@ -28,4 +25,13 @@ Passe **True** em *correAuto* para ativar esta função para objeto e **False** #### Ver também -[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) \ No newline at end of file +[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1173 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md index d64dadc5a136bf..e14148217d6862 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET BORDER STYLE** modifica o estilo de linha do borde do objeto(s) designada pelos parâmetros *objeto* e *\** . @@ -40,4 +37,13 @@ No parâmetro *estiloBorde*, passe o valor do estilo da linha fronteira que dese #### Ver também -[OBJECT Get border style](object-get-border-style.md) \ No newline at end of file +[OBJECT Get border style](object-get-border-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1262 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md index 6418b5c80b51ca..3ec54c1712cb65 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET CONTEXT MENU** ativa ou desativa, para o processo atual, a associação de um menu contextual por padrão ao objeto ou aos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -30,4 +27,13 @@ Passe **True** no parâmetro *menuContext* para ativar o menu contextual, e **Fa #### Ver também -[OBJECT Get context menu](object-get-context-menu.md) \ No newline at end of file +[OBJECT Get context menu](object-get-context-menu.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1251 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md index 21275be42dcdf0..18ad66b5c306f7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **OBJECT SET COORDINATES** command modifies the location and, optionally, the size of the object(s) designated by the *object* and *\** parameters for the current process. @@ -56,4 +53,13 @@ A seguinte declaração localiza oi objeto "button\_1" nas coordenadas (10,20) ( [CONVERT COORDINATES](convert-coordinates.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1248 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md index c548c4d925a632..261f510d5b2dda 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET CORNER RADIUS** modifica o rádio das esquinas dos objetos retângulo arredondado cujos nomes passou no parâmetro *objeto*. O novo rádio só se define para o processo e não é guardado no formulário. @@ -66,4 +63,13 @@ Note that for text areas (as well as inputs), unlike for rectangles, the corner #### Ver também -[OBJECT Get corner radius](object-get-corner-radius.md) \ No newline at end of file +[OBJECT Get corner radius](object-get-corner-radius.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1323 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md index 012c08a3ceb622..5f67a3ab3aafe5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET DATA SOURCE** modifica a fonte de dados dos objetos designados pelos parâmetros *objeto* e *\** . @@ -51,4 +48,13 @@ Mudança da fonte de dados para uma área de entrada: #### Ver também [LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) -[OBJECT Get data source](object-get-data-source.md) \ No newline at end of file +[OBJECT Get data source](object-get-data-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1264 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md index 3892234003ba8e..8e1e694c8bf4e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET DRAG AND DROP OPTIONS** define ou modifica dinamicamente as opções de arrastar e soltar para o objeto ou aos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -44,4 +41,13 @@ Definição de uma área de texto em arrastar e soltar auto: #### Ver também -[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) \ No newline at end of file +[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1183 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md index 2c4cf819cdd983..2bb1c22610348a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET ENABLED utilizado para ativar ou desativar o objeto ou grupo de objetos especificado por *objeto no* formulário atual. @@ -40,4 +37,13 @@ Este comando pode ser aplicado aos seguintes tipos de objetos: #### Ver também -[OBJECT Get enabled](object-get-enabled.md) \ No newline at end of file +[OBJECT Get enabled](object-get-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1123 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md index ea2e74b3e1263a..6827df57001753 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET ENTERABLE** torna editáveis ou não editáveis os objetos de formulário especificados por *objeto* e podem estabelecer o atributo *focável* @@ -74,4 +71,13 @@ Este é o método de objeto de uma caixa de seleção localizada no cabeçalho d #### Ver também [OBJECT Get enterable](object-get-enterable.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 238 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md index c81eca6e8184ea..b6edff1e806d3d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET EVENTS** modifica, para o processo atual, a configuração dos eventos formulário do formulário, dos objetos designados pelos parâmetros *objeto* e *\** . @@ -107,4 +104,13 @@ Desativação de um só evento do formulário sem modificar os outros: #### Ver também *Form event* -[OBJECT GET EVENTS](object-get-events.md) \ No newline at end of file +[OBJECT GET EVENTS](object-get-events.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1239 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md index e5875fe4eec86a..fe9fdae57a4429 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **OBJECT SET FILTER** substitui o filtro de entrada para os objetos especificados por *objeto* por *filtroEntrada*. @@ -57,4 +54,13 @@ O exemplo a seguir permite unicamente a entrada das letras “a,” “b,” “ #### Ver também [OBJECT Get filter](object-get-filter.md) -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 235 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md index 251306e52e1a6c..fde550d8c654a0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET FOCUS RECTANGLE INVISIBLE** permite definir ou modificar dinamicamente a opção invisibilidade do retângulo de foco do objeto designado para os parâmetros *objeto* e *\** para o processo atual. Esta configuração corresponde à opção **Ocultar retângulo de foco** disponível para os objetos editados na Lista de propriedades em modo Desenho. @@ -31,4 +28,13 @@ Passe **True** no parâmetro *invisível* para ocultar o retângulo de foco e ** #### Ver também -[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1177 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md index 04ab8454186568..d3dbe72d957cb1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OBJECT SET FONT SIZE define o tamanho da fonte dos objetos de formulário especificados por *objeto* utilizando o tamanho de fonte que se passa em *tamanho*. @@ -53,4 +50,13 @@ O exemplo a seguir define o tamanho de fonte para todos os objetos de formulári *Interação de comandos genéricos com textos multi estilos* [OBJECT Get font size](object-get-font-size.md) [OBJECT SET FONT](object-set-font.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 165 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md index 31cb2e89d1f54a..90067a5f6095c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OBJECT SET FONT STYLE atribui o estilo de fonte de *estilos* aos objetos de formulário especificados por *objeto*. @@ -55,4 +52,13 @@ Este exemplo define o estilo de fonte Plain para todos os objetos de formulário [OBJECT Get font style](object-get-font-style.md) [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 166 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md index 5aa7624ac035af..383033b39730ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OBJECT SET FONT mostra *objeto* utilizando a fonte especificada no parâmetro *fonte*. O parâmetro *fonte* deve conter um nome de fonte válido. @@ -62,4 +59,13 @@ O seguinte exemplo utiliza a opção especial *%password*, desenhada para a entr *Interação de comandos genéricos com textos multi estilos* [OBJECT Get font](object-get-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 164 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md index c9e37f47033246..399b41dbcfa54b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OBJECT SET FORMAT substitui o formato de saída para os objetos especificados por *objeto* pelo formato que passa em *formatSaída*. O novo formato é utilizado unicamente para a visualização atual, não se guarda com o formulário. @@ -369,4 +366,13 @@ Passe um termômetro ao modo "Barber shop" [GET SYSTEM FORMAT](get-system-format.md) [OBJECT Get format](object-get-format.md) -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 236 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md index ecd650d3d2b9cb..26ed4a8057f9b3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET HELP TIP** permite definir ou modificar dinamicamente a mensagem de ajuda associado ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -131,4 +128,13 @@ O resultado é... #### Ver também [OBJECT Get help tip](object-get-help-tip.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1181 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md index a1611ee41b6c96..54ce46b375ce0a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET HORIZONTAL ALIGNMENT** permite determinar o tipo de alinhamento aplicado ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\**. @@ -55,4 +52,13 @@ Os objetos de formulário aos quais pode aplicar este comando são os seguintes: [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 706 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md index 2a2cfc74d9f50d..d951bc59ca3d4e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET INDICATOR TYPE** modifica o tipo de indicador de progressão do(s) termômetro(s) designado(s) pelos parâmetros *objeto* e *\** no processo atual. @@ -36,4 +33,13 @@ No parâmetro *indicador*, passe o tipo de indicador a mostrar. Pode utilizar um #### Ver também -[OBJECT Get indicator type](object-get-indicator-type.md) \ No newline at end of file +[OBJECT Get indicator type](object-get-indicator-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1246 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md index 5f5c0653b0a17d..5dd1a6b96de560 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET KEYBOARD LAYOUT** permite definir ou modificar dinamicamente a configuração de teclado associada ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -28,4 +25,13 @@ Em *codigoLing*, passe uma cadeia indicando o código de linguagem a utilizar, b #### Ver também -[OBJECT Get keyboard layout](object-get-keyboard-layout.md) \ No newline at end of file +[OBJECT Get keyboard layout](object-get-keyboard-layout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1179 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md index 64584813ad1705..6ff33acc516b58 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET LIST BY NAME define ou substitui a lista associada ao objeto o grupo de objetos designado por *objeto* A lista cujo nome é passado no parâmetro *lista* deve ter sido criada no editor de listas, em modo Desenho*.* @@ -95,4 +92,13 @@ Você quer eliminar a lista de associações: #### Ver também [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 237 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md index 00f503d8d65428..ab6d086cb99eb7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET LIST BY REFERENCE** define ou substitui a lista associada com o objeto ou objetos definidos pelos parâmetros *objeto* e *\**, com a lista hierárquica definida no parâmetro *lista*. @@ -130,4 +127,13 @@ Com o propósito de atualizar a lista associada ao pop-up gerenciado por array, #### Ver também [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1266 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md index 57f43c6b140f46..1a584a5f459727 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET MAXIMUM VALUE** modifica o valor máximo do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\** para o processo atual. @@ -31,4 +28,13 @@ Em *valorMax*, passe o novo valor máximo que deseja atribuir ao objeto para o p #### Ver também [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1244 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md index c33cd1bb031e61..94cca659ada9fb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET MINIMUM VALUE** modifica o valor mínimo do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\** para o processo atual. @@ -31,4 +28,13 @@ Em *valorMinimo*, passe o novo valor mínimo a atribuir ao objeto para o process #### Ver também [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1242 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md index d3325f6fe75bd1..3f19b9b6382632 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET MULTILINE** modifica a propriedade "Multilinha" do objeto(s) designada pelos parâmetros *objeto* e *\** . @@ -44,4 +41,13 @@ Você quer proibir várias linhas em uma área de entrada: #### Ver também -[OBJECT Get multiline](object-get-multiline.md) \ No newline at end of file +[OBJECT Get multiline](object-get-multiline.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1253 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md index 5e93fa07ef103d..72ea1b0be0aa4b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET PLACEHOLDER** associa um texto de exemplo ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** . @@ -46,4 +43,13 @@ Você quer mostrar o texto "Buscar" um combo box: #### Ver também -[OBJECT Get placeholder](object-get-placeholder.md) \ No newline at end of file +[OBJECT Get placeholder](object-get-placeholder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1295 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md index 9e6d49bde17383..52096ab02e4ff3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET PRINT VARIABLE FRAME** modifica a propriedade de marco de impressão variável do objeto ou dos objetos designados pelos parâmetros *objeto* e *\**. @@ -42,4 +39,13 @@ O parâmetro opcional *subformFixo* lhe permite configurar uma opção adicional #### Ver também -[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) \ No newline at end of file +[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1240 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md index 48e3bf3ac6ee2b..746029339e4d5b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET RESIZING OPTIONS** permite definir ou modificar dinamicamente as opções de redimensionamento do objeto ou dos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. Estas opções definem a visualização do objeto em caso de redimensionamento da janela do formulário. @@ -44,4 +41,13 @@ No parâmetro *vertical*, passe um valor que indique a opção de redimensioname #### Ver também -[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) \ No newline at end of file +[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1175 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md index 6993d449cd268b..ec7936deb3bea7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET RGB COLORS modifica as cores de fundo e primeiro plano dos objetos especificados por objeto e o parâmetro opcional \*. Quando o comando é aplicado a um objeto list box, um parâmetro adicional lhe permite modificar a cor alternativa das filas. @@ -106,4 +103,13 @@ Muda o fundo transparente com uma cor de fonte clara: #### Ver também [OBJECT GET RGB COLORS](object-get-rgb-colors.md) -[Select RGB Color](select-rgb-color.md) \ No newline at end of file +[Select RGB Color](select-rgb-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 628 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md index e412723408d3b6..d69368220ad69b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET SCROLL POSITION permite deslocar o conteúdo de vários tipos de objetos: linhas de um subformulário, de um formulário listado mostrado utilizando os comandos [MODIFY SELECTION](modify-selection.md), [DISPLAY SELECTION](display-selection.md) ou de uma lista hierárquica, linhas e colunas de um list box ou inclusive os píxels de uma imagem. @@ -92,4 +89,13 @@ Tenha a certeza de não omitir o segundo parâmetro *\** neste caso, caso contr [ LISTBOX SELECT ROW ](listbox-select-row.md) [HIGHLIGHT RECORDS](highlight-records.md) -[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) \ No newline at end of file +[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 906 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md index 92170e3881b762..de32c654bfe89e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET SCROLLBAR lhe permite mostrar ou ocultar as barras de rolagem horizontal ou vertical no objeto designado pelos parâmetros *objeto* e *\**. @@ -45,4 +42,13 @@ Passe nos parâmetros *horizontal* e *vertical* os valores booleanos indicando s [LISTBOX Get property](listbox-get-property.md) [LISTBOX SET GRID](listbox-set-grid.md) [OBJECT GET SCROLLBAR](object-get-scrollbar.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 843 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md index ab69eb95b8bda0..5973553cf52678 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET SHORTCUT** permite definir ou modificar dinamicamente o atalho de teclado associado ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -90,4 +87,13 @@ Você quer associar um atalho de teclado diferente em função da linguagem atua #### Ver também -[OBJECT GET SHORTCUT](object-get-shortcut.md) \ No newline at end of file +[OBJECT GET SHORTCUT](object-get-shortcut.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1185 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md index c0a659da93a3fe..e77da5e4d7a253 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET STYLE SHEET** modifica, para o processo atual, a folha de estilo associada ao objeto(s) designado(s) pelos parâmetros *objeto* e *\** . Uma folha de estilo modifica a fonte, o tamanho de fonte e o estilo de fonte. @@ -50,4 +47,13 @@ Em **arquitetura de projeto**, só as três folhas de estilo automáticas são c *Estilos de fonte* [GET STYLE SHEET INFO](get-style-sheet-info.md) [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT Get style sheet](object-get-style-sheet.md) \ No newline at end of file +[OBJECT Get style sheet](object-get-style-sheet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1257 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md index e798b72b6d4f84..965e0f8e99d191 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **OBJECT SET SUBFORM CONTAINER VALUE** command sets the current value of the data source bound with the subform container displayed in the parent form. @@ -33,4 +30,13 @@ A detailed example is available in the [OBJECT Get subform container value](obje #### Ver também [Form](../commands/form.md) -[OBJECT Get subform container value](object-get-subform-container-value.md) \ No newline at end of file +[OBJECT Get subform container value](object-get-subform-container-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1784 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md index 429771a0320670..4ba110939f803c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET SUBFORM** permite modificar dinamicamente o formulário detalhado assim também, opcionalmente, o formulário listado associado ao objeto sub-formulário designado pelos parâmetros *objeto* e *\**. @@ -43,5 +40,14 @@ Quando modifica um sub-formulário página, o comando pode executar-se em qualqu #### Ver também -[OBJECT GET SUBFORM](../commands/object-get-subform.md) -[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) \ No newline at end of file +[OBJECT GET SUBFORM](object-get-subform.md) +[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1138 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md index 6fd1ae1bfc0e2d..38bbee3a63ba4d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET TEXT ORIENTATION** modifica a orientação do conteúdo do objeto ou dos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -51,4 +48,13 @@ Deseja aplicar uma orientação de 270° a uma variável em seu formulário: #### Ver também -[OBJECT Get text orientation](object-get-text-orientation.md) \ No newline at end of file +[OBJECT Get text orientation](object-get-text-orientation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1284 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md index 2b68e9fe6e531c..7325da1e59fee8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET THREE STATES CHECKBOX** modifica para o processo atual, a propriedade de "Três Estados" da(s) caixa(s) de seleção designada(s) pelos parâmetros *objeto* e *\** . @@ -32,4 +29,13 @@ No parâmetro *tresEsta*, passe **True** para ativar o modo "três estados", ou #### Ver também -[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) \ No newline at end of file +[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1249 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md index c6be3dc2d0f37d..655329bd15b5d0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET TITLE modifica o título dos objetos especificados por *objeto* e o substitui pelo valor passado em *titulo.* @@ -68,4 +65,13 @@ Você quer inserir os títulos em duas linhas: #### Ver também -[OBJECT Get title](object-get-title.md) \ No newline at end of file +[OBJECT Get title](object-get-title.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 194 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md index c126f4cd088857..e216ed14a4ef45 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Exemplo 1 **OBJECT SET VALUE** estabelece *valor* da fonte de dados atual para os objetos formulário determinados pelo parâmetro *nomObjeto*.. @@ -41,4 +38,13 @@ Se quiser o valor da data source de um objeto formulário, obtenha seu nome e es #### Ver também -[OBJECT Get value](object-get-value.md) \ No newline at end of file +[OBJECT Get value](object-get-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1742 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md index 9b895591e8739f..5ce0aa4ccf658b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET VERTICAL ALIGNMENT** modifica por programação o tipo de alinhamento vertical aplicada ao objeto designado pelos parâmetros *objeto* e *\**. @@ -43,4 +40,13 @@ A alienação vertical pode aplicar-se aos seguintes tipos de objetos de formul [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) \ No newline at end of file +[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1187 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md index 7a5c519fd43286..affa9a1e0429c4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET VISIBLE mostra ou oculta os objetos especificados por *objeto*. @@ -60,4 +57,13 @@ ou: #### Ver também [OBJECT Get visible](object-get-visible.md) -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 603 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md index e910b77acb9628..b3f96ac36c0ebf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md @@ -54,4 +54,13 @@ Se quisermos duplicar e mudar o nome de um arquivo em sua própria pasta [File](file.md) [Folder ](folder.md) [Path to object ](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1548 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md index f2841e3a848b83..8a6b41ddcdbf69 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md @@ -24,4 +24,15 @@ OLD RELATED MANY muda a seleção da tabela relacionada e seleciona o primeiro r #### Ver também [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 263 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md index c8e2e22ad87ead..b7783da8a96a8e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OLD RELATED ONE funciona da mesma forma que [RELATE ONE](relate-one.md "RELATE ONE"), com a diferença de que OLD RELATED ONE utiliza o valor anterior de *campo* para estabelecer a relação. @@ -33,4 +30,14 @@ Se o comando for executado corretamente e se os registros relacionados forem car [Old](old.md) [OLD RELATED MANY](old-related-many.md) [RELATE ONE](relate-one.md) -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 44 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old.md index 05a7e549868870..446381b1077f05 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old.md @@ -38,4 +38,13 @@ Para restaurar o valor original de um campo, atribua-lhe o valor retornado por O #### Ver também -[Modified](modified.md) \ No newline at end of file +[Modified](modified.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 35 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md index b1c13b9d7e0f75..e74a91e73463b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-shutdown-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On Backup Shutdown database method é chamado a cada vez que o backup do banco de dados termina. As razões para deter um backup podem ser o fim da cópia, interrupção por parte do usuário ou um erro. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md index 4c5597ff0224cf..2d8894fdc37e0b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-backup-startup-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Método de base de dados On Backup Startup O *Método de banco de dados On Backup Startup* é chamado cada vez que um backup está a ponto de ser iniciado (backup manual, backup automático programado, ou utilizando o comando [BACKUP](backup.md "BACKUP")). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md index 694bd34a52b0c3..ba292dbfcfac3f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-drop-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On Drop database method está disponível em aplicações 4D locais ou remotas. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md index 1021feeb0a7e6f..763312bef4c421 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md @@ -184,4 +184,13 @@ O método abaixo de gestão de erros ignora as interrupções de usuário e most [Last errors](last-errors.md) [Last errors](last-errors.md) [Method called on error](method-called-on-error.md) -*Variáveis sistema* \ No newline at end of file +*Variáveis sistema* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 155 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md index 2cdd34c1d4dc15..4b0c6ef55839a1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ON EVENT CALL** instala o método, cujo nome se passa em *metodoEvento*, como método de gestão de eventos. @@ -108,4 +105,14 @@ Se um relatório for impresso utilizando [PRINT SELECTION](print-selection.md "P [FILTER EVENT](filter-event.md) [MOUSE POSITION](mouse-position.md) [Method called on event](method-called-on-event.md) -[Shift down](shift-down.md) \ No newline at end of file +[Shift down](shift-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 190 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md index 4c932d91038eed..0c1010070a64b2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-host-database-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O **On Host Database Event database method** permite aos recipientes 4D executar código quando se abre e fecha a base local. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md index d10453ff94e1e0..68977441ec3aa1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Documentação trasladada** diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md index 9f39e49a39956e..032b6c571d2a22 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Documentação movida** diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md index 22b6644c3e5895..fe871fe07290fb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-close-connection-database-method.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O **On Server Close Connection database method** é chamado no computador servidor cada vez que termina um processo 4D Client. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md index 233c9088964e02..50d6ca5552ef65 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Quando é chamado o método base On Server Open Connection? O **On Server Open Connection database method** é chamado uma vez no equipo servidor cada vez que um equipo remoto 4D inicia um processo de conexão. O **On Server Open Connection database method** NÃO é invocado por outro entorno 4D diferente de 4D Server. @@ -125,3 +122,13 @@ O seguinte exemplo evita uma nova conexão entre as 2 e 4 A.M.    If((?02:00:00?<=Current time)&(Current time ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 16001 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md index a23932f0bd2080..9e2fc1cc1f24d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-shutdown-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On Server Shutdown database method é chamado uma vez na máquina servidor quando a base atual é fechada em 4D Server. O On Server Shutdown database method NÃO é chamado por outro ambiente 4D diferente de 4D Server. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md index a594ca3c61d2a3..827cc851e3f602 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On Server Startup database method é chamado uma vez na máquina servidor quando abre uma base com 4D Server. O On Server Startup database method NÃO é executado em um ambiente diferente a 4D Server. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md index 4a1eba1297b9f6..fa4844f0401d30 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-sql-authentication-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On SQL Authentication database method pode ser utilizado para filtrar os pedidos enviados ao servidor SQL integrado de 4D. Este filtro pode estar baseado no nome e senha, assim como 7(opcional) no endereço IP do usuário. O desenvolvedor pode utilizar sua própria tabela de usuários ou a dos usuários 4D para avaliar os identificadores de conexão. Quando tiver validada a conexão, o comando [CHANGE CURRENT USER](change-current-user.md) pode ser utilizado para controlar o acesso das pedidos dentro do banco 4D. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md index 899c6d07289838..a8142fa92541bb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-web-connection-database-method.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On Web Connection database method pode ser chamado nos seguintes casos: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md index 615c801afc2ac7..060da811189d8e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md @@ -30,4 +30,15 @@ Aviso: lembre que um número de registro pode ser reutilizado se o registro for [CREATE SELECTION FROM ARRAY](create-selection-from-array.md) *Seleções temporárias* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 189 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md index dfb3614793db38..ff725f9f2d7440 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OPEN ADMINISTRATION WINDOW exibe a janela de administração do servidor no equipo que executa. A janela de administração 4D Server pode ser usada para visualizar os parâmetros atuais e realizar diversas operações de manutenção (veja a Guia de Referência 4D Server). Começando com a versão 11 do 4D Server, essa janela pode ser exibida a partir de uma máquina cliente: @@ -51,4 +48,14 @@ Se o comando foi executado corretamente, a variável de sistema OK é definida c #### Ver também -[OPEN SECURITY CENTER](open-security-center.md) \ No newline at end of file +[OPEN SECURITY CENTER](open-security-center.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1047 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md index 93e94a6a59ca2e..7e1b50a8ce4b41 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OPEN COLOR PICKER** mostra a caixa de diálogo de seleção de cor do sistema. @@ -30,4 +27,13 @@ Se a cor mudou, o evento formulário On After Edit é gerado para o objeto. #### Ver também -[OPEN FONT PICKER](open-font-picker.md) \ No newline at end of file +[OPEN FONT PICKER](open-font-picker.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1304 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md index fb249c938e4ad0..ce71aa937ec8e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md @@ -53,4 +53,13 @@ No contexto de implementação de uma aplicação fusionada, se quiser abrir ou #### Ver também -[CREATE DATA FILE](create-data-file.md) \ No newline at end of file +[CREATE DATA FILE](create-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 312 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md index 0727e20518f27e..d6703872d9d0df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md @@ -70,3 +70,13 @@ Se quiser selecionar um servidor no início desde uma aplicação monousuário.     QUIT 4D  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1321 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md index 67cbfc70b359a5..69e38695e7d1a8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md @@ -96,4 +96,14 @@ Se passa o valor 3 em *modo*, a função retorna ?00:00:00? (sem referência de #### Ver também [Append document](append-document.md) -[Create document](create-document.md) \ No newline at end of file +[Create document](create-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 264 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md index ed0e597fc3e1c2..5c597da90b7c6a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OPEN FONT PICKER** mostra a caixa de diálogo de seleção de fonte do sistema . @@ -44,4 +41,13 @@ Abaixo o código do botão: #### Ver também -[OPEN COLOR PICKER](open-color-picker.md) \ No newline at end of file +[OPEN COLOR PICKER](open-color-picker.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1303 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md index 5304bf2159ff76..c151d1be0687f5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Open form window abre uma nova janela utilizando as propriedades de tamanho e de redimensionamentos do formulário *nomForm*. @@ -135,4 +132,13 @@ o que retorna: [FORM GET PROPERTIES](form-get-properties.md) [Open window](open-window.md) *Tipos de janelas* -*Tipos de Janelas* \ No newline at end of file +*Tipos de Janelas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 675 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md index 287d574f8b66c5..154d098c47755e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OPEN PRINTING JOB abre uma tarefa de impressão e empilha todas as ordens de impressão executadas até que se chame o comando [CLOSE PRINTING JOB](close-printing-job.md). Este comando lhe permite controlar os trabalhos de impressão e, mais particularmente, ter certeza que nenhuma tarefa de impressão "parasita" possa ser inserida em uma sequência de impressão. @@ -38,4 +35,14 @@ A variável sistema OK se estabelece em 1 se o trabalho de impressão foi aberto #### Ver também -[CLOSE PRINTING JOB](close-printing-job.md) \ No newline at end of file +[CLOSE PRINTING JOB](close-printing-job.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 995 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md index b86e5cd6ae6168..1f83667cb713d1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Open resource file** abre o arquivo de recursos cujo nome ou rota de acesso completa se passa em *resNomArquivo*. @@ -101,4 +98,14 @@ Se o arquivo de recursos não puder ser aberto por um problema do recurso ou de #### Ver também [CLOSE RESOURCE FILE](close-resource-file.md) -*Recursos* \ No newline at end of file +*Recursos* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 497 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md index 909dddb70e6839..4c8faa0df32993 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md @@ -15,3 +15,13 @@ displayed_sidebar: docs #### Descrição O comando OPEN RUNTIME EXPLORER exibe o Runtime Explorer em uma janela flutuante. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1781 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md index 8bc948647c6ef8..664233cfe63f81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OPEN SECURITY CENTERmostra a janela do Centro de segurança e manutenção (CSM). Para saber mais veja a página *Centro de segurança e manutenção*. @@ -28,4 +25,13 @@ Dependendo dos privilegios de acesso do usuário atual, certas funções dispon #### Ver também -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1018 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md index d0a3dcdd976d6d..3c3a4eb96cd4ea 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OPEN SETTINGS WINDOW abre a caixa de diálogo Preferências de 4D ou as configurações do banco de dados do aplicativo atual 4D e exibe os parâmetros ou a página correspondente à chave *seletor* fornecida. @@ -167,3 +164,14 @@ Acceso à interface das Propriedades do banco no modo "Propriedades usuário": #### Variáveis e conjuntos do sistema Se a caixa de diálogo Preferências/Propriedades é validada, a variável sistema OK devolve 1; se for cancelada, OK devolve 0. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 903 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md index c22d95aca3d984..0c5fc4de13426a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md @@ -77,4 +77,13 @@ Pode abrir um arquivo texto com diferentes aplicações: #### Ver também -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 673 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md index c6ea9f9dafb7d7..512dc7a8274237 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Open window abre uma nova janela cujas dimensões são definidas pelos quatro primeiros parâmetros: @@ -138,4 +135,13 @@ Este exemplo ilustra o mecanismo de “atraso” de mostrar janelas em Mac OS X: [CLOSE WINDOW](close-window.md) *Criar janela* -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 153 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md index 17849268ca5268..6cf0e93dbe6aef 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md @@ -111,4 +111,13 @@ Os registros estão na seguinte ordem: #### Ver também - \ No newline at end of file + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1407 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md index 82a37450c530d8..e73d272274dbf2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md @@ -44,4 +44,15 @@ Este exemplo ordena os registros da tabela \[Pessoas\] em ordem descendente, bas #### Ver também -[ORDER BY](order-by.md) \ No newline at end of file +[ORDER BY](order-by.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 300 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md index 0449f57ae79309..ee54d8cc031dff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md @@ -203,4 +203,15 @@ Sem importar como se defina a ordenação, se a operação de ordenação vai a #### Ver também -[ORDER BY FORMULA](order-by-formula.md) \ No newline at end of file +[ORDER BY FORMULA](order-by-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 49 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md index 8b0e7b58e0cd21..1957c81c07f0cb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Outside call** retorna True para o ciclo de execução After. @@ -27,4 +24,13 @@ Para que seja gerado o ciclo de execução **Outside call,** tenha certeza de qu #### Ver também [Form event code](../commands/form-event-code.md) -[POST OUTSIDE CALL](post-outside-call.md) \ No newline at end of file +[POST OUTSIDE CALL](post-outside-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 328 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md index d23306ef49081b..185aa533702aaf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição PAGE BREAK dispara a impressão de dados enviados a la impressora e provocar um salto de página. PAGE BREAK se utiliza conjuntamente com [Print form](../commands/print-form.md) (no contexto do evento de formulário On Printing Detail) para forçar saltos de página e imprimir a última página criada em memória. Não utilize PAGE BREAK com o comando [PRINT SELECTION](print-selection.md). É melhor utilizar [Subtotal](subtotal.md) ou [BREAK LEVEL](break-level.md) com o parâmetro opcional para gerar saltos de página. @@ -45,4 +42,14 @@ Consulte o exemplo do comando [SET PRINT MARKER](set-print-marker.md "SET PRINT #### Ver também [CANCEL](cancel.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 6 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md index 862725c79c8e1a..ff64ae94bfcac3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição A função **Parse formula** analisa a *fórmula* 4D, verifica sua sintaxe e devolve seu formulário normalizado. Isto permite que a fórmula continue sendo válida no caso de que se mude o nome de uma linguagem 4D ou elemento de estrutura (comando, constante, tabela, campo ou0 Plugin 4D). @@ -108,4 +105,13 @@ O parâmetro opcional *mensagemE* *rro* receberá uma mensagem de erro se houver [Formula from string](formula-from-string.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -*Usar tokens em fórmulas* \ No newline at end of file +*Usar tokens em fórmulas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1576 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md index 8b11d02470fd27..85b91f914f8333 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Pasteboard data size permite testar se hay dados do tipo *tipoDatos* na área de transferência. @@ -92,4 +89,14 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m *Área de trabalho* [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 400 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md index 7caa3da4180cc3..13e284b97a6a76 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md @@ -172,4 +172,13 @@ Se quiser saber a quantidade de subpastas em uma rota: [File](file.md) [Folder ](folder.md) [Object to path](object-to-path.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1547 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md index 09c2886517d10e..1b56ec5b8041eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md @@ -46,4 +46,13 @@ Exemplo de método de importação massivo de dados: #### Ver também [DELETE INDEX](delete-index.md) -[RESUME INDEXES](resume-indexes.md) \ No newline at end of file +[RESUME INDEXES](resume-indexes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1293 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md index 7fc29deb504802..d29c289b4b4458 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md @@ -30,4 +30,13 @@ Quando se suspende a execução de um processo, as janelas que pertencem a este [ABORT PROCESS BY ID](abort-process-by-id.md) [DELAY PROCESS](delay-process.md) [HIDE PROCESS](hide-process.md) -[RESUME PROCESS](resume-process.md) \ No newline at end of file +[RESUME PROCESS](resume-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 319 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md index e25ac401868f94..75e254685a9539 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-execute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - :::info Compatibilidade **PHP está obsoleto em 4D**. Recomenda-se usar a classe [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -281,4 +278,13 @@ Para obter mais informação sobre a função trim, por favor, consulte a docume *Executar scripts PHP em 4D* [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1058 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md index d9a4703f9618f3..43abf0b2ddef83 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-get-full-response.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - :::info Compatibilidade **PHP está obsoleto em 4D**. Recomenda-se usar a classe [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Dado que os intercâmbios entre 4D e o intérprete PHP se realizam através de F #### Ver também [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1061 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md index 6dff00fcf2adb8..1856feedd78cfc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - :::info Compatibilidade **PHP está obsoleto em 4D**. Recomenda-se usar a classe [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -36,4 +33,13 @@ Passe no parâmetro *opção* uma constante do tema "*PHP*" para designar a opç #### Ver também [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1060 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md index ce308946ad7e1e..89146e3df15df5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/php-set-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - :::info Compatibilidade **PHP está obsoleto em 4D**. Recomenda-se usar a classe [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -40,4 +37,13 @@ Como padrão, PHP SET OPTION define a opção para todas as chamadas a [PHP Exec #### Ver também [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1059 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md index f657ffbf8d3270..be423e287820b2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md @@ -34,4 +34,13 @@ Por padrão, se não passa o parâmetro *\**, o comando devolve unicamente os co #### Ver também *Imagens* -[Is picture file](is-picture-file.md) \ No newline at end of file +[Is picture file](is-picture-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 992 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md index 11397bf3a33781..127af6859f5aa0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando PICTURE LIBRARY LIST devolve os números de referência e os nomes das imagens armazenadas na biblioteca de imagens do banco de dados. @@ -94,4 +91,13 @@ O exemplo a seguir exporta a biblioteca de imagens a um documento armazenado no [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 564 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md index 8dc6bb18f3c7eb..fc42fe79de3cf2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md @@ -28,4 +28,13 @@ Os parâmetros *hDesp*, *vDesp*, e *modo* devolvem as posições horizontal e ve #### Ver também -[Picture size](picture-size.md) \ No newline at end of file +[Picture size](picture-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 457 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md index 74bb963f7bc86c..d1d42a65609419 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### Ver também -[PICTURE PROPERTIES](picture-properties.md) \ No newline at end of file +[PICTURE PROPERTIES](picture-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 356 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md index 1a96762a0970b7..656ce59c0ac337 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md @@ -49,4 +49,14 @@ Se quiser converter uma imagem de um formato proprietário a formato GIF e mostr [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 692 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/play.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/play.md index 7a7ef9cc48ab51..92641702424f95 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/play.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/play.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando PLAY permite reproduzir arquivos de som ou multimídia. Passe a rota de acesso completa do arquivo que deseja reproduzir em *nomeObjeto*. Em Mac OS, o comando também pode ser utilizado para reproduzir uma fonte de som ou um som sistema. @@ -59,4 +56,13 @@ O código de exemplo abaixo reproduz um som do sistema em OS X: #### Ver também -[BEEP](beep.md) \ No newline at end of file +[BEEP](beep.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 290 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md index cae9824ebac6cf..3478a14c49bde9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md @@ -27,4 +27,13 @@ PLUGIN LIST leva todos os plug-ins em consideração, incluindo aqueles que est [COMPONENT LIST](component-list.md) [Get plugin access](get-plugin-access.md) [Is license available](is-license-available.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 847 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md index 8724185b57fd8d..45ee375d58a12f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md @@ -32,4 +32,14 @@ O exemplo a seguir recupera o registro de um cliente na pilha: #### Ver também [PUSH RECORD](push-record.md) -*Usar a Pilha de Registros* \ No newline at end of file +*Usar a Pilha de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 177 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md index dc487648041a52..5404b93afdf378 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Pop up menu mostra um menu pop up na localização atual do mouse ou na localização definida pelos parâmetros opcionais *coordX* e *coordY*. @@ -105,4 +102,13 @@ O próximo é o menu pop-up tal como aparece em Windows (esquerda) e Macintosh ( #### Ver também [Dynamic pop up menu](dynamic-pop-up-menu.md) -[MOUSE POSITION](mouse-position.md) \ No newline at end of file +[MOUSE POSITION](mouse-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 542 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/position.md index 507dd91bc28581..b48d6cfc786def 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/position.md @@ -116,4 +116,13 @@ No exemplo abaixo, se quiser encontrar todas as instâncias de uma string e subs #### Ver também [Compare strings](compare-strings.md) -[Substring](substring.md) \ No newline at end of file +[Substring](substring.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 15 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md index a3682a0b67353e..c6deeb221aca69 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando POST CLICK simula um clique do mouse. Tem o mesmo efeito que quando o usuário clicar no botão do mouse @@ -30,4 +27,13 @@ Se especificar o parâmetro processo *processo*, o clique é enviado ao processo #### Ver também [POST EVENT](post-event.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 466 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md index dc99f67ba082ab..dd281a065ba3d0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando POST EVENT simula um evento de teclado ou de mouse. Tem o mesmo efeito que quando o usuário atua através do teclado ou do mouse. @@ -73,4 +70,13 @@ Se passa o parâmetro *processo,* o evento é enviado através do processo cujo #### Ver também [POST CLICK](post-click.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 467 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md index d59cf92cbd0b8e..8a527dcb3f0ec1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando POST KEY simula uma tecla. Esse efeito funciona como se o usuário tivesse entrado um caractere no teclado. @@ -37,4 +34,13 @@ Ver exemplo do comando [Process number](process-number.md). *Códigos ASCII* *Códigos de Função de teclado* [POST CLICK](post-click.md) -[POST EVENT](post-event.md) \ No newline at end of file +[POST EVENT](post-event.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 465 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md index 83b06b74e0514b..e2c6ec73ff5442 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Nota de compatibilidade Esse comando era chamado **CALL PROCESS** em lançamentos 4D anteriores. @@ -42,4 +39,14 @@ Ver o exemplo de [On Exit Database Method](metodo-banco-de-dados-on-exit.md "On [Form event code](../commands/form-event-code.md) [GET PROCESS VARIABLE](get-process-variable.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 329 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md index 64e2d2c0beabcf..66a0834a98170c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md @@ -25,4 +25,14 @@ Se PREVIOUS RECORD move o ponteiro do registro atual antes da seleção atual, B [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[NEXT RECORD](next-record.md) \ No newline at end of file +[NEXT RECORD](next-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 110 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md index 19983eb2277f8c..624646c78ec973 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição PRINT LABEL permite imprimir etiquetas com los datos de la seleção de *tabela*. @@ -107,4 +104,14 @@ O exemplo a seguir lhe permite ao usuário efetuar uma pesquisa na tabela \[Pess #### Ver também [PRINT SELECTION](print-selection.md) -[QR REPORT](qr-report.md) \ No newline at end of file +[QR REPORT](qr-report.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 39 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md index de1ab047aaa30a..984c6ddbed5b93 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Print object** permite imprimir ele ou os objetos de formulário designado(s) pelos parâmetros *objeto* e *\**, na localização definida pelos parâmetros *posX* e *posY*. @@ -97,4 +94,13 @@ Exemplo de impressão de um list box completo: #### Ver também -[FORM LOAD](../commands/form-load.md) \ No newline at end of file +[FORM LOAD](../commands/form-load.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1095 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md index 96166a419828e0..eed9be0e821155 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando PRINT OPTION VALUES \[#descv\]devolve em *nomesArray*,uma lista de nomes de valores disponíveis para a *opçao* de impressão definida.Opcionalmente, pode recuperar a informação para cada valor em *info1Array* e *info2Array*. @@ -55,4 +52,13 @@ Toda a informação devolvida por estes comandos é fornecida pelo sistema opera #### Ver também [GET PRINT OPTION](get-print-option.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 785 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md index 26268cc2386e47..6a4338a0289f80 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição PRINT RECORD imprime o registro atual de *tabela*, sem modificar a seleção atual. O formulário de saída atual se utiliza para a impressão. Se não houver registro atual para *tabela*, PRINT RECORD não faz nada. @@ -66,4 +63,13 @@ O exemplo a seguir imprime o mesmo registro atual em dois formulários diferente #### Ver também -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 71 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md index 88a6eff91ca394..a1c0354e0c7c8f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição PRINT SELECTION imprime a seleção atual de tabela. Os registros se imprimem no formulário de salida atual da tabela do processo atual. PRINT SELECTION realiza a mesma ação que o comando Imprimir do ambiente Usuário. Se a seleção está vazia, PRINT SELECTION não faz nada. @@ -62,4 +59,14 @@ O exemplo a seguir seleciona todos os registros na tabela \[Pessoas\]. O comando [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level ](level.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 60 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md index 2fa33446f5d489..0e495a48dfd618 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Print settings to BLOB** salva os ajustes de impressão 4D atuais no BLOB *confImp*. O parâmetro *confImp* armazena todos os valores utilizados para a impressão: @@ -55,4 +52,13 @@ Se quiser armazenar a configuração de impressão atual no disco: #### Ver também -[BLOB to print settings](blob-to-print-settings.md) \ No newline at end of file +[BLOB to print settings](blob-to-print-settings.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1433 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md index 5b2a73df71b77c..a1fda4c5e0a35c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando PRINT SETTINGS mostra una o dos caixas de diálogo de parâmetros de impressão. Este comando deve ser chamado antes de uma série de comandos [Print form](../commands/print-form.md) ou o comando [OPEN PRINTING JOB](open-printing-job.md). @@ -42,4 +39,14 @@ Se o usuário clicar em OK em ambas caixas de diálogo, a variável sistema OK t [OPEN PRINTING JOB](open-printing-job.md) [PAGE BREAK](page-break.md) [Print form](../commands/print-form.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 106 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md index af49f75a6ede3c..b1aa8a80fa3f5c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando PRINTERS LIST preenche os arrays passados como parâmetros com os nomes e opcionalmente com a localização os nomes personalizados e os modelos de impressão disponíveis para a máquina. @@ -46,4 +43,14 @@ A variável sistema OK toma o valor 1 se o comando tiver sido executado corretam #### Ver também [Get current printer](get-current-printer.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 789 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md index c08c7205477e4c..7a6dc71a4365c7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Printing page devolvido o número da página em impressão. Pode ser utilizado só quando esteja imprimindo com [PRINT SELECTION](print-selection.md) ou com o menu Impressão no ambiente Usuário. @@ -39,4 +36,13 @@ O exemplo a seguir muda a posição dos números de página em um relatório de #### Ver também -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 275 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md index 5eb66b84b33f4f..4085e9a9b4ddcb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md @@ -80,4 +80,13 @@ Este exemplo gera um texto utilizando os dados dos arrays: #### Ver também -*Etiquetas HTML 4D* \ No newline at end of file +*Etiquetas HTML 4D* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 816 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md index ef2e468e00a175..3041e97031529d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md @@ -21,4 +21,13 @@ Este status acontece muito raramente. Processos são geralmente parados antes do #### Ver também -[Método banco de dados On Exit](metodo-banco-de-dados-on-exit.md) \ No newline at end of file +[Método banco de dados On Exit](metodo-banco-de-dados-on-exit.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 672 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md index c0f815e8714bc6..b18ddab048bb8c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-number.md @@ -65,4 +65,13 @@ Com esta função, o método de projeto listado cola o texto recebido como parâ [GET PROCESS VARIABLE](get-process-variable.md) [Process info](../commands/process-info.md) [Process state](process-state.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 372 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md index 411ca09daeface..ff30030c3dad4e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Process state devolve o estado do processo cujo número foi passado em *processo*. @@ -61,4 +58,13 @@ O seguinte exemplo coloca o nome e número de referencia para cada processo nos #### Ver também [Count tasks](count-tasks.md) -[Process info](../commands/process-info.md) \ No newline at end of file +[Process info](../commands/process-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 330 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md index 7d5de0ab7a7430..6cae64ef49a02e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md @@ -32,4 +32,13 @@ O seguinte exemplo empilha o registro de um cliente: #### Ver também [POP RECORD](pop-record.md) -*Usar a Pilha de Registros* \ No newline at end of file +*Usar a Pilha de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 176 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md index 8dd2cdfa83f7a6..34b8599cb16e01 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR BLOB TO REPORT coloca o relatório contido no *BLOB* na área de relatório rápido passada em *area*. @@ -45,4 +42,14 @@ A instrução a seguir recupera o relatório rápido armazenado em Campo4 e o mo #### Ver também -[QR REPORT TO BLOB](qr-report-to-blob.md) \ No newline at end of file +[QR REPORT TO BLOB](qr-report-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 771 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md index 7f7a19be8f2a8d..bbe2f5b16114c0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Count columns devolve o número de colunas presentes na *area* do relatório rápido. @@ -35,4 +32,14 @@ O código a seguir permite adicionar uma coluna adicional à direita da última #### Ver também [QR DELETE COLUMN](qr-delete-column.md) -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 764 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md index 3aa8dc460cdfcd..cd0b84be374847 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR DELETE COLUMN apaga da *area* a coluna cujo número se passou em *numColuna*. Este comando não aplica aos relatórios de tabelas cruzadas. @@ -36,4 +33,14 @@ O exemplo a seguir garante de que o relatório seja listado e apaga a terceira c #### Ver também -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 749 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md index f6ce926829fe79..bf0ec8f5229a2c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR DELETE OFFSCREEN AREA apaga da memória a área fora de tela do relatório rápido cuja referência se passa no parâmetro *area*. @@ -24,4 +21,14 @@ Se passa um número de *area* incorreto, se gera o erro -9850. #### Ver também -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 754 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md index b112a1bca06241..fd45cce9940271 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **QR EXECUTE COMMAND** executa o comando de menu ou o botão da barra de ferramentas cuja referência se passa em *comando*. Este comando é utilizado geralmente para executar um comando de menu selecionado pelo usuário e interceptado em seu código através do comando [QR ON COMMAND](qr-on-command.md) @@ -44,4 +41,14 @@ Se passa um número de *comando* incorreto, se gera o erro -9852. #### Ver também [QR Get command status](qr-get-command-status.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 791 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md index 02a7e0a0dca979..38fe623dbe380a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Find column devolve o número da primeira coluna cujo conteúdo corresponde à *expressao* passada em parâmetro. @@ -44,3 +41,14 @@ $NumColumn:=QR Find column (MiArea; "\[G.NQR Tests\]Trimestre")     QR DELETE COLUMN(MinhaArea;$NumColumn)  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 776 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md index e86f07e1628791..a0143c6faa9b81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **QR Get area property** devolve 0 se não mostra o elemento de interface (barra de ferramentas ou barra de menus) passado em *propriedade*; do contrário, devolve 1\. @@ -35,4 +32,14 @@ Se o parâmetro *propriedade* for incorreto, se gera o erro -9852. #### Ver também -[QR SET AREA PROPERTY](qr-set-area-property.md) \ No newline at end of file +[QR SET AREA PROPERTY](qr-set-area-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 795 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md index be290ee6641e1b..fa2a6b03744863 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET BORDERS permite recuperar o estilo do borda de uma célula determinada. @@ -69,4 +66,14 @@ Se o parâmetro *borda* é incorreto, se gera o erro -9854. #### Ver também -[QR SET BORDERS](qr-set-borders.md) \ No newline at end of file +[QR SET BORDERS](qr-set-borders.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 798 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md index b35bb7837dd949..a5249595a8e8c1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get command status devolve 0 se o *comando* estiver inativo ou 1 se estiver ativo. @@ -38,4 +35,14 @@ Se o parâmetro *comando* for incorreto, se gera o erro -9852. #### Ver também [QR EXECUTE COMMAND](qr-execute-command.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 792 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md index 661af3f812a04b..713434b306fd8a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET DESTINATION recupera o *tipo* de saída do relatório para a área cuja referência se passou em *area*. @@ -38,4 +35,14 @@ Se passa um número de *area* incorreto, se gera o erro -9850. #### Ver também -[QR SET DESTINATION](qr-set-destination.md) \ No newline at end of file +[QR SET DESTINATION](qr-set-destination.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 756 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md index 79008517675b25..52372d9a811c5b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get document property permite recuperar o estado mostrado para a caixa de diálogo de impressão ou a unidade utilizada para o documento presente na *area*. @@ -48,4 +45,13 @@ Se passa um valor incorreto do parâmetro *propriedade*, se gera o erro -9852. #### Ver também -[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) \ No newline at end of file +[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 773 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md index f9bf4f1c2a4722..99b2a0b144b78a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get drop column devolve um valor dependendo de onde se realiza uma ação soltar: @@ -28,4 +25,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. #### Ver também -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 747 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md index 6d0bf6a6d5291d..fe495a231fb173 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET HEADER AND FOOTER permite recuperar o conteúdo e o tamanho do cabeçalho ou rodapé de página. @@ -68,4 +65,14 @@ O código a seguir recupera o conteúdo e a altura do título do cabeçalho e os #### Ver também -[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) \ No newline at end of file +[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 775 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md index f1a89611f6dfc8..16284e59f90c19 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get HTML template devolve o modelo HTML utilizado atualmente pela área do relatório rápido referenciada por área. O valor devolvido de tipo texto e inclui a totalidade do código HTML utilizado como modelo. @@ -27,4 +24,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. #### Ver também -[QR SET HTML TEMPLATE](qr-set-html-template.md) \ No newline at end of file +[QR SET HTML TEMPLATE](qr-set-html-template.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 751 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md index 3a289a14e8fc97..9d5910718b66db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição ##### Relatórios em lista @@ -113,4 +110,14 @@ Pode escrever: [QR Get info row](qr-get-info-row.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 766 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md index 8f07cfbb15437b..3ec911710f6a5a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get info row indica se *linha* se mostra o se oculta na *area*. @@ -40,4 +37,14 @@ Se o parâmetro *linha* é incorreto, se gera o erro -9852. [QR GET INFO COLUMN](qr-get-info-column.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 769 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md index 3e5e412cc14098..f73a9833e9bd14 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get report kind devolve o tipo do relatório presente em *area*. @@ -36,4 +33,14 @@ Se passa um número de *area* incorreto, se gera o erro -9850. #### Ver também -[QR SET REPORT KIND](qr-set-report-kind.md) \ No newline at end of file +[QR SET REPORT KIND](qr-set-report-kind.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 755 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md index bae6ca1216151a..989e7f2a372595 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get report table devolve o número da tabela atual do relatório designado pelo parâmetro *area*. @@ -25,4 +22,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. #### Ver também -[QR SET REPORT TABLE](qr-set-report-table.md) \ No newline at end of file +[QR SET REPORT TABLE](qr-set-report-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 758 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md index f302ae794c9524..72ef0530446a3e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET SELECTION devolve as coordenadas da seleção atual de *area*. @@ -40,4 +37,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. #### Ver também -[QR SET SELECTION](qr-set-selection.md) \ No newline at end of file +[QR SET SELECTION](qr-set-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 793 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md index 9f8c221536b6dd..34a0e76d0ac359 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET SORTS preenche dois arrays: @@ -36,4 +33,14 @@ Se passa um número de área inválido, se gera o erro -9850. #### Ver também -[QR SET SORTS](qr-set-sorts.md) \ No newline at end of file +[QR SET SORTS](qr-set-sorts.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 753 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md index e17e87f4be5b12..67d6b4aae0c34d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get text property devolve o valor da propriedade dos atributos de texto na célula determinada por *numColuna* e *numLinha*. @@ -69,4 +66,14 @@ Se o parâmetro *propriedade* é incorreto, se gera o erro -9854. #### Ver também -[QR SET TEXT PROPERTY](qr-set-text-property.md) \ No newline at end of file +[QR SET TEXT PROPERTY](qr-set-text-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 760 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md index ee556f54a2500f..4c6c1752dd06c1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição ##### List Mode @@ -73,4 +70,14 @@ Se o parâmetro *numQuebra* é incorreto, se gera o erro -9853. #### Ver também -[QR SET TOTALS DATA](qr-set-totals-data.md) \ No newline at end of file +[QR SET TOTALS DATA](qr-set-totals-data.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 768 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md index 2003e7ebc0abac..6aee39e493fe72 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET TOTALS SPACING permite recuperar o valor do espaço adicionado sobre uma linha de subtotal. Aplica unicamente em modo listado. @@ -38,4 +35,14 @@ Se o parâmetro *subtotal* for incorreto, se gera o erro -9852. #### Ver também -[QR SET TOTALS SPACING](qr-set-totals-spacing.md) \ No newline at end of file +[QR SET TOTALS SPACING](qr-set-totals-spacing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 762 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md index daf57a37bc3317..b3db248e9b0920 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR INSERT COLUMN insere ou cria uma coluna em una posição específica. As colunas situadas à direita da coluna adicionada serão deslocadas em conseqüência disso. @@ -40,4 +37,14 @@ A seguinte instrução insere (ou cria) uma primeira coluna na área MinhaArea, #### Ver também -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 748 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md index 33de5715f666a2..6fada0268f1334 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **QR MOVE COLUMN** move a coluna que se encontra atualmente na posição *numColuna* para a posição *novaPosição*. @@ -41,3 +38,13 @@ Se executar: O resultado será: ![](../assets/en/commands/pict2569472.en.png) + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1325 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md index e2c03f71204aa2..781505f14247db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md @@ -13,13 +13,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **QR NEW AREA** cria uma nova área de relatório rápido e armazena seu número de referência na variável de tipo Inteiro longo referenciada pelo ponteiro *ptr*. #### Ver também -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1320 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md index 46399d9adf987b..7f4e020d67956b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR New offscreen area cria uma área de relatório rápido fora de tela e devolve seu número de referência. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### Ver também [QR DELETE OFFSCREEN AREA](qr-delete-offscreen-area.md) -[QR NEW AREA](qr-new-area.md) \ No newline at end of file +[QR NEW AREA](qr-new-area.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 735 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md index 866671f2f7a671..095173b9a3ebac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR ON COMMAND executa o método de projeto 4D passado no parâmetro *nomMetodo* quando um comando do editor de relatórios rápidos for chamado pelo usuário, selecionando um comando de menu ou clicando em um botão. @@ -43,4 +40,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. *QR Comandos* [QR EXECUTE COMMAND](qr-execute-command.md) -[QR Get command status](qr-get-command-status.md) \ No newline at end of file +[QR Get command status](qr-get-command-status.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 790 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md index 990880ac038eaf..c72a19645267aa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR REPORT TO BLOB coloca o relatório cuja referência foi passada em *area* em um *BLOB* (variável ou campo). @@ -33,4 +30,14 @@ A seguinte instrução atribui o relatório rápido armazenado na área MinhaAre #### Ver também -[QR BLOB TO REPORT](qr-blob-to-report.md) \ No newline at end of file +[QR BLOB TO REPORT](qr-blob-to-report.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 770 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md index 9d1867e7c0aa5b..cb48140ea62775 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição QR REPORT imprime um relatório para *tabela*, criado com o editor de relatórios rápidos . O editor de relatórios rápidos permite aos usuários criar seus próprios relatórios. Para maior informação sobre a criação de relatórios rápidos com a ajuda do editor de relatórios rápidos, consulte *Relatórios rápidos* ou *Relatórios rápidos* no Manual de Desenho de 4D. @@ -136,4 +133,14 @@ O método myCallbackMeth converte o relatório quando é gerado: [PRINT LABEL](print-label.md) [PRINT SELECTION](print-selection.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 197 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md index ee3e7f6b4d1b1c..acc78dcf1967d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR RUN provoca a execução do relatório rápido designado pelo parâmetro *area*. O relatório é gerado com seus parâmetros atuais, incluindo seu tipo de saída. Pode utilizar o comando [QR SET DESTINATION](qr-set-destination.md) para modificar o tipo de saída. @@ -25,3 +22,14 @@ O relatório se executa na tabela à que pertence a área. Quando *area* designa Se passa um número de *area* inválido, se gera o erro -9850. **4D Server:** este comando pode ser executado em 4D Server como parte de um procedimento armazenado. Neste contexto, tenha certeza de que não apareça nenhuma caixa de diálogo na equipe servidor (exceto para os requisitos específicos). Para isso, é necessário chamar pelo comando [QR SET DESTINATION](qr-set-destination.md) com o parâmetro "\*". Em caso de um problema da impressora (sem papel, impressora desconectada, etc), não é gerado nenhuma mensagem de erro. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 746 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md index 28312116dd1792..49144733979418 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **QR SET AREA PROPERTY** permite mostrar ou ocultar o elemento de interface (barra de ferramentas ou barra de menus) cuja referência se passa em *propriedade*. @@ -43,4 +40,14 @@ Se o parâmetro *propriedade* for incorreto, se gera o erro -9852. #### Ver também -[QR Get area property](qr-get-area-property.md) \ No newline at end of file +[QR Get area property](qr-get-area-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 796 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md index 5df0accc5ec730..2f334196fc83dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET BORDERS permite definir o estilo da borda de uma célula dada. @@ -73,4 +70,14 @@ Se o parâmetro *largura* é incorreto, se gera o erro -9855. #### Ver também -[QR GET BORDERS](qr-get-borders.md) \ No newline at end of file +[QR GET BORDERS](qr-get-borders.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 797 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md index 1edfea4af1df38..155d0ee6c4d484 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET DESTINATION permite definir o tipo de saída do relatório rápido em *area*. @@ -54,4 +51,14 @@ O código a seguir define o arquivo texto Midoc.txt como tipo de destino do rela #### Ver também -[QR GET DESTINATION](qr-get-destination.md) \ No newline at end of file +[QR GET DESTINATION](qr-get-destination.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 745 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md index 8233e47eae5f4a..e0e0e20d196fdc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET DOCUMENT PROPERTY permite mostrar a caixa de diálogo de impressão ou definir a unidade utilizada pelo documento. @@ -37,4 +34,14 @@ Se passa um valor incorreto do parâmetro propriedade, se gera o erro -9852 ou - #### Ver também -[QR Get document property](qr-get-document-property.md) \ No newline at end of file +[QR Get document property](qr-get-document-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 772 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md index 13edf42583ea25..67f4de1d106ac6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET HEADER AND FOOTER permite definir o conteúdo e o tamanho do cabeçalho e o rodapé de *area*. @@ -57,4 +54,14 @@ A seguiete instrução coloca o título “Título do centro” no cabeçalho do #### Ver também -[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) \ No newline at end of file +[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 774 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md index 7889802ff18f68..2e8ce6cacd7dae 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET HTML TEMPLATE define o *modelo* HTML a utilizar para a área de relatório rápido referenciada por *area*. Este modelo se utilizará durante a criação do relatório em formato HTML. @@ -75,4 +72,14 @@ Se passa um número de área inválido, se gera o erro -9850. #### Ver também -[QR Get HTML template](qr-get-html-template.md) \ No newline at end of file +[QR Get HTML template](qr-get-html-template.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 750 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md index c6e678923fba51..f45d6101717abf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição ##### List mode @@ -110,4 +107,14 @@ Se o parâmetro *numColuna* for incorreto, se gera o erro -9852. [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 765 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md index fd4e2d1bcaf60d..5637d24b877b81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET INFO ROW mostra/oculta a fila cuja referência se passa em *linha*. @@ -51,4 +48,14 @@ A instrução a seguir oculta o conteúdo da linha detalhe: [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO COLUMN](qr-set-info-column.md) \ No newline at end of file +[QR SET INFO COLUMN](qr-set-info-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 763 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md index 7c4253adda933c..4cfe935796a164 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET REPORT KIND define o *tipo* do relatório presente em *area*. @@ -40,4 +37,14 @@ Se passa um valor incorreto do parâmetro *propriedade*, se gera o erro -9852. #### Ver também -[QR Get report kind](qr-get-report-kind.md) \ No newline at end of file +[QR Get report kind](qr-get-report-kind.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 738 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md index b60a99bb0554c8..34cda279392214 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET REPORT TABLE define a tabela atual para a área do relatório referenciada pelo parâmetro *area* a tabela número *tabela*. @@ -29,4 +26,14 @@ Se o parâmetro *tabela* for incorreto, se gera o erro -9852. #### Ver também -[QR Get report table](qr-get-report-table.md) \ No newline at end of file +[QR Get report table](qr-get-report-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 757 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md index e3013792238d66..fd37e671b7f5c5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET SELECTION permite selecionar uma célula, uma fila, uma coluna ou toda uma *area* como seria feito com um mouse. Este comando também lhe permite desmarcar a seleção atual. @@ -37,4 +34,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. #### Ver também -[QR GET SELECTION](qr-get-selection.md) \ No newline at end of file +[QR GET SELECTION](qr-get-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 794 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md index e7e342e0b11400..7f5c9907b33538 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET SORTS permite definir o sentido de ordenação de cada coluna do relatório rápido cuja referência é passada em *area*. @@ -49,4 +46,14 @@ Se passa um número de área *inválido*, se gera o erro -9850. #### Ver também -[QR GET SORTS](qr-get-sorts.md) \ No newline at end of file +[QR GET SORTS](qr-get-sorts.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 752 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md index 016483f30184b4..fd2813f565b4c9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET TEXT PROPERTY permite definir as propriedades de texto da célula determinada pelos parâmetros *numColuna* e *numLinha*. @@ -86,4 +83,14 @@ Este método define vários atributos para o título da primeira coluna: #### Ver também -[QR Get text property](qr-get-text-property.md) \ No newline at end of file +[QR Get text property](qr-get-text-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 759 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md index 3a15b81c160502..ab1de742da7512 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** este comando não pode criar um subtotal. @@ -100,4 +97,14 @@ Se o parâmetro *numQuebra* for incorreto, se gera o erro -9853. #### Ver também -[QR GET TOTALS DATA](qr-get-totals-data.md) \ No newline at end of file +[QR GET TOTALS DATA](qr-get-totals-data.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 767 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md index e48ba86f4f82c1..74f87f51fe0cfa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET TOTALS SPACING permite definir um espaço sobre a linha de subtotal. Aplica unicamente ao modo lista. @@ -40,4 +37,14 @@ Se o parâmetro *subtotal*, é incorreto, se gera o erro -9852. #### Ver também -[QR GET TOTALS SPACING](qr-get-totals-spacing.md) \ No newline at end of file +[QR GET TOTALS SPACING](qr-get-totals-spacing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 761 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md index a0fd7bf8909760..42646a5598f309 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md @@ -21,10 +21,7 @@ displayed_sidebar: docs #### Descrição -**QUERY BY ATTRIBUTE** localiza os registros que correspondam com a string de consulta definida utilizando os parâmetros *campoObjeto*, *caminhoAtributo*, *opPesq* e *valor* e retorna uma seleção de registros para a *tabela*. - - -**QUERY BY ATTRIBUTE** altera a seleção atual de *tabela* para o processo atual e faz o primeiro registro da nova seleção do registro atual. Se o parâmetro *tabela* for omitido, o comando aplica-se a tabela como padrão. Se você não tiver definido qualquer tabela padrão, ocorre um erro. +**QUERY BY ATTRIBUTE** localiza os registros que correspondam com a string de consulta definida utilizando os parâmetros *campoObjeto*, *caminhoAtributo*, *opPesq* e *valor* e retorna uma seleção de registros para a *tabela*.altera a seleção atual de *tabela* para o processo atual e faz o primeiro registro da nova seleção do registro atual. Se o parâmetro *tabela* for omitido, o comando aplica-se a tabela como padrão. Se você não tiver definido qualquer tabela padrão, ocorre um erro. O parâmetro opcional *opConj* é usado para combinar várias chamadas a **QUERY BY ATTRIBUTE** no caso de várias pesquisas. Os operadores de conjunção disponíveis são o mesmo que o comando [QUERY](query.md): @@ -408,4 +405,16 @@ A variável Ok toma o valor 0 se: *Estrutura dos objetos de linguagem 4D* -[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) \ No newline at end of file +[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1331 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md index c206c45fa9b923..06003a5b6f2043 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição QUERY BY EXAMPLE realiza a mesma ação que o comando de menu Pesquisa por formulário... no ambiente Desenho. Este comando mostra o formulário de entrada atual como janela de pesquisa. QUERY BY EXAMPLE busca em *tabela* os dados que o usuário introduz na janela de pesquisa. O formulário deve conter os campos que você queira utilizar para realizar a pesquisa. A pesquisa é otimizada; os campos indexados são utilizados automaticamente para otimizar a pesquisa. @@ -42,4 +39,17 @@ Se o usuário clicar no botão Aceitar, ou pressionar a tecla Enter, a variável #### Ver também [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 292 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md index b154b3656dcca9..2e56819b8c9817 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md @@ -79,4 +79,15 @@ Este exemplo utiliza uma união para buscar todas as linhas de faturas de client [QUERY](query.md) [QUERY BY SQL](query-by-sql.md) [QUERY SELECTION](query-selection.md) -[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) \ No newline at end of file +[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 48 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md index d637ca42090cb9..029a63c8247354 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QUERY BY SQL permite aproveitar diretamente o motor SQL integrado de 4D. Este comando pode executar um pedido simples SELECT que pode ser escrito desta forma: @@ -165,4 +162,16 @@ Se o formato da condição de pesquisa for correto, a variável Sistema OK assum #### Ver também -[QUERY BY FORMULA](query-by-formula.md) \ No newline at end of file +[QUERY BY FORMULA](query-by-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 942 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md index cd0982b65999f0..b177827d08748d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md @@ -44,4 +44,16 @@ Se quiser encontrar pessoas com uma idade entre 20 e 30 nos registros que foram #### Ver também -[QUERY BY ATTRIBUTE](query-by-attribute.md) \ No newline at end of file +[QUERY BY ATTRIBUTE](query-by-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1424 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md index 1bec13f81ae929..2c1575aa67da18 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md @@ -29,4 +29,15 @@ Para maior informação, consulte a descrição do comando [QUERY BY FORMULA](qu [QUERY](query.md) [QUERY BY FORMULA](query-by-formula.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 207 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md index d4d94551993208..68702cfee15ce3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md @@ -27,4 +27,14 @@ Para maior informação, consulte a descrição do comando [QUERY WITH ARRAY](qu #### Ver também -[QUERY WITH ARRAY](query-with-array.md) \ No newline at end of file +[QUERY WITH ARRAY](query-with-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1050 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md index 502c662aa83bf4..abc2ae17716819 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md @@ -42,4 +42,16 @@ Isso faz com que encontre todas as empresas localizadas em Nova Iorque, com ativ #### Ver também -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 341 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md index 9c95654d762629..25bfad9d64cf9b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md @@ -38,4 +38,14 @@ O exemplo a seguir lhe permite recuperar os registros de clientes franceses e am #### Ver também -[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) \ No newline at end of file +[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 644 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query.md index 64c39748cbc628..7dba48007efc0e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query.md @@ -309,4 +309,16 @@ A variável Ok toma o valor 0 se: #### Ver também -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 277 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md index e2e1b0537d06d8..62a0f28fe2796b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md @@ -65,4 +65,13 @@ O método de projeto listado aqui está associado com o item Quit ou Exit do men #### Ver também -[Método banco de dados On Exit](metodo-banco-de-dados-on-exit.md) \ No newline at end of file +[Método banco de dados On Exit](metodo-banco-de-dados-on-exit.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 291 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/random.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/random.md index cc901ae08b9bec..583dbd46fb33a1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/random.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/random.md @@ -32,3 +32,13 @@ O exemplo a seguir atribui um valor aleatório entre 10 e 30 à variável *vlRes ```4d  vlResult:=(Random%21)+10 ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 100 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md index 4912a0be9133e9..6da8eda75151ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md @@ -37,4 +37,13 @@ O seguinte exemplo testa o estado da tabela \[Faturas\]. Se o estado da tabela \ [READ ONLY](read-only.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 362 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md index 8640a5edad1a15..209b0dff775857 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md @@ -25,4 +25,13 @@ Utilize READ ONLY quando não necessite modificar os registros. [Read only state](read-only-state.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 145 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md index c34c1b88118405..0fc716f23ca121 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md @@ -40,4 +40,14 @@ Se a execução do comando é correta, a variável sistema Document contém a ro [BLOB TO PICTURE](blob-to-picture.md) *Imagens* [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 678 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md index 75bce916054b3b..3b49fd3838e210 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md @@ -29,4 +29,13 @@ Utilize READ WRITE quando tenha que modificar um registro e guardar as mudanças [READ ONLY](read-only.md) [Read only state](read-only-state.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 146 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md index 1aaffed4a7a728..8913cb28a31e43 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md @@ -131,4 +131,13 @@ Depois de executar este código: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 552 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md index 6d0a969939c56d..a8b038f3630e1d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md @@ -63,4 +63,14 @@ Note que o acesso à variável interprocesso *vtBuffer* deve ser protegida por u [RECEIVE PACKET](receive-packet.md) [Semaphore](semaphore.md) [SET CHANNEL](set-channel.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 172 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md index 375af33a26d7a2..5a9f8d64c49f54 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md @@ -114,4 +114,14 @@ Depois de um chamado a RECEIVE PACKET, a variável sistema OK recebe o valor 1 s [SEND PACKET](send-packet.md) [SET DOCUMENT POSITION](set-document-position.md) [SET TIMEOUT](set-timeout.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 104 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md index c7e54c18852c63..eea68ab99ccfc2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md @@ -150,4 +150,14 @@ The OK system variable is set to 1 if the record is received. Otherwise, the OK [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 79 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md index 60c68bc5d8c24e..486c1041e60048 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md @@ -40,4 +40,14 @@ A variável de sistema OK é definida como 1 se a variável for recebida. Caso c [ON ERR CALL](on-err-call.md) [RECEIVE RECORD](receive-record.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 81 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md index f6f421bc5a9010..59beb7f6389b56 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md @@ -42,4 +42,13 @@ O exemplo a seguir salva o número do registro atual e depois procura na tabela [Is new record](is-new-record.md) [Selected record number](selected-record-number.md) [Sequence number](sequence-number.md) -*Sobre Números de Registros* \ No newline at end of file +*Sobre Números de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 243 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md index 0393c3d55474d0..c4ae06f56394dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md @@ -34,4 +34,13 @@ End for #### Ver também -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 76 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md index 226584f585e281..f0a832535f4c9a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md @@ -32,4 +32,13 @@ O seguinte exemplo mostra um alerta indicando a porcentagem de clientes classifi #### Ver também [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 195 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md index 3e9d614b260cf7..f5aa22605136f9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md @@ -28,4 +28,13 @@ O exemplo a seguir mostra um alerta que indica o número de registros na tabela: #### Ver também -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 83 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md index 99e602eb55e6e3..f84837ec8b00c0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando REDRAW WINDOW provoca uma atualização do conteúdo da janela cujo número de referência é passado em janela. @@ -26,4 +23,13 @@ Se omitir o parâmetro *janela*, REDRAW WINDOW aplica à janela do primeiro plan #### Ver também -[ERASE WINDOW](erase-window.md) \ No newline at end of file +[ERASE WINDOW](erase-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 456 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md index f8bf5bec425b91..154da16492e961 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Quando utilizar um método para modificar o conteúdo de um campo ou sub campo mostrado em um sub-formulário, deve executar REDRAW para ter certeza que o formulário esteja corretamente atualizado. . @@ -24,4 +21,13 @@ No contexto dos list boxes em modo seleção,quando a instrução REDRAW for apl #### Ver também -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 174 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md index 9ffe270a20a1a0..a5e1160553be40 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **REDUCE RESTORE WINDOW** reduz/expande a janela cujo número de referência foi passado em *janela d*esde a barra de tarefas em Windows ou no dock em macOS. @@ -31,4 +28,13 @@ O comando muda o estado da janela: [Is window reduced](is-window-reduced.md) [MAXIMIZE WINDOW](maximize-window.md) -[MINIMIZE WINDOW](minimize-window.md) \ No newline at end of file +[MINIMIZE WINDOW](minimize-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1829 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md index 644fa3fb93bf56..8886c1355331d2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md @@ -54,4 +54,15 @@ O seguinte exemplo pesquisa as estatísticas corretas para uma concorrência mun *Conjuntos* [ORDER BY](order-by.md) [QUERY](query.md) -[SCAN INDEX](scan-index.md) \ No newline at end of file +[SCAN INDEX](scan-index.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 351 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md index 4e70c59003581c..42d841a4efcb05 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Refresh license** atualiza a licença atual de servidor 4D. Conecta o servidor com o banco de dados de clientes 4D e ativa automaticamente qualquer licença nova ou atualizada (por exemplo, clientes comprados adicionais) relacionada com a licença atual. @@ -47,3 +44,13 @@ Se quiser atualizar sua licença e receber uma mensagem quando se completar:     ALERT($res.statusText)  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1336 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md index 53851a9ed5a1f3..4a25d70d0dfd91 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando REGENERATE MISSING TABLE reconstrui a tabela não encontrada cujo nome é passado no parâmetro *nomTabela*. Quando se reconstrui uma tabela não encontrada, ela se torna visível no editor de estrutura e seus dados são acessíveis novamente. @@ -61,4 +58,13 @@ Este método regenera todas as tabelas não encontradas eventualmente presentes #### Ver também -[GET MISSING TABLE NAMES](get-missing-table-names.md) \ No newline at end of file +[GET MISSING TABLE NAMES](get-missing-table-names.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1126 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md index d5589d0f1357c6..8e82b85750e657 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando REGISTER CLIENT “registra” uma máquina cliente com o nome especificado em *nomeCliente* no 4D Server, a fim de permitir outros clientes ou eventualmente 4D server (utilizando métodos armazenados) executar métodos fazendo uso do comando [EXECUTE ON CLIENT](execute-on-client.md). Uma vez registrado, um cliente 4D pode executar um ou vários métodos para outros clientes. @@ -114,4 +111,14 @@ Se um cliente 4D está registrado corretamente, a variável do sistema OK é igu [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 648 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md index baba4589375d65..a3115afe783ef5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md @@ -47,4 +47,13 @@ No primeiro parâmetro, passe *curPassPhrase* ou *curDataKey* que define a chave #### Ver também -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1638 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md index 3aa9d08aa7aabb..e7ec15588124fb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md @@ -38,4 +38,13 @@ Se quiser rejeitar ou aceitar as novas conexões de clientes: [DROP REMOTE USER](drop-remote-user.md) [Application info](application-info.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1635 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject.md index ea485791b3c9b9..24d82eaaf38aad 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição REJECT tem duas sintaxes. A primeira sintaxe não tem parâmetros. Neste caso, o comando rechaça a totalidade da entrada e obriga ao usuário a permanecer no formulário. A segunda sintaxe recusa somente o *campo* e obriga ao usuário a permanecer no campo. @@ -63,4 +60,13 @@ O seguinte exemplo é parte de um método de objeto para um campo *\[Empregados\ [ACCEPT](accept.md) [CANCEL](cancel.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 38 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md index 383291b3d8947a..b327dd1e593c05 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md @@ -34,4 +34,15 @@ Este exemplo seleciona todas as faturas de clientes com crédito superior ou igu [QUERY](query.md) [RELATE ONE](relate-one.md) -[RELATE ONE SELECTION](relate-one-selection.md) \ No newline at end of file +[RELATE ONE SELECTION](relate-one-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 340 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md index 233d65aab779e4..a11f25382c4c61 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md @@ -65,4 +65,14 @@ Note que é necessário o comando RELATE MANY, mesmo que as relações sejam aut #### Ver também [OLD RELATED MANY](old-related-many.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 262 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md index 7edc9c271cc731..9094453dc74fd2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md @@ -57,4 +57,15 @@ A seguinte técnica utiliza **RELATE ONE SELECTION** para obter o mesmo resultad *Conjuntos* [QUERY](query.md) [RELATE MANY SELECTION](relate-many-selection.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 349 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md index 4bad6510ef7e51..bf597e80bd65df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição RELATE ONE aceita duas sintaxes. @@ -91,4 +88,16 @@ Se o comando for executado corretamente e se os registros relacionados forem car #### Ver também [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 42 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md index 634c8671737552..0fd9ce9aaa1a44 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando RELEASE MENU apaga da memória o menu cuja referência se passa em *menu*.. A regra é a seguinte: a cada [Create menu](create-menu.md) deve corresponder um [RELEASE MENU](release-menu.md). @@ -56,4 +53,13 @@ Este exemplo mostra as diferentes formas de utilizar este comando: #### Ver também -[Create menu](create-menu.md) \ No newline at end of file +[Create menu](create-menu.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 978 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md index 89d9ededd204c7..f1b1e34b4a2a30 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md @@ -25,4 +25,13 @@ A continuação deve recarregar os dados utilizando o comando **RELOAD EXTERNAL #### Ver também -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1135 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md index 263fcd30510978..101fa90086a917 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **RELOAD PROJECT** recarrega as definições do arquivo fonte (métodos, formulários, etc.) do disco para o projeto executando no ambiente atual 4D. Só pode ser usado com projetos 4D executados em **modo interpretado**. A execução de comando é assíncrona. @@ -36,4 +33,13 @@ Quando o comando for chamado de: #### Ver também - \ No newline at end of file + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1739 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md index 57c5388c1d5e89..355e8e2416624e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver também -[ADD TO SET](add-to-set.md) \ No newline at end of file +[ADD TO SET](add-to-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 561 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md index d35130d6717816..14c9783f42d887 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando REMOVE PICTURE FROM LIBRARY elimina da biblioteca de imagens a imagem cujo número de referência se passa em *refImag* ou cujo nome se passa em *nomImag*. @@ -51,4 +48,14 @@ O exemplo a seguir apaga da biblioteca de imagens toda imagem cujo nome comece p [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 567 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md index bc83b5f5d63448..cd7e97e50f5696 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md @@ -71,4 +71,13 @@ O exemplo abaixo ilustra o uso do parâmetro \* no caso de uma avaliação diacr [Change string](change-string.md) [Delete string](delete-string.md) -[Insert string](insert-string.md) \ No newline at end of file +[Insert string](insert-string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 233 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/request.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/request.md index 6655d0f57e9a06..7a6db46734bd81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/request.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/request.md @@ -77,4 +77,14 @@ Mostrará a seguinte caixa de diálogo (em Windows): #### Ver também [ALERT](alert.md) -[CONFIRM](confirm.md) \ No newline at end of file +[CONFIRM](confirm.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 163 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md index cf12f2fa02ba9e..9abb9922ed6eff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando RESIZE FORM WINDOW permite modificar o tamanho da janela do formulário atual. @@ -47,4 +44,13 @@ Depois da execução desta linha: [FORM GET PROPERTIES](form-get-properties.md) [FORM SET SIZE](form-set-size.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 890 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md index a6a41aff65ba73..471fbf145cec55 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md @@ -30,4 +30,14 @@ Se *rotaAlias* especifica um alias/atalho, a variável sistema OK assume o valor #### Ver também -[CREATE ALIAS](create-alias.md) \ No newline at end of file +[CREATE ALIAS](create-alias.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 695 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md index 146269c5e39fe6..a3017e64e17583 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md @@ -107,4 +107,13 @@ Este é um exemplo de ponteiro a um array 2D: [Get pointer](get-pointer.md) [Is a variable](is-a-variable.md) [Is nil pointer](is-nil-pointer.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 394 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md index 24d70eead3b5d0..ca4c46cae23529 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando RESOURCE LIST preenche os arrays *resNum* e *resNomes* com os números e os nomes dos recursos cujo tipo se passa em *resTipo*. @@ -71,4 +68,13 @@ O exemplo a seguir copia os recursos imagem presentes em todos os arquivos de re #### Ver também -[RESOURCE TYPE LIST](resource-type-list.md) \ No newline at end of file +[RESOURCE TYPE LIST](resource-type-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 500 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md index 6ca13dec4d6f48..3e68e5493b8fc1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando RESOURCE TYPE LIST preenche o array *resTipos* com os tipos de recursos presentes no(os) arquivo(s) de recursos aberto(s). @@ -82,4 +79,13 @@ Quando este método de projeto for implementado em um banco, pode escrever: #### Ver também -[RESOURCE LIST](resource-list.md) \ No newline at end of file +[RESOURCE LIST](resource-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 499 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md index d66f92ce35153b..bccecce1a71471 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md @@ -33,4 +33,14 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1, cas #### Ver também [Get last update log path](get-last-update-log-path.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1292 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md index 811fcdbdedf23e..c6b71fcce29351 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md @@ -34,4 +34,13 @@ O tipo e o conteúdo dos parâmetros *info1* e *info2* dependem do valor do *sel #### Ver também -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 889 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore.md index 440aeb88c7d243..a5cd48db5540a8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando RESTORE permite restaurar o ou os arquivos incluidos em um arquivo de 4D. Este comando é útil com interfaces personalizadas para a gestão de backups. @@ -35,4 +32,14 @@ Nota: em um aplicativo 4D compilado e fusionado com 4D Volume Desktop, o comando #### Ver também [BACKUP](backup.md) -[RESTORE INFO](restore-info.md) \ No newline at end of file +[RESTORE INFO](restore-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 918 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md index 599c9329fcac0f..e04785fa229901 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md @@ -26,4 +26,13 @@ The **RESUME INDEXES** command can only be called from 4D Server or a local 4D. #### Ver também [CREATE INDEX](create-index.md) -[PAUSE INDEXES](pause-indexes.md) \ No newline at end of file +[PAUSE INDEXES](pause-indexes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1294 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md index b7747789360c33..638da0b578f39c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md @@ -24,4 +24,14 @@ Se *processo* foi atrasado anteriormente, consulte os comandos [PAUSE PROCESS](p #### Ver também [DELAY PROCESS](delay-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 320 | +| Thread-seguro | ✓ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md index e4c4c28625768b..e43c5e00103553 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md @@ -22,4 +22,13 @@ Para saber mais, consulte *Suspender as transações*. [Active transaction](active-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspender as transações* \ No newline at end of file +*Suspender as transações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1386 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md index 70a6ffc6b0f465..47282ae42e85b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Right click retorna [True](true.md "True") se fizer clique no botão direito do mouse. @@ -25,4 +22,13 @@ Este comando deve ser utilizado unicamente no contexto do evento de formulário #### Ver também [Contextual click](contextual-click.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 712 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/round.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/round.md index fd6ab97f09b8b3..6bdd88ae488031 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/round.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/round.md @@ -36,4 +36,13 @@ O exemplo a seguir ilustra como Round funciona com diferentes argumentos. Cada l #### Ver também -[Trunc](trunc.md) \ No newline at end of file +[Trunc](trunc.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 94 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md index 8b3ec5e06531c9..d0ee509fe991a0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SAVE LIST guarda a lista cujo número de referência passou em *lista*, no editor de listas no ambiente Desenho, sob o nome que passou em *nomeLista*. @@ -27,4 +24,13 @@ Seus conteúdos são substituídos se houver uma lista com o mesmo nome. #### Ver também -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 384 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md index 75ebb1baef0ebe..b9c48da6d0bcb0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md @@ -47,4 +47,13 @@ O exemplo a seguir é parte de um método que lê registros de um documento. Nes [CREATE RECORD](create-record.md) [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 53 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md index 577cf3eb2775e7..d67360f071fd16 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md @@ -24,4 +24,13 @@ SAVE RELATED ONE não guardará um registro bloqueado. Quando utilize este coman [CREATE RELATED ONE](create-related-one.md) [Locked](locked.md) [RELATE ONE](relate-one.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 43 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md index 66ee66a78556c9..30d1775c875331 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md @@ -41,4 +41,14 @@ Se o usuário clicar no botão Cancelar na caixa de diálogo de salvar arquivos, #### Ver também -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 184 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md index 8f1bec2d1c588c..322c3af74cb8c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md @@ -47,4 +47,14 @@ Se as variáveis são guardadas corretamente, a variável sistema OK assume o va [DOCUMENT TO BLOB](document-to-blob.md) [LOAD VARIABLES](load-variables.md) [VARIABLE TO BLOB](variable-to-blob.md) -*Variáveis sistema* \ No newline at end of file +*Variáveis sistema* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 75 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md index 7d50ebbb7142d0..a0fd305f816f74 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md @@ -44,4 +44,14 @@ Se ou comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também -[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) \ No newline at end of file +[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 857 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md index 8207e6a62d3ab3..34c93e7eac857b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md @@ -74,4 +74,14 @@ Se ou comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também -[SAX GET XML CDATA](sax-get-xml-cdata.md) \ No newline at end of file +[SAX GET XML CDATA](sax-get-xml-cdata.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 856 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md index bb1606ae5aa0e0..1e95fdacfc9a83 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md @@ -45,4 +45,14 @@ No caso de um erro, o comando devolve um erro que pode ser interceptado usando u #### Ver também -[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) \ No newline at end of file +[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 852 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md index 78e61ebb0b0ddc..05056af73afae9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md @@ -45,4 +45,14 @@ Em caso de erro, o comando retorna um erro que possa ser interceptado usando um #### Ver também -[SAX ADD XML COMMENT](sax-add-xml-comment.md) \ No newline at end of file +[SAX ADD XML COMMENT](sax-add-xml-comment.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 851 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md index 29d3b665257b36..ed0b271b3d82ad 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md @@ -51,4 +51,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [SAX GET XML ELEMENT VALUE](sax-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 855 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md index c05167201c1b4e..b193bf1d5ece8e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md @@ -36,4 +36,13 @@ Se o último elemento aberto for **, a instrução abaixo: #### Ver também [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 854 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md index 0592408bd1aeea..56ddf1bdfadcd2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md @@ -48,4 +48,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [SAX ADD XML CDATA](sax-add-xml-cdata.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 878 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md index 849ea505480112..05b2839c3aea58 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md @@ -25,4 +25,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [SAX ADD XML COMMENT](sax-add-xml-comment.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 874 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md index 07a70dfd7b76d2..f26a6bf4ae0064 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md @@ -29,4 +29,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [SAX Get XML node](sax-get-xml-node.md) -[SAX SET XML DECLARATION](sax-set-xml-declaration.md) \ No newline at end of file +[SAX SET XML DECLARATION](sax-set-xml-declaration.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 873 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md index b3051d8421bede..8d2a085ecf501d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md @@ -43,4 +43,14 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1\. Ca #### Ver também [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 877 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md index 32b6759b13eb35..1b68f20402c68c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md @@ -56,4 +56,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 876 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md index 3fc55c6b78b6e4..52a386eef7c848 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md @@ -47,4 +47,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 879 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md index 0fab1b74b7c7b4..f8f575f3354161 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md @@ -55,3 +55,14 @@ O exemplo abaixo processa um evento: #### Variáveis e conjuntos do sistema Se o comando tiver sido executado corretamente, a variável sistema Ok assume o valor 1\. Do contrário assume o valor 0 e um erro é gerado. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 860 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md index d2b08a4b108584..de1d548e7a1529 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md @@ -39,4 +39,13 @@ A instrução abaixo devolverá “PI” em *vNom* e “TextProcess” em *vValo #### Ver também [SAX ADD PROCESSING INSTRUCTION](sax-add-processing-instruction.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 875 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md index ea82c2a48478aa..cad0c07b2f9917 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md @@ -53,4 +53,13 @@ O método abaixo: [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 921 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md index 0cfaa8ad21ade4..a5e3c7bf37a113 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md @@ -50,4 +50,14 @@ Se passar em tag um caractere inválido, se gera um erro. #### Ver também [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 853 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md index cf8cc06933ba78..376991475103d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md @@ -43,4 +43,13 @@ O código abaixo: #### Ver também -[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) \ No newline at end of file +[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 858 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md index b77beb08fc4e22..0d03ca5d8aae3e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md @@ -50,4 +50,15 @@ O seguinte exemplo envia cartas aos 50 piores clientes e aos 50 melhores cliente [ORDER BY](order-by.md) [QUERY](query.md) -[REDUCE SELECTION](reduce-selection.md) \ No newline at end of file +[REDUCE SELECTION](reduce-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 350 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md index 53a26623c92e50..8a133254cf21ff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SCREEN COORDINATES devolve nos parâmetros *esquerda*, *acima*, *direita,* e *abaixo* as coordenadas da tela especificada por *IDtela*. @@ -47,4 +44,13 @@ As imagens abaixo demostram as diferenças entre o tamanho da tela e a área de [Count screens](count-screens.md) [Menu bar screen](menu-bar-screen.md) -[SCREEN DEPTH](screen-depth.md) \ No newline at end of file +[SCREEN DEPTH](screen-depth.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 438 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md index 9b37ec9a0079ef..8517f14b5369e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SCREEN DEPTH devolve nos parâmetros *profundidade* e *cor* a informação sobre o monitor. @@ -61,3 +58,13 @@ Sua aplicação mostra vários gráficos a cor. Pode escrever em alguma parte em #### Ver também [Count screens](count-screens.md) + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 439 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md index b2fe0c00640255..f19c71fc32d24c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Em Windows, Screen height devolve a altura da janela da aplicação 4D (janela MDI). Se passado o parâmetro opcional *\**, Screen height devolve a altura da tela. @@ -26,4 +23,13 @@ Em Mac OS, Screen height devolve a altura da tela principal, ou seja a tela onde #### Ver também [SCREEN COORDINATES](screen-coordinates.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 188 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md index 6a323620b5b8ac..4f887f3abcb051 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Em Windows, Screen width devolve o largo da janela da aplicação 4D (janela MDI). Se passado o parâmetro opcional *\**, Screen width devolve o largo da tela. @@ -26,4 +23,13 @@ Em Macintosh, Screen width devolve o largo da tela principal, ou seja o largo da #### Ver também [SCREEN COORDINATES](screen-coordinates.md) -[Screen height](screen-height.md) \ No newline at end of file +[Screen height](screen-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 187 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md index 7495eba686c592..e68c6f371add44 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md @@ -96,4 +96,14 @@ Se não for selecionado nenhum arquivo (por exemplo, se o usuário clicar no bot #### Ver também [Open document](open-document.md) -[Select folder](select-folder.md) \ No newline at end of file +[Select folder](select-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 905 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md index 93dc82fec3f981..3ecfed799b196c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md @@ -88,4 +88,14 @@ O exemplo abaixo lhe permite selecionar a pasta na qual serão armazenadas as im [CREATE FOLDER](create-folder.md) [FOLDER LIST](folder-list.md) -[Select document](select-document.md) \ No newline at end of file +[Select document](select-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 670 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md index 70a65a7b9a026b..b4ed229aa7479e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SELECT LIST ITEMS BY POSITION seleciona os elementos cuja posição se passa em *posiçaoElem* e opcionalmente em *posiçao* *Array* na lista cujo número de referência ou nome de objeto é passada em *lista*. @@ -74,4 +71,13 @@ São selecionados os elementos segundo, terceiro e quinto da lista hierárquica [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 381 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md index 11a2fef02d7826..2efffb283d84e2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SELECT LIST ITEMS BY REFERENCE seleciona os elementos cujo número de referência se passa em *refElem* e opcionalmente em *refArray*, na lista cujo número de referência se passa em *lista*. @@ -51,4 +48,13 @@ Se trabalha com os números de referência dos elementos, tenha certeza de const [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 630 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md index 02dcdcacb6c241..4b091c6a174e86 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-log-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SELECT LOG FILE** cria, ou fecha o arquivo de histórico de acordo com o valor que se passe em *historico*. @@ -40,4 +37,14 @@ OK recebe o valor 1 se o arquivo de histórico é criado ou fechado corretamente #### Ver também -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 345 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md index 35f788ee6122a4..0aa10e22e9188c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Select RGB Color mostra a janela sistema de seleção de cor e devolve o valor RGB da cor selecionada pelo usuário. @@ -42,4 +39,15 @@ O efeito da validação desta caixa de diálogo muda dependendo da plataforma: #### Ver também -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 956 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md index 1acd052334efde..dc364cdade1a9f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Selected list items retorna a posição ou referência do elemento selecionado na lista cujo número de referência ou nome de objeto é passada em *lista*. @@ -86,4 +83,13 @@ Esta é uma lista chamada *hList,* mostrada no ambiente Aplicação: #### Ver também [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 379 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md index 4d1af1e332a5b9..667ccb7c780000 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md @@ -34,4 +34,13 @@ O seguinte exemplo guarda o número do registro atual da seleção em uma variá [GOTO SELECTED RECORD](goto-selected-record.md) [Records in selection](records-in-selection.md) -*Sobre Números de Registros* \ No newline at end of file +*Sobre Números de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 246 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md index 6c51481d14a79e..6a219ea44fe53d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md @@ -107,4 +107,13 @@ Use os 50 primeiros registros atuais da tabela \[facturas\] para carregar vário [ON ERR CALL](on-err-call.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 368 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md index 3400df0a9c26c6..d48ad67e5689e2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md @@ -78,4 +78,13 @@ O mesmo exemplo pode ser escrito: [MULTI SORT ARRAY](multi-sort-array.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 260 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md index ed66b3de1053fd..feecccb34bf0e4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md @@ -90,4 +90,13 @@ Pode usar a sintaxe *modelo* para exportar campos de tabelas diferentes: #### Ver também -[JSON TO SELECTION](json-to-selection.md) \ No newline at end of file +[JSON TO SELECTION](json-to-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1234 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/self.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/self.md index d3432cc27979a9..d97cc2385416a9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/self.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/self.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Nota de compatibilidade Este comando só é conservada por razões de compatibilidade. A partir da versão 12 de 4D, é recomendado utilizar o comando OBJECT Get pointer. @@ -44,4 +41,13 @@ Ver o exemplo do comando [RESOLVE POINTER](resolve-pointer.md "RESOLVE POINTER") [OBJECT Get pointer](object-get-pointer.md) [RESOLVE POINTER](resolve-pointer.md) -[This ](this.md) \ No newline at end of file +[This ](this.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 308 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md index b77724759c1215..fedd861d83e484 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md @@ -153,4 +153,13 @@ Sintaxe: [CLEAR SEMAPHORE](clear-semaphore.md) *Semáforos e Sinais* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 143 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md index dc9fc7957e02b0..d015f4354af2fe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md @@ -51,4 +51,13 @@ You want to send a message to all users, then send a message to a specific user: #### Ver também -[DROP REMOTE USER](drop-remote-user.md) \ No newline at end of file +[DROP REMOTE USER](drop-remote-user.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1632 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md index 2ba195f283b68b..8987f7ec6c5282 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md @@ -81,4 +81,13 @@ Este exemplo ilustra o envio e recuperação de caracteres estendidos através d [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 103 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md index a25dbdd6ff9958..9444d1684516f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md @@ -33,4 +33,13 @@ O registro completo é enviado. Isso significa que imagens e BLOBs armazenados o [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 78 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md index f5f8d0bd300883..b086d7364f8db1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md @@ -31,4 +31,13 @@ Veja o exemplo para o comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 80 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md index f49bf210b5d704..ae41d0996b5aa3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md @@ -58,4 +58,13 @@ O exemplo a seguir é parte de um método de formulário. Estas linhas de códig [Record number](record-number.md) [Selected record number](selected-record-number.md) -*Sobre Números de Registros* \ No newline at end of file +*Sobre Números de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 244 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md index 2e8465c72af74d..89822626359bf3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET ABOUT muda o comando de menu Sobre 4D do menu **Ajuda** (Windows) ou do menu **Aplicação** (Mac OS X) em *textoItem*. @@ -45,4 +42,13 @@ O exemplo abaixo reinicializa o comando de menu Sobre 4D: #### Ver também -[SET HELP MENU](set-help-menu.md) \ No newline at end of file +[SET HELP MENU](set-help-menu.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 316 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md index 211be63d64c662..7af3ba6286de45 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET APPLICATION COLOR SCHEME** define o esquema de cores a usar no nível da aplicação para a sessão atual. Este esquema será aplicado a formulários que não declaram um esquema específico (um esquema de cores definido no nível do formulário tem prioridade sobre o nível da aplicação). @@ -38,4 +35,13 @@ No parâmetro *esquemaCor*, passe um esquema de cores a aplicar: #### Ver também [FORM Get color scheme](form-get-color-scheme.md) -[Get application color scheme](get-application-color-scheme.md) \ No newline at end of file +[Get application color scheme](get-application-color-scheme.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1762 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md index 44f433da0f4858..1b3304dbfc5740 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md @@ -37,4 +37,13 @@ Desativação de asserções [ASSERT](assert.md) [Asserted](asserted.md) -[Get assert enabled](get-assert-enabled.md) \ No newline at end of file +[Get assert enabled](get-assert-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1131 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md index 8c5a86541d2826..d630fee4bbb59e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md @@ -43,4 +43,13 @@ O exemplo a seguir torna automáticas todas as relações Muitos a Um e restabel [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) [SET FIELD RELATION](set-field-relation.md) -*Sobre Relações* \ No newline at end of file +*Sobre Relações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 310 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md index 9a753984000556..94cf722e09b40f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md @@ -49,4 +49,13 @@ O exemplo a seguir cria um BLOB de 16K cheios de 0xFF: #### Ver também -[BLOB size](blob-size.md) \ No newline at end of file +[BLOB size](blob-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 606 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md index bd730a659cfa52..49d0f206994fd7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md @@ -47,4 +47,13 @@ Em , se quiser definir uma prioridade alta para a tabela \[Customer\]: #### Ver também [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) -[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) \ No newline at end of file +[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1425 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md index 47b8909e054faf..2118e843354b9b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md @@ -38,4 +38,13 @@ Se quiser adicionar 100 MB ao tamanho da cache de seu banco de ados atual. Pode #### Ver também -[Get cache size](get-cache-size.md) \ No newline at end of file +[Get cache size](get-cache-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1399 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md index bad7645bb21535..a9005c2493016b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md @@ -168,4 +168,14 @@ Veja os exemplos para os comandos [RECEIVE BUFFER](receive-buffer.md "RECEIVE BU [SEND PACKET](send-packet.md) [SEND RECORD](send-record.md) [SEND VARIABLE](send-variable.md) -[SET TIMEOUT](set-timeout.md) \ No newline at end of file +[SET TIMEOUT](set-timeout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 77 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md index 391a54438c3bca..aa6db00ea2733e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET CURRENT PRINTER** utiliza para designar a impressora a utilizar par imprimir com a aplicação 4D atual. @@ -56,4 +53,14 @@ Criação de um documento PDF em Windows: #### Ver também [Get current printer](get-current-printer.md) -[PRINTERS LIST](printers-list.md) \ No newline at end of file +[PRINTERS LIST](printers-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 787 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md index e6a97c1ecfa967..0aa4fffd382a7b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET CURSOR muda o cursor do mouse para o cursos do sistema cujo número de ID você passar em *cursor*. @@ -38,3 +35,13 @@ Se quiser que o cursor seja exibido ![](../assets/en/commands/pict2478692.en.png     SET CURSOR(9019)  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 469 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md index 56fcdadd3ea1e0..d18b9414691afb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET DATABASE LOCALIZATION é utilizado para modificar o idioma atual do banco de dados para a sessão atual. @@ -71,4 +68,14 @@ A interface do seu aplicativo usa a string estática ":xliff:shopping". Os arqui #### Ver também -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1104 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md index 15865cccb3adfa..36237faa8f0788 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET DATABASE PARAMETER** permite modificar vários parâmetros internos do banco de dados 4D. @@ -147,4 +144,13 @@ Você quer exportar dados em JSON que contém uma data 4D convertida. Note que a [Get database parameter](get-database-parameter.md) [LOG EVENT](log-event.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 642 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md index 985ff1155c27f1..8654ccef2e7d08 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md @@ -64,3 +64,13 @@ Em todos os casos: * 25/01/2007 significa janeiro 25, 2007 Este comando afeta só a entrada de dados. Não tem nenhum efeito no armazenamento de dados, cálculos, etc. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 392 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md index 86c97571ccf65f..9edc92f24ff86f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md @@ -29,4 +29,13 @@ Se omite o parâmetro opcional *ancora*, a posição é relativa ao início do d [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 482 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md index 03adec908ae581..36793bb90c2692 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md @@ -34,4 +34,14 @@ As datas e horas de criação e última modificação são administradas pelo ad #### Ver também -[GET DOCUMENT PROPERTIES](get-document-properties.md) \ No newline at end of file +[GET DOCUMENT PROPERTIES](get-document-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 478 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md index 6723560a078636..12e3d242e59e8a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md @@ -26,4 +26,13 @@ Em Macintosh, é modificado o tamanho do data fork do documento [Get document position](get-document-position.md) [Get document size](get-document-size.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 480 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md index 454e3be2598f66..7b18372f37c16d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET DRAG ICON** associa a imagem de ícone ao cursor durante as operações de arrastar e soltar que se manipulam por programação. @@ -59,4 +56,13 @@ Note que pode modificar a posição do cursor com respeito a imagem: #### Ver também -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1272 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md index 83c49c33d5772b..1f5e086a265f35 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md @@ -42,4 +42,13 @@ Consulte os exemplos do comando [LAUNCH EXTERNAL PROCESS](launch-external-proces #### Ver também -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 812 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md index bdfd5a594b5880..b137a9bf579193 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md @@ -57,4 +57,13 @@ Se você deseja guardar o conteúdo de um arquivo existente no campo imagem, arm #### Ver também [Get external data path](get-external-data-path.md) -[RELOAD EXTERNAL DATA](reload-external-data.md) \ No newline at end of file +[RELOAD EXTERNAL DATA](reload-external-data.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1134 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md index d6fc1db361d269..480aeb129d2947 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md @@ -48,4 +48,14 @@ QR REPORT(\[Faturas\];Char(1))\[#/code4D\] [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 919 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md index 2b208cf4c68f49..b16bba9c10916a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SET FIELD TITLES permite ocultar, renomear e reorganizar os campos de uma tabela ou de uma subtabela passada em *tabela* ou *subtabela* quando aparecem nos editores padrão de 4D, tal como o editor de pesquisas, em modo Aplicação (mais especificamente, quando os editores são chamados através dos comandos do linguagem de 4D). @@ -62,4 +59,13 @@ Ver o exemplo do comando [SET TABLE TITLES](set-table-titles.md). [GET FIELD TITLES](get-field-titles.md) [Last field number](last-field-number.md) [Parse formula](parse-formula.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 602 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md index fcc01c8430c226..e16a994b3fb018 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md @@ -27,4 +27,13 @@ O valor NULL é utilizado pelo motor SQL de 4D. Para maior informação, consult #### Ver também [Is field value Null](is-field-value-null.md) -[Null](null.md) \ No newline at end of file +[Null](null.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 965 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md index c8f4e6839ec59a..368f44696a9e5a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET FILE TO PASTEBOARD adiciona a área de transferência à rota de acesso completa do arquivo passada no parâmetro *arquivo*. Este comando permite criar interfaces permitindo arrastar e soltar objetos 4D aos arquivos no escritório por exemplo. @@ -29,4 +26,13 @@ O comando admite o asterisco *\** como parâmetro opcional. Automaticamente, qua #### Ver também -[Get file from pasteboard](get-file-from-pasteboard.md) \ No newline at end of file +[Get file from pasteboard](get-file-from-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 975 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md index b011785ab63c8b..19ee514b288942 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md @@ -43,4 +43,14 @@ Se quiser promover o usuário atual aos grupos "admin" e "plugins" durante a ses [Get group access](get-group-access.md) [Get plugin access](get-plugin-access.md) [SET PLUGIN ACCESS](set-plugin-access.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1737 | +| Thread-seguro | ✓ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md index a75a68b98c44b0..4c95758c059213 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Set group properties permite modificar e atualizar as propriedades de um grupo existente cujo número de referência único se passa em *refGrupo*, ou para adicionar um novo grupo @@ -58,4 +55,14 @@ Se você não tiver os acessos de privilégio para chamar Set group properties o [GET GROUP LIST](get-group-list.md) [GET GROUP PROPERTIES](get-group-properties.md) -[GET USER LIST](get-user-list.md) \ No newline at end of file +[GET USER LIST](get-user-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 614 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md index eff955a901a472..674161eeb5e68d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET HELP MENU** lhe permite substituir o menu **Ajuda** por padrão de 4D pela coleção de elementos do menu *menuCol* de modo aplicação. @@ -33,7 +30,7 @@ Em *menuCol*, passe uma coleção de objetos de menu que definam todos os elemen | ---------------------------- | ----------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | title | Text | Nome do elemento de menu | | method | Text \| [4D.Function](https://developer.4d.com/docs/API/FunctionClass#about-4dfunction-objects) | Nome do método projeto ou objeto fórmula a executar quando selec ionar o elemento do menu. Quando usar esta propriedade, não deve passar a propriedade "action" (do contrário se ignora "method"). | -| worker | Text \| Number | Nome do worker ou Número do processo que se encarregará da execução do código do "método". Várias configurações são compatíveis, dependendo do valor da propriedade "worker":
    se o nome de worker (Text), 4D utilizar ou criar este worker para executar o "método" (equivalente a [CALL WORKER](call-worker.md)) se for um número de processo, 4D utiliza este processo se existir, em caso contrário, não faz nada (equivalente a [CALL WORKER](call-worker.md)) se não estiver definido e a aplicação mostrar um diálogo atual (frontmost dialog), 4D utiliza o processo deste diálogo (equivalente a [CALL FORM](../commands/call-form.md)) se não estiver definido e a aplicação não mostrar um diálogo atual, 4D chama e utiliza o worker1 (4D remoto/mono usuario) ou o worker *4D\_server\_interface* (4D Server) | +| worker | Text \| Number | Nome do worker ou Número do processo que se encarregará da execução do código do "método". Várias configurações são compatíveis, dependendo do valor da propriedade "worker":
    se o nome de worker (Text), 4D utilizar ou criar este worker para executar o "método" (equivalente a [CALL WORKER](call-worker.md)) se for um número de processo, 4D utiliza este processo se existir, em caso contrário, não faz nada (equivalente a [CALL WORKER](call-worker.md)) se não estiver definido e a aplicação mostrar um diálogo atual (frontmost dialog), 4D utiliza o processo deste diálogo (equivalente a [CALL FORM](call-form.md)) se não estiver definido e a aplicação não mostrar um diálogo atual, 4D chama e utiliza o worker1 (4D remoto/mono usuario) ou o worker *4D\_server\_interface* (4D Server) | | action | Text | *Ação estandarte* a executar quando o elemento de menu for selecionado. Quando se utilizar esta propriedade, a propriedade "method" se ignora se for passada. | | shortcutKey | Text | Tecla de acesso direto do elemento (para chamar com a tecla Ctrl/Comando) | | shortcutShift | Boolean | True para adicionar a tecla **Maiús** ao acesso direto do elemento | @@ -61,4 +58,13 @@ Se quiser personalizar o menu **Ajuda** de sua aplicação: #### Ver também -[SET ABOUT](set-about.md) \ No newline at end of file +[SET ABOUT](set-about.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1801 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md index 7bf3af9685cf4b..0347cf1e132fbe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md @@ -47,4 +47,13 @@ Em , se quiser estabelecer uma alta prioridade para os índices campo \[Customer #### Ver também [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) -[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) \ No newline at end of file +[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1401 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md index ffa3e8cae6a48c..d506167bf13316 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md @@ -89,4 +89,13 @@ O exemplo abaixo indexa o campo *\[Clientes\]Num*: [DELETE INDEX](delete-index.md) [GET FIELD PROPERTIES](get-field-properties.md) [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 344 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md index d0aa951cff050a..350216582779a0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET LIST ITEM FONT modifica a fonte de caracteres do elemento especificado pelo parâmetro *refElem* da lista cujo número de referência ou nome de objeto se passa em *lista*. @@ -46,4 +43,13 @@ Aplicar a fonte Times ao elemento atual da lista: [Get list item font](get-list-item-font.md) [OBJECT SET FONT](object-set-font.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 953 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md index f9790f5ae93a78..67d1d7df8f87a8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET LIST ITEM ICON permite modificar o ícone associado ao elemento especificado pelo parâmetro *refElem* da lista cujo número de referência o nome de objeto se passa em *lista* @@ -48,4 +45,13 @@ Queremos atribuir a mesma imagem a dois elementos diferentes. O seguinte código [SET LIST ITEM](set-list-item.md) [SET LIST ITEM FONT](set-list-item-font.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 950 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md index be333a1f1df29e..e7168df5d9c722 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET LIST ITEM PARAMETER permite modificar o parâmetro *seletor* para o elemento *refElem* da lista hierárquica cuja referência ou nome de objeto são passadas no parâmetro *lista*. @@ -65,4 +62,13 @@ APPEND TO LIST($myList;ak standard action title;1) [Action info](action-info.md) [GET LIST ITEM PARAMETER](get-list-item-parameter.md) [GET LIST ITEM PARAMETER ARRAYS](get-list-item-parameter-arrays.md) -[INSERT IN LIST](insert-in-list.md) \ No newline at end of file +[INSERT IN LIST](insert-in-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 986 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md index cd75cea6300906..1111bdd51125df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET LIST ITEM PROPERTIES** modifica o elemento designado pelo parâmetro *refElem* da lista cujo número de referência ou nome de objeto se passa em *lista*. @@ -81,4 +78,13 @@ O exemplo a seguir modifica o texto do elemento atual de *lista* negrito e verme [GET LIST ITEM PROPERTIES](get-list-item-properties.md) *Listas hierárquicas* [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 386 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md index d38152990f04c8..37b1cac7d9df2c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET LIST ITEM modifica o elemento designado pelo parâmetro *refElem* na lista cujo número de referência ou nome de objeto se passa em *lista*. @@ -79,4 +76,13 @@ Ver exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST"). [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [SET LIST ITEM FONT](set-list-item-font.md) [SET LIST ITEM ICON](set-list-item-icon.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 385 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md index 4e9be0cddae3ac..104d511e4d1e49 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET LIST PROPERTIES define a aparência da lista hierárquica cuja referência é passada no parâmetro *lista*. @@ -66,4 +63,13 @@ Se deseja recusar a sublista de expandir/contrair ao dar duplo clique, pode escr [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [GET LIST PROPERTIES](get-list-properties.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 387 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md index 87ae4507235e06..862534eabe9b5c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MACRO PARAMETER insere o texto *paramText* no método desde o qual é chamado. @@ -58,4 +55,13 @@ Esta macro cria um novo texto que será devolvido ao método que faz a chamada: #### Ver também -[GET MACRO PARAMETER](get-macro-parameter.md) \ No newline at end of file +[GET MACRO PARAMETER](get-macro-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 998 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md index ebbeeb6e1f25fd..3f72ea87c2d314 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição MENU BAR substitui a barra de menus atual com a especificada por *barra* no processo atual unicamente. No parâmetro *barra*, pode passar o número ou nome da nova barra. Igualmente pode passar uma referência única de menu (tipo [MenuRef](# "Unique ID (16-character alphanumeric) of a menu"), string de 16 caracteres). Quando trabalha com referências, os menus podem ser utilizados como barras de menu e vice-versa (ver a seção *Gestão de Menus*). @@ -120,4 +117,13 @@ Neste exemplo, criaremos por programação, uma barra de menus incluindo os segu #### Ver também -*Gestão de Menus* \ No newline at end of file +*Gestão de Menus* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 67 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md index 4bfe1d67737e86..f8c0d618a90c7f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET MENU ITEM ICON** permite modificar o ícone associado à linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -45,4 +42,13 @@ Uso de uma imagem localizada na pasta Recursos do banco de dados: #### Ver também -[GET MENU ITEM ICON](get-menu-item-icon.md) \ No newline at end of file +[GET MENU ITEM ICON](get-menu-item-icon.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 984 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md index caa0c9cbe76093..bb5fff3732861a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM MARK modifica a marca do elemento de menu cujo número ou referência de menu é passado em *menu* e cujo número de linha se passa em *menuItem* ao primeiro caractere da cadeia passada em *marcar*. Pode passar -1 em *menuItem* para designar a última linha adicionada ao menu. @@ -38,4 +35,14 @@ Ver exemplo para o comando [Get menu item mark](get-menu-item-mark.md "Get menu #### Ver também -[Get menu item mark](get-menu-item-mark.md) \ No newline at end of file +[Get menu item mark](get-menu-item-mark.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 208 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md index 9e9a3c0c0128ff..4cce50a3b493b6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM METHOD pode ser utilizada para modificar o método de projeto 4D associado à linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -37,4 +34,13 @@ Consulte o exemplo do comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR"). #### Ver também -[Get menu item method](get-menu-item-method.md) \ No newline at end of file +[Get menu item method](get-menu-item-method.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 982 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md index 64102177344dc1..e91019faf65096 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM PARAMETER permite associar uma cadeia de caracteres personalizada com uma linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -43,4 +40,13 @@ Este código oferece um menu que inclui os nomes das janelas abertas e permite r [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[Get selected menu item parameter](get-selected-menu-item-parameter.md) \ No newline at end of file +[Get selected menu item parameter](get-selected-menu-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1004 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md index 30f41bd26f4296..4a748537bb576d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM PROPERTY permite fixar o *valor* da *propriedade* para a linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -51,4 +48,13 @@ Proprierdade personalizada - Nesta propriedade pode passar qualquer texto person #### Ver também [Dynamic pop up menu](dynamic-pop-up-menu.md) -[GET MENU ITEM PROPERTY](get-menu-item-property.md) \ No newline at end of file +[GET MENU ITEM PROPERTY](get-menu-item-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 973 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md index f90cdea5d0f68e..c74700471cb56a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM SHORTCUT modifica o atalho Ctrl (Windows) ou comando (Macintosh) para o comando de menu cujos números de menu e de elemento são passados em *menu* e *menuItem,* pelo caracter cujo caractere de código ou texto se passa em *itemKey*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado ao menu. Esta tecla se combinará automaticamente com a tecla **Ctrl** (Windows) ou **Comando** (Macintosh) para definir o novo atalho de teclado. @@ -78,4 +75,14 @@ Definição do atalho\\shortcut para o item de menu "Close: #### Ver também [Get menu item key](get-menu-item-key.md) -[Get menu item modifiers](get-menu-item-modifiers.md) \ No newline at end of file +[Get menu item modifiers](get-menu-item-modifiers.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 423 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md index 4cd2da9d178fb3..af9ae8cb541735 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM STYLE cambia o estilo da fonte da linha de menu cujo número ou referência de menu se passa em *menu* e cujo número de elemento se passa em *menuItem* de acordo ao estilo de fonte passado em *itemEstilo*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu*. @@ -40,4 +37,14 @@ No parâmetro *itemEstilo* pode definir o estilo do elemento. Passe uma combina #### Ver também -[Get menu item style](get-menu-item-style.md) \ No newline at end of file +[Get menu item style](get-menu-item-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 425 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md index 8d71b0da60dcd9..edf640ddc06707 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM modifica o texto da linha de menu cujo número ou referencia de menu se passa em *menu* e cujo número de elemento se passa em *menuItem*, para o texto que passou em *itemText*. Pode passar -1 em *menuItem* para designar o último elemento adicionado a *menu*. @@ -34,4 +31,14 @@ Se omitir o parâmetro *processo*, SET MENU ITEM é aplicada à barra de menus d [APPEND MENU ITEM](append-menu-item.md) [Get menu item](get-menu-item.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 348 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md index ab4ab0310b0376..bf126db296f1bb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md @@ -25,4 +25,13 @@ O nome por defeito se utiliza como nome de arquivo quando a imagem se exporta em #### Ver também [Get picture file name](get-picture-file-name.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1172 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md index 97ca0ebe645453..f55242b1a3dfe1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md @@ -86,4 +86,14 @@ Quanto todos os metadados são manipulados via uma referência de elementos DOM, [GET PICTURE KEYWORDS](get-picture-keywords.md) [GET PICTURE METADATA](get-picture-metadata.md) *Picture Metadata Names* -*Picture Metadata Values* \ No newline at end of file +*Picture Metadata Values* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1121 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md index 0e0037894ab445..035a3192ade2bf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PICTURE TO LIBRARY cria uma nova imagem ou substitui uma imagem existente na biblioteca de imagens. @@ -94,4 +91,15 @@ Se não houver suficiente memória para adicionar a imagem à biblioteca de imag [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) \ No newline at end of file +[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 566 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md index 3fc93bfe5cd3da..c5595f82ec7f5b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SET PICTURE TO PASTEBOARD limpa a área de transferência e coloca uma cópia da imagem que passou em *imagem* na área de transferência. @@ -50,4 +47,14 @@ Se não houver suficiente memória para colocar uma cópia da imagem na área de #### Ver também [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) \ No newline at end of file +[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 521 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md index 800b6a372270e0..415116ffa825d4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PLUGIN ACCESS permite especificar por programação o grupo de usuários autorizado a utilizar cada plug-in com “número de série” instalado na base. Ao fazer isto, pode administrar a repartição das licenças dos plug-ins. @@ -45,4 +42,13 @@ Passe no parâmetro *grupo* o nome do grupo cujos usuários estão autorizados a [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 845 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md index b5801d26d39fa0..7b60813672a775 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PRINT MARKER permite definir a posição de um marcador durante a impressão. Combinado com os comandos [Get print marker](get-print-marker.md "Get print marker"), OBJECT MOVE ou [Print form](../commands/print-form.md "Print form"), este comando lhe permite ajustar o tamanho das áreas de impressão. @@ -188,4 +185,13 @@ El método de formulario List\_Imp3 es el siguiente: [PAGE BREAK](page-break.md) [Print form](../commands/print-form.md) [PRINT RECORD](print-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 709 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md index e9f0e39776a0ab..0f551455de5812 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PRINT OPTION se utiliza para modificar por programação o valor de una opção de impressão.. Cada opção definida utilizando este comando se aplica [ configurações de impressão 4D](https://developer.4d.com/docs/settings/compatibility/) sempre que não se chame outro comando que modifique os parâmetros de impressão ([PRINT SETTINGS](print-settings.md), [PRINT SELECTION](print-selection.md) sem o parâmetro > parâmetro, etc.). Se tiver aberto um trabalho de impressão, (por exemplo com [OPEN PRINTING JOB](open-printing-job.md)), a opção está configurada para o trabalho e não pode ser modificada enquanto o trabalho não tiver terminado (exceto para Orientation option, ver abaixo). @@ -82,4 +79,14 @@ Se o valor passado por uma *opção* é incorreto ou se não estiver disponível *Opções de Impressão* [Print form](../commands/print-form.md) [PRINT OPTION VALUES](print-option-values.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 733 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md index 75ab59c237d852..4d250750f14626 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SET PRINT PREVIEW lhe permite selecionar ou desmarcar por programação a opção de pré-visualização em tela. Se passar TRUE em *vistaprevia*, se selecionar Pré-visualização em tela, se passar FALSE, será desmarcado. Este parâmetro é local para um processo e não afeta a impressão de outros processos ou usuários. @@ -38,4 +35,13 @@ O exemplo a seguir seleciona a opção Pré-visualização em tela para mostrar #### Ver também [Get print preview](get-print-preview.md) -[Is in print preview](is-in-print-preview.md) \ No newline at end of file +[Is in print preview](is-in-print-preview.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 364 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md index fcae5fd36283b2..022a342254ef2a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PRINTABLE MARGIN\[#descv\]permite atribuir os valores de varias margens de impressão utilizando os comandos [Print form](../commands/print-form.md), [PRINT SELECTION](print-selection.md) e [PRINT RECORD](print-record.md). @@ -59,4 +56,13 @@ O exemplo a seguir lhe permite obter o tamanho do papel: [GET PRINTABLE MARGIN](get-printable-margin.md) [Get printed height](get-printed-height.md) -[Print form](../commands/print-form.md) \ No newline at end of file +[Print form](../commands/print-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 710 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md index 9e0715ea293361..253dbe855703da 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PROCESS VARIABLE escreve as variáveis processo *dstVar* (*dstVar2*, etc.) do processo de destino cujo número se passa em *processo* utilizando os valores passados em *expr1* (*expr2*, etc.). @@ -98,4 +95,13 @@ Este exemplo escreve a instância das variáveis *v1*, *v2* e *v3* utilizando a [GET PROCESS VARIABLE](get-process-variable.md) [POST OUTSIDE CALL](post-outside-call.md) *Processos* -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 370 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md index 9defc95203da97..8789e747bedbc3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md @@ -68,4 +68,14 @@ Se o comando não é chamado no contexto de uma transação, um erro é gerado. #### Ver também -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 661 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md index 44d8eb7a9c6125..e136d4a455fb1a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md @@ -253,4 +253,13 @@ Depois de implementar este método de projeto em sua aplicação, pode escrever: [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 396 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md index ab70645f2d86ea..7f1f7c69786190 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md @@ -62,4 +62,13 @@ Ver o segundo exemplo do comando [SET QUERY DESTINATION](set-query-destination.m [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 395 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md index 80a8f6b07d696c..f0f31ab4a2e280 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET REAL COMPARISON LEVEL** retorna o valor epsilon utilizado por 4D para fazer comparações de igualdade de valores e expressões de tipo real. @@ -37,3 +34,13 @@ Utilizando **SET REAL COMPARISON LEVEL** , pode aumentar ou reduzir o valor epsi **IMPORTANTE:** modificar o epsilon só afeta a comparação de igualdade de reais. Não tem efeito nos outros cálculos e visualizações de valores reais. **Nota** O comando **SET REAL COMPARISON LEVEL** não tem efeito em pesquisas e ordenações realizadas com campos do tipo Real. Apenas aplica a linguagem 4D. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 623 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md index a8dc20a0137fe1..d361e82999861a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **SET RECENT FONTS** command modifies the list of fonts displayed in the context menu of the "recent fonts". @@ -43,4 +40,13 @@ Then the menu contains: #### Ver também -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1305 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md index 3e29057afd554a..abf460f255a3a6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md @@ -48,4 +48,13 @@ Em , se quiser estabelecer uma prioridade mais alta para os dados escalares \[Cu [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) -[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) \ No newline at end of file +[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1400 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md index 6329ca8140d0ee..bdb20fd788418e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SET TABLE TITLES permite ocultar, renomear e reordenar as tabelas de seu banco quando aparecem nos editores padrão de 4D em modo Aplicação (quando os editores se chamam via os comandos da linguagem 4D). Por exemplo, este comando pode modificar a visualização de tabelas e no editor pesquisas em modo Aplicação. @@ -184,4 +181,13 @@ Se quiser remover todos os campos personalizados e nomes de tabela definidos: [GET TABLE TITLES](get-table-titles.md) [Parse formula](parse-formula.md) [SET FIELD TITLES](set-field-titles.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 601 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md index 6147c436de8b16..c16983656c92a2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SET TEXT TO PASTEBOARD limpa a área de transferência e depois coloca uma cópia do texto em *texto* na área de transferência. @@ -39,4 +36,14 @@ Se o texto se coloca corretamente na área de transferência, a variável OK tom #### Ver também [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 523 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md index 968b7125c9e4c2..570c630782d23f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md @@ -48,4 +48,14 @@ O exemplo a seguir define a porta serial para receber dados. Em seguida, ele def [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) [RECEIVE RECORD](receive-record.md) -[RECEIVE VARIABLE](receive-variable.md) \ No newline at end of file +[RECEIVE VARIABLE](receive-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 268 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md index 46b8b1515eb165..31186be6a05eec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET TIMER permite ativar o evento de formulário On Timer e fixar, para o processo e formulário atual, o número de tics (1 tic = 1/60 de segundo) entre cada evento de formulário On Timer. @@ -47,4 +44,13 @@ Imaginemos que você queira, quando um formulário aparece em tela, que o comput #### Ver também [Form event code](../commands/form-event-code.md) -[REDRAW](redraw.md) \ No newline at end of file +[REDRAW](redraw.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 645 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md index c1589b3689f9ce..45034b61af0680 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET UPDATE FOLDER** especifica a pasta que contém a atualização da aplicação 4D fusionada atual. Esta informação se armazena na sessão 4D até que se chama o método [RESTART 4D](restart-4d.md). Se sair da aplicação manualmente, esta informação não se conserva. @@ -55,4 +52,14 @@ Você criou uma pasta "MyUpdates" em seu disco, na qual localizou uma nova vers #### Ver também [Get last update log path](get-last-update-log-path.md) -[RESTART 4D](restart-4d.md) \ No newline at end of file +[RESTART 4D](restart-4d.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1291 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md index ccf8ee62dfd514..871e3f8b3ab1db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md @@ -39,4 +39,14 @@ Seus usuários se administran através de uma tabela personalizada e utilizam a [CHANGE CURRENT USER](change-current-user.md) [Current user](current-user.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1666 | +| Thread-seguro | ✓ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md index 746d7a5443c8c7..dec2032689b485 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Set user properties permite modificar e atualizar as propriedades de uma conta ativa de usuário existente cujo número de referência se passa no parâmetro *refUsuario* ou para adicionar um novo usuário. @@ -66,4 +63,13 @@ Se você não tiver os acessos de privilégio para chamar Set user properties ou [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 612 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md index e79d9f2b32bf2c..a289755e775857 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET WINDOW RECT modifica as coordenadas globais da janela cujo número de referência for passado em janela. Se a janela não existir, o comando não faz nada. @@ -62,4 +59,13 @@ A janela aparece desta forma: [CONVERT COORDINATES](convert-coordinates.md) [DRAG WINDOW](drag-window.md) [GET WINDOW RECT](get-window-rect.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 444 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md index cc5de98ebd71c1..767b1ebc186ba6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET WINDOW TITLE muda o título da janela cujo número de referência é passado em *janela* para o texto passado em *titulo* (longitude máxima 80 caracteres). @@ -51,4 +48,13 @@ Enquanto realiza uma entrada de dados em um formulário, você clica em um botã #### Ver também -[Get window title](get-window-title.md) \ No newline at end of file +[Get window title](get-window-title.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 213 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md index ebf3e9ea5c59e1..bd7bfa1fa00969 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md @@ -50,4 +50,13 @@ O método abaixo de objeto para o botão *bUnBotao* realiza diferentes ações d [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 543 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md index e89d5241944ae0..09b74bc3130ac9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SHOW MENU BAR torna visível a barra de menus. @@ -29,4 +26,14 @@ Ver exemplo do comando [HIDE MENU BAR](hide-menu-bar.md). [HIDE MENU BAR](hide-menu-bar.md) [HIDE TOOL BAR](hide-tool-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 431 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md index 691cb444a73d78..449b0d026dea77 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md @@ -47,3 +47,14 @@ Os exemplos abaixo ilustram o funcionamento do comando: #### Variáveis e conjuntos do sistema A variável sistema OK assume o valor 1 se o comando for executado corretamente, do contrário assume o valor 0\. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 922 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md index 10458b40d65454..ebe85fce8e08ba 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SHOW PROCESS mostra todas as janelas que pertencem a *processo*. Este comando não traz as janelas de *processo* ao primeiro plano. Para fazer isto, utilize o comando [BRING TO FRONT](bring-to-front.md "BRING TO FRONT"). @@ -33,4 +30,13 @@ O exemplo a seguir mostra um processo chamado Clientes, que foi ocultado previam [BRING TO FRONT](bring-to-front.md) [HIDE PROCESS](hide-process.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 325 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md index 35803b629d48be..97353281041a81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SHOW TOOL BAR** \[#descn\] a visualização das barras de ferramentas personalizadas criadas pelo comando [Open form window](open-form-window.md) para o processo atual\[#/descv\]. @@ -27,4 +24,13 @@ Consulte o exemplo do comando [HIDE TOOL BAR](hide-tool-bar.md). #### Ver também -[HIDE TOOL BAR](hide-tool-bar.md) \ No newline at end of file +[HIDE TOOL BAR](hide-tool-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 433 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md index 4a12b2cb592a92..c9c02199f3d789 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SHOW WINDOW permite mostrar a janela cujo número foi passado em *janela*. Se for omitido este parâmetro, se mostrará a janela do primeiro plano do processo atual. @@ -28,4 +25,13 @@ Consulte o exemplo do comando [HIDE WINDOW](hide-window.md). #### Ver também -[HIDE WINDOW](hide-window.md) \ No newline at end of file +[HIDE WINDOW](hide-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 435 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sin.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sin.md index a8a06183c75bfc..363de99785947d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sin.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sin.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descrição -Sin retorna o seno do *numero*, onde *numero* é expresso em radianos. - -**Nota:** 4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3,14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). +Sin retorna o seno do *numero*, onde *numero* é expresso em radianos.4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3,14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). #### Ver também [Arctan](arctan.md) [Cos](cos.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 17 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md index bd22f654ac36ca..42289330679bbc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md @@ -45,4 +45,13 @@ O exemplo a seguir retorna o número de colunas em um array bidimensional: #### Ver também [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 274 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md index 2d16a68d1f917f..eaa847f7a844dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md @@ -193,4 +193,13 @@ Este exemplo illustra os resultados dos diferentes tipos de declarações: [Is data file locked](is-data-file-locked.md) [SOAP get info](soap-get-info.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 782 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md index 6e9ea3d3f4f4b3..efe31f2464a23a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md @@ -33,4 +33,13 @@ Passe no parâmetro *numInfo* o número do tipo de informação SOAP que deseja #### Ver também [SET DATABASE PARAMETER](set-database-parameter.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 784 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md index 8e4c48d16e6ecf..db93c8cfd8ce90 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md @@ -35,4 +35,13 @@ Se quiser recusar qualquer petição nova a seu servidor de serviços web: #### Ver também [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[WEB Get server info](web-get-server-info.md) \ No newline at end of file +[WEB Get server info](web-get-server-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1636 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md index abff356d5d4a39..56c3fae5de2bfa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md @@ -21,4 +21,13 @@ Este comando pode ser utilizado por razões de segurança no *On Web Authenticat #### Ver também -[SOAP DECLARATION](soap-declaration.md) \ No newline at end of file +[SOAP DECLARATION](soap-declaration.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 783 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md index cd44876630d78d..078446be2bb0f8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md @@ -43,4 +43,13 @@ Regresando ao exemplo do serviço Web “Raiz\_quadrada” da descrição do com #### Ver também [SOAP DECLARATION](soap-declaration.md) -[SOAP get info](soap-get-info.md) \ No newline at end of file +[SOAP get info](soap-get-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 781 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md index 98cd85b70b3f35..9759822ae29882 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando SORT ARRAY ordena um ou mais arrays em ordem ascendente ou descendente. - -* **Notas:** +O comando SORT ARRAY ordena um ou mais arrays em ordem ascendente ou descendente. Você não pode ordenar arrays *Ponteiro* ou *imagem*. Você pode classificar os elementos de um array bidimensional (i.e., a2DArray{$*vlThisElem*}), mas você não pode classificar o array bidimensional em si (i.e., *a2DArray*). Pode ordenar arrays Objeto. Elementos Null são agrupados e elementos array são ordenados com ordem interna @@ -82,4 +80,13 @@ Você exibe os nomes da tabela *\[Pessoas\]* em uma janela flutuante. Quando voc [Find in sorted array](find-in-sorted-array.md) [MULTI SORT ARRAY](multi-sort-array.md) [ORDER BY](order-by.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 229 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md index 7a6d51f1c97b80..b4bbde50cf5f08 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SORT LIST ordena a lista cujo número de referência se passa em *lista*. @@ -58,4 +55,13 @@ A lista se verá assim: #### Ver também -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 391 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md index 80e791f72360e9..aa1aaebb3512ba 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SPELL ADD TO USER DICTIONARY** agrega uma ou mais palavras ao dicionário usuário atual. @@ -38,4 +35,13 @@ Adição de nomes próprios ao dicionário de usuário: #### Ver também -[SPELL CHECK TEXT](spell-check-text.md) \ No newline at end of file +[SPELL CHECK TEXT](spell-check-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1214 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md index 045ea3f90ab80a..2cea5f563d6955 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SPELL CHECK TEXT** verifica o conteúdo do parâmetro *texto* a partir do caracter *posVerif* e devolve a posição da primeira palavra desconhecida encontrada (se houver). @@ -54,4 +51,14 @@ Queremos contar o número possível de erros em um texto: #### Ver também [SPELL ADD TO USER DICTIONARY](spell-add-to-user-dictionary.md) -[SPELL CHECKING](spell-checking.md) \ No newline at end of file +[SPELL CHECKING](spell-checking.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1215 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md index 23faf21550d7aa..2066933c874d59 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SPELL CHECKING** ativa a revisão ortográfica de campo ou variável que tem o foco no formulário em tela. O objeto verificado deve ser de tipo Alfa ou Texto. @@ -35,4 +32,13 @@ A verificação ortográfica começa com a primeira palavra de campo ou variáve #### Ver também [SPELL CHECK TEXT](spell-check-text.md) -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 900 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md index bb55286b4bb0f0..337d5a87dcf866 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SPELL Get current dictionary** devolve o número de ID do dicionário que está sendo utilizado. @@ -35,4 +32,13 @@ Queremos mostrar a linguagem do dicionário atual: #### Ver também -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1205 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md index 83656fdb66c0ae..06a09bbee95c69 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SPELL GET DICTIONARY LIST** devolve nos arrays *lingID*, *lingArquivos* e *lingNoms*, os IDs, os nomes de arquivos e os nomes dos linguagens correspondentes aos arquivos de dicionário Hunspell instalados no equipo. @@ -53,4 +50,13 @@ Você coloca "fr-classic+reform1990.aff" e "fr-classic+reform1990.dic" como tamb #### Ver também -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1204 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md index 5a0b63497f1cfd..240ec9ab1d1aed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SPELL SET CURRENT DICTIONARYsubstitui o dicionário atual pelo especificado no parâmetro *dicionario*. O dicionário atual é utilizado para a correção ortográfica integrada de 4D (para maior informação, consulte o *Manual de Desenho* de 4D), assim como também de 4D Write. A modificação do dicionário atual repercute em todos os processos do banco para a sessão, assim como nas áreas 4D Pro. @@ -51,4 +48,14 @@ Loading of the "fr-classic" dictionary found in the Hunspell folder: [SPELL CHECKING](spell-checking.md) [SPELL Get current dictionary](spell-get-current-dictionary.md) -[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) \ No newline at end of file +[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 904 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md index ab9734b9a63c1b..ddad055b71074a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md @@ -56,4 +56,13 @@ O parâmetro *separador* pode ser uma string de múltiplos caracteres: #### Ver também -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1554 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md index f07d6feca6d4a2..c5e34ea7700ab8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL CANCEL LOAD finaliza a solicitação *SELECT* atual e inicializa os parâmetros. @@ -53,4 +50,14 @@ Se o comando for executado corretamente, a variável sistema OK retorna 1\. Do c #### Ver também [SQL LOAD RECORD](sql-load-record.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 824 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md index 7715d526409978..8f232f0a9c7226 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL End selection é utiliza para determinar se os limites do resultado obtido foram alcançado. @@ -40,3 +37,13 @@ O código abaixo conecta-se a uma fonte de dados externos (Oracle) utilizando os ``` Este código devolverá na variável 4D *vNome* os nomes (ename) armazenados na tabela emp. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 821 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md index d6eab959dd4f01..8916ce361ae396 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL EXECUTE SCRIPT permite executar uma série de instruções SQL localizadas no arquivo de script designado por *rotaScript*. @@ -61,3 +58,14 @@ Se o script for executado corretamente (nenhum erro ocorre), a variável Sistema \* Se *açãoErro* é SQL On erro continue (valor 3), a variável OK sempre assume o valor 1\. **Nota**: Se utilizar este comando para executar ações consumidoras de memória tales como importação massiva de dados, pode considerar chamar ao comando SQL *ALTER DATABASE* para desativar temporáriamente as opções SQL. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1089 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md index af0c35e67afed1..0f2d75640466be 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL EXECUTE é utilizado para executar um comando SQL e associar o resultado a objetos 4D (arrays, variáveis ou campos). @@ -159,4 +156,14 @@ Se o comando for executado corretamente, a variável sistema OK retorna 1, do co #### Ver também -[SQL LOAD RECORD](sql-load-record.md) \ No newline at end of file +[SQL LOAD RECORD](sql-load-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 820 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md index eed41d1c8dccd2..e7825954a8a394 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL EXPORT DATABASE exporta ao formato SQL todos os registros de todas as tabelas do banco. Em SQL, esta operação de exportação global é chamada "Dump". @@ -56,4 +53,14 @@ Se a exportação for realizada corretamente, a variável OK assume o valor 1\. #### Ver também -[SQL EXPORT SELECTION](sql-export-selection.md) \ No newline at end of file +[SQL EXPORT SELECTION](sql-export-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1065 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md index 3a907ec7d5cbb3..d497641d231c67 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL EXPORT SELECTION exporta ao formato SQL os registros da seleção atual da tabela 4D especificada pelo parâmetro *Tabela*. @@ -38,4 +35,14 @@ Se a exportação for realizada corretamente, a variável OK assume o valor 1\. #### Ver também -[SQL EXPORT DATABASE](sql-export-database.md) \ No newline at end of file +[SQL EXPORT DATABASE](sql-export-database.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1064 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md index 2ea4b3d8e79dab..76dda03dee01fe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL Get current data source retorna o nome da fonte de dados atual da aplicação. A fonte de dados atual recebe as pesquisas SQL executadas dentro das estruturas **Begin SQL/End SQL**. @@ -30,4 +27,13 @@ Este comando permite verificar a fonte de dados atual, geralmente antes de execu [End SQL](end-sql.md) [SQL GET DATA SOURCE LIST](sql-get-data-source-list.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 990 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md index e459e9b3563945..a7ddd73e8927fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL GET DATA SOURCE LIST retorna nos arrays *arrayNomesFontes* e *arrayDrivers*, os nomes e drivers das fontes de dados de tipo *tipoFonte* definidas no administrador ODBC do Sistema operativo. @@ -56,4 +53,14 @@ Se o comando for executado corretamente, a variável Sistema OK assume o valor 1 [SQL Get current data source](sql-get-current-data-source.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 989 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md index 7d36db335a2bfd..9e881bb5025cde 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL GET LAST ERROR retorna a informação relacionada com o último erro encontrado durante a execução de um comando ODBC. O erro pode vir da aplicação 4D, da rede, da fonte ODBC, etc. @@ -34,4 +31,13 @@ Os dos últimos parâmetros apenas são preenchidos quando o erro vem da fonte O #### Ver também [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 825 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md index 92fbcfaf3e342c..ce1f855dcb6177 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL GET OPTION retorna o *valor* atual da opção passada no parâmetro *opçao*. @@ -29,4 +26,14 @@ Se o comando for executado corretamente, a variável Sistema OK assume o valor 1 #### Ver também -[SQL SET OPTION](sql-set-option.md) \ No newline at end of file +[SQL SET OPTION](sql-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 819 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md index e52170f448b0cd..cfda303354256a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL LOAD RECORD recupera a 4D um ou mais registros da fonte de dados aberta na conexão atual. @@ -34,4 +31,14 @@ Se o comando tiver sido executado corretamente, a variável Sistema OK retorna 1 #### Ver também [SQL CANCEL LOAD](sql-cancel-load.md) -[SQL EXECUTE](sql-execute.md) \ No newline at end of file +[SQL EXECUTE](sql-execute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 822 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md index e8fe2921433d39..b862d8d8cca0ed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL LOGIN permite que se conecte a uma fonte de dados SQL especificada no parâmetro *entradaDados* . Ele estabelece o objetivo das pesquisas SQL executadas posteriormente no processo atual: @@ -204,4 +201,14 @@ Se a conexão for exitosa, a variável sistema OK assume o valor 1, do contrári [Begin SQL](begin-sql.md) [End SQL](end-sql.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 817 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md index eb50890cc5e34d..b8ede269b98c89 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL LOGOUT fecha a conexão com uma fonte ODBC aberta no processo atual (se aplicado). Se não há conexão ODBC aberta, o comando não faz nada. @@ -25,4 +22,14 @@ Se o logout é feito corretamente, a variável Sistema OK assume o valor 1; do c #### Ver também -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 872 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md index 386fd43c4358af..7fe7c9c6ef1ee9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL SET OPTION é utilizado para modificar o *valor* da opção passada em *opçao*. @@ -47,4 +44,14 @@ Se o comando for executado corretamente, a variável Sistema OK retorna 1\. Do c #### Ver também -[SQL GET OPTION](sql-get-option.md) \ No newline at end of file +[SQL GET OPTION](sql-get-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 818 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md index beb21d8ec4d7be..8c0747a7a947dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL SET PARAMETER permite o uso do valor de uma variável, array ou campo 4D nas pedidos SQL. @@ -77,3 +74,14 @@ O mesmo exemplo que o anterior, mas utilizando o comando SQL SET PARAMETER : #### Variáveis e conjuntos do sistema Se o comando tiver sido executado corretamente, a variável Sistema OK retorna 1\. Do contrário, retorna 0. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 823 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md index 267b3687f056b6..1703948c42f811 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md @@ -41,3 +41,13 @@ O método a seguir retorna a hipotenusa do triângulo cujos dois lados são pass ``` Por exemplo, Hipotenusa (4;3) devolve 5. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 539 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md index f54240823c3db7..f42f73b05d6ca6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST COMPUTE EXPRESSIONS** atualiza as expressões dinâmicas 4D encontradas no campo ou variável com multi-estilo ou 4D Write Pro definido pelo parâmetro *objeto*. @@ -68,4 +65,14 @@ Você deseja atualizar as referências incluídas na seleção de texto: #### Ver também [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1285 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md index 37c4d7c8f26018..e85f4ad7703a35 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST FREEZE EXPRESSIONS** "congela" o conteúdo das expressões encontradas em texto mult-estilo ou no campo ou variável 4D Write Pro com estilo definido pelo parâmetro *objeto*. Esta ação converte expressões dinâmicas em texto estático ou (apenas para áreas 4D Write Pro) converte imagens e remove as referências associadas ao *objeto*. @@ -68,4 +65,13 @@ Você quer inserir a hora atual ao início do texto e logo congelar ela antes de #### Ver também [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1282 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md index 9503664c98e051..affd1e4e0d67a7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ST GET ATTRIBUTES é utilizado para recuperar o valor atual de um atributo de estilo em uma selección de texto do objeto de formulário designado por *objeto*. @@ -105,4 +102,14 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv #### Ver também -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1094 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md index fa65ab741e2fff..57877bff91c9a9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST Get content type** devolve o tipo de conteúdo encontrado no campo ou a variável de texto multi estilo designada pelo parâmetro *objeto* . @@ -102,3 +99,14 @@ Você deseja mostrar os comandos de um menu contextual baseado no tipo de conte        ...     End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1286 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md index e64b3afef571f1..4764fbe5ae5579 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST Get expression** devolve a primeira expressão que se encontra na seleção atual do campo ou da variável de texto com estilo designada pelo parâmetro *objeto*. @@ -94,4 +91,14 @@ Você quer executar um método 4D quando é feito clique em um link de um usuár #### Ver também -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1287 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md index c4fa001e72dff5..9e852f2d578568 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST GET OPTIONS** obtém o valor atual de uma ou várias opções de funcionamento do campo ou da variável de texto com estilo designada pelo parâmetro *objeto*. @@ -36,4 +33,13 @@ Passe o código da opção a ler no parâmetro *opcao*. O comando devolve em *va #### Ver também -[ST SET OPTIONS](st-set-options.md) \ No newline at end of file +[ST SET OPTIONS](st-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1290 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md index cfbf127ae02ac6..6f845a5c54fa77 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando *OBJECT Get plain text* remove as etiquetas de estilo da variável ou campo de texto designado pelos parâmetros *\** e *objeto* e devolve o texto plano. @@ -110,4 +107,14 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv [ST Get text](st-get-text.md) [ST SET PLAIN TEXT](st-set-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1092 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md index 8ca30ff209a50d..6967ee77a2ad22 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando *OBJECT Get styled text* devolve o texto com estilo encontrado no campo ou variável de texto designado pelo parâmetro *objeto*. @@ -63,4 +60,14 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv [ST Get plain text](st-get-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1116 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md index f8beed550be39b..768c9ba48be988 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST GET URL** devolve a etiqueta e o endereço da primeira URL detectada no campo ou a variável de texto multi estilo designado pelo parâmetro *objeto*. @@ -71,4 +68,13 @@ Quando há um evento de duplo clique, se comprova que não existe em realidade u #### Ver também -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1288 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md index a73e9c84b51c2a..9d4f7b1d9b7a8c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST INSERT EXPRESSION** insere uma referência a expressão no campo ou a variável de texto multi estilo designada pelo parâmetro *objeto*. @@ -90,4 +87,14 @@ Deseja substituir o texto selecionado com o resultado de um método projeto: [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) [ST Get expression](st-get-expression.md) -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1281 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md index 84781c42cdf375..cffde9f112e1fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST INSERT URL** insere um link URL no campo ou a variável de texto com estilo designada pelo parâmetro *objeto* . @@ -64,4 +61,14 @@ Você deseja inserir um link ao web site de 4D para substituir o texto seleciona #### Ver também [ST GET URL](st-get-url.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1280 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md index cc7fd2b9fa0e46..d11b01283d77a2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ST SET ATTRIBUTES permite modificar um ou mais atributos de estilo no(s) objeto(s) de formulário designado(s) por *objeto*. @@ -105,4 +102,14 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv #### Ver também [FONT LIST](font-list.md) -[ST GET ATTRIBUTES](st-get-attributes.md) \ No newline at end of file +[ST GET ATTRIBUTES](st-get-attributes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1093 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md index 9a68dae5265557..56a25d802b021d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST SET OPTIONS** modifica uma ou várias opções de funcionamento do campo ou da variável de texto com estilo designada pelo parâmetro *objeto* . @@ -63,4 +60,13 @@ O seguinte código permite mudar o modo de visualização da área: #### Ver também -[ST GET OPTIONS](st-get-options.md) \ No newline at end of file +[ST GET OPTIONS](st-get-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1289 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md index 6d5922d1fd0e06..2628bfc32420ac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando [ST SET PLAIN TEXT](st-set-plain-text.md) insere o texto passado no parâmetro *novTexto* no campo ou a variável de texto com estilo designado pelo parâmetro *objeto* . Este comando aplica unicamente ao texto plano do parâmetro *objeto*, sem modificar as possíveis etiquetas de estilo que contenha. @@ -94,4 +91,14 @@ No caso de um erro, a variável não muda. Quando se produz um erro em uma vari #### Ver também [ST Get plain text](st-get-plain-text.md) -[ST SET TEXT](st-set-text.md) \ No newline at end of file +[ST SET TEXT](st-set-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1136 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md index 47deac3a78398d..3d73bfedf2c7e1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET STYLED TEXT insere o texto passado no parâmetro *novoTexto* no campo ou variável de texto com estilo designado pelo parâmetro *objeto*. Este comando só é aplicado ao texto sem formato do parâmetro de *objeto*, sem modificar as etiquetas de estilo que contenha. Se pode utilizar para modificar por programação, texto com estilo na tela. @@ -91,4 +88,14 @@ Consulte o exemplo do comando [ST SET PLAIN TEXT](st-set-plain-text.md). [ST Get plain text](st-get-plain-text.md) [ST Get text](st-get-text.md) -[ST SET PLAIN TEXT](st-set-plain-text.md) \ No newline at end of file +[ST SET PLAIN TEXT](st-set-plain-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1115 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md index ca9e916bdd0295..b59994bc52ea68 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md @@ -91,4 +91,13 @@ Se quiser iniciar/parar o monitoramento e revisão de dados 4D e atividades de d #### Ver também [Monitored activity](monitored-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1712 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md index 1f251f871e3bf3..1a6168f168e414 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando START SQL SERVER lança o servidor SQL integrado da aplicação 4D na qual é executado. Quando for lançado, o servidor SQL pode responder às pesquisas SQL externas. @@ -27,4 +24,14 @@ Se o servidor SQL tiver sido lançado corretamente, a variável Sistema OK assum #### Ver também -[STOP SQL SERVER](stop-sql-server.md) \ No newline at end of file +[STOP SQL SERVER](stop-sql-server.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 962 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md index 2862c45ca0aed1..6562e2a5d25790 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md @@ -24,4 +24,13 @@ A partir da versão 11 de 4D, pode aninhar várias transações (subtransações [In transaction](in-transaction.md) [Transaction level](transaction-level.md) *Usar Transações* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 239 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md index 81eb25efd37b72..f65a7be8d5d335 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md @@ -57,4 +57,13 @@ Este exemplo obtém o desvio padrão de uma série de valores localizados num ar [Average](average.md) [Sum](sum.md) [Sum squares](sum-squares.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 26 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md index 071813450f919e..01a34d31bcac68 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md @@ -25,4 +25,13 @@ Ver exemplo para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**. #### Ver também [Monitored activity](monitored-activity.md) -[START MONITORING ACTIVITY](start-monitoring-activity.md) \ No newline at end of file +[START MONITORING ACTIVITY](start-monitoring-activity.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1721 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md index 217979a697d0b6..3107de1137deed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando STOP SQL SERVER pára o servidor SQL integrado da aplicação 4D na qual foi executado. @@ -25,4 +22,13 @@ Se o servidor SQL foi lançado, todas as conexões SQL são interrompidas e o se #### Ver também -[START SQL SERVER](start-sql-server.md) \ No newline at end of file +[START SQL SERVER](start-sql-server.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 963 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/storage.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/storage.md index bde0f80df5c23b..9135113470af4f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/storage.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/storage.md @@ -81,4 +81,13 @@ Este exemplo mostra uma forma padrão de estabelecer valores de **Armazenamento* #### Ver também -*Objetos compartidos e Coleções compartidas* \ No newline at end of file +*Objetos compartidos e Coleções compartidas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1525 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md index 021cd2204a3ec6..91f8e29b073a46 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando STRING LIST TO ARRAY preenche o array *cadeias* com: @@ -45,4 +42,14 @@ Se o recurso for encontrado, a variável sistema OK assume o valor 1, do contrá [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[Get text resource](get-text-resource.md) \ No newline at end of file +[Get text resource](get-text-resource.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 511 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string.md index a438c2d41c45ad..3e75b867cc38b7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string.md @@ -173,4 +173,13 @@ Se a expressão for avaliada como Null, o comando devolve a string "null". Isto [Date](date.md) [Num](num.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 10 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md index 86bfca487706ab..1d73073736dc47 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md @@ -72,4 +72,13 @@ O exemplo a seguir pode ser usado para descobrir se o método é chamado de um c [Application file](application-file.md) [COMPONENT LIST](component-list.md) -[Data file](data-file.md) \ No newline at end of file +[Data file](data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 489 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/substring.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/substring.md index 9754774a1a294f..3d62309f82d612 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/substring.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/substring.md @@ -65,4 +65,13 @@ O seguinte método de projeto adiciona os parágrafos que são encontrados no te #### Ver também -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 12 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md index 55898be4aa280e..14e65ef5d9d6a1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Subtotal devolve o subtotal de valores para o nível de quebra atual ou anterior. Subtotal só funciona quando uma seleção ordenada é impressa com [PRINT SELECTION](print-selection.md) ou utilizando Imprimir no ambiente Desenho. O parâmetro *valores* deve ser de tipo real, inteiro, ou inteiro longo. Você deve atribuir o resultado da função Subtotal a uma variável localizada na área de quebra do formulário. @@ -63,4 +60,13 @@ A função Subtotal é necessária para mostrar valores em um formulário. [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level ](level.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 97 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md index 0da077e0bab574..8c680caf658ced 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md @@ -57,4 +57,13 @@ Este exemplo permite obter a soma de quadrados dos valores localizados num array [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 28 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum.md index 2e85d51387dcbe..0f55703adc5575 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum.md @@ -72,4 +72,14 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri [Min](min.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md index 18e19e77090a6f..58a0a6a3cca5d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md @@ -22,4 +22,13 @@ Para saber mais, consulte *Suspender as transações*. [Active transaction](active-transaction.md) [RESUME TRANSACTION](resume-transaction.md) -*Suspender as transações* \ No newline at end of file +*Suspender as transações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1385 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md index d8f3a2787f5c9c..9903dc656da28b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando SVG EXPORT TO PICTURE permite guardar na variável ou campo imagem indicado pelo parâmetro *varImag* uma imagem em formato SVG contida em uma árvore XML. - -**Nota**: Para maior informação sobre o formato SVG, consulte a seção *Introdução aos comandos de XML Utilities* +O comando SVG EXPORT TO PICTURE permite guardar na variável ou campo imagem indicado pelo parâmetro *varImag* uma imagem em formato SVG contida em uma árvore XML. Passe em *refElemento* a referência do elemento XML raiz que contenha a imagem SVG. @@ -54,4 +52,13 @@ O exemplo abaixo pode ser utilizado para mostrar “Hello World” em uma imagem #### Ver também [DOM EXPORT TO FILE](dom-export-to-file.md) -[DOM EXPORT TO VAR](dom-export-to-var.md) \ No newline at end of file +[DOM EXPORT TO VAR](dom-export-to-var.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1017 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md index c38664fcaed9bb..a83460b3c34435 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SVG Find element ID by coordinates retorna a identificação ("id" ou atributo "xml:id") do elemento XML encontrado na localização definida pelas coordenadas (x,y) na imagem SVG designada pelo parâmetro *objetoImagem*. Este comando pode ser utilizado particularmente para criar interfaces gráficas interativas utilizando objetos SVG. @@ -53,4 +50,14 @@ Se *objetoImagem* não contiver uma imagem SVG válida, o comando retorna uma ca #### Ver também -[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) \ No newline at end of file +[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1054 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md index acc4cfdf35b504..afca5f33737db8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SVG Find element IDs by rect preenche o array texto arrIDs com os IDs (atributo "id" ou "xml:id") dos elementos XML cujo retângulo circundante está em intersecção com o retângulo de seleção na localização definida pelos parâmetros *x* e *y*. @@ -43,4 +40,13 @@ Todos os elementos cujo retângulo circundante está em intersecção com o ret #### Ver também -[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) \ No newline at end of file +[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1109 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md index ce341ad3f43147..e7acd1510e32c2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SVG GET ATTRIBUTE é utilizado para obter o valor atual do atributo *nomAtrib* em um objeto ou uma imagem SVG. @@ -44,4 +41,13 @@ Para obter mais informação acerca dos atributos SVG, consulte a descripção d #### Ver também -[SVG SET ATTRIBUTE](svg-set-attribute.md) \ No newline at end of file +[SVG SET ATTRIBUTE](svg-set-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1056 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md index e20172f6ef0f24..697796d20fd02b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md @@ -93,4 +93,14 @@ Modificação do conteúdo de um elemento de tipo texto: #### Ver também -[SVG GET ATTRIBUTE](svg-get-attribute.md) \ No newline at end of file +[SVG GET ATTRIBUTE](svg-get-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1055 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md index 65aff47a6ad76a..5da44fb9045d18 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SVG SHOW ELEMENT move o documento SVG *objetoImagem* para mostrar o elemento cujo atributo "id" é especificado pelo parâmetro *id*. @@ -30,3 +27,14 @@ O comando move o documento SVG para que todo o objeto, cujos limites estão defi Este comando apenas tem efeito em modo de visualização "top left" (com barras de rolagem). Se este comando não for executado no contexto de um formulário ou se for passado um *objetoImagem* inválido, a variável OK toma o valor 0\. Se o comando for executado corretamente, toma o valor 1. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1108 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md index c5ec39cc8c19d0..64d8dc9e927749 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md @@ -48,4 +48,13 @@ Se omitido o parâmetro *tipo*, a função devolverá a rota à pasta sistema at #### Ver também [Get 4D folder](get-4d-folder.md) -[Temporary folder](temporary-folder.md) \ No newline at end of file +[Temporary folder](temporary-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 487 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md index 0d218f00ecd8a2..2029b8e6d0c090 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md @@ -143,4 +143,13 @@ devolve um objeto que contém a informação abaixo: [Application info](application-info.md) [Is macOS](is-macos.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1571 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md index 8f97ed28de604a..539c77f58b64d4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md @@ -40,4 +40,13 @@ Este método lhe permite requisitar a compactação do arquivo de dados no caso #### Ver também -[Compact data file](compact-data-file.md) \ No newline at end of file +[Compact data file](compact-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1127 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md index 08909e21b5e512..814497366efc7e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md @@ -37,4 +37,13 @@ O seguinte é um exemplo de um método genérico que mostra os registros de uma [Last table number](last-table-number.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 256 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table.md index 8f24c103ddc9df..faae2259d20fe1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table.md @@ -59,4 +59,13 @@ Este exemplo, a variável *numTabela* é igual ao número da tabela a qual perte [Field](field.md) [Last table number](last-table-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 252 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tan.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tan.md index 44423e624b9902..7e98279b50a0e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tan.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tan.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descrição -Tan retorna a tangente do *numero*, onde *numero* é expresso em radianos. - -**Nota:** 4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3.14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). +Tan retorna a tangente do *numero*, onde *numero* é expresso em radianos.4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3.14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). #### Ver também [Arctan](arctan.md) [Cos](cos.md) -[Sin](sin.md) \ No newline at end of file +[Sin](sin.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 19 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md index ec0931d5695784..57ce5e29947c98 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md @@ -23,4 +23,13 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m #### Ver também -[System folder](system-folder.md) \ No newline at end of file +[System folder](system-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 486 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md index 1c129b99dfc53b..2244eafbb19f8f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md @@ -49,4 +49,13 @@ O seguinte exemplo prova a presença do documento “Diário” na pasta da base [Create document](create-document.md) [CREATE FOLDER](create-folder.md) [Object to path](object-to-path.md) -[Path to object ](path-to-object.md) \ No newline at end of file +[Path to object ](path-to-object.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 476 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md index e121c8169554d6..06908a67f0a887 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md @@ -41,4 +41,13 @@ O exemplo a seguir lhe permite conhecer o estado de um processo (em nosso caso, #### Ver também [CLEAR SEMAPHORE](clear-semaphore.md) -[Semaphore](semaphore.md) \ No newline at end of file +[Semaphore](semaphore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 652 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md index 7dd28997a2f861..2920c53a6140d1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **TEXT TO ARRAY** transforma uma variável texto em um array texto. El texto original (com estilo ou não) se divide e cada parte se converte em um elemento do array *arrText* que é devolvido pelo comando. Este comando se pode utilizar por exemplo para encher as páginas ou as colunas com texto de um tamanho fixo. @@ -110,4 +107,13 @@ Deve imprimir em uma área de 400 pixeles de largo um texto de um máximo de 80 [Split string](split-string.md) [ST Get plain text](st-get-plain-text.md) -[ST Get text](st-get-text.md) \ No newline at end of file +[ST Get text](st-get-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1149 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md index 0083bae6db45a1..9484f87a493e6b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md @@ -105,4 +105,13 @@ Depois de executar este código: [CONVERT FROM TEXT](convert-from-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[REAL TO BLOB](real-to-blob.md) \ No newline at end of file +[REAL TO BLOB](real-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 554 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md index 4ee4ff48a34d6c..04cbd2638f972d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md @@ -81,4 +81,13 @@ Exemplo que permite ao usuário indicar a localização do arquivo a criar: #### Ver também [Document to text](document-to-text.md) -*Documentos Sistema* \ No newline at end of file +*Documentos Sistema* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1237 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/throw.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/throw.md index a81c116670cafa..a52c39757f6fd4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/throw.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/throw.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **throw** cria um erro que será lançado inmediatamente ou quando o método que o chamar o devolva a seu chamador (modo diferido). @@ -107,4 +104,13 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi [ASSERT](assert.md) [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1805 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md index 24a5ecce9c54d9..7e8fe67f6d6581 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descrição -Tickcount retorna o número de tics (1 tic = 1 / 60 avos de um segundo) passados desde que se iniciou a máquina. - -**Nota:** Tickcount retorna um valor de tipo Inteiro longo. +Tickcount retorna o número de tics (1 tic = 1 / 60 avos de um segundo) passados desde que se iniciou a máquina.Tickcount retorna um valor de tipo Inteiro longo. #### Exemplo @@ -26,4 +24,13 @@ Ver o exemplo do comando [Milliseconds](milliseconds.md "Milliseconds"). #### Ver também [Current time](current-time.md) -[Milliseconds](milliseconds.md) \ No newline at end of file +[Milliseconds](milliseconds.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 458 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md index 0f368099ecb03b..3f2ff4218d368d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md @@ -35,4 +35,13 @@ O exemplo a seguir mostra uma caixa de alerta com a mensagem, “46 800 segundos #### Ver também [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 180 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time.md index 1485f9e13c8f57..a0c17efa6f527c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time.md @@ -50,4 +50,13 @@ Pode expressar todo valor numérico como uma hora: [Bool](bool.md) [String](string.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 179 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md index 2df89708ab31bb..1ee9a91515a5e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md @@ -41,4 +41,13 @@ Resultado: [Milliseconds](milliseconds.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1445 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md index f60bb855486113..f47a884c198cbc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Tool bar height devolve a altura da barra de ferramentas visível atualmente, expressada em píxels. Dependendo do contexto, pode ser a barra de ferramentas de modo Desenho 4D, ou uma barra de ferramentas personalizada criada com [Open form window](open-form-window.md) (a barra de ferramentas de modo Desenho se oculta automaticamente quando é mostrada uma barra de ferramentas personalizada). @@ -26,4 +23,13 @@ Se não se mostrar nenhuma barra de ferramentas, o comando devolve 0. [HIDE TOOL BAR](hide-tool-bar.md) [Menu bar height](menu-bar-height.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1016 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trace.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trace.md index 1eb9c24cbc098b..14c86ee446bc02 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trace.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trace.md @@ -59,3 +59,13 @@ O método de projeto DEBUG é listado aqui:     End if  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 157 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md index d6d9ece390a4a6..c6b4303b6b1d0f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md @@ -21,4 +21,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Usar Transações* \ No newline at end of file +*Usar Transações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 961 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md index 4371004c49a707..b5b814c49bfd34 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Descrição -O comando TRANSFORM PICTURE permite aplicar uma transformação de tipo *operador* à imagem passada no parâmetro *imagem*. - -**Nota:** este comando estende as funcionalidades oferecidas pelos operadores convencionais de transformação de imagens (+/, etc., ver a seção ). Estes operadores permanecem totalmente utilizáveis em 4D. +O comando TRANSFORM PICTURE permite aplicar uma transformação de tipo *operador* à imagem passada no parâmetro *imagem*.este comando estende as funcionalidades oferecidas pelos operadores convencionais de transformação de imagens (+/, etc., ver a seção ). Estes operadores permanecem totalmente utilizáveis em 4D. A *imagem* fonte se modifica diretamente depois da execução do comando. Note que exceto por “Crop” e “Fade to grey scale,” as operações não são destrutivas e podem ser desfeitas realizando a operação contrária o via a operação “Reset”. Por exemplo, uma imagem reduzida a 1% retomará seu tamanho original sem alterações é aumentado 100 vezes. As transformações não modificam o tipo original da imagem: por exemplo, uma imagem vetorial permanecerá vetorial depois de sua transformação. @@ -73,4 +71,13 @@ Este é um exemplo de corte de uma imagem (a imagem se mostra no formulário com #### Ver também -[COMBINE PICTURES](combine-pictures.md) \ No newline at end of file +[COMBINE PICTURES](combine-pictures.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 988 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md index 55e63b8585d219..e44ff73795f0e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md @@ -53,4 +53,13 @@ Utilize o comando **Trigger event** para estruturar seus triggers desta maneira: [In transaction](in-transaction.md) [Trigger level](trigger-level.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 369 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md index e3690c6c9aac35..d666b06cd80a52 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md @@ -23,4 +23,13 @@ Para maior informação sobre níveis de execução, consulte o tema triggers em [Trigger event](trigger-event.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 398 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md index 7b05528b88537b..79a657f026ff29 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md @@ -38,4 +38,13 @@ O número de tabela e de registro para o registro relacionado pelo evento de ban *Sobre Números de Registros* [Trigger event](trigger-event.md) [Trigger level](trigger-level.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 399 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/true.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/true.md index 7a44d7422173cc..8054961aeaaef4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/true.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/true.md @@ -28,4 +28,13 @@ O exemplo a seguir atribui a variável *vbOpcoes* a Verdadeiro : #### Ver também [False](false.md) -[Not](not.md) \ No newline at end of file +[Not](not.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 214 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md index 741db1e425e195..f2207d1e3197bc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md @@ -34,4 +34,13 @@ O exemplo a seguir ilustra a maneira como **Trunc** funciona com diferentes argu #### Ver também -[Round](round.md) \ No newline at end of file +[Round](round.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 95 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md index f662fb936e1bcb..db9278d6ee0376 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md @@ -37,4 +37,16 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também -[DELETE SELECTION](delete-selection.md) \ No newline at end of file +[DELETE SELECTION](delete-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1051 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/type.md index e315b94b8fedb4..2740a53671b56c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/type.md @@ -140,4 +140,13 @@ Ver exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md [Is a variable](is-a-variable.md) [Undefined](undefined.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 295 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md index 2aff16709c1baa..d1f9f582ade0b8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md @@ -61,4 +61,13 @@ Abaixo os diferentes resultados do comando [Undefined](undefined.md) assim como #### Ver também -[CLEAR VARIABLE](clear-variable.md) \ No newline at end of file +[CLEAR VARIABLE](clear-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 82 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/union.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/union.md index eaacf60a14e53e..82892b789e0da7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/union.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/union.md @@ -50,4 +50,13 @@ Este exemplo adiciona registros ao conjunto de melhores clientes. Os registros s #### Ver também [DIFFERENCE](difference.md) -[INTERSECTION](intersection.md) \ No newline at end of file +[INTERSECTION](intersection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 120 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md index d508a9443a562a..7f994e638729e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md @@ -28,4 +28,13 @@ Se um registro tiver uma quantidade importante de dados, de campos de imagem, ou #### Ver também [LOAD RECORD](load-record.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 212 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md index 02c97aa8571781..729b86d80f2762 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando UNREGISTER CLIENT cancela o registro de uma máquina 4D Client. O cliente deverá ter sido registrado pelo comando [REGISTER CLIENT](register-client.md). @@ -35,4 +32,14 @@ Se o registro de um cliente é cancelado corretamente, a variável do sistema OK [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[REGISTER CLIENT](register-client.md) \ No newline at end of file +[REGISTER CLIENT](register-client.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 649 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md index c89d3dbc9e336c..8d3f5f8923cc58 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md @@ -36,4 +36,13 @@ Ver o exemplo para [Lowercase](lowercase.md "Lowercase"). #### Ver também -[Lowercase](lowercase.md) \ No newline at end of file +[Lowercase](lowercase.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 13 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md index ea5cf6a50217cf..673d0985efa055 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md @@ -51,4 +51,14 @@ A variável de sistema OK é definida como 1 se o mapa é carregado corretamente [IMPORT TEXT](import-text.md) [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 205 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md index d4bba7e1b14009..83db91b745539e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md @@ -28,4 +28,15 @@ Lembre que uma seleção temporária é uma representação de uma seleção de [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[CUT NAMED SELECTION](cut-named-selection.md) \ No newline at end of file +[CUT NAMED SELECTION](cut-named-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 332 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md index 2e7cf71ed2a94a..41dc5ab3775ad2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md @@ -34,4 +34,15 @@ O seguinte exemplo utiliza [LOAD SET](load-set.md) para carregar um conjunto de #### Ver também [CLEAR SET](clear-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 118 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md index 037ed0aef514f8..79504be86d9c8f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição User in group retorna TRUE se *user* estlver em *group*. @@ -44,4 +41,13 @@ O exemplo abaixo procura faturas específicas. Se o usuário atual estiver no gr #### Ver também -[Current user](current-user.md) \ No newline at end of file +[Current user](current-user.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 338 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md index 9cca0de1090cf1..8444576b869ccc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota de compatibilidade*: este comando só funciona em bancos de dados binários. Sempre devolve um BLOB vazio em projetos.* @@ -33,4 +30,14 @@ Este conceito permite conservar um backup de usuários no banco e implementar um #### Ver também -[BLOB TO USERS](blob-to-users.md) \ No newline at end of file +[BLOB TO USERS](blob-to-users.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 849 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md index 763ca7a77f0a58..1c390c61bbbc75 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Validate password retorna True se a cadeia passada em *senha* for a senha para a conta de usuário cujo número de referência é passado em *refUsuario*. @@ -61,4 +58,13 @@ No [On 4D Mobile Authentication database method](on-4d-mobile-authentication-dat [GET USER PROPERTIES](get-user-properties.md) [Set user properties](set-user-properties.md) -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 638 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md index 9cedbf4a363bf3..fd5851f5bb0e8b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md @@ -29,4 +29,14 @@ Note que quando OK for estabelecido como 0, a transação é automaticamente can [CANCEL TRANSACTION](cancel-transaction.md) [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Usar Transações* \ No newline at end of file +*Usar Transações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 240 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md index 2e2e8ee58fe1d9..f58e5f0b06b320 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md @@ -115,4 +115,13 @@ var $sum : Real #### Ver também [OB Get type](ob-get-type.md) -[Type](type.md) \ No newline at end of file +[Type](type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1509 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md index e13b3904f5ef94..2b2ffa91b12ff1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md @@ -134,4 +134,14 @@ Depois que esses métodos foram adicionados a sua aplicação, pode escrever: [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 532 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md index f2c3b06e7ddabc..721dcbd0bffea9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando VARIABLE TO VARIABLE escreve as variáveis processo *dstVar* (*dstVar2*, etc.) do processo de destino cujo número se passa em processo utilizando os valores das variáveis *srcVar1 srcVar2*, etc.. @@ -62,4 +59,13 @@ O exemplo a seguir lê um array processo desde o processo indicado por *$vlProce [GET PROCESS VARIABLE](get-process-variable.md) *Processos* -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 635 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variance.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variance.md index e9e72ea3fc2525..b483fd2749d2cc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variance.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variance.md @@ -65,4 +65,13 @@ Este exemplo permite obter a variância de valores localizados num array: [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Sum squares](sum-squares.md) \ No newline at end of file +[Sum squares](sum-squares.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 27 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md index 5abeca1bb5ec2f..8f1123b6597aba 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md @@ -41,4 +41,14 @@ Se o método de callback não existir, a verificação não é efetuada, é gera #### Ver também -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1008 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md index ff8af1817f950e..eb8d5de246a405 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md @@ -153,4 +153,14 @@ Se o método de callback não existir, a verificação não é efetuada, é gera #### Ver também -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 939 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md index df15e03ad320d6..779532e28138d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md @@ -52,4 +52,13 @@ Este exemplo verifica um hash de senha previamente criado por [Generate password #### Ver também -[Generate password hash](generate-password-hash.md) \ No newline at end of file +[Generate password hash](generate-password-hash.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1534 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md index 30a936f99d48a2..bae9926c95d917 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md @@ -42,4 +42,13 @@ Esta prova permite executar código diferente dependendo de que versão é uma a #### Ver também [Application type](application-type.md) -[Application version](application-version.md) \ No newline at end of file +[Application version](application-version.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 495 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md index b994c389e9a79b..d2c37ee51bd954 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descrição -O comando VOLUME ATTRIBUTES retorna em bytes o tamanho, o espaço utilizado e o espaço livre do volume cujo nome se passa em *volume*. - -**Nota**: se *volume* indica um volume remoto não montado, a variável OK toma o valor 0 e os três parâmetros retornam -1. +O comando VOLUME ATTRIBUTES retorna em bytes o tamanho, o espaço utilizado e o espaço livre do volume cujo nome se passa em *volume*.indica um volume remoto não montado, a variável OK toma o valor 0 e os três parâmetros retornam -1. #### Exemplo @@ -96,4 +94,14 @@ Quando tiver sido adicionado este método de projeto a sua aplicação, pode esc #### Ver também -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 472 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md index 9f83dd5996be53..e64fe9217cef8c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md @@ -38,4 +38,13 @@ Utilizando uma área de rolagem chamada *atVolumes*,se quiser mostrar a lista de [DOCUMENT LIST](document-list.md) [FOLDER LIST](folder-list.md) -[VOLUME ATTRIBUTES](volume-attributes.md) \ No newline at end of file +[VOLUME ATTRIBUTES](volume-attributes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 471 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md index 5c4f5c2a44fe4b..e0e3baea116084 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Back URL available descobre se existe uma URL anterior disponível na sequência de URLs abertas na área web designada pelos parâmetros \* e *objeto*. @@ -27,4 +24,13 @@ O comando retorna *True* se existe uma URL e do contrário *False*. Particularme #### Ver também [WA Forward URL available](wa-forward-url-available.md) -[WA OPEN BACK URL](wa-open-back-url.md) \ No newline at end of file +[WA OPEN BACK URL](wa-open-back-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1026 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md index f6187998519e9a..f25eb05862613f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Create URL history menu cria e preenche um menu que pode ser utilizado diretamente para a navegação entre as URLs visitadas durante a sessão na área web designada pelos parâmetros *\** e *objeto*. Pode ser utilizado para criar uma interface de navegação personalizada. @@ -69,4 +66,13 @@ O código abaixo pode estar associado a um botão 3D com menu pop up chamado "An [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[WA GET URL HISTORY](wa-get-url-history.md) \ No newline at end of file +[WA GET URL HISTORY](wa-get-url-history.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1049 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md index 5af8d68b45dff5..3baaf353e96e51 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Evaluate JavaScript executa na área web designada pelos parâmetros *\** e *objeto* o código JavaScript passado em *codeJS* e retorna o resultado.. Este comando deve ser chamado depois de carregar a página (o evento de formulário On End URL Loading deve ter sido gerado). @@ -103,4 +100,13 @@ Logo pode avaliar o código JavaScript desde 4D: #### Ver também -[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) \ No newline at end of file +[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1029 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md index e5cd49ccc027d0..f567c76c5464f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA EXECUTE JAVASCRIPT FUNCTION executa, na área Web designada pelos parâmetros *\** e *objeto*, a função JavaScript *funcaoJS* retorna opcionalmente seu resultado no parâmetro *resultado*. @@ -59,4 +56,13 @@ A função JavaScript "getCustomerInfo" recebe um número ID como parâmetro e d #### Ver também -[WA Evaluate JavaScript](wa-evaluate-javascript.md) \ No newline at end of file +[WA Evaluate JavaScript](wa-evaluate-javascript.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1043 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md index ddec854b554181..715947aa4a78d8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Forward URL available permite conhecer se existe uma URL seguinte disponível na sequência de URLs abertas na área web designada pelos parâmetros *\** e *objeto*. @@ -27,4 +24,13 @@ O comando retorna *True* se existir um URL e do contrário *False*. Particularme #### Ver também [WA Back URL available](wa-back-url-available.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1027 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md index eacd32be407316..765829328a991e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Get current URL retorna a direção URL da página mostrada na área web designada pelos parâmetros \* e *objeto*. @@ -37,4 +34,13 @@ A página mostrada na URL "www.apple.com" e a página "www.4dhispano.com" está #### Ver também -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1025 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md index e72b801fd417e5..e2b309a9b27236 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA GET EXTERNAL LINKS FILTERS retorna nos arrays *arrFiltro* e *permitirArrRecusar*, os filtros de links externos da área web designada pelos parâmetros *\** e *objeto*. Se nenhum filtro estiver ativo, os arrays são retornados vazios. @@ -28,4 +25,13 @@ Os filtros são instalados pelo comando [WA SET EXTERNAL LINKS FILTERS](wa-set-e #### Ver também [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1033 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md index df75bb4225f56e..a4a9ca41b85595 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Get last filtered URL retorna a última URL filtrada na área web designada pelos parâmetros \* e *objeto*. @@ -34,4 +31,13 @@ A URL pode ter sido filtrada por uma das seguintes razões: [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) [WA GET URL FILTERS](wa-get-url-filters.md) [WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1035 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md index 56c833497ef177..032df312ce33bf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA GET LAST URL ERROR permite recuperar vários elementos de informação relacionados com o último erro ocorrido na área Web designada pelos parâmetros *\** e *objeto*. @@ -36,4 +33,13 @@ Esta informação se retorna em três variáveis: #### Ver também -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1034 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md index a326c72c9e6ab6..ad8971f0120aed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Get page content retorna o código HTML da página atual ou da página que vai ser mostrada na área web designada pelos parâmetros *\** e *objeto*. @@ -26,4 +23,13 @@ Este comando retorna uma string vazia se o conteúdo da página atual não estiv #### Ver também -[WA SET PAGE CONTENT](wa-set-page-content.md) \ No newline at end of file +[WA SET PAGE CONTENT](wa-set-page-content.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1038 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md index a29fd401a137e7..d483547675a857 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Get page title retorna o título da página atual ou que vai a ser mostrada na área web designada pelos parâmetros *\** e *objeto*. O título corresponde a a etiqueta HTML "Title". @@ -26,4 +23,13 @@ Este comando retorna uma string vazia se não houver título disponível para o #### Ver também -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1036 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md index 1580608029f47a..3a5b48b4c69eee 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA GET PREFERENCE permite obter o valor atual de uma preferência na área web designada pelos parâmetros *\** e *objeto*. @@ -36,4 +33,13 @@ Passe no parâmetro *valor* uma variável que receberá o valor atual da prefer #### Ver também -[WA SET PREFERENCE](wa-set-preference.md) \ No newline at end of file +[WA SET PREFERENCE](wa-set-preference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1042 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md index 09c904dc738088..7e259f1870287a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA GET URL FILTERS retorna nos arrays *arrFiltro* e *permitirArrRecusar*, os filtros ativos na área web designada pelos parâmetros *\** e *objeto* . Se nenhum filtro estiver ativo, os arrays são retornados vazios. @@ -28,4 +25,13 @@ Os filtros são instalados pelo comando WA GET URL FILTERS. Se os arrays se rein #### Ver também [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1031 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md index 95a6074c8c7c43..55a691888cc08a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA GET URL HISTORY retorna um ou dois arrays que contenhamm as URLs visitadas durante a sessão na área web designada pelos parâmetros *\** e *objeto*. Permite construir uma interface de navegação personalizada. @@ -45,4 +42,13 @@ Nota de Compatibilidade: A partir de 4D v19 R5, esse comando só retorna a URL a #### Ver também -[WA Create URL history menu](wa-create-url-history-menu.md) \ No newline at end of file +[WA Create URL history menu](wa-create-url-history-menu.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1048 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md index e5f81bf0648869..bd342bc29ab1f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA OPEN BACK URL carrega na área web designada pelos parâmetros *\** e *objeto* a URL antecedente na sequência das URLs abertos. @@ -26,4 +23,13 @@ Se não houver um URL antecedente, o comando não faz nada. Pode testar a dispon #### Ver também [WA OPEN FORWARD URL](wa-open-forward-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1021 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md index cf6b8274316c44..0abbb8366c5d12 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA OPEN FORWARD URL carrega na área web designada pelos parâmetros \* e *objeto* a URL passada no parâmetro url. @@ -26,4 +23,13 @@ displayed_sidebar: docs #### Ver também [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1022 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md index ec4092babe57f2..89ebdaf2499cb8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **WA OPEN URL** carrega na área web designada pelos parâmetros *\** e *objeto* o URL passado no parâmetro *url*. @@ -47,4 +44,13 @@ Este comando tem o mesmo efeito que a modificação do valor da variável "URL" [OPEN URL](open-url.md) [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1020 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md index 3e685e5db2164b..be6afaf246db40 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **WA OPEN WEB INSPECTOR** abre um inspetor web para a área web designada pelos parâmetros *\** e *objeto*. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver também *Gestão programada de áreas web* -[WA Run offscreen area](wa-run-offscreen-area.md) \ No newline at end of file +[WA Run offscreen area](wa-run-offscreen-area.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1736 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md index 0b7926e025655a..57bff1ac7b8d7f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA REFRESH CURRENT URL recarrega a URL atual mostrada na área web designada pelos parâmetros *\** e *objeto*. #### Ver também -[WA STOP LOADING URL](wa-stop-loading-url.md) \ No newline at end of file +[WA STOP LOADING URL](wa-stop-loading-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1023 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md index 840a8ef10bb56a..3d0da5a1b10d07 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **WA Run offscreen area** cria uma área web na memória que pode ser usada para carregar automaticamente e analisar as páginas web @@ -97,4 +94,14 @@ A variável de sistema OK é estabelecida como 0 se o timeout foi alcançaddo ou [FORM Event](../commands/form-event.md) *Gestão programada de áreas web* -[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) \ No newline at end of file +[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1727 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md index d755e86d4b414d..80bee1099b89ea 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA SET EXTERNAL LINKS FILTERS permite estabelecer um ou mais filtros de links externos para a zona web designada pelos parâmetros *\** e *objeto*. Os filtros de links externos determinam se um URL associado a página atual através um link deve ser aberto na área web ou no navegador web por padrão da máquina. @@ -75,4 +72,13 @@ Este exemplo combina os filtros de sites e de links externos: #### Ver também [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1032 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md index 933008a63ce442..2975313c49ce26 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Nota de compatibilidade Este comando não é mais útil. Como a segurança em navegadores ficou cada vez mais forte, há mais e mais restrições para modificar o conteúdo de páginas "a qualquer momento". Uma abordagem mais adequada é criar um arquivo local (por exemplo na pasta temporária) e usar [WA OPEN URL](wa-open-url.md) para carregá-la. Para limpar o conteúdo, chame **WA OPEN URL**(myArea;”about:blank”). @@ -47,4 +44,13 @@ Mostrar a frase "Olá mundo!" e definição de uma URL de banco "file:///" banco #### Ver também -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1037 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md index 97793b21e55f12..ec510c4fcf9227 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA SET PREFERENCE permite fixar diferentes preferências para o área web designada pelos parâmetros *\** e *objeto*. @@ -54,4 +51,13 @@ WA SET PREFERENCE( *;"myarea"; WA enable URL drop ; True) #### Ver também -[WA GET PREFERENCE](wa-get-preference.md) \ No newline at end of file +[WA GET PREFERENCE](wa-get-preference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1041 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md index a1c4884b637542..3347c028b600c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA SET URL FILTERS permite colocar um ou mais filtros para a área Web designada pelos parâmetros *\** e *objeto*. @@ -141,4 +138,13 @@ Imagine que deseja negar o acesso a endereços IP específicos: #### Ver também [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1030 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md index 1941767a0ebc2b..f2848382690e91 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA STOP LOADING URL para de carregar os recurso da URL atual da área web determinada pelos parâmetros *\** e *objeto*. #### Ver também -[WA REFRESH CURRENT URL](wa-refresh-current-url.md) \ No newline at end of file +[WA REFRESH CURRENT URL](wa-refresh-current-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1024 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md index 29cd34921c476b..30e16683e390d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA ZOOM IN aumenta o tamanho do texto mostrado na área web designada pelos parâmetros \* e *objeto*. @@ -27,4 +24,13 @@ Em Windows, o alcance deste comando é global: a configuração se conserva depo #### Ver também -[WA ZOOM OUT](wa-zoom-out.md) \ No newline at end of file +[WA ZOOM OUT](wa-zoom-out.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1039 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md index 758cdde2343ed3..f2edf4d0ea3bd7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA ZOOM OUT reduz o tamanho do texto mostrado no área web designada pelos parâmetros *\** e *objeto*. @@ -27,4 +24,13 @@ Em Windows, o alcance deste comando é global: a configuração se conserva depo #### Ver também -[WA ZOOM IN](wa-zoom-in.md) \ No newline at end of file +[WA ZOOM IN](wa-zoom-in.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1040 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md index 6954177aca1e68..227c951ce7b014 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md @@ -23,4 +23,13 @@ Consulte o exemplo do comando [WEB GET BODY PART](web-get-body-part.md). #### Ver também -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1211 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md index 05c854e591e485..1b1dde2eaad7f7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md @@ -91,4 +91,13 @@ Este é o código do método GetFile: [WEB Get body part count](web-get-body-part-count.md) [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET VARIABLES](web-get-variables.md) \ No newline at end of file +[WEB GET VARIABLES](web-get-variables.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1212 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md index f6a55e24d80401..a1d875483a48f6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md @@ -22,4 +22,13 @@ Se este comando se chama fora do contexto de uma sessão web, devolve uma cadeia #### Ver também [WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) -*Web Sessions Management (Legacy)* \ No newline at end of file +*Web Sessions Management (Legacy)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1162 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md index 5b33ace6c125a0..5fca624539aa2f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md @@ -47,4 +47,13 @@ Quando o formulário é enviado ao servidor web, a variável $textoPetição rec #### Ver também [WEB GET BODY PART](web-get-body-part.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 814 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md index 12d858545f8e6e..4bd5781fc0bdfa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md @@ -116,4 +116,13 @@ O seguinte método permite recuperar o conteúdo de todo campo de cabeçalho de #### Ver também [WEB GET HTTP BODY](web-get-http-body.md) -[WEB SET HTTP HEADER](web-set-http-header.md) \ No newline at end of file +[WEB SET HTTP HEADER](web-set-http-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 697 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md index 9ceb7d83938590..778f76a5194562 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md @@ -62,4 +62,13 @@ Quando usar o seletor web debug log, pode receber uma das constantes abaixo no p #### Ver também -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1209 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md index 03324e3cdf4dfb..4c7d0b7644bea5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md @@ -87,4 +87,13 @@ Depois de executar o código abaixo: [License info](license-info.md) [Process activity](../commands/process-activity.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1531 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md index 51dd30c92ab621..c95e677f5d6dad 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md @@ -62,3 +62,13 @@ No método de projeto STATS, escreva o código abaixo: ``` Pode enviar a página "stats.shtm" utilizando um link URL ou utilizando o comando [WEB SEND FILE](web-send-file.md). + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 658 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md index 91ecc8c87dc809..167a90a1260991 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md @@ -62,4 +62,13 @@ A variável vNOME contém ROBERTO e vCIDADE contém PARIS. #### Ver também -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 683 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md index 338463a2273372..19e205e4db4ae4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md @@ -26,4 +26,13 @@ Este comando permite, por exemplo, recusar as tentativas de conexão em modo nã #### Ver também -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 698 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md index ec6ec718a07fac..faa03aa6ef0b27 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md @@ -36,3 +36,13 @@ Você quer verificar que o servidor web se está executando:     ... //fazer as ações apropriadas  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1313 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md index e6e387c0d505aa..7d3e4d09ca8090 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md @@ -34,4 +34,13 @@ Depois da execução deste comando, se um cliente web envia um pedido com uma co #### Ver também [Método banco de dados On Web Legacy Close Session database method](metodo-banco-de-dados-on-web-legacy-close-session-database-method.md) -*Web Sessions Management (Legacy)* \ No newline at end of file +*Web Sessions Management (Legacy)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1208 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md index 4d5647ba2d121c..3fbf06b41805be 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md @@ -37,4 +37,13 @@ O parâmetro *dataVenc* recebe a data de vencimento e o parâmetro *horaVenc* re [WEB Get Current Session ID](web-get-current-session-id.md) *Web Sessions Management (Legacy)* -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1207 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md index 57f7586381c501..1310ee0ed18d56 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md @@ -79,4 +79,13 @@ Consulte o exemplo da rotina [PICTURE TO BLOB](picture-to-blob.md). #### Ver também -[WEB SEND FILE](web-send-file.md) \ No newline at end of file +[WEB SEND FILE](web-send-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 654 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md index da65e450cfcb6b..0b33338ca96700 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md @@ -47,4 +47,14 @@ Se o arquivo a ser enviado existir e o timeout não tiver passado, OK é estabel #### Ver também -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 619 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md index 431a611cde26c7..09368a021aec28 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md @@ -55,3 +55,13 @@ Na parte (ou subrotina) do [QR SET DESTINATION](qr-set-destination.md), insere o  ... //Coloque o código da pesquisa aqui End case ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 659 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md index e53ea70eb6c995..f693e54c2fb38b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md @@ -82,4 +82,13 @@ Este exemplo ilustra o uso da opção chunked com o comando **WEB SEND RAW DATA* #### Ver também [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 815 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md index a53c68f7923aa8..cd4509be95311f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md @@ -43,4 +43,13 @@ O método abaixo: #### Ver também -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 677 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md index 6d2f8aef65361b..2a66864c87df9c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md @@ -50,4 +50,13 @@ Autenticação com um serviço web localizado atrás de um proxy: #### Ver também [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE Get info](web-service-get-info.md) \ No newline at end of file +[WEB SERVICE Get info](web-service-get-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 786 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md index 085869eb8e6ca6..eae292403d85e1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md @@ -171,4 +171,14 @@ Se a petição for corretamente encaminhada, e o Web Service a aceitar, a variá #### Ver também [WEB SERVICE GET RESULT](web-service-get-result.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 778 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md index 067317049d8c02..00823a48a4fda4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md @@ -28,3 +28,13 @@ O parâmetro *tipoinfo* permite indicar o tipo de informação que quiser obter. | Web Service HTTP status code | Inteiro longo | 2 | Código de erro HTTP (para ser usado no caso do erro principal 9912). | Uma string vazia é retornada quando não há informação disponível, particularmente se a última petição SOAP não gerou erros. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 780 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md index f587f4b6da01a4..db112e65978206 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md @@ -52,4 +52,13 @@ Imagine um serviço web que devolve a hora atual em qualquer cidade do mundo. Os #### Ver também [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 779 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md index ed3967234f0f3f..2545e20c28f560 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md @@ -61,4 +61,13 @@ Utilização da versão 1.2 do protocolo SOAP: #### Ver também -[WEB SERVICE CALL](web-service-call.md) \ No newline at end of file +[WEB SERVICE CALL](web-service-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 901 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md index c28859c6f19b65..0186e9e4fd315f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md @@ -72,4 +72,13 @@ Este exemplo define dois parâmetros: #### Ver também [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE GET RESULT](web-service-get-result.md) \ No newline at end of file +[WEB SERVICE GET RESULT](web-service-get-result.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 777 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md index 8d153a44413852..6a77756749af7f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md @@ -26,3 +26,13 @@ Passe no parâmetro *pagInicio* o nome da página HTML ou da rota de acesso HTML Para não enviar *pagInicio* como página de inicio para o processo web atual, execute WEB SET HOME PAGE com uma string vazia ("") passada em *pagInicio*. **Nota**: a página de boas vindas por padrão do servidor web se definido nas Propriedades do banco. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 639 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md index dadc85c53aed31..aafca9a8435a9d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md @@ -66,4 +66,13 @@ Os campos **Date** e **Content-Length** sempre são definidos por padrão por 4D #### Ver também -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 660 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md index b94e476d966814..05fb667c94feab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md @@ -82,4 +82,13 @@ Uma entrada registrada se vê dessa maneira: #### Ver também [WEB GET OPTION](web-get-option.md) -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 5 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md index b41c0eaea467d8..331a1e1ca4e480 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md @@ -37,4 +37,14 @@ Se especificar uma rota de acesso inválida, será gerado um erro do administrad #### Ver também [Get 4D folder](get-4d-folder.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 634 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md index 5acd348395660c..c219aaf4bf3131 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md @@ -24,4 +24,14 @@ Se o servidor Web é iniciado corretamente, Ok assume o valor 1; do contrário O #### Ver também -[WEB STOP SERVER](web-stop-server.md) \ No newline at end of file +[WEB STOP SERVER](web-stop-server.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 617 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md index eba9cf52795f66..2efa1b337ff53f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md @@ -20,4 +20,13 @@ Se o servidor web não for iniciado, o comando não faz nada. #### Ver também -[WEB START SERVER](web-start-server.md) \ No newline at end of file +[WEB START SERVER](web-start-server.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 618 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md index 2bc2100ea54cd2..db4906a9e5c6d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md @@ -55,4 +55,13 @@ Exemplo de método de base On Web Authentication em modo Digest: #### Ver também [Generate digest](generate-digest.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 946 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md index 8bcb11eb9c0fe5..6f81f8eb2ab9e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Window kind devolve o tipo de janela 4D cujo número de referência for passado no parâmetro *janela*. Se a janela não existir, Window kind devolve *0 (zero)*. @@ -41,4 +38,13 @@ Ver o exemplo do comando [WINDOW LIST](window-list.md). [GET WINDOW RECT](get-window-rect.md) [Get window title](get-window-title.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 445 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md index 5327f675e05da1..c884fe247506cf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WINDOW LIST preenche o array *janelas* com os números de referência das janelas abertas atualmente em todos os processos (processos kernel ou usuário). Apenas janelas "visíveis" (ou seja, não ocultadas) são retornadas. @@ -52,4 +49,13 @@ O método de projeto abaixo coloca em mosaico todas as janelas abertas atualment #### Ver também [Window kind](window-kind.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 442 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md index 2ee45aaebc2042..29b0f22bbe0b8d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Window process devolve o número de processo que executa a janela cujo número de referência é passado em *janela*. Se a janela não existir, o comando devolve *0 (zero)*. @@ -25,4 +22,13 @@ Se omitir o parâmetro *janela*, Window process devolve o número do processo da #### Ver também -[Current process](current-process.md) \ No newline at end of file +[Current process](current-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 446 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md index dd21b39a3e0a3c..182ddfb3050175 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md @@ -30,4 +30,13 @@ Ver exemplo do comando [Shift down](shift-down.md). [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 563 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md index 0136936a10ff50..df25a7155e7bfe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md @@ -30,4 +30,13 @@ Ver exemplo do comando [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 562 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md index 09b846711f5426..b4ed647217b61d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md @@ -49,4 +49,14 @@ Se a execução do comando for correta, a variável sistema Document contém a r *Imagens* [PICTURE TO BLOB](picture-to-blob.md) [READ PICTURE FILE](read-picture-file.md) -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 680 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md index 516d00e40f3565..205d35eec61446 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md @@ -75,4 +75,13 @@ Exemplo do documento XML: #### Ver também [BASE64 DECODE](base64-decode.md) -[BASE64 ENCODE](base64-encode.md) \ No newline at end of file +[BASE64 ENCODE](base64-encode.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1091 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md index f0258e6b2452ec..8b2fa63286216a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md @@ -28,4 +28,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 #### Ver também -[DOM Get XML information](dom-get-xml-information.md) \ No newline at end of file +[DOM Get XML information](dom-get-xml-information.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 732 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md index f58f81a8aa64ba..8c8179cf0ae31e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md @@ -36,4 +36,13 @@ Em seletor, passe uma das constantes do tema "*XML*" indicando a opção a obter #### Ver também -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1096 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md index 4ebe33897b2ada..0962cc57768702 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md @@ -68,4 +68,13 @@ Inserir uma imagem SVG: [DOM SET XML DECLARATION](dom-set-xml-declaration.md) [DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[XML GET OPTIONS](xml-get-options.md) \ No newline at end of file +[XML GET OPTIONS](xml-get-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1090 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md index cb32ac3c744fd3..704cd972ad600a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md @@ -37,4 +37,13 @@ Ver o exemplo do comando [Current date](current-date.md "Current date"). #### Ver também [Day of](day-of.md) -[Month of](month-of.md) \ No newline at end of file +[Month of](month-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 25 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/command-index.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/command-index.md index d504feb2bd914f..630fdbe9a5ac1c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/command-index.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/command-index.md @@ -90,7 +90,7 @@ title: Índice [`Cache info`](../commands-legacy/cache-info.md)
    [`Call chain`](../commands-legacy/call-chain.md)
    -[`CALL FORM`](call-form.md)
    +[`CALL FORM`](../commands-legacy/call-form.md)
    [`CALL SUBFORM CONTAINER`](../commands-legacy/call-subform-container.md)
    [`CALL WORKER`](../commands-legacy/call-worker.md)
    [`CANCEL`](../commands-legacy/cancel.md)
    @@ -279,7 +279,7 @@ title: Índice [`Euro converter`](../commands-legacy/euro-converter.md)
    [`EXECUTE FORMULA`](../commands-legacy/execute-formula.md)
    [`EXECUTE METHOD`](../commands-legacy/execute-method.md)
    -[`EXECUTE METHOD IN SUBFORM`](execute-method-in-subform.md)
    +[`EXECUTE METHOD IN SUBFORM`](../commands-legacy/execute-method-in-subform.md)
    [`EXECUTE ON CLIENT`](../commands-legacy/execute-on-client.md)
    [`Execute on server`](../commands-legacy/execute-on-server.md)
    [`Exp`](../commands-legacy/exp.md)
    @@ -657,7 +657,7 @@ title: Índice [`METHOD GET NAMES`](../commands-legacy/method-get-names.md)
    [`METHOD Get path`](../commands-legacy/method-get-path.md)
    [`METHOD GET PATHS`](../commands-legacy/method-get-paths.md)
    -[`METHOD GET PATHS FORM`](method-get-paths-form.md)
    +[`METHOD GET PATHS FORM`](../commands-legacy/method-get-paths-form.md)
    [`METHOD OPEN PATH`](../commands-legacy/method-open-path.md)
    [`METHOD RESOLVE PATH`](../commands-legacy/method-resolve-path.md)
    [`METHOD SET ACCESS MODE`](../commands-legacy/method-set-access-mode.md)
    @@ -756,7 +756,7 @@ title: Índice [`OBJECT GET SCROLLBAR`](../commands-legacy/object-get-scrollbar.md)
    [`OBJECT GET SHORTCUT`](../commands-legacy/object-get-shortcut.md)
    [`OBJECT Get style sheet`](../commands-legacy/object-get-style-sheet.md)
    -[`OBJECT GET SUBFORM`](object-get-subform.md)
    +[`OBJECT GET SUBFORM`](../commands-legacy/object-get-subform.md)
    [`OBJECT GET SUBFORM CONTAINER SIZE`](../commands-legacy/object-get-subform-container-size.md)
    [`OBJECT Get subform container value`](../commands-legacy/object-get-subform-container-value.md)
    [`OBJECT Get text orientation`](../commands-legacy/object-get-text-orientation.md)
    @@ -802,7 +802,7 @@ title: Índice [`OBJECT SET SCROLLBAR`](../commands-legacy/object-set-scrollbar.md)
    [`OBJECT SET SHORTCUT`](../commands-legacy/object-set-shortcut.md)
    [`OBJECT SET STYLE SHEET`](../commands-legacy/object-set-style-sheet.md)
    -[`OBJECT SET SUBFORM`](object-set-subform.md)
    +[`OBJECT SET SUBFORM`](../commands-legacy/object-set-subform.md)
    [`OBJECT SET SUBFORM CONTAINER VALUE`](../commands-legacy/object-set-subform-container-value.md)
    [`OBJECT SET TEXT ORIENTATION`](../commands-legacy/object-set-text-orientation.md)
    [`OBJECT SET THREE STATES CHECKBOX`](../commands-legacy/object-set-three-states-checkbox.md)
    diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/compile-project.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/compile-project.md index f8c8a3abcbaf29..92b8bb20523204 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/compile-project.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/compile-project.md @@ -65,7 +65,7 @@ The *options* parameter is an object. Here are the available compilation options | plugins | Objeto 4D.Folder | Plug-ins folder to be used instead of the [Plugins folder of the current project](../Project/architecture.md#plugins). This property is only available with the *projectFile* syntax. | | targets | Coleção de strings | Possible values: "x86_64_generic", "arm64_macOS_lib". Pass an empty collection to execute syntax check only | | typeInference | Text | "all": The compiler deduces the types of all variables not explicitly declared, "locals": The compiler deduces the types of local variables not explicitly declared, "none": All variables must be explicitly declared in the code (legacy mode), "direct": All variables must be explicitly declared in the code ([direct typing](../Project/compiler.md#enabling-direct-typing)). | -| warnings | Uma coleção de objetos | Defines the warnings state | +| warnings | Uma coleção de objetos | Define o estado dos avisos | | \[\].major | Number | Warning main number, before the dot | | \[\].minor | Number | Warning second number, after the dot | | \[\].enabled | Parâmetros | Warning activation state | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md index 92eb70ec8eb626..5eacf684cef587 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/create-entity-selection.md @@ -42,3 +42,10 @@ $employees:=Create entity selection([Employee]) #### Veja também [USE ENTITY SELECTION](use-entity-selection.md)
    [`dataClass.newSelection()`](../API/DataClassClass.md#newselection) + +#### Propriedades + +| | | +| -------------- | ------------------------------- | +| Command number | 1512 | +| Thread safe | &check; | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/dialog.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/dialog.md index 06898188e00839..c2a91d6f7baa84 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/dialog.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/dialog.md @@ -92,7 +92,7 @@ In a form displaying the record of a person, a "Check children" button opens a d **Note:** The "Children" object field is represented only to show its structure for this example. -In the verification form, you have assigned some [Form](form.md) object properties to variables: +No formulário de verificação, você atribuiu algumas propriedades do objeto [Form](form.md) a variáveis: ![](../assets/en/commands/pict3541682.en.png) @@ -174,3 +174,11 @@ After a call to **DIALOG**, if the dialog is accepted, OK is set to 1; if it is [CANCEL](../commands-legacy/cancel.md)\ [Form](form.md)\ [Open window](../commands-legacy/open-window.md) + +#### Propriedades + +| | | +| ------------------ | ------------------------------- | +| Command number | 40 | +| Thread safe | &cross; | +| Modifies variables | OK, error | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/folder.md index 1ed61f56fca043..bad27f055e8332 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/folder.md @@ -29,7 +29,7 @@ displayed_sidebar: docs #### Descrição -O comando `Folder` cria e retorna um novo objeto do tipo `4D.Folder`. O comando aceita duas sintaxes: +Parâmetro O comando aceita duas sintaxes: **Folder ( path { ; pathType } { ; \* } )** diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-event-code.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-event-code.md index 2c92e471d0aa1f..d006069bcb9dbc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-event-code.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-event-code.md @@ -23,7 +23,7 @@ displayed_sidebar: docs 4D provides predefined constants (found in the *Form Events* theme) in order to compare the values returned by the **Form event code** command. Certain events are generic (generated for any type of object) and others are specific to a particular type of object. -For a description of events, please refer to the [**Form Events**](../Events/overview.md) section. +Para obter uma descrição dos eventos, consulte a seção [**Eventos formulário**](../Events/overview.md). #### Exemplo 1 @@ -246,7 +246,7 @@ Este exemplo mostra como responder a um evento de fecho de janela com um formul  End case ``` -#### Example 10 +#### Exemplo 10 This example shows how to capitalize a text or alphanumeric field each time its data source value is modified: @@ -260,7 +260,7 @@ This example shows how to capitalize a text or alphanumeric field each time its  End case ``` -#### Example 11 +#### Exemplo 11 The following example illustrates how to manage a deletion action in a hierarchical list: @@ -288,7 +288,7 @@ The following example illustrates how to manage a deletion action in a hierarchi  End if ``` -#### Example 12 +#### Exemplo 12 In this example, the [`On Scroll`](../Events/onScroll.md) form event allows us to synchronize the display of two pictures in a form. The following code is added in the "satellite" object method (picture field or variable): @@ -304,7 +304,7 @@ In this example, the [`On Scroll`](../Events/onScroll.md) form event allows us t Result: https://www.youtube.com/watch?v=YIRfsW1BmHE -#### Example 13 +#### Exemplo 13 You want to draw a red rectangle around the selected cell of a list box, and you want the rectangle to move along with the list box if it is scrolled vertically by the user. In the list box object method, you can write: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-event.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-event.md index 5bbf9362b7b250..62675fcc3ab0c6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-event.md @@ -23,7 +23,7 @@ displayed_sidebar: docs Each returned object includes the following main properties: -| **Property** | **Type** | **Description** | +| **Property** | **Tipo** | **Description** | | ------------ | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | objectName | text | Name of the object triggering the event - Not included if the event is triggered by the form | | code | integer | Valor numérico do evento de formulário. | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-load.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-load.md index 2ebd3bfeeecc2b..485dc77ccadfd8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-load.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/form-load.md @@ -21,7 +21,7 @@ displayed_sidebar: docs #### Descrição -The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents.The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents. There can only be one current form per process. +The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents.The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents.The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents. There can only be one current form per process. In the *form* parameter, you can pass: @@ -34,9 +34,9 @@ When the command is executed from a component, it loads the component forms by d ##### formData Optionally, you can pass parameters to the *form* using either the *formData* object or the form class object automatically instantiated by 4D if you have [associated a user class to the form](../FormEditor/properties_FormProperties.md#form-class). Any properties of the form data object will then be available from within the form context through the [Form](form.md) command. -The form data object is available in the [`On Load` form event](../Events/onLoad.md). +Any properties of the form data object will then be available from within the form context through the [Form](form.md) command. -For detailed information on the form data object, please refer to the [`DIALOG`](dialog.md) command. +Para obter informações detalhadas sobre o objeto de dados do formulário, consulte o comando [`DIALOG`](dialog.md). ##### Printing data @@ -44,7 +44,7 @@ In order to be able to execute this command, a print job must be opened beforeha If a printing form has already been loaded beforehand (via a previous call to the **FORM LOAD** command), it is closed and replaced by *form*. You can open and close several project forms in the same print session. Changing the printing form via the **FORM LOAD** command does not generate page breaks. It is up to the developer to manage page breaks. -Only the [`On Load` form event](../Events/onLoad.md) is executed during the opening of the project form, as well as any object methods of the form. Other form events are ignored. The [`On Unload` form event](../Events/onUnload.md) is executed at the end of printing. +Only the [`On Load` form event](../Events/onLoad.md) is executed during the opening of the project form, as well as any object methods of the form. Other form events are ignored. O evento formulário [`On Unload`](../Events/onUnload.md) é executado no final da impressão. To preserve the graphic consistency of forms, it is recommended to apply the "Printing" appearance property regardless of the platform. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/form.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/form.md index 2468cfeee35c3f..d7c07e6f9bcb6a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/form.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/form.md @@ -28,7 +28,7 @@ displayed_sidebar: docs The **Form** command returns the object associated with the current form (instantiated from the *formData* parameter or the user class assigned in the Form editor).The **Form** command returns the object associated with the current form (instantiated from the *formData* parameter or the user class assigned in the Form editor). 4D automatically associates an object to the current form in the following cases: -- the current form has been loaded by one of the [`DIALOG`](dialog.md), [`Print form`](print-form.md), or [`FORM LOAD`](form-load.md) commands, +- o formulário atual foi carregado por um dos comandos [`DIALOG`](dialog.md), [`Print form`](print-form.md) ou [`FORM LOAD`](form-load.md), - the current form is a subform, - a table form is currently displayed on screen. @@ -59,7 +59,7 @@ For more information, please refer to the *Page subforms* section. **Form** returns the object associated with the table form displayed on screen. In the context of an input form displayed from an output form (i.e. after a double-click on a record), the returned object contains the following property: -| **Property** | **Type** | **Description** | +| **Property** | **Tipo** | **Description** | | ------------ | -------- | ----------------------------------------- | | parentForm | object | **Form** object of the parent output form | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/formula-from-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/formula-from-string.md index aab8d87992ac04..281e8bb2e0fb4e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/formula-from-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/formula-from-string.md @@ -30,7 +30,7 @@ displayed_sidebar: docs The `Formula from string` command creates a `4D.Function` object based upon the *formulaString* and, optionnally, a *context*. *formulaString* can be as simple as a single value or complex, such as a project method with parameters. -This command is similar to [`Formula`](formula.md), except that it handles a text-based formula and allows to define an execution context. It is usually recommended to use the `Formula` command, except if the original formula was expressed as text (e.g., stored externally in a JSON file), or if you want to create a formula in a host database while calling `Formula from string` from a component. É altamente recomendável usar a sintaxe com tokens com esse comando. +Esse comando é como [`Formula`](formula.md), exceto pelo fato de que ele lida com uma fórmula baseada em texto e permite definir um contexto de execução. Esse comando é como [`Formula`](#formula), exceto pelo fato de que ele lida com uma fórmula baseada em texto e permite definir um contexto de execução. It is usually recommended to use the `Formula` command, except if the original formula was expressed as text (e.g., stored externally in a JSON file), or if you want to create a formula in a host database while calling `Formula from string` from a component. É altamente recomendável usar a sintaxe com tokens com esse comando. > Because local variable contents can not be accessed by name in compiled mode, they can not be used in *formulaString*. An attempt to access a local variable with `Formula from string` will result in an error (-10737). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md index e8ed3efc91518d..0a275e77c27e13 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/imap-new-transporter.md @@ -29,24 +29,24 @@ O comando `IMAP New transporter` ](../API/IMAPTransporterClass.md#acceptunsecureconnection)
    | False | -| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Not returned in *[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)* object. | nenhum | -| [](../API/IMAPTransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | -| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
    | 300 | -| [](../API/IMAPTransporterClass.md#connectiontimeout)
    | 30 | -| [](../API/IMAPTransporterClass.md#host)
    | *mandatory* | -| [](../API/IMAPTransporterClass.md#logfile)
    | nenhum | -| **senha** : Texto
    Senha do usuário para autenticação no servidor. Não retornado no objeto *[IMAP transporter](#imap-transporter-object)*. | nenhum | -| [](../API/IMAPTransporterClass.md#port)
    | 993 | -| [](../API/IMAPTransporterClass.md#user)
    | nenhum | +| *server* | Valor padrão (se omitido) | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------- | +| [](../API/IMAPTransporterClass.md#acceptunsecureconnection)
    | False | +| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Não retornado no objeto *[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)*. | nenhum | +| [](../API/IMAPTransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | +| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
    | 300 | +| [](../API/IMAPTransporterClass.md#connectiontimeout)
    | 30 | +| [](../API/IMAPTransporterClass.md#host)
    | *mandatory* | +| [](../API/IMAPTransporterClass.md#logfile)
    | nenhum | +| **senha** : Texto
    Senha do usuário para autenticação no servidor. Não retornado no objeto *[IMAP transporter](#imap-transporter-object)*. | nenhum | +| [](../API/IMAPTransporterClass.md#port)
    | 993 | +| [](../API/IMAPTransporterClass.md#user)
    | nenhum | > **Aviso**: certifique-se de que o tempo limite definido seja menor que o tempo limite do servidor, caso contrário, o tempo limite do cliente será inútil. #### Resultados -The function returns an [**IMAP transporter object**](../API/IMAPTransporterClass.md#imap-transporter-object). Todas as propriedades retornadas são **apenas leitura**. +A função retorna um [**objeto IMAP transporter**](../API/IMAPTransporterClass.md#imap-transportter-object). Todas as propriedades retornadas são **apenas leitura**. > A ligação IMAP é automaticamente fechada quando o objecto transportador é destruído. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/license-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/license-info.md index 0b6490be13f949..975fcdb980128f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/license-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/license-info.md @@ -56,31 +56,31 @@ O objeto retornado contém as propriedades abaixo: } ``` -| **Property** | **Type** | **Description** | **Exemplo** | -| ------------------- | ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| name | string | Commercial name | "4D Developer Professional vXX" | -| \| | number | ID of the installed product. A unique number is associated to a 4D application (such as 4D Server, 4D in local mode, 4D Desktop, etc.) installed on a machine. This number is encrypted. | 12356789 | -| licenseNumber | string | License number | "4DDP16XXXXX1123456789" | -| version | string | Product version number | "16", "16R2" | -| attributes | collection of strings | License type(s) when applicable (optional) | \["application","OEM"\] | -| userName | string | Name of 4D store account | "John Smith" | -| userMail | string | Mail of 4D store account | "john.smith@gmail.com" | -| companyName | string | Company name of 4D store account | "Alpha Cie" | -| platforms | collection of strings | License platform(s) | \["macOS", "windows"\] | -| expirationDate | object | Date of expiration (optional) | {"day":2, "month":6, "year":2018} | -| renewalFailureCount | number | Number of unsuccessful automatic renewal attempts for at least one of the product licenses (optional) | 3 | -| products | uma coleção de objetos | Description of product license (one element per product license). See below. | | +| **Property** | **Tipo** | **Description** | **Exemplo** | +| ------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------- | +| name | string | Nome comercial | "4D Developer Professional vXX" | +| \| | number | ID of the installed product. A unique number is associated to a 4D application (such as 4D Server, 4D in local mode, 4D Desktop, etc.) installed on a machine. Esse número é criptografado. | 12356789 | +| licenseNumber | string | License number | "4DDP16XXXXX1123456789" | +| version | string | Product version number | "16", "16R2" | +| attributes | collection of strings | License type(s) when applicable (optional) | \["application","OEM"\] | +| userName | string | Name of 4D store account | "John Smith" | +| userMail | string | Mail of 4D store account | "john.smith@gmail.com" | +| companyName | string | Company name of 4D store account | "Alpha Cie" | +| platforms | collection of strings | License platform(s) | \["macOS", "windows"\] | +| expirationDate | object | Date of expiration (optional) | {"day":2, "month":6, "year":2018} | +| renewalFailureCount | number | Number of unsuccessful automatic renewal attempts for at least one of the product licenses (optional) | 3 | +| products | uma coleção de objetos | Description of product license (one element per product license). See below. | | Each object of the `products` collection can have the following properties: -| **Property** | | **Type** | **Description** | **Exemplo** | +| **Property** | | **Tipo** | **Description** | **Exemplo** | | ------------ | ------------------------------------------------------------------------------------------ | ---------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | | id | | number | License number | For available values, see the [Is license available](../commands-legacy/is-license-available.md) command | | name | | string | License name | "4D Write - 4D Write Pro" | | usedCount | | number | Number of consumed connections | 8 | | allowedCount | | number | Total connections allowed for the product against the expiry dates | 15 | | rights | | uma coleção de objetos | Rights for the product (one element per expiration date) | | -| | \[ \].count | number | Number of allowed connections | 15 (32767 means unlimited) | +| | \[ \].count | number | Number of allowed connections | 15 (32767 significa ilimitado) | | | \[ \].expirationDate | object | Date of expiration (optional, same format as above) | {"day":1, "month":11, "year":2017} | #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/mail-convert-to-mime.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/mail-convert-to-mime.md index 4bd45d1ba0783b..a8d77ae34149f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/mail-convert-to-mime.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/mail-convert-to-mime.md @@ -31,7 +31,7 @@ The `MAIL Convert to MIME` command conne Os seguintes datastores remotos são compatíveis com o comando: -| tipo de datastore | Descrição | -| ---------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Aplicação 4D remoto | A 4D application available as a remote datastore, i.e.:
  • its web server is launched with http and/or https enabled,
  • its datastore is exposed to REST ([**Expose as REST server**](REST/configuration.md#starting-the-rest-server) option checked).
  • A license can be required (see note) | -| [Qodly application](https://developer.qodly.com/docs/cloud/getStarted) | Um aplicativo Qodly Server que forneceu a você um **api endpoint** e uma **api key** válida associada a um cargo definido. You must pass the api key in the `api-key` property of the *connectionInfo* object. You can then work with the returned datastore object, with all privileges granted to the associated role. | +| tipo de datastore | Descrição | +| -------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Aplicação 4D remoto | A 4D application available as a remote datastore, i.e.:
  • its web server is launched with http and/or https enabled,
  • its datastore is exposed to REST ([**Expose as REST server**](REST/configuration.md#starting-the-rest-server) option checked).
  • A license can be required (see note) | +| [Aplicação Qodly](https://developer.qodly.com/docs/cloud/getStarted) | Um aplicativo Qodly Server que forneceu a você um **api endpoint** e uma **api key** válida associada a um cargo definido. You must pass the api key in the `api-key` property of the *connectionInfo* object. You can then work with the returned datastore object, with all privileges granted to the associated role. | :::note @@ -43,7 +43,7 @@ Os seguintes datastores remotos são compatíveis com o comando: ::: -Passe em connectionInfo um objeto que desceva o armazém de dados remoto ao que quiser se conectar. It can contain the following properties (all properties are optional except *hostname*): +Passe em connectionInfo um objeto que desceva o armazém de dados remoto ao que quiser se conectar. Pode conter as propriedades abaixo (todas as propriedades são opcionais menos *hostname*): | Propriedade | Tipo | Aplicação 4D remoto | Aplicação Qodly | | ----------- | ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/pop3-new-transporter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/pop3-new-transporter.md index 24e232f8f9eeca..3f1f5ea978c44b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/pop3-new-transporter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/pop3-new-transporter.md @@ -11,7 +11,7 @@ displayed_sidebar: docs | Parâmetro | Tipo | | Descrição | | --------- | ---------------------------------- | - | --------------------------------------------------------------------------------- | | server | Object | → | Informação de servidor de correio | -| Resultado | 4D.POP3Transporter | ← | [POP3 transporter object](../API/POP3TransporterClass.md#pop3-transporter-object) | +| Resultado | 4D.POP3Transporter | ← | [Objeto transporter POP3](../API/POP3TransporterClass.md#pop3-transporter-object) | @@ -29,17 +29,17 @@ The `POP3 New transporter` command ](../API/POP3TransporterClass.md#acceptunsecureconnection)
    | False | -| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Not returned in *[SMTP transporter](../API/POP3TransporterClass.md#smtptransporterobject)* object. | nenhum | -| [](../API/POP3TransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | -| [](../API/POP3TransporterClass.md#connectiontimeout)
    | 30 | -| [](../API/POP3TransporterClass.md#host)
    | *mandatory* | -| [](../API/POP3TransporterClass.md#logfile)
    | nenhum | -| **.password** : Text
    Senha do usuário para autenticação no servidor. Not returned in *[SMTP transporter](../API/POP3TransporterClass.md#smtptransporterobject)* object. | nenhum | -| [](../API/POP3TransporterClass.md#port)
    | 995 | -| [](../API/POP3TransporterClass.md#user)
    | nenhum | +| *server* | Valor padrão (se omitido) | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------- | +| [](../API/POP3TransporterClass.md#acceptunsecureconnection)
    | False | +| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Não retornado no objeto *[SMTP transporter](../API/POP3TransporterClass.md#smtptransporterobject)*. | nenhum | +| [](../API/POP3TransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | +| [](../API/POP3TransporterClass.md#connectiontimeout)
    | 30 | +| [](../API/POP3TransporterClass.md#host)
    | *mandatory* | +| [](../API/POP3TransporterClass.md#logfile)
    | nenhum | +| **.password** : Text
    Senha do usuário para autenticação no servidor. Não retornado no objeto *[SMTP transporter](../API/POP3TransporterClass.md#smtptransporterobject)*. | nenhum | +| [](../API/POP3TransporterClass.md#port)
    | 995 | +| [](../API/POP3TransporterClass.md#user)
    | nenhum | #### Resultados diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/print-form.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/print-form.md index 57175904fd5adc..39acf38290dffd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/print-form.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/print-form.md @@ -23,7 +23,7 @@ displayed_sidebar: docs #### Descrição -**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*. It is usually used to print very complex reports that require complete control over the printing process. **Print form** does not do any record processing, break processing or page breaks. These operations are your responsibility. **Print form** prints fields and variables in a fixed size frame only. +**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*.**Print form** simply prints *form* with the current values of fields and variables of *aTable*. It is usually used to print very complex reports that require complete control over the printing process. **Print form** does not do any record processing, break processing or page breaks. These operations are your responsibility. **Print form** prints fields and variables in a fixed size frame only. In the *form* parameter, you can pass: @@ -31,7 +31,7 @@ In the *form* parameter, you can pass: - the path (in POSIX syntax) to a valid .json file containing a description of the form to use (see *Form file path*), or - an object containing a description of the form. -Since **Print form** does not issue a page break after printing the form, it is easy to combine different forms on the same page. Thus, **Print form** is perfect for complex printing tasks that involve different tables and different forms. To force a page break between forms, use the [PAGE BREAK](../commands-legacy/page-break.md) command. In order to carry printing over to the next page for a form whose height is greater than the available space, call the [CANCEL](../commands-legacy/cancel.md) command before the [PAGE BREAK](../commands-legacy/page-break.md) command. +Since **Print form** does not issue a page break after printing the form, it is easy to combine different forms on the same page. Thus, **Print form** is perfect for complex printing tasks that involve different tables and different forms. Para forçar uma quebra de página entre os formulários, use o comando [PAGE BREAK](../commands-legacy/page-break.md). In order to carry printing over to the next page for a form whose height is greater than the available space, call the [CANCEL](../commands-legacy/cancel.md) command before the [PAGE BREAK](../commands-legacy/page-break.md) command. Three different syntaxes may be used: @@ -93,11 +93,11 @@ In this case, the command will print the section included between the *areaStart **formData** -Optionally, you can pass parameters to the *form* using either the *formData* object or the form class object automatically instantiated by 4D if you have [associated a user class to the form](../FormEditor/properties_FormProperties.md#form-class). Any properties of the form data object will then be available from within the form context through the [Form](form.md) command. The form data object is available in the [`On Printing Detail` form event](../Events/onPrintingDetail.md). +Optionally, you can pass parameters to the *form* using either the *formData* object or the form class object automatically instantiated by 4D if you have [associated a user class to the form](../FormEditor/properties_FormProperties.md#form-class). Any properties of the form data object will then be available from within the form context through the [Form](form.md) command. Optionally, you can pass parameters to the *form* using either the *formData* object or the form class object automatically instantiated by 4D if you have [associated a user class to the form](../FormEditor/properties_FormProperties.md#form-class). -For detailed information on the form data object, please refer to the [`DIALOG`](dialog.md) command. +Para obter informações detalhadas sobre o objeto de dados do formulário, consulte o comando [`DIALOG`](dialog.md). -**Return value** +**Valor retornado** The value returned by **Print form** indicates the height of the printable area. This value will be automatically taken into account by the [Get printed height](../commands-legacy/get-printed-height.md) command. @@ -108,13 +108,13 @@ The printer dialog boxes do not appear when you use **Print form**. The report d **Print form** builds each printed page in memory. Each page is printed when the page in memory is full or when you call [PAGE BREAK](../commands-legacy/page-break.md). To ensure the printing of the last page after any use of **Print form**, you must conclude with the [PAGE BREAK](../commands-legacy/page-break.md) command (except in the context of an [OPEN PRINTING JOB](../commands-legacy/open-printing-job.md), see note). Otherwise, if the last page is not full, it stays in memory and is not printed. -**Warning:** If the command is called in the context of a printing job opened with [OPEN PRINTING JOB](../commands-legacy/open-printing-job.md), you must NOT call [PAGE BREAK](../commands-legacy/page-break.md) for the last page because it is automatically printed by the [CLOSE PRINTING JOB](../commands-legacy/close-printing-job.md) command. If you call [PAGE BREAK](../commands-legacy/page-break.md) in this case, a blank page is printed. +**Warning:** If the command is called in the context of a printing job opened with [OPEN PRINTING JOB](../commands-legacy/open-printing-job.md), you must NOT call [PAGE BREAK](../commands-legacy/page-break.md) for the last page because it is automatically printed by the [CLOSE PRINTING JOB](../commands-legacy/close-printing-job.md) command. Se você chamar [PAGE BREAK](../commands-legacy/page-break.md) nesse caso, uma página em branco será impressa. This command prints external areas and objects (for example, 4D Write or 4D View areas). The area is reset for each execution of the command. **Warning:** Subforms are not printed with **Print form**. To print only one form with such objects, use [PRINT RECORD](../commands-legacy/print-record.md) instead. -**Print form** generates only one [`On Printing Detail` event](../Events/onPrintingDetail.md) for the form method. +**Print form** gera apenas um evento [`On Printing Detail`](../Events/onPrintingDetail.md) para o método formulário. **4D Server:** This command can be executed on 4D Server within the framework of a stored procedure. In this context: @@ -148,7 +148,7 @@ The following example performs as a [PRINT SELECTION](../commands-legacy/print-s #### Exemplo 2 -Refer to the example of the [SET PRINT MARKER](../commands-legacy/set-print-marker.md) command. +Consulte o exemplo do comando [SET PRINT MARKER](../commands-legacy/set-print-marker.md). #### Exemplo 3 diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/process-activity.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/process-activity.md index 2f50d7c406afc6..cf4eaf492c0f8a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/process-activity.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/process-activity.md @@ -52,24 +52,24 @@ When executed on 4D in remote or local mode, `Process activity` always returns t **Sessions** -The "sessions" property contains a collection of objects describing all running sessions on the server. For a description of session object properties, please refer to the [`Session info`](session-info.md) command. +The "sessions" property contains a collection of objects describing all running sessions on the server. Para obter uma descrição das propriedades do objeto de sessão, consulte o comando [`Session info`](session-info.md). :::note Notes -- You can get the object of a session using the [Session](session.md) command. +- Você pode obter o objeto de uma sessão usando o comando [Session](session.md). - `Process activity` returns remote client sessions, stored procedure session and rest sessions but not Web sessions (limitation). ::: **Processes** -The "processes" property contains a collection of process objects describing all running processes. For a description of process object properties, please refer to the [`Process info`](process-info.md) command. +The "processes" property contains a collection of process objects describing all running processes. Para obter uma descrição das propriedades do objeto de processo, consulte o comando [`Process info`](process-info.md). On the server, the `Process activity` command returns an additional "session" property: -| Additional property | Tipo | Descrição | | -| ------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | - | -| session | Object | The [`.info`](../API/SessionClass.md#info) property of the session in which the process is running. Undefined if the `Processes only` parameter is passed. | | +| Additional property | Tipo | Descrição | | +| ------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | - | +| session | Object | A propriedade [`.info`](../API/SessionClass.md#info) da sessão onde o processo está sendo executado. Undefined if the `Processes only` parameter is passed. | | #### Exemplo 1 diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/process-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/process-info.md index 559ed7bd88aa2c..0ec13c682cf77f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/process-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/process-info.md @@ -57,7 +57,7 @@ O objeto retornado contém as propriedades abaixo: | Waiting for internal flag | 4 | | Paused | 5 | -- Possible values for "type": +- Valores possíveis para "type": | Parâmetros | Valor | | ----------------------------- | ----- | diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/session-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/session-info.md index 7abb7a5689a2d8..8a203f67c0b8c9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/session-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/session-info.md @@ -33,7 +33,7 @@ O objeto retornado contém as propriedades abaixo: | Propriedade | Tipo | Descrição | | ---------------- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | type | Text | Session type: "remote", "storedProcedure", "standalone" | -| userName | Text | 4D user name (same value as [`Session.userName`](../API/SessionClass.md#username)) | +| userName | Text | Nome de usuário 4D (o mesmo valor de [`Session.userName`](../API/SessionClass.md#username)) | | machineName | Text | Sessões remotas: nome da máquina remota. Stored procedures session: name of the server machine. Standalone session: name of the machine | | systemUserName | Text | Sessões remotas: nome da sessão do sistema aberta na máquina remota. | | IPAddress | Text | Endereço IP da máquina remota | @@ -45,7 +45,7 @@ O objeto retornado contém as propriedades abaixo: :::note -This command returns the [`.info`](../API/SessionClass.md#info) property of the *sessionID* session. To get information about the current session, you can directly call `Session.info`. +Este comando retorna a propriedade [`.info`](../API/SessionClass.md#info) da sessão *sessionID*. To get information about the current session, you can directly call `Session.info`. ::: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/session-storage.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/session-storage.md index ff7505b6db8eec..a22a55d2dea82b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/session-storage.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/session-storage.md @@ -32,7 +32,7 @@ In *id*, pass the UUID of the session for which you want to get the storage. It **Note:** You can get the session identifiers using the [Process activity](process-activity.md) command. -The returned object is the [**.storage**](../API/SessionClass.md#storage) property of the session. It is a shared object used to store information available to all processes of the session. +O objeto retornado é a propriedade [**.storage**](../API/SessionClass.md#storage) da sessão. It is a shared object used to store information available to all processes of the session. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/session.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/session.md index 34e5dfad99435c..a1aa697968b28f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/session.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/session.md @@ -65,7 +65,7 @@ Para mais informações em sessões usuários remotos, consulte o parágrafo [** Todos os processos de procedimento armazenado compartilham a mesma sessão de usuário virtual. O objeto `Session` de procedimentos armazenados está disponível em: -- methods called with the [`Execute on server`](../commands-legacy/execute-on-server.md) command, +- métodos chamados com o comando [`Execute on server`](../commands-legacy/execute-on-server.md), - `On Server Startup`, `On Server Shutdown`, `On Backup Startup`, `On Backup Shutdown`, and `On System event` database methods For information on stored procedures virtual user session, please refer to the [4D Server and the 4D Language](https://doc.4d.com/4Dv20R5/4D/20-R5/4D-Server-and-the-4D-Language.300-6932726.en.html) page. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md index 30df8536958a15..b2cbba16c33f72 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/set-allowed-methods.md @@ -26,7 +26,7 @@ displayed_sidebar: docs - The formula editor - allowed methods appear at the end of the list of default commands and can be used in formulas (see section *Description of formula editor*). - The label editor - the allowed methods are listed in the **Apply** menu if they are also shared with the component (see section *Description of label editor*). - Formulas inserted in styled text areas or 4D Write Pro documents through the [ST INSERT EXPRESSION](../commands-legacy/st-insert-expression.md) command - disallowed methods are automatically rejected. -- 4D View Pro documents - by default, if the [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) command has never been called during the session, 4D View Pro formulas only accept methods defined by **SET ALLOWED METHODS**. However, using [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) is recommended. See [Declaring allowed method](../ViewPro/formulas.md#declaring-allowed-methods). +- 4D View Pro documents - by default, if the [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) command has never been called during the session, 4D View Pro formulas only accept methods defined by **SET ALLOWED METHODS**. No entanto, é recomendável usar [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md). Veja [Declarando o método permitido](../ViewPro/formulas.md#declaring-allowed-methods). By default, if you do not use the **SET ALLOWED METHODS** command, no method is enterable (using an unauthorized method in an expression causes an error). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/set-window-document-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/set-window-document-icon.md index c68afc4ec03d29..1354cc6af48520 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/set-window-document-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/set-window-document-icon.md @@ -8,11 +8,11 @@ displayed_sidebar: docs -| Parâmetro | Tipo | | Descrição | -| --------- | -------------------------------------------------- | - | ------------------------ | -| winRef | Integer | → | Window reference number | -| image | Imagem | → | Custom icon | -| file | 4D.File, 4D.Folder | → | File path or folder path | +| Parâmetro | Tipo | | Descrição | +| --------- | -------------------------------------------------- | - | -------------------------------------- | +| winRef | Integer | → | Window reference number | +| image | Imagem | → | Ícone personalizado | +| file | 4D.File, 4D.Folder | → | Caminho do arquivo ou caminho da pasta | @@ -28,7 +28,7 @@ displayed_sidebar: docs The `SET WINDOW DOCUMENT ICON` command allows you to define an icon for windows in multi-window applications using either an *image* and/or *file* with the window reference *winRef*. The icon will be visible within the window itself and on the windows taskbar to help users identify and navigate different windows. -In the case of an MDI application on Windows, you can pass `-1` in *winRef* to set the icon of the main window. In other contexts (macOS or [SDI application](../Menus/sdi.md) on Windows), using -1 does nothing. +In the case of an MDI application on Windows, you can pass `-1` in *winRef* to set the icon of the main window. Em outros contextos (macOS ou [aplicação SDI](../Menus/sdi.md) no Windows), usar -1 não faz nada. - If only *file* is passed, the window uses the icon corresponding to the file type and the file’s path is displayed in the window’s menu. - If only *image* is passed, 4D does not show the path and the passed image is used for the window icon. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/smtp-new-transporter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/smtp-new-transporter.md index 51b00bad40e40a..0408e72c095299 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/smtp-new-transporter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/smtp-new-transporter.md @@ -11,7 +11,7 @@ displayed_sidebar: docs | Parâmetro | Tipo | | Descrição | | --------- | ---------------------------------- | - | --------------------------------------------------------------------------------- | | server | Object | → | Informação de servidor de correio | -| Resultado | 4D.SMTPTransporter | ← | [SMTP transporter object](../API/SMTPTransporterClass.md#smtp-transporter-object) | +| Resultado | 4D.SMTPTransporter | ← | [Objeto SMTP transporter](../API/SMTPTransporterClass.md#smtp-transporter-object) | @@ -29,7 +29,7 @@ displayed_sidebar: docs The `SMTP New transporter` command configures a new SMTP connection according to the *server* parameter and returns a new [SMTP transporter object](../API/SMTPTransporterClass.md#smtp-transporter-object) object. O objecto transportador devolvido será então normalmente utilizado para enviar mensagens de correio electrónico. -> Este comando não abre qualquer ligação com o servidor SMTP. The SMTP connection is actually opened when the [`.send()`](../API/SMTPTransporterClass.md#send) function is executed. +> Este comando não abre qualquer ligação com o servidor SMTP. A conexão SMTP é realmente aberta quando a função [`.send()`](../API/SMTPTransporterClass.md#send) é executada. > > A coleção SMTP é automaticamente fechada: > @@ -38,21 +38,21 @@ The `SMTP New transporter` command ](../API/SMTPTransporterClass.md#acceptunsecureconnection)
    | False | -| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Not returned in *[SMTP transporter](../API/SMTPTransporterClass.md#smtp-transporter-object)* object. | nenhum | -| [](../API/SMTPTransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | -| [](../API/SMTPTransporterClass.md#bodycharset)
    | `mail mode UTF8` (US-ASCII_UTF8_QP) | -| [](../API/SMTPTransporterClass.md#connectiontimeout)
    | 30 | -| [](../API/SMTPTransporterClass.md#headercharset)
    | `mail mode UTF8` (US-ASCII_UTF8_QP) | -| [](../API/SMTPTransporterClass.md#host)
    | *mandatory* | -| [](../API/SMTPTransporterClass.md#keepalive)
    | True | -| [](../API/SMTPTransporterClass.md#logfile)
    | nenhum | -| **password** : Text
    Senha do usuário para autenticação no servidor. Not returned in *[SMTP transporter](../API/SMTPTransporterClass.md#smtp-transporter-object)* object. | nenhum | -| [](../API/SMTPTransporterClass.md#port)
    | 587 | -| [](../API/SMTPTransporterClass.md#sendtimeout)
    | 100 | -| [](../API/SMTPTransporterClass.md#user)
    | nenhum | +| *server* | Valor padrão (se omitido) | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ | +| [](../API/SMTPTransporterClass.md#acceptunsecureconnection)
    | False | +| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Não retornado no objeto *[SMTP transporter](../API/SMTPTransporterClass.md#smtp-transporter-object)*. | nenhum | +| [](../API/SMTPTransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | +| [](../API/SMTPTransporterClass.md#bodycharset)
    | `mail mode UTF8` (US-ASCII_UTF8_QP) | +| [](../API/SMTPTransporterClass.md#connectiontimeout)
    | 30 | +| [](../API/SMTPTransporterClass.md#headercharset)
    | `mail mode UTF8` (US-ASCII_UTF8_QP) | +| [](../API/SMTPTransporterClass.md#host)
    | *mandatory* | +| [](../API/SMTPTransporterClass.md#keepalive)
    | True | +| [](../API/SMTPTransporterClass.md#logfile)
    | nenhum | +| **password** : Text
    Senha do usuário para autenticação no servidor. Não retornado no objeto *[SMTP transporter](../API/SMTPTransporterClass.md#smtp-transporter-object)*. | nenhum | +| [](../API/SMTPTransporterClass.md#port)
    | 587 | +| [](../API/SMTPTransporterClass.md#sendtimeout)
    | 100 | +| [](../API/SMTPTransporterClass.md#user)
    | nenhum | #### Resultados diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/web-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/web-server.md index c0007c93c827ec..f9eddb46396618 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/web-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/web-server.md @@ -35,7 +35,7 @@ By default, if the *option* parameter is omitted, the command returns a referenc | Parâmetros | Valor | Comentário | | -------------------------------------------- | ----- | ------------------------------------------------------------------------------ | | `Web server database` | 1 | Servidor Web de banco de dados atual (padrão caso omitido) | -| `.keepSession` | 2 | Servidor Web do banco de dados de host de um componente | +| Parâmetros | 2 | Servidor Web do banco de dados de host de um componente | | `Solicitação de recebimento do servidor web` | 3 | Servidor web que recebeu o pedido (servidor Web de destino) | The **returned Web server object** contains the current values of the [Web server properties](../API/WebServerClass.md). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/zip-read-archive.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/zip-read-archive.md index d1dc9f2c6a6a0c..46bd4ce70e772c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/zip-read-archive.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/zip-read-archive.md @@ -36,7 +36,7 @@ If the *zipFile* is password protected, you need to use the optional *password* **Objeto arquivo** -The returned `4D.ZipArchive` object contains a single [`root`](../API/ZipArchiveClass.md#root) property whose value is a `4D.ZipFolder` object. Esta pasta descreve todo o conteúdo do ficheiro ZIP. +O objeto `4D.ZipArchive` retornado contém uma única propriedade [`root`](../API/ZipArchiveClass.md#root) cujo valor é um objeto `4D.ZipFolder`. Esta pasta descreve todo o conteúdo do ficheiro ZIP. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/settings/client-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/settings/client-server.md index bbf2048b461185..c4a6a2cfaa3f44 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/settings/client-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/settings/client-server.md @@ -13,8 +13,8 @@ As páginas Cliente-servidor agrupam parâmetros relacionados ao uso do banco de Essa opção permite que você indique se o banco de dados do 4D Server aparecerá ou não na lista de bancos de dados publicados. -- Cuando esta opción está marcada (por defecto), la base de datos se hace pública y aparece en la lista de bases de datos publicadas (pestaña**Disponible**). -- Quando a opção não estiver marcada, o banco de dados não será tornado público e não aparecerá na lista de bancos de dados publicados. Para conectarse, los usuarios deben introducir manualmente la dirección de la base de datos en la pestaña **Personalizada** de la caja de diálogo de conexión. +- When this option is checked (default), the database is made public and appears in the list of published databases (**Available** tab). +- Quando a opção não estiver marcada, o banco de dados não será tornado público e não aparecerá na lista de bancos de dados publicados. To connect, users must manually enter the address of the database on the **Custom** tab of the connection dialog box. :::note @@ -50,7 +50,7 @@ Para actualizar las otras máquinas clientes que no estén conectadas, basta con O 4D Server usa três portas TCP para comunicações entre servidores internos e clientes: - **SQL Server**: 19812 por defecto (puede modificarse a través de la página "SQL/Configuración" de las Preferencias). -- **Servidor de aplicaciones**: 19813 por defecto (puede modificarse a través de la página "Cliente-Servidor/Configuración" de las Preferencias, ver arriba). +- **Application Server**: 19813 by default (can be modified via the "Client-Server/Configuration" page of the Preferences, see above). - **DB4D Server** (servidor de banco de dados): 19814 por padrão. This port number cannot be modified directly but it always consists of the application server port number + 1.\ When a 4D client connects to 4D Server, it uses the TCP port of the application server (19813 or the port indicated after the colon ':' in the IP address shown in the connection dialog box). Connection to other servers via their respective ports is then automatic; it is no longer necessary to specify them.\ Note that in the case of access via a router or a firewall, the three TCP ports must be opened explicitly. @@ -66,9 +66,9 @@ Quando o Single Sign On (SSO) estiver ativado (veja acima), você deverá preenc #### Camada de rede -Esta caja desplegable contiene 3 opciones de capa de red a elegir entre: **legacy**, **ServerNet** y **QUIC** (sólo en modo proyecto), que se utilizan para manejar las comunicaciones entre 4D Server y las máquinas 4D remotas (clientes). +This drop-down box contains 3 network layer options to choose between: **legacy**, **ServerNet** and **QUIC** (only in project mode), which are used to handle communications between 4D Server and remote 4D machines (clients). -- **Legal**: esta antigua capa de red "Legal" sigue siendo soportada para garantizar la compatibilidad de las bases de datos creadas antes de la v15. Esta capa de red también puede habilitarse por programación utilizando el comando [SET DATABASE PARAMETER](https://doc.4d.com/4Dv20/help/command/page642.html). +- **Legacy**: This former "legacy" network layer is still supported in order to ensure compatibility for databases created prior to v15. This network layer can also be enabled by programming using the [SET DATABASE PARAMETER](https://doc.4d.com/4Dv20/help/command/page642.html) command. - **ServerNet** (por padrão): ativa a camada de rede ServerNet no servidor (disponível desde 4D v15). - **QUIC** (disponible solo en modo proyecto): activa la capa de red QUIC en el servidor. @@ -80,9 +80,9 @@ Esta caja desplegable contiene 3 opciones de capa de red a elegir entre: **legac - O QUIC liga-se automaticamente à porta 19813 tanto para o servidor de aplicações como para o servidor DB4D. - Quando a opção de camada QUIC é selecionada: - Uma mensagem beta e um ícone de alerta são exibidos perto do seletor. - - [los parámetros del tiempo de espera de las conexiones cliente-servidor](#Client-Server-Connections-Timeout) están ocultos - - La casilla de verificación [Encriptar comunicación Cliente-Servidor](#Encrypt-Client-Server-Communications) está oculta (las comunicaciones QUIC son siempre en TLS, sea cual sea su modo seguro). - - **Compatibilidad**: necesita desplegar sus aplicaciones cliente/servidor con 4D v20 o superior antes de cambiar a la capa de red QUIC. + - [Client-server Connections Timeout settings](#Client-Server-Connections-Timeout) are hidden + - The [Encrypt Client-Server communication checkbox](#Encrypt-Client-Server-Communications) is hidden (QUIC communications are always in TLS, whatever your secured mode is.). + - **Compatibility**: You need to deploy your client/server applications with 4D v20 or higher before switching to the QUIC network layer. :::note @@ -100,7 +100,7 @@ Quando um tempo limite for selecionado, o servidor fechará a conexão de um cli #### Registrar clientes na inicialização para Execute On Client -Quando essa opção estiver marcada, todas as máquinas remotas 4D conectando à base de dados podem executar os métodos remotamente. Este mecanismo se detalla en la sección [Procedimientos almacenados en las máquinas cliente](https://doc.4d.com/4Dv19/4D/19/Stored-procedures-on-client-machines.300-5422461.en.html). +Quando essa opção estiver marcada, todas as máquinas remotas 4D conectando à base de dados podem executar os métodos remotamente. This mechanism is detailed in the section [Stored procedures on client machines](https://doc.4d.com/4Dv19/4D/19/Stored-procedures-on-client-machines.300-5422461.en.html). #### Encriptar as comunicações cliente-servidor @@ -110,10 +110,10 @@ Essa opção permite que você ative o modo seguro para comunicações entre a m This setting can be used to globally set the updating mode for the local instance of the **Resources** folder on the connected 4D machines when the **Resources** folder of the database is modified during the session (the **Resources** folder is automatically synchronized on the remote machine each time a session is opened). Estão disponíveis três parâmetros: -- **Nunca**: la carpeta local **Resources** no se actualiza durante la sesión. A notificação enviada pelo servidor é ignorada. La carpeta **Resources** local puede actualizarse manualmente mediante el comando **Update Local Resources** del menú de acción (ver [Uso del explorador de recursos](https://doc.4d.com/4Dv19/4D/19/Using-the-Resources-explorer.300-5416788.en.html)). -- **Siempre**: la sincronización de la carpeta local **Resources** se realiza automáticamente durante la sesión cada vez que el servidor envía una notificación. -- **Preguntar**: cuando la notificación es enviada por el servidor, se muestra una caja de diálogo en las máquinas cliente, indicando la modificación. The user can then accept or refuse the synchronization of the local **Resources** folder.\ - The **Resources** folder centralizes the custom files required for the database interface (translation files, pictures, etc.). Mecanismos automáticos ou manuais podem ser usados para notificar cada cliente quando o conteúdo dessa pasta tiver sido modificado. Para más información, consulte la sección [Gestión de la carpeta Resources](https://doc.4d.com/4Dv19/4D/19/Managing-the-Resources-folder.300-5422466.en.html). +- **Never**: The local **Resources** folder is not updated during the session. A notificação enviada pelo servidor é ignorada. The local **Resources** folder may be updated manually using the **Update Local Resources** action menu command (see [Using the Resources explorer](https://doc.4d.com/4Dv19/4D/19/Using-the-Resources-explorer.300-5416788.en.html)). +- **Always**: The synchronization of the local **Resources** folder is automatically carried out during the session whenever notification is sent by the server. +- **Ask**: When the notification is sent by the server, a dialog box is displayed on the client machines, indicating the modification. The user can then accept or refuse the synchronization of the local **Resources** folder.\ + The **Resources** folder centralizes the custom files required for the database interface (translation files, pictures, etc.). Mecanismos automáticos ou manuais podem ser usados para notificar cada cliente quando o conteúdo dessa pasta tiver sido modificado. For more information, please refer to the [Managing the Resources folder](https://doc.4d.com/4Dv19/4D/19/Managing-the-Resources-folder.300-5422466.en.html) section. ## Página Configuração IP @@ -125,7 +125,7 @@ Essa tabela permite definir regras de controle de acesso para o banco de dados, O comportamento da tabela de configuração é o seguinte: -- A coluna "Allow-Deny" permite selecionar o tipo de regra a ser aplicada (Allow ou Deny) usando um menu pop-up. Para adicionar uma regra, clique no botão Adicionar. Aparece uma nova linha na tabela. El botón **Borrar** permite eliminar la línea actual. +- A coluna "Allow-Deny" permite selecionar o tipo de regra a ser aplicada (Allow ou Deny) usando um menu pop-up. Para adicionar uma regra, clique no botão Adicionar. Aparece uma nova linha na tabela. The **Delete** button lets you remove the current row. - A coluna "IP Address" (Endereço IP) permite definir o(s) endereço(s) IP afetado(s) pela regra. Para especificar um endereço, clique na coluna e digite o endereço da seguinte forma: 123.45.67.89 (formato IPv4) ou 2001:0DB8:0000:85A3:0000:0000:AC1F:8001 (formato IPv6). Você pode usar um caractere \* (asterisco) para especificar endereços do tipo "começa com". Por exemplo, 192.168.\* indica todos os endereços que começam com 192.168. - A aplicação das regras é baseada na ordem de exibição da tabela. Se duas regras forem contraditórias, a prioridade será dada à regra localizada na parte mais alta da tabela. Você pode reordenar as linhas modificando a classificação atual (clique no cabeçalho da coluna para alternar a direção da classificação). Você também pode mover as linhas usando o recurso de arrastar e soltar. - Por motivos de segurança, somente os endereços que realmente correspondem a uma regra terão permissão para se conectar. Em outras palavras, se a tabela contiver apenas uma ou mais regras Deny, todos os endereços serão recusados porque nenhum corresponderá a pelo menos uma regra. Se você quiser negar apenas determinados endereços (e permitir outros), adicione uma regra Allow \* no final da tabela. Por exemplo: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/Backup/log.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/Backup/log.md index 025aa9ca485833..80dbc686f631a1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/Backup/log.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/Backup/log.md @@ -3,7 +3,7 @@ id: log title: Arquivo de Log (.journal) --- -A continuously-used database is always record changes, additions or deletions. Realizar backups ou cópias de segurança regularmente é importante mas lembre que não permite (em caso de problemas) restaurar os dados registrados depois do último backup. Para responder à essa necessidade, 4D oferece agora uma ferramenta específica: o arquivo de log. Este arquivo permite garantir a segurança permanente dos dados do banco de dados. Este ficheiro permite garantir a segurança permanente dos dados do banco de dados. +Um banco de dados de uso contínuo sempre registra alterações, adições ou exclusões. Realizar backups ou cópias de segurança regularmente é importante mas lembre que não permite (em caso de problemas) restaurar os dados registrados depois do último backup. Para responder à essa necessidade, 4D oferece agora uma ferramenta específica: o arquivo de log. Este arquivo permite garantir a segurança permanente dos dados do banco de dados. Este ficheiro permite garantir a segurança permanente dos dados do banco de dados. Além disso, 4D trabalha constantemente com dados cache em memória. Todas as mudanças realizadas nos dados do banco de dados são armazenados temporariamente na cache antes de serem escritas no disco duro. Isso acelera a operação das aplicações; na verdade, acessar a memória é mais rápido que acessar o disco rígido. Se acontecer algo no banco de dados antes que armazenagem dos dados na cache possa ser gravada no disco duro, precisa incluir o arquivo de histórico atual para poder restaurar o banco de dados por completo. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/Backup/settings.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/Backup/settings.md index f8bc6bac4b3cb0..8791056f19fb86 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/Backup/settings.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/Backup/settings.md @@ -118,7 +118,7 @@ Essas opções se aplicam aos arquivos de cópia de segurança principais e aos > No caso de uma restauração automática, somente o arquivo de dados é restaurado. Caso deseje obter os arquivos anexados ou os arquivos do projeto, você deve executar uma restauração manual. - **Integrar o último arquivo de log se o banco de dados estiver incompleto**: quando esta opção estiver marcada, o programa integra automaticamente o arquivo de log ao abrir ou restaurar o banco de dados. - - When opening a database, the current log file is automatically integrated if 4D detects that there are operations stored in the log file that are not present in the data. This situation arises, for example, if a power outage occurs when there are operations in the data cache that have not yet been written to the disk. - - When restoring a database, if the current log file or a log backup file having the same number as the backup file is stored in the same folder, 4D examines its contents. If it contains operations not found in the data file, the program automatically integrates it. + - Ao abrir um banco de dados, o arquivo de registro atual é automaticamente integrado se 4D detectar haver operações armazenadas no arquivo de registro que não estão presentes nos dados. Essa situação ocorre, por exemplo, se houver uma queda de energia quando houver operações no cache de dados que ainda não tenham sido gravadas no disco. + - Ao restaurar um banco de dados, se o arquivo de registro atual ou um arquivo de backup de registro com o mesmo número que o arquivo de backup estiver armazenado na mesma pasta, 4D examina seu conteúdo. Se ele contiver operações não encontradas no arquivo de dados, o programa o integrará automaticamente. O usuário não vê uma caixa de diálogo, a operação é automática. O objetivo é fazer com que seja tão fácil quanto possível. A operação é registrada no diário de cópias de backup. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/about.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/about.md index fa6efb70ca2c1b..b478213366485a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/about.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/about.md @@ -3,7 +3,7 @@ id: about title: Sobre a linguagem 4D --- -The 4D built-in language, consisting of more than 1300 commands, makes 4D a powerful development tool for database applications on desktop computers. Pode usar a linguagem 4D para muitas tarefas diferentes, desde a realização de cálculos simples até a criação de interfaces complexas de usuário personalizadas. Por exemplo é possível: +A linguagem integrada de 4D, que consiste em mais de 1.300 comandos, faz de 4D uma ferramenta de desenvolvimento poderosa para aplicações de banco de dados em computadores desktop. Pode usar a linguagem 4D para muitas tarefas diferentes, desde a realização de cálculos simples até a criação de interfaces complexas de usuário personalizadas. Por exemplo é possível: - Acessar por programação qualquer dos editores de gestão de registros (ordenar por, pesquisar, etc), - Criar e imprimir relatórios complexos ou etiquetas com a informação do banco de dados, @@ -13,12 +13,12 @@ The 4D built-in language, consisting of more than 1300 commands, makes 4D a powe - Importação e exportação de dados entre bancos de dados 4D e outras aplicações, - incorporar procedimentos escritos em outras linguagens na linguagem de programação 4D -A flexibilidade e poder da lnguagem de programação 4D faz com que seja ferramenta ideal para todos os níveis de usuários e desenvolvedores oferecendo uma completa gama de tarefas de gestão da informação. Os usuários principiantes podem realizar rapidamente os cálculos. Experienced users without programming experience can customize their databases. Experienced developers can use this powerful programming language to add sophisticated features and capabilities to their databases, including file transfer, communications, monitoring. Os desenvolvedores com experiência em programação em outras linguagens podem adicionar seus próprios comandos à linguagem 4D. +A flexibilidade e poder da lnguagem de programação 4D faz com que seja ferramenta ideal para todos os níveis de usuários e desenvolvedores oferecendo uma completa gama de tarefas de gestão da informação. Os usuários principiantes podem realizar rapidamente os cálculos. Os usuários mais experientes podem personalizar seus bancos de dados mesmo sem saber programação. Desenvolvedores com experiência podem usar essa linguagem de programação poderosa para adicionar funcionalidades sofisticadas para seus bancos de dados, inclusive transferência de arquivos, comunicação, monitoramento. Os desenvolvedores com experiência em programação em outras linguagens podem adicionar seus próprios comandos à linguagem 4D. ## O que é uma linguagem? -A linguagem 4D não é muito diferente da linguagem falada usada diariamente. É uma forma de comunicação usada para expressar ideias, informar e instruir. Like a spoken language, 4D has its own vocabulary, grammar, and syntax; you use it to tell 4D how to manage your database and data. +A linguagem 4D não é muito diferente da linguagem falada usada diariamente. É uma forma de comunicação usada para expressar ideias, informar e instruir. Como em uma linguagem falada, 4D tem seu vocabulário, gramática e sintaxe; pode usar a linguagem para dizer a 4D como gerenciar seus dados e seu banco de dados. Não precisa saber tudo sobre a linguagem para começar a trabalhar com 4D de forma efetiva. Da mesma forma que para falar você não precisa saber tudo sobre sua língua; na verdade, é possível ter um vocabulário pequeno e ainda ser bem eloquente. A linguagem 4D é mais ou menos a mesma coisa - precisa saber apenas uma pequena parte da linguagem para ser produtivo, e pode aprender o resto quando tiver necessidade. @@ -32,14 +32,14 @@ Então para que é necessário uma linguagem 4D? Aqui estão alguns usos: - Controle a interface de usuário: pode gerenciar as janelas e os menus, e controlar os formulários e os objetos da interface. - Realizar uma gestão de dados sofisticada: essas tarefas incluem processamento de transação, validação de dados complexos, gerenciamento multiusuário, e operações de seleção temporárias. - Controle o computador: pode controlar as comunicações de portos seriais, a gestão de documentos e a gestão de erros. -- Create applications: You can create easy-to-use, customized databases that run in the Application environment. +- Crie aplicações: você pode criar bancos de dados personalizados executados no ambiente Aplicação. - Adicionar funcionalidade ao servidor integrado web 4D: construir e atualizar páginas web dinâmicas preenchidas com seus dados. -The language lets you take complete control over the design and operation of your database. 4D provides powerful “generic” editors, but the language lets you customize your database to whatever degree you require. +A linguagem lhe dá controle total sobre o design e operação de seu banco de dados. 4D fornece editores "genéricos", mas a linguagem permite que personalize seu banco de dados para qualquer grau necessário. ## Tomar o controle de seus dados -A linguagem 4D lhe permite tomar o controle total de seus dados de uma maneira poderosa e elegante. A linguagem é fácil o suficiente para os iniciantes e sofisticada o bastante para os desenvolvedores com experiência. It provides smooth transitions from built-in database functions to a completely customized database. +A linguagem 4D lhe permite tomar o controle total de seus dados de uma maneira poderosa e elegante. A linguagem é fácil o suficiente para os iniciantes e sofisticada o bastante para os desenvolvedores com experiência. Fornece transições suaves desde as funções do banco de dados integradas até ter um banco de dados completamente personalizado. Os comandos da linguagem 4D oferecem acesso aos editores padrão de gestão de registros. Por exemplo, quando usar o comando, é apresentado o Editor de Consultas (ao qual se pode acessar no modo Desenho, usando o comando Query do menu Registros). Pode dizer ao comando para pesquisar por dados descritos explicitamente. Por exemplo, ([People];[People]Last Name="Smith") encontrará todas as pessoas chamadas Smith em seu banco de dados. @@ -55,8 +55,8 @@ Se estiver familiarizado com as linguagens tradicionais de programação, essa s A linguagem 4D não é uma linguagem de programação tradicional. É uma das linguagens mais inovadoras e flexíveis do momento. Foi criada para adaptar-se a você e não o contrário. -Para usar linguagens tradicionais, é preciso preparação ampla. De fato, planejamento é um dos principais passos de desenvolvimento. 4D allows you to start using the language at any time and in any part of your database. Pode começar adicionando um método para um formulário depois adicionar um ou mais métodos. As your database becomes more sophisticated, you might add a project method controlled by a menu. Pode usar o quanto quiser da linguagem. Não é algo "tudo ou nada", como é o caso em vários bancos de dados. +Para usar linguagens tradicionais, é preciso preparação ampla. De fato, planejamento é um dos principais passos de desenvolvimento. 4D deixa que você comece a usar a linguagem a qualquer momento e em qualquer parte do banco de dados. Pode começar adicionando um método para um formulário depois adicionar um ou mais métodos. A medida em que seu banco de dados ficar mais sofisticado, pode adicionar um método de projeto controlado por um menu. Pode usar o quanto quiser da linguagem. Não é algo "tudo ou nada", como é o caso em vários bancos de dados. -Traditional languages force you to define and pre-declare objects in formal syntactic terms. Em 4D simplesmente se pode criar um objeto, como um botão, e usá-lo. 4D automaticamente gerencia o objeto para você. Por exemplo, para usar um botão, o desenha em um formulário e lhe dá um nome. Quando o usuário clicar no botão, a linguagem notifica automaticamente a seus métodos. +As linguagens tradicionais forçam você a definir e pré-declarar objetos em termos sintáticos formais. Em 4D simplesmente se pode criar um objeto, como um botão, e usá-lo. 4D automaticamente gerencia o objeto para você. Por exemplo, para usar um botão, o desenha em um formulário e lhe dá um nome. Quando o usuário clicar no botão, a linguagem notifica automaticamente a seus métodos. Linguagens tradicionais geralmente são rígidas e inflexíveis, exigindo que comandos sejam digitados de modo formal e em estilo restritivo. A linguagem 4D rompe com essa tradição para o benefício do usuário. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/arrays.md index 15b8bd6ea46961..7dd49c4a66514e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/arrays.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/arrays.md @@ -152,7 +152,7 @@ Fazer a mesma coisa com arrays seria impossível pelas razões abaixo: - Para manter os quatro tipos de informação (código postal, cidade, região e estado) teria que manter quatro arrays grandes na memória. - Como um array sempre é mantido na memória inteiramente, teria que manter toda a informação de códigos postais na memória durante a sessão inteira, mesmo quando os dados não estivessem sendo usados. -- Again, because an array is always held in memory in its entirety, each time the database is started and then quit, the four arrays would have to be loaded and then saved on the disk, even though the data is not used or modified during the working session. +- De novo, como um array é sempre mantido na memória em sua totalidade, a cada vez que o banco de dados for iniciado, os quatro arrays teriam que ser carregados e então salvos no disco, mesmo se os dados não forem usados ou modificados na sessão de trabalho. **Conclusão:** os arrays estão pensados para manter quantidades razoáveis de dados durante um curto período de tempo. Por outro lado, como os arrays são mantidos na memória, são fáceis de manejar e rápidos de manipular. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/cf_looping.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/cf_looping.md index 3d66dc78565401..6fac5e0dbfc3a4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/cf_looping.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/cf_looping.md @@ -10,7 +10,7 @@ The formal syntax of the `While... End while` control flow structure is: statement(s) End while ``` -A `While...End while` loop executes the statements inside the loop as long as the Boolean expression is TRUE. Comprova a expressão booleana ao início do loop e não entra no loop se a expressão for FALSE. +Um loop `While...End while` executa as declarações no loop enquanto a expressão booleana for TRUE. Comprova a expressão booleana ao início do loop e não entra no loop se a expressão for FALSE. It is common to initialize the value tested in the Boolean expression immediately before entering the `While... End while` loop. Initializing the value means setting it to something appropriate, usually so that the Boolean expression will be TRUE and `While... End while` executes the loop. @@ -42,9 +42,9 @@ The formal syntax of the `Repeat... Until` control flow structure is: statement(s) Until(Boolean_Expression) ``` -A `Repeat...Until` loop is similar to a [While...End while](flow-control#whileend-while) loop, except that it tests the Boolean expression after the loop rather than before. Thus, a `Repeat...Until` loop always executes the loop once, whereas if the Boolean expression is initially False, a `While...End while` loop does not execute the loop at all. +Um ciclo `Repeat...Until` é como um ciclo [While...End while](flow-control#whileend-while), exceto que testa a expressão booleana depois do ciclo e não antes. Assim, um loop `Repeat...Until` sempre executa o loop uma vez, enquanto se a expressão booleana for inicialmente Falsa, um loop `While...End while` não executa o loop de forma alguma. -The other difference with a `Repeat...Until` loop is that the loop continues until the Boolean expression is TRUE. +A outra diferença com um loop `Repeat...Until` é que o loop continua até que a expressão booleana seja TRUE. ### Exemplo Compare the following example with the example for the `While... End while` loop. Lembre que a expressão booleana não precisa ser iniciada - não há um comando `CONFIRM` para inicializar a variável `OK`. @@ -264,7 +264,7 @@ Aqui são dois exemplos: ``` ## For each... End for each -The formal syntax of the `For each...End for each` control flow structure is: +A sintaxe formal da estrutura de controle de fluxo para `For each...End for each` é: ```4d For each(Element_courant;Expression{;debut{;fin}}){Until|While}(Expression_booléenne)} diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/components.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/components.md index 4b6148990ffdf0..caaa4b1ef341ae 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/components.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/components.md @@ -3,50 +3,50 @@ id: components title: Componentes --- -A 4D component is a set of 4D methods and forms representing one or more functionalities that can be installed in different databases. For example, you can develop a 4D e-mail component that manages every aspect of sending, receiving and storing e-mails in 4D databases. +Um componente 4D é um conjunto de métodos e formulários 4D que representam uma ou mais funcionalidades que podem ser instaladas em diferentes bancos de dados. Por exemplo, você pode desenvolver um componente de e-mail 4D que gerencia todos os aspectos de envio, recebimento e armazenamento de e-mails em bancos de dados 4D. -Criar e instalar componentes 4D é realizado diretamente a partir de 4D. Basically, components are managed like [plug-ins](Concepts/plug-ins.md) according to the following principles: +Criar e instalar componentes 4D é realizado diretamente a partir de 4D. Basicamente, os componentes são gerenciados como [plug-ins](Concepts/plug-ins.md) conforme os seguintes princípios: - Um componente consiste em um arquivo de estrutura regular (compilado ou não) que tem a arquitetura padrão ou na forma de um pacote (ver extensão .4dbase). -- To install a component in a database, you simply need to copy it into the "Components" folder of the database, placed next to the structure file or next to the 4D executable application. -- A component can call on most of the 4D elements: project methods, project forms, menu bars, choice lists, pictures from the library, and so on. Não pode chamar métodos de bancos de dados e triggers. +- Para instalar um componente em um banco de dados, basta copiá-lo para a pasta "Components" do banco de dados, colocada ao lado do arquivo de estrutura ou ao lado da aplicação executável 4D. +- Um componente pode chamar a maioria dos elementos 4D: métodos projeto, formulários projeto, barras de menu, listas de opções, imagens da biblioteca e assim por diante. Não pode chamar métodos de bancos de dados e triggers. - Não é possível utilizar tabelas standard ou ficheiros de dados em componentes 4D. Entretanto um componente não pode criar ou usar tabelas, campos e arquivos de dados usando mecanismos de bancos de dados externos. São bancos 4D independentes com as que se trabalha utilizando comandos SQL. ## Definições -The component management mechanisms in 4D require the implementation of the following terms and concepts: +Os mecanismos de gerenciamento de componentes em 4D exigem a implementação dos seguintes termos e conceitos: -- **Matrix Database**: 4D database used for developing the component. O banco de dados matriz é um banco de dados padrão sem atributos específicos. Uma base matriz forma um único componente. A base de dados matrix destina-se a ser copiada, compilada ou não, na pasta Components da aplicação 4D ou do banco de dados que usará o componente (banco de dados de host). -- **Host Database**: Database in which a component is installed and used. -- **Component**: Matrix database, compiled or not, copied into the Components folder of the 4D application or the host database and whose contents are used in the host databases. +- **Banco de dados matriz**: banco de dados 4D usado para desenvolver o componente. O banco de dados matriz é um banco de dados padrão sem atributos específicos. Uma base matriz forma um único componente. A base de dados matrix destina-se a ser copiada, compilada ou não, na pasta Components da aplicação 4D ou do banco de dados que usará o componente (banco de dados de host). +- **Banco de dados do host**: banco de dados onde um componente é instalado e usado. +- **Componente**: banco de dados matriz, compilado ou não, copiado na pasta Components da aplicação 4D ou no banco de dados host e cujo conteúdo é usado nos bancos de dados host. -It should be noted that a database can be both a “matrix” and a “host,” in other words, a matrix database can itself use one or more components. No entanto, um componente não pode utilizar ele próprio "subcomponentes". +Deve-se observar que um banco de dados pode ser tanto uma "matriz" quanto um "host", em outras palavras, um banco de dados matriz pode usar um ou mais componentes. No entanto, um componente não pode utilizar ele próprio "subcomponentes". ### Proteção dos componentes: compilação -By default, all the project methods of a matrix database installed as a component are potentially visible from the host database. Em particular: +Por padrão, todos os métodos projeto de um banco de dados matriz instalado como um componente são potencialmente visíveis no banco de dados host. Em particular: -- The shared project methods are found on the Methods Page of the Explorer and can be called in the methods of the host database. Seu conteúdo pode ser selecionado e copiado na área de vista prévia do Explorador. Também podem ser vistos no depurador. However, it is not possible to open them in the Method editor nor to modify them. -- The other project methods of the matrix database do not appear in the Explorer but they too can be viewed in the debugger of the host database. +- Os métodos projeto compartilhados são encontrados na página de métodos do Explorer e podem ser chamados nos métodos do banco de dados host. Seu conteúdo pode ser selecionado e copiado na área de vista prévia do Explorador. Também podem ser vistos no depurador. No entanto, não é possível abri-los no editor de métodos nem modificá-los. +- Os outros métodos de projeto do banco de dados matriz não aparecem no Explorer, mas também podem ser visualizados no depurador do banco de dados host. Para proteger os métodos projeto de um componente de forma eficaz, basta compilar a base de dados matrix e fornecê-la na forma de um arquivo .4dc (banco de dados compilado que não contém o código interpretado). Quando um banco de dados matriz compilado é instalado como um componente: -- The shared project methods are shown on the Methods Page of the Explorer and can be called in the methods of the host database. However, their contents will not appear in the preview area nor in the debugger. +- Os métodos projeto compartilhados são mostrados na página de métodos do Explorer e podem ser chamados nos métodos do banco de dados host. No entanto, seu conteúdo não aparecerá na área de visualização nem no depurador. - Os outros métodos projeto do banco de dados de matriz nunca aparecerão. ## Partilhar os métodos de projeto Todos os métodos projeto de um banco de dados matrix são, por definição, incluídos no componente (o banco de dados é o componente), que significa que eles podem ser chamados e executados pelo componente. -On the other hand, by default these project methods will not be visible, nor can they be called in the host database. In the matrix database, you must explicitly designate the methods that you want to share with the host database. Esses métodos projeto podem ser chamados no código do banco de dados host (mas eles não podem ser modificados no editor de métodos da base de dados host). Esses métodos formam **pontos de entrada** no componente. +Por outro lado, por padrão, esses métodos projeto não serão visíveis nem poderão ser chamados no banco de dados host. No banco de dados matriz, você deve designar explicitamente os métodos que deseja compartilhar com o banco de dados host. Esses métodos projeto podem ser chamados no código do banco de dados host (mas eles não podem ser modificados no editor de métodos da base de dados host). Esses métodos formam **pontos de entrada** no componente. -**Note:** Conversely, for security reasons, by default a component cannot execute project methods belonging to the host database. In certain cases, you may need to allow a component to access the project methods of your host database. To do this, you must explicitly designate the project methods of the host database that you want to make accessible to the components. +**Nota:** por razões de segurança, por padrão um componente não pode executar métodos projeto pertencentes ao banco de dados host. Em alguns casos, talvez seja necessário permitir que um componente acesse os métodos de projeto do seu banco de dados host. Para fazer isso, você deve designar explicitamente os métodos de projeto do banco de dados host que deseja tornar acessíveis aos componentes. ![](../assets/en/Concepts/pict516563.en.png) ## Passar variáveis -The local, process and interprocess variables are not shared between components and host databases. The only way to access component variables from the host database and vice versa is using pointers. +As variáveis locais, de processo e interprocessos não são compartilhadas entre componentes e bancos de dados host. A única maneira de acessar variáveis de componentes do banco de dados host e vice-versa é usando ponteiros. Exemplo usando um array: @@ -68,9 +68,9 @@ Exemplos usando variáveis: $p:=component_method2(...) ``` -When you use pointers to allow components and the host database to communicate, you need to take the following specificities into account: +Quando você usa ponteiros para permitir que os componentes e o banco de dados host se comuniquem, é necessário considerar as seguintes especificidades: -- The `Get pointer` command will not return a pointer to a variable of the host database if it is called from a component and vice versa. +- O comando `Get pointer` não retornará um ponteiro para uma variável do banco de dados host se for chamado de um componente e vice-versa. - A arquitetura de componentes permite a coexistência, no mesmo banco de dados interpretado, de componentes interpretados e compilados (por outro lado, somente componentes compilados podem ser usados em um banco de dados compilado). Para utilizar apontadores neste caso, deve respeitar o seguinte princípio: o intérprete pode desconectar um ponteiro construído em modo compilado; no entanto, em modo compilado, não pode deconectar um ponteiro construído em modo interpretado. Vamos ilustrar esse princípio com o seguinte exemplo: dados dois componentes, C (compilados) e eu (interpretados), instalados no mesmo banco de dados host. - Se o componente C definir a variável `myCvar` , o componente I pode acessar ao valor desta variável utilizando o ponteiro `->myCvar`. @@ -93,7 +93,7 @@ Neste caso é preciso usar a comparação de ponteiros: ## Acesso a tabelas do banco de dados local -Although components cannot use tables, pointers can permit host databases and components to communicate with each other. Por exemplo, aqui está um método que pode ser chamado a partir de um componente: +Embora os componentes não possam usar tabelas, os ponteiros podem permitir que os bancos de dados host e os componentes se comuniquem entre si. Por exemplo, aqui está um método que pode ser chamado a partir de um componente: ```4d // chamar a um método componente @@ -119,9 +119,9 @@ SAVE RECORD($tablepointer->) Exceto pelos [Comandos não utilizáveis](#unusable-commands), um componente não pode usar qualquer comando da linguagem 4D. -When commands are called from a component, they are executed in the context of the component, except for the `EXECUTE METHOD` command that uses the context of the method specified by the command. Observe também que os comandos de leitura do tema "Usuários e grupos" podem ser usados a partir de um componente, mas lerão os usuários e grupos do banco de dados host (um componente não tem seus próprios usuários e grupos). +Quando os comandos são chamados de um componente, eles são executados no contexto do componente, exceto pelo comando `EXECUTE METHOD`, que usa o contexto do método especificado pelo comando. Observe também que os comandos de leitura do tema "Usuários e grupos" podem ser usados a partir de um componente, mas lerão os usuários e grupos do banco de dados host (um componente não tem seus próprios usuários e grupos). -The `SET DATABASE PARAMETER` and `Get database parameter` commands are an exception: their scope is global to the database. Quando esses comandos são chamados de um componente, eles são aplicados ao banco de dados host. +Os comandos `SET DATABASE PARAMETER` e `Get database parameter` são uma exceção: seu alcance é global para o banco de dados. Quando esses comandos são chamados de um componente, eles são aplicados ao banco de dados host. Além disso, medidas especificas foram criadas para os comandos `Structure file` e `Get 4D folder` quando utilizados no marco dos componentes. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/dt_time.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/dt_time.md index 206182d66b408b..eecbea21ca18fe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/dt_time.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/dt_time.md @@ -7,7 +7,7 @@ title: Hora - As horas são em formato de 24 horas. - Um valor de Hora pode ser tratado como um número. O número retornado de uma Hora será o número de segundos desde a maia noite (00:00:00) contidos nesse valor de hora. -**Note:** In the 4D Language Reference manual, Time parameters in command descriptions are denoted as Time, except when marked otherwise. +**Nota:** no manual de referência da linguagem 4D, os parâmetros de tipo Hora nas descrições dos comandos são chamados Hora, exceto quando for indicado o contrário. ## Constantes literais de tipo hora @@ -25,7 +25,7 @@ Aqui são exemplos de constantes de tipo hora: Uma hora nula se escreve ?00:00:00? -**Tip:** The Method Editor includes a shortcut for entering a null time. Para escrever uma hora nula, introduza o sinal de interrogação (?) e aperte Enter. +**Dica:** o editor de métodos inclui um acesso direto para introduzir uma hora nula. Para escrever uma hora nula, introduza o sinal de interrogação (?) e aperte Enter. ## Operadores de horas @@ -33,7 +33,7 @@ Uma hora nula se escreve ?00:00:00? | -------------------- | -------------- | ---------- | ----------------------- | ---------- | | Adição | Hora + Hora | Hora | ?02:03:04? + ?01:02:03? | ?03:05:07? | | Subtração | Hora – Hora | Hora | ?02:03:04? ?02:03:04? | ?01:01:01? | -| Adição | Hora + Número | Number | ?02:03:04? ?01:02:03? | 7449 | +| Adição | Hora + Número | Number | ?02:03:04? ?02:03:04? | 7449 | | Subtração | Hora – Número | Number | ?02:03:04? ?02:03:04? | 7319 | | Multiplicação | Hora * Número | Number | ?02:03:04? ?02:03:04? | 14768 | | Divisão | Hora / Número | Number | ?02:03:04? ?02:03:04? | 3692 | @@ -80,6 +80,7 @@ O operador Modulo pode ser usado, mais concretamente, para somar tempos que cons ```4d $t1:=?23:00:00? // São 23:00 p.m. + // São 23:00 p.m. // Queremos adicionar 2 horas e meia $t2:=$t1 +?02:30:00? // Com uma simples adição, $t2 é?25:30:00? $t2:=($t1 +?02:30:00?)%?24:00:00? // $t2 é ?01:30:00? e é 1:30 da manhã. na manhã seguinte diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/error-handling.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/error-handling.md index 9e7eb5f47735ad..7ae7fd4d8f1b2c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/error-handling.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/error-handling.md @@ -9,19 +9,19 @@ Manejo de erros responde à duas necessidades principais: - descobrir e consertar erros potenciais e bugs no código durante a fase de desenvolvimento, - detectar e recuperar de erros inesperados nas aplicações implementadas; em particular pode substituir diálogos de erros de sistemas (disco cheio, arquivo faltando, etc) com sua própria interface. -> It is highly recommended to install an error-handling method on 4D Server, for all code running on the server. This method would avoid unexpected dialog boxes to be displayed on the server machine, and could log errors in a dedicated file for further analyses. +> > > > É recomendado instalar um método de gerenciamento de erros em 4D Server, para todos os códigos rodando no servidor. Esse método evitaria a exibição de caixas de diálogo inesperadas no computador do servidor e poderia registrar os erros em um arquivo dedicado para análises posteriores. ## Instalação de um método de gestão de erros -In 4D, all errors can be catched and handled in a specific project method, the **error-handling** (or **error-catching**) method. +Em 4D, todos os erros podem ser capturados e tratados em um método de projeto específico, o método **de tratamento de erros** (ou **captura de erros**). -This project method is installed for the current process and will be automatically called for any error that occurs in the process, in interpreted or compiled mode. To *install* this project method, you just need to call the `ON ERR CALL` command with the project method name as parameter. Por exemplo: +Esse método de projeto é instalado para o processo atual e será chamado automaticamente para qualquer erro que ocorra no processo, no modo interpretado ou compilado. Para *instalar* esse método projeto, você só precisa chamar o comando `ON ERR CALL` com o nome do método projeto como parâmetro. Por exemplo: ```4d ON ERR CALL("IO_ERRORS") //Instala o método de tratamento de erros ``` -To stop catching errors and give back hand to 4D, call `ON ERR CALL` with an empty string: +Para parar de capturar erros e devolver a mão ao 4D, chame `ON ERR CALL` com uma string vazia: ```4d ON ERR CALL("") //devolve o controlo a 4D ``` @@ -30,9 +30,9 @@ ON ERR CALL("") //devolve o controlo a 4D Pode definir um único método de captura de erros para toda a aplicação ou diferentes métodos por módulo de aplicação. No entanto, somente um método pode ser instalado por processo. -An error-handling method installed by the `ON ERR CALL` command only applies to the running database. In the case of an error generated by a **component**, the `ON ERR CALL` error-handling method of the host database is not called, and vice versa. +Um método de tratamento de erros instalado pelo comando `ON ERR CALL` só se aplica ao banco de dados em execução. No caso de um erro gerado por um **componente**, o método de tratamento de erros `ON ERR CALL` do banco de dados host não é chamado, e vice-versa. -The `Method called on error` command allows to know the name of the method installed by `ON ERR CALL` for the current process. It is particularly useful in the context of components because it enables you to temporarily change and then restore the host database error-catching method: +O comando `Method called on error` permite saber o nome do método instalado por `ON ERR CALL` para o processo atual. É particularmente útil no contexto de componentes, pois permite que você altere temporariamente e depois restaure o método de captura de erros do banco de dados host: ```4d $methCurrent:=Method called on error @@ -46,16 +46,16 @@ The `Method called on error` command allows to know the name of the method inst ### Manejo de erros dentro do método -Within the custom error method, you have access to several information that will help you identifying the error: +No método de erro personalizado, você tem acesso a várias informações que ajudarão você a identificar o erro: -- 4D automatically maintains a number of variables called **system variables**, meeting different needs (see the *4D Language Reference manual*): +- 4D mantém automaticamente uma série de variáveis chamadas **variáveis sistema**, respondendo a diferentes necessidades (veja o manual *Linguagem 4D*): - `Error` (inteiro longo): código de erro - `Error method`(texto): nome do método que provocou o erro - `Error line` (entero largo): número de línea do método que provocou o erro - `Error formula` (text): fórmula do código 4D (texto bruto) que está na origem do erro. -- the `GET LAST ERROR STACK` command that returns information about the current stack of errors of the 4D application. +- o comando `GET LAST ERROR STACK` que retorna informações sobre a pilha de erros atual da aplicação 4D. - o comando `Get call chain` que devolve uma coleção de objetos que descrevem cada passo da string de chamadas a métodos dentro do processo atual. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/flow-control.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/flow-control.md index 04b4f2c226deab..aa2b3cbb1e8000 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/flow-control.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/flow-control.md @@ -3,14 +3,14 @@ id: control-flow title: Visão geral do fluxo de controle --- -Regardless of the simplicity or complexity of a method, you will always use one or more of three types of programming structures. As estruturas de programação determinam o fluxo de execução, se serão executadas, e a ordem das linhas de instruções dentro do método. Há três tipos de estruturas: +Independentemente da simplicidade ou da complexidade de um método, sempre utilizará um ou vários dos três tipos de estruturas de programação. As estruturas de programação determinam o fluxo de execução, se serão executadas, e a ordem das linhas de instruções dentro do método. Há três tipos de estruturas: - **Sequencial**: uma estrutura sequencial é uma estrutura simples e linear. Uma sequência é uma série de sentenças que 4D executa uma atrás da outra, da primera à última. Uma instrução de uma linha, utilizada frequentemente para os métodos dos objetos, é o caso mais simples de uma estrutura sequencial. Por exemplo: `[People]lastName:=Uppercase([People]lastName)` -- **[Branching](Concepts/cf_branching.md)**: A branching structure allows methods to test a condition and take alternative paths, depending on the result. A condição é uma expressão booleana, uma expressão que avalia TRUE ou FALSE. One branching structure is the `If...Else...End if` structure, which directs program flow along one of two paths. The other branching structure is the `Case of...Else...End case` structure, which directs program flow to one of many paths. -- **[Looping](Concepts/cf_looping.md)**: When writing methods, it is very common to find that you need a sequence of statements to repeat a number of times. Para lidar com esta necessidade, a linguagem 4D oferece as estruturas de loop abaixo: +- **[Condicional](Concepts/cf_branching.md)**: uma estrutura de bifurcação permite que os métodos provem uma condição e tomem caminhos alternativos, dependendo do resultado. A condição é uma expressão booleana, uma expressão que avalia TRUE ou FALSE. Uma estrutura condicional e a estrutura `If... Else... End if`, que dirige o fluxo do programa ao longo de um dos dois caminhos. A outra estrutura condicional é a estrutura `Case of... Else... End case` que direciona fluxo de programa para um de muitas caminhos. +- **[Bucle](Concepts/cf_looping.md)**: quando se escrevem métodos, é muito comum descobrir que se necessita que uma sequência de sentenças se repita um número de vezes. Para lidar com esta necessidade, a linguagem 4D oferece as estruturas de loop abaixo: - `While... End while` - `Repeat... Until` - `For...End for` - - `For each...End for each`
    The loops are controlled in two ways: either they loop until a condition is met, or they loop a specified number of times. Cada estrutura de looping pode ser usada de qualquer forma, mas loops`While` e `Repeat` são mais apropriados para repetir até que uma condição seja satisfeita, e loops `For` são mais apropriados para looping um número especificado de vezes. `For each... End for each` permite misturar ambas as formas e foi concebido para fazer loop dentro de objectos e colecções. + - `For each... End for each`
    Os loops são controlados de duas maneiras: ou eles fazem o loop até que uma condição seja atendida ou fazem o loop um número especificado de vezes. Cada estrutura de looping pode ser usada de qualquer forma, mas loops`While` e `Repeat` são mais apropriados para repetir até que uma condição seja satisfeita, e loops `For` são mais apropriados para looping um número especificado de vezes. `For each... End for each` permite misturar ambas as formas e foi concebido para fazer loop dentro de objectos e colecções. **Nota:** 4D permite incorporar estruturas de programação até uma "profundidade" de 512 níveis. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/identifiers.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/identifiers.md index b90f69bfc00ab2..56d8390bec912d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/identifiers.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/identifiers.md @@ -3,7 +3,7 @@ id: identifiers title: Identificadores --- -This section describes the conventions and rules for naming various elements in the 4D language (variables, tables, objects, forms, etc.). +Esta seção descreve as convenções e regras para nomear os vários elementos da linguagem 4D (variáveis, tabelas, objetos, formulários, etc). ## Regras básicas @@ -11,16 +11,16 @@ As regras seguintes aplicam-se a todas as estruturas 4D. - Um nome deve começar por um caractere alfabético, um subscrito ou um sinal de dólar ("$") (lembre que um sinal de dólar pode denotar um elemento local, ver abaixo). - Depois disso, o nome pode incluir caracteres alfabéticos, numéricos, o caractere espaço e o caractere de sublinhado/traço baixo ("_") . -- Pontos (".") and brackets ("[ ]") are not allowed in table, field, method, or variable names. +- Pontos (".") Pontos (".") Pontos (".") Pontos (".") e colchetes ("[ ]") não são permitidos em nomes de tabelas, campos, métodos ou variáveis. - Não são permitidas vírgulas, barras, aspas e dois pontos. - Os caracteres reservados para uso como operadores, como * e +, não são permitidos. -- Do not use reserved names, i.e. 4D command names (`Date`, `Time`, etc), keywords (If, For, etc.), and constants. +- Não use nomes reservados, ou seja, nomes de comandos 4D`(Date`, `Time`, etc.), palavras-chave (If, For, etc.) e constantes. - Os espaços finais são ignorados. ### Regras adicionais para propriedades de objetos e nomes ORDA - Não são permitidos caracteres de espaço. -- Pontos (".") e parênteses ("[ ]") não são permitidos. +- Pontos (".") Pontos (".") Pontos (".") Pontos (".") e parênteses ("[ ]") não são permitidos. - Os nomes são sensíveis a maiúsculas e minúsculas. ### Regras adicionais para SQL @@ -28,7 +28,7 @@ As regras seguintes aplicam-se a todas as estruturas 4D. - Somente os caracteres _0123456789abcdefghijklmnopqrstuvwxyz são aceitos - Os nomes não devem incluir nenhuma palavra-chave SQL (comando, atributo, etc.). -**Note:** The "SQL" area of the Inspector in the Structure editor automatically indicates any unauthorized characters in the name of a table or field. +**Nota:** a área "SQL" do Inspetor no editor de estrutura indica automaticamente quaisquer caracteres não autorizados no nome de uma tabela ou campo. ## Tabelas @@ -44,7 +44,7 @@ ADD RECORD([Letters]) ## Campos -You designate a field by first specifying the table to which it belongs. O nome do campo segue imediatamente o nome da tabela. Um nome de campo pode conter até 31 caracteres. +Você designa um campo especificando primeiro a tabela à qual ele pertence. O nome do campo segue imediatamente o nome da tabela. Um nome de campo pode conter até 31 caracteres. Exemplos: @@ -56,9 +56,9 @@ QUERY([Clients];[Clients]Name="Smith") ## Variáveis interprocesso -You designate an interprocess variable by preceding the name of the variable with the symbols (`<>`) — a “less than” sign followed by a “greater than” sign. +Você designa uma variável interprocessos precedendo o nome da variável com os símbolos (`<>`) - um sinal de "menor que" seguido de um sinal de "maior que". -The name of an interprocess variable can be up to 31 characters, not including the `<>` symbols. +O nome de uma variável interprocesso pode ter até 31 caracteres, sem incluir os símbolos `<>`. Exemplos: @@ -82,7 +82,7 @@ vsCurrentName:="" ## Variáveis locais -Uma variável local é determinada colocando um sinal de dólar ($) antes do nome da variável. A local variable name can contain up to 31 characters, not including the dollar sign. +Uma variável local é determinada colocando um sinal de dólar ($) antes do nome da variável. Um nome de variável local pode conter até 31 caracteres, sem incluir o sinal de dólar. Exemplos: @@ -160,30 +160,27 @@ $viNextValue:=$aiBigArray{Size of array($aiBigArray)} ### Elementos de arrays bidimensionais -You reference an element of a two-dimensional array by using the curly braces ({…}) duas vezes. The element referenced is denoted by two numeric expressions in two sets of curly braces. +You reference an element of a two-dimensional array by using the curly braces ({…}) duas vezes. duas vezes. The element referenced is denoted by two numeric expressions in two sets of curly braces. Exemplos: ```4d - //Addressing an element of a two-dimensional interprocess array -If(<>asKeywords{$vlNextRow}{1}="Stop") + //Addressing an element of a two-dimensional interprocess array If(<>asKeywords{$vlNextRow}{1}="Stop") <>atSubjects{10}{$vlElem}:=[Topics]Subject $viNextValue:=<>aiBigArray{$vlSet}{Size of array(<>aiBigArray{$vlSet})} - //Addressing an element of a two-dimensional process array -If(asKeywords{$vlNextRow}{1}="Stop") + //Addressing an element of a two-dimensional process array If(asKeywords{$vlNextRow}{1}="Stop") atSubjects{10}{$vlElem}:=[Topics]Subject $viNextValue:=aiBigArray{$vlSet}{Size of array(aiBigArray{$vlSet})} - //Addressing an element of a two-dimensional local array -If($asKeywords{$vlNextRow}{1}="Stop") + //Addressing an element of a two-dimensional local array If($asKeywords{$vlNextRow}{1}="Stop") $atSubjects{10}{$vlElem}:=[Topics]Subject $viNextValue:=$aiBigArray{$vlSet}{Size of array($aiBigArray{$vlSet})} ``` ## Atributos de objetos -When object notation is enabled, you designate an object attribute (also called object property) by placing a point (".") between the name of the object (or attribute) and the name of the attribute. An attribute name can contain up to 255 characters and is case sensitive. +When object notation is enabled, you designate an object attribute (also called object property) by placing a point (".") between the name of the object (or attribute) and the name of the attribute. between the name of the object (or attribute) and the name of the attribute. An attribute name can contain up to 255 characters and is case sensitive. Exemplos: @@ -222,7 +219,7 @@ OBJECT SET FONT(*;"Binfo";"Times") You designate a project method (procedure or function) by using its name. O nome de um método pode conter até 31 caracteres. -**Note:** A project method that does not return a result is also called a procedure. Um método projeto que retorna um resultado também é chamado uma função. +**Nota:** um método projeto que não retorne um resultado também é chamado de um procedimento. Um método projeto que retorna um resultado também é chamado uma função. Exemplos: @@ -231,9 +228,9 @@ If(New client) DELETE DUPLICATED VALUES APPLY TO SELECTION([Employees];INCREASE SALARIES) ``` -**Dica:** é uma boa técnica de programação adotar a mesma convenção de nomenclatura que a utilizada por 4D para os métodos integrados. Use uppercase characters for naming your methods; however if a method is a function, capitalize the first character of its name. By doing so, when you reopen a database for maintenance after a few months, you will already know if a method returns a result by simply looking at its name in the Explorer window. +**Dica:** é uma boa técnica de programação adotar a mesma convenção de nomenclatura que a utilizada por 4D para os métodos integrados. Use caracteres maiúsculos para nomear seus métodos; no entanto, se um método é uma função, capitalize o primeiro caractere de seu nome. Dessa maneira, quando reabrir um banco de dados para manutenção depois de alguns meses, já saberá se um método retorna um resultado, simplesmente olhando seu nome na janela do Explorer. -**Note:** When you call a method, you just type its name. However, some 4D built-in commands, such as `ON EVENT CALL`, as well as all the Plug-In commands, expect the name of a method as a string when a method parameter is passed. Exemplo: +**Nota:** quando você chama um método, você só digita o nome dele. Entretanto, alguns comandos integrados em 4D, como `ON EVENT CALL`, assim como todos os comandos dos Plug-In, esperam o nome de um método como uma string quando se passar um parâmetro de tipo método. Exemplo: Exemplos: @@ -243,7 +240,7 @@ Exemplos: //Mas este comando espera um nome de método ON EVENT CALL("HANDLE EVENTS") ``` -Os métodos projeto podem aceitar parâmetros (argumentos). Os parâmetros se passam ao método entre parêntesis, depois do nome do método. Cada parâmetro está separado do próximo por um ponto e vírgula (;). Os parâmetros estão disponíveis dentro do método chamado como variáveis locais numeradas sequencialmente: $1, $2,..., $n. Além disso, podem ser endereçados múltiplos parâmetros consecutivos (e últimos) com a sintaxe ${n}onde n, expressão numérica, é o número do parâmetro. +Os métodos projeto podem aceitar parâmetros (argumentos). Os parâmetros se passam ao método entre parêntesis, depois do nome do método. Cada parâmetro está separado do próximo por um ponto e vírgula (;). Os parâmetros estão disponíveis dentro do método chamado como variáveis locais numeradas sequencialmente: $1, $2,..., $n. Os parâmetros estão disponíveis dentro do método chamado como variáveis locais numeradas sequencialmente: $1, $2,..., $n. Além disso, podem ser endereçados múltiplos parâmetros consecutivos (e últimos) com a sintaxe ${n}onde n, expressão numérica, é o número do parâmetro. Os parâmetros estão disponíveis dentro do método chamado como variáveis locais numeradas sequencialmente: $1, $2,..., $n. Além disso, podem ser endereçados múltiplos parâmetros consecutivos (e últimos) com a sintaxe ${n}onde n, expressão numérica, é o número do parâmetro. Dentro de uma função, a variável local $0 contém o valor a devolver. @@ -269,7 +266,7 @@ vtClone:=Dump("is";"the";"it") ## Comandos de plug-in -You designate a plug-in command by using its name as defined by the plug-in. O nome de um comando de plug-in pode conter até 31 caracteres. +Você designa um comando de plug-in usando seu nome conforme definido pelo plug-in. O nome de um comando de plug-in pode conter até 31 caracteres. Exemplos: @@ -290,9 +287,9 @@ Do ponto de vista do escopo, há dois tipos de conjuntos: ### Conjuntos interprocesso -A set is an interprocess set if the name of the set is preceded by the symbols (`<>`) — a “less than” sign followed by a “greater than” sign. +Um conjunto é um conjunto interprocessos se o nome do conjunto for precedido pelos símbolos (`<>`) - um sinal de "menor que" seguido por um sinal de "maior que". -An interprocess set name can contain up to 255 characters, not including the `<>` symbols. +Um nome de conjunto de interprocessos pode conter até 255 caracteres, sem incluir os símbolos `<>`. ### Conjuntos process @@ -300,9 +297,9 @@ Para designar um conjunto processo se utilizar uma expressão de tipo string que ### Conjuntos clientes -O nome de um conjunto cliente deve ser precedido do sinal de dólar ($). A client set name can contain up to 255 characters, not including the dollar sign. +O nome de um conjunto cliente deve ser precedido do sinal de dólar ($). Um nome de conjunto de clientes pode conter até 255 caracteres, sem incluir o cifrão. -**Nota:** Os conjuntos são mantidos na máquina servidor. In certain cases, for efficiency or special purposes, you may need to work with sets locally on the Client machine. Para isso, utilizam-se os conjuntos clientes. +**Nota:** Os conjuntos são mantidos na máquina servidor. Em certos casos, para fins de eficiência ou especiais, pode ser necessário trabalhar com conjuntos localmente nas máquinas cliente. Para isso, utilizam-se os conjuntos clientes. Exemplos: @@ -338,10 +335,8 @@ Para designar uma seleção nomeada se utiliza uma expressão de tipo string que Exemplos: ```4d - //Interprocess Named Selection -USE NAMED SELECTION([Customers];"<>ByZipcode") - //Process Named Selection -USE NAMED SELECTION([Customers];"<>ByZipcode") + //Interprocess Named Selection USE NAMED SELECTION([Customers];"<>ByZipcode") + //Process Named Selection USE NAMED SELECTION([Customers];"<>ByZipcode") ``` ## Processos diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/quick-tour.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/quick-tour.md index 9d8da345636445..6359d7d87132ac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/quick-tour.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/Concepts/quick-tour.md @@ -115,15 +115,13 @@ For($vlChar;1;Length(vtSomeText)) End for ``` -Um método projeto pode chamar a outro método projeto com ou sem parâmetros (argumentos). Os parâmetros se passam ao método entre parêntesis, depois do nome do método. Cada parâmetro está separado do próximo por um ponto e vírgula (;). Os parâmetros estão disponíveis dentro do método chamado como variáveis locais numeradas sequencialmente: $1, $2,..., $n. Um método pode retornar um único valor no parâmetro $0. Quando chamar um método, apenas digite seu nome: +Um método projeto pode chamar a outro método projeto com ou sem parâmetros (argumentos). Os parâmetros se passam ao método entre parêntesis, depois do nome do método. Cada parâmetro está separado do próximo por um ponto e vírgula (;). Os parâmetros estão disponíveis dentro do método chamado como variáveis locais numeradas sequencialmente: $1, $2,..., $n. Os parâmetros estão disponíveis dentro do método chamado como variáveis locais numeradas sequencialmente: $1, $2,..., $n. Além disso, podem ser endereçados múltiplos parâmetros consecutivos (e últimos) com a sintaxe ${n}onde n, expressão numérica, é o número do parâmetro. Um método pode retornar um único valor no parâmetro $0. Quando chamar um método, apenas digite seu nome: ```4d +$f:=New object +$f.message:=New formula(ALERT("Hello world!")) $myText:="hello" -$myText:=Do_Something($myText) //Chamar o método Do_Something -ALERT($myText) //"HELLO" - - //Aqui o código do método Do_Something -$0:=Uppercase($1) +$myText:=Do_Something($myText) //Call the Do_Something method ``` ## Tipos de dados @@ -284,8 +282,7 @@ Ambos os estilos de comentários podem ser utilizados em simultâneo. Inserir `//` no início de uma linha ou depois de uma declaração para adicionar um comentário de linha única. Exemplo: ```4d -/Este é um comentário -For($vCounter;1;100) //Starting loop +/Este é um comentário For($vCounter;1;100) //Starting loop //comment //comment //comment diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/checkbox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/checkbox_overview.md index fd2192a8b5ff91..4672ba3a75b683 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/checkbox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/checkbox_overview.md @@ -33,7 +33,7 @@ Para ativar este terceiro estado, deve selecionar a propriedade [Três estados]( Essa propriedade só está disponível para caixas de seleção regulares e planas associadas a [variáveis ou expressões](properties_Object.md#variable-or-expression) — as caixas de seleção de expressões booleanas não podem usar a propriedade [Três Estados](properties_Display.md#three-states) (uma expressão Booleana não pode estar em um estado intermediário). A variável associada à caixa de seleção devolve o valor 2 quando a caixa estiver no terceiro estado. -> In entry mode, the Three-States check boxes display each state sequentially, in the following order: unchecked / checked / intermediary / unchecked, etc. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. +> In entry mode, the Three-States check boxes display each state sequentially, in the following order: unchecked / checked / intermediary / unchecked, etc. The intermediary state is generally not very useful in entry mode; in the code, simply force the value of the variable to 0 when it takes the value of 2 in order to pass directly from the checked state to the unchecked state. ## Usar uma ação padrão diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/list_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/list_overview.md index 9336f4912a47b0..9f8e5ebab68698 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/list_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/list_overview.md @@ -40,9 +40,9 @@ Each representation of the list has its own specific characteristics and shares - O estado expandido/recolhido dos seus itens, - A posição do cursor de rolagem. -The other characteristics (font, font size, style, entry control, color, list contents, icons, etc.) are common to all the representations and cannot be modified separately. Consequently, when you use commands based on the expanded/collapsed configuration or the current item, for example `Count list items` (when the final `*` parameter is not passed), it is important to be able to specify the representation to be used without any ambiguity. +The other characteristics (font, font size, style, entry control, color, list contents, icons, etc.) are common to all the representations and cannot be modified separately. Consequentemente, quando você usa comandos com base na configuração expandida/colapsada ou no item atual, por exemplo, `Count list items` (quando o parâmetro final `*` não é passado), é importante poder especificar a representação a ser usada sem nenhuma ambiguidade. -You must use the `ListRef` ID with language commands when you want to specify the hierarchical list found in memory. On the other hand, if you want to specify the representation of a hierarchical list object at the form level, you must use the object name (string type) in the command, via the standard syntax (*;"ListName", etc.). +You must use the `ListRef` ID with language commands when you want to specify the hierarchical list found in memory. Por outro lado, se você quiser especificar a representação de um objeto lista hierárquica no nível do formulário, deverá usar o nome do objeto (tipo string) no comando, por meio da sintaxe padrão (*; "ListName", etc.). > In the case of commands that set properties, the syntax based on the object name does not mean that only the form object specified will be modified by the command, but rather that the action of the command will be based on the state of this object. The common characteristics of hierarchical lists are always modified in all of their representations. Por exemplo, se executa: @@ -79,7 +79,7 @@ As with other object property management commands, it is possible to use the “ ## Comandos genéricos utilizáveis com listas hierárquicas -It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. You can pass to these commands either the object name of the hierarchical list (using the * parameter), or its variable name (containing the ListRef value): +It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. Você pode passar para esses comandos o nome do objeto da lista hierárquica (usando o parâmetro *) ou o nome da variável (contendo o valor ListRef): - `OBJECT SET FONT` - `OBJECT SET FONT STYLE` diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_Appearance.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_Appearance.md index 56348f5cfa0596..efd83015339250 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_Appearance.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_Appearance.md @@ -222,7 +222,7 @@ Exibe/oculta a régua horizontal quando a visualização do documento está no m --- -## Show HTML WYSIWYG +## Mostrar HTML WYSIWYG Ativa/desativa a visualização HTML WYSIWYG, na qual todos os atributos avançados do 4D Write Pro que não são compatíveis com todos os navegadores são removidos. @@ -378,7 +378,7 @@ Define o modo de exibição do documento 4D Write Pro na área do formulário. H - **Página**: o modo de visualização mais completo, que inclui contornos de página, orientação, margens, quebras de página, cabeçalhos e rodapés, etc. - **Rascunho**: modo rascunho com propriedades básicas do documento -- **Embutido**: modo de exibição adequado para áreas incorporadas; não exibe margins, rodapés, cabeçalhos, quadros da página, etc. Este modo também pode ser usado para produzir uma saída de exibição semelhante à web (se você também selecionar a resolução [96 dpi](#resolution) e [Mostrar propriedades HTML WYSIWYG](#show-html-wysiwyg)). +- **Embutido**: modo de exibição adequado para áreas incorporadas; não exibe margins, rodapés, cabeçalhos, quadros da página, etc. Este modo também pode ser usado para produzir uma saída de exibição semelhante à web (se você também selecionar a resolução [96 dpi](#resolution) e [Mostrar propriedades HTML WYSIWYG](#show-html-wysiwyg)). Este modo também pode ser usado para produzir uma saída de exibição semelhante à web (se você também selecionar a resolução [96 dpi](#resolution) e [Mostrar propriedades HTML WYSIWYG](#show-html-wysiwyg)). > A propriedade Mode vista só é utilizada para a renderização no ecrã. Para os parâmetros de impressão, são usadas automaticamente regras de renderização específicas. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_DataSource.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_DataSource.md index e2b04fca58bf50..1d0459db4d8361 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_DataSource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_DataSource.md @@ -167,7 +167,7 @@ Uma expressão 4D a associar a uma coluna. Você pode entrar: - Parâmetros For collection/entity selection list boxes, Null or unsupported types are displayed as empty strings. -When using collections or entity selections, you will usually declare the element property or entity attribute associated to a column within an expression containing [This](https://doc.4d.com/4Dv17R6/4D/17-R6/This.301-4310806.en.html). `This` is a dedicated 4D command that returns a reference to the currently processed element. For example, you can use `**This.\<propertyPath>**` where `**\<propertyPath>**` is the path of a property in the collection or an entity attribute path to access the current value of each element/entity. If you use a collection of scalar values, 4D will create an object for each collection element with a single property (named "value"), filled with the element value. In this case, you will use **This.value** as expression. +When using collections or entity selections, you will usually declare the element property or entity attribute associated to a column within an expression containing [This](https://doc.4d.com/4Dv17R6/4D/17-R6/This.301-4310806.en.html). `This` is a dedicated 4D command that returns a reference to the currently processed element. Por exemplo, você pode usar `**This.\<propertyPath>**` onde `**\<propertyPath>**` é o caminho de uma propriedade na coleção ou um caminho de atributo de entidade para acessar o valor atual de cada elemento/entidade. If you use a collection of scalar values, 4D will create an object for each collection element with a single property (named "value"), filled with the element value. In this case, you will use **This.value** as expression. If a [non-assignable expression](Concepts/quick-tour.md#expressions) is used (e.g. `[Person]FirstName+" "+[Person]LastName`), the column is never enterable even if the [Enterable](properties_Entry.md#enterable) property is enabled. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_Reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_Reference.md index e9237d04e0b5a5..bf7830feac0f0a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_Reference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/FormObjects/properties_Reference.md @@ -63,13 +63,13 @@ Nesta página, encontrará uma lista completa de todas as propriedades de object | [fontStyle](properties_Text.md#italic) | Define o texto selecionado como ligeiramente inclinado para a direita. | "normal", "italic" | | [fontTheme](properties_Text.md#font-theme) | Define o estilo automático | "normal", "main", "additional" | | [fontWeight](properties_Text.md#bold) | Define o texto selecionado para aparecer mais escuro e mais pesado. | "normal", "bold" | -| [footer](listbox_overview.md#list-box-footers) | Defines the footer of a list box column | Object with properties | +| [footer](listbox_overview.md#list-box-footers) | Defines the footer of a list box column | Objeto com propriedades | | [footerHeight](properties_Footers.md#height) | Utilizado para definir a altura da linha | pattern (\\d+)(p|em)?$ (positive decimal + px/em ) | | [frameDelay](properties_Animation.md#switch-every-x-ticks) | Permite percorrer o conteúdo do botão de imagem na velocidade especificada (em ticks). | mínimo: 0 | | **g** | | | | [graduationStep](properties_Scale.md#graduation-step) | Medição do visor da escala. | mínimo: 0 | | **h** | | | -| [header](listbox_overview.md#list-box-headers) | Define o cabeçalho de uma coluna list box | Object with properties | +| [header](listbox_overview.md#list-box-headers) | Define o cabeçalho de uma coluna list box | Objeto com propriedades | | [headerHeight](properties_Headers.md#height) | Utilizado para definir a altura da linha | pattern ^(\\d+)(px|em)?$ (positive decimal + px/em ) | | [height](properties_CoordinatesAndSizing.md#height) | Designa o tamanho vertical de um objeto | mínimo: 0 | | [hideExtraBlankRows](properties_BackgroundAndBorder.md#hide-extra-blank-rows) | Desactiva a visibilidade de linhas extra e vazias. | true, false | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-18/REST/authUsers.md b/i18n/pt/docusaurus-plugin-content-docs/version-18/REST/authUsers.md index 2a5c3d44b04c91..8145ab37ed1d1a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-18/REST/authUsers.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-18/REST/authUsers.md @@ -31,31 +31,31 @@ In the subsequent REST requests, make sure this cookie is included in the **"Coo A maneira de lidar com os cookies de sessão depende, na verdade, de seu cliente HTTP. Este exemplo mostra como extrair e reenviar o cookie de sessão no contexto de solicitações tratadas por meio do comando 4D `HTTP Request`. ```4d -// Creating headers +// Criação de cabeçalhos ARRAY TEXT(headerNames;0) ARRAY TEXT(headerValues;0) -APPEND TO ARRAY(headerNames;"username-4D") -APPEND TO ARRAY(headerNames;"session-4D-length") +APPEND TO ARRAY(headerNames; "username-4D") +APPEND TO ARRAY(headerNames; "session-4D-length") APPEND TO ARRAY(headerNames;"hashed-password-4D") -APPEND TO ARRAY(headerValues;"kind user") -APPEND TO ARRAY(headerValues;"60") +APPEND TO ARRAY(headerValues; "kind user") +APPEND TO ARRAY(headerValues; "60") APPEND TO ARRAY(headerValues;Generate digest("test";4D digest)) C_OBJECT($response) $response:=New object -//This request opens a session for the user "kind user" -$result:=HTTP Request(HTTP POST method;"127.0.0.1:8044/rest/$directory/login";"";\ +//Esta solicitação abre uma sessão para o usuário "kind user" +$result:=HTTP Request(HTTP POST method; "127.0.0.1:8044/rest/$directory/login";"";\ $response;headerNames;headerValues;*) -//Build new arrays for headers with only the cookie WASID4D +//Criar novos arrays para cabeçalhos com apenas o cookie WASID4D buildHeader(->headerNames;->headerValues) -//This other request will not open a new session -$result:=HTTP Request(HTTP GET method;"127.0.0.1:8044/rest/$catalog";"";\ +//Essa outra solicitação não abrirá uma nova sessão +$result:=HTTP Request(HTTP GET method; "127.0.0.1:8044/rest/$catalog";"";\ $response;headerNames;headerValues;*) ``` diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/API/CryptoKeyClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/API/CryptoKeyClass.md index a16011ef3e18f6..cd5ff7483e9918 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/API/CryptoKeyClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/API/CryptoKeyClass.md @@ -71,21 +71,21 @@ A message is signed by a private key and the signature is verified by the corres - Lado bob: ```4d -// Create the message +// Criar a mensagem $message:="hello world" Folder(fk desktop folder).file("message.txt").setText($message) -// Create a key -$type:=New object("type";"RSA") +// Criar uma chave +$type:=New object("type"; "RSA") $key:=4D.CryptoKey.new($type) -// Get the public key and save it +// Obtenha a chave pública e salve-a Folder(fk desktop folder).file("public.pem").setText($key.getPublicKey()) -// Get signature as base64 and save it +// Obtenha a assinatura como base64 e salve-a Folder(fk desktop folder).file("signature").setText($key.sign($message;$type)) -/*Bob sends the message, the public key and the signature to Alice*/ +/*Bob envia a mensagem, a chave pública e a assinatura para Alice*/ ``` - O lado Alice: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md index 593ed67924ecab..e0c3735dbd14b6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/API/DataClassClass.md @@ -735,7 +735,7 @@ onde: | OU | |,||, or | * **order by attributePath**: pode incluir uma declaração order by *attributePath* na pesquisa para que os dados resultantes sejam ordenados de acordo com esta declaração. Pode utilizar várias instruções de ordenação, separadas por vírgulas (por exemplo, ordenação por *attributePath1* desc, *attributePath2* asc). Como padrão, a ordem é ascendente. Passe 'desc'' para definir uma ordem descendente e 'asc' para definir uma ordem ascendente. -> *If you use this statement, the returned entity selection is ordered (for more information, please refer to [Ordered vs Unordered entity selections](ORDA/dsMapping.md#ordered-or-unordered-entity-selection)). +> *Se você usar essa instrução, a seleção de entidade retornada será ordenada (para obter mais informações, consulte [Seleções de entidades ordenadas contra não ordenadas](ORDA/dsMapping.md#ordered-or-unordered-entity-selection)). **Usar aspas** @@ -812,6 +812,20 @@ Não obterá o resultado esperado porque o valor nulo será avaliado por 4D como $vSingles:=ds. Person.query("spouse = null") //correct syntax ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + **Não igual a em colecções** diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/Backup/settings.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/Backup/settings.md index ffeafb48fd0e30..a2d419820ae44e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/Backup/settings.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/Backup/settings.md @@ -119,8 +119,8 @@ Essas opções se aplicam aos arquivos de cópia de segurança principais e aos - **Restaura a última cópia de segurança se o banco de dados for danificado**: Quando essa opção for marcada, o programa inicia automaticamente a restauração do arquivo de dados do último backup válido do banco, se uma anomalia for detectada (arquivo corrupto por exemplo) durante a o lançamento do banco de dados. Nenhuma intervenção do usuário é necessária, mas a operação é gravada no diário da cópia de segurança. - **Integrate last log file if database is incomplete**: When this option is checked, the program automatically integrates the log file when opening or restoring the application. - - When opening an application, the current log file is automatically integrated if 4D detects that there are operations stored in the log file that are not present in the data. This situation arises, for example, if a power outage occurs when there are operations in the data cache that have not yet been written to the disk. - - When restoring an application, if the current log file or a log backup file having the same number as the backup file is stored in the same folder, 4D examines its contents. If it contains operations not found in the data file, the program automatically integrates it. + - When opening an application, the current log file is automatically integrated if 4D detects that there are operations stored in the log file that are not present in the data. Essa situação ocorre, por exemplo, se houver uma queda de energia quando houver operações no cache de dados que ainda não tenham sido gravadas no disco. + - When restoring an application, if the current log file or a log backup file having the same number as the backup file is stored in the same folder, 4D examines its contents. Se ele contiver operações não encontradas no arquivo de dados, o programa o integrará automaticamente. O usuário não vê uma caixa de diálogo, a operação é automática. O objetivo é fazer com que seja tão fácil quanto possível. A operação é registrada no diário de cópias de backup. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/cf_looping.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/cf_looping.md index 9c308d7e5cc525..fa26b803e4744d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/cf_looping.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/cf_looping.md @@ -14,7 +14,7 @@ The formal syntax of the `While... End while` control flow structure is: statement(s) End while ``` -A `While...End while` loop executes the statements inside the loop as long as the Boolean expression is TRUE. Comprova a expressão booleana ao início do loop e não entra no loop se a expressão for FALSE. +Um loop `While...End while` executa as declarações no loop enquanto a expressão booleana for TRUE. Comprova a expressão booleana ao início do loop e não entra no loop se a expressão for FALSE. It is common to initialize the value tested in the Boolean expression immediately before entering the `While... End while` loop. Initializing the value means setting it to something appropriate, usually so that the Boolean expression will be TRUE and `While... End while` executes the loop. @@ -46,9 +46,9 @@ The formal syntax of the `Repeat... Until` control flow structure is: statement(s) Until(Boolean_Expression) ``` -A `Repeat...Until` loop is similar to a [While...End while](flow-control#whileend-while) loop, except that it tests the Boolean expression after the loop rather than before. Thus, a `Repeat...Until` loop always executes the loop once, whereas if the Boolean expression is initially False, a `While...End while` loop does not execute the loop at all. +Um ciclo `Repeat...Until` é como um ciclo [While...End while](flow-control#whileend-while), exceto que testa a expressão booleana depois do ciclo e não antes. Assim, um loop `Repeat...Until` sempre executa o loop uma vez, enquanto se a expressão booleana for inicialmente Falsa, um loop `While...End while` não executa o loop de forma alguma. -The other difference with a `Repeat...Until` loop is that the loop continues until the Boolean expression is TRUE. +A outra diferença com um loop `Repeat...Until` é que o loop continua até que a expressão booleana seja TRUE. ### Exemplo @@ -272,7 +272,7 @@ Aqui são dois exemplos: ## For each... End for each -The formal syntax of the `For each...End for each` control flow structure is: +A sintaxe formal da estrutura de controle de fluxo para `For each...End for each` é: ```4d For each(Element_courant;Expression{;debut{;fin}}){Until|While}(Expression_booléenne)} diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/classes.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/classes.md index ca8cf8c576f631..0e978bac860bf1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/classes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/classes.md @@ -331,20 +331,20 @@ Uma classe estendida pode chamar o construtor de sua classe pai usando o comando Este exemplo cria uma classe chamada `Square` a partir de uma classe chamada `Polygon`. ```4d -//Class: Square +//Classe: Square //path: Classes/Square.4dm Class extends Polygon -Class constructor ($side : Integer) +Construtor da classe ($side : Integer) - // It calls the parent class's constructor with lengths - // provided for the Polygon's width and height + // Chama o construtor da classe pai com comprimentos + // fornecidos para a largura e altura do Polygon Super($side;$side) - // In derived classes, Super must be called before you - // can use 'This' + // Em classes derivadas, Super tem de ser chamado antes de + // poder usar 'This' This.name:="Square" Function getArea() diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/components.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/components.md index 8659a2615c41e2..37248e52892e0f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/components.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/components.md @@ -15,7 +15,7 @@ A 4D component is a set of 4D methods and forms representing one or more functio ### Princípios -Criar e instalar componentes 4D é realizado diretamente a partir de 4D. Basically, components are managed like [plug-ins](Concepts/plug-ins.md) according to the following principles: +Criar e instalar componentes 4D é realizado diretamente a partir de 4D. Basicamente, os componentes são gerenciados como [plug-ins](Concepts/plug-ins.md) conforme os seguintes princípios: - Um componente é constituído por um ficheiro de projeto 4D clássico. - Para instalar um componente, basta copiá-lo para a pasta [`Components` do projeto](Project/architecture.md). Pode usar pseudónimos ou atalhos. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/dt_time.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/dt_time.md index 165cf71ff7d13f..6899aa273fa042 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/dt_time.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/dt_time.md @@ -27,7 +27,7 @@ Aqui são exemplos de constantes de tipo hora: Uma hora nula se escreve ?00:00:00? -**Tip:** The Method Editor includes a shortcut for entering a null time. Para escrever uma hora nula, introduza o sinal de interrogação (?) e aperte Enter. +**Dica:** o editor de métodos inclui um acesso direto para introduzir uma hora nula. Para escrever uma hora nula, introduza o sinal de interrogação (?) e aperte Enter. ## Operadores de horas @@ -35,7 +35,7 @@ Uma hora nula se escreve ?00:00:00? | -------------------- | -------------- | ---------- | ----------------------- | ---------- | | Adição | Hora + Hora | Hora | ?02:03:04? + ?01:02:03? | ?03:05:07? | | Subtração | Hora – Hora | Hora | ?02:03:04? ?02:03:04? | ?01:01:01? | -| Adição | Hora + Número | Number | ?02:03:04? ?01:02:03? | 7449 | +| Adição | Hora + Número | Number | ?02:03:04? ?02:03:04? | 7449 | | Subtração | Hora – Número | Number | ?02:03:04? ?02:03:04? | 7319 | | Multiplicação | Hora * Número | Number | ?02:03:04? ?02:03:04? | 14768 | | Divisão | Hora / Número | Number | ?02:03:04? ?02:03:04? | 3692 | @@ -85,6 +85,9 @@ $t1:=?23:00:00? // São 23:00 p.m. // It is 23:00 p.m. // We want to add 2 and a half hours $t2:=$t1 +?02:30:00? // Com uma simples adição, $t2 é?25:30:00? -$t2:=($t1 +?02:30:00?)%?24:00:00? // $t2 é ?01:30:00? and it is 1:30 a.m. the next morning a manhã seguinte +$t2:=($t1 +?02:30:00?)%?24:00:00? // $t2 é ?01:30:00? // São 23:00 p.m. + // It is 23:00 p.m. + // We want to add 2 and a half hours +$t2:=$t1 +?02:30:00? ``` diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/error-handling.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/error-handling.md index af3aaaf7880c18..43a40659122223 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/error-handling.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/error-handling.md @@ -9,7 +9,7 @@ Manejo de erros responde à duas necessidades principais: - descobrir e consertar erros potenciais e bugs no código durante a fase de desenvolvimento, - detectar e recuperar de erros inesperados nas aplicações implementadas; em particular pode substituir diálogos de erros de sistemas (disco cheio, arquivo faltando, etc) com sua própria interface. -> It is highly recommended to install an error-handling method on 4D Server, for all code running on the server. This method would avoid unexpected dialog boxes to be displayed on the server machine, and could log errors in a dedicated file for further analyses. +> > > > É recomendado instalar um método de gerenciamento de erros em 4D Server, para todos os códigos rodando no servidor. Esse método evitaria a exibição de caixas de diálogo inesperadas no computador do servidor e poderia registrar os erros em um arquivo dedicado para análises posteriores. ## Erro ou status @@ -23,13 +23,13 @@ Outros erros "imprevisíveis" incluem erro de gravação em disco, falha de rede In 4D, all errors can be caught and handled in a specific project method, the **error-handling** (or **error-catching**) method. -This project method is installed for the current process and will be automatically called for any error that occurs in the process, in interpreted or compiled mode. To *install* this project method, you just need to call the `ON ERR CALL` command with the project method name as parameter. Por exemplo: +Esse método de projeto é instalado para o processo atual e será chamado automaticamente para qualquer erro que ocorra no processo, no modo interpretado ou compilado. Para *instalar* esse método projeto, você só precisa chamar o comando `ON ERR CALL` com o nome do método projeto como parâmetro. Por exemplo: ```4d ON ERR CALL("IO_ERRORS") //Instala o método de tratamento de erros ``` -To stop catching errors and give back hand to 4D, call `ON ERR CALL` with an empty string: +Para parar de capturar erros e devolver a mão ao 4D, chame `ON ERR CALL` com uma string vazia: ```4d ON ERR CALL("") //devolve o controlo a 4D ``` @@ -68,7 +68,7 @@ Within the custom error method, you have access to several pieces of information 4D automatically maintains a number of variables called [**system variables**](variables.md#system-variables), meeting different needs. ::: -- the `GET LAST ERROR STACK` command that returns information about the current stack of errors of the 4D application. +- o comando `GET LAST ERROR STACK` que retorna informações sobre a pilha de erros atual da aplicação 4D. - o comando `Get call chain` que devolve uma coleção de objetos que descrevem cada passo da string de chamadas a métodos dentro do processo atual. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/flow-control.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/flow-control.md index 04b4f2c226deab..aa2b3cbb1e8000 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/flow-control.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/Concepts/flow-control.md @@ -3,14 +3,14 @@ id: control-flow title: Visão geral do fluxo de controle --- -Regardless of the simplicity or complexity of a method, you will always use one or more of three types of programming structures. As estruturas de programação determinam o fluxo de execução, se serão executadas, e a ordem das linhas de instruções dentro do método. Há três tipos de estruturas: +Independentemente da simplicidade ou da complexidade de um método, sempre utilizará um ou vários dos três tipos de estruturas de programação. As estruturas de programação determinam o fluxo de execução, se serão executadas, e a ordem das linhas de instruções dentro do método. Há três tipos de estruturas: - **Sequencial**: uma estrutura sequencial é uma estrutura simples e linear. Uma sequência é uma série de sentenças que 4D executa uma atrás da outra, da primera à última. Uma instrução de uma linha, utilizada frequentemente para os métodos dos objetos, é o caso mais simples de uma estrutura sequencial. Por exemplo: `[People]lastName:=Uppercase([People]lastName)` -- **[Branching](Concepts/cf_branching.md)**: A branching structure allows methods to test a condition and take alternative paths, depending on the result. A condição é uma expressão booleana, uma expressão que avalia TRUE ou FALSE. One branching structure is the `If...Else...End if` structure, which directs program flow along one of two paths. The other branching structure is the `Case of...Else...End case` structure, which directs program flow to one of many paths. -- **[Looping](Concepts/cf_looping.md)**: When writing methods, it is very common to find that you need a sequence of statements to repeat a number of times. Para lidar com esta necessidade, a linguagem 4D oferece as estruturas de loop abaixo: +- **[Condicional](Concepts/cf_branching.md)**: uma estrutura de bifurcação permite que os métodos provem uma condição e tomem caminhos alternativos, dependendo do resultado. A condição é uma expressão booleana, uma expressão que avalia TRUE ou FALSE. Uma estrutura condicional e a estrutura `If... Else... End if`, que dirige o fluxo do programa ao longo de um dos dois caminhos. A outra estrutura condicional é a estrutura `Case of... Else... End case` que direciona fluxo de programa para um de muitas caminhos. +- **[Bucle](Concepts/cf_looping.md)**: quando se escrevem métodos, é muito comum descobrir que se necessita que uma sequência de sentenças se repita um número de vezes. Para lidar com esta necessidade, a linguagem 4D oferece as estruturas de loop abaixo: - `While... End while` - `Repeat... Until` - `For...End for` - - `For each...End for each`
    The loops are controlled in two ways: either they loop until a condition is met, or they loop a specified number of times. Cada estrutura de looping pode ser usada de qualquer forma, mas loops`While` e `Repeat` são mais apropriados para repetir até que uma condição seja satisfeita, e loops `For` são mais apropriados para looping um número especificado de vezes. `For each... End for each` permite misturar ambas as formas e foi concebido para fazer loop dentro de objectos e colecções. + - `For each... End for each`
    Os loops são controlados de duas maneiras: ou eles fazem o loop até que uma condição seja atendida ou fazem o loop um número especificado de vezes. Cada estrutura de looping pode ser usada de qualquer forma, mas loops`While` e `Repeat` são mais apropriados para repetir até que uma condição seja satisfeita, e loops `For` são mais apropriados para looping um número especificado de vezes. `For each... End for each` permite misturar ambas as formas e foi concebido para fazer loop dentro de objectos e colecções. **Nota:** 4D permite incorporar estruturas de programação até uma "profundidade" de 512 níveis. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormEditor/formEditor.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormEditor/formEditor.md index dc21ca5b5d7cff..12b0e7f53793f5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormEditor/formEditor.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormEditor/formEditor.md @@ -752,4 +752,4 @@ Pode fazer zoom no formulário atual. Switch to “Zoom” mode by clicking on t No modo Zoom, todas as funções do editor de formulários permanecem disponíveis(*). -(*) For technical reasons, it is not possible to select list box elements (headers, columns, footers) when the Form editor is in Zoom mode. +(*) Por motivos técnicos, não é possível selecionar elementos da caixa de listagem (cabeçalhos, colunas, rodapés) quando o editor de formulários está no modo Zoom. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormEditor/properties_FormProperties.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormEditor/properties_FormProperties.md index b32e6209e83bd7..d9a5d717336f29 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormEditor/properties_FormProperties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormEditor/properties_FormProperties.md @@ -154,7 +154,7 @@ Apenas os projetos formulário podem ser especificados como subformulários publ ## Guardar geometria -When the option is used, if the window is opened using the `Open form window` command with the `*` parameter, several form parameters are automatically saved by 4D when the window is closed, regardless of how they were modified during the session: +Quando a opção é usada, se a janela for aberta usando o comando `Open form window` com o parâmetro `*`, vários parâmetros de formulário são salvos automaticamente pelo 4D quando a janela é fechada, independentemente de como foram modificados durante a sessão: * a página atual, * a posição, tamanho e visibilidade de cada objecto de formulário (incluindo o tamanho e visibilidade das colunas da lista box). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/checkbox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/checkbox_overview.md index 0939222e6d726a..77eb2f08c18480 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/checkbox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/checkbox_overview.md @@ -31,7 +31,7 @@ Para ativar este terceiro estado, deve selecionar a propriedade [Três estados]( Essa propriedade só está disponível para caixas de seleção regulares e planas associadas a [variáveis ou expressões](properties_Object.md#variable-or-expression) — as caixas de seleção de expressões booleanas não podem usar a propriedade [Três Estados](properties_Display.md#three-states) (uma expressão Booleana não pode estar em um estado intermediário). A variável associada à caixa de seleção devolve o valor 2 quando a caixa estiver no terceiro estado. -> In entry mode, the Three-States check boxes display each state sequentially, in the following order: unchecked / checked / intermediary / unchecked, etc. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. +> In entry mode, the Three-States check boxes display each state sequentially, in the following order: unchecked / checked / intermediary / unchecked, etc. The intermediary state is generally not very useful in entry mode; in the code, simply force the value of the variable to 0 when it takes the value of 2 in order to pass directly from the checked state to the unchecked state. ## Usar uma ação padrão diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/list_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/list_overview.md index 8fe3ba2ef38d5d..fcfea8265ee546 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/list_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/list_overview.md @@ -39,9 +39,9 @@ Each representation of the list has its own specific characteristics and shares - O estado expandido/recolhido dos seus itens, - A posição do cursor de rolagem. -The other characteristics (font, font size, style, entry control, color, list contents, icons, etc.) are common to all the representations and cannot be modified separately. Consequently, when you use commands based on the expanded/collapsed configuration or the current item, for example `Count list items` (when the final `*` parameter is not passed), it is important to be able to specify the representation to be used without any ambiguity. +The other characteristics (font, font size, style, entry control, color, list contents, icons, etc.) are common to all the representations and cannot be modified separately. Consequentemente, quando você usa comandos com base na configuração expandida/colapsada ou no item atual, por exemplo, `Count list items` (quando o parâmetro final `*` não é passado), é importante poder especificar a representação a ser usada sem nenhuma ambiguidade. -You must use the `ListRef` ID with language commands when you want to specify the hierarchical list found in memory. On the other hand, if you want to specify the representation of a hierarchical list object at the form level, you must use the object name (string type) in the command, via the standard syntax (*;"ListName", etc.). +You must use the `ListRef` ID with language commands when you want to specify the hierarchical list found in memory. Por outro lado, se você quiser especificar a representação de um objeto lista hierárquica no nível do formulário, deverá usar o nome do objeto (tipo string) no comando, por meio da sintaxe padrão (*; "ListName", etc.). > In the case of commands that set properties, the syntax based on the object name does not mean that only the form object specified will be modified by the command, but rather that the action of the command will be based on the state of this object. The common characteristics of hierarchical lists are always modified in all of their representations. Por exemplo, se executa: @@ -78,7 +78,7 @@ As with other object property management commands, it is possible to use the “ ## Comandos genéricos utilizáveis com listas hierárquicas -It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. You can pass to these commands either the object name of the hierarchical list (using the * parameter), or its variable name (containing the ListRef value): +It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. Você pode passar para esses comandos o nome do objeto da lista hierárquica (usando o parâmetro *) ou o nome da variável (contendo o valor ListRef): - `OBJECT SET FONT` - `OBJECT SET FONT STYLE` diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/listbox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/listbox_overview.md index 1d058814e61a97..e00a47ccb0c2eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/listbox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/listbox_overview.md @@ -506,7 +506,7 @@ O suporte de ordenação padrão depende do tipo de list box: | ----------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------ | | Uma coleção de objetos | Sim |
  • As colunas "This.a" ou "This.a.b" podem ser ordenadas.
  • The [list box source property](properties_Object.md#variable-or-expression) must be an [assignable expression](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
  • | | Colecção de valores escalares | Não | Use custom sort with [`orderBy()`](../API/CollectionClass.md#orderby) function | -| Seleção de entidades | Sim |
  • The [list box source property](properties_Object.md#variable-or-expression) must be an [assignable expression](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
  • Supported: sorts on object attribute properties (e.g. "This.data.city" when "data" is an object attribute)
  • Suportado: ordena por atributos relacionados (por exemplo, "This.company.name")
  • Not supported: sorts on object attribute properties through related attributes (e.g. "This.company.data.city"). For this, you need to use custom sort with [`orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) function (see example below)
  • | +| Seleção de entidades | Sim |
  • The [list box source property](properties_Object.md#variable-or-expression) must be an [assignable expression](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
  • Supported: sorts on object attribute properties (e.g. "This.data.city" when "data" is an object attribute)
  • Suportado: ordena por atributos relacionados (por exemplo, "This.company.name")
  • Not supported: sorts on object attribute properties through related attributes (e.g. "This.company.data.city"). Para isso, você precisa usar a classificação personalizada com a função [`orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) (veja o exemplo abaixo)
  • | | Selecção actual | Sim | Only simple expressions are sortable (e.g. `[Table_1]Field_2`) | | Seleção temporal | Não | | | Arrays | Sim | As colunas ligadas a arrays de imagens e ponteiros não podem ser ordenadas | @@ -858,7 +858,7 @@ ARRAY OBJECT(obColumn;0) //column array Quando uma coluna de caixa de listagem é associada a uma array de objectos, a forma como uma célula é exibida, introduzida, ou editada, é baseada no atributo valueType do elemento da array. Os valores suportados são os tipos de valores: * "texto": para um valor de texto -* "real": for a numeric value that can include separators like a `\<space>`, <.>, or <,> +* "real": for a numeric value that can include separators like a `\<space>`, <.>, or * "integer": para um valor inteiro * "booleano": para um valor Verdadeiro/Falso * "cor": para definir uma cor de fundo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/properties_Appearance.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/properties_Appearance.md index b4309d6cab9e4e..820cc737bb5315 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/properties_Appearance.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/properties_Appearance.md @@ -379,7 +379,7 @@ Define o modo de exibição do documento 4D Write Pro na área do formulário. H - **Página**: o modo de visualização mais completo, que inclui contornos de página, orientação, margens, quebras de página, cabeçalhos e rodapés, etc. - **Rascunho**: modo rascunho com propriedades básicas do documento -- **Embutido**: modo de exibição adequado para áreas incorporadas; não exibe margins, rodapés, cabeçalhos, quadros da página, etc. Este modo também pode ser usado para produzir uma saída de exibição semelhante à web (se você também selecionar a resolução [96 dpi](#resolution) e [Mostrar propriedades HTML WYSIWYG](#show-html-wysiwyg)). +- **Embutido**: modo de exibição adequado para áreas incorporadas; não exibe margins, rodapés, cabeçalhos, quadros da página, etc. Este modo também pode ser usado para produzir uma saída de exibição semelhante à web (se você também selecionar a resolução [96 dpi](#resolution) e [Mostrar propriedades HTML WYSIWYG](#show-html-wysiwyg)). Este modo também pode ser usado para produzir uma saída de exibição semelhante à web (se você também selecionar a resolução [96 dpi](#resolution) e [Mostrar propriedades HTML WYSIWYG](#show-html-wysiwyg)). > A propriedade Mode vista só é utilizada para a renderização no ecrã. Para os parâmetros de impressão, são usadas automaticamente regras de renderização específicas. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/properties_TextAndPicture.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/properties_TextAndPicture.md index 6a941714045089..de7a880ca774ee 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/properties_TextAndPicture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/properties_TextAndPicture.md @@ -208,7 +208,7 @@ To attach a pop-up menu symbol to a button, there are two display options availa Each option specifies the relation between the button and the attached pop-up menu: -
  • When the pop-up menu is **separated**, clicking on the left part of the button directly executes the current action of the button; this action can be modified using the pop-up menu accessible in the right part of the button.
  • +
  • Quando o menu pop-up é **separado**, clicar na parte esquerda do botão executa diretamente a ação atual do botão; essa ação pode ser modificada usando o menu pop-up acessível na parte direita do botão.
  • Quando o menu pop-up está **vinculado**, um simples clique no botão exibe apenas o menu pop-up. Only the selection of the action in the pop-up menu causes its execution.
  • ### Gerir o menu pop-up diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/stepper.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/stepper.md index 9d5d572389cf1e..0ebb4d6377c806 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/stepper.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/stepper.md @@ -14,7 +14,7 @@ You can assign the variable associated with the object to an enterable area (fie Um stepper pode ser associado diretamente a uma variável número, hora ou data. * For values of the time type, the Minimum, Maximum and Step properties represent seconds. Por exemplo, para definir um passo de 8:00 a 18:00 com passos de 10 minutos: - * [minimum](properties_Scale.md#minimum) = 28 800 (8\*60\*60) + * [mínimo](properties_Scale.md#minimum) = 28 800 (8\*60\*60) * [máximo](properties_Scale.md#maximum) = 64 800 (18\*60\*60) * [passo](properties_Scale.md#step) = 600 (10*60) * Para valores do tipo data, o valor introduzido na propriedade [passo](properties_Scale.md#step) representa dias. As propriedades Mínimo e Máximo são ignoradas. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/Project/compiler.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/Project/compiler.md index be70a4cf04ebff..ea45f1d88890d0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/Project/compiler.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/Project/compiler.md @@ -191,7 +191,7 @@ Estas duas listas contêm quatro colunas: - Tipo da variável. Types are set by compiler directive commands or are determined by the compiler based on the use of the variable. Se o tipo de uma variável não puder ser determinado, a coluna estará vazia. - Número de dimensões se a variável for um array. - Reference to the context in which the compiler established the type of the variable. If the variable is used in several contexts, the context mentioned is the one used by the compiler to determine its type. - - If the variable was found in a database method, the database method name is given, preceded by (M)*. + - Se a variável foi encontrada em um método de banco de dados, o nome do método de banco de dados é dado, precedido por (M)*. - If the variable was found in a project method, the method is identified as it has been defined in 4D, preceded by (M). - If the variable was found in a trigger, the table name is given, preceded by (TM). - If the variable was found in a form method, the form name is given, preceded by the table name and (FM). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/Project/documentation.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/Project/documentation.md index f39819bc19a67d..8a37ed1fc92d1e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-19/Project/documentation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/Project/documentation.md @@ -189,21 +189,21 @@ $txt:="Hello world!" No ficheiro `WP SwitchToolbar.md`, pode escrever: ```4d - + GetLogo (size) -> logo -| Parameter | Type | in/out | Description | +| Parameter | Type | in/out | Description | | --------- | ------ | ------ | ----------- | -| size | Integer | in | Logo style selector (1 to 5) | -| logo | Picture | out | Selected logo | +| size | Integer | in | Seletor de estilo de logotipo (1 a 5) | +| logo | Picture | out | Logotipo selecionado | -## Description +## Descrição -This method returns a logo of a specific size, depending on the value of the *size* parameter value. +Esse método retorna um logotipo de um tamanho específico, dependendo do valor do parâmetro *size*. 1 = tamanho mais pequeno, 5 = tamanho maior. ## Example diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/CollectionClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/CollectionClass.md index c35ca7fc75b791..9d84d8e0b2eadb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/CollectionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/CollectionClass.md @@ -2732,7 +2732,7 @@ No parâmetro *querySettings*, você pode passar um objeto que contenha placehol | parameters | Object | **Placeholders com nome para os valores** usados na *queryString*. Os valores são expressos como pares de propriedade/valor, em que propriedade é o nome do espaço reservado inserido para um valor na *queryString* (":placeholder") e valor é o valor a ser comparado. Pode combinar marcadores de posição indexados (valores passados diretamente em parâmetros de valor) e valores de marcadores de posição com nome na mesma pesquisa. | | attributes | Object | **Placeholders nomeados para os caminhos de atributos** usados na *queryString*. Os atributos são expressos como pares de propriedade/valor, em que propriedade é o nome do espaço reservado inserido para um caminho de atributo no *queryString* (":placeholder"), e o valor pode ser uma cadeia de caracteres ou uma coleção de cadeias de caracteres. Cada valor é um caminho que pode designar uma propriedade em um objeto da coleção
    Tipo de propriedadeDescrição
    String (cadeia de caracteres)attributePath expresso usando a notação de ponto, por exemplo, "name" ou "user.address.zipCode"
    Coleção de cadeias de caracteresCada cadeia de caracteres da coleção representa um nível de attributePath, por exemplo, \["name"] ou \["user", "address", "zipCode"]. Using a collection allows querying on attributes with names that are not compliant with dot notation, e.g. \["4Dv17.1","en/fr"]
    You can mix indexed placeholders (values directly passed in *value* parameters) and named placeholder values in the same query. | -> Using this parameter is mandatory if you want to query a collection [using a **collection reference** or **object reference**](#object-or-collection-reference-as-value). +> O uso desse parâmetro é obrigatório se você quiser consultar uma coleção [usando uma **referência de coleção** ou **referência de objeto**](#object-or-collection-reference-as-value). #### Exemplo 1 @@ -2825,19 +2825,19 @@ More examples of queries can be found in the `dataClass.query()` page. -| Parâmetro | Tipo | | Descrição | -| ---------- | ----------------------------------------------- | :-------------------------: | --------------------------------------------------------------------------------- | -| formula | 4D. Function | -> | Objecto fórmula | -| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | -| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Value to use as the first argument to the first call of *formula* or *methodName* | -| param | expressão | -> | Parâmetro(s) a transmitir | -| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | +| Parâmetro | Tipo | | Descrição | +| ---------- | ----------------------------------------------- | :-------------------------: | ---------------------------------------------------------------------------------------------- | +| formula | 4D. Function | -> | Objecto fórmula | +| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | +| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Valor a ser usado como primeiro argumento para a primeira chamada de *formula* ou *methodName* | +| param | expressão | -> | Parâmetro(s) a transmitir | +| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | #### Descrição -The `.reduce()` function applies the *formula* or *methodName* callback against an accumulator and each element in the collection (from left to right) to reduce it to a single value. +A função `.reduce()` aplica a chamada de retorno *formula* ou *methodName* em um acumulador e em cada elemento da coleção (da esquerda para a direita) para reduzi-lo a um único valor. > Essa função não modifica a coleção original. @@ -2846,9 +2846,9 @@ Designa-se a chamada de retorno a ser executada para avaliar os elementos da col - *formula* (sintaxe recomendada), um [objecto Formula](FunctionClass.md) que pode encapsular qualquer expressão executável, incluindo funções e métodos projecto; - ou *methodName*, o nome de um método projeto (texto). -The callback takes each collection element and performs any desired operation to accumulate the result into *$1.accumulator*, which is returned in *$1.value*. +O retorno de chamada pega cada elemento da coleção e executa qualquer operação desejada para acumular o resultado em *$1.accumulator*, retornado em *$1.value*. -Pode passar o valor para inicializar o acumulador em *initValue*. If omitted, *$1.accumulator* starts with *Undefined*. +Pode passar o valor para inicializar o acumulador em *initValue*. Se omitido, *$1.accumulator* começa com *Undefined*. A chamada de retorno recebe os seguintes parâmetros: @@ -2858,7 +2858,7 @@ A chamada de retorno recebe os seguintes parâmetros: A chamada de retorno recebe os seguintes parâmetros: -- *$1.accumulator*: value to be modified by the function and which is initialized by *initValue*. +- *$1.accumulator*: valor a ser modificado pela função sendo inicializado por *initValue*. - *$1.stop* (boolean, opcional): **true** para parar o callback do método. O valor retornado é o último calculado. #### Exemplo 1 @@ -2910,19 +2910,19 @@ Com o seguinte método ***Flatten***: -| Parâmetro | Tipo | | Descrição | -| ---------- | ----------------------------------------------- | :-------------------------: | --------------------------------------------------------------------------------- | -| formula | 4D. Function | -> | Objecto fórmula | -| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | -| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Value to use as the first argument to the first call of *formula* or *methodName* | -| param | expressão | -> | Parâmetro(s) a transmitir | -| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | +| Parâmetro | Tipo | | Descrição | +| ---------- | ----------------------------------------------- | :-------------------------: | ---------------------------------------------------------------------------------------------- | +| formula | 4D. Function | -> | Objecto fórmula | +| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | +| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Valor a ser usado como primeiro argumento para a primeira chamada de *formula* ou *methodName* | +| param | expressão | -> | Parâmetro(s) a transmitir | +| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | #### Descrição -The `.reduceRight()` function applies the *formula* or *methodName* callback against an accumulator and each element in the collection (from right to left) to reduce it to a single value. +A função `.reduceRight()` aplica a chamada de retorno *formula* ou *methodName* em um acumulador e em cada elemento da coleção (da direita para a esquerda) para reduzi-lo a um único valor. > Essa função não modifica a coleção original. @@ -2931,9 +2931,9 @@ Designa-se a chamada de retorno a ser executada para avaliar os elementos da col - *formula* (sintaxe recomendada), um [objecto Formula](FunctionClass.md) que pode encapsular qualquer expressão executável, incluindo funções e métodos projecto; - ou *methodName*, o nome de um método projeto (texto). -The callback takes each collection element and performs any desired operation to accumulate the result into *$1.accumulator*, which is returned in *$1.value*. +O retorno de chamada pega cada elemento da coleção e executa qualquer operação desejada para acumular o resultado em *$1.accumulator*, retornado em *$1.value*. -Pode passar o valor para inicializar o acumulador em *initValue*. If omitted, *$1.accumulator* starts with *Undefined*. +Pode passar o valor para inicializar o acumulador em *initValue*. Se omitido, *$1.accumulator* começa com *Undefined*. A chamada de retorno recebe os seguintes parâmetros: @@ -2943,7 +2943,7 @@ A chamada de retorno recebe os seguintes parâmetros: A chamada de retorno recebe os seguintes parâmetros: -- *$1.accumulator*: value to be modified by the function and which is initialized by *initValue*. +- *$1.accumulator*: valor a ser modificado pela função sendo inicializado por *initValue*. - *$1.stop* (boolean, opcional): **true** para parar o callback do método. O valor retornado é o último calculado. #### Exemplo 1 @@ -3007,19 +3007,19 @@ Com o seguinte método ***Flatten***: #### Descrição -The `.remove()` function removes one or more element(s) from the specified *index* position in the collection and returns the edited collection. +A função `.remove()` remove um ou mais elemento(s) da posição *índice* especificada na coleção e retorna a coleção editada. > Essa função modifica a coleção original. Em *index*, passe a posição onde deseja que o elemento seja retirado da colecção. -> **Aviso**: lembre que elementos de coleção são numerados a partir de 0. If *index* is greater than the length of the collection, actual starting index will be set to the length of the collection. +> **Aviso**: lembre que elementos de coleção são numerados a partir de 0. Se *index* for maior que o comprimento da coleção, o índice inicial real será definido como o comprimento da coleção. - Se *index* < 0, ele será recalculado como *index:=index+length* (ele é considerado como o deslocamento do final da coleção). - Se o valor calculado for < 0, *index* será definido como 0. -- If the calculated value > the length of the collection, *index* is set to the length. +- Se o valor calculado > o comprimento da coleção, *index* é definido para o comprimento. -Em *howMany*, passe o número de elementos a serem removidos de *index*. If *howMany* is not specified, then one element is removed. +Em *howMany*, passe o número de elementos a serem removidos de *index*. Se \*howMany \*não for especificado, então um elemento é removido. Se tentar remover um elemento de uma coleção vazia, o método não faz nada (não é gerado qualquer erro). @@ -3066,10 +3066,10 @@ The `.resize()` function sets the colle > Essa função modifica a coleção original. -- If *size* < collection length, exceeding elements are removed from the collection. +- Se *size* < comprimento da coleção, os elementos excedentes são removidos da coleção. - Se *size* > comprimento da coleção, o comprimento da coleção é aumentado à medida. -Por padrão, novos elementos são preenchidos com valores **null**. You can specify the value to fill in added elements using the *defaultValue* parameter. +Por padrão, novos elementos são preenchidos com valores **null**. Pode especificar o valor para preencher os elementos adicionados usando o parâmetro *defaultValue*. #### Exemplo @@ -3198,16 +3198,16 @@ Se a colecção estiver vazia, este método não faz nada. #### Descrição -The `.slice()` function returns a portion of a collection into a new collection, selected from *startFrom* index to *end* index (end not included). This function returns a *shallow copy* of the collection. Na coleção original é uma coleção partilhada, a coleção retornada também é uma coleção partilhada. +A função `.slice()` retorna uma parte de uma coleção em uma nova coleção, selecionada do índice *startFrom* ao índice *end* (end não incluído). Esta função devolve uma *cópia superficial* da coleção. Na coleção original é uma coleção partilhada, a coleção retornada também é uma coleção partilhada. > Essa função não modifica a coleção original. -The returned collection contains the element specified by *startFrom* and all subsequent elements up to, but not including, the element specified by *end*. If only the *startFrom* parameter is specified, the returned collection contains all elements from *startFrom* to the last element of the original collection. +A coleção devolvida contém o elemento especificado por *startFrom* e todos os elementos subsequentes até, mas não incluindo, o elemento especificado por *end*. Se apenas for especificado o parâmetro *startFrom*, a coleção devolvida contém todos os elementos desde *startFrom* até ao último elemento da coleção original. - Se *startFrom* < 0, ele é recalculado como *startFrom:=startFrom+length* (é considerado como o deslocamento a partir do final da coleção). -- If the calculated value < 0, *startFrom* is set to 0. +- Se o valor calculado < 0, *startFrom* é definido como 0. - Se *end* < 0 , ele será recalculado como *end:=end+length*. -- If *end < startFrom* (passed or calculated values), the method does nothing. +- Se *end < startFrom* (valores passados ou calculados), o método não fará nada. #### Exemplo @@ -3252,7 +3252,7 @@ The returned collection contains the element specified by *startFrom* and all su #### Descrição -The `.some()` function returns true if at least one element in the collection successfully passed a test implemented in the provided *formula* or *methodName* code. +A função `.some()` retorna true se pelo menos um elemento da coleção passar com êxito em um teste implementado no código *formula* ou *methodName* fornecido. Designa-se a chamada de retorno a ser executada para avaliar os elementos da colecção utilizando qualquer um dos dois: @@ -3269,16 +3269,16 @@ A chamada de retorno recebe os seguintes parâmetros: Pode definir o(s) seguinte(s) parâmetro(s): -- (mandatory if you used a method) *$1.result* (boolean): **true** if the element value evaluation is successful, **false** otherwise. +- (obrigatório se você usou um método) *$1.result* (boolean): **true** se a avaliação do valor do elemento for bem-sucedida, **false** caso contrário. - *$1.stop* (boolean, opcional): **true** para parar o callback do método. O valor retornado é o último calculado. De qualquer forma, no momento em que a função `.some()` encontra o primeiro elemento da coleção retornando true, ela para de chamar o retorno de chamada e retorna **true**. -Por padrão, `.some()` testa toda a coleção. Optionally, you can pass the index of an element from which to start the test in *startFrom*. +Por padrão, `.some()` testa toda a coleção. Opcionalmente pode passar o índice da coleção para a qual iniciar a pesquisa em *startFrom*. - Se *startFrom* >= tamanho da coleção, é retornado **False**, o que significa que a coleção não é testada. -- If *startFrom* < 0, it is considered as the offset from the end of the collection. +- Se *startFrom* < 0, é considerado como a compensação a partir do final da recolha. - Se *startFrom* = 0, a coleção inteira é pesquisada (padrão). @@ -3345,7 +3345,7 @@ If `.sort()` is called with no parameters, only scalar values (number, text, dat 6. collections 7. datas -If you want to sort the collection elements in some other order or sort any type of element, you must supply in *formula* ([Formula object](FunctionClass.md)) or *methodName* (Text) a callback that defines the sort order. O valor de retorno deve ser um booleano que indica a ordem relativa dos dois elementos: **True** se *$1.value* for menor que *$1.value2*, **False** se *$1.value* for maior que *$1.value2*. Pode fornecer parâmetros adicionais a methodName se for necessário. +Se pretender ordenar os elementos da coleção por outra ordem ou ordenar qualquer tipo de elemento, deve fornecer em *formula* ([objeto Formula](FunctionClass.md)) ou *methodName* (Text) uma chamada de retorno que defina a ordem de ordenação. O valor de retorno deve ser um booleano que indica a ordem relativa dos dois elementos: **True** se *$1.value* for menor que *$1.value2*, **False** se *$1.value* for maior que *$1.value2*. Pode fornecer parâmetros adicionais a methodName se for necessário. A chamada de retorno recebe os seguintes parâmetros: @@ -3472,7 +3472,7 @@ Se a coleção contiver objetos, passe o parâmetro *propertyPath* para indicar #### Descrição -The `.unshift()` function inserts the given *value*(s) at the beginning of the collection and returns the modified collection. +A função `.unshift()` insere o(s) \*valu(es) fornecido(s) no início da coleção e retorna a coleção modificada. > Essa função modifica a coleção original. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/CryptoKeyClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/CryptoKeyClass.md index 9eae5d96826d34..ca1f291036cd4d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/CryptoKeyClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/CryptoKeyClass.md @@ -3,13 +3,13 @@ id: CryptoKeyClass title: CryptoKey --- -The `CryptoKey` class in the 4D language encapsulates an asymmetric encryption key pair. +A classe `CryptoKey` da linguagem 4D contém um par de chaves de cifrado assimétrico. Essa classe está disponível no "class store" de `4D`. :::info Veja também -For a comprehensive overview of this class, please refer to the [**CryptoKey: encrypt, decrypt, sign, and verify!**](https://blog.4d.com/cryptokey-encrypt-decrypt-sign-and-verify/) blog post. +Para obter uma visão geral abrangente dessa classe, consulte a postagem do blog [**CryptoKey: criptografar, descriptografar, assinar e verificar!**](https://blog.4d.com/cryptokey-encrypt-decrypt-sign-and-verify/). ::: @@ -42,67 +42,67 @@ For a comprehensive overview of this class, please refer to the [**CryptoKey: en -| Parâmetro | Tipo | | Descrição | -| ---------- | ---------------------------- | --------------------------- | ------------------------------------------------- | -| settings | Object | -> | Settings to generate or load a key pair | -| Resultados | 4D.CryptoKey | <- | Objeto que contém um par de chaves de encriptação | +| Parâmetro | Tipo | | Descrição | +| ---------- | ---------------------------- | --------------------------- | -------------------------------------------------- | +| settings | Object | -> | Parâmetros para gerar ou carregar um par de chaves | +| Resultados | 4D.CryptoKey | <- | Objeto que contém um par de chaves de encriptação | -The `4D.CryptoKey.new()` function creates a new `4D.CryptoKey` object encapsulating an encryption key pair, based upon the *settings* object parameter. It allows to generate a new RSA or ECDSA key, or to load an existing key pair from a PEM definition. +A função `4D.CryptoKey.new()` cria um novo objeto `4D.CryptoKey` que encapsula um par de chaves de criptografia, com base no parâmetro objeto *settings*. Permite gerar uma nova chave RSA o ECDSA, ou carregar um par de chaves existente desde uma definição PEM. #### *parâmetros* -| Propriedade | Tipo | Descrição | -| --------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [type](#type) | text | Defines the type of the key to create:
  • "RSA": generates a RSA key pair, using [.size](#size) as size.
  • "ECDSA": generates an Elliptic Curve Digital Signature Algorithm key pair, using [.curve](#curve) as curve. Note that ECDSA keys cannot be used for encryption but only for signature.
  • "PEM": loads a key pair definition in PEM format, using [.pem](#pem).
  • | -| [curve](#curve) | text | Nome da curva ECDSA | -| [pem](#pem) | text | Definição PEM de uma chave de cifrado a carregar | -| [size](#size) | integer | Tamanho da chave RSA em bits | +| Propriedade | Tipo | Descrição | +| --------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | text | Define o tipo de chave a ser criada:
  • "RSA": gera um par de chaves RSA, usando [.size](#size) como tamanho.
  • "ECDSA": gera um par de chaves Elliptic Curve Digital Signature Algorithm, usando [.curve](#curve) como curva. Note that ECDSA keys cannot be used for encryption but only for signature.
  • "PEM": loads a key pair definition in PEM format, using [.pem](#pem).
  • | +| [curve](#curve) | text | Nome da curva ECDSA | +| [pem](#pem) | text | Definição PEM de uma chave de cifrado a carregar | +| [size](#size) | integer | Tamanho da chave RSA em bits | #### *CryptoKey* -O objeto `CryptoKey` devolvido encapsula um par de chaves de cifrado. It is a shared object and can therefore be used by multiple 4D processes simultaneously. +O objeto `CryptoKey` devolvido encapsula um par de chaves de cifrado. É um objeto compartido e, portanto, pode ser utilizado por vários processos 4D simultaneamente. #### Exemplo 1 -A message is signed by a private key and the signature is verified by the corresponding public key. The following code signs and verifies a simple message signature. +Uma mensagem é assinada por uma chave privada e a assinatura é verificada pela chave pública correspondente. O código a seguir assina e verifica uma assinatura de mensagem simples. - Lado bob: ```4d -// Create the message +// Criar a mensagem $message:="hello world" Folder(fk desktop folder).file("message.txt").setText($message) -// Create a key -$type:=New object("type";"RSA") +// Criar uma chave +$type:=New object("type"; "RSA") $key:=4D.CryptoKey.new($type) -// Get the public key and save it +// Obtenha a chave pública e salve-a Folder(fk desktop folder).file("public.pem").setText($key.getPublicKey()) -// Get signature as base64 and save it +// Obtenha a assinatura como base64 e salve-a Folder(fk desktop folder).file("signature").setText($key.sign($message;$type)) -/*Bob sends the message, the public key and the signature to Alice*/ +/*Bob envia a mensagem, a chave pública e a assinatura para Alice*/ ``` - O lado Alice: ```4d -// Get message, public key & signature +// Obter mensagem, chave pública e assinatura $message:=Folder(fk desktop folder).file("message.txt").getText() $publicKey:=Folder(fk desktop folder).file("public.pem").getText() $signature:=Folder(fk desktop folder).file("signature").getText() -// Create a key -$type:=New object("type";"PEM";"pem";$publicKey) +// Criar uma chave +$type:=New object("type"; "PEM"; "pem";$publicKey) $key:=4D.CryptoKey.new($type) -// Verify signature +// Verificar assinatura If ($key.verify($message;$signature;$type).success) -// The signature is valid +// A assinatura é válida End if ``` @@ -138,7 +138,7 @@ ASSERT($status.success) **.curve** : Text -Defined only for ECDSA keys: the normalised curve name of the key. Normalmente "prime256v1" para ES256 (por defeito), "secp384r1" para ES384, "secp521r1" para ES512. +Definido somente para chaves ECDSA: o nome da curva normalizada da chave. Normalmente "prime256v1" para ES256 (por defeito), "secp384r1" para ES384, "secp521r1" para ES512. @@ -166,21 +166,21 @@ Defined only for ECDSA keys: the normalised -The `.decrypt()` function decrypts the *message* parameter using the **private** key. O algoritmo utilizado depende do tipo da chave. +A função `.encrypt()` criptografa o parâmetro *message* usando a chave **pública**. O algoritmo utilizado depende do tipo da chave. -The key must be a RSA key, the algorithm is RSA-OAEP (see [RFC 3447](https://tools.ietf.org/html/rfc3447)). +A chave deve ser uma chave RSA, o algoritmo é RSA-OAEP (consulte [RFC 3447](https://tools.ietf.org/html/rfc3447)). #### *opções* | Propriedade | Tipo | Descrição | | ----------------- | ---- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | hash | text | Algoritmo Digest a utilizar. Por exemplo: "SHA256", "SHA384", ou "SHA512". | -| encodingEncrypted | text | Encoding used to convert the `message` parameter into the binary representation to decrypt. Pode ser "Base64", ou "Base64URL". Por padrão é "Base64". | +| encodingEncrypted | text | Codificação utilizada para converter o parâmetro `message` na representação binaria a decifrar. Pode ser "Base64", ou "Base64URL". Por padrão é "Base64". | | encodingDecrypted | text | Codificação utilizada para converter a mensagem binário decifrado na string de resultados. Pode ser "UTF-8", "Base64" ou "Base64URL". Por padrão é "UTF-8". | #### *Resultado* -The function returns a status object with `success` property set to `true` if the *message* could be successfully decrypted. +A função retorna um objeto status com a propriedade `success` definida como `true` se a *mensagem* puder ser descriptografada com êxito. | Propriedade | Tipo | Descrição | | ----------- | ---------- | ------------------------------------------------------------------------ | @@ -188,7 +188,7 @@ The function returns a status object with `success` property set to `true` if th | resultado | text | Mensagem decifrado e decodificado utilizando `options.encodingDecrypted` | | errors | collection | Se `success` for `false`, pode conter uma coleção de erros | -In case the *message* couldn't be decrypted because it was not encrypted with the same key or algorithm, the `status` object being returned contains an error collection in `status.errors`. +Caso a *mensagem* não possa ser descriptografada porque não foi criptografada com a mesma chave ou algoritmo, o objeto `status` que está sendo retornado contém uma coleção de erros em `status.errors`. @@ -216,17 +216,17 @@ In case the *message* couldn't be decrypted because it was not encrypted with th -The `.encrypt()` function encrypts the *message* parameter using the **public** key. O algoritmo utilizado depende do tipo da chave. +A função `.decrypt()` descriptografa o parâmetro *message* usando a chave **privada**. O algoritmo utilizado depende do tipo da chave. -The key must be a RSA key, the algorithm is RSA-OAEP (see [RFC 3447](https://tools.ietf.org/html/rfc3447)). +A chave deve ser uma chave RSA, o algoritmo é RSA-OAEP (consulte [RFC 3447](https://tools.ietf.org/html/rfc3447)). ##### *opções* -| Propriedade | Tipo | Descrição | -| ----------------- | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| hash | text | Algoritmo Digest a utilizar. Por exemplo: "SHA256", "SHA384", ou "SHA512". | -| encodingEncrypted | text | Codificação utilizada para converter a mensagem binária criptografada na string resultante. Pode ser "Base64", ou "Base64URL". Por padrão é "Base64". | -| encodingDecrypted | text | Encoding used to convert the `message` parameter into the binary representation to encrypt. Pode ser "UTF-8", "Base64" ou "Base64URL". Por padrão é "UTF-8". | +| Propriedade | Tipo | Descrição | +| ----------------- | ---- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| hash | text | Algoritmo Digest a utilizar. Por exemplo: "SHA256", "SHA384", ou "SHA512". | +| encodingEncrypted | text | Codificação utilizada para converter a mensagem binária criptografada na string resultante. Pode ser "Base64", ou "Base64URL". Por padrão é "Base64". | +| encodingDecrypted | text | Codificação usada para converter o parâmetro `message` na representação binária a ser criptografada. Pode ser "UTF-8", "Base64" ou "Base64URL". Por padrão é "UTF-8". | #### *Resultado* @@ -256,7 +256,7 @@ O valor devolvido é uma mensagem encriptada. -The `.getPrivateKey()` function returns the private key of the `CryptoKey` object in PEM format, or an empty string if none is available. +A função ’.getPrivateKey()`retorna a chave privada do objeto`CryptoKey\` no formato PEM ou uma cadeia de caracteres vazia se não houver nenhuma disponível. #### *Resultado* @@ -286,7 +286,7 @@ O valor devolvido é a chave privada. -The `.getPublicKey()` function returns the public key of the `CryptoKey` object in PEM format, or an empty string if none is available. +A função `.getPublicKey()` retorna a chave pública do objeto `CryptoKey` no formato PEM ou uma cadeia de caracteres vazia se não houver nenhuma disponível. #### *Resultado* @@ -334,11 +334,11 @@ Definição PEM de uma chave de cifrado a carregar. Se a chave for uma chave pri | ---------- | ------ | --------------------------- | ------------------------------------------------------------------------------- | | message | Text | -> | String mensagem a assinar | | options | Object | -> | Opções de assinatura | -| Resultados | Text | <- | Signature in Base64 or Base64URL representation, depending on "encoding" option | +| Resultados | Text | <- | Assinatura na representação Base64 ou Base64URL, dependendo da opção "encoding" | -The `.sign()` function signs the utf8 representation of a *message* string using the `CryptoKey` object keys and provided *options*. It returns its signature in base64 or base64URL format, depending on the value of the `options.encoding` attribute you passed. +A função `.sign()` assina a representação utf8 de uma string *message* usando as chaves do objeto `CryptoKey` e as *options* fornecidas. Ele retorna sua assinatura no formato base64 ou base64URL dependendo do valor do atributo `options.encoding` que você passou. A `CryptoKey` deve conter uma chave **privada** válida. @@ -373,7 +373,7 @@ A representação utf8 da string *message*. **.size** : Integer -Defined only for RSA keys: the size of the key in bits. . +Definido somente para chaves RSA: o tamanho da chave em bits. . @@ -391,11 +391,11 @@ Defined only for RSA keys: the size of the k **.type** : Text -Contains the name of the key type - "RSA", "ECDSA", "PEM" . +Contém o nome do tipo de chave - "RSA", "ECDSA", "PEM" . - "RSA": um par de chaves RSA, usando `settings.size` como [.size](#size). -- "ECDSA": an Elliptic Curve Digital Signature Algorithm key pair, using `settings.curve` as [.curve](#curve). Lembre que chaves ECDSA não podem ser usadas para a criptografia mas só pela assinatura. -- "PEM": a key pair definition in PEM format, using `settings.pem` as [.pem](#pem). +- "ECDSA": um par de chaves de Algoritmos de Assinatura Digital de Curva Elíptica, usando `settings.curve` como [.curve](#curve). Lembre que chaves ECDSA não podem ser usadas para a criptografia mas só pela assinatura. +- "PEM": uma definição de par chave em formato PEM, usando `settings.pem` como [.pem](#pem). @@ -413,12 +413,12 @@ Contains the name of the key type - "RSA", " -| Parâmetro | Tipo | | Descrição | -| ---------- | ------ | --------------------------- | ------------------------------------------------------------------------------------------------- | -| message | Text | -> | String de mensagem utilizada para gerar a assinatura | -| signature | Text | -> | Signature to verify, in Base64 or Base64URL representation, depending on `options.encoding` value | -| options | Object | -> | Opções de assinatura | -| Resultados | Object | <- | Estado da verificação | +| Parâmetro | Tipo | | Descrição | +| ---------- | ------ | --------------------------- | ------------------------------------------------------------------------------------------------------------------ | +| message | Text | -> | String de mensagem utilizada para gerar a assinatura | +| signature | Text | -> | Assinatura que vai ser verificada, em representação Base64 ou Base64URL, dependendo do valor de `options.encoding` | +| options | Object | -> | Opções de assinatura | +| Resultados | Object | <- | Estado da verificação | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md index aafe1162e27c9d..f54bdd957e2157 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/DataClassClass.md @@ -1035,6 +1035,20 @@ Não obterá o resultado esperado porque o valor nulo será avaliado por 4D como $vSingles:=ds.Person.query("spouse = null") //sintaxe correta ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //encontra pessoas cujo valor do atributo é false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //encontra atributos false, null e indefinidos +``` + #### Não igual a em colecções Ao pesquisar nos atributos de objectos de classe de dados que contêm colecções, o comparador "não igual a valor" (`#` ou `!=`) encontrará elementos em que TODAS as propriedades são diferentes de valor (e não aqueles em que PELO MENOS uma propriedade é diferente de valor, que é como funcionam outros comparadores). Basicamente, é equivalente à pesquisa por "Not(encontrar elementos da coleção onde a propriedade é igual a *value*"). Por exemplo, com as seguintes entidades: @@ -1205,7 +1219,7 @@ No parâmetro *querySettings* é possível passar um objeto que conteha opções | ------------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | parameters | Object | **Espaços reservados nomeados para valores** usados na *queryString* ou *formula*. Os valores são expressos como pares propriedade / valor, onde propriedade é o nome do marcador de posição inserido para um valor na *queryString* ou na *formula* (":placeholder") e valor é o valor a ser comparado. Pode combinar marcadores de posição indexados (valores passados diretamente em parâmetros de valor) e valores de marcadores de posição com nome na mesma pesquisa. | | attributes | Object | **Espaços reservados nomeados para caminhos de atributos** usados na *queryString* ou *formula*. Os atributos se expressam como pares propriedade/ valor, onde propriedade é o nome do marcador de posição inserido para uma rota de atributo em *queryString* ou *formula* (":placeholder") e valor pode ser uma string ou uma coleção de strings. Cada valor é um caminho que pode designar um escalar ou um atributo relacionado da classe de dados ou uma propriedade em um campo de objeto da classe de dados.
    TipoDescrição
    StringattributePath expresso usando a notação de ponto, por exemplo, "nome" ou "usuario.endereco.cep"
    Coleção de stringsCada string da coleção representa um nível do attributePath, por exemplo, \["nome"] ou \["usuario","endereco","cep"]. Using a collection allows querying on attributes with names that are not compliant with dot notation, e.g. \["4Dv17.1","en/fr"]
    You can mix indexed placeholders (values directly passed in *value* parameters) and named placeholder values in the same query. | -| args | Object | Parámetro(s) a passar para as fórmulas, se houver. The **args** object will be received in $1 within formulas and thus its values will be available through *$1.property* (see example 3). | +| args | Object | Parámetro(s) a passar para as fórmulas, se houver. O objeto **args** será recebido em $1 nas fórmulas e, portanto, seus valores estarão disponíveis através de *$1.property* (ver exemplo 3). | | allowFormulas | Parâmetros | True para permitir as chamadas de fórmulas na pesquisa (padrão). Passe falso para desautorizar a execução de fórmulas. If set to false and `query()` is given a formula, an error is sent (1278 - Formula not allowed in this member method). | | context | Text | Etiqueta para o contexto de otimização automático aplicados à seleção de entidade. Este contexto será utilizado pelo código que maneja a seleção de entidades para que possa se beneficiar da otimização. This feature is designed for client/server processing; for more information, please refer to the [**Client/server optimization**](../ORDA/client-server-optimization.md#optimization-context) section. | | queryPlan | Parâmetros | Na entity selection resultante, devolve ou não a descrição detalhada da pesquisa logo antes de ser executada, ou seja, a pesquisa planificada. A propriedade devolvida é um objeto que inclui cada pesquisa e subpesquisa prevista (no caso de uma pesquisa complexa). Esta opção é útil durante a fase de desenvolvimento de uma aplicação. Geralmente é usada em conjunto com queryPath. Como padrão é omitido: false. | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/DataStoreClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/DataStoreClass.md index b32e27bf35bc84..04c036c019e4c9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/DataStoreClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/DataStoreClass.md @@ -3,7 +3,7 @@ id: DataStoreClass title: DataStore --- -A [Datastore](ORDA/dsMapping.md#datastore) is the interface object provided by ORDA to reference and access a database. Os objetos `Datastore` são retornados pelos seguintes comandos: +Um [Datastore](ORDA/dsMapping.md#datastore) é o objeto de interface fornecido pelo ORDA para fazer referência e acessar um banco de dados. Os objetos `Datastore` são retornados pelos seguintes comandos: - [ds](#ds): um atalho para o datastore principal - [Abrir datastore](#open-datastore): para abrir qualquer datastore remoto @@ -134,10 +134,10 @@ The `Open datastore` command conne Os seguintes datastores remotos são compatíveis com o comando: -| tipo de datastore | Descrição | -| ---------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Aplicação 4D remoto | A 4D application available as a remote datastore, i.e.:
  • its web server is launched with http and/or https enabled,
  • its datastore is exposed to REST ([**Expose as REST server**](REST/configuration.md#starting-the-rest-server) option checked).
  • A license can be required (see note) | -| [Qodly application](https://developer.qodly.com/docs/cloud/getStarted) | Um aplicativo Qodly Server que forneceu a você um **api endpoint** e uma **api key** válida associada a um cargo definido. You must pass the api key in the `api-key` property of the *connectionInfo* object. You can then work with the returned datastore object, with all privileges granted to the associated role. | +| tipo de datastore | Descrição | +| -------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Aplicação 4D remoto | A 4D application available as a remote datastore, i.e.:
  • its web server is launched with http and/or https enabled,
  • its datastore is exposed to REST ([**Expose as REST server**](REST/configuration.md#starting-the-rest-server) option checked).
  • A license can be required (see note) | +| [Aplicação Qodly](https://developer.qodly.com/docs/cloud/getStarted) | Um aplicativo Qodly Server que forneceu a você um **api endpoint** e uma **api key** válida associada a um cargo definido. You must pass the api key in the `api-key` property of the *connectionInfo* object. You can then work with the returned datastore object, with all privileges granted to the associated role. | :::note @@ -145,7 +145,7 @@ Os seguintes datastores remotos são compatíveis com o comando: ::: -Passe em connectionInfo um objeto que desceva o armazém de dados remoto ao que quiser se conectar. It can contain the following properties (all properties are optional except *hostname*): +Passe em connectionInfo um objeto que desceva o armazém de dados remoto ao que quiser se conectar. Pode conter as propriedades abaixo (todas as propriedades são opcionais menos *hostname*): | Propriedade | Tipo | Aplicação 4D remoto | Aplicação Qodly | | ----------- | ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | @@ -650,12 +650,12 @@ A função `.getInfo()` retorna um **Objeto devolvido** -| Propriedade | Tipo | Descrição | -| ----------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| type | string |
  • "4D": repositório de dados principal, disponível por meio do ds
  • "4D Server": repositório de dados remoto, aberto com Open datastore
  • | -| networked | boolean |
  • True: o armazenamento de dados é acessado por meio de uma conexão de rede.
  • False: o armazenamento de dados não é acessado por meio de uma conexão de rede (banco de dados local)
  • | -| localID | text | ID do armazém de dados na máquina. Corresponde à cadeia de caracteres localId fornecida com o comando `Open datastore`. String vazia ("") para o datastore principal. | -| connection | object | Objeto descrevendo a conexão remota da datastore (não retornado para datastore principal) Propriedades disponiveis: Propriedades disponiveis: Propriedades disponíveis:
    PropriedadeTipoDescrição
    hostnametextoEndereço IP ou nome do datastore remoto + ":" + número da porta
    tlsbooleanoTrue se a conexão segura é usada com o datastore remoto
    idleTimeoutnúmeroTempo limite de inatividade da sessão (em minutos)
    usertextoUsuário autenticado no datastore remoto
    | +| Propriedade | Tipo | Descrição | +| ----------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| type | string |
  • "4D": repositório de dados principal, disponível por meio do ds
  • "4D Server": repositório de dados remoto, aberto com Open datastore
  • | +| networked | boolean |
  • True: o armazenamento de dados é acessado por meio de uma conexão de rede.
  • False: o armazenamento de dados não é acessado por meio de uma conexão de rede (banco de dados local)
  • | +| localID | text | ID do armazém de dados na máquina. ID do armazém de dados na máquina. String vazia ("") para o datastore principal. | +| connection | object | Objeto descrevendo a conexão remota da datastore (não retornado para datastore principal) Propriedades disponiveis: Propriedades disponiveis: Objeto descrevendo a conexão remota da datastore (não retornado para datastore principal) Propriedades disponiveis: Propriedades disponiveis: Propriedades disponíveis:
    PropriedadeTipoDescrição
    hostnametextoEndereço IP ou nome do datastore remoto + ":" + número da porta
    tlsbooleanoTrue se a conexão segura é usada com o datastore remoto
    idleTimeoutnúmeroTempo limite de inatividade da sessão (em minutos)
    usertextoUsuário autenticado no datastore remoto
    | - Se a função `.getInfo()` for executada em um servidor 4D ou um único usuário, `networked` é Falso. - Se a função `.getInfo()` for executada em um 4D remoto, `networked` será True @@ -919,7 +919,7 @@ Quando essa função não é chamada, as novas seleções de entidades podem ser A função `.provideDataKey()` permite fornecer uma chave de criptografia de dados para o arquivo de dados atual do armazenamento de dados e detecta se a chave corresponde aos dados criptografados. Esta função pode ser utilizada ao abrir um banco de dados criptografado, ou ao executar qualquer operação de criptografia que precise da chave de criptografia, como por exemplo voltar a criptografar o arquivo de dados. -> - A função `.provideDataKey()` deve ser chamada em um banco de dados criptografado. Se for chamado em um banco de dados não criptografado, o erro 2003 (a chave de criptografia não corresponde aos dados) é retornado. Use o comando `Data file encryption status` para determinar se o banco de dados está criptografado. +> - A função `.provideDataKey()` deve ser chamada em um banco de dados criptografado. Se for chamado em um banco de dados não criptografado, o erro 2003 (a chave de criptografia não corresponde aos dados) é retornado. é retornado. Use o comando `Data file encryption status` para determinar se o banco de dados está criptografado. > - A função `.provideDataKey()` não pode ser chamada de um 4D remoto ou de um datastore remoto criptografado. Se você usar o parâmetro *curPassPhrase*, passe a cadeia de caracteres usada para gerar a chave de criptografia de dados. Quando usar este parâmetro, uma chave de criptografia é gerada. @@ -1159,7 +1159,7 @@ $info:=$ds.getRemoteContextInfo("contextA") O trecho de código a seguir solicita páginas de 30 entidades da classe de dados `Address` do servidor. As entidades devolvidas contêm apenas o atributo `zipCode`. -For each `Address` entity, 20 Persons entities are returned, and they only contain the `lastname` and `firstname` attributes: +Para cada entidade `Address`, 20 entidades Persons são retornadas, e elas contêm apenas os atributos `lastname` e `firstname`: ```4d var $ds : 4D. DataStoreImplementation @@ -1244,7 +1244,7 @@ Para criar um registo de pedidos ORDA do lado do cliente, chame esta função nu #### Do lado do servidor -Para criar um registro de pedidos ORDA no lado do servidor, chame essa função no máquina servidor. Os dados de registro são gravados em um arquivo no formato `.jsonl`. Cada objeto representa um pedido. Se o ficheiro ainda não existir, é criado. No caso contrário, ou seja, se o arquivo já existir, os novos dados de registro serão adicionados a ele. +Para criar um registro de pedidos ORDA no lado do servidor, chame essa função no máquina servidor. Para criar um registro de pedidos ORDA no lado do servidor, chame essa função no máquina servidor. Cada objeto representa um pedido. Se o ficheiro ainda não existir, é criado. No caso contrário, ou seja, se o arquivo já existir, os novos dados de registro serão adicionados a ele. - Se você passou o parâmetro *file*, os dados de registro serão gravados nesse arquivo, no local solicitado. - Se você omitir o parâmetro *file* ou se ele for nulo, os dados de registro serão gravados em um arquivo chamado *ordaRequests.jsonl* e armazenados na pasta "/LOGS". - O parâmetro *opções* pode ser usado para especificar se a resposta do servidor tem de ser registrada e se deve incluir o corpo. Por padrão, quando o parâmetro é omisso, a resposta completa é registrada. As seguintes constantes podem ser utilizadas neste parâmetro: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/Document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/Document.md index 9d240052123f03..a5828ca3ab3e41 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/Document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/Document.md @@ -497,7 +497,7 @@ $copy:=$source.copyTo(Folder("/PACKAGE");fk overwrite) #### Descrição -The `.getContent()` function returns a `4D.Blob` object containing the entire content of a file. For information on BLOBs, please refer to the [BLOB](Concepts/dt_blob.md) section. +The `.getContent()` function returns a `4D.Blob` object containing the entire content of a file. Para obter informações sobre BLOBs, consulte a seção [BLOB](Concepts/dt_blob.md). **Valor retornado** diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/EmailObjectClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/EmailObjectClass.md index a796a25fceeec8..fac2b8fa337902 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/EmailObjectClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/EmailObjectClass.md @@ -10,7 +10,7 @@ Creating, sending or receiving emails in 4D is done by handling an `Email` objec - IMAP - [`.getMail()`](IMAPTransporterClass.md#getmail) and [`.getMails()`](IMAPTransporterClass.md#getmails) functions to get emails from an IMAP server - POP3 - Função [`.getMail()`](POP3TransporterClass.md#getmail) para obter um e-mail de um servidor POP3. -> You can also create a new, blank `Email` object and then fill it with [Email object properties](#email-object). +> Você também pode criar um novo objeto `Email` em branco e preenchê-lo com [propriedades do objeto Email](#email-object). You send `Email` objects using the SMTP [`.send()`](SMTPTransporterClass.md#send) function. @@ -110,7 +110,7 @@ The [`textBody`](#textbody) and [`htmlBody`](#htmlbody) properties are only used The `.attachments` property contains a collection of `4D.MailAttachment` object(s). -Attachment objects are defined through the [`MAIL New attachment`](MailAttachmentClass.md#mail-new-attachment) command. Attachment objects have specific [properties and functions](MailAttachmentClass.md). +Os objetos de anexo são definidos por meio do comando [`MAIL New attachment`](MailAttachmentClass.md#mail-new-attachment). Os objetos anexo têm [propriedades e funções](MailAttachmentClass.md) específicas. ## .bcc @@ -207,7 +207,7 @@ Cada objeto da coleção de cabeçalhos pode conter as propriedades abaixo: | Propriedade | Tipo | Valor | | ---------------------------------------------------------------------------- | ---- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | [].name | text | (mandatory) Header field name as defined in [RFC#5322](https://tools.ietf.org/html/rfc5322). Caso seja nulo ou indefinido, o campo cabeçalho não será adicionado ao cabeçalho MIME. | -| [].value | text | Header field values as defined in [RFC#5322](https://tools.ietf.org/html/rfc5322) | +| [].value | text | Valores do campo de cabeçalho conforme definido em [RFC#5322](https://tools.ietf.org/html/rfc5322) | ## .htmlBody @@ -223,7 +223,7 @@ The `.htmlBody` property contains the unique ID from the IMAP server. @@ -282,7 +282,7 @@ Este cabeçalho geralmente é "lettersOrNumbers@domainname", por exemplo, "abcde #### Descrição -[IMAP transporter](IMAPTransporterClass.md) only. +[IMAP transporter](IMAPTransporterClass.md) unicamente. The `.receivedAt` property contains the timestamp of the email's arrival on the IMAP server in ISO 8601 UTC format (ex: 2020-09-13T16:11:53Z). @@ -333,7 +333,7 @@ Para uma melhor capacidade de entrega, é recomendado usar o mesmo endereço de #### Descrição -[IMAP transporter](IMAPTransporterClass.md) only. +[IMAP transporter](IMAPTransporterClass.md) unicamente. The `.size` property contains the size (expressed in bytes) of the Email object returned by the IMAP server. @@ -475,7 +475,7 @@ The `MAIL Convert to MIME` command creates in memo This function allows you to update entities separately. Note however that, for performance reasons, the new entity shares the same reference of object attributes as the cloned entity. -> Keep in mind that any modifications done to entities will be saved in the referenced record only when the [`.save()`](#save) function is executed. +> Tenha em mente que quaisquer modificações feitas em entidades serão salvas no registro referenciado somente quando a função [`.save()`](#save) for executada. Esta função só pode ser usada com entidades já salvas no banco de dados. Não pode ser chamado em uma entidade recém-criada (para a qual [`.isNew()`](#isnew) retorna **True**). @@ -966,34 +966,34 @@ Otherwise, you can pass the `dk reload if stamp changed` option in the *mode* pa O objeto retornado por `.lock()` contém as seguintes propriedades: -| Propriedade | | Tipo | Descrição | -| --------------------------------- | ----------------------------------- | ---------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| success | | boolean | true se a ação de bloqueio for bem sucedida (ou se a entidade já estiver bloqueada no processo atual), falso caso contrário. | -| | | | ***Disponível somente se a opção `dk reload if stamp changed` for usada:*** | -| **wasReloaded** | | boolean | verdadeiro se a entidade foi recarregada com sucesso, falso caso contrário. | -| | | | ***Disponível apenas em caso de erro:*** | -| status(\*) | | number | Código de erro, ver abaixo | -| statusText(\*) | | text | Descrição do erro, ver abaixo | -| | | | ***Disponível apenas em caso de erro de bloqueio pessimista:*** | -| lockKindText | | text | "Locked by record" se trancado por um processo 4D, "Locked by session" se trancado por uma sessão REST | -| lockInfo | | object | Informações sobre a origem do bloqueio. Retorna propriedades dependendo da origem da trava (processo 4D ou sessão REST) | -| | | | ***Disponível só para um processo trava 4D:*** | -| | task_id | number | Process ID | -| | user_name | text | Nome de usuário de sessão na máquina | -| | user4d_alias | text | Nome ou apelido do usuário 4D | -| | user4d_id | number | Id do usuário no diretório do banco de dados 4D | -| | host_name | text | Nome da máquina | -| | task_name | text | Nome de processo | -| | client_version | text | Versão do cliente | -| | | | ***Disponível só para um processo trava REST:*** | -| | host | text | URL que trava a entidade (por exemplo "www.myserver.com") | -| | IPAddr | text | Endereço IP da trava (por exemplo. "127.0.0.1") | -| | userAgent | text | userAgent of the locker (e.g. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | -| | | | ***Disponível somente em caso de erro grave*** (chave primária já existe, disco cheio...): | -| errors | | uma coleção de objetos | | -| | message | text | Mensagem de erro | -| | assinatura de componentes | text | assinatura interna do componente (ex.: "dmbg" significa componente da base de dados) | -| | errCode | number | Código de erro | +| Propriedade | | Tipo | Descrição | +| --------------------------------- | ----------------------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| success | | boolean | true se a ação de bloqueio for bem sucedida (ou se a entidade já estiver bloqueada no processo atual), falso caso contrário. | +| | | | ***Disponível somente se a opção `dk reload if stamp changed` for usada:*** | +| **wasReloaded** | | boolean | verdadeiro se a entidade foi recarregada com sucesso, falso caso contrário. | +| | | | ***Disponível apenas em caso de erro:*** | +| status(\*) | | number | Código de erro, ver abaixo | +| statusText(\*) | | text | Descrição do erro, ver abaixo | +| | | | ***Disponível apenas em caso de erro de bloqueio pessimista:*** | +| lockKindText | | text | "Locked by record" se trancado por um processo 4D, "Locked by session" se trancado por uma sessão REST | +| lockInfo | | object | Informações sobre a origem do bloqueio. Retorna propriedades dependendo da origem da trava (processo 4D ou sessão REST) | +| | | | ***Disponível só para um processo trava 4D:*** | +| | task_id | number | Process ID | +| | user_name | text | Nome de usuário de sessão na máquina | +| | user4d_alias | text | Nome ou apelido do usuário 4D | +| | user4d_id | number | Id do usuário no diretório do banco de dados 4D | +| | host_name | text | Nome da máquina | +| | task_name | text | Nome de processo | +| | client_version | text | Versão do cliente | +| | | | ***Disponível só para um processo trava REST:*** | +| | host | text | \| \\| URL que trava a entidade (por exemplo "www.myserver.com") \\| \| | +| | IPAddr | text | Endereço IP da trava (por exemplo. "127.0.0.1") | +| | userAgent | text | userAgent of the locker (e.g. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | +| | | | ***Disponível somente em caso de erro grave*** (chave primária já existe, disco cheio...): | +| errors | | uma coleção de objetos | | +| | message | text | Mensagem de erro | +| | assinatura de componentes | text | assinatura interna do componente (ex.: "dmbg" significa componente da base de dados) | +| | errCode | number | Código de erro | (\*) The following values can be returned in the *status* and *statusText* properties of the *Result* object in case of error: @@ -1366,7 +1366,7 @@ No primeiro par|âmetro, passa os atributos entidade a extrair. Pode passar: - *filterString*: a string with property paths separated with commas: "propertyPath1, propertyPath2, ...", or - *filterCol*: a collection of strings: \["propertyPath1","propertyPath2";...] -If a filter is specified for attributes of the relatedEntity [kind](DataClassClass.md#attributename): +Se um filtro for especificado para os atributos onde [kind](DataClassClass.md#attributename) é relatedEntity: - propertyPath = "relatedEntity" -> it is extracted with simple form: an object with property \_\_KEY (primary key). - propertyPath = "relatedEntity.\*" -> todas as propriedades são extraídas @@ -1643,7 +1643,7 @@ The `.touched()` function tests wheth Se um atributo for modificado ou calculado, a função retorna True, senão retorna False. Pode usar essa função para determinar se precisar salvar a entidade. -This function returns False for a new entity that has just been created (with [`.new( )`](DataClassClass.md#new)). Note however that if you use a function which calculates an attribute of the entity, the `.touched()` function will then return True. For example, if you call [`.getKey()`](#getkey) to calculate the primary key, `.touched()` returns True. +Essa função retorna False para uma nova entidade que acabou de ser criada (com [`.new( )`](DataClassClass.md#new)). Note however that if you use a function which calculates an attribute of the entity, the `.touched()` function will then return True. Por exemplo, se você chamar [`.getKey()`](#getkey) para calcular a chave primária, `.touched()` retornará True. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FileClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FileClass.md index a30c781e5a312f..d10f831409a792 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FileClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FileClass.md @@ -703,7 +703,7 @@ $infoPlistFile.setAppInfo($info) #### Descrição -The `.setContent( )` function rewrites the entire content of the file using the data stored in the *content* BLOB. For information on BLOBs, please refer to the [BLOB](Concepts/dt_blob.md) section. +The `.setContent( )` function rewrites the entire content of the file using the data stored in the *content* BLOB. Para obter informações sobre BLOBs, consulte a seção [BLOB](Concepts/dt_blob.md). #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FileHandleClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FileHandleClass.md index 5b77d7943be4ce..80ad7b75281130 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FileHandleClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FileHandleClass.md @@ -3,9 +3,9 @@ id: FileHandleClass title: FileHandle --- -The `FileHandle` class has functions that allow you to sequentially read from or append contents to an opened [`File`](FileClass) object. O manuseamento de um arquivo pode acessar a qualquer parte de um documento. +A classe `FileHandle` tem funções que lhe permitem ler sequencialmente ou anexar conteúdos a um objeto aberto [`File`](FileClass). O manuseamento de um arquivo pode acessar a qualquer parte de um documento. -File handle objects are created with the [`file.open()`](FileClass#open) function. +Os objetos File handle são criados usando a função [`file.open()`](FileClass#open). > To read or write a whole document at once, you might consider using the [file.getText()](FileClass.md#gettext) and [file.setText()](FileClass.md#settext) functions. @@ -216,7 +216,7 @@ Essa propriedade é **somente leitura**. The `.getSize()` function returns the current size of the document, expressed in bytes. -> This function returns the same value as the ([.size](FileClass#size)) property of the `File` class. +> Essa função retorna o mesmo valor que a propriedade ([.size](FileClass#size)) da classe `File`. #### Veja também @@ -275,7 +275,7 @@ Essa propriedade é **leitura/escrita**. :::caution -Quando um identificador de arquivo é criado, o valor `.offset` é um número de bytes. However, the unit of offset measurement differs according to the reading function: with [`readBlob()`](#readblob), `.offset` is a number of bytes, whereas with [`readText()`](#readtext)/[`readLine()`](#readline) it is a number of characters. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. So, if you start reading with `readBlob()` and then call `readText()`, text reading will start at an inconsistent position. It is therefore essential to set the `.offset` property yourself if you switch from reading/writing blob to reading/writing text in the same filehandle. Por exemplo: +Quando um identificador de arquivo é criado, o valor `.offset` é um número de bytes. However, the unit of offset measurement differs according to the reading function: with [`readBlob()`](#readblob), `.offset` is a number of bytes, whereas with [`readText()`](#readtext)/[`readLine()`](#readline) it is a number of characters. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. Por exemplo: ```4d // Open a european text file using utf-16 encoding (two bytes per character) @@ -321,7 +321,7 @@ $s:=$fh.readText() The `.readBlob()` function returns a blob a *bytes* size from the file, starting from the current position . -When this function is executed, the current position ([.offset](#offset)) is updated after the last byte read. +Quando esta função é executada, a posição atual ([.offset](#offset)) é atualizada após a leitura do último byte. #### Veja também @@ -355,11 +355,11 @@ When this function is executed, the current position ([.offset](#offset)) is upd The `.readLine()` function returns a line of text from the current position until an end-of-line delimiter is encountered or the end of the document is reached. -When this function is executed, the current position ([`.offset`](#offset)) is updated. +Quando essa função é executada, a posição atual ([`.offset`](#offset)) é atualizada. :::caution Aviso -This function assumes that the [`.offset`](#offset) property is a number of characters, not a number of bytes. Para obter mais informações, consulte [descrição de .offset](#offset). +Essa função assume que a propriedade [`.offset`](#offset) é um número de caracteres, não um número de bytes. Para obter mais informações, consulte [descrição de .offset](#offset). ::: @@ -400,11 +400,11 @@ The `.readText()` function retur A string de caracteres *stopChar* não está incluída no texto devolvido. Se omitir o parâmetro *stopChar*, todo o texto do documento é devolvido. -When this function is executed, the ([.offset](#offset)) is placed just after the *stopChar* string. +Quando essa função é executada, o ([.offset](#offset)) é colocado logo após a string *stopChar*. :::caution Aviso -This function assumes that the [`.offset`](#offset) property is a number of characters, not a number of bytes. Para obter mais informações, consulte [descrição de .offset](#offset). +Essa função assume que a propriedade [`.offset`](#offset) é um número de caracteres, não um número de bytes. Para obter mais informações, consulte [descrição de .offset](#offset). ::: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FolderClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FolderClass.md index ecd6d790354212..5c46748adba117 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FolderClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FolderClass.md @@ -3,7 +3,7 @@ id: FolderClass title: Folder --- -Os objetos `Folder` são criados com o comando [`Folder`](#folder). Contêm referências a pastas que podem ou não existir efectivamente no disco. Por exemplo, quando executa o comando ’Folder`para criar uma pasta, é criado um objeto válido`Folder` mas nada é realmente armazenado no disco até chamar a função [`folder.create()\`](#create). +Parâmetros Contêm referências a pastas que podem ou não existir efectivamente no disco. Por exemplo, quando executa o comando ’Folder`para criar uma pasta, é criado um objeto válido`Folder` mas nada é realmente armazenado no disco até chamar a função [`folder.create()\\\`](#create). ### Exemplo @@ -78,7 +78,7 @@ Os objetos `Folder` suportam vários pathnames, incluindo a sintaxe `filesystems #### Descrição -O comando `Folder` cria e retorna um novo objeto do tipo `4D.Folder`. O comando aceita duas sintaxes: +Parâmetro O comando aceita duas sintaxes: **Folder ( path { ; pathType } { ; \* } )** @@ -364,7 +364,7 @@ A função `.moveTo( )` move ou renome The *destinationFolder* must exist on disk, otherwise an error is generated. -Por padrão, a pasta mantém o seu nome quando movida. Se quiser renomear a pasta movida, passe o novo nome completo no parâmetro *newName*. O novo nome deve cumprir com as regras de nomenclatura (por exemplo, não deve conter caracteres como ":", "/", etc.), do contrário se devolve um erro. +Por padrão, a pasta mantém o seu nome quando movida. Por padrão, a pasta mantém o seu nome quando movida. O novo nome deve cumprir com as regras de nomenclatura (por exemplo, não deve conter caracteres como ":", "/", etc.), do contrário se devolve um erro. **Objeto devolvido** diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FunctionClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FunctionClass.md index 7721007870f69e..6d39b8b73b3d72 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FunctionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/FunctionClass.md @@ -254,7 +254,7 @@ Chamar uma fórmula usando notação de objeto: The `Formula from string` command creates a `4D.Function` object based upon the *formulaString* and, optionnally, a *context*. *formulaString* can be as simple as a single value or complex, such as a project method with parameters. -This command is similar to [`Formula`](#formula), except that it handles a text-based formula and allows to define an execution context. It is usually recommended to use the `Formula` command, except if the original formula was expressed as text (e.g., stored externally in a JSON file), or if you want to create a formula in a host database while calling `Formula from string` from a component. É altamente recomendável usar a sintaxe com tokens com esse comando. +Esse comando é como [`Formula`](#formula), exceto pelo fato de que ele lida com uma fórmula baseada em texto e permite definir um contexto de execução. Esse comando é como [`Formula`](#formula), exceto pelo fato de que ele lida com uma fórmula baseada em texto e permite definir um contexto de execução. It is usually recommended to use the `Formula` command, except if the original formula was expressed as text (e.g., stored externally in a JSON file), or if you want to create a formula in a host database while calling `Formula from string` from a component. É altamente recomendável usar a sintaxe com tokens com esse comando. > Because local variable contents can not be accessed by name in compiled mode, they can not be used in *formulaString*. An attempt to access a local variable with `Formula from string` will result in an error (-10737). @@ -317,7 +317,7 @@ In the *thisObj* parameter, you can pass a reference to the object to be used as You can also pass a collection to be used as $1...$n parameters in the formula using the optional *formulaParams* parameter. -Note that `.apply()` is similar to [`.call()`](#call) except that parameters are passed as a collection. Isso pode ser útil para passar resultados calculados. +Note que `.apply()` é similar a [`.call()`](#call) exceto que os parâmetros são passados como coleção. Isso pode ser útil para passar resultados calculados. Isso pode ser útil para passar resultados calculados. #### Exemplo 1 diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/HTTPRequestClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/HTTPRequestClass.md index b063b03cad2068..08d919a230f98e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/HTTPRequestClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/HTTPRequestClass.md @@ -142,7 +142,7 @@ In the *options* parameter, pass an object that can contain the following proper | protocol | Text | "auto" ou "HTTP1". "auto" significa HTTP1 na implementação actual | "auto" | | proxyAuthentication | [objeto de autenticação](#authentication-object) | Autenticação por procuração de tratamento de objectos | indefinido | | serverAuthentication | [objeto de autenticação](#authentication-object) | Autenticação do servidor de tratamento de objectos | indefinido | -| returnResponseBody | Parâmetros | If false, the response body is not returned in the [`response` object](#response). Devolve um erro se falso e `onData` é indefinido | True | +| returnResponseBody | Parâmetros | Se false, o corpo de resposta não é retornado no objeto [`response`](#response). Devolve um erro se falso e `onData` é indefinido | True | | timeout | Real | Tempo de espera em segundos. Indefinido = sem timeout | Indefinido | | validateTLSCertificate | Parâmetros | Se false, 4D não valida o certificado TLS e não retorna um erro se ele for inválido (i.e. expirado, auto-assinado...). Importante: Na implementação actual, a Autoridade de Certificação em si não é verificada. | True | @@ -175,7 +175,7 @@ For the callback functions to be called when you do not use [`wait()`](#wait) (a #### objecto evento -An `event` object is returned when a [callback function](#callback-functions) is called. Contém as seguintes propriedades: +Um objeto `event` é retornado quando uma [função de retorno de chamada](#callback-functions) é chamada. Contém as seguintes propriedades: | Propriedade | Tipo | Descrição | | --------------------- | ---- | -------------------------------------------------------------------------------------------------------------------------- | @@ -390,7 +390,7 @@ Um objeto `response` é um objeto não compartilhável. Contém as seguintes pro | Propriedade | Tipo | Descrição | | --------------------------- | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| .body | Diferente de | Corpo da resposta. The type of the message is defined according to the [`dataType`](#datatype) property. Indefinido se o corpo ainda não tiver sido recebido | +| .body | Diferente de | Corpo da resposta. O tipo da mensagem é definido conforme a propriedade [`dataType`](#datatype). Indefinido se o corpo ainda não tiver sido recebido | | .headers | Object | Cabeçalhos da resposta. Os nomes dos cabeçalhos são devolvidos em minúsculas. `.key` = value (value can be a collection if the same key appears multiple times). Indefinido se os cabeçalhos ainda não tiverem sido recebidos. | | .status | Number | Código de estado da resposta | | .statusText | Text | Mensagem que explica o código de estado | @@ -493,6 +493,6 @@ If a *time* parameter is passed, the function will wait at most the defined numb Se a resposta do servidor já tiver chegado, a função regressa imediatamente. -During a `.wait()` execution, callback functions are executed, whether from other `HTTPRequest` or [`SystemWorker`](SystemWorkerClass.md) instances, or other `CALL WORKER` calls. You can exit from a `.wait()` by calling [`terminate()`](#terminate) from a callback. +During a `.wait()` execution, callback functions are executed, whether from other `HTTPRequest` or [`SystemWorker`](SystemWorkerClass.md) instances, or other `CALL WORKER` calls. Você pode sair de um `.wait()` chamando [`terminate()`](#terminate) de um retorno de chamada. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/MailAttachmentClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/MailAttachmentClass.md index 8bff109d010bfc..df8a76f9b45311 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/MailAttachmentClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/MailAttachmentClass.md @@ -59,7 +59,7 @@ Para definir o anexo, pode utilizar: - um *blob*, passe um objeto `4D.Blob` contendo o próprio anexo. - se usar *path*, passe um valor **text** contendo a rota do arquivo anexo, expresso com a sintaxe sistema. Pode passar um nome de rota completo ou um nome de arquivo simples (em cujo caso 4D vai pesquisar para o arquivo no mesmo diretório como o arquivo projeto). -The optional *name* parameter lets you pass the name and extension to be used by the mail client to designate the attachment. Se *name* for omitido e: +Pode passar uma rota ou um Blob para definir o anexo. Se *name* for omitido e: - passar uma rota de arquivo, o nome e extensão do arquivo é usado, - passar um BLOB, um nome aleatório sem extensão é gerado automaticamente. @@ -195,7 +195,7 @@ $transporter.send($email) #### Descrição -The `4D.MailAttachment.new()` function creates and returns a new object of the `4D.MailAttachment` type. It is identical to the [`MAIL New attachment`](#mail-new-attachment) command (shortcut). +The `4D.MailAttachment.new()` function creates and returns a new object of the `4D.MailAttachment` type. Ele é idêntico ao comando (atalho) [`MAIL New attachment`](#mail-new-attachment). ## .cid @@ -230,7 +230,7 @@ The `.disposition` property contains returns the contents of the attachment object in a `4D.Blob` object. You can use this method with attachment objects received by the [`MAIL Convert from MIME`](EmailObjectClass.md#mail-convert-from-mime) command. +The `.getContent()` function returns the contents of the attachment object in a `4D.Blob` object. Você pode usar esse método com objetos de anexo recebidos pelo comando [`MAIL Convert from MIME`](EmailObjectClass.md#mail-convert-from-mime). ## .name diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/POP3TransporterClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/POP3TransporterClass.md index 1e08072c332c96..ed1a51c63258fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/POP3TransporterClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/POP3TransporterClass.md @@ -170,7 +170,7 @@ The `4D.POP3Transporter.new()` function flags the *msgNumber* email for deletion from the POP3 server. -No parâmetro *msgNumber*, passe o número do email a apagar. This number is returned in the number property by the [`.getMailInfoList()`](#getmailinfolist) method. +No parâmetro *msgNumber*, passe o número do email a apagar. Esse número é retornado na propriedade number pelo método [`.getMailInfoList()`](#getmailinfolist). Executar esse método não remove de verdade qualquer email. The flagged email will be deleted from the POP3 server only when the `POP3_transporter` object (created with `POP3 New transporter`) is destroyed. A marcação pode ser removida com o método `.undeleteAll()`. @@ -269,9 +269,9 @@ O objeto `boxInfo` retornado contém as seguintes propriedades: The `.getMail()` function returns the `Email` object corresponding to the *msgNumber* in the mailbox designated by the [`POP3 transporter`](#pop3-transporter-object). Essa função permite manejar localmente os conteúdos de email. -Pass in *msgNumber* the number of the message to retrieve. This number is returned in the `number` property by the [`.getMailInfoList()`](#getmailinfolist) function. +Pass in *msgNumber* the number of the message to retrieve. Esse número é retornado na propriedade `number` pela função [`.getMailInfoList()`](#getmailinfolist). -Optionally, you can pass `true` in the *headerOnly* parameter to exclude the body parts from the returned `Email` object. Only headers properties ([`headers`](EmailObjectClass.md#headers), [`to`](EmailObjectClass.md#to), [`from`](EmailObjectClass.md#from)...) são então retornados. Esta opção permite-lhe optimizar a etapa de descarregamento quando muitos e-mails estão no servidor. +Optionally, you can pass `true` in the *headerOnly* parameter to exclude the body parts from the returned `Email` object. Somente propriedades de cabeçalhos ([`headers`](EmailObjectClass.md#headers), [`to`](EmailObjectClass.md#to), [`from`](EmailObjectClass.md#from)...) são então retornados. Esta opção permite-lhe optimizar a etapa de descarregamento quando muitos e-mails estão no servidor. :::note @@ -334,7 +334,7 @@ Se quiser saber o emissário do primeiro email da mailbox: The `.getMailInfo()` function returns a `mailInfo` object corresponding corresponding to the *msgNumber* in the mailbox designated by the [`POP3 transporter`](#pop3-transporter-object). Essa função permite que recupere informação sobre o email. -In *msgNumber*, pass the number of the message to retrieve. This number is returned in the number property by the [`.getMailInfoList()`](#getmailinfolist) method. +In *msgNumber*, pass the number of the message to retrieve. Esse número é retornado na propriedade number pelo método [`.getMailInfoList()`](#getmailinfolist). The `mailInfo` object returned contains the following properties: @@ -459,7 +459,7 @@ Se quiser saber o número total e tamanho dos emails nas mailbox: The `.getMIMEAsBlob()` function returns a BLOB containing the MIME contents for the message corresponding to the *msgNumber* in the mailbox designated by the [`POP3_transporter`](#pop3-transporter-object). -In *msgNumber*, pass the number of the message to retrieve. This number is returned in the number property by the [`.getMailInfoList()`](#getmailinfolist) method. +In *msgNumber*, pass the number of the message to retrieve. Esse número é retornado na propriedade number pelo método [`.getMailInfoList()`](#getmailinfolist). O método retorna uma BLOB vazia se: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/SMTPTransporterClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/SMTPTransporterClass.md index ecd17c702945f3..3bf4523158318b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/SMTPTransporterClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/SMTPTransporterClass.md @@ -54,12 +54,12 @@ SMTP Transporter objects are instantiated with the [SMTP New transporter](#smtp- The `SMTP New transporter` command configures a new SMTP connection according to the *server* parameter and returns a new *[SMTP transporter](#smtp-transporter-object)* object. O objecto transportador devolvido será então normalmente utilizado para enviar mensagens de correio electrónico. -> Este comando não abre qualquer ligação com o servidor SMTP. The SMTP connection is actually opened when the [`.send()`](#send) function is executed. +> Este comando não abre qualquer ligação com o servidor SMTP. A ligação SMTP é efetivamente aberta quando a função [`.send()`](#send) é executada. > > A coleção SMTP é automaticamente fechada: > -> - when the transporter object is destroyed if the [`keepAlive`](#keepalive) property is true (default), -> - after each [`.send( )`](#send) function execution if the [`keepAlive`](#keepalive) property is set to false. +> - quando o objeto transporter for destruído se a propriedade [`keepAlive`](#keepalive) for true (padrão), +> - após cada execução da função [`.send( )`](#send) se a propriedade [`keepAlive`](#keepalive) estiver definida como false. No parâmetro server, passe um objeto contendo as propriedades abaixo: @@ -81,7 +81,7 @@ No parâmetro server, passe um objeto contendo as propriedades abaixo: #### Resultados -A função retorna um [**objeto SMTP transporter**](#smtp-transporter-object). Todas as propriedades retornadas são **apenas leitura**. +Parâmetro Todas as propriedades retornadas são **apenas leitura**. #### Exemplo @@ -223,7 +223,7 @@ The `.send()` function sends th > The `transporter` object must have already been created using the `SMTP New transporter` command. -O método cria a ligação SMTP se esta ainda não estiver viva. If the `.keepAlive` property of the `transporter` object is **false**, the SMTP connection is automatically closed after the execution of `.send()`, otherwise it stays alive until the `transporter` object is destroyed. For more information, please refer to the [`SMTP New transporter`](#smtp-new-transporter) command description. +O método cria a ligação SMTP se esta ainda não estiver viva. If the `.keepAlive` property of the `transporter` object is **false**, the SMTP connection is automatically closed after the execution of `.send()`, otherwise it stays alive until the `transporter` object is destroyed. Para obter mais informações, consulte a descrição do comando [`SMTP New transporter`](#smtp-new-transporter). Em *mail*, passe um objeto [`Email`](EmailObjectClass.md#email-object) válido para enviar. As propriedades de origem (de onde vem o e-mail) e de destino (um ou mais destinatários) devem ser incluídas, as restantes propriedades são opcionais. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/SessionClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/SessionClass.md index 64f217a6004696..a64f7484af7713 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/SessionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/SessionClass.md @@ -96,7 +96,7 @@ Para mais informações em sessões usuários remotos, consulte o parágrafo [** Todos os processos de procedimento armazenado compartilham a mesma sessão de usuário virtual. O objeto `Session` de procedimentos armazenados está disponível em: -- methods called with the [`Execute on server`](https://doc.4d.com/4dv20/help/command/en/page373.html) command, +- métodos chamados com o comando [`Execute on server`](https://doc.4d.com/4dv20/help/command/en/page373.html), - `On Server Startup`, `On Server Shutdown`, `On Backup Startup`, `On Backup Shutdown`, and `On System event` database methods For information on stored procedures virtual user session, please refer to the [4D Server and the 4D Language](https://doc.4d.com/4Dv20R5/4D/20-R5/4D-Server-and-the-4D-Language.300-6932726.en.html) page. @@ -243,7 +243,7 @@ Privileges are assigned to a Session using the [`setPrivileges()`](#setprivilege #### Exemplo -The following [`roles.json`](../ORDA/privileges.md#rolesjson-file) has been defined: +O seguinte arquivo [`roles.json`](../ORDA/privileges.md#rolesjson-file) foi definido: ```json { @@ -448,18 +448,18 @@ The `.info` object is the same object as the one returned by the [`Get process a The `.info` object contains the following properties: -| Propriedade | Tipo | Descrição | -| ---------------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| type | Text | Tipo de sessão: "remote" ou "storedProcedure" | -| userName | Text | Nome de usuário 4D (o mesmo valor que [`.userName`](#username)) | -| machineName | Text | Sessões remotas: nome da máquina remota. Sessão de procedimentos armazenados: nome da máquina do servidor | -| systemUserName | Text | Sessões remotas: nome da sessão do sistema aberta na máquina remota. | -| IPAddress | Text | Endereço IP da máquina remota | -| hostType | Text | Tipo de host: "windows" ou "mac" | -| creationDateTime | Date ISO 8601 | Data e hora de criação da sessão | -| state | Text | Estado da sessão: "ativa", "adiada", "em espera" | -| ID | Text | UUID da sessão (mesmo valor que [`.id`](#id)) | -| persistentID | Text | ID persistente da sessão | +| Propriedade | Tipo | Descrição | +| ---------------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | +| type | Text | Tipo de sessão: "remote" ou "storedProcedure" | +| userName | Text | Nome de usuário 4D (o mesmo valor que [`.userName`](#username)) | +| machineName | Text | Sessões remotas: nome da máquina remota. Sessões remotas: nome da máquina remota. | +| systemUserName | Text | Sessões remotas: nome da sessão do sistema aberta na máquina remota. | +| IPAddress | Text | Endereço IP da máquina remota | +| hostType | Text | Tipo de host: "windows" ou "mac" | +| creationDateTime | Date ISO 8601 | Data e hora de criação da sessão | +| state | Text | Estado da sessão: "ativa", "adiada", "em espera" | +| ID | Text | UUID da sessão (mesmo valor que [`.id`](#id)) | +| persistentID | Text | ID persistente da sessão | :::note @@ -563,15 +563,15 @@ The `.setPrivileges()` function contains the encoding of the response body content. Esta propriedade só está disponível se o [`dataType`](#datatype) for "text". +The `.exitCode` property contains the exit code returned by the external process. Parâmetro Essa propriedade é **somente leitura**. @@ -396,7 +396,7 @@ Se não ocorrer nenhum erro, `.errors` será undefined. #### Descrição -The `.exitCode` property contains the exit code returned by the external process. Se o processo não tiver terminado normalmente, `exitCode` é *undefined*. +Parâmetro Se o processo não tiver terminado normalmente, `exitCode` é *undefined*. Essa propriedade é **somente leitura**. @@ -447,7 +447,7 @@ Essa propriedade é **somente leitura**. #### Descrição -The `.postMessage()` function allows you to write on the input stream (stdin) of the external process. No parâmetro *message*, passe o texto a ser escrito em *stdin*. +Parâmetro No parâmetro *message*, passe o texto a ser escrito em *stdin*. The `.postMessage()` function also accepts a Blob type value in *messageBLOB* to pass in *stdin*, so that you can post binary data. @@ -465,7 +465,7 @@ You can use the `.dataType` property of the [options object](#options-object) to The `.response` property contains the concatenation of all data returned once the request is terminated, i.e. the full message received from the process output. -The type of the message is defined according to the [`dataType`](#datatype) attribute. +O tipo da mensagem é definido conforme o atributo [`dataType`](#datatype). Essa propriedade é **somente leitura**. @@ -565,7 +565,7 @@ Em *timeout*, passe um valor em segundos. The `SystemWorker` script will wait fo Actually, `.wait()` waits until the end of processing of the `onTerminate` formula, except if the *timeout* is reached. Se *timeout* for alcançado, o `SystemWorker` não é morto. -During a `.wait()` execution, callback functions are executed, especially callbacks from other events or from other `SystemWorker` instances. You can exit from a `.wait()` by calling [`terminate()`](#terminate) from a callback. +During a `.wait()` execution, callback functions are executed, especially callbacks from other events or from other `SystemWorker` instances. Você pode sair de um `.wait()` chamando [`terminate()`](#terminate) de um retorno de chamada. Esta função devolve o objecto SystemWorker. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebServerClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebServerClass.md index 9e2aa8c3336d65..071080b22a38f9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebServerClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebServerClass.md @@ -7,7 +7,7 @@ The `WebServer` class API allows you to start and monitor a web server for the m ### Objeto Web Server -Web server objects are instantiated with the [`WEB Server`](#web-server) command. +Os objetos servidor Web são instanciados com o comando [`WEB Server`](#web-server). Eles oferecem as propriedades abaixo e funções: @@ -84,7 +84,7 @@ By default, if the *option* parameter is omitted, the command returns a referenc | Parâmetros | Valor | Comentário | | -------------------------------------------- | ----- | ------------------------------------------------------------------------------ | | `Web server database` | 1 | Servidor Web de banco de dados atual (padrão caso omitido) | -| `.keepSession` | 2 | Servidor Web do banco de dados de host de um componente | +| Parâmetros | 2 | Servidor Web do banco de dados de host de um componente | | `Solicitação de recebimento do servidor web` | 3 | Servidor web que recebeu o pedido (servidor Web de destino) | O objeto Servidor Web retornado contém os valores atuais das propriedades do Servidor Web. @@ -131,7 +131,7 @@ Uma aplicação 4D pode conter em qualquer lugar de um a vários servidores Web: All available Web servers are returned by the `WEB Server list` command, whether they are actually running or not. -> O objeto do servidor Web padrão é carregado automaticamente pelo 4D na inicialização. On the other hand, each component Web server that you want to use must be instantiated using the [`WEB Server`](#web-server) command. +> O objeto do servidor Web padrão é carregado automaticamente pelo 4D na inicialização. Parâmetros You can use the [.name](#name) property of the Web server object to identify the project or component to which each Web server object in the list is attached. @@ -161,7 +161,7 @@ A propriedade **.accessKeyDefined** contém **.certificateFolder** : Text -Path of the folder where the certificate files are located. O caminho está formatado no caminho completo POSIX usando sistemas de arquivos. When using this property in the `settings` parameter of the [`.start()`](#start) function, it can be a [`Folder` object](FolderClass.md). +Path of the folder where the certificate files are located. O caminho está formatado no caminho completo POSIX usando sistemas de arquivos. Ao usar essa propriedade no parâmetro `settings` da função [`.start()`](#start), ela pode ser um objeto [`Folder`](FolderClass.md). @@ -195,7 +195,7 @@ The character set that the 4D W **.cipherSuite** : Text -The cipher list used for the secure protocol. Define a prioridade dos algoritmos de criptografia implementados pelo servidor web 4D. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). See the [ciphers page](https://www.openssl.org/docs/manmaster/man1/ciphers.html) on the OpenSSL site. +The cipher list used for the secure protocol. Define a prioridade dos algoritmos de criptografia implementados pelo servidor web 4D. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). Veja a [página ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) no site OpenSSL. @@ -227,7 +227,7 @@ Contains the list of allowed ho - 192.168.\* - 192.168.\*:8081 - - - + - - - \*.myDomain.com - myProject.myDomain.com diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebSocketClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebSocketClass.md index 63b939949f120a..a2fd1eb5958fd3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebSocketClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebSocketClass.md @@ -193,11 +193,11 @@ The `.send()` function sends *message Os conteúdos seguintes são enviados em função do tipo de *message*: -| Tipo | Conteúdo | -| ------ | -------------------------------------------------------------------------------------------------------------------------------------- | -| Text | Texto em UTF-8 | -| Blob | Dados binários | -| Object | Text in JSON UTF-8 (same result as with [`JSON Stringify`](https://doc.4d.com/4dv20/help/command/en/page1217.html)) | +| Tipo | Conteúdo | +| ------ | --------------------------------------------------------------------------------------------------------------------------------------------- | +| Text | Texto em UTF-8 | +| Blob | Dados binários | +| Object | Texto em JSON UTF-8 (o mesmo resultado que com [`JSON Stringify`](https://doc.4d.com/4dv20/help/command/en/page1217.html)) | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebSocketConnectionClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebSocketConnectionClass.md index 7ffb07dbc578ce..4ba8da0099714e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebSocketConnectionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/WebSocketConnectionClass.md @@ -80,11 +80,11 @@ The `.send()` function send Os conteúdos seguintes são enviados em função do tipo de *message*: -| Tipo | Conteúdo | -| ------ | --------------------------------------------------------------------------------------------------------------------------------------- | -| Text | Texto em UTF-8 | -| Blob | Dados binários | -| Object | Text in JSON UTF-8 (same result as with [`JSON Stringify`](https://doc.4d.com/4dv19R/help/command/en/page1217.html)) | +| Tipo | Conteúdo | +| ------ | ---------------------------------------------------------------------------------------------------------------------------------------------- | +| Text | Texto em UTF-8 | +| Blob | Dados binários | +| Object | Texto em JSON UTF-8 (o mesmo resultado que com [`JSON Stringify`](https://doc.4d.com/4dv19R/help/command/en/page1217.html)) | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipArchiveClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipArchiveClass.md index fc3e78d666fdc5..5e0f363c174e31 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipArchiveClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipArchiveClass.md @@ -5,7 +5,7 @@ title: ZIPArchive A 4D ZIP archive is a `File` or `Folder` object containing one or more files or folders, which are compressed to be smaller than their original size. Esses arquivos são criados com uma extensão ".zip" e podem ser usados para poupar espaço em disco ou transferir arquivos via meios que tenham limitações de tamanho (por exemplo, um email ou por uma rede). -- You create a 4D ZIP archive with the [ZIP Create archive](#zip-create-archive) command. +- Você cria um arquivo ZIP 4D com o comando [ZIP Create archive](#zip-create-archive). - 4D [`ZIPFile`](ZipFileClass.md) and [`ZIPFolder`](ZipFolderClass.md) instances are available through the [`root`](#root) property (`ZIPFolder`) of the object returned by [ZIP Read archive](#zip-read-archive) command. ### Exemplo @@ -221,7 +221,7 @@ If the *zipFile* is password protected, you need to use the optional *password* **Objeto arquivo** -The returned `4D.ZipArchive` object contains a single [`root`](#root) property whose value is a `4D.ZipFolder` object. Esta pasta descreve todo o conteúdo do ficheiro ZIP. +O objeto retornado `4D.ZipArchive` contém uma única propriedade [`root`](#root) cujo valor é um objeto `4D.ZipFolder`. Esta pasta descreve todo o conteúdo do ficheiro ZIP. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipFileClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipFileClass.md index 989410aa9d3960..7ce4981557cdeb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipFileClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipFileClass.md @@ -3,7 +3,7 @@ id: ZipFileClass title: ZIPFile --- -The following properties and functions from the [File](FileClass.md) class are available to `ZIPFile` objects: +As seguintes propriedades e funções da classe [File](FileClass.md) estão disponíveis para os objetos `ZIPFile`: | APIs disponíveis de [File](FileClass.md) para ZIPFile | Comentário | | ----------------------------------------------------------------------------------- | -------------------------------------- | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipFolderClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipFolderClass.md index 3370ca69187521..8f2525fddd1120 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipFolderClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/ZipFolderClass.md @@ -5,7 +5,7 @@ title: ZIPFolder The following properties and functions from the [Folder](FolderClass.md) class are available to `ZIPFolder` objects: -| Available [Folder](FolderClass.md) APIs for ZIPFolder | Comentário | +| APIs disponíveis de [Folder](FolderClass.md) para ZIPFolder | Comentário | | -------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | | [](FolderClass.md#copyto) | | | [](FolderClass.md#creationdate) | A data pode ser diferente para a pasta `root` de uma pasta dentro do arquivo | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/overview.md index c525b49a8b52d7..79f88578c528a9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/API/overview.md @@ -19,4 +19,4 @@ As seguintes convenções são utilizadas na sintaxe da função: ## Veja também -[Classes in the 4D Language](../Concepts/classes.md). +[Classes na linguagem 4D](../Concepts/classes.md). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_number.md index d064d550ca32c5..7764e6107e7b5d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_number.md @@ -69,7 +69,7 @@ O operador do módulo % divide o primeiro número pelo segundo número e devolve :::warning -O operador do módulo % devolve valores significativos com números que se encontram na gama do Long Integer (de menos 2^31 a 2^31 menos um). To calculate the modulo with numbers outside of this range, use the [`Mod`(https://doc.4d.com/4dv20/help/command/en/page98.html)] command. +O operador do módulo % devolve valores significativos com números que se encontram na gama do Long Integer (de menos 2^31 a 2^31 menos um). Para calcular o módulo com números fora desse intervalo, use o comando [`Mod`](https://doc.4d.com/4dv20/help/command/en/page98.html)]. ::: @@ -79,7 +79,7 @@ O operador da divisão de longint retorna valores significativos apenas com núm ### Comparação real -To compare two reals for equality, the 4D language actually compares the absolute value of the difference with *epsilon*. See the [`SET REAL COMPARISON LEVEL`](https://doc.4d.com/4dv20/help/command/en/page623.html) command. +To compare two reals for equality, the 4D language actually compares the absolute value of the difference with *epsilon*. Veja o comando [`SET REAL COMPARISON LEVEL`](https://doc.4d.com/4dv20/help/command/en/page623.html). :::note diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_time.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_time.md index ea0305486b1576..1bd58a6eb29dcd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_time.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_time.md @@ -35,7 +35,7 @@ Uma hora nula se escreve ?00:00:00? | -------------------- | ------------------------------------- | ---------- | ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------ | | Adição | Hora + Hora | Hora | ?02:03:04? + ?01:02:03? | ?03:05:07? | | Subtração | Hora – Hora | Hora | ?02:03:04? ?02:03:04? | ?01:01:01? | -| Adição | Hora + Número | Number | ?02:03:04? ?01:02:03? | 7449 | +| Adição | Hora + Número | Number | ?02:03:04? ?02:03:04? | 7449 | | Subtração | Hora – Número | Number | ?02:03:04? ?02:03:04? | 7319 | | Multiplicação | Hora \* Número | Number | ?02:03:04? ?02:03:04? | 14768 | | Divisão | Hora / Número | Number | ?02:03:04? ?02:03:04? | 3692 | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_variant.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_variant.md index 0dee44cf2a277b..a73fce16c1223d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_variant.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/dt_variant.md @@ -48,7 +48,7 @@ $t:=Type($v) // 12 (Is variant) $t2:=Type($v2) // 2 (Is text) ``` -Variant can be used to declare [method parameters](parameters.md) that can be of various types. Neste caso, pode construir o seu código testando, por exemplo, o tipo de valor do parâmetro: +A variante pode ser usada para declarar [os parâmetros de método](parameters.md) que podem ser de vários tipos. Neste caso, pode construir o seu código testando, por exemplo, o tipo de valor do parâmetro: ```4d #DECLARE ($param : Variant) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/variables.md index fb45219dd6fb0b..7a27f0dae9ef5f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/variables.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Concepts/variables.md @@ -251,7 +251,7 @@ Em Cliente/Servidor, cada máquina (máquinas Cliente e máquina Servidor) parti A linguagem 4D gerencia diversas **variáveis sistema**, que permitem controlar a execução de diferentes operações. You can test their values and use them as any variable. Todas as variáveis do sistema são [variáveis processo](#process-variables). -System variables are used by [4D commands](commands.md). Refer to the "System variables and sets" paragraph in the description of a command to find out whether it affects a system variable. +As variáveis do sistema são usadas por [comandos 4D](commands.md). Refer to the "System variables and sets" paragraph in the description of a command to find out whether it affects a system variable. | System variable name | Tipo | Descrição | | ------------------------------------------------------ | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | @@ -259,11 +259,11 @@ System variables are used by [4D commands](commands.md). Refer to the "System va | `Document` | Text | Contains the "long name" (full path+name) of the last file opened or created using commands such as [Open document](https://doc.4d.com/4dv20/help/command/en/page264.html) or [SELECT LOG FILE](https://doc.4d.com/4dv20/help/command/en/page345.html). | | `FldDelimit`, `RecDelimit` | Text | Contain the character codes that will be used respectively as a field separator (default is **Tab** (9)) and record separator (default is **carriage return** (13)) when importing or exporting text. Para usar um separador diferente, atribua um novo valor à variável do sistema. | | `Error`, `Error method`, `Error line`, `Error formula` | Text, Longint | Used in an error-catching method installed by the [`ON ERR CALL`](https://doc.4d.com/4dv20/help/command/en/page155.html) command. See [Handling errors within the method](../Concepts/error-handling.md#handling-errors-within-the-method). | -| `MouseDown` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to 1 when the mouse button is pushed, otherwise set to 0. | -| `MouseX`, `MouseY` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command.
  • In a `MouseDown=1` event, `MouseX` and `MouseY` are respectively set to the vertical and horizontal coordinates of the click. Both values are expressed in pixels and use the local coordinate system of the window.
  • In case of a picture field or variable, `MouseX` and `MouseY` return the local coordinates of a mouse click in the [`On Clicked`](../Events/onClicked.md), [`On Double Clicked`](../Events/onDoubleClicked.md) and [`On Mouse Up`](../Events/onMouseUp.md) form events. Local coordinates of the mouse cursor are also returned in the [`On Mouse Enter`](../Events/onMouseEnter.md) and [`On Mouse Move`](../Events/onMouseMove.md) form events. For more information, see the [Mouse Coordinates in a picture](../FormEditor/pictures.md#mouse-coordinates-in-a-picture) section.
  • | -| `KeyCode` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to the character code of the key that was just pressed. If the key is a function key, `KeyCode` is set to a special code. | -| `Modifiers` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to the keyboard modifier keys (Ctrl/Command, Alt/Option, Shift, Caps Lock). | -| `MouseProc` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to the process number in which the last event took place | +| `MouseDown` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to 1 when the mouse button is pushed, otherwise set to 0. | +| `MouseX`, `MouseY` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html).
  • In a `MouseDown=1` event, `MouseX` and `MouseY` are respectively set to the vertical and horizontal coordinates of the click. Both values are expressed in pixels and use the local coordinate system of the window.
  • In case of a picture field or variable, `MouseX` and `MouseY` return the local coordinates of a mouse click in the [`On Clicked`](../Events/onClicked.md), [`On Double Clicked`](../Events/onDoubleClicked.md) and [`On Mouse Up`](../Events/onMouseUp.md) form events. Local coordinates of the mouse cursor are also returned in the [`On Mouse Enter`](../Events/onMouseEnter.md) and [`On Mouse Move`](../Events/onMouseMove.md) form events. For more information, see the [Mouse Coordinates in a picture](../FormEditor/pictures.md#mouse-coordinates-in-a-picture) section.
  • | +| `KeyCode` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to the character code of the key that was just pressed. If the key is a function key, `KeyCode` is set to a special code. | +| `Modifiers` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to the keyboard modifier keys (Ctrl/Command, Alt/Option, Shift, Caps Lock). | +| `MouseProc` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to the process number in which the last event took place | :::note diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md index 3345621f8e88a7..4e69f8c43319bb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/basics.md @@ -70,27 +70,27 @@ A janela de erro de sintaxe propõe várias opções: - **Continuar**: la ejecución continua. A linha com o erro pode ser parcialmente executada, dependendo da localização do erro. Continue com cuidado: o erro pode impedir que o resto do seu método seja executado corretamente. Recomendamos hacer clic en **Continuar** sólo si el error está en una llamada trivial (como `SET WINDOW TITLE`) que no impide ejecutar y probar el resto de su código. -> Consejo: para ignorar un error que ocurre repetidamente (por ejemplo, en bucles), puede convertir el botón **Continuar** en un botón **Ignorar**. Mantenga presionada la tecla **Alt** (Windows) u **Opción** (macOS) y haga clic en el botón **Continuar** la primera vez que aparece. La etiqueta del botón cambia a **Ignorar** si el diálogo es llamado de nuevo por el mismo error. +> Consejo: para ignorar un error que ocurre repetidamente (por ejemplo, en bucles), puede convertir el botón **Continuar** en un botón **Ignorar**. Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. -- **Abandonar**: detiene la ejecución del método y devuelve al estado antes del inicio de la ejecución del método: +- **Abort**: Stops method execution and returns to the state before the method started executing: - Se um método formulário ou um método objeto estiver a ser executado em resposta a um evento, é interrompido e o usuário regressa ao formulário. - Se o método estiver sendo executado a partir do ambiente Application, o usuário regressa a esse ambiente. -- **Copiar**: copia la información de depuración en el portapapeles. A informação descreve o ambiente interno do erro (número, componente interno, etc.). Eles são formatados como texto tabulado. +- **Copy**: Copies the debugging information into the clipboard. A informação descreve o ambiente interno do erro (número, componente interno, etc.). Eles são formatados como texto tabulado. -- **Guardar...**: guarda el contenido de la ventana de error de sintaxis y la cadena de llamadas en un archivo `.txt`. +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## Depurador -Un error común de los principiantes al tratar con la detección de errores es hacer clic en **Abandonar** en la ventana de error de sintaxis, volver al editor de código, y tratar de averiguar lo que está pasando mirando el código. Não faça isso! Ahorrará mucho tiempo y energía utilizando siempre el **Depurador**. +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. Não faça isso! Ahorrará mucho tiempo y energía utilizando siempre el **Depurador**. O depurador permite-lhe percorrer os métodos lentamente. Apresenta todas as informações necessárias para compreender o motivo do erro. Assim que tiver esta informação, saberá como corrigir o erro. -Outra razão para utilizar o depurador é para desenvolver código. Por vezes, pode escrever um algoritmo que é mais complexo do que o habitual. Apesar de todos os sentimentos de realização, não pode ter a certeza absoluta de que a sua codificação está 100% correcta. En lugar de ejecutarlo "ciego", puede utilizar el comando `TRACE` al comienzo de su código, luego ejecutarlo paso a paso para mantener un ojo en lo que sucede. +Outra razão para utilizar o depurador é para desenvolver código. Por vezes, pode escrever um algoritmo que é mais complexo do que o habitual. Apesar de todos os sentimentos de realização, não pode ter a certeza absoluta de que a sua codificação está 100% correcta. Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## Rupturas No processo de depuração, pode ser necessário saltar o rastreio de algumas partes do código até uma determinada linha. O, puede querer rastrear el código cuando una expresión dada tiene un determinado valor (e.. "$myVar > 1000"), o cada vez que se llama un comando 4D específico. -Estas necesidades están cubiertas por **puntos de interrupción** y las funciones de **captura de comando**. Podem ser configurados a partir do editor de código, do depurador ou do explorador de execução. +These needs are covered by **breakpoints** and **command catching** features. Podem ser configurados a partir do editor de código, do depurador ou do explorador de execução. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md index f05e18ef0bafbe..29611310be0543 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugger.md @@ -47,23 +47,23 @@ A barra de ferramentas do depurador inclui vários botões, associados a atalhos Interrompe o modo de rastreamento e retoma o curso normal da execução do método. -> **Shift** + **F5** o **Shift** + clic en el botón **No Trace** retoma la ejecución. Também desativa todas as chamadas TRACE subsequentes para o processo atual. +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. Também desativa todas as chamadas TRACE subsequentes para o processo atual. #### Executar passo a passo Executa a linha de método atual, indicada pelo contador de programa (a seta amarela). O depurador passa para a linha seguinte. -O botão Executar não entra em sub-rotinas e funções, mantém-se ao nível do método que rastreia atualmente. Se você quiser rastrear também as chamadas de subrotinas e funções, use o botão **Step Into**. +O botão Executar não entra em sub-rotinas e funções, mantém-se ao nível do método que rastreia atualmente. If you want to also trace subroutines and functions calls, use the **Step Into** button. -Na depuração remota, se o método for executado no servidor, o método principal é chamado após a execução da última linha do método secundário. Se o método pai for executado no lado remoto, o botão **Step Over** terá o mesmo efeito que o botão **No Trace**. +Na depuração remota, se o método for executado no servidor, o método principal é chamado após a execução da última linha do método secundário. If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### Passo a passo detalhado Quando uma linha que chama outro método (sub-rotina ou função) é executada, clique neste botão para exibir o outro método e percorrê-lo. -O novo método torna-se o atual (topo) método no [Chame Chain Pane](#call-chain-pane) da janela do Depurador. +The new method becomes the current (top) method in the [Call Chain Pane](#call-chain-pane) of the Debugger window. -Ao executar uma linha que não chama outro método, esse botão tem o mesmo efeito que o botão **Step Over**. +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. #### Step Out @@ -84,9 +84,9 @@ Interrompe a execução do método e regressa ao estado anterior ao início da e #### Abortar e editar -O método que está sendo executado quando você clica no botão **Abortar e editar** é aberto no Editor de código. +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Sugestão**: Utilize este botão quando você sabe quais alterações são necessárias no seu código e quando essas alterações são necessárias para prosseguir com o teste dos seus métodos. Quando terminar as alterações, volte a executar o método. +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. Quando terminar as alterações, volte a executar o método. #### Editar @@ -94,7 +94,7 @@ O método executado no momento em que se clica no botão Editar abre-se no Edito Se utilizar este botão para modificar um método, as modificações só entram em vigor na próxima vez que este for executado. -> **Dica:** Use este botão quando você souber quais alterações são necessárias no seu código e quando eles não interferem com o resto do código a ser executado ou rastreado. +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. #### Botão Salvar parâmetros @@ -327,7 +327,7 @@ For more information on the Formula Editor, see the [4D Design Reference manual] - **Excluir tudo**: Remove todas as expressões do Painel de Vigia Personalizado. - **Expressões Padrão**: Copia a lista de expressões do Watch. -> This option is not available in [remote debugging mode](debugging-remote.md). +> Essa opção não está disponível no [modo de depuração remota](debugging-remote.md). - **Recolher tudo/Expandir tudo**: Recolhe ou expande todas as listas hierárquicas. - **Mostrar tipos**: Exibe o tipo de cada item da lista (quando apropriado). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md index 096a5846576a11..fa301c6fe17b48 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Debugging/debugging-remote.md @@ -31,7 +31,7 @@ Tenga en cuenta que los mensajes de error se envían a la máquina depuradora as Note que: -- El código ejecutado en el método `On Server Startup Database` no se puede depurar de forma remota. Só pode ser depurado no lado do servidor +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. Só pode ser depurado no lado do servidor - Se não estiver ligado um depurador, o código em execução não é interrompido pelos comandos de depuração ## Ligar o depurador @@ -47,20 +47,20 @@ Pode anexar o depurador a qualquer cliente 4D remoto autorizado a conectar-se à Para anexar o depurador a um cliente 4D remoto: -1. En la barra de menús de 4D Server, seleccione **Editar** > **Separar depurador** para que el depurador esté disponible para las máquinas remotas (este paso es inútil si 4D Server está funcionando sin interfaz). -2. En un cliente 4D remoto conectado al servidor, seleccione **Ejecutar** > **Adjuntar depurador remoto** +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -Si se acepta el archivo adjunto (ver [Solicitudes de archivo adjunto rechazadas](#rejected-attachment-requests)), el comando de menú se convierte en **Desconectar depurador remoto**. +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. O depurador é então ligado ao cliente 4D remoto: - até ao fim da sessão do usuário -- hasta que se seleccione `Detach Remote Debugger` +- until you select `Detach Remote Debugger` Para ligar o depurador de novo ao servidor: -1. En el cliente 4D remoto que tiene el depurador conectado, seleccione **Ejecutar** > **Separar depurador remoto**. -2. En la barra de menú de 4D Server, seleccione **Editar** > **Adjuntar depurador**. +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > Quando o depurador estiver conectado ao servidor (padrão), todos os processos do servidor são executados automaticamente no modo cooperativo para permitir a depuração. Este fato pode ter um impacto significativo no desempenho. Quando não for necessário depurar na máquina do servidor, recomenda-se desconectar o depurador e anexá-lo a uma máquina remota, se necessário. @@ -68,11 +68,11 @@ Para ligar o depurador de novo ao servidor: 4D permite que você anexe automaticamente o depurador a um cliente 4D remoto ou ao servidor na inicialização: -- En el servidor (si no es headless), esta opción se llama **Attach Debugger At Startup**. Quando o servidor é iniciado, ele anexa automaticamente o depurador (padrão). +- On the server (if not headless), this option is named **Attach Debugger At Startup**. Quando o servidor é iniciado, ele anexa automaticamente o depurador (padrão). -> **Advertencia**: si se selecciona esta opción para un servidor que posteriormente se lanza en modo sin interfaz, el depurador no estará disponible para este servidor. +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- En un cliente 4D remoto, esta opción se llama **Attach Remote Debugger At Startup**. Quando selecionado, o cliente 4D remoto tentará automaticamente anexar o depurador remoto em cada conexão subsequente com o mesmo banco de dados do 4D Server. Si el adjunto es aceptado (ver [Rejected attachment requests](#rejected-attachment-requests)), el depurador remoto se adjunta automáticamente al cliente 4D remoto y se muestra la opción **Detach Remote Debugger**. +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. Quando selecionado, o cliente 4D remoto tentará automaticamente anexar o depurador remoto em cada conexão subsequente com o mesmo banco de dados do 4D Server. If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. > Essa configuração é aplicada por projeto e é armazenada localmente no arquivo [`.4DPreferences`] (Project/architecture.md#userpreferencesusername). @@ -88,5 +88,5 @@ Se uma máquina tentar anexar o depurador enquanto este já estiver anexado, a a A ligação do depurador neste caso exige que: -- el depurador adjunto se separa del servidor o del cliente 4D remoto utilizando respectivamente el comando de menú **Detach debugger** o **Detach remote debugger**, +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - a sessão do cliente remoto 4D anexado é encerrada. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Desktop/building.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Desktop/building.md index 33b909a1f97cac..a3189ed10d64ab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Desktop/building.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Desktop/building.md @@ -369,7 +369,7 @@ A pasta `Cliente` contém a porção do cliente do aplicativo c O conteúdo dessas pastas varia dependendo da plataforma atual: -- *Windows* - Cada pasta contém o arquivo executável da aplicação, chamado `Cliente. xe` para a parte do cliente e `Servidor.exe` para a parte do servidor, bem como os arquivos .rsr correspondentes. As pastas também contêm vários arquivos e pastas necessários para que os aplicativos funcionem e itens personalizados que podem estar na pasta de Volume 4D e no Servidor 4D. +- Se você quiser integrar outros plugins ou componentes na aplicação executável, você só precisa colocá-los em uma pasta **Plugins** ou **Components** ao lado da aplicação 4D Volume Desktop ou ao lado do aplicativo 4D do servidor. As pastas também contêm vários arquivos e pastas necessários para que os aplicativos funcionem e itens personalizados que podem estar na pasta de Volume 4D e no Servidor 4D. - *macOS* - Cada pasta contém apenas o pacote de aplicação, chamado ` Client` para a parte do cliente e ` Server` para a parte do servidor. Cada pacote contém todos os itens necessários para que a aplicação funcione. No macOS, inicie um pacote fazendo duplo clique no mesmo. > Os pacotes macOS construídos contêm os mesmos itens que as subpastas do Windows. Você pode exibir seus conteúdos (**Control+click** no ícone) para poder modificá-los. @@ -391,7 +391,7 @@ Os elementos devem ser instalados: - **no macOS** - **Aplicativo do servidor** - ao lado do pacote de software `Server`. - - **Aplicação de cliente** - ao lado do pacote de software \`cliente. + - **Aplicação de cliente** - ao lado do pacote de software \\`cliente. ### Incorporar uma aplicação cliente usuário único @@ -572,11 +572,11 @@ Para mais informações sobre o conceito de notarização, por favor consulte [e > A Apple, Inc. fornece uma ferramenta específica para a construção de arquivos de ícones *icns* (para mais informações, consulte a [documentação da Apple](https://developer.apple.com/library/archive/documentation/GraphicsAnimation/Conceptual/HighResolutionOSX/Optimizing/Optimizing.html#/apple_ref/doc/uid/TP40012302-CH7-SW2)). -Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão .ico. 4D leva automaticamente este arquivo em conta ao construir o aplicativo clicável duplo (o arquivo *.icns* é renomeado *ApplicationName. cns* e copiados para a pasta Repositório; a entrada *CFBundleFileIcon* do arquivo *info.plist* é atualizada). +Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão *.ico*. 4D leva este arquivo automaticamente em conta ao construir um aplicativo clicável duplo. - **Windows** - Ao construir uma aplicação clicável e dupla, o 4D lida com a personalização do seu ícone. Para fazer isso, você deve criar um arquivo de ícone (*.ico* extensão), antes de construir o arquivo do aplicativo e colocá-lo ao lado da pasta do projeto. -Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão *.ico*. 4D leva este arquivo automaticamente em conta ao construir um aplicativo clicável duplo. +Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão .ico. 4D leva este arquivo automaticamente em conta ao construir um aplicativo clicável duplo. Você também pode definir as [chaves XML](https://doc.4d.com/4Dv17R6/4D/17-R6/4D-XML-Keys-BuildApplication.100-4465602.en.html) específicas no arquivo buildApp.4DSettings para designar cada ícone a usar. Estão disponíveis as seguintes chaves: @@ -670,6 +670,8 @@ A gestão de conexões por aplicativos cliente cobre os mecanismos pelos quais u O procedimento de conexão para aplicativos cliente mesclados suporta casos onde o servidor dedicado não está disponível. O cenário de inicialização de um aplicação cliente 4D é o seguinte: 1. Se informações de conexão válidas forem armazenadas no arquivo "EnginedServer.4DLink" dentro do aplicativo cliente, o aplicativo cliente se conecta ao endereço do servidor especificado.\ + OU + O aplicativo cliente tenta se conectar ao servidor usando o serviço de descoberta (com base no nome do servidor, transmitido na mesma sub-rede).\ OU O aplicativo cliente tenta se conectar ao servidor usando o serviço de descoberta (com base no nome do servidor, transmitido na mesma sub-rede). @@ -704,6 +706,7 @@ Este mecanismo aborda o caso de o servidor principal alvo estar temporariamente Você pode escolher se deseja ou não exibir a caixa de diálogo de seleção padrão do servidor em aplicações cliente mescladas quando o servidor não pode ser alcançado. A configuração depende do valor da chave XML [ServerSelectionAllowed](https://doc.4d.com/4Dv17R6/4D/17-R6/ServerSelectionAllowed.300-4465714.en.html) no computador em que a aplicação foi criada: - **exibir uma mensagem de erro sem acesso possível à caixa de diálogo de seleção do servidor**. Operação padrão. A aplicação só pode encerrar.\ + A aplicação só pode encerrar.\ `ServerSelectionAllowed`: **False** or key omitted ![](../assets/en/Project/connect1.png) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Desktop/clientServer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Desktop/clientServer.md index 5f6765c50eccb1..0fee4521f39426 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Desktop/clientServer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Desktop/clientServer.md @@ -101,7 +101,7 @@ O objeto `session` do usuário remoto está disponível em: - Métodos de projeto que têm o atributo [Execute on Server](../Project/code-overview.md#execute-on-server) (são executados no processo "geminado" do processo do cliente), - Triggers, -- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword, +- ORDA [funções do modelo de dados](../ORDA/ordaClasses.md) (exceto aquelas declaradas com a palavra-chave [`local`](../ORDA/ordaClasses.md#local-functions), - 'Conexão aberta com o servidor' e 'Conexão com o servidor' métodos de banco de dados. :::info diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormEditor/formEditor.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormEditor/formEditor.md index fa084f3cec9685..84496677c644e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormEditor/formEditor.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormEditor/formEditor.md @@ -766,4 +766,4 @@ Pode fazer zoom no formulário atual. Switch to “Zoom” mode by clicking on t No modo Zoom, todas as funções do editor de formulários permanecem disponíveis(\*). -(\*) For technical reasons, it is not possible to select list box elements (headers, columns, footers) when the Form editor is in Zoom mode. +(\*) Por motivos técnicos, não é possível selecionar elementos da caixa de listagem (cabeçalhos, colunas, rodapés) quando o editor de formulários está no modo Zoom. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/button_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/button_overview.md index aa7d97f950f879..8f09d753105585 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/button_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/button_overview.md @@ -38,7 +38,7 @@ O estilo de botão Clássico é um botão padrão do sistema (ou seja, um retân By default, the Regular style has a light gray background with a label in the center. When the cursor hovers over the Regular button style, the border and background color change to demonstrate that it has the focus. In addition to initiating code execution, the Regular button style mimics a mechanical button by quickly changing background color when being clicked. -#### JSON Exemplo +#### Exemplo JSON: ```4d @@ -65,7 +65,7 @@ O estilo de botão Plano é um botão padrão do sistema (ou seja, um retângulo By default, the Flat style has a white background with a label in the center, rounded corners, and a minimalist appearance. The Flat button style's graphic nature is particularly useful for forms that will be printed. -#### JSON Exemplo +#### Exemplo JSON: ```4d @@ -96,7 +96,7 @@ By default, the Toolbar style has a transparent background with a label in the c - *macOS* - o destaque do botão nunca aparece. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -124,7 +124,7 @@ By default, the Bevel style has a light gray background with a label in the cent - *macOS* - o destaque do botão nunca aparece. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -152,7 +152,7 @@ By default, the Rounded Bevel style has a light gray background with a label in - *macOS* - las esquinas del botón están redondeadas. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -180,7 +180,7 @@ By default, the OS X Gradient style has a light gray background with a label in - *macOS* - el botón se muestra como un botón de dos tonos. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -208,7 +208,7 @@ Como padrão, o estilo OS X Textured aparece como: - *macOS* - um botão sistema padrão que mostra uma mudança de cor cinza-claro a cinza-escuro. Sua altura está predefinida: não é possível ampliar ou reduzir. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -236,7 +236,7 @@ As cores (ressaltado e fundo) de um botão com o estilo Office XP são baseadas - *macOS* - its background is always displayed. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -258,7 +258,7 @@ The Help button style can be used to display a standard system help button. By d ![](../assets/en/FormObjects/button_help.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -283,7 +283,7 @@ O estilo de botão Círculo aparece como um botão sistema redondo. Este estilo No Windows, ele é idêntico ao estilo "Nenhum" (o círculo no plano de fundo não é considerado). -#### JSON Exemplo +#### Exemplo JSON: ``` "myButton": { @@ -304,7 +304,7 @@ The Custom button style accepts a personalized background picture and allows man ![](../assets/en/FormObjects/button_custom.png) -#### JSON Exemplo +#### Exemplo JSON: ```code "myButton": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/checkbox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/checkbox_overview.md index e7d63e9e1996b2..975b0a43598e04 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/checkbox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/checkbox_overview.md @@ -32,7 +32,7 @@ Essa propriedade só está disponível para caixas de seleção clássicas e pla A variável associada à caixa de seleção devolve o valor 2 quando a caixa estiver no terceiro estado. -> In entry mode, the Three-States check boxes display each state sequentially, in the following order: unchecked / checked / intermediary / unchecked, etc. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. +> In entry mode, the Three-States check boxes display each state sequentially, in the following order: unchecked / checked / intermediary / unchecked, etc. The intermediary state is generally not very useful in entry mode; in the code, simply force the value of the variable to 0 when it takes the value of 2 in order to pass directly from the checked state to the unchecked state. ## Usar uma ação padrão @@ -87,7 +87,7 @@ O estilo Clássico de caixa de seleção corresponde a um sistema de caixa de se ![](../assets/en/FormObjects/checkbox_regular.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -109,7 +109,7 @@ O estilo de caixa de seleção Plano tem uma aparência minimalista. A natureza ![](../assets/en/FormObjects/checkbox_flat.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -134,7 +134,7 @@ Exemplo com estados selecionado/ não selecionado/ ressaltado: ![](../assets/en/FormObjects/checkbox_toolbar.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -160,7 +160,7 @@ Exemplo com estados selecionado/ não selecionado/ ressaltado: ![](../assets/en/FormObjects/checkbox_bevel.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -188,7 +188,7 @@ Exemplo em macOS: > No Windows, o estilo de botão Rounded Bevel é idêntico ao estilo de botão [Bevel](#bevel). -#### JSON Exemplo +#### Exemplo JSON: ```4d "myCheckBox": { @@ -214,7 +214,7 @@ O estilo Gradient OS X tem um fundo cinza claro com um título e se mostra como > No Windows, esse estilo de botão de caixa de seleção é idêntico ao estilo de botão [Bevel](#bevel). -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -244,7 +244,7 @@ Como padrão, o estilo OS X Textured aparece como: ![](../assets/en/FormObjects/checkbox_osxtextured_mac.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -272,7 +272,7 @@ As cores (ressaltado e fundo) de um botão com o estilo Office XP são baseadas ![](../assets/en/FormObjects/checkbox_officexp_mac.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -307,7 +307,7 @@ O estilo Recolher/Expandir é denominado "disclosure" na [gramática JSON de est ::: -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -339,7 +339,7 @@ O estilo Disclosure é denominado "roundedDisclosure" na [gramática JSON do est ::: -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -363,7 +363,7 @@ O estilo de botão Personalizado aceita uma imagem de fundo personalizada e perm It is usually associated with a [4-state picture](properties_TextAndPicture.md#number-of-states), that can be used in conjunction with a [4-state](properties_TextAndPicture.md#number-of-states) [background picture](properties_TextAndPicture.md#background-pathname). -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckbox": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/groupBox.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/groupBox.md index ee54eaa7477616..6be80dc35ad8df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/groupBox.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/groupBox.md @@ -9,7 +9,7 @@ A group box is a static object that allows you to visually assemble multiple for > O nome de uma caixa de grupo é texto estático; você pode usar uma referência "localizável" como com qualquer rótulo 4D (veja [Usando referências em texto estático](https://doc.4d.com/4Dv17R5/4D/17-R5/Using-references-in-static-text.300-4163725.en.html) e seção *Arquitetura XLIFF* em referência Desenho 4D. -#### JSON Exemplo +#### Exemplo JSON: ``` "myGroup": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/input_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/input_overview.md index a0cfa3e7274dff..ee63fd214d1bef 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/input_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/input_overview.md @@ -13,7 +13,7 @@ Além disso, as entradas podem ser [inserível ou não inserível](properties_En Você pode gerenciar os dados com os [métodos](Concepts/methods.md) objeto ou formulário. -### JSON Exemplo +### Exemplo JSON: ```4d "myText": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/list_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/list_overview.md index 4bc1ced0df11e8..69fec8f050f3b6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/list_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/list_overview.md @@ -41,7 +41,7 @@ Each representation of the list has its own specific characteristics and shares As outras características (fonte, tamanho da fonte, estilo, controle de entrada, cor, conteúdo da lista, ícones, etc.) são comuns a todas as representações e não podem ser modificados separadamente. Consequentemente, quando você usa comandos com base na configuração expandida/colapsada ou no item atual, por exemplo, `Count list items` (quando o parâmetro final `*` não é passado), é importante poder especificar a representação a ser usada sem nenhuma ambiguidade. -Você deve usar o ID `ListRef` com comandos de linguagem quando quiser especificar a lista hierárquica encontrada na memória. On the other hand, if you want to specify the representation of a hierarchical list object at the form level, you must use the object name (string type) in the command, via the standard syntax (\*;"ListName", etc.). +Você deve usar o ID `ListRef` com comandos de linguagem quando quiser especificar a lista hierárquica encontrada na memória. Por outro lado, se você quiser especificar a representação de um objeto lista hierárquica no nível do formulário, deverá usar o nome do objeto (tipo string) no comando, por meio da sintaxe padrão (\*; "ListName", etc.). > In the case of commands that set properties, the syntax based on the object name does not mean that only the form object specified will be modified by the command, but rather that the action of the command will be based on the state of this object. The common characteristics of hierarchical lists are always modified in all of their representations. > Por exemplo, se executa: @@ -80,7 +80,7 @@ Assim como em outros comandos de gerenciamento de propriedades de objetos, é po ## Comandos genéricos utilizáveis com listas hierárquicas -It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. You can pass to these commands either the object name of the hierarchical list (using the \* parameter), or its variable name (containing the ListRef value): +It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. Você pode passar para esses comandos o nome do objeto da lista hierárquica (usando o parâmetro \*) ou o nome da variável (contendo o valor ListRef): - `OBJECT SET FONT` - `OBJECT SET FONT STYLE` diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/listbox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/listbox_overview.md index 0c4da8557c6875..00319728d15c8c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/listbox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/listbox_overview.md @@ -121,7 +121,7 @@ Propriedades compatíveis dependem do tipo de list box. | Propriedade | List box array | List box seleção | List box coleção ou entity selection | | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | ---------------- | ------------------------------------ | | [Cor de fundo alternativa](properties_BackgroundAndBorder.md#alternate-background-color) | X | X | X | -| [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) | X | X | X | +| [Cor de Fundo](properties_BackgroundAndBorder.md#background-color--fill-color) | X | X | X | | [Negrito](properties_Text.md#bold) | X | X | X | | [Expressão de cor de fundo](properties_BackgroundAndBorder.md#background-color-expression) | | X | X | | [Estilo da linha de borda](properties_BackgroundAndBorder.md#border-line-style) | X | X | X | @@ -149,7 +149,7 @@ Propriedades compatíveis dependem do tipo de list box. | [Ocultar linhas em branco extras](properties_BackgroundAndBorder.md#hide-extra-blank-rows) | X | X | X | | [Ocultar retângulo de foco](properties_Appearance.md#hide-focus-rectangle) | X | X | X | | [Ocultar destaque de seleção](properties_Appearance.md#hide-selection-highlight) | X | X | X | -| [Hierarchical List Box](properties_Object.md#array-list-box) | X | | | +| [List Box hierárquico](properties_Object.md#array-list-box) | X | | | | [Highlight Set](properties_ListBox.md#highlight-set) | | X | | | [Alinhamento Horizontal](properties_Text.md#horizontal-alignment) | X | X | X | | [Horizontal Line Color](properties_Gridlines.md#horizontal-line-color) | X | X | X | @@ -176,7 +176,7 @@ Propriedades compatíveis dependem do tipo de list box. | [Row Style Array](properties_Text.md#row-style-array) | X | | | | [Selected Items](properties_DataSource.md#selected-items) | | | X | | [Selection Mode](properties_ListBox.md#selection-mode) | X | X | X | -| [Single-Click Edit](properties_Entry.md#single-click-edit) | X | X | X | +| [Edição com um único clique](properties_Entry.md#single-click-edit) | X | X | X | | [Ordenável](properties_Action.md#sortable) | X | X | X | | [Ação padrão](properties_Action.md#standard-action) | X | | | | [Expressão de estilo](properties_Text.md#style-expression) | | X | X | @@ -520,14 +520,14 @@ Você pode ativar ou desativar a classificação padrão do usuário desativando O suporte de ordenação padrão depende do tipo de list box: -| Tipo de list box | Suporte de ordenação padrão | Comentários | -| ----------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| Uma coleção de objetos | Sim |
    • "This.a" or "This.a.b" columns are sortable.
    • The [list box source property](properties_Object.md#variable-or-expression) must be an [assignable expression](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
    | -| Colecção de valores escalares | Não | Use a classificação personalizada com a função [`orderBy()`](../API/CollectionClass.md#orderby) | -| Seleção de entidades | Sim |
  • A [propriedade de origem da caixa de listagem](properties_Object.md#variable-or-expression) deve ser uma [expressão atribuível](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data
  • .
  • city" quando "data" é um
  • atributo de objeto)
  • Suportado: classifica propriedades de atributos relacionados
  • (por exemplo, "This.company
  • .
  • name"
  • )
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data.city" quando "data" é um atributo de objeto)Suportado
  • : classifica
  • atributos relacionados (por exemplo, "This.company.name")
  • Não suportado: classifica propriedades de atributos de objetos por meio de atributos relacionados (por exemplo, "This.company.data.city"). For this, you need to use custom sort with [`orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) function (see example below)
  • | -| Selecção actual | Sim | Somente expressões simples podem ser classificadas (por exemplo, `[Table_1]Field_2`) | -| Seleção temporal | Não | | -| Arrays | Sim | As colunas ligadas a arrays de imagens e ponteiros não podem ser ordenadas | +| Tipo de list box | Suporte de ordenação padrão | Comentários | +| ----------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Uma coleção de objetos | Sim |
    • "This.a" or "This.a.b" columns are sortable.
    • The [list box source property](properties_Object.md#variable-or-expression) must be an [assignable expression](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
    | +| Colecção de valores escalares | Não | Use a classificação personalizada com a função [`orderBy()`](../API/CollectionClass.md#orderby) | +| Seleção de entidades | Sim |
  • A [propriedade de origem da caixa de listagem](properties_Object.md#variable-or-expression) deve ser uma [expressão atribuível](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data
  • .
  • city" quando "data" é um
  • atributo de objeto)
  • Suportado: classifica propriedades de atributos relacionados
  • (por exemplo, "This.company
  • .
  • name"
  • )
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data.city" quando "data" é um atributo de objeto)Suportado
  • : classifica
  • atributos relacionados (por exemplo, "This.company.name")
  • Não suportado: classifica propriedades de atributos de objetos por meio de atributos relacionados (por exemplo, "This.company.data.city"). Para isso, você precisa usar a classificação personalizada com a função [`orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) (veja o exemplo abaixo)
  • | +| Selecção actual | Sim | Somente expressões simples podem ser classificadas (por exemplo, `[Table_1]Field_2`) | +| Seleção temporal | Não | | +| Arrays | Sim | As colunas ligadas a arrays de imagens e ponteiros não podem ser ordenadas | ### Ordenação personalizada diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/pictureButton_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/pictureButton_overview.md index fd7bbc9ee6004a..eedd5fff78eb74 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/pictureButton_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/pictureButton_overview.md @@ -49,7 +49,7 @@ In addition to the standard positioning and appearance settings, you can set som Estão disponíveis os seguintes outros modos: -- [Loop back to first frame](properties_Animation.md#loop-back-to-first-frame) +- [Loop de volta ao primeiro quadro](properties_Animation.md#loop-back-to-first-frame) - [Volte quando lançado](properties_Animation.md#switch-back-when-released) - [Alterne quando Roll Over] (properties_Animation.md#switch-when-roll-over) - [Alterne continuamente nos cliques](properties_Animation.md#switch-continuously-on-clicks) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_Appearance.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_Appearance.md index 0fee2f271e1704..deeb5cb8359fc5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_Appearance.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_Appearance.md @@ -301,7 +301,7 @@ Quando os controles de aba com uma direção personalizada são exibidos no Wind #### Objectos suportados -[Tab Control](tabControl.md) +[Controle de guias](tabControl.md) --- diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_CoordinatesAndSizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_CoordinatesAndSizing.md index 95e1e07a0a95f0..46835a43cd95ce 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_CoordinatesAndSizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_CoordinatesAndSizing.md @@ -10,7 +10,7 @@ Esta propriedade só está disponível para os list box com as seguintes [fontes - collection ou entity selection, - array (não hierárquico). -A propriedade não está selecionada por padrão. Note that only columns with the option selected will be taken into account to calculate the row height. Note that only columns with the option selected will be taken into account to calculate the row height. +A propriedade não está selecionada por padrão. Quando usado para pelo menos uma coluna, a altura de cada linha na coluna será automaticamente calculada por 4D, e o conteúdo da coluna será levado em consideração. Note that only columns with the option selected will be taken into account to calculate the row height. :::note @@ -122,11 +122,11 @@ Coordenada superior do objecto no formulário. -Defines the corner roundness (in pixels) of the object. By default, the radius value for rectangles is 0 pixels. You can change this property to draw rounded rectangles with custom shapes: +Define o arredondamento do canto (em pixels) do objeto. Por padrão, o valor do raio é 0 pixels. Você pode alterar essa propriedade para desenhar objetos arredondados com formas personalizadas: ![](../assets/en/FormObjects/shape_rectangle.png) -Minimum value is 0, in this case a standard non-rounded rectangle is drawn. +O valor mínimo é 0; nesse caso, um retângulo de objeto padrão não arredondado é desenhado. Maximum value depends on the rectangle size (it cannot exceed half the size of the shortest rectangle side) and is calculated dynamically. :::note diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_DataSource.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_DataSource.md index 16f1ab7e5f9013..db438c2252de08 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_DataSource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_DataSource.md @@ -63,7 +63,7 @@ Lista de valores estáticos a serem usados como etiquetas para o objeto de contr #### Objectos suportados -[Tab Control](tabControl.md) +[Controle de guias](tabControl.md) --- diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_TextAndPicture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_TextAndPicture.md index 35875881d264dd..ed9ab8a6d5d3e2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_TextAndPicture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/properties_TextAndPicture.md @@ -239,7 +239,7 @@ To attach a pop-up menu symbol to a button, there are two display options availa Each option specifies the relation between the button and the attached pop-up menu: -- When the pop-up menu is **separated**, clicking on the left part of the button directly executes the current action of the button; this action can be modified using the pop-up menu accessible in the right part of the button. +- Quando o menu pop-up é **separado**, clicar na parte esquerda do botão executa diretamente a ação atual do botão; essa ação pode ser modificada usando o menu pop-up acessível na parte direita do botão. - Quando o menu pop-up está **vinculado**, um simples clique no botão exibe apenas o menu pop-up. Only the selection of the action in the pop-up menu causes its execution. :::info diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/shapes_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/shapes_overview.md index 3d54859ca69901..60daceb779965b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/shapes_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/shapes_overview.md @@ -19,7 +19,7 @@ O desenho dos retângulos é controlado através de muitas propriedades (cor, es ![](../assets/en/FormObjects/shapes_rectangle2.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myRectangle": { @@ -90,7 +90,7 @@ Uma oval estática é um objeto decorativo para formas. Los objetos ovalados pue ![](../assets/en/FormObjects/shape_oval.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myOval": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/splitters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/splitters.md index 747df9e4ab71c7..b0a9dea25ae196 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/splitters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/splitters.md @@ -18,7 +18,7 @@ Algumas das características gerais do repartidor: Uma vez inserido, o separador aparece como uma linha. You can modify its [border style](properties_BackgroundAndBorder.md#border-line-style-dotted-line-type) to obtain a thinner line or [change its color](properties_BackgroundAndBorder.md#line-color). -#### JSON Exemplo +#### Exemplo JSON: ```4d "mySplitter": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/stepper.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/stepper.md index 0af8dc2d03d2b8..346708f472fed5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/stepper.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/stepper.md @@ -14,7 +14,7 @@ You can assign the variable associated with the object to an enterable area (fie Um stepper pode ser associado diretamente a uma variável número, hora ou data. - For values of the time type, the Minimum, Maximum and Step properties represent seconds. Por exemplo, para definir um passo de 8:00 a 18:00 com passos de 10 minutos: - - [minimum](properties_Scale.md#minimum) = 28 800 (8\*60\*60) + - [mínimo](properties_Scale.md#minimum) = 28 800 (8\*60\*60) - [maximum](properties_Scale.md#maximum) = 64 800 (18\*60\*60) - [step](properties_Scale.md#step) = 600 (10\*60) - For values of the date type, the value entered in the [step](properties_Scale.md#step) property represents days. As propriedades Mínimo e Máximo são ignoradas. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/tabControl.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/tabControl.md index 988a3291bfa87d..07d9c464b38c1a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/tabControl.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/tabControl.md @@ -25,7 +25,7 @@ If the tab control is wide enough to display all the tabs with both the labels a Under macOS, in addition to the standard position (top), the tab controls can also be aligned to the bottom. -### JSON Exemplo +### Exemplo JSON: ```4d "myTab": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md index 75526132b05431..b58e26ce347750 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/FormObjects/text.md @@ -5,7 +5,7 @@ title: Text Um objeto texto permite exibir conteúdo escrito estático (*e.g.*, instruções, títulos, etiquetas, etc.) em um formulário. Estas áreas de texto estático podem se tornar dinâmicas quando incluem referências dinâmicas. Para más información, consulte [Uso de referencias en textos estáticos](https://doc.4d.com/4Dv17R5/4D/17-R5/Using-references-in-static-text.300-4163725.en.html). -#### JSON Exemplo +#### Exemplo JSON: ```4d "myText": { @@ -47,4 +47,4 @@ Quando um texto é rodado, pode continuar a alterar o seu tamanho ou posição, -[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color(properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/GettingStarted/creating.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/GettingStarted/creating.md index 44db95878d4981..bffe57629c42a5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/GettingStarted/creating.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/GettingStarted/creating.md @@ -14,7 +14,7 @@ Para criar um novo projeto de banco de dados: 1. Inicie 4D ou 4D Server. 2. Faça uma das seguintes opções: - - Select **New > Project...** from the **File** menu: ![](../assets/en/getStart/projectCreate1.png) + - Selecione **Novo > Projeto...** no menu **Arquivo**: ![](../assets/en/getStart/projectCreate1.png) - (4D only) Select **Project...** from the **New** toolbar button:

    ![](../assets/en/getStart/projectCreate2.png)

    A standard **Save** dialog appears so you can choose the name and location of the 4D project's main folder. 3. Introduzca el nombre de su carpeta de proyecto y haga clic en **Guardar**. Este nome será utilizado: @@ -72,7 +72,7 @@ Además de las opciones sistema estándar, la caja de diálogo *Abrir* de 4D ofr ### Abrir um projeto com um ficheiro 4DLink -You can use a [`.4DLink` file](#about-4DLink-files) to launch the 4D application and open the target 4D project. Há duas formas de o fazer: +Você pode usar um [arquivo `.4DLink`](#about-4DLink-files) para iniciar a aplicação 4D e abrir o projeto alvo 4D. Há duas formas de o fazer: - haga doble clic o arrastre y suelte el archivo `.4DLink` en la aplicación 4D - vaya a **Archivo** > **Abrir los proyectos recientes** y seleccione un proyecto diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Menus/creating.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Menus/creating.md index 3c8e7ae559f2fe..106528bcbaab1c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Menus/creating.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Menus/creating.md @@ -57,8 +57,8 @@ Para adicionar um item de menu: 1. In the list of source menus, select the menu to which you want to add a command. Se o menu já contiver comandos, eles serão exibidos na lista central. If you want to insert the new command, select the command that you want it to appear above. Você sempre pode reorganizar o menu posteriormente, arrastando e soltando. 2. Elija **Añadir un elemento al menú "NombreDelMenú"** en el menú de opciones del editor o desde el menú contextual (clic derecho en la lista central). - OR - Click on the add ![](../assets/en/Menus/PlussNew.png) button located below the central list. + OU + Clique no botão adicionar ![](../assets/en/Menus/PlussNew.png) localizado abaixo da lista central. 4D adds a new item with the default name “Item X” where X is the number of items already created. 3. Double-click on the name of the command in order to switch it to editing mode and enter a custom name. OR Enter the custom name in the "Title" area. Pode conter até 31 caracteres. Você pode digitar o nome como "código duro" ou insira uma referência (veja abaixo). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ORDA/global-stamp.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ORDA/global-stamp.md index 62830d22d28b58..3b73ca80ab6a9c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ORDA/global-stamp.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ORDA/global-stamp.md @@ -26,7 +26,7 @@ No confunda el **sello de modificación global** con el **sello de entidad** int ## Configurando rastreamento de alterações de dados -By default, the global modification stamp is not created (the [`.getGlobalStamp()`](../API/DataStoreClass.md#getglobalstamp) function returns 0. To enable data change tracking, you need to add special fields and a table to your structure. You can use the contextual menu of the Structure Editor to create automatically all necessary elements. +Por padrão, o carimbo de modificação global não é criado (a função [`.getGlobalStamp()`](../API/DataStoreClass.md#getglobalstamp) retorna 0. To enable data change tracking, you need to add special fields and a table to your structure. You can use the contextual menu of the Structure Editor to create automatically all necessary elements. ### Requisitos de estrutura diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Project/architecture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Project/architecture.md index 4f2cd82a0e24ec..10aea84cb84fc2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Project/architecture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Project/architecture.md @@ -62,7 +62,7 @@ This text file can also contain configuration keys, in particular [`"tokenizedTe | tips.json | Dicas definidas | JSON | | lists.json | Listas definidas | JSON | | filters.json | Filtros definidos | JSON | -| dependencies.json | Names of [components to load](components.md) in the project | JSON | +| dependencies.json | Nomes de [componentes a serem carregados](components.md) no projeto | JSON | | styleSheets.css | Folhas de estilo CSS | CSS | | styleSheets_mac.css | Folhas de estilo css para Mac (de um banco de dados binário convertido) | CSS | | styleSheets_windows.css | Folhas de estilo css em Windows (de um banco de dados binário convertido) | CSS | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Project/documentation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Project/documentation.md index 2cad8bb8986d95..d0ad8aa8ad09b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Project/documentation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/Project/documentation.md @@ -3,11 +3,11 @@ id: documentation title: Documentar um projecto --- -In application projects, you can document your methods as well as your forms, tables, or fields. Creating documentation is particularly appropriate for projects being developed by multiple programmers and is generally good programming practice. Documentation can contain a description of an element as well as any information necessary to understand how the element functions in the application. +Nos projetos de aplicação, você pode documentar seus métodos e suas classes, formulários, tabelas ou campos. Creating documentation is particularly appropriate for projects being developed by multiple programmers and is generally good programming practice. Documentation can contain a description of an element as well as any information necessary to understand how the element functions in the application. Os seguintes elementos do projeto aceitam documentação: -- Methods (database methods, component methods, project methods, form methods, 4D Mobile methods, triggers, and classes) +- Métodos (métodos banco de dados, métodos componentes, métodos projeto, métodos formulário, métodos 4D Mobile e triggers) - Classes - Formulários - Tabela diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/$format.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/$format.md index 79eaae3d7db551..4397613e44d076 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/$format.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/$format.md @@ -11,10 +11,10 @@ This parameter allows you to define the format to use to return data of your dat São suportados os seguintes formatos: -| Formato | Descrição | -| -------- | ------------------------------------------------------------------------------------------------- | -| `json` | Formato padrão do servidor 4D REST (usado por padrão) | -| `looker` | JSON format compliant with the [Looker Studio](https://lookerstudio.google.com/). | +| Formato | Descrição | +| -------- | ------------------------------------------------------------------------------------------------ | +| `json` | Formato padrão do servidor 4D REST (usado por padrão) | +| `looker` | Formato JSON compatível com o [Looker Studio](https://lookerstudio.google.com/). | ## Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/REST_requests.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/REST_requests.md index d741b9ebc2e9a9..dc720cdfc84e33 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/REST_requests.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/REST_requests.md @@ -22,7 +22,7 @@ Como com todas as URIs, o primeiro parâmetro é definido por um “?” e todos Os parâmetros permitem que manipule dados em dataclasses em seu projeto 4D. Además de recuperar datos mediante los métodos HTTP `GET`, también se pueden añadir, actualizar y eliminar entidades de una clase de datos utilizando los métodos HTTP `POST`. -If you want the data to be returned in an array instead of JSON, use the [`$asArray`]($asArray.md) parameter. +Se quiser que os dados sejam retornados em um array em vez de JSON, use o parâmetro [`$asArray`]($asArray.md). ## Estado e resposta REST diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/authUsers.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/authUsers.md index 556a6e1c80affb..e0e48c615af5eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/authUsers.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/authUsers.md @@ -27,7 +27,7 @@ A sequência de login do usuário é a seguinte: 1. At the first REST call (for a Qodly page call for example), a "guest" web user session is created. It has no privileges, no rights to execute requests other than [descriptive REST requests](#descriptive-rest-requests), no license consumption.\ Descriptive REST requests are always processed by the server, even if no web user session using a license is opened. In this case, they are processed through "guest" sessions. -2. You call your [`authentify()` function](#authentify) (created beforehand), in which you check the user credentials and call [`Session.setPrivileges()`](../API/SessionClass.md#setprivileges) with appropriate privileges. `authentify()` must be an exposed [datastore class function](../ORDA/ordaClasses.md#datastore-class). +2. You call your [`authentify()` function](#authentify) (created beforehand), in which you check the user credentials and call [`Session.setPrivileges()`](../API/SessionClass.md#setprivileges) with appropriate privileges. `authentify()` deve ser uma [função de datastore class](../ORDA/ordaClasses.md#datastore-class) exposta. 3. La petición `/rest/$catalog/authentify` se envía al servidor junto con las credenciales del usuario. This step only requires a basic login form that do not access data; it can be a [Qodly page](../WebServer/qodly-studio.md) (called via the `/rest/$getWebForm` request). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/manData.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/manData.md index 2f13834b8cf35d..18526e31a61d79 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/manData.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/REST/manData.md @@ -7,7 +7,7 @@ Todos [los atributos, dataclasses expuestos](configuration.md#exposing-tables-an ## Pesquisas de dados -To query data directly, you can do so using the [`$filter`]($filter.md) function. Por exemplo, para encontrar a pessoa chamada "smith" poderia escrever: +Para consultar os dados diretamente, você pode fazer isso usando a função [`$filter`]($filter.md). Por exemplo, para encontrar a pessoa chamada "smith" poderia escrever: `http://127.0.0.1:8081/rest/Person/?$filter="lastName=Smith"` @@ -15,11 +15,11 @@ To query data directly, you can do so using the [`$filter`]($filter.md) function Com o REST API, pode realizar todas as manipulações de dados que quiser em 4D. -To add and modify entities, you can call [`$method=update`]($method.md#methodupdate). Sintaxe +Para adicionar e modificar entidades, você pode chamar [`$method=update`]($method.md#methodupdate). Sintaxe Besides retrieving a single entity in a dataclass using [\{dataClass\}({key})](dataClass.md#dataclasskey), you can also write a [class function](ClassFunctions.md#function-calls) that returns an entity selection (or a collection). -Before returning a selection, you can also sort it by using [`$orderby`]($orderby.md) one one or more attributes (even relation attributes). +Antes de devolver a coleção, também pode ordená-la utilizando [`$orderby`]($orderby.md) um ou vários atributos (mesmo os atributos de relação). ## Navegando dados @@ -35,7 +35,7 @@ To access the entity set, you must use `$entityset/\{entitySetID\}`, for example `/rest/People/$entityset/0AF4679A5C394746BFEB68D2162A19FF` -By default, an entity set is stored for two hours; however, you can change the timeout by passing a new value to [`$timeout`]($timeout.md). O timeout é continuamente resetado ao valor definido (seja o valor padrão ou um definido por você) a cada vez que for usado. +Por padrão, um conjunto de entidades é armazenado por duas horas; no entanto, você pode alterar o tempo limite passando um novo valor para [`$timeout`]($timeout.md). O timeout é continuamente resetado ao valor definido (seja o valor padrão ou um definido por você) a cada vez que for usado. Se quiser remover um conjunto de entidades do cache de 4D Server, você pode usar [`$method=release`]($method.md#methodrelease). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/application-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/application-server.md index 0efa303d84851c..9c73c94a778a5c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/application-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/application-server.md @@ -33,7 +33,7 @@ Si presiona el botón **Rechazar nuevas conexiones**: - O nome do projeto já não aparece na caixa de diálogo da ligação remota. - Os clientes de ambiente de trabalho que já estão ligados não são desligados e podem continuar a trabalhar normalmente. -> You can perform the same action with the [`REJECT NEW REMOTE CONNECTIONS`](https://doc.4d.com/4dv19/help/command/en/page1635.html) command. +> Você pode executar a mesma ação com o comando [`REJECT NEW REMOTE CONNECTIONS`](https://doc.4d.com/4dv19/help/command/en/page1635.html). - Si presiona el botón **Aceptar nuevas conexiones**, el servidor de aplicaciones vuelve a su estado por defecto. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/real-time-monitor.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/real-time-monitor.md index a56c1b8e800526..cf6c89b0bf1874 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/real-time-monitor.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/real-time-monitor.md @@ -22,7 +22,7 @@ As informações seguintes são fornecidas para cada linha: - **Suboperaciones** (si las hay): operaciones dependientes de la operación seleccionada (por ejemplo, eliminar registros relacionados antes que un registro padre). - **Detalles del proceso**: información adicional relativa a la tabla, campo, proceso o cliente, en función del tipo de operación -> Real-time monitoring page uses the [`GET ACTIVITY SNAPSHOT`](https://doc.4d.com/4dv19/help/command/en/page1277.html) command internally. Para mais informações, consultar a descrição deste comando. +> A página de monitoramento em tempo real usa internamente o comando [`GET ACTIVITY SNAPSHOT`] (https://doc.4d.com/4dv19/help/command/en/page1277.html). Para mais informações, consultar a descrição deste comando. A página está ativa e é atualizada permanentemente assim que é exibida. It should be noted that its operation can significantly slow the execution of the application. It is possible to suspend the updating of this page in one of the following ways: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/users.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/users.md index c2b36ad2446a64..8c24faae495f1b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/users.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ServerWindow/users.md @@ -66,4 +66,4 @@ This button can be used to directly show the processes of the user(s) selected o Este botão pode ser utilizado para forçar a desconexão do(s) usuário(s) selecionado(s). When you click on this button, a warning dialog box appears so that you can confirm or cancel this operation (hold down **Alt** key while clicking on the **Drop user** button to disconnect the selected user(s) directly without displaying the confirmation dialog box). -> You can perfom the same action for remote users with the [`DROP REMOTE USER`](https://doc.4d.com/4dv19/help/command/en/page1633.html) command. +> É possível executar a mesma ação para usuários remotos com o comando [`DROP REMOTE USER`](https://doc.4d.com/4dv19/help/command/en/page1633.html). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/advanced-programming.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/advanced-programming.md index c633ed9258993e..8edf64e58842b1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/advanced-programming.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/advanced-programming.md @@ -12,7 +12,7 @@ Dado que 4D View Pro es alimentado por la [solución de hoja de cálculo SpreadJ Since 4D View Pro is a web area, you can select a webpage element and modify its behavior using Javascript. El siguiente ejemplo oculta la [cinta](./configuring.md#ribbon) spreadJS: ```4d -//Button's object method +//Método objeto do botão var $js; $answer : Text diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-add-formula-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-add-formula-name.md index d6249c5a7b505a..6d655dc2a3958d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-add-formula-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-add-formula-name.md @@ -24,7 +24,7 @@ O comando `VP ADD FORMULA NAME` retorna um novo objeto de intervalo que faz referência a uma célula específica. -> Este comando destina-se a intervalos de uma única célula. To create a range object for multiple cells, use the [VP Cells](vp-cells.md) command. +> Este comando destina-se a intervalos de uma única célula. Para criar um objeto de intervalo para várias células, use o comando [VP Cells](vp-cells.md). Em *vpAreaName*, passe o nome da área 4D View Pro. Se passar um nome que não existe, é devolvido um erro. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-get-workbook-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-get-workbook-options.md index 724c6dd7c26262..14a96d0fa6aa5d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-get-workbook-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-get-workbook-options.md @@ -25,7 +25,7 @@ Em *vpAreaName*, passe o nome da área 4D View Pro. O objeto devolvido contém todas as opções de workbook (padrão e modificadas) no workbook. -The list of workbook options is referenced in [`VP SET WORKBOOK OPTIONS`'s description](vp-set-workbook-options.md). +A lista de opções de pasta de trabalho é referenciada na descrição de [`VP SET WORKBOOK OPTIONS`](vp-set-workbook-options.md). #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-border.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-border.md index 807c4e3036d386..4dd35273bf5673 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-border.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-border.md @@ -56,7 +56,7 @@ VP SET BORDER(VP Cells("ViewProArea";1;1;3;3);$border;$option) #### Exemplo 2 -This code demonstrates the difference between `VP SET BORDER` and setting borders with the [`VP SET CELL STYLE`](vp-set-cell-style.md) command: +Esse código demonstra a diferença entre `VP SET BORDER` e a definição de bordas com o comando [`VP SET CELL STYLE`](vp-set-cell-style.md): ```4d // Set borders using VP SET BORDER diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-formula.md index 0fc67ccd6fea54..dad6e91eb3ec0f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-formula.md @@ -24,9 +24,9 @@ Em *rangeObj*, passe um intervalo de células (criado, por exemplo, com [`VP Cel The *formula* parameter specifies a formula or 4D method name to be assigned to the *rangeObj*. > If the *formula* is a string, use the period `.` as numerical separator and the comma `,` as parameter separator. -> If a 4D method is used, it must be allowed with the [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md) command. +> Se um método 4D for usado, ele deverá ser permitido com o comando [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md). -The optional *formatPattern* defines a [pattern](../configuring.md#cell-format) for the *formula*. +O *formatPattern* opcional define um [padrão](../configuring.md#cell-format) para a *fórmula*. You remove the formula in *rangeObj* by replacing it with an empty string (""). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-formulas.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-formulas.md index de0559a29e96fc..56b36e603b5946 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-formulas.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-formulas.md @@ -26,7 +26,7 @@ O parâmetro *formulasCol* é uma coleção bidimensional: - Cada subcoleção define os valores das células para a linha. Values must be text elements containing the formulas to assign to the cells. > If the formula is a string, use the period `.` as numerical separator and the comma `,` as parameter separator. -> If a 4D method is used, it must be allowed with the [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md) command. +> Se um método 4D for usado, ele deverá ser permitido com o comando [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md). You remove the formulas in *rangeObj* by replacing them with an empty string (""). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-print-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-print-info.md index b58864f38ce14b..ee8a2c6517733e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-print-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-print-info.md @@ -21,7 +21,7 @@ The `VP SET PRINT INFO` command Passe o nome da área 4D View Pro a ser impressa em *vpAreaName*. Se passar um nome que não existe, é devolvido um erro. -You can pass an object containing definitions for various printing attributes in the *printInfo* parameter. To view the full list of the available attributes, see [Print Attributes](../configuring.md#print-attributes). +You can pass an object containing definitions for various printing attributes in the *printInfo* parameter. Para ver a lista completa dos atributos disponíveis, consulte [Atributos de impressão](../configuring.md#print-attributes). In the optional *sheet* parameter, you can designate a specific spreadsheet to print (counting begins at 0). Se omitido, a planilha atual será utilizada por padrão. Você pode selecionar explicitamente a planilha atual com a seguinte constante: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-text-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-text-value.md index 842d3b7903d14c..3a5c11b7c5901d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-text-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-text-value.md @@ -23,7 +23,7 @@ Em *rangeObj*, passe um intervalo de células (criado, por exemplo, com [`VP Cel The *textValue* parameter specifies a text value to be assigned to the *rangeObj*. -The optional *formatPattern* defines a [pattern](../configuring.md#cell-format) for the *textValue* parameter. +O *formatPattern* opcional define um [padrão](../configuring.md#cell-format) para o parâmetro *textValue*. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-time-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-time-value.md index 8929bf9819aa82..4181184d501200 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-time-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-time-value.md @@ -23,7 +23,7 @@ Em *rangeObj*, passe um intervalo de células (criado, por exemplo, com [`VP Cel The *timeValue* parameter specifies a time expressed in seconds to be assigned to the *rangeObj*. -The optional *formatPattern* defines a [pattern](../configuring.md#cell-format) for the *timeValue* parameter. +O *formatPattern* opcional define um [padrão](../configuring.md#cell-format) para o parâmetro *timeValue*. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-values.md index 63b25f978549de..b50a8c78fac060 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-values.md @@ -18,7 +18,7 @@ title: VP SET VALUES The `VP SET VALUES` command assigns a collection of values starting at the specified cell range. -In *rangeObj*, pass a range for the cell (created with [`VP Cell`](vp-cell.md)) whose value you want to specify. The cell defined in the *rangeObj* is used to determine the starting point. +Em *rangeObj*, passe um intervalo para a célula (criada com [`VP Cell`](vp-cell.md)) cujo valor você deseja especificar. The cell defined in the *rangeObj* is used to determine the starting point. > - If *rangeObj* is not a cell range, only the first cell of the range is used. > - If *rangeObj* includes multiple ranges, only the first cell of the first range is used. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-workbook-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-workbook-options.md index 1c6f7226b99b3b..57fba92e78379e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-workbook-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/commands/vp-set-workbook-options.md @@ -52,7 +52,7 @@ A tabela seguinte lista as opções de libro disponíveis: | calcOnDemand | boolean | As fórmulas só são calculadas quando são solicitadas. | | columnResizeMode | number | Modo de redimensionamento de colunas. Available values:
    ConstantValueDescription
    vk resize mode normal 0 Use normal resize mode (i.e remaining columns are affected)
    vk resize mode split 1 Use split mode (i.e remaining columns are not affected)
    | | copyPasteHeaderOptions | number | Cabeçalhos a incluir quando os dados são copiados ou colados. Available values:
    ConstantValueDescription
    vk copy paste header options all headers3 Includes selected headers when data is copied; overwrites selected headers when data is pasted.
    vk copy paste header options column headers 2 Includes selected column headers when data is copied; overwrites selected column headers when data is pasted.
    vk copy paste header options no headers0 Column and row headers are not included when data is copied; does not overwrite selected column or row headers when data is pasted.
    vk copy paste header options row headers1 Includes selected row headers when data is copied; overwrites selected row headers when data is pasted.
    | -| customList | collection | The list for users to customize drag fill, prioritize matching this list in each fill. Cada item da coleção é um conjunto de cadeias de caracteres. See on [SpreadJS docs](https://developer.mescius.com/spreadjs/docs/features/cells/AutoFillData/AutoFillLists). | +| customList | collection | The list for users to customize drag fill, prioritize matching this list in each fill. Cada item da coleção é um conjunto de cadeias de caracteres. Veja na [documentação SpreadJS](https://developer.mescius.com/spreadjs/docs/features/cells/AutoFillData/AutoFillLists). | | cutCopyIndicatorBorderColor | string | Border color for the indicator displayed when the user cuts or copies the selection. | | cutCopyIndicatorVisible | boolean | Apresenta um indicador quando se copia ou corta o item selecionado. | | defaultDragFillType | number | O tipo de preenchimento de arrastamento padrão. Valores disponíveis:
    ConstanteValorDescrição
    vk auto fill type auto5Preenche automaticamente as células.
    vk auto fill type clear values 4 Clears cell values.
    vk auto fill type copycells 0 Fills cells with all data objects, including values, formatting, and formulas.
    vk auto fill type fill formatting only 2 Fills cells only with formatting.
    vk auto fill type fill series 1 Fills cells with series.
    vk auto fill type fill without formatting 3 Preenche as células com valores e sem formatação.
    | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/configuring.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/configuring.md index d066f3b8a6bfd1..660a7987f2870c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/configuring.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/configuring.md @@ -143,7 +143,7 @@ Number formats apply to all number types (e.g., positive, negative, and zeros). | , | Mostra o separador de milhares num número. Thousands are separated by commas if the format contains a comma enclosed by number signs "#" or by zeros. Uma vírgula após um marcador de posição de dígito escala o número por 1.000. | #,0 mostrará 12200000 como 12,200,000 | | \_ | Salta a largura do carácter seguinte. | Usually used in combination with parentheses to add left and right indents, \_( and _) respectively. | | @ | Formatador de texto. Aplica o formato a todo o texto da célula | "\[Red]@" aplica a cor de letra vermelha aos valores de texto. | -| \* | Repete o carácter seguinte para preencher a largura da coluna. | 0\*- will include enough dashes after a number to fill the cell, whereas \*0 before any format will include leading zeros. | +| \* | Repete o carácter seguinte para preencher a largura da coluna. | 0\*- incluirá traços suficientes após um número para preencher a célula, enquanto \*0 antes de qualquer formato incluirá zeros à esquerda. | | " " | Exibe o texto dentro das aspas sem interpretá-lo. | "8%" será exibido como: 8% | | % | Mostra os números como uma percentagem de 100. | 8% será exibido como 0,08 | | \# | Espaço reservado para dígitos que não apresenta zeros extra. If a number has more digits to the right of the decimal than there are placeholders, the number is rounded up. | #.# mostrará 1.54 como 1.5 | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/formulas.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/formulas.md index 3462b317fe455c..7ee6208a0fdae9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/formulas.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/ViewPro/formulas.md @@ -135,7 +135,7 @@ O 4D View Pro permite que você defina e chame **funções personalizadas 4D**, As funções personalizadas 4D podem receber [parâmetros](#parameters) da área 4D View Pro e retornar valores. -You declare all your functions using the [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions) command. Exemplos: +Você declara todas as suas funções usando o comando [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions). Exemplos: ```4d $o:=New object @@ -221,7 +221,7 @@ If you do not declare parameters, values can be sequentially passed to methods ( Os parâmetros Date e Object são tratados da seguinte maneira: -- Dates in *jstype* will be passed as [object](Concepts/dt_object.md) in 4D code with two properties: +- As datas em *jstype* serão passadas como [objeto](Concepts/dt_object.md) no código 4D com duas propriedades: | Propriedade | Tipo | Descrição | | ----------- | ---- | ----------------- | @@ -239,12 +239,12 @@ Os parâmetros Date e Object são tratados da seguinte maneira: 4D project methods can also return values in the 4D View Pro cell formula via $0. São suportados os seguintes tipos de dados para os parâmetros devolvidos: - [text](Aceitar/dt_string.md) (convertido em string em 4D View Pro) -- [real](Concepts/dt_number.md)/[longint](Concepts/dt_number.md) (converted to number in 4D View Pro) +- [real](Concepts/dt_number.md)/[longint](Concepts/dt_number.md) (convertido em número no 4D View Pro) - [date](Concepts/dt_date.md) (converted to JS Date type in 4D View Pro - hour, minute, sec = 0) - [time](Concepts/dt_time.md) (converted to JS Date type in 4D View Pro - date in base date, i.e. 12/30/1899) - [boolean](Concepts/dt_boolean.md) (convertido em bool no 4D View Pro) - [picture](Concepts/dt_picture.md) (jpg,png,gif,bmp,svg other types converted into png) creates a URI (data:image/png;base64,xxxx) and then used as the background in 4D View Pro in the cell where the formula is executed -- [object](Concepts/dt_object.md) with the following two properties (allowing passing a date and time): +- [object](Concepts/dt_object.md) com as duas propriedades a seguir (permitindo a passagem de uma data e hora): | Propriedade | Tipo | Descrição | | ----------- | ---- | ----------------- | @@ -276,7 +276,7 @@ $o.BIRTH_INFORMATION.summary:="Returns a formatted string from given information ## Compatibidade -Alternate solutions are available to declare fields or methods as functions in your 4D View Pro areas. These solutions are maintained for compatibility reasons and can be used in specific cases. However, using the [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions.md) command is recommended. +Alternate solutions are available to declare fields or methods as functions in your 4D View Pro areas. These solutions are maintained for compatibility reasons and can be used in specific cases. No entanto, é recomendável usar o comando [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions.md). ### Referência a campos utilizando a estrutura virtual diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/authentication.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/authentication.md index b2b5c0bfb489ba..5b2f449d293303 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/authentication.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/authentication.md @@ -28,7 +28,7 @@ Basically in this mode, it's up to the developer to define how to authenticate u Este modo de autenticação é o mais flexível porque permite que você: - ou delegar a autenticação do usuário a um aplicativo de terceiros (por exemplo, uma rede social, SSO); -- o bien, ofrecer una interfaz al usuario (por ejemplo, un formulario web) para que pueda crear su cuenta en su base de datos clientes; luego, puede autenticar a los usuarios con cualquier algoritmo personalizado (ver [este ejemplo](sessions.md#example) del O importante é que você nunca armazene a senha de forma não protegida, usando esse código: +- o bien, ofrecer una interfaz al usuario (por ejemplo, un formulario web) para que pueda crear su cuenta en su base de datos clientes; luego, puede autenticar a los usuarios con cualquier algoritmo personalizado (ver [este ejemplo](sessions.md#example) del O importante é que você nunca armazene a senha de forma não protegida, usando esse código: O importante é que você nunca armazene a senha de forma não protegida, usando esse código: ```4d //... criar conta de usuário @@ -52,7 +52,7 @@ Os valores introduzidos são então avaliados: - Si la opción **Incluir contraseñas de 4D** está marcada, las credenciales de los usuarios se evaluarán primero contra la [tabla interna de usuarios 4D](Users/overview.md). - Se o nome de usuário enviado pelo navegador existir na tabela de usuários 4D e a senha estiver correta, a conexão será aceita. Se a palavra-passe estiver incorreta, a ligação é recusada. - - If the user name does not exist in the table of 4D users, the [`On Web Authentication`](#on-web-authentication) database method is called. Si el método base `On Web Authentication` no existe, se rechazan las conexiones. + - Se o nome de usuário não existir na tabela de usuários 4D, o método de banco de dados [`On Web Authentication`](#on-web-authentication) será chamado. Si el método base `On Web Authentication` no existe, se rechazan las conexiones. - If the **Include 4D passwords** option is not checked, user credentials are sent to the [`On Web Authentication`](#on-web-authentication) database method along with the other connection parameters (IP address and port, URL...) para que você possa processá-los. Si el método base `On Web Authentication` no existe, se rechazan las conexiones. > Com o servidor da Web 4D Client, lembre-se de que todos os sites publicados pelas máquinas 4D Client compartilharão a mesma tabela de usuários. Validação de usuários/senhas é realizada pela aplicação 4D Server. @@ -61,7 +61,7 @@ Os valores introduzidos são então avaliados: This mode provides a greater level of security since the authentication information is processed by a one-way process called hashing which makes their contents impossible to decipher. -Como no modo BASIC, os usuários devem digitar seu nome e senha ao se conectarem. The [`On Web Authentication`](#on-web-authentication) database method is then called. When the DIGEST mode is activated, the $6 parameter (password) is always returned empty. In fact, when using this mode, this information does not pass by the network as clear text (unencrypted). Por lo tanto, en este caso es imprescindible evaluar las solicitudes de conexión mediante el comando `WEB Validate digest`. +Como no modo BASIC, os usuários devem digitar seu nome e senha ao se conectarem. O método banco de dados [`On Web Authentication`](#on-web-authentication) é então chamado. When the DIGEST mode is activated, the $6 parameter (password) is always returned empty. In fact, when using this mode, this information does not pass by the network as clear text (unencrypted). Por lo tanto, en este caso es imprescindible evaluar las solicitudes de conexión mediante el comando `WEB Validate digest`. > Você deve reiniciar o servidor Web para que as alterações feitas nesses parâmetros sejam levadas em conta. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/qodly-studio.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/qodly-studio.md index 988b5c23a2a6e5..8e03e7f76adbb1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/qodly-studio.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/qodly-studio.md @@ -123,15 +123,15 @@ There is no direct compatibility between apps implemented with 4D and apps imple ### Comparação de funcionalidades -| | Qodly Studio para desenvolvedores 4D que usam o IDE 4D | Qodly Studio para desenvolvedores Qodly | -| --------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| Visualizar e editar tabelas (classes de dados), atributos e relações | Editor de estrutura 4D(1) | Qodly Studio Model Editor | -| Páginas Qodly | Editor de páginas Qodly Studio | Editor de páginas Qodly Studio | -| Formulários para desktop | 4D IDE | *não suportado* | -| Linguagem de programação | Linguagem 4D com ORDA | [QodlyScript](https://developer.qodly.com/docs/category/qodlyscript) featuring ORDA | -| IDE de codificação | 4D IDE code editor/VS Code with [4D extension](https://github.com/4d/4D-Analyzer-VSCode)(2) | Editor de código Qodly Studio | -| Depurador | Depurador 4D IDE | Depurador Qodly Studio | -| REST/Web roles and privileges | roles.json direct edit/Qodly Studio roles and privileges editor | Qodly Studio role and privileges editor | +| | Qodly Studio para desenvolvedores 4D que usam o IDE 4D | Qodly Studio para desenvolvedores Qodly | +| --------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| Visualizar e editar tabelas (classes de dados), atributos e relações | Editor de estrutura 4D(1) | Qodly Studio Model Editor | +| Páginas Qodly | Editor de páginas Qodly Studio | Editor de páginas Qodly Studio | +| Formulários para desktop | 4D IDE | *não suportado* | +| Linguagem de programação | Linguagem 4D com ORDA | [QodlyScript](https://developer.qodly.com/docs/category/qodlyscript) apresentando ORDA | +| IDE de codificação | 4D IDE code editor/VS Code with [4D extension](https://github.com/4d/4D-Analyzer-VSCode)(2) | Editor de código Qodly Studio | +| Depurador | Depurador 4D IDE | Depurador Qodly Studio | +| Funções e privilégios REST/Web | roles.json direct edit/Qodly Studio roles and privileges editor | Qodly Studio role and privileges editor | (1) Se você clicar no botão **Model** no Qodly Studio, nada acontecerá. (2) When you open some 4D code in Qodly Studio, syntax coloring is not available and a "Lsp not loaded" warning is displayed. @@ -141,9 +141,9 @@ There is no direct compatibility between apps implemented with 4D and apps imple The following commands and classes are dedicated to the server-side management of Qodly pages: - Comando [`Web Form`](../API/WebFormClass.md#web-form): retorna a página Qodly como um objeto. -- [`Web Event`](../API/WebFormClass.md#web-event) command: returns events triggered within Qodly page components. +- comando [`Web Event`](../API/WebFormClass.md#web-event): retorna eventos acionados nos componentes da página Qodly. - [`WebForm`](../API/WebFormClass.md) class: functions and properties to manage the rendered Qodly page. -- [`WebFormItem`](../API/WebFormItemClass.md) class: functions and properties to manage Qodly page components. +- Classe [`WebFormItem`](../API/WebFormItemClass.md): funções e propriedades para gerenciar componentes de página Qodly. ### Uso de métodos projeto @@ -157,7 +157,7 @@ Recomendamos o uso de funções classe em vez de métodos projeto. Apenas as fun You can develop with Qodly Studio while your computer is not connected to the internet. Nesse caso, entretanto, os seguintes recursos não estão disponíveis: - [Templates](https://developer.qodly.com/docs/studio/pageLoaders/templates): the Template library is empty -- UI tips: they are not displayed when you click on ![alt-text](../assets/en/WebServer/tips.png) icons. +- Dicas da UI: elas não são exibidas quando você clica ![alt-text](../assets/en/WebServer/tips.png). ## Implantação @@ -184,7 +184,7 @@ Para ativar a renderização das páginas Qodly, as seguintes opções devem ser ### Escopo dos formulários Qodly -Ao renderizar formulários Qodly no Qodly Studio, o renderizador se conectará ao servidor web 4D por HTTP ou HTTPS, dependendo das configurações, seguindo o mesmo padrão de conexão HTTP/HTTPS do servidor web [4D WebAdmin](../Admin/webAdmin.md#accept-http-connections-on-localhost). See also [this paragraph](#about-license_usage) about URL schemes and license usage. +Ao renderizar formulários Qodly no Qodly Studio, o renderizador se conectará ao servidor web 4D por HTTP ou HTTPS, dependendo das configurações, seguindo o mesmo padrão de conexão HTTP/HTTPS do servidor web [4D WebAdmin](../Admin/webAdmin.md#accept-http-connections-on-localhost). Consulte também [este parágrafo](#about-license_usage) sobre esquemas de URL e uso de licenças. Keep in mind that Qodly Studio runs through the 4D WebAdmin web server. When you use Qodly Studio as a developer, even when you preview a Qodly Page in the studio, you're using the 4D WebAdmin web server. This allows you to see dataclasses, functions and attributes that are not exposed as REST resources for example (they are greyed out). @@ -210,7 +210,7 @@ https://www.myWebSite.com/$lib/renderer/?w=welcome ## Force login -With Qodly Studio for 4D, the ["force login" mode](../REST/authUsers.md#force-login-mode) allows you to control the number of opened web sessions that require 4D Client licenses. You can also [logout](#logout) the user at any moment to decrement the number of retained licenses. +With Qodly Studio for 4D, the ["force login" mode](../REST/authUsers.md#force-login-mode) allows you to control the number of opened web sessions that require 4D Client licenses. Você também pode fazer [desconectar](#logout) o usuário a qualquer momento para diminuir o número de licenças retidas. ### Configuração diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/sessions.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/sessions.md index 9e8895ae9a968c..00072ae3d14d8e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/sessions.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/sessions.md @@ -8,7 +8,7 @@ O servidor web 4D oferece recursos integrados para gerenciar **sessões web**. C As sessões Web permitem: - manipular várias solicitações simultaneamente do mesmo cliente web através de um número ilimitado de processos preventivos (sessões web são **escaláveis**), -- manage session through a `Session` object and the [Session API](API/SessionClass.md), +- gerenciar a sessão por um objeto `Session` e da [API de session](API/SessionClass.md), - store and share data between processes of a web client using the [.storage](../API/SessionClass.md#storage) of the session, - associate privileges to the user running the session. @@ -42,7 +42,7 @@ Cuando [se habilitan las sesiones](#enabling-sessions), se implementan mecanismo :::info -The cookie name can be get using the [`.sessionCookieName`](API/WebServerClass.md#sessioncookiename) property. +O nome do cookie pode ser obtido usando a propriedade [`.sessionCookieName`](API/WebServerClass.md#sessioncookiename). ::: @@ -86,7 +86,7 @@ The lifespan of an inactive cookie is 60 minutes by default, which means that th This timeout can be set using the [`.idleTimeout`](API/SessionClass.md#idletimeout) property of the `Session` object (the timeout cannot be less than 60 minutes) or the *connectionInfo* parameter of the [`Open datastore`](../API/DataStoreClass.md#open-datastore) command. -When a web session is closed, if the [`Session`](API/SessionClass.md#session) command is called afterwards: +Quando uma sessão Web é fechada, se o comando [`Session`](API/SessionClass.md#session) for chamado posteriormente: - el objeto `Session` no contiene privilegios (es una sesión de invitado) - a propriedade [`storage`](API/SessionClass.md#storage) está vazia diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/webServerConfig.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/webServerConfig.md index 34653cc0610f8a..e801ed789dd211 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/webServerConfig.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/webServerConfig.md @@ -11,7 +11,7 @@ Há diferentes maneiras de configurar as definições do servidor web 4D, depend | Localização do parâmetro | Âmbito | Servidor Web a ser usado | | --------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | -------------------------------------------------------------- | -| [webServer object](webServerObject.md) | Temporário (sessão atual) | Qualquer servidor Web, incluindo servidores Web de componentes | +| [objeto webServer](webServerObject.md) | Temporário (sessão atual) | Qualquer servidor Web, incluindo servidores Web de componentes | | `WEB SET OPTION` o comando `WEB XXX` | Temporário (sessão atual) | Servidor principal | | [Caixa de diálogo **Configurações**](../settings/web.md) (páginas **Web**) | Permanente (todas as sessões, armazenadas no disco) | Servidor principal | @@ -64,7 +64,7 @@ Define o conjunto de caracteres a serem usados pelo servidor web 4D. O valor pad | --------------------- | -------------------------------------------------- | ----------- | | objeto webServer | [`cipherSuite`](API/WebServerClass.md#ciphersuite) | Text | -Lista de criptogramas usada para o protocolo seguro; define a prioridade dos algoritmos de cifra implementados pelo servidor da Web. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). See the [ciphers page](https://www.openssl.org/docs/manmaster/man1/ciphers.html) on the OpenSSL site. +Lista de criptogramas usada para o protocolo seguro; define a prioridade dos algoritmos de cifra implementados pelo servidor da Web. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). Veja a [página ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) no site OpenSSL. > The default cipher list used by 4D can be modified for the session using the `SET DATABASE PARAMETER` command, in which case the modification applies to the entire 4D application, including the web server, SQL server, client/server connections, as well as the HTTP client and all the 4D commands that make use of the secure protocol. @@ -131,11 +131,11 @@ Status of the HTTP request log file of the web server ([*HTTPDebugLog_nn.txt*](. ## Defaut Home page -| Pode ser definido com | Nome | Comentários | -| ---------------------------------- | ---------------------------------------------------------------------------- | ----------------------------------------- | -| objeto webServer | [`defaultHomepage`](API/WebServerClass.md#defaulthomepage) | Text | -| `WEB SET HOME PAGE` | | Pode ser diferente para cada processo web | -| Caixa de diálogos de configurações | [Configuration page/Default Home Page](../settings/web.md#default-home-page) | | +| Pode ser definido com | Nome | Comentários | +| ---------------------------------- | --------------------------------------------------------------------------------- | ----------------------------------------- | +| objeto webServer | [`defaultHomepage`](API/WebServerClass.md#defaulthomepage) | Text | +| `WEB SET HOME PAGE` | | Pode ser diferente para cada processo web | +| Caixa de diálogos de configurações | [Página Configuração/Página inicial padrão](../settings/web.md#default-home-page) | | Designar uma página inicial padrão para o servidor Web. Esta página pode ser estática ou [semi-dynamic]. @@ -351,11 +351,11 @@ Estado do gerenciamento de sessão antigo para o servidor Web 4D (obsoleto). ## Log Recording -| Pode ser definido com | Nome | Comentários | -| ---------------------------------- | ------------------------------------------------------------------- | ----------- | -| objeto webServer | [`logRecording`](API/WebServerClass.md#logrecording) | | -| `WEB SET OPTION` | `Web log recording` | | -| Caixa de diálogos de configurações | [Log (type) page](../settings/web.md#log-format) | Menu pop-up | +| Pode ser definido com | Nome | Comentários | +| ---------------------------------- | --------------------------------------------------------------------- | ----------- | +| objeto webServer | [`logRecording`](API/WebServerClass.md#logrecording) | | +| `WEB SET OPTION` | `Web log recording` | | +| Caixa de diálogos de configurações | [Página Log (type)](../settings/web.md#log-format) | Menu pop-up | Inicia o detiene el registro de las peticiones recibidas por el servidor web 4D en el archivo *logweb.txt* y define su formato. Por padrão, os pedidos não são registados (0/No Log File). Cuando se activa, el archivo *logweb.txt* se coloca automáticamente en la carpeta Logs. @@ -506,7 +506,7 @@ Neste caso, os robots não estão autorizados a aceder a todo o sítio. | ---------------------------------- | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | | objeto webServer | [`rootFolder`](API/WebServerClass.md#rootfolder) | Text property but can be a [`4D.Folder`](API/FolderClass.md) object when used with the *settings* parameter of the `start()` function | | `WEB SET ROOT FOLDER` | | | -| Caixa de diálogos de configurações | [Configuration page/Default HTML Root](../settings/web.md#default-html-root) | | +| Caixa de diálogos de configurações | [Página Configuração/raiz HTML padrão](../settings/web.md#default-html-root) | | Caminho da pasta raiz do servidor web, ou seja, a pasta na qual 4D procurará as páginas HTML estáticas e semidinâmicas, imagens, etc., para enviar aos navegadores. O caminho é formatado no caminho completo POSIX. O servidor da Web precisará ser reiniciado para que a nova pasta raiz seja levada em consideração. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/webServerObject.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/webServerObject.md index 0cc891523927d6..b5549a7ed10b65 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/webServerObject.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WebServer/webServerObject.md @@ -34,7 +34,7 @@ $nbSrv:=WEB Server list.length //$nbSrv valor é 1 ``` -To instantiate a web server object, call the [`WEB Server`](API/WebServerClass.md#web-server) command: +Para instanciar um objeto de servidor Web, chame o comando [`WEB Server`](API/WebServerClass.md#web-server): ```4d //create an object variable of the 4D.WebServer class diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WritePro/writeprointerface.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WritePro/writeprointerface.md index b12e04c7105372..bbf33e016b85af 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WritePro/writeprointerface.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/WritePro/writeprointerface.md @@ -72,7 +72,7 @@ O ficheiro modelo permite-lhe definir o seguinte: - os atributos dataclass que podem ser usados como colunas da tabela, - the formulas available as contextual menus inside break rows, carry-over row, placeholder row or extra rows. -The template file must be stored in a "[`Resources`](../Project/architecture.md#resources)/4DWP_Wizard/Templates" folder within your project. +O arquivo modelo deve ser armazenado em uma pasta "[`Resources`](../Project/architecture.md#resources)/4DWP_Wizard/Templates" em seu projeto. O arquivo de modelo no formato JSON contém os seguintes atributos: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/settings/client-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/settings/client-server.md index 6f65f094512384..6a3795e0a0412e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/settings/client-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R6/settings/client-server.md @@ -13,8 +13,8 @@ As páginas Cliente-servidor agrupam parâmetros relacionados ao uso do banco de Essa opção permite que você indique se o banco de dados do 4D Server aparecerá ou não na lista de bancos de dados publicados. -- Cuando esta opción está marcada (por defecto), la base de datos se hace pública y aparece en la lista de bases de datos publicadas (pestaña**Disponible**). -- Quando a opção não estiver marcada, o banco de dados não será tornado público e não aparecerá na lista de bancos de dados publicados. Para conectarse, los usuarios deben introducir manualmente la dirección de la base de datos en la pestaña **Personalizada** de la caja de diálogo de conexión. +- Quando essa opção está marcada (padrão), o banco de dados é tornado público e aparece na lista de bancos de dados publicados (guia **Disponível**). +- Quando a opção não estiver marcada, o banco de dados não será tornado público e não aparecerá na lista de bancos de dados publicados. Para se conectar, os usuários devem inserir manualmente o endereço do banco de dados na guia **Personalizado** da caixa de diálogo de conexão. :::note @@ -24,7 +24,7 @@ Se você modificar esse parâmetro, deverá reiniciar o banco de dados do servid #### Nome da publicação -This option lets you change the publication name of a 4D Server database, *i.e.*, the name displayed on the dynamic **Available** tab of the connection dialog box (see the [Opening a remote project](../Desktop/clientServer/md#opening-a-remote-project) paragraph). Por padrão, 4D Server usa o nome do arquivo de projeto. Pode introduzir qualquer nome personalizado que pretenda. +Essa opção permite alterar o nome de publicação de um banco de dados do 4D Server, *ou seja*, o nome exibido na guia dinâmica **Disponível** da caixa de diálogo de conexão (consulte o parágrafo [Abrindo um projeto remoto](../Desktop/clientServer/md#opening-a-remote-project)). Por padrão, 4D Server usa o nome do arquivo de projeto. Pode introduzir qualquer nome personalizado que pretenda. :::note @@ -47,46 +47,46 @@ Para actualizar las otras máquinas clientes que no estén conectadas, basta con #### 4D Server e números de portas -4D Server uses several TCP ports for communications between internal servers and clients: +4D Server usa várias portas TCP para comunicações entre servidores internos e clientes: - **SQL Server**: 19812 por defecto (puede modificarse a través de la página "SQL/Configuración" de las Preferencias). -- **Servidor de aplicaciones**: 19813 por defecto (puede modificarse a través de la página "Cliente-Servidor/Configuración" de las Preferencias, ver arriba). -- **DB4D Server** (servidor de banco de dados): 19814 por padrão. This port number cannot be modified directly but it always consists of the application server port number + 1.\ - When a 4D client connects to 4D Server, it uses the TCP port of the application server (19813 or the port indicated after the colon ':' in the IP address shown in the connection dialog box). Connection to other servers via their respective ports is then automatic; it is no longer necessary to specify them.\ - Note that in the case of access via a router or a firewall, the three TCP ports must be opened explicitly. -- [**Depurador remoto**](../Debugging/debugging-remote.md): 19815 por padrão. This port number cannot be modified directly but it always consists of the application server port number + 2. +- **Servidor de aplicações**: 19813 por padrão (pode ser modificado através da página "Servidor/Configuração" das Preferências, veja acima). +- **DB4D Server** (servidor de banco de dados): 19814 por padrão. Esse número de porta não pode ser modificado diretamente, mas sempre consiste no número da porta do servidor de aplicação + 1.\ + Quando um cliente 4D se conecta ao 4D Server, ele usa a porta TCP do servidor de aplicação (19813 ou a porta indicada após os dois pontos ':' no endereço IP mostrado na caixa de diálogo de conexão). A conexão com outros servidores através de suas respectivas portas é então automaticamente; não é mais necessário especificá-los.\ + Note que, no caso de acesso via um roteador ou um firewall, as três portas TCP devem ser abertas explicitamente. +- [**Depurador remoto**](../Debugging/debugging-remote.md): 19815 por padrão. Esse número de porta não pode ser modificado diretamente, mas sempre consiste no número da porta do servidor de aplicativos + 2. #### Autenticação do usuário com o servidor de domínio -Esta opción le permite implementar las funcionalidades SSO (*Single Sign On*) en su base de datos 4D Server en Windows. Quando você marca essa opção, 4D se conecta de forma transparente ao Active Directory do servidor de domínio do Windows e obtém os tokens de autenticação disponíveis. This option is described in the [Single Sign On (SSO) on Windows](https://doc.4d.com/4Dv20R5/4D/20-R5/Single-Sign-On-SSO-on-Windows.300-6932709.en.html) section. +Esta opción le permite implementar las funcionalidades SSO (*Single Sign On*) en su base de datos 4D Server en Windows. Quando você marca essa opção, 4D se conecta de forma transparente ao Active Directory do servidor de domínio do Windows e obtém os tokens de autenticação disponíveis. Essa opção é descrita na seção [Single Sign On (SSO) on Windows](https://doc.4d.com/4Dv20R5/4D/20-R5/Single-Sign-On-SSO-on-Windows.300-6932709.en.html). #### Service Principal Name -Quando o Single Sign On (SSO) estiver ativado (veja acima), você deverá preencher esse campo se quiser usar o Kerberos como protocolo de autenticação. This option is described in the [Single Sign On (SSO) on Windows](https://doc.4d.com/4Dv20R5/4D/20-R5/Single-Sign-On-SSO-on-Windows.300-6932709.en.html) section. +Quando o Single Sign On (SSO) estiver ativado (veja acima), você deverá preencher esse campo se quiser usar o Kerberos como protocolo de autenticação. Essa opção é descrita na seção [Single Sign On (SSO) on Windows](https://doc.4d.com/4Dv20R5/4D/20-R5/Single-Sign-On-SSO-on-Windows.300-6932709.en.html). #### Camada de rede -Esta caja desplegable contiene 3 opciones de capa de red a elegir entre: **legacy**, **ServerNet** y **QUIC** (sólo en modo proyecto), que se utilizan para manejar las comunicaciones entre 4D Server y las máquinas 4D remotas (clientes). +Essa caixa suspensa contém 3 opções de camada de rede para escolher entre: **legacy**, **ServerNet** e **QUIC** (somente no modo de projeto), usadas para lidar com comunicações entre o 4D Server e máquinas 4D remotas (clientes). -- **Legal**: esta antigua capa de red "Legal" sigue siendo soportada para garantizar la compatibilidad de las bases de datos creadas antes de la v15. Esta capa de red también puede habilitarse por programación utilizando el comando [SET DATABASE PARAMETER](https://doc.4d.com/4Dv20/help/command/page642.html). +- **Histórico**: essa antiga camada de rede "legado" ainda é mantida para garantir a compatibilidade com bancos de dados criados antes da versão 15. Essa camada de rede também pode ser ativada por programação usando o comando [SET DATABASE PARAMETER](https://doc.4d.com/4Dv20/help/command/page642.html). - **ServerNet** (por padrão): ativa a camada de rede ServerNet no servidor (disponível desde 4D v15). - **QUIC** (disponible solo en modo proyecto): activa la capa de red QUIC en el servidor. **Notas**: - Al seleccionar esta opción, se anula la opción Utilizar capa de red heredada en caso de que se haya definido mediante el comando [SET DATABASE PARAMETER](https://doc.4d.com/4Dv20/help/command/page642.html). - - Puede saber si una aplicación 4D se está ejecutando con una capa de red QUIC utilizando el comando [Get application info](https://doc.4d.com/4Dv20/help/command/page1599.html). + - Você pode saber se um aplicação 4D está sendo executado com uma camada de rede QUIC usando o comando [Get application info](https://doc.4d.com/4Dv20/help/command/page1599.html). - Como o QUIC usa o protocolo UDP, certifique-se de que o UDP seja permitido em suas configurações de segurança de rede. - O QUIC liga-se automaticamente à porta 19813 tanto para o servidor de aplicações como para o servidor DB4D. - Quando a opção de camada QUIC é selecionada: - Uma mensagem beta e um ícone de alerta são exibidos perto do seletor. - - [los parámetros del tiempo de espera de las conexiones cliente-servidor](#Client-Server-Connections-Timeout) están ocultos - - La casilla de verificación [Encriptar comunicación Cliente-Servidor](#Encrypt-Client-Server-Communications) está oculta (las comunicaciones QUIC son siempre en TLS, sea cual sea su modo seguro). - - **Compatibilidad**: necesita desplegar sus aplicaciones cliente/servidor con 4D v20 o superior antes de cambiar a la capa de red QUIC. + - [As configurações de tempo limite das conexões cliente-servidor](#Client-Server-Connections-Timeout) estão ocultas + - A caixa de seleção [Criptografar a comunicação entre cliente e servidor](#Encrypt-Client-Server-Communications) está oculta (as comunicações QUIC são sempre em TLS, seja qual for o seu modo de segurança). + - **Compatibilidade**: você precisa implementar seus aplicativos cliente/servidor com 4D v20 ou superior antes de mudar para a camada de rede QUIC. :::note -No caso de uma modificação, você precisa reiniciar o aplicativo para que a alteração seja levada em conta. Todos os aplicativos clientes que foram conectados também devem ser reiniciados para poderem se conectar à nova camada de rede. +No caso de uma modificação, você precisa reiniciar o aplicativo para que a alteração seja levada em conta. Toda aplicação cliente conectada também devem ser reiniciada para poderem se conectar à nova camada de rede. ::: @@ -100,7 +100,7 @@ Quando um tempo limite for selecionado, o servidor fechará a conexão de um cli #### Registrar clientes na inicialização para Execute On Client -Quando essa opção estiver marcada, todas as máquinas remotas 4D conectando à base de dados podem executar os métodos remotamente. Este mecanismo se detalla en la sección [Procedimientos almacenados en las máquinas cliente](https://doc.4d.com/4Dv19/4D/19/Stored-procedures-on-client-machines.300-5422461.en.html). +Quando essa opção estiver marcada, todas as máquinas remotas 4D conectando à base de dados podem executar os métodos remotamente. Este mecanismo é detalhado na seção [procedimentos armazenados em máquinas clientes](https://doc.4d.com/4Dv19/4D/19/Stored-procedure res-on-client-machines.300-5422461.en.html). #### Encriptar as comunicações cliente-servidor @@ -108,12 +108,12 @@ Essa opção permite que você ative o modo seguro para comunicações entre a m #### Atualizar a pasta Resources durante uma sessão -This setting can be used to globally set the updating mode for the local instance of the **Resources** folder on the connected 4D machines when the **Resources** folder of the database is modified during the session (the **Resources** folder is automatically synchronized on the remote machine each time a session is opened). Estão disponíveis três parâmetros: +Essa configuração pode ser usada para definir globalmente o modo de atualização da instância local da pasta **Resources** nas máquinas 4D conectadas quando a pasta **Resources** do banco de dados for modificada durante a sessão (a pasta **Resources** é sincronizada automaticamente na máquina remota sempre que uma sessão for aberta). Estão disponíveis três parâmetros: -- **Nunca**: la carpeta local **Resources** no se actualiza durante la sesión. A notificação enviada pelo servidor é ignorada. La carpeta **Resources** local puede actualizarse manualmente mediante el comando **Update Local Resources** del menú de acción (ver [Uso del explorador de recursos](https://doc.4d.com/4Dv19/4D/19/Using-the-Resources-explorer.300-5416788.en.html)). -- **Siempre**: la sincronización de la carpeta local **Resources** se realiza automáticamente durante la sesión cada vez que el servidor envía una notificación. -- **Preguntar**: cuando la notificación es enviada por el servidor, se muestra una caja de diálogo en las máquinas cliente, indicando la modificación. The user can then accept or refuse the synchronization of the local **Resources** folder.\ - The **Resources** folder centralizes the custom files required for the database interface (translation files, pictures, etc.). Mecanismos automáticos ou manuais podem ser usados para notificar cada cliente quando o conteúdo dessa pasta tiver sido modificado. Para más información, consulte la sección [Gestión de la carpeta Resources](https://doc.4d.com/4Dv19/4D/19/Managing-the-Resources-folder.300-5422466.en.html). +- **Nunca**: a pasta local **Resources** não é atualizada durante a sessão. A notificação enviada pelo servidor é ignorada. A pasta local **Resources** pode ser atualizada manualmente com o comando do menu de ação **Update Local Resources** (consulte [Usando o explorador de recursos](https://doc.4d.com/4Dv19/4D/19/Using-the-Resources-explorer.300-5416788.en.html)). +- **Sempre**: a sincronização da pasta **Resources** local é realizada automaticamente durante a sessão sempre que a notificação é enviada pelo servidor. +- **Perguntar**: quando a notificação for enviada pelo servidor, uma caixa de diálogo é exibida nas máquinas de cliente, indicando a modificação. O usuário pode então aceitar ou recusar a sincronização da pasta local **Resources**.\ + A pasta **Resources** centraliza os arquivos personalizados necessários para a interface do banco de dados (arquivos de tradução, imagens, etc.). Mecanismos automáticos ou manuais podem ser usados para notificar cada cliente quando o conteúdo dessa pasta tiver sido modificado. Para mais informações, por favor consulte a seção [Gerenciando da pasta Resources](https://doc.4d.com/4Dv19/4D/19/Managing-the-Resources-folder.300-5422466.en.html). ## Página Configuração IP @@ -125,7 +125,7 @@ Essa tabela permite definir regras de controle de acesso para o banco de dados, O comportamento da tabela de configuração é o seguinte: -- A coluna "Allow-Deny" permite selecionar o tipo de regra a ser aplicada (Allow ou Deny) usando um menu pop-up. Para adicionar uma regra, clique no botão Adicionar. Aparece uma nova linha na tabela. El botón **Borrar** permite eliminar la línea actual. +- A coluna "Allow-Deny" permite selecionar o tipo de regra a ser aplicada (Allow ou Deny) usando um menu pop-up. Para adicionar uma regra, clique no botão Adicionar. Aparece uma nova linha na tabela. O botão **Excluir** permite que você remova a linha atual. - A coluna "IP Address" (Endereço IP) permite definir o(s) endereço(s) IP afetado(s) pela regra. Para especificar um endereço, clique na coluna e digite o endereço da seguinte forma: 123.45.67.89 (formato IPv4) ou 2001:0DB8:0000:85A3:0000:0000:AC1F:8001 (formato IPv6). Você pode usar um caractere \* (asterisco) para especificar endereços do tipo "começa com". Por exemplo, 192.168.\* indica todos os endereços que começam com 192.168. - A aplicação das regras é baseada na ordem de exibição da tabela. Se duas regras forem contraditórias, a prioridade será dada à regra localizada na parte mais alta da tabela. Você pode reordenar as linhas modificando a classificação atual (clique no cabeçalho da coluna para alternar a direção da classificação). Você também pode mover as linhas usando o recurso de arrastar e soltar. - Por motivos de segurança, somente os endereços que realmente correspondem a uma regra terão permissão para se conectar. Em outras palavras, se a tabela contiver apenas uma ou mais regras Deny, todos os endereços serão recusados porque nenhum corresponderá a pelo menos uma regra. Se você quiser negar apenas determinados endereços (e permitir outros), adicione uma regra Allow \* no final da tabela. Por exemplo: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7.json b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7.json index 4f95b9d1cb8ff7..d1ef3ddd5a98d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7.json +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7.json @@ -68,7 +68,7 @@ "description": "The label for category Commands in sidebar docs" }, "sidebar.docs.category.4D Environment": { - "message": "4D Environment", + "message": "Ambiente 4D", "description": "The label for category 4D Environment in sidebar docs" }, "sidebar.docs.category.Arrays": { @@ -256,7 +256,7 @@ "description": "The label for category Records in sidebar docs" }, "sidebar.docs.category.Relations": { - "message": "Relations", + "message": "Relações", "description": "The label for category Relations in sidebar docs" }, "sidebar.docs.category.Resources": { @@ -272,11 +272,11 @@ "description": "The label for category SVG in sidebar docs" }, "sidebar.docs.category.Secured Protocol": { - "message": "Secured Protocol", + "message": "Protocolo seguro", "description": "The label for category Secured Protocol in sidebar docs" }, "sidebar.docs.category.Selection": { - "message": "Selection", + "message": "Seleção", "description": "The label for category Selection in sidebar docs" }, "sidebar.docs.category.Sets": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/CollectionClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/CollectionClass.md index d8ff8419893e3f..606a77d1629b4a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/CollectionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/CollectionClass.md @@ -2584,7 +2584,7 @@ No parâmetro *querySettings*, você pode passar um objeto que contenha placehol | parameters | Object | **Placeholders com nome para os valores** usados na *queryString*. Os valores são expressos como pares de propriedade/valor, em que propriedade é o nome do espaço reservado inserido para um valor na *queryString* (":placeholder") e valor é o valor a ser comparado. Pode combinar marcadores de posição indexados (valores passados diretamente em parâmetros de valor) e valores de marcadores de posição com nome na mesma pesquisa. | | attributes | Object | **Placeholders nomeados para os caminhos de atributos** usados na *queryString*. Os atributos são expressos como pares de propriedade/valor, em que propriedade é o nome do espaço reservado inserido para um caminho de atributo no *queryString* (":placeholder"), e o valor pode ser uma cadeia de caracteres ou uma coleção de cadeias de caracteres. Cada valor é um caminho que pode designar uma propriedade em um objeto da coleção
    Tipo de propriedadeDescrição
    String (cadeia de caracteres)attributePath expresso usando a notação de ponto, por exemplo, "name" ou "user.address.zipCode"
    Coleção de cadeias de caracteresCada cadeia de caracteres da coleção representa um nível de attributePath, por exemplo, \["name"] ou \["user", "address", "zipCode"]. Using a collection allows querying on attributes with names that are not compliant with dot notation, e.g. \["4Dv17.1","en/fr"]
    You can mix indexed placeholders (values directly passed in *value* parameters) and named placeholder values in the same query. | -> Using this parameter is mandatory if you want to query a collection [using a **collection reference** or **object reference**](#object-or-collection-reference-as-value). +> O uso desse parâmetro é obrigatório se você quiser consultar uma coleção [usando uma **referência de coleção** ou **referência de objeto**](#object-or-collection-reference-as-value). #### Exemplo 1 @@ -2677,19 +2677,19 @@ More examples of queries can be found in the `dataClass.query()` page. -| Parâmetro | Tipo | | Descrição | -| ---------- | ----------------------------------------------- | :-------------------------: | --------------------------------------------------------------------------------- | -| formula | 4D. Function | -> | Objecto fórmula | -| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | -| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Value to use as the first argument to the first call of *formula* or *methodName* | -| param | expressão | -> | Parâmetro(s) a transmitir | -| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | +| Parâmetro | Tipo | | Descrição | +| ---------- | ----------------------------------------------- | :-------------------------: | ---------------------------------------------------------------------------------------------- | +| formula | 4D. Function | -> | Objecto fórmula | +| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | +| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Valor a ser usado como primeiro argumento para a primeira chamada de *formula* ou *methodName* | +| param | expressão | -> | Parâmetro(s) a transmitir | +| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | #### Descrição -The `.reduce()` function applies the *formula* or *methodName* callback against an accumulator and each element in the collection (from left to right) to reduce it to a single value. +A função `.reduce()` aplica a chamada de retorno *formula* ou *methodName* em um acumulador e em cada elemento da coleção (da esquerda para a direita) para reduzi-lo a um único valor. > Essa função não modifica a coleção original. @@ -2698,9 +2698,9 @@ Designa-se a chamada de retorno a ser executada para avaliar os elementos da col - *formula* (sintaxe recomendada), um [objecto Formula](FunctionClass.md) que pode encapsular qualquer expressão executável, incluindo funções e métodos projecto; - ou *methodName*, o nome de um método projeto (texto). -The callback takes each collection element and performs any desired operation to accumulate the result into *$1.accumulator*, which is returned in *$1.value*. +O retorno de chamada pega cada elemento da coleção e executa qualquer operação desejada para acumular o resultado em *$1.accumulator*, retornado em *$1.value*. -Pode passar o valor para inicializar o acumulador em *initValue*. If omitted, *$1.accumulator* starts with *Undefined*. +Pode passar o valor para inicializar o acumulador em *initValue*. Se omitido, *$1.accumulator* começa com *Undefined*. A chamada de retorno recebe os seguintes parâmetros: @@ -2710,7 +2710,7 @@ A chamada de retorno recebe os seguintes parâmetros: A chamada de retorno recebe os seguintes parâmetros: -- *$1.accumulator*: value to be modified by the function and which is initialized by *initValue*. +- *$1.accumulator*: valor a ser modificado pela função sendo inicializado por *initValue*. - *$1.stop* (boolean, opcional): **true** para parar o callback do método. O valor retornado é o último calculado. #### Exemplo 1 @@ -2762,19 +2762,19 @@ Com o seguinte método ***Flatten***: -| Parâmetro | Tipo | | Descrição | -| ---------- | ----------------------------------------------- | :-------------------------: | --------------------------------------------------------------------------------- | -| formula | 4D. Function | -> | Objecto fórmula | -| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | -| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Value to use as the first argument to the first call of *formula* or *methodName* | -| param | expressão | -> | Parâmetro(s) a transmitir | -| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | +| Parâmetro | Tipo | | Descrição | +| ---------- | ----------------------------------------------- | :-------------------------: | ---------------------------------------------------------------------------------------------- | +| formula | 4D. Function | -> | Objecto fórmula | +| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção | +| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Valor a ser usado como primeiro argumento para a primeira chamada de *formula* ou *methodName* | +| param | expressão | -> | Parâmetro(s) a transmitir | +| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador | #### Descrição -The `.reduceRight()` function applies the *formula* or *methodName* callback against an accumulator and each element in the collection (from right to left) to reduce it to a single value. +A função `.reduceRight()` aplica a chamada de retorno *formula* ou *methodName* em um acumulador e em cada elemento da coleção (da direita para a esquerda) para reduzi-lo a um único valor. > Essa função não modifica a coleção original. @@ -2783,9 +2783,9 @@ Designa-se a chamada de retorno a ser executada para avaliar os elementos da col - *formula* (sintaxe recomendada), um [objecto Formula](FunctionClass.md) que pode encapsular qualquer expressão executável, incluindo funções e métodos projecto; - ou *methodName*, o nome de um método projeto (texto). -The callback takes each collection element and performs any desired operation to accumulate the result into *$1.accumulator*, which is returned in *$1.value*. +O retorno de chamada pega cada elemento da coleção e executa qualquer operação desejada para acumular o resultado em *$1.accumulator*, retornado em *$1.value*. -Pode passar o valor para inicializar o acumulador em *initValue*. If omitted, *$1.accumulator* starts with *Undefined*. +Pode passar o valor para inicializar o acumulador em *initValue*. Se omitido, *$1.accumulator* começa com *Undefined*. A chamada de retorno recebe os seguintes parâmetros: @@ -2795,7 +2795,7 @@ A chamada de retorno recebe os seguintes parâmetros: A chamada de retorno recebe os seguintes parâmetros: -- *$1.accumulator*: value to be modified by the function and which is initialized by *initValue*. +- *$1.accumulator*: valor a ser modificado pela função sendo inicializado por *initValue*. - *$1.stop* (boolean, opcional): **true** para parar o callback do método. O valor retornado é o último calculado. #### Exemplo 1 @@ -2859,19 +2859,19 @@ Com o seguinte método ***Flatten***: #### Descrição -The `.remove()` function removes one or more element(s) from the specified *index* position in the collection and returns the edited collection. +A função `.remove()` remove um ou mais elemento(s) da posição *índice* especificada na coleção e retorna a coleção editada. > Essa função modifica a coleção original. Em *index*, passe a posição onde deseja que o elemento seja retirado da colecção. -> **Aviso**: lembre que elementos de coleção são numerados a partir de 0. If *index* is greater than the length of the collection, actual starting index will be set to the length of the collection. +> **Aviso**: lembre que elementos de coleção são numerados a partir de 0. Se *index* for maior que o comprimento da coleção, o índice inicial real será definido como o comprimento da coleção. - Se *index* < 0, ele será recalculado como *index:=index+length* (ele é considerado como o deslocamento do final da coleção). - Se o valor calculado for < 0, *index* será definido como 0. -- If the calculated value > the length of the collection, *index* is set to the length. +- Se o valor calculado > o comprimento da coleção, *index* é definido para o comprimento. -Em *howMany*, passe o número de elementos a serem removidos de *index*. If *howMany* is not specified, then one element is removed. +Em *howMany*, passe o número de elementos a serem removidos de *index*. Se \*howMany \*não for especificado, então um elemento é removido. Se tentar remover um elemento de uma coleção vazia, o método não faz nada (não é gerado qualquer erro). @@ -2918,10 +2918,10 @@ The `.resize()` function sets the colle > Essa função modifica a coleção original. -- If *size* < collection length, exceeding elements are removed from the collection. +- Se *size* < comprimento da coleção, os elementos excedentes são removidos da coleção. - Se *size* > comprimento da coleção, o comprimento da coleção é aumentado à medida. -Por padrão, novos elementos são preenchidos com valores **null**. You can specify the value to fill in added elements using the *defaultValue* parameter. +Por padrão, novos elementos são preenchidos com valores **null**. Pode especificar o valor para preencher os elementos adicionados usando o parâmetro *defaultValue*. #### Exemplo @@ -3050,16 +3050,16 @@ Se a colecção estiver vazia, este método não faz nada. #### Descrição -The `.slice()` function returns a portion of a collection into a new collection, selected from *startFrom* index to *end* index (end not included). This function returns a *shallow copy* of the collection. Na coleção original é uma coleção partilhada, a coleção retornada também é uma coleção partilhada. +A função `.slice()` retorna uma parte de uma coleção em uma nova coleção, selecionada do índice *startFrom* ao índice *end* (end não incluído). Esta função devolve uma *cópia superficial* da coleção. Na coleção original é uma coleção partilhada, a coleção retornada também é uma coleção partilhada. > Essa função não modifica a coleção original. -The returned collection contains the element specified by *startFrom* and all subsequent elements up to, but not including, the element specified by *end*. If only the *startFrom* parameter is specified, the returned collection contains all elements from *startFrom* to the last element of the original collection. +A coleção devolvida contém o elemento especificado por *startFrom* e todos os elementos subsequentes até, mas não incluindo, o elemento especificado por *end*. Se apenas for especificado o parâmetro *startFrom*, a coleção devolvida contém todos os elementos desde *startFrom* até ao último elemento da coleção original. - Se *startFrom* < 0, ele é recalculado como *startFrom:=startFrom+length* (é considerado como o deslocamento a partir do final da coleção). -- If the calculated value < 0, *startFrom* is set to 0. +- Se o valor calculado < 0, *startFrom* é definido como 0. - Se *end* < 0 , ele será recalculado como *end:=end+length*. -- If *end < startFrom* (passed or calculated values), the method does nothing. +- Se *end < startFrom* (valores passados ou calculados), o método não fará nada. #### Exemplo @@ -3104,7 +3104,7 @@ The returned collection contains the element specified by *startFrom* and all su #### Descrição -The `.some()` function returns true if at least one element in the collection successfully passed a test implemented in the provided *formula* or *methodName* code. +A função `.some()` retorna true se pelo menos um elemento da coleção passar com êxito em um teste implementado no código *formula* ou *methodName* fornecido. Designa-se a chamada de retorno a ser executada para avaliar os elementos da colecção utilizando qualquer um dos dois: @@ -3121,16 +3121,16 @@ A chamada de retorno recebe os seguintes parâmetros: Pode definir o(s) seguinte(s) parâmetro(s): -- (mandatory if you used a method) *$1.result* (boolean): **true** if the element value evaluation is successful, **false** otherwise. +- (obrigatório se você usou um método) *$1.result* (boolean): **true** se a avaliação do valor do elemento for bem-sucedida, **false** caso contrário. - *$1.stop* (boolean, opcional): **true** para parar o callback do método. O valor retornado é o último calculado. De qualquer forma, no momento em que a função `.some()` encontra o primeiro elemento da coleção retornando true, ela para de chamar o retorno de chamada e retorna **true**. -Por padrão, `.some()` testa toda a coleção. Optionally, you can pass the index of an element from which to start the test in *startFrom*. +Por padrão, `.some()` testa toda a coleção. Opcionalmente pode passar o índice da coleção para a qual iniciar a pesquisa em *startFrom*. - Se *startFrom* >= tamanho da coleção, é retornado **False**, o que significa que a coleção não é testada. -- If *startFrom* < 0, it is considered as the offset from the end of the collection. +- Se *startFrom* < 0, é considerado como a compensação a partir do final da recolha. - Se *startFrom* = 0, a coleção inteira é pesquisada (padrão). @@ -3197,7 +3197,7 @@ If `.sort()` is called with no parameters, only scalar values (number, text, dat 6. collections 7. datas -If you want to sort the collection elements in some other order or sort any type of element, you must supply in *formula* ([Formula object](FunctionClass.md)) or *methodName* (Text) a callback that defines the sort order. O valor de retorno deve ser um booleano que indica a ordem relativa dos dois elementos: **True** se *$1.value* for menor que *$1.value2*, **False** se *$1.value* for maior que *$1.value2*. Pode fornecer parâmetros adicionais a methodName se for necessário. +Se pretender ordenar os elementos da coleção por outra ordem ou ordenar qualquer tipo de elemento, deve fornecer em *formula* ([objeto Formula](FunctionClass.md)) ou *methodName* (Text) uma chamada de retorno que defina a ordem de ordenação. O valor de retorno deve ser um booleano que indica a ordem relativa dos dois elementos: **True** se *$1.value* for menor que *$1.value2*, **False** se *$1.value* for maior que *$1.value2*. Pode fornecer parâmetros adicionais a methodName se for necessário. A chamada de retorno recebe os seguintes parâmetros: @@ -3324,7 +3324,7 @@ Se a coleção contiver objetos, passe o parâmetro *propertyPath* para indicar #### Descrição -The `.unshift()` function inserts the given *value*(s) at the beginning of the collection and returns the modified collection. +A função `.unshift()` insere o(s) \*valu(es) fornecido(s) no início da coleção e retorna a coleção modificada. > Essa função modifica a coleção original. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/CryptoKeyClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/CryptoKeyClass.md index 9eae5d96826d34..c62c6fd8fed7c1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/CryptoKeyClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/CryptoKeyClass.md @@ -9,7 +9,7 @@ Essa classe está disponível no "class store" de `4D`. :::info Veja também -For a comprehensive overview of this class, please refer to the [**CryptoKey: encrypt, decrypt, sign, and verify!**](https://blog.4d.com/cryptokey-encrypt-decrypt-sign-and-verify/) blog post. +Para obter uma visão geral abrangente dessa classe, consulte a postagem do blog [**CryptoKey: criptografar, descriptografar, assinar e verificar!**](https://blog.4d.com/cryptokey-encrypt-decrypt-sign-and-verify/). ::: @@ -49,7 +49,7 @@ For a comprehensive overview of this class, please refer to the [**CryptoKey: en -The `4D.CryptoKey.new()` function creates a new `4D.CryptoKey` object encapsulating an encryption key pair, based upon the *settings* object parameter. It allows to generate a new RSA or ECDSA key, or to load an existing key pair from a PEM definition. +A função `4D.CryptoKey.new()` cria um novo objeto `4D.CryptoKey` que encapsula um par de chaves de criptografia, com base no parâmetro objeto *settings*. It allows to generate a new RSA or ECDSA key, or to load an existing key pair from a PEM definition. #### *parâmetros* @@ -71,21 +71,21 @@ A message is signed by a private key and the signature is verified by the corres - Lado bob: ```4d -// Create the message +// Criar a mensagem $message:="hello world" Folder(fk desktop folder).file("message.txt").setText($message) -// Create a key -$type:=New object("type";"RSA") +// Criar uma chave +$type:=New object("type"; "RSA") $key:=4D.CryptoKey.new($type) -// Get the public key and save it +// Obtenha a chave pública e salve-a Folder(fk desktop folder).file("public.pem").setText($key.getPublicKey()) -// Get signature as base64 and save it +// Obtenha a assinatura como base64 e salve-a Folder(fk desktop folder).file("signature").setText($key.sign($message;$type)) -/*Bob sends the message, the public key and the signature to Alice*/ +/*Bob envia a mensagem, a chave pública e a assinatura para Alice*/ ``` - O lado Alice: @@ -166,7 +166,7 @@ Defined only for ECDSA keys: the normalised -The `.decrypt()` function decrypts the *message* parameter using the **private** key. O algoritmo utilizado depende do tipo da chave. +A função `.encrypt()` criptografa o parâmetro *message* usando a chave **pública**. O algoritmo utilizado depende do tipo da chave. The key must be a RSA key, the algorithm is RSA-OAEP (see [RFC 3447](https://tools.ietf.org/html/rfc3447)). @@ -180,7 +180,7 @@ The key must be a RSA key, the algorithm is RSA-OAEP (see [RFC 3447](https://too #### *Resultado* -The function returns a status object with `success` property set to `true` if the *message* could be successfully decrypted. +A função retorna um objeto status com a propriedade `success` definida como `true` se a *mensagem* puder ser descriptografada com êxito. | Propriedade | Tipo | Descrição | | ----------- | ---------- | ------------------------------------------------------------------------ | @@ -188,7 +188,7 @@ The function returns a status object with `success` property set to `true` if th | resultado | text | Mensagem decifrado e decodificado utilizando `options.encodingDecrypted` | | errors | collection | Se `success` for `false`, pode conter uma coleção de erros | -In case the *message* couldn't be decrypted because it was not encrypted with the same key or algorithm, the `status` object being returned contains an error collection in `status.errors`. +Caso a *mensagem* não possa ser descriptografada porque não foi criptografada com a mesma chave ou algoritmo, o objeto `status` que está sendo retornado contém uma coleção de erros em `status.errors`. @@ -216,7 +216,7 @@ In case the *message* couldn't be decrypted because it was not encrypted with th -The `.encrypt()` function encrypts the *message* parameter using the **public** key. O algoritmo utilizado depende do tipo da chave. +A função `.decrypt()` descriptografa o parâmetro *message* usando a chave **privada**. O algoritmo utilizado depende do tipo da chave. The key must be a RSA key, the algorithm is RSA-OAEP (see [RFC 3447](https://tools.ietf.org/html/rfc3447)). @@ -338,7 +338,7 @@ Definição PEM de uma chave de cifrado a carregar. Se a chave for uma chave pri -The `.sign()` function signs the utf8 representation of a *message* string using the `CryptoKey` object keys and provided *options*. It returns its signature in base64 or base64URL format, depending on the value of the `options.encoding` attribute you passed. +A função `.sign()` assina a representação utf8 de uma string *message* usando as chaves do objeto `CryptoKey` e as *options* fornecidas. It returns its signature in base64 or base64URL format, depending on the value of the `options.encoding` attribute you passed. A `CryptoKey` deve conter uma chave **privada** válida. @@ -395,7 +395,7 @@ Contains the name of the key type - "RSA", " - "RSA": um par de chaves RSA, usando `settings.size` como [.size](#size). - "ECDSA": an Elliptic Curve Digital Signature Algorithm key pair, using `settings.curve` as [.curve](#curve). Lembre que chaves ECDSA não podem ser usadas para a criptografia mas só pela assinatura. -- "PEM": a key pair definition in PEM format, using `settings.pem` as [.pem](#pem). +- "PEM": uma definição de par chave em formato PEM, usando `settings.pem` como [.pem](#pem). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md index 0f744c321627c7..6af9f9ff9c7685 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/DataClassClass.md @@ -940,7 +940,7 @@ Fórmulas nas consultas podem receber parâmetros através de $1. Este ponto est | Incluído em | IN | Retorna dados iguais a ao menos um dos valores de uma coleção ou de um conjunto de valores, admite o coringa (@) | | Contém palavra chave | % | As palavras chaves podem ser usadas em atributos de string ou imagem | -- **value**: o valor a comparar ao valor atual da propriedade de cada entidade na seleção de entidade. Pode ser um **marcador** (ver **Uso de marcadores** abaixo) ou qualquer expressão que coincida com a propriedade de tipo de dados. Note that, in case of type mismatch with scalar types (text, date, number...), 4D will try to convert the **value** type to the attribute data type whenever possible, for an easier handling of values coming from the Internet. For example, if the string "v20" is entered as **value** to compare with an integer attribute, it will be converted to 20. +- **value**: o valor a comparar ao valor atual da propriedade de cada entidade na seleção de entidade. Pode ser um **marcador** (ver **Uso de marcadores** abaixo) ou qualquer expressão que coincida com a propriedade de tipo de dados. Observe que, em caso de incompatibilidade de tipo com tipos escalares (texto, data, número...), 4D tentará converter o tipo **value** para o tipo de atributo sempre que possível, para um tratamento mais fácil de valores vindos da Internet. Por exemplo, se a string "v20" for digitada como **value** para comparar com um atributo inteiro, ela será convertida em 20. Quando usar um valor constante, as regras abaixo devem ser respeitadas: - A constante de tipo texto pode ser passada com ou sem aspas simples (ver **Uso de aspas mais abaixo**). Para pesquisar uma stirng dentro de uma string (uma pesquisa "contém") use o símbolo coringa (@) em valor para isolar a string a ser pesquisada como mostrado neste exemplo: "@Smith@". As palavras chaves abaixo são proibidas para constantes de texto: true, false. - Valores constantes de tipo **booleano**: **true** ou **false** (diferencia maiúscula de minúscula). @@ -1035,6 +1035,20 @@ Não obterá o resultado esperado porque o valor nulo será avaliado por 4D como $vSingles:=ds.Person.query("spouse = null") //sintaxe correta ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### Não igual a em colecções Ao pesquisar nos atributos de objectos de classe de dados que contêm colecções, o comparador "não igual a valor" (`#` ou `!=`) encontrará elementos em que TODAS as propriedades são diferentes de valor (e não aqueles em que PELO MENOS uma propriedade é diferente de valor, que é como funcionam outros comparadores). Basicamente, é equivalente à pesquisa por "Not(encontrar elementos da coleção onde a propriedade é igual a *value*"). Por exemplo, com as seguintes entidades: @@ -1205,7 +1219,7 @@ No parâmetro *querySettings* é possível passar um objeto que conteha opções | ------------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | parameters | Object | **Espaços reservados nomeados para valores** usados na *queryString* ou *formula*. Os valores são expressos como pares propriedade / valor, onde propriedade é o nome do marcador de posição inserido para um valor na *queryString* ou na *formula* (":placeholder") e valor é o valor a ser comparado. Pode combinar marcadores de posição indexados (valores passados diretamente em parâmetros de valor) e valores de marcadores de posição com nome na mesma pesquisa. | | attributes | Object | **Espaços reservados nomeados para caminhos de atributos** usados na *queryString* ou *formula*. Os atributos se expressam como pares propriedade/ valor, onde propriedade é o nome do marcador de posição inserido para uma rota de atributo em *queryString* ou *formula* (":placeholder") e valor pode ser uma string ou uma coleção de strings. Cada valor é um caminho que pode designar um escalar ou um atributo relacionado da classe de dados ou uma propriedade em um campo de objeto da classe de dados.
    TipoDescrição
    StringattributePath expresso usando a notação de ponto, por exemplo, "nome" ou "usuario.endereco.cep"
    Coleção de stringsCada string da coleção representa um nível do attributePath, por exemplo, \["nome"] ou \["usuario","endereco","cep"]. Using a collection allows querying on attributes with names that are not compliant with dot notation, e.g. \["4Dv17.1","en/fr"]
    You can mix indexed placeholders (values directly passed in *value* parameters) and named placeholder values in the same query. | -| args | Object | Parámetro(s) a passar para as fórmulas, se houver. The **args** object will be received in $1 within formulas and thus its values will be available through *$1.property* (see example 3). | +| args | Object | Parámetro(s) a passar para as fórmulas, se houver. O objeto **args** será recebido em $1 nas fórmulas e, portanto, seus valores estarão disponíveis através de *$1.property* (ver exemplo 3). | | allowFormulas | Parâmetros | True para permitir as chamadas de fórmulas na pesquisa (padrão). Passe falso para desautorizar a execução de fórmulas. If set to false and `query()` is given a formula, an error is sent (1278 - Formula not allowed in this member method). | | context | Text | Etiqueta para o contexto de otimização automático aplicados à seleção de entidade. Este contexto será utilizado pelo código que maneja a seleção de entidades para que possa se beneficiar da otimização. This feature is designed for client/server processing; for more information, please refer to the [**Client/server optimization**](../ORDA/client-server-optimization.md#optimization-context) section. | | queryPlan | Parâmetros | Na entity selection resultante, devolve ou não a descrição detalhada da pesquisa logo antes de ser executada, ou seja, a pesquisa planificada. A propriedade devolvida é um objeto que inclui cada pesquisa e subpesquisa prevista (no caso de uma pesquisa complexa). Esta opção é útil durante a fase de desenvolvimento de uma aplicação. Geralmente é usada em conjunto com queryPath. Como padrão é omitido: false. | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/DataStoreClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/DataStoreClass.md index 0d4a27900df7d8..d1df7092c6d2ff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/DataStoreClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/DataStoreClass.md @@ -5,8 +5,8 @@ title: DataStore A [Datastore](ORDA/dsMapping.md#datastore) is the interface object provided by ORDA to reference and access a database. Os objetos `Datastore` são retornados pelos seguintes comandos: -- [ds](../commands/ds.md): a shortcut to the main datastore -- [Open datastore](../commands/open-datastore.md): to open any remote datastore +- [ds](../commands/ds.md): um atalho para o datastore principal +- [Open datastore](../commands/open-datastore.md): para abrir qualquer datastore remoto ### Resumo @@ -240,7 +240,7 @@ A função `.flushAndLock()` Esta função só pode ser chamada: -- on the local datastore ([`ds`](../commands/ds.md)). +- no datastore local ([`ds`](../commands/ds.md)). - no ambiente cliente/servidor, na máquina do servidor. ::: @@ -391,7 +391,7 @@ A função `.getGlobalStamp()` retorna um **Objeto devolvido** -| Propriedade | Tipo | Descrição | -| ----------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| type | string |
  • "4D": repositório de dados principal, disponível por meio do ds
  • "4D Server": repositório de dados remoto, aberto com Open datastore
  • | -| networked | boolean |
  • True: o armazenamento de dados é acessado por meio de uma conexão de rede.
  • False: o armazenamento de dados não é acessado por meio de uma conexão de rede (banco de dados local)
  • | -| localID | text | ID do armazém de dados na máquina. Corresponde à cadeia de caracteres localId fornecida com o comando `Open datastore`. String vazia ("") para o datastore principal. | -| connection | object | Objeto descrevendo a conexão remota da datastore (não retornado para datastore principal) Propriedades disponiveis: Propriedades disponiveis: Propriedades disponíveis:
    PropriedadeTipoDescrição
    hostnametextoEndereço IP ou nome do datastore remoto + ":" + número da porta
    tlsbooleanoTrue se a conexão segura é usada com o datastore remoto
    idleTimeoutnúmeroTempo limite de inatividade da sessão (em minutos)
    usertextoUsuário autenticado no datastore remoto
    | +| Propriedade | Tipo | Descrição | +| ----------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| type | string |
  • "4D": repositório de dados principal, disponível por meio do ds
  • "4D Server": repositório de dados remoto, aberto com Open datastore
  • | +| networked | boolean |
  • True: o armazenamento de dados é acessado por meio de uma conexão de rede.
  • False: o armazenamento de dados não é acessado por meio de uma conexão de rede (banco de dados local)
  • | +| localID | text | ID do armazém de dados na máquina. ID do armazém de dados na máquina. String vazia ("") para o datastore principal. | +| connection | object | Objeto descrevendo a conexão remota da datastore (não retornado para datastore principal) Propriedades disponiveis: Propriedades disponiveis: Objeto descrevendo a conexão remota da datastore (não retornado para datastore principal) Propriedades disponiveis: Propriedades disponiveis: Propriedades disponíveis:
    PropriedadeTipoDescrição
    hostnametextoEndereço IP ou nome do datastore remoto + ":" + número da porta
    tlsbooleanoTrue se a conexão segura é usada com o datastore remoto
    idleTimeoutnúmeroTempo limite de inatividade da sessão (em minutos)
    usertextoUsuário autenticado no datastore remoto
    | - Se a função `.getInfo()` for executada em um servidor 4D ou um único usuário, `networked` é Falso. - Se a função `.getInfo()` for executada em um 4D remoto, `networked` será True @@ -710,7 +710,7 @@ Quando essa função não é chamada, as novas seleções de entidades podem ser A função `.provideDataKey()` permite fornecer uma chave de criptografia de dados para o arquivo de dados atual do armazenamento de dados e detecta se a chave corresponde aos dados criptografados. Esta função pode ser utilizada ao abrir um banco de dados criptografado, ou ao executar qualquer operação de criptografia que precise da chave de criptografia, como por exemplo voltar a criptografar o arquivo de dados. -> - A função `.provideDataKey()` deve ser chamada em um banco de dados criptografado. Se for chamado em um banco de dados não criptografado, o erro 2003 (a chave de criptografia não corresponde aos dados) é retornado. Use o comando `Data file encryption status` para determinar se o banco de dados está criptografado. +> - A função `.provideDataKey()` deve ser chamada em um banco de dados criptografado. Se for chamado em um banco de dados não criptografado, o erro 2003 (a chave de criptografia não corresponde aos dados) é retornado. é retornado. Use o comando `Data file encryption status` para determinar se o banco de dados está criptografado. > - A função `.provideDataKey()` não pode ser chamada de um 4D remoto ou de um datastore remoto criptografado. Se você usar o parâmetro *curPassPhrase*, passe a cadeia de caracteres usada para gerar a chave de criptografia de dados. Quando usar este parâmetro, uma chave de criptografia é gerada. @@ -838,7 +838,7 @@ A função `.setGlobalStamp()` returns a `4D.Blob` object containing the entire content of a file. For information on BLOBs, please refer to the [BLOB](Concepts/dt_blob.md) section. +The `.getContent()` function returns a `4D.Blob` object containing the entire content of a file. Para obter informações sobre BLOBs, consulte a seção [BLOB](Concepts/dt_blob.md). **Valor retornado** diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EmailObjectClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EmailObjectClass.md index a13519740ea16e..183c81dfc7b522 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EmailObjectClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EmailObjectClass.md @@ -10,7 +10,7 @@ Creating, sending or receiving emails in 4D is done by handling an `Email` objec - IMAP - [`.getMail()`](IMAPTransporterClass.md#getmail) and [`.getMails()`](IMAPTransporterClass.md#getmails) functions to get emails from an IMAP server - POP3 - Função [`.getMail()`](POP3TransporterClass.md#getmail) para obter um e-mail de um servidor POP3. -> You can also create a new, blank `Email` object and then fill it with [Email object properties](#email-object). +> Você também pode criar um novo objeto `Email` em branco e preenchê-lo com [propriedades do objeto Email](#email-object). You send `Email` objects using the SMTP [`.send()`](SMTPTransporterClass.md#send) function. @@ -110,7 +110,7 @@ The [`textBody`](#textbody) and [`htmlBody`](#htmlbody) properties are only used The `.attachments` property contains a collection of `4D.MailAttachment` object(s). -Attachment objects are defined through the [`MAIL New attachment`](MailAttachmentClass.md#mail-new-attachment) command. Attachment objects have specific [properties and functions](MailAttachmentClass.md). +Os objetos de anexo são definidos por meio do comando [`MAIL New attachment`](MailAttachmentClass.md#mail-new-attachment). Os objetos anexo têm [propriedades e funções](MailAttachmentClass.md) específicas. ## .bcc @@ -207,7 +207,7 @@ Cada objeto da coleção de cabeçalhos pode conter as propriedades abaixo: | Propriedade | Tipo | Valor | | ---------------------------------------------------------------------------- | ---- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | [].name | text | (mandatory) Header field name as defined in [RFC#5322](https://tools.ietf.org/html/rfc5322). Caso seja nulo ou indefinido, o campo cabeçalho não será adicionado ao cabeçalho MIME. | -| [].value | text | Header field values as defined in [RFC#5322](https://tools.ietf.org/html/rfc5322) | +| [].value | text | Valores do campo de cabeçalho conforme definido em [RFC#5322](https://tools.ietf.org/html/rfc5322) | ## .htmlBody @@ -223,7 +223,7 @@ The `.htmlBody` property contains the unique ID from the IMAP server. @@ -282,7 +282,7 @@ Este cabeçalho geralmente é "lettersOrNumbers@domainname", por exemplo, "abcde #### Descrição -[IMAP transporter](IMAPTransporterClass.md) only. +[IMAP transporter](IMAPTransporterClass.md) unicamente. The `.receivedAt` property contains the timestamp of the email's arrival on the IMAP server in ISO 8601 UTC format (ex: 2020-09-13T16:11:53Z). @@ -333,7 +333,7 @@ Para uma melhor capacidade de entrega, é recomendado usar o mesmo endereço de #### Descrição -[IMAP transporter](IMAPTransporterClass.md) only. +[IMAP transporter](IMAPTransporterClass.md) unicamente. The `.size` property contains the size (expressed in bytes) of the Email object returned by the IMAP server. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md index 4d7af6a78403ef..55b54890d28549 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EntityClass.md @@ -102,7 +102,7 @@ The `.clone()` function creates in memo This function allows you to update entities separately. Note however that, for performance reasons, the new entity shares the same reference of object attributes as the cloned entity. -> Keep in mind that any modifications done to entities will be saved in the referenced record only when the [`.save()`](#save) function is executed. +> Tenha em mente que quaisquer modificações feitas em entidades serão salvas no registro referenciado somente quando a função [`.save()`](#save) for executada. Esta função só pode ser usada com entidades já salvas no banco de dados. Não pode ser chamado em uma entidade recém-criada (para a qual [`.isNew()`](#isnew) retorna **True**). @@ -966,34 +966,34 @@ Otherwise, you can pass the `dk reload if stamp changed` option in the *mode* pa O objeto retornado por `.lock()` contém as seguintes propriedades: -| Propriedade | | Tipo | Descrição | -| --------------------------------- | ----------------------------------- | ---------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| success | | boolean | true se a ação de bloqueio for bem sucedida (ou se a entidade já estiver bloqueada no processo atual), falso caso contrário. | -| | | | ***Disponível somente se a opção `dk reload if stamp changed` for usada:*** | -| **wasReloaded** | | boolean | verdadeiro se a entidade foi recarregada com sucesso, falso caso contrário. | -| | | | ***Disponível apenas em caso de erro:*** | -| status(\*) | | number | Código de erro, ver abaixo | -| statusText(\*) | | text | Descrição do erro, ver abaixo | -| | | | ***Disponível apenas em caso de erro de bloqueio pessimista:*** | -| lockKindText | | text | "Locked by record" se trancado por um processo 4D, "Locked by session" se trancado por uma sessão REST | -| lockInfo | | object | Informações sobre a origem do bloqueio. Retorna propriedades dependendo da origem da trava (processo 4D ou sessão REST) | -| | | | ***Disponível só para um processo trava 4D:*** | -| | task_id | number | Process ID | -| | user_name | text | Nome de usuário de sessão na máquina | -| | user4d_alias | text | Nome ou apelido do usuário 4D | -| | user4d_id | number | Id do usuário no diretório do banco de dados 4D | -| | host_name | text | Nome da máquina | -| | task_name | text | Nome de processo | -| | client_version | text | Versão do cliente | -| | | | ***Disponível só para um processo trava REST:*** | -| | host | text | URL que trava a entidade (por exemplo "www.myserver.com") | -| | IPAddr | text | Endereço IP da trava (por exemplo. "127.0.0.1") | -| | userAgent | text | userAgent of the locker (e.g. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | -| | | | ***Disponível somente em caso de erro grave*** (chave primária já existe, disco cheio...): | -| errors | | uma coleção de objetos | | -| | message | text | Mensagem de erro | -| | assinatura de componentes | text | assinatura interna do componente (ex.: "dmbg" significa componente da base de dados) | -| | errCode | number | Código de erro | +| Propriedade | | Tipo | Descrição | +| --------------------------------- | ----------------------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| success | | boolean | true se a ação de bloqueio for bem sucedida (ou se a entidade já estiver bloqueada no processo atual), falso caso contrário. | +| | | | ***Disponível somente se a opção `dk reload if stamp changed` for usada:*** | +| **wasReloaded** | | boolean | verdadeiro se a entidade foi recarregada com sucesso, falso caso contrário. | +| | | | ***Disponível apenas em caso de erro:*** | +| status(\*) | | number | Código de erro, ver abaixo | +| statusText(\*) | | text | Descrição do erro, ver abaixo | +| | | | ***Disponível apenas em caso de erro de bloqueio pessimista:*** | +| lockKindText | | text | "Locked by record" se trancado por um processo 4D, "Locked by session" se trancado por uma sessão REST | +| lockInfo | | object | Informações sobre a origem do bloqueio. Retorna propriedades dependendo da origem da trava (processo 4D ou sessão REST) | +| | | | ***Disponível só para um processo trava 4D:*** | +| | task_id | number | Process ID | +| | user_name | text | Nome de usuário de sessão na máquina | +| | user4d_alias | text | Nome ou apelido do usuário 4D | +| | user4d_id | number | Id do usuário no diretório do banco de dados 4D | +| | host_name | text | Nome da máquina | +| | task_name | text | Nome de processo | +| | client_version | text | Versão do cliente | +| | | | ***Disponível só para um processo trava REST:*** | +| | host | text | \| \\| URL que trava a entidade (por exemplo "www.myserver.com") \\| \| | +| | IPAddr | text | Endereço IP da trava (por exemplo. "127.0.0.1") | +| | userAgent | text | userAgent of the locker (e.g. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36") | +| | | | ***Disponível somente em caso de erro grave*** (chave primária já existe, disco cheio...): | +| errors | | uma coleção de objetos | | +| | message | text | Mensagem de erro | +| | assinatura de componentes | text | assinatura interna do componente (ex.: "dmbg" significa componente da base de dados) | +| | errCode | number | Código de erro | (\*) The following values can be returned in the *status* and *statusText* properties of the *Result* object in case of error: @@ -1366,7 +1366,7 @@ No primeiro par|âmetro, passa os atributos entidade a extrair. Pode passar: - *filterString*: a string with property paths separated with commas: "propertyPath1, propertyPath2, ...", or - *filterCol*: a collection of strings: \["propertyPath1","propertyPath2";...] -If a filter is specified for attributes of the relatedEntity [kind](DataClassClass.md#attributename): +Se um filtro for especificado para os atributos onde [kind](DataClassClass.md#attributename) é relatedEntity: - propertyPath = "relatedEntity" -> it is extracted with simple form: an object with property \_\_KEY (primary key). - propertyPath = "relatedEntity.\*" -> todas as propriedades são extraídas @@ -1643,7 +1643,7 @@ The `.touched()` function tests wheth Se um atributo for modificado ou calculado, a função retorna True, senão retorna False. Pode usar essa função para determinar se precisar salvar a entidade. -This function returns False for a new entity that has just been created (with [`.new( )`](DataClassClass.md#new)). Note however that if you use a function which calculates an attribute of the entity, the `.touched()` function will then return True. For example, if you call [`.getKey()`](#getkey) to calculate the primary key, `.touched()` returns True. +Essa função retorna False para uma nova entidade que acabou de ser criada (com [`.new( )`](DataClassClass.md#new)). Note however that if you use a function which calculates an attribute of the entity, the `.touched()` function will then return True. Por exemplo, se você chamar [`.getKey()`](#getkey) para calcular a chave primária, `.touched()` retornará True. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EntitySelectionClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EntitySelectionClass.md index c2e7aedbc0d9bb..6bd883b21d7bcd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EntitySelectionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/EntitySelectionClass.md @@ -2016,10 +2016,10 @@ A função `.slice()` retorna A seleção de entidade retornada contém as entidades especificadas por *startFrom* e todas as entidades subsequentes até, mas não incluindo, a entidade especificada por *end*. Se apenas o parâmetro *startFrom* for especificado, a seleção de entidades retornada contém todas as entidades desde *startFrom* até a última entidade da seleção de entidades original. -- Se *startFrom* < 0, ele será recalculado como *startFrom:=startFrom+length* (ele é considerado como o deslocamento do final da seleção da entidade). If the calculated value < 0, *startFrom* is set to 0. +- Se *startFrom* < 0, ele será recalculado como *startFrom:=startFrom+length* (ele é considerado como o deslocamento do final da seleção da entidade). Se o valor calculado < 0, *startFrom* é definido como 0. - Se *startFrom >= length*, a função retorna uma seleção vazia de entidade. - Se *end* < 0, ele será recalculado como *end:=end+length*. -- If *end < startFrom* (passed or calculated values), the method does nothing. +- Se *end < startFrom* (valores passados ou calculados), o método não fará nada. Se a seleção de entidade contém entidades que foram abandonadas, também serão retornadas. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FileClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FileClass.md index a944d795b0ceec..6459e0e9c6427a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FileClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FileClass.md @@ -627,7 +627,7 @@ $infoPlistFile.setAppInfo($info) #### Descrição -The `.setContent( )` function rewrites the entire content of the file using the data stored in the *content* BLOB. For information on BLOBs, please refer to the [BLOB](Concepts/dt_blob.md) section. +The `.setContent( )` function rewrites the entire content of the file using the data stored in the *content* BLOB. Para obter informações sobre BLOBs, consulte a seção [BLOB](Concepts/dt_blob.md). #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FileHandleClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FileHandleClass.md index 5b77d7943be4ce..80ad7b75281130 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FileHandleClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FileHandleClass.md @@ -3,9 +3,9 @@ id: FileHandleClass title: FileHandle --- -The `FileHandle` class has functions that allow you to sequentially read from or append contents to an opened [`File`](FileClass) object. O manuseamento de um arquivo pode acessar a qualquer parte de um documento. +A classe `FileHandle` tem funções que lhe permitem ler sequencialmente ou anexar conteúdos a um objeto aberto [`File`](FileClass). O manuseamento de um arquivo pode acessar a qualquer parte de um documento. -File handle objects are created with the [`file.open()`](FileClass#open) function. +Os objetos File handle são criados usando a função [`file.open()`](FileClass#open). > To read or write a whole document at once, you might consider using the [file.getText()](FileClass.md#gettext) and [file.setText()](FileClass.md#settext) functions. @@ -216,7 +216,7 @@ Essa propriedade é **somente leitura**. The `.getSize()` function returns the current size of the document, expressed in bytes. -> This function returns the same value as the ([.size](FileClass#size)) property of the `File` class. +> Essa função retorna o mesmo valor que a propriedade ([.size](FileClass#size)) da classe `File`. #### Veja também @@ -275,7 +275,7 @@ Essa propriedade é **leitura/escrita**. :::caution -Quando um identificador de arquivo é criado, o valor `.offset` é um número de bytes. However, the unit of offset measurement differs according to the reading function: with [`readBlob()`](#readblob), `.offset` is a number of bytes, whereas with [`readText()`](#readtext)/[`readLine()`](#readline) it is a number of characters. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. So, if you start reading with `readBlob()` and then call `readText()`, text reading will start at an inconsistent position. It is therefore essential to set the `.offset` property yourself if you switch from reading/writing blob to reading/writing text in the same filehandle. Por exemplo: +Quando um identificador de arquivo é criado, o valor `.offset` é um número de bytes. However, the unit of offset measurement differs according to the reading function: with [`readBlob()`](#readblob), `.offset` is a number of bytes, whereas with [`readText()`](#readtext)/[`readLine()`](#readline) it is a number of characters. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. Dependendo do conjunto de caracteres do arquivo, um caractere corresponde a um ou mais bytes. Por exemplo: ```4d // Open a european text file using utf-16 encoding (two bytes per character) @@ -321,7 +321,7 @@ $s:=$fh.readText() The `.readBlob()` function returns a blob a *bytes* size from the file, starting from the current position . -When this function is executed, the current position ([.offset](#offset)) is updated after the last byte read. +Quando esta função é executada, a posição atual ([.offset](#offset)) é atualizada após a leitura do último byte. #### Veja também @@ -355,11 +355,11 @@ When this function is executed, the current position ([.offset](#offset)) is upd The `.readLine()` function returns a line of text from the current position until an end-of-line delimiter is encountered or the end of the document is reached. -When this function is executed, the current position ([`.offset`](#offset)) is updated. +Quando essa função é executada, a posição atual ([`.offset`](#offset)) é atualizada. :::caution Aviso -This function assumes that the [`.offset`](#offset) property is a number of characters, not a number of bytes. Para obter mais informações, consulte [descrição de .offset](#offset). +Essa função assume que a propriedade [`.offset`](#offset) é um número de caracteres, não um número de bytes. Para obter mais informações, consulte [descrição de .offset](#offset). ::: @@ -400,11 +400,11 @@ The `.readText()` function retur A string de caracteres *stopChar* não está incluída no texto devolvido. Se omitir o parâmetro *stopChar*, todo o texto do documento é devolvido. -When this function is executed, the ([.offset](#offset)) is placed just after the *stopChar* string. +Quando essa função é executada, o ([.offset](#offset)) é colocado logo após a string *stopChar*. :::caution Aviso -This function assumes that the [`.offset`](#offset) property is a number of characters, not a number of bytes. Para obter mais informações, consulte [descrição de .offset](#offset). +Essa função assume que a propriedade [`.offset`](#offset) é um número de caracteres, não um número de bytes. Para obter mais informações, consulte [descrição de .offset](#offset). ::: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FolderClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FolderClass.md index 1a5b5045b6fa6c..59baaa5407f54f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FolderClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FolderClass.md @@ -3,7 +3,7 @@ id: FolderClass title: Folder --- -`Folder` objects are created with the [`Folder`](../commands/folder.md) command. Contêm referências a pastas que podem ou não existir efectivamente no disco. Por exemplo, quando executa o comando ’Folder`para criar uma pasta, é criado um objeto válido`Folder` mas nada é realmente armazenado no disco até chamar a função [`folder.create()\`](#create). +Os objetos `Folder` são criados com o comando [`Folder`](../commands/folder.md). Contêm referências a pastas que podem ou não existir efectivamente no disco. Por exemplo, quando executa o comando ’Folder`para criar uma pasta, é criado um objeto válido`Folder` mas nada é realmente armazenado no disco até chamar a função [`folder.create()\\\`](#create). ### Exemplo @@ -67,9 +67,9 @@ Os objetos `Folder` suportam vários pathnames, incluindo a sintaxe `filesystems #### Descrição -A função `4D.Folder.new()` cria e retorna um novo objeto do tipo `4D.Folder`. It is identical to the [`Folder`](../commands/folder.md) command (shortcut). +A função `4D.Folder.new()` cria e retorna um novo objeto do tipo `4D.Folder`. É idêntico ao comando [`Folder`](../commands/folder.md) (atalho). -> It is recommended to use the [`Folder`](../commands/folder.md) shortcut command instead of `4D.Folder.new()`. +> Recomenda-se usar o comando de atalho [`Folder`](../commands/folder.md) em vez de `4D.Folder.new()`. @@ -297,7 +297,7 @@ A função `.moveTo( )` move ou renome The *destinationFolder* must exist on disk, otherwise an error is generated. -Por padrão, a pasta mantém o seu nome quando movida. Se quiser renomear a pasta movida, passe o novo nome completo no parâmetro *newName*. O novo nome deve cumprir com as regras de nomenclatura (por exemplo, não deve conter caracteres como ":", "/", etc.), do contrário se devolve um erro. +Por padrão, a pasta mantém o seu nome quando movida. Por padrão, a pasta mantém o seu nome quando movida. O novo nome deve cumprir com as regras de nomenclatura (por exemplo, não deve conter caracteres como ":", "/", etc.), do contrário se devolve um erro. **Objeto devolvido** diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FunctionClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FunctionClass.md index b2f75756a69fd5..1271b1c5121a6e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FunctionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/FunctionClass.md @@ -128,7 +128,7 @@ In the *thisObj* parameter, you can pass a reference to the object to be used as You can also pass a collection to be used as $1...$n parameters in the formula using the optional *formulaParams* parameter. -Note that `.apply()` is similar to [`.call()`](#call) except that parameters are passed as a collection. Isso pode ser útil para passar resultados calculados. +Note que `.apply()` é similar a [`.call()`](#call) exceto que os parâmetros são passados como coleção. Isso pode ser útil para passar resultados calculados. Isso pode ser útil para passar resultados calculados. #### Exemplo 1 diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/HTTPRequestClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/HTTPRequestClass.md index 071a37106d802c..910aff3cde4787 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/HTTPRequestClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/HTTPRequestClass.md @@ -142,7 +142,7 @@ In the *options* parameter, pass an object that can contain the following proper | protocol | Text | "auto" ou "HTTP1". "auto" significa HTTP1 na implementação actual | "auto" | | proxyAuthentication | [objeto de autenticação](#authentication-object) | Autenticação por procuração de tratamento de objectos | indefinido | | serverAuthentication | [objeto de autenticação](#authentication-object) | Autenticação do servidor de tratamento de objectos | indefinido | -| returnResponseBody | Parâmetros | If false, the response body is not returned in the [`response` object](#response). Devolve um erro se falso e `onData` é indefinido | True | +| returnResponseBody | Parâmetros | Se false, o corpo de resposta não é retornado no objeto [`response`](#response). Devolve um erro se falso e `onData` é indefinido | True | | timeout | Real | Tempo de espera em segundos. Indefinido = sem timeout | Indefinido | | validateTLSCertificate | Parâmetros | Se false, 4D não valida o certificado TLS e não retorna um erro se ele for inválido (i.e. expirado, auto-assinado...). Importante: Na implementação actual, a Autoridade de Certificação em si não é verificada. | True | @@ -175,7 +175,7 @@ For the callback functions to be called when you do not use [`wait()`](#wait) (a #### objecto evento -An `event` object is returned when a [callback function](#callback-functions) is called. Contém as seguintes propriedades: +Um objeto `event` é retornado quando uma [função de retorno de chamada](#callback-functions) é chamada. Contém as seguintes propriedades: | Propriedade | Tipo | Descrição | | --------------------- | ---- | -------------------------------------------------------------------------------------------------------------------------- | @@ -390,7 +390,7 @@ Um objeto `response` é um objeto não compartilhável. Contém as seguintes pro | Propriedade | Tipo | Descrição | | --------------------------- | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| .body | Diferente de | Corpo da resposta. The type of the message is defined according to the [`dataType`](#datatype) property. Indefinido se o corpo ainda não tiver sido recebido | +| .body | Diferente de | Corpo da resposta. O tipo da mensagem é definido conforme a propriedade [`dataType`](#datatype). Indefinido se o corpo ainda não tiver sido recebido | | .headers | Object | Cabeçalhos da resposta. Os nomes dos cabeçalhos são devolvidos em minúsculas. `.key` = value (value can be a collection if the same key appears multiple times). Indefinido se os cabeçalhos ainda não tiverem sido recebidos. | | .status | Number | Código de estado da resposta | | .statusText | Text | Mensagem que explica o código de estado | @@ -493,6 +493,6 @@ If a *time* parameter is passed, the function will wait at most the defined numb Se a resposta do servidor já tiver chegado, a função regressa imediatamente. -During a `.wait()` execution, callback functions are executed, whether from other `HTTPRequest` or [`SystemWorker`](SystemWorkerClass.md) instances, or other [`CALL WORKER`](../commands-legacy/call-worker.md) calls. You can exit from a `.wait()` by calling [`terminate()`](#terminate) from a callback. +During a `.wait()` execution, callback functions are executed, whether from other `HTTPRequest` or [`SystemWorker`](SystemWorkerClass.md) instances, or other [`CALL WORKER`](../commands-legacy/call-worker.md) calls. Você pode sair de um `.wait()` chamando [`terminate()`](#terminate) de um retorno de chamada. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/IMAPTransporterClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/IMAPTransporterClass.md index 26ae5dca2ac06e..7f9eb8756fe811 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/IMAPTransporterClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/IMAPTransporterClass.md @@ -57,7 +57,7 @@ IMAP Transporter objects are instantiated with the [IMAP New transporter](../com #### Descrição -A função `4D.IMAPTransporter.new()` cria e retorna um novo objeto do tipo `4D.IMAPTransporter`. It is identical to the [`IMAP New transporter`](../commands/imap-new-transporter.md) command (shortcut). +A função `4D.IMAPTransporter.new()` cria e retorna um novo objeto do tipo `4D.IMAPTransporter`. É idêntico ao comando [`IMAP New transporter`](../commands/imap-new-transporter.md) (atalho). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/MailAttachmentClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/MailAttachmentClass.md index 0f08e1e9fb7795..9c1dc74cdab0b3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/MailAttachmentClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/MailAttachmentClass.md @@ -3,7 +3,7 @@ id: MailAttachmentClass title: MailAttachment --- -Attachment objects allow referencing files within a [`Email`](EmailObjectClass.md) object. Attachment objects are created using the [`MAIL New attachment`](../commands/mail-new-attachment.md) command. +Attachment objects allow referencing files within a [`Email`](EmailObjectClass.md) object. Os objetos Attachment são criados usando o comando [`MAIL New attachment`](../commands/mail-new-attachment.md). ### Objeto anexos @@ -50,7 +50,7 @@ Objetos anexos oferecem as propriedades e funções apenas leitura abaixo: #### Descrição -The `4D.MailAttachment.new()` function creates and returns a new object of the `4D.MailAttachment` type. It is identical to the [`MAIL New attachment`](../commands/mail-new-attachment.md) command (shortcut). +The `4D.MailAttachment.new()` function creates and returns a new object of the `4D.MailAttachment` type. Ele é idêntico ao comando [`MAIL New attachment`](../commands/mail-new-attachment.md) (atalho). ## .cid @@ -85,7 +85,7 @@ The `.disposition` property contains returns the contents of the attachment object in a `4D.Blob` object. You can use this method with attachment objects received by the [`MAIL Convert from MIME`](EmailObjectClass.md#mail-convert-from-mime) command. +The `.getContent()` function returns the contents of the attachment object in a `4D.Blob` object. Você pode usar esse método com objetos de anexo recebidos pelo comando [`MAIL Convert from MIME`](EmailObjectClass.md#mail-convert-from-mime). ## .name diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md index 39f9b4f01dd1c2..46e2f2b18f54fb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/OutgoingMessageClass.md @@ -34,7 +34,7 @@ exposed onHTTPGet Function getFile() : 4D.OutgoingMessage return $result ``` -### OutgoingMessage Object +### Objeto OutgoingMessage 4D.OutgoingMessage objects provide the following properties and functions: @@ -49,7 +49,7 @@ exposed onHTTPGet Function getFile() : 4D.OutgoingMessage :::note -A 4D.OutgoingMessage object is a [non-sharable](../Concepts/shared.md) object. +Um objeto 4D.OutgoingMessage é um objeto [não compartilhável](../Concepts/shared.md). ::: @@ -70,7 +70,7 @@ The `.body` property contains the The `.body` property is read-write. -You can also set the `.body` property using the [`setBody()`](#setbody) function, in which case the `content-type` header is automatically set. +Você também pode definir a propriedade `.body` usando a função [`setBody()`](#setbody), caso em que o cabeçalho `content-type` é automaticamente definido. @@ -84,7 +84,7 @@ You can also set the `.body` property using the [`setBody()`](#setbody) function The `.headers` property contains the current headers of the outgoing message as key/value pairs. -The `.headers` property is read-only. To set a header, use the [`setHeader()`](#setheader) function. +The `.headers` property is read-only. Para definir um cabeçalho, use a função [`setHeader()`](#setheader). @@ -132,10 +132,10 @@ If *body* is not of a supported value type, an error is returned. -| Parâmetro | Tipo | | Descrição | -| --------- | ---- | -- | ---------------------------- | -| \| | Text | -> | Header property to set | -| value | Text | -> | Value of the header property | +| Parâmetro | Tipo | | Descrição | +| --------- | ---- | -- | ------------------------------------- | +| \| | Text | -> | Propriedade de cabeçalho para definir | +| value | Text | -> | Value of the header property | @@ -185,6 +185,6 @@ For a list of HTTP status codes, please refer the [HTTP status code list on Wiki #### Descrição -The `.status` property contains the current status of the outgoing message. This property can be set using the [`setStatus()`](setstatus) function. +The `.status` property contains the current status of the outgoing message. Essa propriedade pode ser definida com a função [`setStatus()`](setstatus). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/POP3TransporterClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/POP3TransporterClass.md index 16cdb413c5a091..151a0b27c550cd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/POP3TransporterClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/POP3TransporterClass.md @@ -42,7 +42,7 @@ POP3 Transporter objects are instantiated with the [`POP3 New transporter`](../c #### Descrição -The `4D.POP3Transporter.new()` function creates and returns a new object of the `4D.POP3Transporter` type. It is identical to the [`POP3 New transporter`](../commands/pop3-new-transporter.md) command (shortcut). +The `4D.POP3Transporter.new()` function creates and returns a new object of the `4D.POP3Transporter` type. É idêntico ao comando [`POP3 New transporter`](../commands/pop3-new-transporter.md) (atalho). @@ -101,7 +101,7 @@ The `4D.POP3Transporter.new()` function flags the *msgNumber* email for deletion from the POP3 server. -No parâmetro *msgNumber*, passe o número do email a apagar. This number is returned in the number property by the [`.getMailInfoList()`](#getmailinfolist) method. +No parâmetro *msgNumber*, passe o número do email a apagar. Esse número é retornado na propriedade number pelo método [`.getMailInfoList()`](#getmailinfolist). Executar esse método não remove de verdade qualquer email. The flagged email will be deleted from the POP3 server only when the `POP3_transporter` object (created with `POP3 New transporter`) is destroyed. A marcação pode ser removida com o método `.undeleteAll()`. @@ -200,9 +200,9 @@ O objeto `boxInfo` retornado contém as seguintes propriedades: The `.getMail()` function returns the `Email` object corresponding to the *msgNumber* in the mailbox designated by the [`POP3 transporter`](#pop3-transporter-object). Essa função permite manejar localmente os conteúdos de email. -Pass in *msgNumber* the number of the message to retrieve. This number is returned in the `number` property by the [`.getMailInfoList()`](#getmailinfolist) function. +Pass in *msgNumber* the number of the message to retrieve. Esse número é retornado na propriedade `number` pela função [`.getMailInfoList()`](#getmailinfolist). -Optionally, you can pass `true` in the *headerOnly* parameter to exclude the body parts from the returned `Email` object. Only headers properties ([`headers`](EmailObjectClass.md#headers), [`to`](EmailObjectClass.md#to), [`from`](EmailObjectClass.md#from)...) são então retornados. Esta opção permite-lhe optimizar a etapa de descarregamento quando muitos e-mails estão no servidor. +Optionally, you can pass `true` in the *headerOnly* parameter to exclude the body parts from the returned `Email` object. Somente propriedades de cabeçalhos ([`headers`](EmailObjectClass.md#headers), [`to`](EmailObjectClass.md#to), [`from`](EmailObjectClass.md#from)...) são então retornados. Esta opção permite-lhe optimizar a etapa de descarregamento quando muitos e-mails estão no servidor. :::note @@ -265,7 +265,7 @@ Se quiser saber o emissário do primeiro email da mailbox: The `.getMailInfo()` function returns a `mailInfo` object corresponding corresponding to the *msgNumber* in the mailbox designated by the [`POP3 transporter`](#pop3-transporter-object). Essa função permite que recupere informação sobre o email. -In *msgNumber*, pass the number of the message to retrieve. This number is returned in the number property by the [`.getMailInfoList()`](#getmailinfolist) method. +In *msgNumber*, pass the number of the message to retrieve. Esse número é retornado na propriedade number pelo método [`.getMailInfoList()`](#getmailinfolist). The `mailInfo` object returned contains the following properties: @@ -390,7 +390,7 @@ Se quiser saber o número total e tamanho dos emails nas mailbox: The `.getMIMEAsBlob()` function returns a BLOB containing the MIME contents for the message corresponding to the *msgNumber* in the mailbox designated by the [`POP3_transporter`](#pop3-transporter-object). -In *msgNumber*, pass the number of the message to retrieve. This number is returned in the number property by the [`.getMailInfoList()`](#getmailinfolist) method. +In *msgNumber*, pass the number of the message to retrieve. Esse número é retornado na propriedade number pelo método [`.getMailInfoList()`](#getmailinfolist). O método retorna uma BLOB vazia se: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/SMTPTransporterClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/SMTPTransporterClass.md index 0abc5acb6f8833..84dfcf7effdc76 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/SMTPTransporterClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/SMTPTransporterClass.md @@ -40,7 +40,7 @@ SMTP Transporter objects are instantiated with the [`SMTP New transporter`](../c #### Descrição -The `4D.SMTPTransporter.new()` function creates and returns a new object of the `4D.SMTPTransporter` type. It is identical to the [`SMTP New transporter`](../commands/smtp-new-transporter.md) command (shortcut). +The `4D.SMTPTransporter.new()` function creates and returns a new object of the `4D.SMTPTransporter` type. É idêntico ao comando [`SMTP New transporter`](../commands/smtp-new-transporter.md) (atalho). @@ -135,7 +135,7 @@ The `.send()` function sends th > The `transporter` object must have already been created using the `SMTP New transporter` command. -O método cria a ligação SMTP se esta ainda não estiver viva. If the `.keepAlive` property of the `transporter` object is **false**, the SMTP connection is automatically closed after the execution of `.send()`, otherwise it stays alive until the `transporter` object is destroyed. For more information, please refer to the [`SMTP New transporter`](#smtp-new-transporter) command description. +O método cria a ligação SMTP se esta ainda não estiver viva. If the `.keepAlive` property of the `transporter` object is **false**, the SMTP connection is automatically closed after the execution of `.send()`, otherwise it stays alive until the `transporter` object is destroyed. Para obter mais informações, consulte a descrição do comando [`SMTP New transporter`](#smtp-new-transporter). Em *mail*, passe um objeto [`Email`](EmailObjectClass.md#email-object) válido para enviar. As propriedades de origem (de onde vem o e-mail) e de destino (um ou mais destinatários) devem ser incluídas, as restantes propriedades são opcionais. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/SessionClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/SessionClass.md index 4f20c72b01fd6a..dc7c731ca98b66 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/SessionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/SessionClass.md @@ -3,7 +3,7 @@ id: SessionClass title: Session --- -Session objects are returned by the [`Session`](../commands/session.md) command. These objects provide the developer with an interface allowing to manage the current user session and execute actions such as store contextual data, share information between session processes, launch session-related preemptive processes, or (web only) manage [privileges](../ORDA/privileges.md). +Os objetos de sessão são retornados pelo comando [`Session`](../commands/session.md). These objects provide the developer with an interface allowing to manage the current user session and execute actions such as store contextual data, share information between session processes, launch session-related preemptive processes, or (web only) manage [privileges](../ORDA/privileges.md). ### Tipos de sessão @@ -151,7 +151,7 @@ Privileges are assigned to a Session using the [`setPrivileges()`](#setprivilege #### Exemplo -The following [`roles.json`](../ORDA/privileges.md#rolesjson-file) has been defined: +O seguinte arquivo [`roles.json`](../ORDA/privileges.md#rolesjson-file) foi definido: ```json { @@ -356,18 +356,18 @@ The `.info` object is the same object as the one returned by the [`Process activ The `.info` object contains the following properties: -| Propriedade | Tipo | Descrição | -| ---------------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| type | Text | Tipo de sessão: "remote" ou "storedProcedure" | -| userName | Text | Nome de usuário 4D (o mesmo valor que [`.userName`](#username)) | -| machineName | Text | Sessões remotas: nome da máquina remota. Sessão de procedimentos armazenados: nome da máquina do servidor | -| systemUserName | Text | Sessões remotas: nome da sessão do sistema aberta na máquina remota. | -| IPAddress | Text | Endereço IP da máquina remota | -| hostType | Text | Tipo de host: "windows" ou "mac" | -| creationDateTime | Date ISO 8601 | Data e hora de criação da sessão | -| state | Text | Estado da sessão: "ativa", "adiada", "em espera" | -| ID | Text | UUID da sessão (mesmo valor que [`.id`](#id)) | -| persistentID | Text | Remote sessions: Session's persistent ID | +| Propriedade | Tipo | Descrição | +| ---------------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | +| type | Text | Tipo de sessão: "remote" ou "storedProcedure" | +| userName | Text | Nome de usuário 4D (o mesmo valor que [`.userName`](#username)) | +| machineName | Text | Sessões remotas: nome da máquina remota. Sessões remotas: nome da máquina remota. | +| systemUserName | Text | Sessões remotas: nome da sessão do sistema aberta na máquina remota. | +| IPAddress | Text | Endereço IP da máquina remota | +| hostType | Text | Tipo de host: "windows" ou "mac" | +| creationDateTime | Date ISO 8601 | Data e hora de criação da sessão | +| state | Text | Estado da sessão: "ativa", "adiada", "em espera" | +| ID | Text | UUID da sessão (mesmo valor que [`.id`](#id)) | +| persistentID | Text | Remote sessions: Session's persistent ID | :::note @@ -471,15 +471,15 @@ The `.setPrivileges()` function contains the encoding of the response body content. Esta propriedade só está disponível se o [`dataType`](#datatype) for "text". +The `.exitCode` property contains the exit code returned by the external process. Parâmetro Essa propriedade é **somente leitura**. @@ -396,7 +396,7 @@ Se não ocorrer nenhum erro, `.errors` será undefined. #### Descrição -The `.exitCode` property contains the exit code returned by the external process. Se o processo não tiver terminado normalmente, `exitCode` é *undefined*. +Parâmetro Se o processo não tiver terminado normalmente, `exitCode` é *undefined*. Essa propriedade é **somente leitura**. @@ -447,7 +447,7 @@ Essa propriedade é **somente leitura**. #### Descrição -The `.postMessage()` function allows you to write on the input stream (stdin) of the external process. No parâmetro *message*, passe o texto a ser escrito em *stdin*. +Parâmetro No parâmetro *message*, passe o texto a ser escrito em *stdin*. The `.postMessage()` function also accepts a Blob type value in *messageBLOB* to pass in *stdin*, so that you can post binary data. @@ -465,7 +465,7 @@ You can use the `.dataType` property of the [options object](#options-object) to The `.response` property contains the concatenation of all data returned once the request is terminated, i.e. the full message received from the process output. -The type of the message is defined according to the [`dataType`](#datatype) attribute. +O tipo da mensagem é definido conforme o atributo [`dataType`](#datatype). Essa propriedade é **somente leitura**. @@ -565,7 +565,7 @@ Em *timeout*, passe um valor em segundos. The `SystemWorker` script will wait fo Actually, `.wait()` waits until the end of processing of the `onTerminate` formula, except if the *timeout* is reached. Se *timeout* for alcançado, o `SystemWorker` não é morto. -During a `.wait()` execution, callback functions are executed, especially callbacks from other events or from other `SystemWorker` instances. You can exit from a `.wait()` by calling [`terminate()`](#terminate) from a callback. +During a `.wait()` execution, callback functions are executed, especially callbacks from other events or from other `SystemWorker` instances. Você pode sair de um `.wait()` chamando [`terminate()`](#terminate) de um retorno de chamada. Esta função devolve o objecto SystemWorker. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebServerClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebServerClass.md index 8956b4e9e347ae..f63cb5a515311c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebServerClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebServerClass.md @@ -7,7 +7,7 @@ The `WebServer` class API allows you to start and monitor a web server for the m ### Objeto Web Server -Web server objects are instantiated with the [`WEB Server`](#web-server) command. +Os objetos servidor Web são instanciados com o comando [`WEB Server`](#web-server). Eles oferecem as propriedades abaixo e funções: @@ -67,7 +67,7 @@ A propriedade **.accessKeyDefined** contém **.certificateFolder** : Text -Path of the folder where the certificate files are located. O caminho está formatado no caminho completo POSIX usando sistemas de arquivos. When using this property in the `settings` parameter of the [`.start()`](#start) function, it can be a [`Folder` object](FolderClass.md). +Path of the folder where the certificate files are located. O caminho está formatado no caminho completo POSIX usando sistemas de arquivos. Ao usar essa propriedade no parâmetro `settings` da função [`.start()`](#start), ela pode ser um objeto [`Folder`](FolderClass.md). @@ -101,7 +101,7 @@ The character set that the 4D W **.cipherSuite** : Text -The cipher list used for the secure protocol. Define a prioridade dos algoritmos de criptografia implementados pelo servidor web 4D. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). See the [ciphers page](https://www.openssl.org/docs/manmaster/man1/ciphers.html) on the OpenSSL site. +The cipher list used for the secure protocol. Define a prioridade dos algoritmos de criptografia implementados pelo servidor web 4D. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). Veja a [página ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) no site OpenSSL. @@ -133,7 +133,7 @@ Contains the list of allowed ho - 192.168.\* - 192.168.\*:8081 - - - + - - - \*.myDomain.com - myProject.myDomain.com diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebSocketClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebSocketClass.md index 63b939949f120a..a2fd1eb5958fd3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebSocketClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebSocketClass.md @@ -193,11 +193,11 @@ The `.send()` function sends *message Os conteúdos seguintes são enviados em função do tipo de *message*: -| Tipo | Conteúdo | -| ------ | -------------------------------------------------------------------------------------------------------------------------------------- | -| Text | Texto em UTF-8 | -| Blob | Dados binários | -| Object | Text in JSON UTF-8 (same result as with [`JSON Stringify`](https://doc.4d.com/4dv20/help/command/en/page1217.html)) | +| Tipo | Conteúdo | +| ------ | --------------------------------------------------------------------------------------------------------------------------------------------- | +| Text | Texto em UTF-8 | +| Blob | Dados binários | +| Object | Texto em JSON UTF-8 (o mesmo resultado que com [`JSON Stringify`](https://doc.4d.com/4dv20/help/command/en/page1217.html)) | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebSocketConnectionClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebSocketConnectionClass.md index 7ffb07dbc578ce..4ba8da0099714e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebSocketConnectionClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/WebSocketConnectionClass.md @@ -80,11 +80,11 @@ The `.send()` function send Os conteúdos seguintes são enviados em função do tipo de *message*: -| Tipo | Conteúdo | -| ------ | --------------------------------------------------------------------------------------------------------------------------------------- | -| Text | Texto em UTF-8 | -| Blob | Dados binários | -| Object | Text in JSON UTF-8 (same result as with [`JSON Stringify`](https://doc.4d.com/4dv19R/help/command/en/page1217.html)) | +| Tipo | Conteúdo | +| ------ | ---------------------------------------------------------------------------------------------------------------------------------------------- | +| Text | Texto em UTF-8 | +| Blob | Dados binários | +| Object | Texto em JSON UTF-8 (o mesmo resultado que com [`JSON Stringify`](https://doc.4d.com/4dv19R/help/command/en/page1217.html)) | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipArchiveClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipArchiveClass.md index bb0d1d3b5dda1c..dd4323db7cde81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipArchiveClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipArchiveClass.md @@ -5,7 +5,7 @@ title: ZIPArchive A 4D ZIP archive is a `File` or `Folder` object containing one or more files or folders, which are compressed to be smaller than their original size. Esses arquivos são criados com uma extensão ".zip" e podem ser usados para poupar espaço em disco ou transferir arquivos via meios que tenham limitações de tamanho (por exemplo, um email ou por uma rede). -- You create a 4D ZIP archive with the [`ZIP Create archive`](../commands/zip-create-archive.md) command. +- Você cria um arquivo ZIP 4D com o comando [`ZIP Create archive`](../commands/zip-create-archive.md). - 4D [`ZIPFile`](ZipFileClass.md) and [`ZIPFolder`](ZipFolderClass.md) instances are available through the [`root`](#root) property (`ZIPFolder`) of the object returned by [`ZIP Read archive`](../commands/zip-read-archive.md) command. ### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipFileClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipFileClass.md index 989410aa9d3960..7ce4981557cdeb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipFileClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipFileClass.md @@ -3,7 +3,7 @@ id: ZipFileClass title: ZIPFile --- -The following properties and functions from the [File](FileClass.md) class are available to `ZIPFile` objects: +As seguintes propriedades e funções da classe [File](FileClass.md) estão disponíveis para os objetos `ZIPFile`: | APIs disponíveis de [File](FileClass.md) para ZIPFile | Comentário | | ----------------------------------------------------------------------------------- | -------------------------------------- | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipFolderClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipFolderClass.md index 3370ca69187521..8f2525fddd1120 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipFolderClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/ZipFolderClass.md @@ -5,7 +5,7 @@ title: ZIPFolder The following properties and functions from the [Folder](FolderClass.md) class are available to `ZIPFolder` objects: -| Available [Folder](FolderClass.md) APIs for ZIPFolder | Comentário | +| APIs disponíveis de [Folder](FolderClass.md) para ZIPFolder | Comentário | | -------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | | [](FolderClass.md#copyto) | | | [](FolderClass.md#creationdate) | A data pode ser diferente para a pasta `root` de uma pasta dentro do arquivo | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/overview.md index c525b49a8b52d7..79f88578c528a9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/API/overview.md @@ -19,4 +19,4 @@ As seguintes convenções são utilizadas na sintaxe da função: ## Veja também -[Classes in the 4D Language](../Concepts/classes.md). +[Classes na linguagem 4D](../Concepts/classes.md). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Concepts/classes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Concepts/classes.md index b2c3448c06ad15..70cb0c45724cf9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Concepts/classes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Concepts/classes.md @@ -158,7 +158,7 @@ Quando uma classe é [definida](#class-definition) no projeto, ela é carregada - [`new()`](API/ClassClass.md#new) função, permitindo instanciar objetos de classe - Propriedade [`isShared`](API/ClassClass.md#isshared), true se a classe é [compartilhada](#classes-compartilhadas) - Propriedade [`isSingleton`](API/ClassClass.md#issingleton), true se a classe define uma [singleton](#singleton-classes). -- [`isSectionSingleton`](API/ClassClass.md#issectionsingleton) property, true if the class defines a [session singleton](#singleton-classes). +- propriedade [`isSectionSingleton`](API/ClassClass.md#issectionsingleton), true se a classe definir um [session singleton](#singleton-classes). - Propriedade [`me`](API/ClassClass.md#me), permitindo instanciar e acessar [singletons](#singleton-classes). Além disso, um objeto de classe pode fazer referência a um objeto [`construtor`](#class-constructor) (opcional). @@ -610,11 +610,11 @@ The following commands have specific features when they are used within class fu The [`Super`](../commands/super.md) command allows calls to the [`superclass`](../API/ClassClass#superclass), i.e. the parent class of the function. Só pode haver uma função de construtor em uma classe (caso contrário um erro é retornado). -For more details, see the [`Super`](../commands/super.md) command description. +Para obter mais detalhes, consulte a descrição do comando [`Super`](../commands/super.md). ### `This` -The [`This`](../commands/this.md) command returns a reference to the currently processed object. In most cases, the value of `This` is determined by how a class function is called. Usually, `This` refers to the object the function was called on, as if the function were on the object. +O comando [`This`](../commands/this.md) retorna uma referência ao objeto processado no momento. In most cases, the value of `This` is determined by how a class function is called. Usually, `This` refers to the object the function was called on, as if the function were on the object. Exemplo: @@ -634,7 +634,7 @@ $o.b:=3 $val:=$o.f() //8 ``` -For more details, see the [`This`](../commands/this.md) command description. +Para obter mais detalhes, consulte a descrição do comando [`This`](../commands/this.md). ## Comandos de classe @@ -729,17 +729,17 @@ As classes Singleton não são suportadas por [classes baseadas em ORDA](../ORDA The following table indicates the scope of a singleton instance depending on where it was created: -| Singleton criado em | Scope of process singleton | Scope of shared singleton | Scope of session singleton | -| -------------------- | ---------------------------------------------------------------------------------------------------------- | ------------------------- | --------------------------------------------------------------------- | -| **4D usuário único** | Processo | Aplicação | Application or Web/REST session | -| **4D Server** | Processo | Máquina 4D Server | Client/server session or Web/REST session or Stored procedure session | -| **Modo remoto 4D** | Process (*nota*: os singletons não são sincronizados no processo gêmeo) | Máquina remota 4D | 4D remote machine or Web/REST session | +| Singleton criado em | Scope of process singleton | Escopo do singleton compartilhado | Scope of session singleton | +| -------------------- | ---------------------------------------------------------------------------------------------------------- | --------------------------------- | --------------------------------------------------------------------- | +| **4D usuário único** | Processo | Aplicação | Application or Web/REST session | +| **4D Server** | Processo | Máquina 4D Server | Client/server session or Web/REST session or Stored procedure session | +| **Modo remoto 4D** | Process (*nota*: os singletons não são sincronizados no processo gêmeo) | Máquina remota 4D | 4D remote machine or Web/REST session | Once instantiated, a singleton class (and its singleton) exists as long as a reference to it exists somewhere in the application running on the machine. -### Creating and using singletons +### Criação e uso de singletons -You declare singleton classes by adding appropriate keyword(s) before the [`Class constructor`](#class-constructor): +Você declara classes singleton adicionando a(s) palavra(s)-chave apropriada(s) antes do [`Class constructor`](#class-constructor): - To declare a (process) singleton class, write `singleton Class Constructor()`. - To declare a shared singleton class, write `shared singleton Class constructor()`. @@ -748,7 +748,7 @@ You declare singleton classes by adding appropriate keyword(s) before the [`Clas :::note - Session singletons are automatically shared singletons (there's no need to use the `shared` keyword in the class constructor). -- Singleton shared functions support [`onHttpGet` keyword](../ORDA/ordaClasses.md#onhttpget-keyword). +- As funções compartilhadas Singleton suportam a palavra-chave `onHttpGet`(../ORDA/ordaClasses.md#onhttpget-keyword). ::: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Concepts/dt_collection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Concepts/dt_collection.md index 8316b824ff0eb8..c52ec8cbd2ce1d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Concepts/dt_collection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Concepts/dt_collection.md @@ -46,7 +46,7 @@ As coleções devem ter sido inicializadas, por exemplo utilizando o comando ` | Objecto do nome da classe 4D | | `cs.` | Objeto do nome da classe usuário | | `cs.` | Objeto do nome da classe do componente `` | @@ -256,11 +256,11 @@ System variables are used by [4D commands](../commands/command-index.md). Refer | `Document` | Text | Contains the "long name" (full path+name) of the last file opened or created using commands such as [Open document](https://doc.4d.com/4dv20/help/command/en/page264.html) or [SELECT LOG FILE](https://doc.4d.com/4dv20/help/command/en/page345.html). | | `FldDelimit`, `RecDelimit` | Text | Contain the character codes that will be used respectively as a field separator (default is **Tab** (9)) and record separator (default is **carriage return** (13)) when importing or exporting text. Para usar um separador diferente, atribua um novo valor à variável do sistema. | | `Error`, `Error method`, `Error line`, `Error formula` | Text, Longint | Used in an error-catching method installed by the [`ON ERR CALL`](https://doc.4d.com/4dv20/help/command/en/page155.html) command. See [Handling errors within the method](../Concepts/error-handling.md#handling-errors-within-the-method). | -| `MouseDown` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to 1 when the mouse button is pushed, otherwise set to 0. | -| `MouseX`, `MouseY` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command.
  • In a `MouseDown=1` event, `MouseX` and `MouseY` are respectively set to the vertical and horizontal coordinates of the click. Both values are expressed in pixels and use the local coordinate system of the window.
  • In case of a picture field or variable, `MouseX` and `MouseY` return the local coordinates of a mouse click in the [`On Clicked`](../Events/onClicked.md), [`On Double Clicked`](../Events/onDoubleClicked.md) and [`On Mouse Up`](../Events/onMouseUp.md) form events. Local coordinates of the mouse cursor are also returned in the [`On Mouse Enter`](../Events/onMouseEnter.md) and [`On Mouse Move`](../Events/onMouseMove.md) form events. For more information, see the [Mouse Coordinates in a picture](../FormEditor/pictures.md#mouse-coordinates-in-a-picture) section.
  • | -| `KeyCode` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to the character code of the key that was just pressed. If the key is a function key, `KeyCode` is set to a special code. | -| `Modifiers` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to the keyboard modifier keys (Ctrl/Command, Alt/Option, Shift, Caps Lock). | -| `MouseProc` | Integer | Used in a method installed by the [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html) command. Set to the process number in which the last event took place | +| `MouseDown` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to 1 when the mouse button is pushed, otherwise set to 0. | +| `MouseX`, `MouseY` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html).
  • In a `MouseDown=1` event, `MouseX` and `MouseY` are respectively set to the vertical and horizontal coordinates of the click. Both values are expressed in pixels and use the local coordinate system of the window.
  • In case of a picture field or variable, `MouseX` and `MouseY` return the local coordinates of a mouse click in the [`On Clicked`](../Events/onClicked.md), [`On Double Clicked`](../Events/onDoubleClicked.md) and [`On Mouse Up`](../Events/onMouseUp.md) form events. Local coordinates of the mouse cursor are also returned in the [`On Mouse Enter`](../Events/onMouseEnter.md) and [`On Mouse Move`](../Events/onMouseMove.md) form events. For more information, see the [Mouse Coordinates in a picture](../FormEditor/pictures.md#mouse-coordinates-in-a-picture) section.
  • | +| `KeyCode` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to the character code of the key that was just pressed. If the key is a function key, `KeyCode` is set to a special code. | +| `Modifiers` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to the keyboard modifier keys (Ctrl/Command, Alt/Option, Shift, Caps Lock). | +| `MouseProc` | Integer | Usado em um método instalado pelo comando [`ON EVENT CALL`](https://doc.4d.com/4dv20/help/command/en/page190.html). Set to the process number in which the last event took place | :::note diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md index 3345621f8e88a7..4e69f8c43319bb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/basics.md @@ -70,27 +70,27 @@ A janela de erro de sintaxe propõe várias opções: - **Continuar**: la ejecución continua. A linha com o erro pode ser parcialmente executada, dependendo da localização do erro. Continue com cuidado: o erro pode impedir que o resto do seu método seja executado corretamente. Recomendamos hacer clic en **Continuar** sólo si el error está en una llamada trivial (como `SET WINDOW TITLE`) que no impide ejecutar y probar el resto de su código. -> Consejo: para ignorar un error que ocurre repetidamente (por ejemplo, en bucles), puede convertir el botón **Continuar** en un botón **Ignorar**. Mantenga presionada la tecla **Alt** (Windows) u **Opción** (macOS) y haga clic en el botón **Continuar** la primera vez que aparece. La etiqueta del botón cambia a **Ignorar** si el diálogo es llamado de nuevo por el mismo error. +> Consejo: para ignorar un error que ocurre repetidamente (por ejemplo, en bucles), puede convertir el botón **Continuar** en un botón **Ignorar**. Hold down **Alt** (Windows) or **Option** (macOS) key and click the **Continue** button the first time it appears. The button label changes to **Ignore** if the dialog is called again for the same error. -- **Abandonar**: detiene la ejecución del método y devuelve al estado antes del inicio de la ejecución del método: +- **Abort**: Stops method execution and returns to the state before the method started executing: - Se um método formulário ou um método objeto estiver a ser executado em resposta a um evento, é interrompido e o usuário regressa ao formulário. - Se o método estiver sendo executado a partir do ambiente Application, o usuário regressa a esse ambiente. -- **Copiar**: copia la información de depuración en el portapapeles. A informação descreve o ambiente interno do erro (número, componente interno, etc.). Eles são formatados como texto tabulado. +- **Copy**: Copies the debugging information into the clipboard. A informação descreve o ambiente interno do erro (número, componente interno, etc.). Eles são formatados como texto tabulado. -- **Guardar...**: guarda el contenido de la ventana de error de sintaxis y la cadena de llamadas en un archivo `.txt`. +- **Save...**: Saves the contents of the syntax error window and the call chain in a `.txt` file. ## Depurador -Un error común de los principiantes al tratar con la detección de errores es hacer clic en **Abandonar** en la ventana de error de sintaxis, volver al editor de código, y tratar de averiguar lo que está pasando mirando el código. Não faça isso! Ahorrará mucho tiempo y energía utilizando siempre el **Depurador**. +A common beginner mistake in dealing with error detection is to click **Abort** in the Syntax Error Window, go back to the Code Editor, and try to figure out what's going by looking at the code. Não faça isso! Ahorrará mucho tiempo y energía utilizando siempre el **Depurador**. O depurador permite-lhe percorrer os métodos lentamente. Apresenta todas as informações necessárias para compreender o motivo do erro. Assim que tiver esta informação, saberá como corrigir o erro. -Outra razão para utilizar o depurador é para desenvolver código. Por vezes, pode escrever um algoritmo que é mais complexo do que o habitual. Apesar de todos os sentimentos de realização, não pode ter a certeza absoluta de que a sua codificação está 100% correcta. En lugar de ejecutarlo "ciego", puede utilizar el comando `TRACE` al comienzo de su código, luego ejecutarlo paso a paso para mantener un ojo en lo que sucede. +Outra razão para utilizar o depurador é para desenvolver código. Por vezes, pode escrever um algoritmo que é mais complexo do que o habitual. Apesar de todos os sentimentos de realização, não pode ter a certeza absoluta de que a sua codificação está 100% correcta. Instead of running it "blind", you can use the `TRACE` command at the beginning of your code, then execute it step by step to keep an eye on what happens. ## Rupturas No processo de depuração, pode ser necessário saltar o rastreio de algumas partes do código até uma determinada linha. O, puede querer rastrear el código cuando una expresión dada tiene un determinado valor (e.. "$myVar > 1000"), o cada vez que se llama un comando 4D específico. -Estas necesidades están cubiertas por **puntos de interrupción** y las funciones de **captura de comando**. Podem ser configurados a partir do editor de código, do depurador ou do explorador de execução. +These needs are covered by **breakpoints** and **command catching** features. Podem ser configurados a partir do editor de código, do depurador ou do explorador de execução. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md index eb3a5446a55992..37eb0a0e0b7e38 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugger.md @@ -52,23 +52,23 @@ A barra de ferramentas do depurador inclui vários botões, associados a atalhos Interrompe o modo de rastreamento e retoma o curso normal da execução do método. -> **Shift** + **F5** o **Shift** + clic en el botón **No Trace** retoma la ejecución. Também desativa todas as chamadas TRACE subsequentes para o processo atual. +> **Shift** + **F5** or **Shift** + clicking the **No Trace** button resumes execution. Também desativa todas as chamadas TRACE subsequentes para o processo atual. #### Executar passo a passo Executa a linha de método atual, indicada pelo contador de programa (a seta amarela). O depurador passa para a linha seguinte. -O botão Executar não entra em sub-rotinas e funções, mantém-se ao nível do método que rastreia atualmente. Se você quiser rastrear também as chamadas de subrotinas e funções, use o botão **Step Into**. +O botão Executar não entra em sub-rotinas e funções, mantém-se ao nível do método que rastreia atualmente. If you want to also trace subroutines and functions calls, use the **Step Into** button. -Na depuração remota, se o método for executado no servidor, o método principal é chamado após a execução da última linha do método secundário. Se o método pai for executado no lado remoto, o botão **Step Over** terá o mesmo efeito que o botão **No Trace**. +Na depuração remota, se o método for executado no servidor, o método principal é chamado após a execução da última linha do método secundário. If the parent method is executed on the remote side, the **Step Over** button has the same effect as the **No Trace** button. #### Passo a passo detalhado Quando uma linha que chama outro método (sub-rotina ou função) é executada, clique neste botão para exibir o outro método e percorrê-lo. -O novo método torna-se o atual (topo) método no [Chame Chain Pane](#call-chain-pane) da janela do Depurador. +The new method becomes the current (top) method in the [Call Chain Pane](#call-chain-pane) of the Debugger window. -Ao executar uma linha que não chama outro método, esse botão tem o mesmo efeito que o botão **Step Over**. +When executing a line that does not call another method, this button has the same effect as the **Step Over** button. #### Step Out @@ -89,9 +89,9 @@ Interrompe a execução do método e regressa ao estado anterior ao início da e #### Abortar e editar -O método que está sendo executado quando você clica no botão **Abortar e editar** é aberto no Editor de código. +The method that is executing when you click the **Abort and Edit** button opens in the Code Editor. -> **Sugestão**: Utilize este botão quando você sabe quais alterações são necessárias no seu código e quando essas alterações são necessárias para prosseguir com o teste dos seus métodos. Quando terminar as alterações, volte a executar o método. +> **Tip**: Use this button when you know which changes are required in your code, and when these changes are required to pursue the testing of your methods. Quando terminar as alterações, volte a executar o método. #### Editar @@ -99,7 +99,7 @@ O método executado no momento em que se clica no botão Editar abre-se no Edito Se utilizar este botão para modificar um método, as modificações só entram em vigor na próxima vez que este for executado. -> **Dica:** Use este botão quando você souber quais alterações são necessárias no seu código e quando eles não interferem com o resto do código a ser executado ou rastreado. +> **Tip:** Use this button when you know which changes are required in your code and when they don't interfere with the rest of the code to be executed or traced. #### Botão Salvar parâmetros @@ -332,7 +332,7 @@ For more information on the Formula Editor, see the [4D Design Reference manual] - **Excluir tudo**: Remove todas as expressões do Painel de Vigia Personalizado. - **Expressões Padrão**: Copia a lista de expressões do Watch. -> This option is not available in [remote debugging mode](debugging-remote.md). +> Essa opção não está disponível no [modo de depuração remota](debugging-remote.md). - **Recolher tudo/Expandir tudo**: Recolhe ou expande todas as listas hierárquicas. - **Mostrar tipos**: Exibe o tipo de cada item da lista (quando apropriado). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md index e650a483293220..7977aac5be9d26 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Debugging/debugging-remote.md @@ -32,7 +32,7 @@ Tenga en cuenta que los mensajes de error se envían a la máquina depuradora as Note que: -- El código ejecutado en el método `On Server Startup Database` no se puede depurar de forma remota. Só pode ser depurado no lado do servidor +- The code executed in the `On Server Startup Database` Method cannot be debugged remotely. Só pode ser depurado no lado do servidor - Se não estiver ligado um depurador, o código em execução não é interrompido pelos comandos de depuração ## Ligar o depurador @@ -48,20 +48,20 @@ Pode anexar o depurador a qualquer cliente 4D remoto autorizado a conectar-se à Para anexar o depurador a um cliente 4D remoto: -1. En la barra de menús de 4D Server, seleccione **Editar** > **Separar depurador** para que el depurador esté disponible para las máquinas remotas (este paso es inútil si 4D Server está funcionando sin interfaz). -2. En un cliente 4D remoto conectado al servidor, seleccione **Ejecutar** > **Adjuntar depurador remoto** +1. In the 4D Server menu bar, select **Edit** > **Detach Debugger** so that the debugger becomes available to remote machines (this step is useless if the 4D Server is running headless). +2. In a remote 4D client connected to the server, select **Run** > **Attach Remote Debugger** -Si se acepta el archivo adjunto (ver [Solicitudes de archivo adjunto rechazadas](#rejected-attachment-requests)), el comando de menú se convierte en **Desconectar depurador remoto**. +If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the menu command becomes **Detach Remote Debugger**. O depurador é então ligado ao cliente 4D remoto: - até ao fim da sessão do usuário -- hasta que se seleccione `Detach Remote Debugger` +- until you select `Detach Remote Debugger` Para ligar o depurador de novo ao servidor: -1. En el cliente 4D remoto que tiene el depurador conectado, seleccione **Ejecutar** > **Separar depurador remoto**. -2. En la barra de menú de 4D Server, seleccione **Editar** > **Adjuntar depurador**. +1. On the remote 4D client that has the debugger attached, select **Run** > **Detach Remote Debugger**. +2. In the 4D Server menu bar, select **Edit** > **Attach debugger**. > Quando o depurador estiver conectado ao servidor (padrão), todos os processos do servidor são executados automaticamente no modo cooperativo para permitir a depuração. Este fato pode ter um impacto significativo no desempenho. Quando não for necessário depurar na máquina do servidor, recomenda-se desconectar o depurador e anexá-lo a uma máquina remota, se necessário. @@ -69,11 +69,11 @@ Para ligar o depurador de novo ao servidor: 4D permite que você anexe automaticamente o depurador a um cliente 4D remoto ou ao servidor na inicialização: -- En el servidor (si no es headless), esta opción se llama **Attach Debugger At Startup**. Quando o servidor é iniciado, ele anexa automaticamente o depurador (padrão). +- On the server (if not headless), this option is named **Attach Debugger At Startup**. Quando o servidor é iniciado, ele anexa automaticamente o depurador (padrão). -> **Advertencia**: si se selecciona esta opción para un servidor que posteriormente se lanza en modo sin interfaz, el depurador no estará disponible para este servidor. +> **Warning**: If this option is selected for a server which is subsequently launched in headless mode, the debugger won't be available for this server. -- En un cliente 4D remoto, esta opción se llama **Attach Remote Debugger At Startup**. Quando selecionado, o cliente 4D remoto tentará automaticamente anexar o depurador remoto em cada conexão subsequente com o mesmo banco de dados do 4D Server. Si el adjunto es aceptado (ver [Rejected attachment requests](#rejected-attachment-requests)), el depurador remoto se adjunta automáticamente al cliente 4D remoto y se muestra la opción **Detach Remote Debugger**. +- On a remote 4D client, this option is named **Attach Remote Debugger At Startup**. Quando selecionado, o cliente 4D remoto tentará automaticamente anexar o depurador remoto em cada conexão subsequente com o mesmo banco de dados do 4D Server. If the attachment is accepted (see [Rejected attachment requests](#rejected-attachment-requests)), the remote debugger is automatically attached to the remote 4D client and the **Detach Remote Debugger option is displayed**. > Essa configuração é aplicada por projeto e é armazenada localmente no arquivo [`.4DPreferences`] (Project/architecture.md#userpreferencesusername). @@ -89,5 +89,5 @@ Se uma máquina tentar anexar o depurador enquanto este já estiver anexado, a a A ligação do depurador neste caso exige que: -- el depurador adjunto se separa del servidor o del cliente 4D remoto utilizando respectivamente el comando de menú **Detach debugger** o **Detach remote debugger**, +- the attached debugger is detached from the server or from the remote 4D client using respectively the **Detach debugger** or **Detach remote debugger** menu command, - a sessão do cliente remoto 4D anexado é encerrada. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Desktop/building.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Desktop/building.md index 33b909a1f97cac..a3189ed10d64ab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Desktop/building.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Desktop/building.md @@ -369,7 +369,7 @@ A pasta `Cliente` contém a porção do cliente do aplicativo c O conteúdo dessas pastas varia dependendo da plataforma atual: -- *Windows* - Cada pasta contém o arquivo executável da aplicação, chamado `Cliente. xe` para a parte do cliente e `Servidor.exe` para a parte do servidor, bem como os arquivos .rsr correspondentes. As pastas também contêm vários arquivos e pastas necessários para que os aplicativos funcionem e itens personalizados que podem estar na pasta de Volume 4D e no Servidor 4D. +- Se você quiser integrar outros plugins ou componentes na aplicação executável, você só precisa colocá-los em uma pasta **Plugins** ou **Components** ao lado da aplicação 4D Volume Desktop ou ao lado do aplicativo 4D do servidor. As pastas também contêm vários arquivos e pastas necessários para que os aplicativos funcionem e itens personalizados que podem estar na pasta de Volume 4D e no Servidor 4D. - *macOS* - Cada pasta contém apenas o pacote de aplicação, chamado ` Client` para a parte do cliente e ` Server` para a parte do servidor. Cada pacote contém todos os itens necessários para que a aplicação funcione. No macOS, inicie um pacote fazendo duplo clique no mesmo. > Os pacotes macOS construídos contêm os mesmos itens que as subpastas do Windows. Você pode exibir seus conteúdos (**Control+click** no ícone) para poder modificá-los. @@ -391,7 +391,7 @@ Os elementos devem ser instalados: - **no macOS** - **Aplicativo do servidor** - ao lado do pacote de software `Server`. - - **Aplicação de cliente** - ao lado do pacote de software \`cliente. + - **Aplicação de cliente** - ao lado do pacote de software \\`cliente. ### Incorporar uma aplicação cliente usuário único @@ -572,11 +572,11 @@ Para mais informações sobre o conceito de notarização, por favor consulte [e > A Apple, Inc. fornece uma ferramenta específica para a construção de arquivos de ícones *icns* (para mais informações, consulte a [documentação da Apple](https://developer.apple.com/library/archive/documentation/GraphicsAnimation/Conceptual/HighResolutionOSX/Optimizing/Optimizing.html#/apple_ref/doc/uid/TP40012302-CH7-SW2)). -Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão .ico. 4D leva automaticamente este arquivo em conta ao construir o aplicativo clicável duplo (o arquivo *.icns* é renomeado *ApplicationName. cns* e copiados para a pasta Repositório; a entrada *CFBundleFileIcon* do arquivo *info.plist* é atualizada). +Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão *.ico*. 4D leva este arquivo automaticamente em conta ao construir um aplicativo clicável duplo. - **Windows** - Ao construir uma aplicação clicável e dupla, o 4D lida com a personalização do seu ícone. Para fazer isso, você deve criar um arquivo de ícone (*.ico* extensão), antes de construir o arquivo do aplicativo e colocá-lo ao lado da pasta do projeto. -Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão *.ico*. 4D leva este arquivo automaticamente em conta ao construir um aplicativo clicável duplo. +Seu arquivo de ícone deve ter o mesmo nome do arquivo de projeto e incluir a extensão .ico. 4D leva este arquivo automaticamente em conta ao construir um aplicativo clicável duplo. Você também pode definir as [chaves XML](https://doc.4d.com/4Dv17R6/4D/17-R6/4D-XML-Keys-BuildApplication.100-4465602.en.html) específicas no arquivo buildApp.4DSettings para designar cada ícone a usar. Estão disponíveis as seguintes chaves: @@ -670,6 +670,8 @@ A gestão de conexões por aplicativos cliente cobre os mecanismos pelos quais u O procedimento de conexão para aplicativos cliente mesclados suporta casos onde o servidor dedicado não está disponível. O cenário de inicialização de um aplicação cliente 4D é o seguinte: 1. Se informações de conexão válidas forem armazenadas no arquivo "EnginedServer.4DLink" dentro do aplicativo cliente, o aplicativo cliente se conecta ao endereço do servidor especificado.\ + OU + O aplicativo cliente tenta se conectar ao servidor usando o serviço de descoberta (com base no nome do servidor, transmitido na mesma sub-rede).\ OU O aplicativo cliente tenta se conectar ao servidor usando o serviço de descoberta (com base no nome do servidor, transmitido na mesma sub-rede). @@ -704,6 +706,7 @@ Este mecanismo aborda o caso de o servidor principal alvo estar temporariamente Você pode escolher se deseja ou não exibir a caixa de diálogo de seleção padrão do servidor em aplicações cliente mescladas quando o servidor não pode ser alcançado. A configuração depende do valor da chave XML [ServerSelectionAllowed](https://doc.4d.com/4Dv17R6/4D/17-R6/ServerSelectionAllowed.300-4465714.en.html) no computador em que a aplicação foi criada: - **exibir uma mensagem de erro sem acesso possível à caixa de diálogo de seleção do servidor**. Operação padrão. A aplicação só pode encerrar.\ + A aplicação só pode encerrar.\ `ServerSelectionAllowed`: **False** or key omitted ![](../assets/en/Project/connect1.png) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Desktop/clientServer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Desktop/clientServer.md index ca465c64cd0110..8b2150b53675a2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Desktop/clientServer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Desktop/clientServer.md @@ -101,7 +101,7 @@ O objeto `session` do usuário remoto está disponível em: - Métodos de projeto que têm o atributo [Execute on Server](../Project/code-overview.md#execute-on-server) (são executados no processo "geminado" do processo do cliente), - Triggers, -- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword, +- ORDA [funções do modelo de dados](../ORDA/ordaClasses.md) (exceto aquelas declaradas com a palavra-chave [`local`](../ORDA/ordaClasses.md#local-functions), - 'Conexão aberta com o servidor' e 'Conexão com o servidor' métodos de banco de dados. :::info diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormEditor/formEditor.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormEditor/formEditor.md index fa084f3cec9685..84496677c644e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormEditor/formEditor.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormEditor/formEditor.md @@ -766,4 +766,4 @@ Pode fazer zoom no formulário atual. Switch to “Zoom” mode by clicking on t No modo Zoom, todas as funções do editor de formulários permanecem disponíveis(\*). -(\*) For technical reasons, it is not possible to select list box elements (headers, columns, footers) when the Form editor is in Zoom mode. +(\*) Por motivos técnicos, não é possível selecionar elementos da caixa de listagem (cabeçalhos, colunas, rodapés) quando o editor de formulários está no modo Zoom. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/button_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/button_overview.md index aa7d97f950f879..8f09d753105585 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/button_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/button_overview.md @@ -38,7 +38,7 @@ O estilo de botão Clássico é um botão padrão do sistema (ou seja, um retân By default, the Regular style has a light gray background with a label in the center. When the cursor hovers over the Regular button style, the border and background color change to demonstrate that it has the focus. In addition to initiating code execution, the Regular button style mimics a mechanical button by quickly changing background color when being clicked. -#### JSON Exemplo +#### Exemplo JSON: ```4d @@ -65,7 +65,7 @@ O estilo de botão Plano é um botão padrão do sistema (ou seja, um retângulo By default, the Flat style has a white background with a label in the center, rounded corners, and a minimalist appearance. The Flat button style's graphic nature is particularly useful for forms that will be printed. -#### JSON Exemplo +#### Exemplo JSON: ```4d @@ -96,7 +96,7 @@ By default, the Toolbar style has a transparent background with a label in the c - *macOS* - o destaque do botão nunca aparece. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -124,7 +124,7 @@ By default, the Bevel style has a light gray background with a label in the cent - *macOS* - o destaque do botão nunca aparece. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -152,7 +152,7 @@ By default, the Rounded Bevel style has a light gray background with a label in - *macOS* - las esquinas del botón están redondeadas. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -180,7 +180,7 @@ By default, the OS X Gradient style has a light gray background with a label in - *macOS* - el botón se muestra como un botón de dos tonos. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -208,7 +208,7 @@ Como padrão, o estilo OS X Textured aparece como: - *macOS* - um botão sistema padrão que mostra uma mudança de cor cinza-claro a cinza-escuro. Sua altura está predefinida: não é possível ampliar ou reduzir. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -236,7 +236,7 @@ As cores (ressaltado e fundo) de um botão com o estilo Office XP são baseadas - *macOS* - its background is always displayed. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -258,7 +258,7 @@ The Help button style can be used to display a standard system help button. By d ![](../assets/en/FormObjects/button_help.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -283,7 +283,7 @@ O estilo de botão Círculo aparece como um botão sistema redondo. Este estilo No Windows, ele é idêntico ao estilo "Nenhum" (o círculo no plano de fundo não é considerado). -#### JSON Exemplo +#### Exemplo JSON: ``` "myButton": { @@ -304,7 +304,7 @@ The Custom button style accepts a personalized background picture and allows man ![](../assets/en/FormObjects/button_custom.png) -#### JSON Exemplo +#### Exemplo JSON: ```code "myButton": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/checkbox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/checkbox_overview.md index e7d63e9e1996b2..975b0a43598e04 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/checkbox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/checkbox_overview.md @@ -32,7 +32,7 @@ Essa propriedade só está disponível para caixas de seleção clássicas e pla A variável associada à caixa de seleção devolve o valor 2 quando a caixa estiver no terceiro estado. -> In entry mode, the Three-States check boxes display each state sequentially, in the following order: unchecked / checked / intermediary / unchecked, etc. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. +> In entry mode, the Three-States check boxes display each state sequentially, in the following order: unchecked / checked / intermediary / unchecked, etc. The intermediary state is generally not very useful in entry mode; in the code, simply force the value of the variable to 0 when it takes the value of 2 in order to pass directly from the checked state to the unchecked state. ## Usar uma ação padrão @@ -87,7 +87,7 @@ O estilo Clássico de caixa de seleção corresponde a um sistema de caixa de se ![](../assets/en/FormObjects/checkbox_regular.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -109,7 +109,7 @@ O estilo de caixa de seleção Plano tem uma aparência minimalista. A natureza ![](../assets/en/FormObjects/checkbox_flat.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -134,7 +134,7 @@ Exemplo com estados selecionado/ não selecionado/ ressaltado: ![](../assets/en/FormObjects/checkbox_toolbar.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -160,7 +160,7 @@ Exemplo com estados selecionado/ não selecionado/ ressaltado: ![](../assets/en/FormObjects/checkbox_bevel.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -188,7 +188,7 @@ Exemplo em macOS: > No Windows, o estilo de botão Rounded Bevel é idêntico ao estilo de botão [Bevel](#bevel). -#### JSON Exemplo +#### Exemplo JSON: ```4d "myCheckBox": { @@ -214,7 +214,7 @@ O estilo Gradient OS X tem um fundo cinza claro com um título e se mostra como > No Windows, esse estilo de botão de caixa de seleção é idêntico ao estilo de botão [Bevel](#bevel). -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -244,7 +244,7 @@ Como padrão, o estilo OS X Textured aparece como: ![](../assets/en/FormObjects/checkbox_osxtextured_mac.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -272,7 +272,7 @@ As cores (ressaltado e fundo) de um botão com o estilo Office XP são baseadas ![](../assets/en/FormObjects/checkbox_officexp_mac.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -307,7 +307,7 @@ O estilo Recolher/Expandir é denominado "disclosure" na [gramática JSON de est ::: -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -339,7 +339,7 @@ O estilo Disclosure é denominado "roundedDisclosure" na [gramática JSON do est ::: -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -363,7 +363,7 @@ O estilo de botão Personalizado aceita uma imagem de fundo personalizada e perm It is usually associated with a [4-state picture](properties_TextAndPicture.md#number-of-states), that can be used in conjunction with a [4-state](properties_TextAndPicture.md#number-of-states) [background picture](properties_TextAndPicture.md#background-pathname). -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckbox": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/groupBox.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/groupBox.md index ee54eaa7477616..6be80dc35ad8df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/groupBox.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/groupBox.md @@ -9,7 +9,7 @@ A group box is a static object that allows you to visually assemble multiple for > O nome de uma caixa de grupo é texto estático; você pode usar uma referência "localizável" como com qualquer rótulo 4D (veja [Usando referências em texto estático](https://doc.4d.com/4Dv17R5/4D/17-R5/Using-references-in-static-text.300-4163725.en.html) e seção *Arquitetura XLIFF* em referência Desenho 4D. -#### JSON Exemplo +#### Exemplo JSON: ``` "myGroup": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/input_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/input_overview.md index a0cfa3e7274dff..ee63fd214d1bef 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/input_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/input_overview.md @@ -13,7 +13,7 @@ Além disso, as entradas podem ser [inserível ou não inserível](properties_En Você pode gerenciar os dados com os [métodos](Concepts/methods.md) objeto ou formulário. -### JSON Exemplo +### Exemplo JSON: ```4d "myText": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/list_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/list_overview.md index 4bc1ced0df11e8..69fec8f050f3b6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/list_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/list_overview.md @@ -41,7 +41,7 @@ Each representation of the list has its own specific characteristics and shares As outras características (fonte, tamanho da fonte, estilo, controle de entrada, cor, conteúdo da lista, ícones, etc.) são comuns a todas as representações e não podem ser modificados separadamente. Consequentemente, quando você usa comandos com base na configuração expandida/colapsada ou no item atual, por exemplo, `Count list items` (quando o parâmetro final `*` não é passado), é importante poder especificar a representação a ser usada sem nenhuma ambiguidade. -Você deve usar o ID `ListRef` com comandos de linguagem quando quiser especificar a lista hierárquica encontrada na memória. On the other hand, if you want to specify the representation of a hierarchical list object at the form level, you must use the object name (string type) in the command, via the standard syntax (\*;"ListName", etc.). +Você deve usar o ID `ListRef` com comandos de linguagem quando quiser especificar a lista hierárquica encontrada na memória. Por outro lado, se você quiser especificar a representação de um objeto lista hierárquica no nível do formulário, deverá usar o nome do objeto (tipo string) no comando, por meio da sintaxe padrão (\*; "ListName", etc.). > In the case of commands that set properties, the syntax based on the object name does not mean that only the form object specified will be modified by the command, but rather that the action of the command will be based on the state of this object. The common characteristics of hierarchical lists are always modified in all of their representations. > Por exemplo, se executa: @@ -80,7 +80,7 @@ Assim como em outros comandos de gerenciamento de propriedades de objetos, é po ## Comandos genéricos utilizáveis com listas hierárquicas -It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. You can pass to these commands either the object name of the hierarchical list (using the \* parameter), or its variable name (containing the ListRef value): +It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. Você pode passar para esses comandos o nome do objeto da lista hierárquica (usando o parâmetro \*) ou o nome da variável (contendo o valor ListRef): - `OBJECT SET FONT` - `OBJECT SET FONT STYLE` diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/listbox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/listbox_overview.md index 9a8e4c9ad5c197..6870a421ab357e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/listbox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/listbox_overview.md @@ -121,7 +121,7 @@ Propriedades compatíveis dependem do tipo de list box. | Propriedade | List box array | List box seleção | List box coleção ou entity selection | | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | ---------------- | ------------------------------------ | | [Cor de fundo alternativa](properties_BackgroundAndBorder.md#alternate-background-color) | X | X | X | -| [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) | X | X | X | +| [Cor de Fundo](properties_BackgroundAndBorder.md#background-color--fill-color) | X | X | X | | [Negrito](properties_Text.md#bold) | X | X | X | | [Expressão de cor de fundo](properties_BackgroundAndBorder.md#background-color-expression) | | X | X | | [Estilo da linha de borda](properties_BackgroundAndBorder.md#border-line-style) | X | X | X | @@ -149,7 +149,7 @@ Propriedades compatíveis dependem do tipo de list box. | [Ocultar linhas em branco extras](properties_BackgroundAndBorder.md#hide-extra-blank-rows) | X | X | X | | [Ocultar retângulo de foco](properties_Appearance.md#hide-focus-rectangle) | X | X | X | | [Ocultar destaque de seleção](properties_Appearance.md#hide-selection-highlight) | X | X | X | -| [Hierarchical List Box](properties_Object.md#array-list-box) | X | | | +| [List Box hierárquico](properties_Object.md#array-list-box) | X | | | | [Highlight Set](properties_ListBox.md#highlight-set) | | X | | | [Alinhamento Horizontal](properties_Text.md#horizontal-alignment) | X | X | X | | [Horizontal Line Color](properties_Gridlines.md#horizontal-line-color) | X | X | X | @@ -176,7 +176,7 @@ Propriedades compatíveis dependem do tipo de list box. | [Row Style Array](properties_Text.md#row-style-array) | X | | | | [Selected Items](properties_DataSource.md#selected-items) | | | X | | [Selection Mode](properties_ListBox.md#selection-mode) | X | X | X | -| [Single-Click Edit](properties_Entry.md#single-click-edit) | X | X | X | +| [Edição com um único clique](properties_Entry.md#single-click-edit) | X | X | X | | [Ordenável](properties_Action.md#sortable) | X | X | X | | [Ação padrão](properties_Action.md#standard-action) | X | | | | [Expressão de estilo](properties_Text.md#style-expression) | | X | X | @@ -520,14 +520,14 @@ Você pode ativar ou desativar a classificação padrão do usuário desativando O suporte de ordenação padrão depende do tipo de list box: -| Tipo de list box | Suporte de ordenação padrão | Comentários | -| ----------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| Uma coleção de objetos | Sim |
    • "This.a" or "This.a.b" columns are sortable.
    • The [list box source property](properties_Object.md#variable-or-expression) must be an [assignable expression](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
    | -| Colecção de valores escalares | Não | Use a classificação personalizada com a função [`orderBy()`](../API/CollectionClass.md#orderby) | -| Seleção de entidades | Sim |
  • A [propriedade de origem da caixa de listagem](properties_Object.md#variable-or-expression) deve ser uma [expressão atribuível](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data
  • .
  • city" quando "data" é um
  • atributo de objeto)
  • Suportado: classifica propriedades de atributos relacionados
  • (por exemplo, "This.company
  • .
  • name"
  • )
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data.city" quando "data" é um atributo de objeto)Suportado
  • : classifica
  • atributos relacionados (por exemplo, "This.company.name")
  • Não suportado: classifica propriedades de atributos de objetos por meio de atributos relacionados (por exemplo, "This.company.data.city"). For this, you need to use custom sort with [`orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) function (see example below)
  • | -| Selecção actual | Sim | Somente expressões simples podem ser classificadas (por exemplo, `[Table_1]Field_2`) | -| Seleção temporal | Não | | -| Arrays | Sim | As colunas ligadas a arrays de imagens e ponteiros não podem ser ordenadas | +| Tipo de list box | Suporte de ordenação padrão | Comentários | +| ----------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Uma coleção de objetos | Sim |
    • "This.a" or "This.a.b" columns are sortable.
    • The [list box source property](properties_Object.md#variable-or-expression) must be an [assignable expression](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
    | +| Colecção de valores escalares | Não | Use a classificação personalizada com a função [`orderBy()`](../API/CollectionClass.md#orderby) | +| Seleção de entidades | Sim |
  • A [propriedade de origem da caixa de listagem](properties_Object.md#variable-or-expression) deve ser uma [expressão atribuível](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data
  • .
  • city" quando "data" é um
  • atributo de objeto)
  • Suportado: classifica propriedades de atributos relacionados
  • (por exemplo, "This.company
  • .
  • name"
  • )
  • Suportado: classifica propriedades de atributos de objetos (por exemplo,
  • "This.data.city" quando "data" é um atributo de objeto)Suportado
  • : classifica
  • atributos relacionados (por exemplo, "This.company.name")
  • Não suportado: classifica propriedades de atributos de objetos por meio de atributos relacionados (por exemplo, "This.company.data.city"). Para isso, você precisa usar a classificação personalizada com a função [`orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) (veja o exemplo abaixo)
  • | +| Selecção actual | Sim | Somente expressões simples podem ser classificadas (por exemplo, `[Table_1]Field_2`) | +| Seleção temporal | Não | | +| Arrays | Sim | As colunas ligadas a arrays de imagens e ponteiros não podem ser ordenadas | ### Ordenação personalizada diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/pictureButton_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/pictureButton_overview.md index fd7bbc9ee6004a..eedd5fff78eb74 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/pictureButton_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/pictureButton_overview.md @@ -49,7 +49,7 @@ In addition to the standard positioning and appearance settings, you can set som Estão disponíveis os seguintes outros modos: -- [Loop back to first frame](properties_Animation.md#loop-back-to-first-frame) +- [Loop de volta ao primeiro quadro](properties_Animation.md#loop-back-to-first-frame) - [Volte quando lançado](properties_Animation.md#switch-back-when-released) - [Alterne quando Roll Over] (properties_Animation.md#switch-when-roll-over) - [Alterne continuamente nos cliques](properties_Animation.md#switch-continuously-on-clicks) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_Appearance.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_Appearance.md index 0fee2f271e1704..deeb5cb8359fc5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_Appearance.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_Appearance.md @@ -301,7 +301,7 @@ Quando os controles de aba com uma direção personalizada são exibidos no Wind #### Objectos suportados -[Tab Control](tabControl.md) +[Controle de guias](tabControl.md) --- diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_CoordinatesAndSizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_CoordinatesAndSizing.md index 95e1e07a0a95f0..46835a43cd95ce 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_CoordinatesAndSizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_CoordinatesAndSizing.md @@ -10,7 +10,7 @@ Esta propriedade só está disponível para os list box com as seguintes [fontes - collection ou entity selection, - array (não hierárquico). -A propriedade não está selecionada por padrão. Note that only columns with the option selected will be taken into account to calculate the row height. Note that only columns with the option selected will be taken into account to calculate the row height. +A propriedade não está selecionada por padrão. Quando usado para pelo menos uma coluna, a altura de cada linha na coluna será automaticamente calculada por 4D, e o conteúdo da coluna será levado em consideração. Note that only columns with the option selected will be taken into account to calculate the row height. :::note @@ -122,11 +122,11 @@ Coordenada superior do objecto no formulário. -Defines the corner roundness (in pixels) of the object. By default, the radius value for rectangles is 0 pixels. You can change this property to draw rounded rectangles with custom shapes: +Define o arredondamento do canto (em pixels) do objeto. Por padrão, o valor do raio é 0 pixels. Você pode alterar essa propriedade para desenhar objetos arredondados com formas personalizadas: ![](../assets/en/FormObjects/shape_rectangle.png) -Minimum value is 0, in this case a standard non-rounded rectangle is drawn. +O valor mínimo é 0; nesse caso, um retângulo de objeto padrão não arredondado é desenhado. Maximum value depends on the rectangle size (it cannot exceed half the size of the shortest rectangle side) and is calculated dynamically. :::note diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_DataSource.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_DataSource.md index 16f1ab7e5f9013..db438c2252de08 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_DataSource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_DataSource.md @@ -63,7 +63,7 @@ Lista de valores estáticos a serem usados como etiquetas para o objeto de contr #### Objectos suportados -[Tab Control](tabControl.md) +[Controle de guias](tabControl.md) --- diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_Object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_Object.md index e0819113984e87..a6976778d79dc7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_Object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_Object.md @@ -103,7 +103,7 @@ You can leave it up to 4D to create variables associated with your form objects When a variable is not named, when the form is loaded, 4D creates a new variable for the object, with a calculated name that is unique in the space of the process variables of the interpreter (which means that this mechanism can be used even in compiled mode). Esta variável temporária será destruída quando o formulário for fechado. Para que este princípio funcione em modo compilado, é imperativo que as variáveis dinâmicas sejam explicitamente tipadas. Há duas formas de o fazer: -- You can set the type using the [Expression type](#expression-type) property. +- Você pode definir o tipo usando a propriedade [Tipo de expressão](#expression-type). - Puede utilizar un código de inicialización específico cuando se carga el formulario que utilice, por ejemplo, el comando `VARIABLE TO VARIABLE`: ```4d diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_TextAndPicture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_TextAndPicture.md index 35875881d264dd..ed9ab8a6d5d3e2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_TextAndPicture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_TextAndPicture.md @@ -239,7 +239,7 @@ To attach a pop-up menu symbol to a button, there are two display options availa Each option specifies the relation between the button and the attached pop-up menu: -- When the pop-up menu is **separated**, clicking on the left part of the button directly executes the current action of the button; this action can be modified using the pop-up menu accessible in the right part of the button. +- Quando o menu pop-up é **separado**, clicar na parte esquerda do botão executa diretamente a ação atual do botão; essa ação pode ser modificada usando o menu pop-up acessível na parte direita do botão. - Quando o menu pop-up está **vinculado**, um simples clique no botão exibe apenas o menu pop-up. Only the selection of the action in the pop-up menu causes its execution. :::info diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_WebArea.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_WebArea.md index 75b6e6727422c9..11424142a2cca6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_WebArea.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/properties_WebArea.md @@ -79,7 +79,7 @@ This option allows choosing between two rendering engines for the Web area, depe - **unchecked** - `JSON value: system` (default): In this case, 4D uses the "best" engine corresponding to the system. This means that you automatically benefit from the latest advances in Web rendering, through HTML5 or JavaScript. No entanto, você poderá notar algumas diferenças de renderização entre as plataformas. No Windows, 4D usa Microsoft Edge WebView2. No macOS, 4D usa a versão atual do WebKit (Safari). -> On Windows, if Microsoft Edge WebView2 is not installed, 4D uses the embedded engine as system rendering engine. To know if it is installed in your system, look for "Microsoft Edge WebView2 Runtime" in your applications panel. +> No Windows, se o Microsoft Edge WebView2 não estiver instalado, o 4D usa o mecanismo incorporado como mecanismo de renderização do sistema. To know if it is installed in your system, look for "Microsoft Edge WebView2 Runtime" in your applications panel. - **marcado** - `valor JSON: anidado`: en este caso, 4D utiliza Chromium Embedded Framework (CEF). Using the embedded Web engine means that Web area rendering and their functioning in your application are identical regardless of the platform used to run 4D (slight variations of pixels or differences related to network implementation may nevertheless be observed). Using the embedded Web engine means that Web area rendering and their functioning in your application are identical regardless of the platform used to run 4D (slight variations of pixels or differences related to network implementation may nevertheless be observed). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/shapes_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/shapes_overview.md index 3d54859ca69901..60daceb779965b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/shapes_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/shapes_overview.md @@ -19,7 +19,7 @@ O desenho dos retângulos é controlado através de muitas propriedades (cor, es ![](../assets/en/FormObjects/shapes_rectangle2.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myRectangle": { @@ -90,7 +90,7 @@ Uma oval estática é um objeto decorativo para formas. Los objetos ovalados pue ![](../assets/en/FormObjects/shape_oval.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myOval": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/splitters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/splitters.md index 747df9e4ab71c7..b0a9dea25ae196 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/splitters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/splitters.md @@ -18,7 +18,7 @@ Algumas das características gerais do repartidor: Uma vez inserido, o separador aparece como uma linha. You can modify its [border style](properties_BackgroundAndBorder.md#border-line-style-dotted-line-type) to obtain a thinner line or [change its color](properties_BackgroundAndBorder.md#line-color). -#### JSON Exemplo +#### Exemplo JSON: ```4d "mySplitter": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/stepper.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/stepper.md index 0af8dc2d03d2b8..346708f472fed5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/stepper.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/stepper.md @@ -14,7 +14,7 @@ You can assign the variable associated with the object to an enterable area (fie Um stepper pode ser associado diretamente a uma variável número, hora ou data. - For values of the time type, the Minimum, Maximum and Step properties represent seconds. Por exemplo, para definir um passo de 8:00 a 18:00 com passos de 10 minutos: - - [minimum](properties_Scale.md#minimum) = 28 800 (8\*60\*60) + - [mínimo](properties_Scale.md#minimum) = 28 800 (8\*60\*60) - [maximum](properties_Scale.md#maximum) = 64 800 (18\*60\*60) - [step](properties_Scale.md#step) = 600 (10\*60) - For values of the date type, the value entered in the [step](properties_Scale.md#step) property represents days. As propriedades Mínimo e Máximo são ignoradas. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/tabControl.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/tabControl.md index 988a3291bfa87d..07d9c464b38c1a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/tabControl.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/tabControl.md @@ -25,7 +25,7 @@ If the tab control is wide enough to display all the tabs with both the labels a Under macOS, in addition to the standard position (top), the tab controls can also be aligned to the bottom. -### JSON Exemplo +### Exemplo JSON: ```4d "myTab": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md index 75526132b05431..b58e26ce347750 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/text.md @@ -5,7 +5,7 @@ title: Text Um objeto texto permite exibir conteúdo escrito estático (*e.g.*, instruções, títulos, etiquetas, etc.) em um formulário. Estas áreas de texto estático podem se tornar dinâmicas quando incluem referências dinâmicas. Para más información, consulte [Uso de referencias en textos estáticos](https://doc.4d.com/4Dv17R5/4D/17-R5/Using-references-in-static-text.300-4163725.en.html). -#### JSON Exemplo +#### Exemplo JSON: ```4d "myText": { @@ -47,4 +47,4 @@ Quando um texto é rodado, pode continuar a alterar o seu tamanho ou posição, -[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color(properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/webArea_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/webArea_overview.md index 42aa7d27729ebc..1bae8ce84dd7ff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/webArea_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/FormObjects/webArea_overview.md @@ -5,7 +5,7 @@ title: Área Web Web areas can display various types of web content within your forms: HTML pages with static or dynamic contents, files, pictures, JavaScript, etc. The rendering engine of the web area depends on the execution platform of the application and the selected [rendering engine option](properties_WebArea.md#use-embedded-web-rendering-engine). -É possível criar várias áreas web no mesmo formulário. Note, however, that the use of web areas must follow [several rules](#web-area-rules). +É possível criar várias áreas web no mesmo formulário. No entanto, observe que o uso de áreas web deve seguir [várias regras](#web-area-rules). Several dedicated [standard actions](#standard-actions), numerous [language commands](../category/web-area) as well as generic and specific [form events](#form-events) allow the developer to control the functioning of web areas. Specific variables can be used to exchange information between the area and the 4D environment. @@ -69,7 +69,7 @@ $4d.4DMethodName(param1,paramN,function(result){}) Given a 4D project method named `today` that does not receive parameters and returns the current date as a string. -4D code of `today` method: +Código 4D do método `today`: ```4d #DECLARE : Text @@ -193,7 +193,7 @@ To display the Web inspector, you can either execute the `WA OPEN WEB INSPECTOR` - **Use the web area context menu**
    This feature can only be used with onscreen web areas and requires that the following conditions are met: - - the [context menu](properties_Entry.md#context-menu) for the web area is enabled + - o [menu contextual](properties_Entry.md#context-menu) para a área web está ativado - Deve habilitar expressamente ao uso do inspetor na área mediante a instrução abaixo: ```4d WA SET PREFERENCE(*;"WA";WA enable Web inspector;True) @@ -302,7 +302,7 @@ The default 4DCEFParameters.json file contains the following switches: } ``` -#### Example for Autoplay +#### Exemplo para Autoplay ```json { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/GettingStarted/creating.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/GettingStarted/creating.md index 44db95878d4981..bffe57629c42a5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/GettingStarted/creating.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/GettingStarted/creating.md @@ -14,7 +14,7 @@ Para criar um novo projeto de banco de dados: 1. Inicie 4D ou 4D Server. 2. Faça uma das seguintes opções: - - Select **New > Project...** from the **File** menu: ![](../assets/en/getStart/projectCreate1.png) + - Selecione **Novo > Projeto...** no menu **Arquivo**: ![](../assets/en/getStart/projectCreate1.png) - (4D only) Select **Project...** from the **New** toolbar button:

    ![](../assets/en/getStart/projectCreate2.png)

    A standard **Save** dialog appears so you can choose the name and location of the 4D project's main folder. 3. Introduzca el nombre de su carpeta de proyecto y haga clic en **Guardar**. Este nome será utilizado: @@ -72,7 +72,7 @@ Además de las opciones sistema estándar, la caja de diálogo *Abrir* de 4D ofr ### Abrir um projeto com um ficheiro 4DLink -You can use a [`.4DLink` file](#about-4DLink-files) to launch the 4D application and open the target 4D project. Há duas formas de o fazer: +Você pode usar um [arquivo `.4DLink`](#about-4DLink-files) para iniciar a aplicação 4D e abrir o projeto alvo 4D. Há duas formas de o fazer: - haga doble clic o arrastre y suelte el archivo `.4DLink` en la aplicación 4D - vaya a **Archivo** > **Abrir los proyectos recientes** y seleccione un proyecto diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Menus/creating.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Menus/creating.md index 3c8e7ae559f2fe..106528bcbaab1c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Menus/creating.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Menus/creating.md @@ -57,8 +57,8 @@ Para adicionar um item de menu: 1. In the list of source menus, select the menu to which you want to add a command. Se o menu já contiver comandos, eles serão exibidos na lista central. If you want to insert the new command, select the command that you want it to appear above. Você sempre pode reorganizar o menu posteriormente, arrastando e soltando. 2. Elija **Añadir un elemento al menú "NombreDelMenú"** en el menú de opciones del editor o desde el menú contextual (clic derecho en la lista central). - OR - Click on the add ![](../assets/en/Menus/PlussNew.png) button located below the central list. + OU + Clique no botão adicionar ![](../assets/en/Menus/PlussNew.png) localizado abaixo da lista central. 4D adds a new item with the default name “Item X” where X is the number of items already created. 3. Double-click on the name of the command in order to switch it to editing mode and enter a custom name. OR Enter the custom name in the "Title" area. Pode conter até 31 caracteres. Você pode digitar o nome como "código duro" ou insira uma referência (veja abaixo). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md index ee1c8e217c967b..34575f7a0e219c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Notes/updates.md @@ -10,12 +10,12 @@ Leia [**O que há de novo no 4D 20 R7**](https://blog.4d.com/en-whats-new-in-4d- #### Destaques - As colunas e cabeçalhos da list box de tipo tempo agora suportam a opção ["blankIfNull"](../FormObjects/properties_Display.md#time-format). -- New properties in [`.getBoxInfo()`](../API/IMAPTransporterClass.md#getboxinfo) and [`.getBoxList()`](../API/IMAPTransporterClass.md#getboxlist). +- Novas propriedades em [`.getBoxInfo()`](../API/IMAPTransporterClass.md#getboxinfo) e [`.getBoxList()`](../API/IMAPTransporterClass.md#getboxlist). - Agora você pode [adicionar e remover componentes usando a interface do gerenciador de componentes](../Project/components.md#adding-and-removing-dependencies). - New [**direct typing mode**](../Project/compiler.md#enabling-direct-typing) in which you declare all variables and parameters in your code using `var` and `#DECLARE`/`Function` keywords (only mode supported in new projects). [Syntax checking feature](../Project/compiler.md#check-syntax) has been enhanced accordingly. - Support of [Session singletons](../Concepts/classes.md#singleton-classes) and new [`.isSessionSingleton`](../API/ClassClass.md#issessionsingleton) Class property. - New [`onHttpGet` function keyword](../ORDA/ordaClasses.md#onhttpget-keyword) to define singleton or ORDA functions that can be called through [HTTP REST GET requests](../REST/ClassFunctions.md#function-calls). -- New [`4D.OutgoingMessage`](../API/OutgoingMessageClass.md) class for the REST server to return any web contents. +- Nova classe [`4D.OutgoingMessage`](../API/OutgoingMessageClass.md) para que o servidor REST retorne qualquer conteúdo Web. - Qodly Studio: You can now [attach the Qodly debugger to 4D Server](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server). - New Build Application keys for remote 4D applications to validate the server certificate authority [signatures](https://doc.4d.com/4Dv20R7/4D/20-R7/CertificateAuthoritiesCertificates.300-7425900.en.html) and/or [domain](https://doc.4d.com/4Dv20R7/4D/20-R7/CertificateDomainName.300-7425906.en.html). - 4D Language: @@ -31,6 +31,7 @@ Leia [**O que há de novo no 4D 20 R7**](https://blog.4d.com/en-whats-new-in-4d- - Documentations for [4D Language](../commands/command-index.md) and [4D Write Pro Language](../WritePro/commands/command-index.md) are now fully available on developer.4d.com. Find out about all the new features and changes concerning these documentations in this release note. - The [`File`](../commands/file.md) command (as well as [`4D.File.new()`](../API/FileClass.md#4dfilenew)) is stricter when it comes to checking the syntax of the *path* supplied as a parameter. +- The **describe** action [permission](../ORDA/privileges.md#permission-actions) has been removed from available actions. Acesso às urls [`/rest/$catalog`](../REST/$catalog.md) não é mais controlado. Session *describe* privileges are now ignored. ## 4D 20 R6 @@ -44,11 +45,11 @@ Leia [**O que há de novo no 4D 20 R6**](https://blog.4d.com/en-whats-new-in-4d- - New [`entitySelection.clean()`](../API/EntitySelectionClass.md#clean) function and [`$clean`](../REST/$clean.md) REST API to get a new entity selection based upon the original entity selection but without its deleted entities. - New [`session.getPrivileges()`](../API/SessionClass.md#getprivileges) function and [`$info/privileges`](../REST/$info.md) REST API to inspect session privileges for an easier debugging. - New [4DCEFParameters.json file](../FormObjects/webArea_overview.md#4dcefparametersjson) to customize 4D embedded web areas. -- New [HTTPAgent](../API/HTTPAgentClass.md) class and new [`agent`](../API/HTTPRequestClass.md#options-parameter) property for HTTPRequest class. +- Nova classe [HTTPAgent](../API/HTTPAgentClass.md) e nova propriedade [`agent`](../API/HTTPRequestClass.md#options-parameter) para a classe HTTPRequest. - New [`enableState()`](../API/WebFormClass.md) and [`disableState()`](../API/WebFormClass.md) functions to monitor Qodly page states from the server. - New [`$singleton` API](../REST/$singleton.md) to call exposed singleton functions from REST and new [associated privileges](../ORDA/privileges.md). - Um [novo botão de configurações](../settings/web.md#activate-rest-authentication-through-dsauthentify-function) ajuda você a atualizar seu projeto para usar o modo REST de "login forçado" (o método de banco de dados `On REST Authentication` agora está obsoleto). -- A [new settings tab](../Project/compiler.md#warnings) helps you define warnings generation globally. +- Uma [nova guia de parametros](../Project/compiler.md#warnings) ajuda a definir a geração de avisos globalmente. - Several commands, mainly from the "4D Environment" theme, are now thread-safe ([see the full list](https://doc.4d.com/4Dv20R6/4D/Preemptive_6957385.999-2878208.en.html)), as well as some selectors of the [`SET DATABASE PARAMETER`](https://doc.4d.com/4dv20R/help/command/en/page642.html)/[`Get database parameter`](https://doc.4d.com/4dv20R/help/command/en/page643.html) commands. - New [4D-QPDF component](https://github.com/4d/4D-QPDF) that provides the `PDF Get attachments` command to extract attachments from a PDF/A3 document. - Comandos da linguagem 4D: [página Novidades](https://doc.4d.com/4Dv20R6/4D/20-R6/What-s-new.901-6957482.en.html) em doc.4d.com. @@ -74,7 +75,7 @@ Leia [**O que há de novo no 4D 20 R5**](https://blog.4d.com/en-whats-new-in-4d- - Suporte à [inicializando uma propriedade de classe em sua linha de declaração](../Concepts/classes.md/#initializing-the-property-in-the-declaration-line). - Novo modo [forçar login para solicitações REST](../REST/authUsers.md#force-login-mode) com um suporte específico [no Qodly Studio para 4D](../WebServer/qodly-studio.md#force-login). - Nuevo parámetro REST [$format](../REST/$format.md). -- [`Session`](../commands/session.md) object is now available in remote user sessions and stored procedures session. +- O objeto [`Session`](../commands/session.md) agora está disponível em sessões de usuários remotos e sessões de procedimentos armazenados. - Comandos da linguagem 4D: [página Novidades](https://doc.4d.com/4Dv20R5/4D/20-R5/What-s-new.901-6817247.en.html) em doc.4d.com. - 4D Write Pro: [What's new page](https://doc.4d.com/4Dv20R5/4D/20-R5/What-s-new.901-6851780.en.html) on doc.4d.com. - [**Lista de erros corrigida**](https://bugs.4d.fr/fixedbugslist?version=20_R5): lista de todos os bugs corrigidos em 4D 20 R5. @@ -82,7 +83,7 @@ Leia [**O que há de novo no 4D 20 R5**](https://blog.4d.com/en-whats-new-in-4d- #### Mudanças de comportamento - Os plug-ins *4D Internet Commands* e *4D for OCI* não estão mais incluídos nos instaladores do 4D. Para obter esses plug-ins, você precisa se conectar ao [**Portal de descarrega de produtos 4D**](https://product-download.4d.com/). -- Changes made in the Structure editor regarding graphical appearance of tables and fields (color, position, order...) are now saved in a separate file named `catalog_editor.json` stored in the project's [`Sources`](../Project/architecture.md#sources) folder. +- Changes made in the Structure editor regarding graphical appearance of tables and fields (color, position, order...) agora são salvas em um arquivo separado chamado `catalog_editor.json` armazenado na pasta [`Sources`](../Project/architecture.md#sources) do projeto. ## 4D 20 R4 @@ -90,15 +91,15 @@ Leia [**O que há de novo no 4D v20 R4**](https://blog.4d.com/en-whats-new-in-4d #### Destaques -- Support of [`ECDSA` encryption format](../Admin/tls.md#encryption) for TLS certificates. +- Suporte do [formato de criptografia `ECDSA`](../Admin/tls.md#encryption) para os certificados TLS. - Client/server and SQL server TLS connections are now [configured dynamically](../Admin/tls.md#enabling-tls-with-the-other-servers) (no certificate files are required). - Direct HTML format for [structure definition exports](https://doc.4d.com/4Dv20R4/4D/20-R4/Exporting-and-importing-structure-definitions.300-6654851.en.html). - New [Code Live Checker](../code-editor/write-class-method.md#warnings-and-errors) that enhances code control during code typing, syntax checking, and compilation steps to prevent execution errors. - Method parameters declared in `#DECLARE` prototypes are [no longer necessary in "Compiler_" methods](../Concepts/parameters.md#compilation). - Suporte de [formatos personalizados de data e hora](../Project/date-time-formats.md) -- New [`Try(expression)` keyword](../Concepts/error-handling.md#tryexpression) to handle simple error cases. +- Nova palavra-chave [`Try(expression)`](../Concepts/error-handling.md#tryexpression) para tratar casos de erro simples. - Novo comando [`HTTP Parse message`](../API/HTTPRequestClass.md#http-parse-message). -- New [Non-blocking printing](../settings/compatibility.md) compatibility option. +- Nova opção de compatibilidade [Impressão sem bloqueio](../settings/compatibility.md). - Nuevo [modo de edición](../Admin/dataExplorer.md#editing-data) en el Explorador de datos. - Comandos da linguagem 4D: [Novidades de página](https://doc.4d.com/4Dv20R4/4D/20-R4/What-s-new.901-6655756.en.html) em doc.4d.com. - 4D Write Pro: [Página Novidades] (https://doc.4d.com/4Dv20R4/4D/20-R4/What-s-new.901-6683440.en.html) em doc.4d.com. @@ -109,7 +110,7 @@ Leia [**O que há de novo no 4D v20 R4**](https://blog.4d.com/en-whats-new-in-4d - Usando uma sintaxe legada para declarar parâmetros (por exemplo, `C_TEXT($1)` ou `var $1 : Text`) está agora obsoleto e gera avisos na digitação de código, verificação de sintaxe e etapas de compilação. - La coherencia de las selecciones ahora se mantiene después de que se hayan eliminado algunos registros y se hayan creado otros (ver [esta entrada de blog](https://blog.4d.com/4d-keeps-your-selections-of-records-consistent-regarding-deletion-of-records/)). - In the updated [OpenSSL library](#library-table), the default SSL/TLS security level has been changed from 1 to 2. Chaves RSA, DSA e DH de 1024 bits ou mais e menos de 2048 bits, assim como chaves ECC de 160 bits ou mais e menos de 224 bits, agora não são mais permitidas. Por padrão, a compressão TLS já estava desativada nas versões anteriores do OpenSSL. No nível de segurança 2, ele não pode ser habilitado. -- In order to allow password verification when the [4D user directory uses the bcrypt algorithm](https://blog.4d.com/bcrypt-support-for-passwords/), the "password" value in the *connectionInfo* parameter of the [`Open datastore`](../commands/open-datastore.md) command is now sent in clear form by default. Make sure your "On REST authentication" database method can handle passwords in clear form (third parameter is then **False**) and that `Open datastore` encrypts your connection by passing the "tls" option to **True** in *connectionInfo*. In specific cases, a new "passwordAlgorithm" option can also be used for compatibility (see [`Open datastore`](../commands/open-datastore.md) command). +- Make sure your "On REST authentication" database method can handle passwords in clear form (third parameter is then **False**) and that `Open datastore` encrypts your connection by passing the "tls" option to **True** in *connectionInfo*. In order to allow password verification when the [4D user directory uses the bcrypt algorithm](https://blog.4d.com/bcrypt-support-for-passwords/), the "password" value in the *connectionInfo* parameter of the [`Open datastore`](../commands/open-datastore.md) command is now sent in clear form by default. In specific cases, a new "passwordAlgorithm" option can also be used for compatibility (see [`Open datastore`](../commands/open-datastore.md) command). ## 4D 20 R3 @@ -148,11 +149,11 @@ Se suas aplicações 4D utilizam conexões TLS, é recomendado que você faça a #### Destaques - New [WebSocket class](../API/WebSocketClass.md) to create and manage client WebSocket connections from 4D. -- New QUIC network layer [interface setting](../settings/client-server.md#network-layer). +- Nova [configuração de interface] (../settings/client-server.md#network-layer) para a camada de rede QUIC. - 4D View Pro: soporte del formato de archivo **.sjs** para [la importación](../ViewPro/commands/vp-import-document) y la [exportación](../ViewPro/commands/vp-export-document) de documentos. - Comandos da linguagem 4D: [Novidades de página](https://doc.4d.com/4Dv20R2/4D/20-R2/What-s-new.901-6398284.en.html) em doc.4d.com. - 4D Write Pro: [Página Novidades] (https://doc.4d.com/4Dv20R2/4D/20-R2/What-s-new.901-6390313.en.html) em doc.4d.com. -- 4D Write Pro Interface: New [Table Wizard](../WritePro/writeprointerface.md). +- Interface 4D Write Pro: novo [Table Wizard](../WritePro/writeprointerface.md). - [**Lista de erros corrigida**](https://bugs.4d.fr/fixedbugslist?version=20_R2): lista de todos os bugs corrigidos em 4D 20 R2. #### Mudanças de comportamento diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/entities.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/entities.md index b2ab5829b8388f..493be9a98c7e86 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/entities.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/entities.md @@ -90,7 +90,7 @@ Puede manejar las entidades como cualquier otro objeto en 4D y pasar sus referen :::info -Com as entidades, não há o conceito de "registro atual" como na linguagem 4D. Pode utilizar tantas entidades quantas as necessárias, em simultâneo. There is also no automatic lock on an entity (see [Entity locking](#entity-locking)). When an entity is loaded, it uses the [lazy loading](glossary.md#lazy-loading) mechanism, which means that only the needed information is loaded. No entanto, no cliente/servidor, a entidade pode ser carregada automaticamente de forma direta, se necessário. +Com as entidades, não há o conceito de "registro atual" como na linguagem 4D. Pode utilizar tantas entidades quantas as necessárias, em simultâneo. Não há também bloqueio automático em uma entidade (veja [bloqueio de Entity](#entity-locking)). When an entity is loaded, it uses the [lazy loading](glossary.md#lazy-loading) mechanism, which means that only the needed information is loaded. No entanto, no cliente/servidor, a entidade pode ser carregada automaticamente de forma direta, se necessário. ::: @@ -238,7 +238,7 @@ Você pode atribuir ou modificar o valor de um "1" atributo da entidade relacion Puede crear un objeto de tipo [entity selection](dsMapping.md#entity-selection) de la siguiente manera: - Lance una búsqueda en las entidades [en una dataclass](API/DataClassClass.md#query) o en una [selección de entidades existente](API/EntitySelectionClass.md#query); -- Using the [`.all()`](API/DataClassClass.md#all) dataclass function to select all the entities in a dataclass; +- Usando a função dataclass [`.all()`](API/DataClassClassClass.md#all), para selecionar todas as entidades em um dataclass; - Using the [`Create entity selection`](../commands/create-entity-selection.md) command or the [`.newSelection()`](API/DataClassClass.md#newselection) dataclass function to create a blank entity selection; - Usando a [`.copy()`](API/EntitySelectionClass.md#copy) função para duplicar uma seleção de entidade existente; - Using one of the various functions from the [Entity selection class](API/EntitySelectionClass.md) that returns a new entity selection, such as [`.or()`](API/EntitySelectionClass.md#or); @@ -270,12 +270,12 @@ Una entity selection **compartible** tiene las siguientes características: - it can be stored in several shared objects or collections, or in a shared object or collection which already belongs to a group; - não permite a adição de novas entidades. A tentativa de adicionar uma entidade a uma seleção de entidade compartilhável acionará um erro (1637 - Esta seleção de entidade não pode ser alterada). To add an entity to a shareable entity selection, you must first transform it into a non-shareable entity selection using the [`.copy()`](API/EntitySelectionClass.md#copy) function, before calling [`.add()`](API/EntitySelectionClass.md#add). -> Most entity selection functions (such as [`.slice()`](API/EntitySelectionClass.md#slice), [`.and()`](API/EntitySelectionClass.md#and)...) support shareable entity selections since they do not need to alter the original entity selection (they return a new one). +> A maioria das funções de seleção de entidades (como [`.slice()`](API/EntitySelectionClass.md#slice), [`.and()`](API/EntitySelectionClass.md#and)...) support shareable entity selections since they do not need to alter the original entity selection (they return a new one). Una entity selection **modificable** tiene las siguientes características: - não pode ser compartilhado entre processos, nem armazenado em um objeto ou coleção compartilhada. A tentativa de armazenar uma seleção de entidade não compartilhável em um objeto ou coleção compartilhada acionará um erro (-10721 - Tipo de valor não suportado em um objeto compartilhado ou coleção compartilhada); -- it accepts the addition of new entities, i.e. it is supports the [`.add()`](API/EntitySelectionClass.md#add) function. +- ele aceita a adição de novas entidades, ou seja, suporta a função [`.add()`](API/EntitySelectionClass.md#add). #### Como é que são definidos? @@ -334,7 +334,7 @@ $comp2:=$lowSal.employer //$comp2 is alterable because $lowSal is alterable :::note Entity selections devolvidas pelo servidor -In client/server architecture, entity selections returned from the server are always shareable on the client, even if [`copy()`](API/EntitySelectionClass.md#copy) was called on the server. To make such an entity selection alterable on the client, you need to execute [`copy()`](API/EntitySelectionClass.md#copy) on the client side. Exemplo: +In client/server architecture, entity selections returned from the server are always shareable on the client, even if [`copy()`](API/EntitySelectionClass.md#copy) was called on the server. Para tornar essa seleção de entidade alterável no cliente, você precisa executar [`copy()`](API/EntitySelectionClass.md#copy) no lado do cliente. Exemplo: ```4d //a function is always executed on the server @@ -530,7 +530,7 @@ Los filtros no se aplican a las selecciones heredadas de registros manejadas a t | [entity.attributeName](../API/EntityClass.md#attributename) | Filtro aplicado si *attributeName* corresponde a entidades relacionadas de una clase de datos filtrada (incluyendo alias o atributo calculado) | | [Create entity selection](../commands/create-entity-selection.md) | | -Other ORDA functions accessing data do not directly trigger the filter, but they nevertheless benefit from it. For example, the [`entity.next()`](../API/EntityClass.md#next) function will return the next entity in the already-filtered entity selection. On the other hand, if the entity selection is not filtered, [`entity.next()`](../API/EntityClass.md#next) will work on non-filtered entities. +Other ORDA functions accessing data do not directly trigger the filter, but they nevertheless benefit from it. Por exemplo, a função [`entity.next()`](../API/EntityClass.md#next) retornará a próxima entidade na seleção de entidade já filtrada. Por outro lado, se a seleção de entidade não estiver filtrada, [`entity.next()`](../API/EntityClass.md#next) funcionará em entidades não filtradas. :::note diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/global-stamp.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/global-stamp.md index 62830d22d28b58..3b73ca80ab6a9c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/global-stamp.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/global-stamp.md @@ -26,7 +26,7 @@ No confunda el **sello de modificación global** con el **sello de entidad** int ## Configurando rastreamento de alterações de dados -By default, the global modification stamp is not created (the [`.getGlobalStamp()`](../API/DataStoreClass.md#getglobalstamp) function returns 0. To enable data change tracking, you need to add special fields and a table to your structure. You can use the contextual menu of the Structure Editor to create automatically all necessary elements. +Por padrão, o carimbo de modificação global não é criado (a função [`.getGlobalStamp()`](../API/DataStoreClass.md#getglobalstamp) retorna 0. To enable data change tracking, you need to add special fields and a table to your structure. You can use the contextual menu of the Structure Editor to create automatically all necessary elements. ### Requisitos de estrutura diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md index ff8bb44ac3feb8..68444d97a4724d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/glossary.md @@ -9,7 +9,7 @@ title: Glossary ## Ação -Todas las acciones que pueden realizarse en un [recurso](#resource). As ações disponíveis são: criar, ler, atualizar, largar, executar, promover e descrever. +Todas las acciones que pueden realizarse en un [recurso](#resource). Available actions are: create, read, update, drop, execute, and promote. ## Atributo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/ordaClasses.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/ordaClasses.md index 15f90d3168459f..47758e568e8961 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/ordaClasses.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/ordaClasses.md @@ -847,7 +847,7 @@ As this type of call is an easy offered action, the developer must ensure no sen ### params -A function with `onHttpGet` keyword accepts [parameters](../Concepts/parameters.md). +Uma função com a palavra-chave `onHttpGet` aceita [parâmetros](../Concepts/parameters.md). In the HTTP GET request, parameters must be passed directly in the URL and declared using the `$params` keyword (they must be enclosed in a collection). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md index 0ddb9e1f18e608..767e6ea4ef605b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/privileges.md @@ -49,15 +49,14 @@ Permissões controlam o acesso a objetos ou funções de armazenamento de dados. As ações disponíveis estão relacionadas com o recurso alvo. -| Acções | armazém de dados | dataclass | atributo | função de modelo de dados ou função singleton | -| ------------ | ------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **create** | Criar entidade em qualquer classe de dados | Criar entidade nesta classe de dados | Create an entity with a value different from default value allowed for this attribute (ignored for alias attributes). | n/a | -| **read** | Ler atributos em qualquer dataclass | Ler atributos nesta classe de dados | Leia o conteúdo desse atributo | n/a | -| **update** | Atualizar atributos em qualquer classe de dados. | Atualiza os atributos nesta classe de dados. | Atualiza o conteúdo deste atributo (ignorado para atributos alias). | n/a | -| **drop** | Eliminar dados em qualquer classe de dados. | Eliminar dados nesta classe de dados. | Delete a not null value for this attribute (except for alias and computed attribute). | n/a | -| **execute** | Execute any function on the project (datastore, dataclass, entity selection, entity) | Executa qualquer função na classe de dados. Dataclass functions, entity functions, and entity selection functions are handled as dataclass functions | n/a | Executar esta função | -| **describe** | Todas as classes de dados estão disponíveis na /rest/$catalog API | Esta dataclass está disponível na API /rest/$catalog | Esse atributo está disponível na API /rest/$catalog. | Esta função de dataclass está disponível na API /rest/$catalog (não disponível com singletons) | -| **promote** | n/a | n/a | n/a | Associa um determinado privilégio durante a execução da função. The privilege is temporary added to the session and removed at the end of the function execution. By security, only the process executing the function is added the privilege, not the whole session. | +| Acções | armazém de dados | dataclass | atributo | função de modelo de dados ou função singleton | +| ----------- | ------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **create** | Criar entidade em qualquer classe de dados | Criar entidade nesta classe de dados | Create an entity with a value different from default value allowed for this attribute (ignored for alias attributes). | n/a | +| **read** | Ler atributos em qualquer dataclass | Ler atributos nesta classe de dados | Leia o conteúdo desse atributo | n/a | +| **update** | Atualizar atributos em qualquer classe de dados. | Atualiza os atributos nesta classe de dados. | Atualiza o conteúdo deste atributo (ignorado para atributos alias). | n/a | +| **drop** | Eliminar dados em qualquer classe de dados. | Eliminar dados nesta classe de dados. | Delete a not null value for this attribute (except for alias and computed attribute). | n/a | +| **execute** | Execute any function on the project (datastore, dataclass, entity selection, entity) | Executa qualquer função na classe de dados. Dataclass functions, entity functions, and entity selection functions are handled as dataclass functions | n/a | Executar esta função | +| **promote** | n/a | n/a | n/a | Associa um determinado privilégio durante a execução da função. The privilege is temporary added to the session and removed at the end of the function execution. By security, only the process executing the function is added the privilege, not the whole session. | **Notas:** @@ -67,10 +66,7 @@ As ações disponíveis estão relacionadas com o recurso alvo. - Valores padrão: na implementação atual, apenas *Null* está disponível como valor padrão. - No REST [modo de login](../REST/authUsers.md/#force-login-mode), a [função `authentify()`](../REST/authUsers.md#function-authentify) é sempre executável por usuários convidados, independentemente da configuração das permissões. -A definição das permissões deve ser coerente, nomeadamente: - -- Permissões de **atualização** e **drop** também precisam da permissão **read** (mas **create** não precisa dela) -- Para funções do modelo de dados, permissão de **promoção** também precisa de permissão **descrever**. +Setting permissions requires to be consistent, in particular **update** and **drop** permissions also need **read** permission (but **create** does not need it). ## Privilégios e roles @@ -139,7 +135,6 @@ O arquivo padrão tem o seguinte conteúdo: "create": ["none"], "update": ["none"], "drop": ["none"], - "describe": ["none"], "execute": ["none"], "promote": ["none"] } @@ -175,26 +170,25 @@ No Qodly Studio para 4D, o modo pode ser definido usando a opção [**Forçar lo A sintaxe do arquivo `roles.json` é a seguinte: -| Nome da propriedade | | | Tipo | Obrigatório | Descrição | -| ------------------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | ---------------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------- | -| privileges | | | Coleção de objetos de 'privilégio' | X | Lista de privilégios definidos | -| | \[].privilege | | Text | | Nome do privilégio | -| | \[].includes | | Coleção de strings | | Lista de nomes de privilégios incluídos | -| roles | | | Coleção de objetos `papel` | | Lista de roles definidos | -| | \[].role | | Text | | Nome da role | -| | \[].privileges | | Coleção de strings | | Lista de nomes de privilégios incluídos | -| permissions | | | Object | X | Lista de acções permitidas | -| | allowed | | Colección de objetos `permission` | | Lista de permissões permitidas | -| | | \[].applyTo | Text | X | Targeted [resource](#resources) name | -| | | \[].type | Text | X | [Resource](#resources) type: "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | -| | | \[].read | Coleção de strings | | Lista de privilégios | -| | | \[].create | Coleção de strings | | Lista de privilégios | -| | | \[].update | Coleção de strings | | Lista de privilégios | -| | | \[].drop | Coleção de strings | | Lista de privilégios | -| | | \[].describe | Coleção de strings | | Lista de privilégios | -| | | \[].execute | Coleção de strings | | Lista de privilégios | -| | | \[].promote | Coleção de strings | | Lista de privilégios | -| forceLogin | | | Parâmetros | | True para habilitar el [modo "forceLogin"](../REST/authUsers.md#force-login-mode) | +| Nome da propriedade | | | Tipo | Obrigatório | Descrição | +| ------------------- | ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ---------------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------- | +| privileges | | | Coleção de objetos de 'privilégio' | X | Lista de privilégios definidos | +| | \[].privilege | | Text | | Nome do privilégio | +| | \[].includes | | Coleção de strings | | Lista de nomes de privilégios incluídos | +| roles | | | Coleção de objetos `papel` | | Lista de roles definidos | +| | \[].role | | Text | | Nome da role | +| | \[].privileges | | Coleção de strings | | Lista de nomes de privilégios incluídos | +| permissions | | | Object | X | Lista de acções permitidas | +| | allowed | | Colección de objetos `permission` | | Lista de permissões permitidas | +| | | \[].applyTo | Text | X | Targeted [resource](#resources) name | +| | | \[].type | Text | X | [Resource](#resources) type: "datastore", "dataclass", "attribute", "method", "singletonMethod", "singleton" | +| | | \[].read | Coleção de strings | | Lista de privilégios | +| | | \[].create | Coleção de strings | | Lista de privilégios | +| | | \[].update | Coleção de strings | | Lista de privilégios | +| | | \[].drop | Coleção de strings | | Lista de privilégios | +| | | \[].execute | Coleção de strings | | Lista de privilégios | +| | | \[].promote | Coleção de strings | | Lista de privilégios | +| forceLogin | | | Parâmetros | | True para habilitar el [modo "forceLogin"](../REST/authUsers.md#force-login-mode) | :::caution Lembrete @@ -254,9 +248,6 @@ A boa prática é manter todo o acesso aos dados bloqueado por padrão graças a "execute": [ "none" ], - "describe": [ - "none" - ], "promote": [ "none" ] diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md index 3133e7eb2c95e0..ddd35089e24092 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ORDA/remoteDatastores.md @@ -49,7 +49,7 @@ Os recursos do ORDA relacionados ao bloqueio de entidades e à transação são - Si un proceso bloquea una entidad de un datastores remoto, la entidad se bloquea para todos los otros procesos, incluso cuando estos procesos comparten la misma sesión (ver [Bloqueo de entidades](entities.md#entity-locking)). Se várias entidades que apontam para um mesmo registro tiverem sido bloqueadas em um processo, todas elas deverão ser desbloqueadas no processo para remover o bloqueio. Se um bloqueio tiver sido colocado em uma entidade, o bloqueio será removido quando não houver mais referência a essa entidade na memória. - Las transacciones pueden iniciarse, validarse o cancelarse por separado en cada almacén de datos remoto mediante las funciones `dataStore.startTransaction()`, `dataStore.cancelTransaction()` y `dataStore.validateTransaction()`. Não têm impacto noutros datastores. -- Los comandos clásicos del lenguaje 4D (`START TRANSACTION`, `VALIDATE TRANSACTION`, `CANCEL TRANSACTION`) sólo se aplican al datastore principal (devuelto por `ds`). +- Classic 4D language commands ([`START TRANSACTION`](../commands-legacy/start-transaction.md), [`VALIDATE TRANSACTION`](../commands-legacy/validate-transaction.md), [`CANCEL TRANSACTION`](../commands-legacy/cancel-transaction.md)) only apply to the main datastore (returned by `ds`). Se uma entidade de um datastore remoto é segurada por uma transação em um processo, outros processos não podem atualizá-lo, mesmo que esses processos compartilhem a mesma sessão. - Os bloqueios nas entidades são removidos e as transações são anuladas: - quando o processo é eliminado. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/architecture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/architecture.md index 4f2cd82a0e24ec..10aea84cb84fc2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/architecture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/architecture.md @@ -62,7 +62,7 @@ This text file can also contain configuration keys, in particular [`"tokenizedTe | tips.json | Dicas definidas | JSON | | lists.json | Listas definidas | JSON | | filters.json | Filtros definidos | JSON | -| dependencies.json | Names of [components to load](components.md) in the project | JSON | +| dependencies.json | Nomes de [componentes a serem carregados](components.md) no projeto | JSON | | styleSheets.css | Folhas de estilo CSS | CSS | | styleSheets_mac.css | Folhas de estilo css para Mac (de um banco de dados binário convertido) | CSS | | styleSheets_windows.css | Folhas de estilo css em Windows (de um banco de dados binário convertido) | CSS | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/compiler.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/compiler.md index fa821b48d4ffaf..c3501b77820ba6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/compiler.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/compiler.md @@ -31,7 +31,7 @@ If errors are detected, the process is stopped and the "Compilation failed" mess ![](../assets/en/Project/compilerWin2.png) -Double-click on each error detected to open the method or class concerned directly in the 4D method editor. The line containing the error is highlighted and the type of error is displayed in the syntax area of the window. +Clique duas vezes em cada erro detectado para abrir o método ou a classe em questão diretamente no Editor de Código 4D. The line containing the error is highlighted and the type of error is displayed in the syntax area of the window. Utilice los comandos **Error anterior** / **Error siguiente** del menú **Método** para navegar de un error a otro. @@ -91,7 +91,7 @@ The "Compiler" tab of the Settings dialog box lets you set parameters related to This area groups the generic options used during the compilation process. -#### Generate symbol file +#### Gerar o arquivo de símbolo Used to generate the error file (see [error file](#symbol-file)) at the time of syntax checking. Used to generate the symbol file (see [symbol file](#symbol-file)). @@ -231,7 +231,7 @@ Estas duas listas contêm quatro colunas: - Tipo da variável. Types are set by compiler directive commands or are determined by the compiler based on the use of the variable. Se o tipo de uma variável não puder ser determinado, a coluna estará vazia. - Número de dimensões se a variável for um array. - Reference to the context in which the compiler established the type of the variable. If the variable is used in several contexts, the context mentioned is the one used by the compiler to determine its type. - - If the variable was found in a database method, the database method name is given, preceded by (M)\*. + - Se a variável foi encontrada em um método de banco de dados, o nome do método de banco de dados é dado, precedido por (M)\*. - If the variable was found in a project method, the method is identified as it has been defined in 4D, preceded by (M). - If the variable was found in a trigger, the table name is given, preceded by (TM). - If the variable was found in a form method, the form name is given, preceded by the table name and (FM). @@ -287,7 +287,7 @@ Si su proyecto no tiene errores generales, el archivo no tendrá una sección *E Um ficheiro de erros pode conter três tipos de mensagens: -- **Errores asociados a una línea específica**: estos errores se muestran en contexto -la línea en la que se encontraron y con una explicación. The compiler reports this type of error when it encounters an expression in which it sees an inconsistency related to data type or syntax. In the compiler window, double–click on each error detected in order to open the method concerned directly in the 4D Method editor, with the line containing the error highlighted. +- **Errores asociados a una línea específica**: estos errores se muestran en contexto -la línea en la que se encontraron y con una explicación. The compiler reports this type of error when it encounters an expression in which it sees an inconsistency related to data type or syntax. Na janela do compilador, clique duas vezes em cada erro detectado para abrir o método em questão diretamente no Editor de Código 4D, com a linha que contém o erro destacado. - **Errores generales**: son errores que imposibilitan la compilación del proyecto. Há dois casos em que o compilador informa um erro geral: - Não foi possível determinar o tipo de dados de uma variável processo. @@ -295,7 +295,7 @@ Um ficheiro de erros pode conter três tipos de mensagens: General errors are so named because they cannot be linked to any specific method. In the first case, the compiler could not perform a specified typing anywhere in the project. In the second, it was unable to decide whether to associate a given name with one object rather than with another. -- **Avisos**: los avisos no son errores. They do not prevent the project from being compiled, but simply point out potential code errors. Na janela do compilador, os avisos aparecem em itálico. Double-click on each warning to open the method concerned directly in the 4D Method editor, with the line containing the warning highlighted. +- **Avisos**: los avisos no son errores. They do not prevent the project from being compiled, but simply point out potential code errors. Na janela do compilador, os avisos aparecem em itálico. Clique duas vezes em cada aviso para abrir o método em questão diretamente no Editor de Código 4D, com a linha que contém o aviso destacado. ### Controlo de execução diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/components.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/components.md index 3b097d7370633a..e82d9f4d1cc49c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/components.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/components.md @@ -42,7 +42,7 @@ Os componentes declarados no arquivo **dependencies.json** podem ser armazenados - em qualquer lugar de sua máquina: o caminho do componente deve ser declarado no arquivo **environment4d.json** - em um repositório GitHub: o caminho do componente pode ser declarado no arquivo **dependencies.json** ou no arquivo **environment4d.json**, ou em ambos os arquivos. -If the same component is installed at different locations, a [priority order](#priority) is applied. +Se o mesmo componente for instalado em locais diferentes, uma [ordem de prioridade](#prioridade) é aplicada. ### dependencies.json e environment4d.json @@ -150,7 +150,7 @@ If a component path declared in the **environment4d.json** file is not found whe #### Caminhos relativos versus caminhos absolutos -Paths are expressed in POSIX syntax as described in [this paragraph](../Concepts/paths#posix-syntax). +Os caminhos são expressos na sintaxe POSIX, conforme descrito em [este parágrafo](../Concepts/paths#posix-syntax). Os caminhos relativos são relativos ao arquivo [`environment4d.json`](#environment4djson). Absolute paths are linked to the user's machine. @@ -158,9 +158,9 @@ Using relative paths is **recommended** in most cases, since they provide flexib Absolute paths should only be used for components that are specific to one machine and one user. -### Components stored on GitHub +### Componentes armazenados no GitHub -4D components available as GitHub releases can be referenced and automatically loaded in your 4D projects. +Componentes 4D disponíveis como lançamentos do GitHub podem ser referenciados e carregados automaticamente nos seus projetos 4D. :::note @@ -224,7 +224,7 @@ Ao criar uma versão no GitHub, você especifica uma **etiqueta** e uma **versã } ``` -- Uma versão também é identificada por uma **versão**. The versioning system used is based on the *Semantic Versioning* concept, which is the most commonly used. Each version number is identified as follows: `majorNumber.minorNumber.pathNumber`. In the same way as for tags, you can indicate the version of the component you wish to use in your project, as in this example: +- Uma versão também é identificada por uma **versão**. O sistema de versionamento usado é baseado no conceito de *Semantic Versioning*, que é o mais usado. Each version number is identified as follows: `majorNumber.minorNumber.pathNumber`. In the same way as for tags, you can indicate the version of the component you wish to use in your project, as in this example: ```json { @@ -237,7 +237,7 @@ Ao criar uma versão no GitHub, você especifica uma **etiqueta** e uma **versã } ``` -The version is used to define which versions can be used. É usada uma [versão semântica padrão] (https://regex101.com/r/Ly7O1x/3/). A range is defined by two semantic versions, a min and a max, with operators '\< | > | >= | <= | ='. O `*` pode ser usado como um espaço reservado para todas as versões. ~ and ^ prefixes define versions starting at a number, and up to respectively the next major and minor version. +A versão é usada para definir quais versões podem ser usadas. É usada uma [versão semântica padrão] (https://regex101.com/r/Ly7O1x/3/). A range is defined by two semantic versions, a min and a max, with operators '\< | > | >= | <= | ='. O `*` pode ser usado como um espaço reservado para todas as versões. ~ and ^ prefixes define versions starting at a number, and up to respectively the next major and minor version. Eis alguns exemplos: @@ -361,7 +361,7 @@ If the component is stored on a [private GitHub repository](#private-repositorie ::: -You can then define the [tag or version](#tags-and-versions) option for the dependency: +Em seguida, você pode definir a opção [tag ou versão](#tags-and-versions) para a dependência: ![dependency-git-tag](../assets/en/Project/dependency-git-tag.png) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/documentation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/documentation.md index 2cad8bb8986d95..d0ad8aa8ad09b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/documentation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/Project/documentation.md @@ -3,11 +3,11 @@ id: documentation title: Documentar um projecto --- -In application projects, you can document your methods as well as your forms, tables, or fields. Creating documentation is particularly appropriate for projects being developed by multiple programmers and is generally good programming practice. Documentation can contain a description of an element as well as any information necessary to understand how the element functions in the application. +Nos projetos de aplicação, você pode documentar seus métodos e suas classes, formulários, tabelas ou campos. Creating documentation is particularly appropriate for projects being developed by multiple programmers and is generally good programming practice. Documentation can contain a description of an element as well as any information necessary to understand how the element functions in the application. Os seguintes elementos do projeto aceitam documentação: -- Methods (database methods, component methods, project methods, form methods, 4D Mobile methods, triggers, and classes) +- Métodos (métodos banco de dados, métodos componentes, métodos projeto, métodos formulário, métodos 4D Mobile e triggers) - Classes - Formulários - Tabela diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/$format.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/$format.md index 79eaae3d7db551..4397613e44d076 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/$format.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/$format.md @@ -11,10 +11,10 @@ This parameter allows you to define the format to use to return data of your dat São suportados os seguintes formatos: -| Formato | Descrição | -| -------- | ------------------------------------------------------------------------------------------------- | -| `json` | Formato padrão do servidor 4D REST (usado por padrão) | -| `looker` | JSON format compliant with the [Looker Studio](https://lookerstudio.google.com/). | +| Formato | Descrição | +| -------- | ------------------------------------------------------------------------------------------------ | +| `json` | Formato padrão do servidor 4D REST (usado por padrão) | +| `looker` | Formato JSON compatível com o [Looker Studio](https://lookerstudio.google.com/). | ## Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/ClassFunctions.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/ClassFunctions.md index c55b2216bb36fe..e1959a673aca92 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/ClassFunctions.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/ClassFunctions.md @@ -628,7 +628,7 @@ $ageAverage:=$students.getAgeAverage() ### Returning a document -You want to propose a link to download the user manual for a selected product with several formats available. You write a `getUserManual()` function of the Products dataclass. You return an object of the [`OutgoingMessage` class](../API/OutgoingMessageClass.md). +You want to propose a link to download the user manual for a selected product with several formats available. You write a `getUserManual()` function of the Products dataclass. Você retorna um objeto da [classe `OutgoingMessage`](../API/OutgoingMessageClass.md). ```4d // Product dataclass diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/REST_requests.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/REST_requests.md index d741b9ebc2e9a9..dc720cdfc84e33 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/REST_requests.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/REST_requests.md @@ -22,7 +22,7 @@ Como com todas as URIs, o primeiro parâmetro é definido por um “?” e todos Os parâmetros permitem que manipule dados em dataclasses em seu projeto 4D. Además de recuperar datos mediante los métodos HTTP `GET`, también se pueden añadir, actualizar y eliminar entidades de una clase de datos utilizando los métodos HTTP `POST`. -If you want the data to be returned in an array instead of JSON, use the [`$asArray`]($asArray.md) parameter. +Se quiser que os dados sejam retornados em um array em vez de JSON, use o parâmetro [`$asArray`]($asArray.md). ## Estado e resposta REST diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/authUsers.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/authUsers.md index 556a6e1c80affb..e0e48c615af5eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/authUsers.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/authUsers.md @@ -27,7 +27,7 @@ A sequência de login do usuário é a seguinte: 1. At the first REST call (for a Qodly page call for example), a "guest" web user session is created. It has no privileges, no rights to execute requests other than [descriptive REST requests](#descriptive-rest-requests), no license consumption.\ Descriptive REST requests are always processed by the server, even if no web user session using a license is opened. In this case, they are processed through "guest" sessions. -2. You call your [`authentify()` function](#authentify) (created beforehand), in which you check the user credentials and call [`Session.setPrivileges()`](../API/SessionClass.md#setprivileges) with appropriate privileges. `authentify()` must be an exposed [datastore class function](../ORDA/ordaClasses.md#datastore-class). +2. You call your [`authentify()` function](#authentify) (created beforehand), in which you check the user credentials and call [`Session.setPrivileges()`](../API/SessionClass.md#setprivileges) with appropriate privileges. `authentify()` deve ser uma [função de datastore class](../ORDA/ordaClasses.md#datastore-class) exposta. 3. La petición `/rest/$catalog/authentify` se envía al servidor junto con las credenciales del usuario. This step only requires a basic login form that do not access data; it can be a [Qodly page](../WebServer/qodly-studio.md) (called via the `/rest/$getWebForm` request). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/manData.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/manData.md index 2f13834b8cf35d..18526e31a61d79 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/manData.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/REST/manData.md @@ -7,7 +7,7 @@ Todos [los atributos, dataclasses expuestos](configuration.md#exposing-tables-an ## Pesquisas de dados -To query data directly, you can do so using the [`$filter`]($filter.md) function. Por exemplo, para encontrar a pessoa chamada "smith" poderia escrever: +Para consultar os dados diretamente, você pode fazer isso usando a função [`$filter`]($filter.md). Por exemplo, para encontrar a pessoa chamada "smith" poderia escrever: `http://127.0.0.1:8081/rest/Person/?$filter="lastName=Smith"` @@ -15,11 +15,11 @@ To query data directly, you can do so using the [`$filter`]($filter.md) function Com o REST API, pode realizar todas as manipulações de dados que quiser em 4D. -To add and modify entities, you can call [`$method=update`]($method.md#methodupdate). Sintaxe +Para adicionar e modificar entidades, você pode chamar [`$method=update`]($method.md#methodupdate). Sintaxe Besides retrieving a single entity in a dataclass using [\{dataClass\}({key})](dataClass.md#dataclasskey), you can also write a [class function](ClassFunctions.md#function-calls) that returns an entity selection (or a collection). -Before returning a selection, you can also sort it by using [`$orderby`]($orderby.md) one one or more attributes (even relation attributes). +Antes de devolver a coleção, também pode ordená-la utilizando [`$orderby`]($orderby.md) um ou vários atributos (mesmo os atributos de relação). ## Navegando dados @@ -35,7 +35,7 @@ To access the entity set, you must use `$entityset/\{entitySetID\}`, for example `/rest/People/$entityset/0AF4679A5C394746BFEB68D2162A19FF` -By default, an entity set is stored for two hours; however, you can change the timeout by passing a new value to [`$timeout`]($timeout.md). O timeout é continuamente resetado ao valor definido (seja o valor padrão ou um definido por você) a cada vez que for usado. +Por padrão, um conjunto de entidades é armazenado por duas horas; no entanto, você pode alterar o tempo limite passando um novo valor para [`$timeout`]($timeout.md). O timeout é continuamente resetado ao valor definido (seja o valor padrão ou um definido por você) a cada vez que for usado. Se quiser remover um conjunto de entidades do cache de 4D Server, você pode usar [`$method=release`]($method.md#methodrelease). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ServerWindow/application-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ServerWindow/application-server.md index 0efa303d84851c..9c73c94a778a5c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ServerWindow/application-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ServerWindow/application-server.md @@ -33,7 +33,7 @@ Si presiona el botón **Rechazar nuevas conexiones**: - O nome do projeto já não aparece na caixa de diálogo da ligação remota. - Os clientes de ambiente de trabalho que já estão ligados não são desligados e podem continuar a trabalhar normalmente. -> You can perform the same action with the [`REJECT NEW REMOTE CONNECTIONS`](https://doc.4d.com/4dv19/help/command/en/page1635.html) command. +> Você pode executar a mesma ação com o comando [`REJECT NEW REMOTE CONNECTIONS`](https://doc.4d.com/4dv19/help/command/en/page1635.html). - Si presiona el botón **Aceptar nuevas conexiones**, el servidor de aplicaciones vuelve a su estado por defecto. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ServerWindow/users.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ServerWindow/users.md index c2b36ad2446a64..8c24faae495f1b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ServerWindow/users.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ServerWindow/users.md @@ -66,4 +66,4 @@ This button can be used to directly show the processes of the user(s) selected o Este botão pode ser utilizado para forçar a desconexão do(s) usuário(s) selecionado(s). When you click on this button, a warning dialog box appears so that you can confirm or cancel this operation (hold down **Alt** key while clicking on the **Drop user** button to disconnect the selected user(s) directly without displaying the confirmation dialog box). -> You can perfom the same action for remote users with the [`DROP REMOTE USER`](https://doc.4d.com/4dv19/help/command/en/page1633.html) command. +> É possível executar a mesma ação para usuários remotos com o comando [`DROP REMOTE USER`](https://doc.4d.com/4dv19/help/command/en/page1633.html). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/advanced-programming.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/advanced-programming.md index 46a3bf2d94cce7..b0cbf5fe77ecf3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/advanced-programming.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/advanced-programming.md @@ -12,7 +12,7 @@ Dado que 4D View Pro es alimentado por la [solución de hoja de cálculo SpreadJ Since 4D View Pro is a web area, you can select a webpage element and modify its behavior using Javascript. El siguiente ejemplo oculta la [cinta](./configuring.md#ribbon) spreadJS: ```4d -//Button's object method +//Método objeto do botão var $js; $answer : Text diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-add-formula-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-add-formula-name.md index d6249c5a7b505a..6d655dc2a3958d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-add-formula-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-add-formula-name.md @@ -24,7 +24,7 @@ O comando `VP ADD FORMULA NAME` retorna um novo objeto de intervalo que faz referência a uma célula específica. -> Este comando destina-se a intervalos de uma única célula. To create a range object for multiple cells, use the [VP Cells](vp-cells.md) command. +> Este comando destina-se a intervalos de uma única célula. Para criar um objeto de intervalo para várias células, use o comando [VP Cells](vp-cells.md). Em *vpAreaName*, passe o nome da área 4D View Pro. Se passar um nome que não existe, é devolvido um erro. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-get-workbook-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-get-workbook-options.md index 724c6dd7c26262..14a96d0fa6aa5d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-get-workbook-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-get-workbook-options.md @@ -25,7 +25,7 @@ Em *vpAreaName*, passe o nome da área 4D View Pro. O objeto devolvido contém todas as opções de workbook (padrão e modificadas) no workbook. -The list of workbook options is referenced in [`VP SET WORKBOOK OPTIONS`'s description](vp-set-workbook-options.md). +A lista de opções de pasta de trabalho é referenciada na descrição de [`VP SET WORKBOOK OPTIONS`](vp-set-workbook-options.md). #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-border.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-border.md index 807c4e3036d386..4dd35273bf5673 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-border.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-border.md @@ -56,7 +56,7 @@ VP SET BORDER(VP Cells("ViewProArea";1;1;3;3);$border;$option) #### Exemplo 2 -This code demonstrates the difference between `VP SET BORDER` and setting borders with the [`VP SET CELL STYLE`](vp-set-cell-style.md) command: +Esse código demonstra a diferença entre `VP SET BORDER` e a definição de bordas com o comando [`VP SET CELL STYLE`](vp-set-cell-style.md): ```4d // Set borders using VP SET BORDER diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-formula.md index 0fc67ccd6fea54..dad6e91eb3ec0f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-formula.md @@ -24,9 +24,9 @@ Em *rangeObj*, passe um intervalo de células (criado, por exemplo, com [`VP Cel The *formula* parameter specifies a formula or 4D method name to be assigned to the *rangeObj*. > If the *formula* is a string, use the period `.` as numerical separator and the comma `,` as parameter separator. -> If a 4D method is used, it must be allowed with the [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md) command. +> Se um método 4D for usado, ele deverá ser permitido com o comando [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md). -The optional *formatPattern* defines a [pattern](../configuring.md#cell-format) for the *formula*. +O *formatPattern* opcional define um [padrão](../configuring.md#cell-format) para a *fórmula*. You remove the formula in *rangeObj* by replacing it with an empty string (""). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-formulas.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-formulas.md index de0559a29e96fc..56b36e603b5946 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-formulas.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-formulas.md @@ -26,7 +26,7 @@ O parâmetro *formulasCol* é uma coleção bidimensional: - Cada subcoleção define os valores das células para a linha. Values must be text elements containing the formulas to assign to the cells. > If the formula is a string, use the period `.` as numerical separator and the comma `,` as parameter separator. -> If a 4D method is used, it must be allowed with the [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md) command. +> Se um método 4D for usado, ele deverá ser permitido com o comando [`VP SET ALLOWED METHODS`](vp-set-allowed-methods.md). You remove the formulas in *rangeObj* by replacing them with an empty string (""). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-print-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-print-info.md index b58864f38ce14b..ee8a2c6517733e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-print-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-print-info.md @@ -21,7 +21,7 @@ The `VP SET PRINT INFO` command Passe o nome da área 4D View Pro a ser impressa em *vpAreaName*. Se passar um nome que não existe, é devolvido um erro. -You can pass an object containing definitions for various printing attributes in the *printInfo* parameter. To view the full list of the available attributes, see [Print Attributes](../configuring.md#print-attributes). +You can pass an object containing definitions for various printing attributes in the *printInfo* parameter. Para ver a lista completa dos atributos disponíveis, consulte [Atributos de impressão](../configuring.md#print-attributes). In the optional *sheet* parameter, you can designate a specific spreadsheet to print (counting begins at 0). Se omitido, a planilha atual será utilizada por padrão. Você pode selecionar explicitamente a planilha atual com a seguinte constante: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-text-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-text-value.md index 842d3b7903d14c..3a5c11b7c5901d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-text-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-text-value.md @@ -23,7 +23,7 @@ Em *rangeObj*, passe um intervalo de células (criado, por exemplo, com [`VP Cel The *textValue* parameter specifies a text value to be assigned to the *rangeObj*. -The optional *formatPattern* defines a [pattern](../configuring.md#cell-format) for the *textValue* parameter. +O *formatPattern* opcional define um [padrão](../configuring.md#cell-format) para o parâmetro *textValue*. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-time-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-time-value.md index 0ebc2c92de83f0..ddfd4684f97c35 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-time-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-time-value.md @@ -23,7 +23,7 @@ Em *rangeObj*, passe um intervalo de células (criado, por exemplo, com [`VP Cel The *timeValue* parameter specifies a time expressed in seconds to be assigned to the *rangeObj*. -The optional *formatPattern* defines a [pattern](../configuring.md#cell-format) for the *timeValue* parameter. +O *formatPattern* opcional define um [padrão](../configuring.md#cell-format) para o parâmetro *timeValue*. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-values.md index 63b25f978549de..b50a8c78fac060 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-values.md @@ -18,7 +18,7 @@ title: VP SET VALUES The `VP SET VALUES` command assigns a collection of values starting at the specified cell range. -In *rangeObj*, pass a range for the cell (created with [`VP Cell`](vp-cell.md)) whose value you want to specify. The cell defined in the *rangeObj* is used to determine the starting point. +Em *rangeObj*, passe um intervalo para a célula (criada com [`VP Cell`](vp-cell.md)) cujo valor você deseja especificar. The cell defined in the *rangeObj* is used to determine the starting point. > - If *rangeObj* is not a cell range, only the first cell of the range is used. > - If *rangeObj* includes multiple ranges, only the first cell of the first range is used. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-workbook-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-workbook-options.md index 1c6f7226b99b3b..57fba92e78379e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-workbook-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/commands/vp-set-workbook-options.md @@ -52,7 +52,7 @@ A tabela seguinte lista as opções de libro disponíveis: | calcOnDemand | boolean | As fórmulas só são calculadas quando são solicitadas. | | columnResizeMode | number | Modo de redimensionamento de colunas. Available values:
    ConstantValueDescription
    vk resize mode normal 0 Use normal resize mode (i.e remaining columns are affected)
    vk resize mode split 1 Use split mode (i.e remaining columns are not affected)
    | | copyPasteHeaderOptions | number | Cabeçalhos a incluir quando os dados são copiados ou colados. Available values:
    ConstantValueDescription
    vk copy paste header options all headers3 Includes selected headers when data is copied; overwrites selected headers when data is pasted.
    vk copy paste header options column headers 2 Includes selected column headers when data is copied; overwrites selected column headers when data is pasted.
    vk copy paste header options no headers0 Column and row headers are not included when data is copied; does not overwrite selected column or row headers when data is pasted.
    vk copy paste header options row headers1 Includes selected row headers when data is copied; overwrites selected row headers when data is pasted.
    | -| customList | collection | The list for users to customize drag fill, prioritize matching this list in each fill. Cada item da coleção é um conjunto de cadeias de caracteres. See on [SpreadJS docs](https://developer.mescius.com/spreadjs/docs/features/cells/AutoFillData/AutoFillLists). | +| customList | collection | The list for users to customize drag fill, prioritize matching this list in each fill. Cada item da coleção é um conjunto de cadeias de caracteres. Veja na [documentação SpreadJS](https://developer.mescius.com/spreadjs/docs/features/cells/AutoFillData/AutoFillLists). | | cutCopyIndicatorBorderColor | string | Border color for the indicator displayed when the user cuts or copies the selection. | | cutCopyIndicatorVisible | boolean | Apresenta um indicador quando se copia ou corta o item selecionado. | | defaultDragFillType | number | O tipo de preenchimento de arrastamento padrão. Valores disponíveis:
    ConstanteValorDescrição
    vk auto fill type auto5Preenche automaticamente as células.
    vk auto fill type clear values 4 Clears cell values.
    vk auto fill type copycells 0 Fills cells with all data objects, including values, formatting, and formulas.
    vk auto fill type fill formatting only 2 Fills cells only with formatting.
    vk auto fill type fill series 1 Fills cells with series.
    vk auto fill type fill without formatting 3 Preenche as células com valores e sem formatação.
    | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/configuring.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/configuring.md index d066f3b8a6bfd1..660a7987f2870c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/configuring.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/configuring.md @@ -143,7 +143,7 @@ Number formats apply to all number types (e.g., positive, negative, and zeros). | , | Mostra o separador de milhares num número. Thousands are separated by commas if the format contains a comma enclosed by number signs "#" or by zeros. Uma vírgula após um marcador de posição de dígito escala o número por 1.000. | #,0 mostrará 12200000 como 12,200,000 | | \_ | Salta a largura do carácter seguinte. | Usually used in combination with parentheses to add left and right indents, \_( and _) respectively. | | @ | Formatador de texto. Aplica o formato a todo o texto da célula | "\[Red]@" aplica a cor de letra vermelha aos valores de texto. | -| \* | Repete o carácter seguinte para preencher a largura da coluna. | 0\*- will include enough dashes after a number to fill the cell, whereas \*0 before any format will include leading zeros. | +| \* | Repete o carácter seguinte para preencher a largura da coluna. | 0\*- incluirá traços suficientes após um número para preencher a célula, enquanto \*0 antes de qualquer formato incluirá zeros à esquerda. | | " " | Exibe o texto dentro das aspas sem interpretá-lo. | "8%" será exibido como: 8% | | % | Mostra os números como uma percentagem de 100. | 8% será exibido como 0,08 | | \# | Espaço reservado para dígitos que não apresenta zeros extra. If a number has more digits to the right of the decimal than there are placeholders, the number is rounded up. | #.# mostrará 1.54 como 1.5 | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/formulas.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/formulas.md index 3462b317fe455c..7ee6208a0fdae9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/formulas.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/ViewPro/formulas.md @@ -135,7 +135,7 @@ O 4D View Pro permite que você defina e chame **funções personalizadas 4D**, As funções personalizadas 4D podem receber [parâmetros](#parameters) da área 4D View Pro e retornar valores. -You declare all your functions using the [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions) command. Exemplos: +Você declara todas as suas funções usando o comando [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions). Exemplos: ```4d $o:=New object @@ -221,7 +221,7 @@ If you do not declare parameters, values can be sequentially passed to methods ( Os parâmetros Date e Object são tratados da seguinte maneira: -- Dates in *jstype* will be passed as [object](Concepts/dt_object.md) in 4D code with two properties: +- As datas em *jstype* serão passadas como [objeto](Concepts/dt_object.md) no código 4D com duas propriedades: | Propriedade | Tipo | Descrição | | ----------- | ---- | ----------------- | @@ -239,12 +239,12 @@ Os parâmetros Date e Object são tratados da seguinte maneira: 4D project methods can also return values in the 4D View Pro cell formula via $0. São suportados os seguintes tipos de dados para os parâmetros devolvidos: - [text](Aceitar/dt_string.md) (convertido em string em 4D View Pro) -- [real](Concepts/dt_number.md)/[longint](Concepts/dt_number.md) (converted to number in 4D View Pro) +- [real](Concepts/dt_number.md)/[longint](Concepts/dt_number.md) (convertido em número no 4D View Pro) - [date](Concepts/dt_date.md) (converted to JS Date type in 4D View Pro - hour, minute, sec = 0) - [time](Concepts/dt_time.md) (converted to JS Date type in 4D View Pro - date in base date, i.e. 12/30/1899) - [boolean](Concepts/dt_boolean.md) (convertido em bool no 4D View Pro) - [picture](Concepts/dt_picture.md) (jpg,png,gif,bmp,svg other types converted into png) creates a URI (data:image/png;base64,xxxx) and then used as the background in 4D View Pro in the cell where the formula is executed -- [object](Concepts/dt_object.md) with the following two properties (allowing passing a date and time): +- [object](Concepts/dt_object.md) com as duas propriedades a seguir (permitindo a passagem de uma data e hora): | Propriedade | Tipo | Descrição | | ----------- | ---- | ----------------- | @@ -276,7 +276,7 @@ $o.BIRTH_INFORMATION.summary:="Returns a formatted string from given information ## Compatibidade -Alternate solutions are available to declare fields or methods as functions in your 4D View Pro areas. These solutions are maintained for compatibility reasons and can be used in specific cases. However, using the [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions.md) command is recommended. +Alternate solutions are available to declare fields or methods as functions in your 4D View Pro areas. These solutions are maintained for compatibility reasons and can be used in specific cases. No entanto, é recomendável usar o comando [`VP SET CUSTOM FUNCTIONS`](commands/vp-set-custom-functions.md). ### Referência a campos utilizando a estrutura virtual diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/authentication.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/authentication.md index 9ff0cf6b5b42c4..7d05291ea0305e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/authentication.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/authentication.md @@ -28,7 +28,7 @@ Basically in this mode, it's up to the developer to define how to authenticate u Este modo de autenticação é o mais flexível porque permite que você: - ou delegar a autenticação do usuário a um aplicativo de terceiros (por exemplo, uma rede social, SSO); -- o bien, ofrecer una interfaz al usuario (por ejemplo, un formulario web) para que pueda crear su cuenta en su base de datos clientes; luego, puede autenticar a los usuarios con cualquier algoritmo personalizado (ver [este ejemplo](sessions.md#example) del O importante é que você nunca armazene a senha de forma não protegida, usando esse código: +- o bien, ofrecer una interfaz al usuario (por ejemplo, un formulario web) para que pueda crear su cuenta en su base de datos clientes; luego, puede autenticar a los usuarios con cualquier algoritmo personalizado (ver [este ejemplo](sessions.md#example) del O importante é que você nunca armazene a senha de forma não protegida, usando esse código: O importante é que você nunca armazene a senha de forma não protegida, usando esse código: ```4d //... criar conta de usuário @@ -52,7 +52,7 @@ Os valores introduzidos são então avaliados: - Si la opción **Incluir contraseñas de 4D** está marcada, las credenciales de los usuarios se evaluarán primero contra la [tabla interna de usuarios 4D](Users/overview.md). - Se o nome de usuário enviado pelo navegador existir na tabela de usuários 4D e a senha estiver correta, a conexão será aceita. Se a palavra-passe estiver incorreta, a ligação é recusada. - - If the user name does not exist in the table of 4D users, the [`On Web Authentication`](#on-web-authentication) database method is called. Si el método base `On Web Authentication` no existe, se rechazan las conexiones. + - Se o nome de usuário não existir na tabela de usuários 4D, o método de banco de dados [`On Web Authentication`](#on-web-authentication) será chamado. Si el método base `On Web Authentication` no existe, se rechazan las conexiones. - If the **Include 4D passwords** option is not checked, user credentials are sent to the [`On Web Authentication`](#on-web-authentication) database method along with the other connection parameters (IP address and port, URL...) para que você possa processá-los. Si el método base `On Web Authentication` no existe, se rechazan las conexiones. > Com o servidor da Web 4D Client, lembre-se de que todos os sites publicados pelas máquinas 4D Client compartilharão a mesma tabela de usuários. Validação de usuários/senhas é realizada pela aplicação 4D Server. @@ -61,7 +61,7 @@ Os valores introduzidos são então avaliados: This mode provides a greater level of security since the authentication information is processed by a one-way process called hashing which makes their contents impossible to decipher. -Como no modo BASIC, os usuários devem digitar seu nome e senha ao se conectarem. The [`On Web Authentication`](#on-web-authentication) database method is then called. When the DIGEST mode is activated, the $password parameter (password) is always returned empty. In fact, when using this mode, this information does not pass by the network as clear text (unencrypted). Por lo tanto, en este caso es imprescindible evaluar las solicitudes de conexión mediante el comando `WEB Validate digest`. +Como no modo BASIC, os usuários devem digitar seu nome e senha ao se conectarem. O método banco de dados [`On Web Authentication`](#on-web-authentication) é então chamado. When the DIGEST mode is activated, the $password parameter (password) is always returned empty. In fact, when using this mode, this information does not pass by the network as clear text (unencrypted). Por lo tanto, en este caso es imprescindible evaluar las solicitudes de conexión mediante el comando `WEB Validate digest`. > Você deve reiniciar o servidor Web para que as alterações feitas nesses parâmetros sejam levadas em conta. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/qodly-studio.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/qodly-studio.md index 31dacd15957066..744398f81f749b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/qodly-studio.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/qodly-studio.md @@ -128,15 +128,15 @@ There is no direct compatibility between apps implemented with 4D and apps imple ### Comparação de funcionalidades -| | Qodly Studio in 4D | Qodly Studio in Qodly Cloud platform | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| Visualizar e editar tabelas (classes de dados), atributos e relações | Editor de estrutura 4D(1) | Qodly Studio Model Editor | -| Páginas Qodly | Editor de páginas Qodly Studio | Editor de páginas Qodly Studio | -| Formulários para desktop | 4D IDE | *não suportado* | -| Linguagem de programação | Linguagem 4D com ORDA | [QodlyScript](https://developer.qodly.com/docs/category/qodlyscript) featuring ORDA | -| IDE de codificação | 4D IDE code editor *or* VS Code with [4D-Analyzer extension](https://github.com/4d/4D-Analyzer-VSCode)
    *4D Server only*: Qodly Studio code editor (see (2)) | Editor de código Qodly Studio | -| Depurador | 4D IDE debugger
    *4D Server only*: Qodly Studio debugger (see [this paragraph](#using-qodly-debugger-on-4d-server)) | Depurador Qodly Studio | -| REST/Web roles and privileges | roles.json direct edit/Qodly Studio roles and privileges editor | Qodly Studio role and privileges editor | +| | Qodly Studio no 4D | Qodly Studio in Qodly Cloud platform | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| Visualizar e editar tabelas (classes de dados), atributos e relações | Editor de estrutura 4D(1) | Qodly Studio Model Editor | +| Páginas Qodly | Editor de páginas Qodly Studio | Editor de páginas Qodly Studio | +| Formulários para desktop | 4D IDE | *não suportado* | +| Linguagem de programação | Linguagem 4D com ORDA | [QodlyScript](https://developer.qodly.com/docs/category/qodlyscript) apresentando ORDA | +| IDE de codificação | 4D IDE code editor *or* VS Code with [4D-Analyzer extension](https://github.com/4d/4D-Analyzer-VSCode)
    *4D Server only*: Qodly Studio code editor (see (2)) | Editor de código Qodly Studio | +| Depurador | 4D IDE debugger
    *4D Server only*: Qodly Studio debugger (see [this paragraph](#using-qodly-debugger-on-4d-server)) | Depurador Qodly Studio | +| Funções e privilégios REST/Web | roles.json direct edit/Qodly Studio roles and privileges editor | Qodly Studio role and privileges editor | (1) If you click on the **Model** button in Qodly Studio, nothing happens.
    (2) In 4D Server, opening 4D code with the Qodly Studio code editor is supported **for testing and debugging purposes** (see [this paragraph](#development-and-deployment)). (1) The **Model** item is disabled in Qodly Studio.
    @@ -147,9 +147,9 @@ There is no direct compatibility between apps implemented with 4D and apps imple The following commands and classes are dedicated to the server-side management of Qodly pages: - Comando [`Web Form`](../API/WebFormClass.md#web-form): retorna a página Qodly como um objeto. -- [`Web Event`](../API/WebFormClass.md#web-event) command: returns events triggered within Qodly page components. +- comando [`Web Event`](../API/WebFormClass.md#web-event): retorna eventos acionados nos componentes da página Qodly. - [`WebForm`](../API/WebFormClass.md) class: functions and properties to manage the rendered Qodly page. -- [`WebFormItem`](../API/WebFormItemClass.md) class: functions and properties to manage Qodly page components. +- Classe [`WebFormItem`](../API/WebFormItemClass.md): funções e propriedades para gerenciar componentes de página Qodly. ### Uso de métodos projeto @@ -163,7 +163,7 @@ Recomendamos o uso de funções classe em vez de métodos projeto. Apenas as fun You can develop with Qodly Studio while your computer is not connected to the internet. Nesse caso, entretanto, os seguintes recursos não estão disponíveis: - [Templates](https://developer.qodly.com/docs/studio/pageLoaders/templates): the Template library is empty -- UI tips: they are not displayed when you click on ![alt-text](../assets/en/WebServer/tips.png) icons. +- Dicas da UI: elas não são exibidas quando você clica ![alt-text](../assets/en/WebServer/tips.png). ## Implantação @@ -190,7 +190,7 @@ Para ativar a renderização das páginas Qodly, as seguintes opções devem ser ### Escopo dos formulários Qodly -Ao renderizar formulários Qodly no Qodly Studio, o renderizador se conectará ao servidor web 4D por HTTP ou HTTPS, dependendo das configurações, seguindo o mesmo padrão de conexão HTTP/HTTPS do servidor web [4D WebAdmin](../Admin/webAdmin.md#accept-http-connections-on-localhost). See also [this paragraph](#about-license_usage) about URL schemes and license usage. +Ao renderizar formulários Qodly no Qodly Studio, o renderizador se conectará ao servidor web 4D por HTTP ou HTTPS, dependendo das configurações, seguindo o mesmo padrão de conexão HTTP/HTTPS do servidor web [4D WebAdmin](../Admin/webAdmin.md#accept-http-connections-on-localhost). Consulte também [este parágrafo](#about-license_usage) sobre esquemas de URL e uso de licenças. Keep in mind that Qodly Studio runs through the 4D WebAdmin web server. When you use Qodly Studio as a developer, even when you preview a Qodly Page in the studio, you're using the 4D WebAdmin web server. This allows you to see dataclasses, functions and attributes that are not exposed as REST resources for example (they are greyed out). @@ -228,7 +228,7 @@ Note that in this case, the Qodly Studio debugger will display all the code exec To attach the Qodly Studio debugger to your running 4D Server application: -1. [Open Qodly Studio](#opening-qodly-studio) from 4D Server. +1. [Abrir Qodly Studio](#opening-qodly-studio) do servidor 4D. :::note @@ -251,7 +251,7 @@ To detach the Qodly Studio debugger from your running 4D Server application: ## Force login -With Qodly Studio for 4D, the ["force login" mode](../REST/authUsers.md#force-login-mode) allows you to control the number of opened web sessions that require 4D Client licenses. You can also [logout](#logout) the user at any moment to decrement the number of retained licenses. +With Qodly Studio for 4D, the ["force login" mode](../REST/authUsers.md#force-login-mode) allows you to control the number of opened web sessions that require 4D Client licenses. Você também pode fazer [desconectar](#logout) o usuário a qualquer momento para diminuir o número de licenças retidas. ### Configuração diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/sessions.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/sessions.md index 83f3804dd20e16..6306de16f75843 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/sessions.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/sessions.md @@ -8,7 +8,7 @@ O servidor web 4D oferece recursos integrados para gerenciar **sessões web**. C As sessões Web permitem: - manipular várias solicitações simultaneamente do mesmo cliente web através de um número ilimitado de processos preventivos (sessões web são **escaláveis**), -- manage session through a `Session` object and the [Session API](API/SessionClass.md), +- gerenciar a sessão por um objeto `Session` e da [API de session](API/SessionClass.md), - store and share data between processes of a web client using the [.storage](../API/SessionClass.md#storage) of the session, - associate privileges to the user running the session. @@ -42,7 +42,7 @@ Cuando [se habilitan las sesiones](#enabling-sessions), se implementan mecanismo :::info -The cookie name can be get using the [`.sessionCookieName`](API/WebServerClass.md#sessioncookiename) property. +O nome do cookie pode ser obtido usando a propriedade [`.sessionCookieName`](API/WebServerClass.md#sessioncookiename). ::: @@ -86,7 +86,7 @@ The lifespan of an inactive cookie is 60 minutes by default, which means that th This timeout can be set using the [`.idleTimeout`](API/SessionClass.md#idletimeout) property of the `Session` object (the timeout cannot be less than 60 minutes) or the *connectionInfo* parameter of the [`Open datastore`](../commands/open-datastore.md) command. -When a web session is closed, if the [`Session`](commands/session.md) command is called afterwards: +Quando uma sessão Web é fechada, se o comando [`Session`](commands/session.md) for chamado posteriormente: - el objeto `Session` no contiene privilegios (es una sesión de invitado) - a propriedade [`storage`](API/SessionClass.md#storage) está vazia diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/webServerConfig.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/webServerConfig.md index 34653cc0610f8a..e801ed789dd211 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/webServerConfig.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WebServer/webServerConfig.md @@ -11,7 +11,7 @@ Há diferentes maneiras de configurar as definições do servidor web 4D, depend | Localização do parâmetro | Âmbito | Servidor Web a ser usado | | --------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | -------------------------------------------------------------- | -| [webServer object](webServerObject.md) | Temporário (sessão atual) | Qualquer servidor Web, incluindo servidores Web de componentes | +| [objeto webServer](webServerObject.md) | Temporário (sessão atual) | Qualquer servidor Web, incluindo servidores Web de componentes | | `WEB SET OPTION` o comando `WEB XXX` | Temporário (sessão atual) | Servidor principal | | [Caixa de diálogo **Configurações**](../settings/web.md) (páginas **Web**) | Permanente (todas as sessões, armazenadas no disco) | Servidor principal | @@ -64,7 +64,7 @@ Define o conjunto de caracteres a serem usados pelo servidor web 4D. O valor pad | --------------------- | -------------------------------------------------- | ----------- | | objeto webServer | [`cipherSuite`](API/WebServerClass.md#ciphersuite) | Text | -Lista de criptogramas usada para o protocolo seguro; define a prioridade dos algoritmos de cifra implementados pelo servidor da Web. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). See the [ciphers page](https://www.openssl.org/docs/manmaster/man1/ciphers.html) on the OpenSSL site. +Lista de criptogramas usada para o protocolo seguro; define a prioridade dos algoritmos de cifra implementados pelo servidor da Web. Pode ser uma sequência de frases separadas por dois pontos (por exemplo, "ECDHE-RSA-AES128-..."). Veja a [página ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) no site OpenSSL. > The default cipher list used by 4D can be modified for the session using the `SET DATABASE PARAMETER` command, in which case the modification applies to the entire 4D application, including the web server, SQL server, client/server connections, as well as the HTTP client and all the 4D commands that make use of the secure protocol. @@ -131,11 +131,11 @@ Status of the HTTP request log file of the web server ([*HTTPDebugLog_nn.txt*](. ## Defaut Home page -| Pode ser definido com | Nome | Comentários | -| ---------------------------------- | ---------------------------------------------------------------------------- | ----------------------------------------- | -| objeto webServer | [`defaultHomepage`](API/WebServerClass.md#defaulthomepage) | Text | -| `WEB SET HOME PAGE` | | Pode ser diferente para cada processo web | -| Caixa de diálogos de configurações | [Configuration page/Default Home Page](../settings/web.md#default-home-page) | | +| Pode ser definido com | Nome | Comentários | +| ---------------------------------- | --------------------------------------------------------------------------------- | ----------------------------------------- | +| objeto webServer | [`defaultHomepage`](API/WebServerClass.md#defaulthomepage) | Text | +| `WEB SET HOME PAGE` | | Pode ser diferente para cada processo web | +| Caixa de diálogos de configurações | [Página Configuração/Página inicial padrão](../settings/web.md#default-home-page) | | Designar uma página inicial padrão para o servidor Web. Esta página pode ser estática ou [semi-dynamic]. @@ -351,11 +351,11 @@ Estado do gerenciamento de sessão antigo para o servidor Web 4D (obsoleto). ## Log Recording -| Pode ser definido com | Nome | Comentários | -| ---------------------------------- | ------------------------------------------------------------------- | ----------- | -| objeto webServer | [`logRecording`](API/WebServerClass.md#logrecording) | | -| `WEB SET OPTION` | `Web log recording` | | -| Caixa de diálogos de configurações | [Log (type) page](../settings/web.md#log-format) | Menu pop-up | +| Pode ser definido com | Nome | Comentários | +| ---------------------------------- | --------------------------------------------------------------------- | ----------- | +| objeto webServer | [`logRecording`](API/WebServerClass.md#logrecording) | | +| `WEB SET OPTION` | `Web log recording` | | +| Caixa de diálogos de configurações | [Página Log (type)](../settings/web.md#log-format) | Menu pop-up | Inicia o detiene el registro de las peticiones recibidas por el servidor web 4D en el archivo *logweb.txt* y define su formato. Por padrão, os pedidos não são registados (0/No Log File). Cuando se activa, el archivo *logweb.txt* se coloca automáticamente en la carpeta Logs. @@ -506,7 +506,7 @@ Neste caso, os robots não estão autorizados a aceder a todo o sítio. | ---------------------------------- | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | | objeto webServer | [`rootFolder`](API/WebServerClass.md#rootfolder) | Text property but can be a [`4D.Folder`](API/FolderClass.md) object when used with the *settings* parameter of the `start()` function | | `WEB SET ROOT FOLDER` | | | -| Caixa de diálogos de configurações | [Configuration page/Default HTML Root](../settings/web.md#default-html-root) | | +| Caixa de diálogos de configurações | [Página Configuração/raiz HTML padrão](../settings/web.md#default-html-root) | | Caminho da pasta raiz do servidor web, ou seja, a pasta na qual 4D procurará as páginas HTML estáticas e semidinâmicas, imagens, etc., para enviar aos navegadores. O caminho é formatado no caminho completo POSIX. O servidor da Web precisará ser reiniciado para que a nova pasta raiz seja levada em consideração. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WritePro/writeprointerface.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WritePro/writeprointerface.md index b12e04c7105372..bbf33e016b85af 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WritePro/writeprointerface.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/WritePro/writeprointerface.md @@ -72,7 +72,7 @@ O ficheiro modelo permite-lhe definir o seguinte: - os atributos dataclass que podem ser usados como colunas da tabela, - the formulas available as contextual menus inside break rows, carry-over row, placeholder row or extra rows. -The template file must be stored in a "[`Resources`](../Project/architecture.md#resources)/4DWP_Wizard/Templates" folder within your project. +O arquivo modelo deve ser armazenado em uma pasta "[`Resources`](../Project/architecture.md#resources)/4DWP_Wizard/Templates" em seu projeto. O arquivo de modelo no formato JSON contém os seguintes atributos: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md index 0d4f3836cfc874..8d5eaa8dcb8b5d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort-process-by-id.md @@ -41,4 +41,13 @@ Se quiser deter o processo selecionado da coleção de processos que são mostra #### Ver também -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1634 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md index eeda1f07d230de..d4434f3f938b49 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abort.md @@ -34,4 +34,13 @@ Apesar do comando ABORT está destinado a ser utilizado apenas a partir de um m #### Ver também -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 156 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md index 021fadc8e48808..67ff9e6ad7a503 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/abs.md @@ -25,3 +25,13 @@ O exemplo a seguir retorna o valor absoluto de –10.3, que é de 10.3: ```4d  vlVector:=Abs(-10.3) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 99 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md index bc0217819bdf8a..d4e846bf17394f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accept.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ACCEPT é utilizado em métodos de objeto ou de formulário (ou em subrotinas) para: @@ -37,4 +34,14 @@ Não é possível concatenar vários ACCEPT. A execução consecutiva de dois co #### Ver também -[CANCEL](cancel.md) \ No newline at end of file +[CANCEL](cancel.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 269 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md index 230057d622109e..52387ddb04ccfe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/accumulate.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição ACCUMULATE especifica os campos ou variáveis a acumular em um relatório realizado utilizando [PRINT SELECTION](print-selection.md).. @@ -37,4 +34,13 @@ Ver o exemplo do comando [BREAK LEVEL](break-level.md) . [BREAK LEVEL](break-level.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 303 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md index 0b3eb4e8ab0f14..6f680e87f80aab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/action-info.md @@ -66,4 +66,13 @@ Se quiser saber se a ação copiar está disponível (ou seja, se foram selecion #### Ver também [INVOKE ACTION](invoke-action.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1442 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md index 08410eb3cb05c8..fca30d0377f957 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Activated** retorna **True** em um método de formulário quando a janela que contém o formulário passa ao primeiro plano. @@ -29,4 +26,13 @@ displayed_sidebar: docs #### Ver também [Deactivated](deactivated.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 346 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md index 1a8127b320bf72..42af33846c0e22 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/active-transaction.md @@ -42,4 +42,13 @@ Se quiser conhecer o estado da transação atual: [In transaction](in-transaction.md) [RESUME TRANSACTION](resume-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspender as transações* \ No newline at end of file +*Suspender as transações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1387 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md index b3cca9d1f1d950..b2b465f112399d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/activity-snapshot.md @@ -104,3 +104,13 @@ Este método, executado em um processo separado em 4D ou 4D Server, oferece uma Obtém arrays do tipo: ![](../assets/en/commands/pict1213741.en.png) + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1277 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md index 7e807a3cf81cb3..dd4d9a89b6e1e7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Compatibilidade Esse comando foi implementado em 4D em lançamentos anteriores e é ainda útil para desenvolvimento básico ou protótipos. Entretanto, para construir interfaces personalizadas e modernas, agora não é recomendado usar formulários genéricos baseados no comando *[DIALOG](dialog.md) que oferece propriedades avançadas e melhor controle sobre o fluxo de dados* @@ -87,4 +84,17 @@ A variável sistema OK toma o valor 1 se aceitar o registro e 0 se o cancelar. A [CANCEL](cancel.md) [CREATE RECORD](create-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 56 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md index ff9026ee57dd3c..8f39251d0e1de1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-date.md @@ -35,3 +35,13 @@ Mesmo que você possa utilizar os [Self](self.md) para adicionar dias a uma data   // Esta linha faz o mesmo que $vdAmanhã:=Current date+1  $vdAmanhã:=Add to date(Current date;0;0;1) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 393 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md index 47ef62338b3728..f2539d20202e96 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/add-to-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver também -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 119 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md index 6972cdcc6c40e8..12caf0e657dc52 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md @@ -52,4 +52,13 @@ Se quiser mudar temporariamente a prioridade da cache dos campos de texto da tab #### Ver também [Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1431 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md index 946f73982d91a5..0370093c79926e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md @@ -51,4 +51,13 @@ Se quiser mudar temporariamente a prioridade de cache para o índice de campo \[ #### Ver também [Get adjusted index cache priority](get-adjusted-index-cache-priority.md) -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1430 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md index 7b3c84c1e27c8a..342ea15fdcbc12 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md @@ -49,4 +49,13 @@ Se quiser mudar temporariamente a prioridade de cache para os campos escalares \ #### Ver também [Get adjusted table cache priority](get-adjusted-table-cache-priority.md) -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1429 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md index ed9ee9f2839a01..2ab3e73a7d4bb6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/after.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **After** devolve True para o ciclo de execução After. @@ -26,4 +23,13 @@ Para que seja gerado o ciclo de execução **After**, tenha certeza de que o eve #### Ver também -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 31 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md index 786dc31feded41..4aee2526370a25 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/alert.md @@ -66,4 +66,13 @@ Mostra a seguinte caixa de diálogo de alerta (em Windows): [CONFIRM](confirm.md) [DISPLAY NOTIFICATION](display-notification.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 41 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md index 21726a368e4ca8..3e911227bbd022 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/all-records.md @@ -33,4 +33,15 @@ O exemplo a seguir mostra todos os registros da tabela \[Pessoas\]: [ORDER BY](order-by.md) [QUERY](query.md) [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 47 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md index 24e2f4ae7df6bb..23121ef080eb15 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando APPEND DATA TO PASTEBOARD adiciona na área de transferência os dados do tipo especificado em *tipoDados* no BLOB *dados*. @@ -218,4 +215,14 @@ Se os dados no BLOB são adicionados corretamente á área de transferência, a [CLEAR PASTEBOARD](clear-pasteboard.md) [SET PICTURE TO PASTEBOARD](set-picture-to-pasteboard.md) -[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) \ No newline at end of file +[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 403 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md index f435436bab36a7..0f045b1f99ac63 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-document.md @@ -37,4 +37,14 @@ O exemplo abaixo abre um documento existente chamado Nota, adiciona a string “ #### Ver também [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 265 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md index 5dec2aae7f2a32..9ee8d83e92802e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando APPEND MENU ITEM adiciona nova linhas de menu ao menu cujo número ou referência se passa em *menu*. @@ -82,4 +79,14 @@ Então, em todo método de formulário ou de projeto, pode escrever: [DELETE MENU ITEM](delete-menu-item.md) [INSERT MENU ITEM](insert-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 411 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md index b5c23a5c90f8d0..e0b43a5e8922a4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-array.md @@ -42,4 +42,13 @@ O seguinte código: #### Ver também [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 911 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md index 067200350ea8ab..f836fb1f14face 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/append-to-list.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando APPEND TO LIST adiciona um novo elemento à lista hierárquica cujo número de referência se passa em *lista*. @@ -155,4 +152,13 @@ Quando o formulário é executado, a lista será vista desta forma: [INSERT IN LIST](insert-in-list.md) [SET LIST ITEM](set-list-item.md) [SET LIST ITEM PARAMETER](set-list-item-parameter.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 376 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md index a9181530ddf4bb..5db84abffe94a8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-file.md @@ -40,4 +40,13 @@ Ao iniciar seu banco de dados em Windows, você precisa verificar se uma bibliot #### Ver também [Data file](data-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 491 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md index 9fa99f7a88a21a..b394ed0e5b6d21 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-info.md @@ -130,4 +130,13 @@ Se o código for executado em 4D Server, o objeto contém (por exemplo): [Execute on server](execute-on-server.md) [Get database parameter](get-database-parameter.md) [System info](system-info.md) -[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) \ No newline at end of file +[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1599 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md index b9b06d830248e8..c6597479b732bf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-type.md @@ -41,4 +41,13 @@ Em alguma parte do seu código, diferente do método de banco de dados *Método #### Ver também [Application version](application-version.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 494 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md index 72d22919d5ae91..be17bb8f8421e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/application-version.md @@ -118,4 +118,13 @@ Você quer usar o número pequeno de versão da aplicação retornado pelo coman #### Ver também [Application type](application-type.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 493 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md index 02fec94aa10655..9a60a23158958b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/apply-to-selection.md @@ -61,4 +61,14 @@ Se o usuário clicar no botão Deter no termômetro de progressão, a variável #### Ver também *Conjuntos* -[EDIT FORMULA](edit-formula.md) \ No newline at end of file +[EDIT FORMULA](edit-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 70 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md index b3e7b2ac547134..5841c97fb05008 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/arctan.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -Arctan retorna o ângulo, expresso em radianos, da tangente *numero*. - -**Nota:** 4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna número Pi (3,14159...), Degree retorna o valor em radianos de um grau (0.01745...) e Radian retorna o valor em graus de um radiano (57.29577...). +Arctan retorna o ângulo, expresso em radianos, da tangente *numero*.4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna número Pi (3,14159...), Degree retorna o valor em radianos de um grau (0.01745...) e Radian retorna o valor em graus de um radiano (57.29577...). #### Exemplo @@ -32,4 +30,13 @@ O exemplo a seguir mostra o valor de Pi: [Cos](cos.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 20 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md index b3f9ec6c67f199..06ce16e24b6e33 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-blob.md @@ -59,4 +59,13 @@ Este exemplo cria um array local de 100 filas, contendo cada uma 50 elementos de #### Ver também -*Criando arrays* \ No newline at end of file +*Criando arrays* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1222 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md index 02309c091c057d..55a6e0617715bf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-boolean.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY BOOLEAN cria e/ou redimensiona um array de elementos na memória. - -* O parâmetro n*omeArray* é o nome do array. +O comando ARRAY BOOLEAN cria e/ou redimensiona um array de elementos na memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. @@ -61,4 +59,13 @@ Este exemplo cria um array interprocesso de 50 elementos do tipo Booleano e dete #### Ver também -[ARRAY INTEGER](array-integer.md) \ No newline at end of file +[ARRAY INTEGER](array-integer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 223 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md index a0f9b371321afd..1c159ac9452423 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-date.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY DATE cria e/ou redimensiona um array de elementos de tipo Data em memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY DATE cria e/ou redimensiona um array de elementos de tipo Data em memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos no array. * O parâmetro *tamanho2* é opcional; se *tamanho2*, for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de linhas e *tamanho2* especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -54,3 +52,13 @@ Este exemplo cria um array interprocesso de 50 elementos do tipo Data e determin     ◊adValores{$vlElem}:=Current date+$vlElem  End for ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 224 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md index 5596e9310d31ac..a65dd16ecf4e10 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-integer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY INTEGER cria e/ou redimensiona um array de elementos de tipo *Inteiro* de 2 bytes de memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY INTEGER cria e/ou redimensiona um array de elementos de tipo *Inteiro* de 2 bytes de memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2*, for especificado, o comando cria um array de duas dimensões. Neste caso, size especifica o número de linhas e *tamanho2*especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -58,4 +56,13 @@ Este exemplo cria um array interprocesso de 2 bytes de 50 elementos do tipo *Int #### Ver também [ARRAY LONGINT](array-longint.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 220 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md index 6527c425d29f04..f7ed8e1bd1d6cf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-longint.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY LONGINT cria e/ou redimensiona um array de elementos de tipo Intero longo de 4 bytes em memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY LONGINT cria e/ou redimensiona um array de elementos de tipo Intero longo de 4 bytes em memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos no array. * O parâmetro *tamanhoi2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de filas e *tamanho2* o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -58,4 +56,13 @@ Este exemplo cria um array interprocesso de 4 bytes de 50 elementos do tipo *Int #### Ver também [ARRAY INTEGER](array-integer.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 221 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md index a19e098c8a265f..5200697d6e53b1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-object.md @@ -68,4 +68,13 @@ Criação e cheio de um array local de objetos: [C\_OBJECT](c-object.md) *Criando arrays* -*Objetos (Linguagem)* \ No newline at end of file +*Objetos (Linguagem)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1221 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md index 64aa852462f546..1d0037ca3095c7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY PICTURE cria e/ou redimensiona um array de elementos [Imagem](# "Can be any Windows or Macintosh picture") na memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY PICTURE cria e/ou redimensiona um array de elementos [Imagem](# "Can be any Windows or Macintosh picture") na memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de linhas e *tamanho2* especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -61,3 +59,13 @@ Este exemplo cria um array de interprocesso de tipo [Imagem](# "Can be any Windo  End for  ARRAY PICTURE(◊agValores;$vlPictElem) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 279 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md index 95f839e8358eb7..b33ee0bc3ae9c1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-pointer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY POINTER cria e/ou redimensiona um array de elementos do tipo Puntero na memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY POINTER cria e/ou redimensiona um array de elementos do tipo Puntero na memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de linhas e *tamanho2* especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -56,3 +54,13 @@ Este exemplo cria um array de interprocesso de elementos do tipo [Ponteiro](# "A     End if  End for ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 280 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md index 5eee08c1c8fe24..9aa802cf66bd2c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-real.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY REAL cria e/ou redimensiona um array de elementos do tipo Real na memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY REAL cria e/ou redimensiona um array de elementos do tipo Real na memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de linhas e *tamanho2* especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -58,4 +56,13 @@ Este exemplo cria um array de interprocesso de 50 elementos do tipo Real e deter #### Ver também [ARRAY INTEGER](array-integer.md) -[ARRAY LONGINT](array-longint.md) \ No newline at end of file +[ARRAY LONGINT](array-longint.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 219 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md index 855a996975a766..b165437707bb89 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-text.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando ARRAY TEXT cria e/ou redimensiona um array de elementos do tipo [Texto](# "A character string that may contain from 0 to 2 GB of text") na memória. - -* O parâmetro *nomeArray* é o nome do array. +O comando ARRAY TEXT cria e/ou redimensiona um array de elementos do tipo [Texto](# "A character string that may contain from 0 to 2 GB of text") na memória.é o nome do array. * O parâmetro *tamanho* é o número de elementos em um array. * O parâmetro *tamanho2* é opcional; se *tamanho2* for especificado, o comando cria um array de duas dimensões. Neste caso, *tamanho* especifica o número de linhas e *tamanho2* especifica o número de colunas em cada array. Cada linha em um array de duas dimensões pode ser tratada tanto como um elemento como um array. Isso significa que enquanto se trabalha com a primeira dimensão do array, você pode usar outros comandos de array para inserir e deletar arrays inteiros e arrays de duas dimensões. @@ -54,3 +52,13 @@ Este exemplo cria um array de interprocesso de elementos do tipo texto e atribui     ◊atValores{$vlElem}:="Elemento #"+String($vlElem)  End for ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 222 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md index 6c685c4c8883dd..98eb561606e677 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-time.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **ARRAY TIME** cria ou redimensiona um array de tipo tempo em memória. - -**Lembrete:** em 4D, as horas podem ser processadas ​​como valores numéricos. Nas versões de 4D anteriores a v14, tinham que combinar um array inteiro longo com um formato de visualização para gerenciar um array de horas. +O comando **ARRAY TIME** cria ou redimensiona um array de tipo tempo em memória.em 4D, as horas podem ser processadas ​​como valores numéricos. Nas versões de 4D anteriores a v14, tinham que combinar um array inteiro longo com um formato de visualização para gerenciar um array de horas. O parâmetro *nomArray* é o nome do array. @@ -64,4 +62,13 @@ Como os arrays de horas aceitam valores numéricos, o seguinte código é válid #### Ver também *Criando arrays* -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1223 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md index 8b046fa766021f..ecf01b0b5d9ce7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-collection.md @@ -81,4 +81,13 @@ Se quiser copiar um array de texto em uma coleção compartilhada: #### Ver também [COLLECTION TO ARRAY](collection-to-array.md) -*Conversões de Tipo entre coleções e arrays 4D* \ No newline at end of file +*Conversões de Tipo entre coleções e arrays 4D* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1563 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md index 4341e36ff4a008..2acc1cf8ad43b1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ARRAY TO LIST cria ou substitui a lista hierárquica ou a lista de escolha (criada no editor LIsta) que é especificada em *lista* usando os elementos do *array* *.* @@ -62,4 +59,14 @@ O comando ARRAY TO LIST gera o erro *\-9957* quando é aplicado a uma lista que [LIST TO ARRAY](list-to-array.md) [Load list](load-list.md) [ON ERR CALL](on-err-call.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 287 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md index cc006fc6a064eb..220e62a418e403 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/array-to-selection.md @@ -79,4 +79,14 @@ Se quiser copiar uma seleção de registroar para uma tablela arquivo selecionan #### Ver também [SELECTION TO ARRAY](selection-to-array.md) -*Variáveis sistema* \ No newline at end of file +*Variáveis sistema* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 261 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md index 6032882acbf27f..8de83e3618fe2a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/assert.md @@ -52,4 +52,14 @@ Uma asserção permite provar os parâmetros passados a um método de projeto pa [Asserted](asserted.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1129 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md index af7f778fe5f053..f0305233eb85f9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/asserted.md @@ -40,4 +40,14 @@ Inserir uma asserção na avaliação de uma expressão: [ASSERT](assert.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1132 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md index 38e5d74efe0bbb..6c8cd9c6111eac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/average.md @@ -89,4 +89,14 @@ Pode fazer os seguintes cálculos: [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) [Subtotal](subtotal.md) -[Sum](sum.md) \ No newline at end of file +[Sum](sum.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 2 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md index 73f8b2f725d815..a126ee7c17294c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup-info.md @@ -30,4 +30,13 @@ Passe o tipo de informação a se obter em *seletor*. É possível utilizar uma #### Ver também -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 888 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md index 9a44b86a06a00f..f0a2e28b1822e4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/backup.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando BACKUP inicia o backup do banco de dados utilizando os parâmetros de cópia de segurança atuais. Não aparece uma caixa de diálogo de confirmação; no entanto, aparece uma barra de progresso na tela. @@ -40,4 +37,14 @@ Em caso de que ocorram incidentes durante o backup, a informação relativa ao i [BACKUP INFO](backup-info.md) *Método de Banco de Dados On Backup Startup* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 887 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md index aeb940b3cc553a..86bbf411d2c5f1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-decode.md @@ -54,4 +54,13 @@ Este exemplo lhe permite transferir uma imagem através de um BLOB: [BASE64 ENCODE](base64-encode.md) [Generate digest](generate-digest.md) *Visão Geral dos comandos XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 896 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md index 05359c76a67cd3..49bd2e1a1e69ba 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/base64-encode.md @@ -36,4 +36,13 @@ Por padrão, se omitir o parâmetro *\**, o comando utiliza uma codificação Ba [BASE64 DECODE](base64-decode.md) [Generate digest](generate-digest.md) *Visão Geral dos comandos XML DOM* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 895 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md index 7c44af56feb696..5068fd7e830c04 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/beep.md @@ -32,4 +32,13 @@ No exemplo abaixo, se uma pesquisa não encontrar nenhum registro, um bip é emi #### Ver também -[PLAY](play.md) \ No newline at end of file +[PLAY](play.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 151 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md index d7a82991d94579..1dde76fd09fcda 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before-selection.md @@ -60,4 +60,13 @@ Este formulário é utilizado durante a impressão de um relatório. Define uma [FIRST RECORD](first-record.md) [Form event code](form-event-code.md) [PREVIOUS RECORD](previous-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 198 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md index 64b25496af52ce..60de29b59d9e8f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/before.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Before** devolve True para o ciclo de execução Before. @@ -26,4 +23,13 @@ Para que se gere o ciclo de execução **Before** tenha certeza de que a proprie #### Ver também -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 29 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md index 0f2ab10f49559e..2ebf47ff0eaec9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/begin-sql.md @@ -44,4 +44,13 @@ Note que o *Depurador* 4D avaliará o código SQL linha por linha. Em alguns cas [End SQL](end-sql.md) [SQL Get current data source](sql-get-current-data-source.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 948 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md index b31ac20c9133e7..6fe00cf9f50578 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-properties.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descrição -O comando **BLOB PROPERTIES** retorna informações sobre o *blob* BLOB. - -* O parâmetro *comprimido* diz se o BLOB é comprimido ou não, e retorna um dos seguintes valores. +O comando **BLOB PROPERTIES** retorna informações sobre o *blob* BLOB.diz se o BLOB é comprimido ou não, e retorna um dos seguintes valores. | Constante | Tipo | Valor | Comentário | | -------------------------- | ------------- | ----- | ------------------------------------------------------------------------------------------------------------------------------------------------------ | @@ -76,4 +74,13 @@ Depois que este método tenha sido adicionado à sua aplicação, você pode us #### Ver também [COMPRESS BLOB](compress-blob.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 536 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md index bdb345245f4fde..5a82f38b16e736 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-size.md @@ -28,4 +28,13 @@ A linha de código adiciona 100 bytes ao BLOB *meuBlob*: #### Ver também -[SET BLOB SIZE](set-blob-size.md) \ No newline at end of file +[SET BLOB SIZE](set-blob-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 605 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md index 4e1f15a528e2d8..c0824eeaebedc4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-document.md @@ -52,4 +52,14 @@ Em todos os casos, você pode interceptar o erro usando um método [ON ERR CALL] [Create document](create-document.md) [DOCUMENT TO BLOB](document-to-blob.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 526 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md index a6447c6df28cdb..b8aa5516a56a49 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-integer.md @@ -58,4 +58,13 @@ O exemplo a seguir lê 20 valores inteiros de um BLOB, iniciando no offset 0x200 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 549 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md index 01a5f5f3b26ca5..d7c1a44a4bfbc4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando BLOB to list cria uma lista hierárquica com os dados armazenados no BLOB blob no o offset de bytes (a partir de zero) especificado pelo *offset* e retorna um número de referência de lista hierárquica para essa nova lista. @@ -61,4 +58,14 @@ A variável OK recebe o valor 1 se a lista for criada corretamente, caso contrá #### Ver também -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 557 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md index c362c90c7ca8de..a6fc22946a804f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-longint.md @@ -57,4 +57,13 @@ O exemplo a seguir lê 20 valores Inteiro longo de um BLOB, iniciando no offset [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 551 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md index 9221e18182420c..3fbb34a5724cea 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-picture.md @@ -50,4 +50,14 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1\. Se [PICTURE CODEC LIST](picture-codec-list.md) [PICTURE TO BLOB](picture-to-blob.md) -[READ PICTURE FILE](read-picture-file.md) \ No newline at end of file +[READ PICTURE FILE](read-picture-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 682 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md index 28181f2fea35bc..7e36e622169009 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-print-settings.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **BLOB to print settings** substitui a configuração de impressão 4D atual pelos parâmetros armazenados no BLOB *confImpr*. Este BLOB deve ter sido gerado pelo comando [Print settings to BLOB](print-settings-to-blob.md) ou pelo comando 4D Pack 4D Pack (ver abaixo). @@ -76,4 +73,13 @@ Se quiser aplicar a configuração de impressão salva no disco para o contexto #### Ver também -[Print settings to BLOB](print-settings-to-blob.md) \ No newline at end of file +[Print settings to BLOB](print-settings-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1434 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md index 03686690a068e1..c329cfa3a304fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-real.md @@ -58,4 +58,13 @@ O exemplo a seguir lê 20 valores Reais de um BLOB, iniciando no offset 0x200: [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 553 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md index fd871740d93dbb..3c093a0442f752 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-text.md @@ -59,4 +59,13 @@ Após a chamada, a variável é incrementada pelo número de bytes lidos. Portan [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 555 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md index de521aa5b8f56d..3e7456313df3bf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-users.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando BLOB TO USERS adiciona as contas de usuários presentes no BLOB *usuarios* ao banco de dados. O BLOB *usuarios* está criptografado e deve ter sido criado usando o comando [USERS TO BLOB](users-to-blob.md). @@ -48,4 +45,14 @@ este comando causa a substituição de quaisquer contas e grupos existentes cria #### Ver também -[USERS TO BLOB](users-to-blob.md) \ No newline at end of file +[USERS TO BLOB](users-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 850 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md index 816d80b1819fb0..2f090ac1d2c4b2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/blob-to-variable.md @@ -40,4 +40,14 @@ A variável OK é definida como 1 se a variável foi reescrita com sucesso, caso #### Ver também -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 533 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md index 73da6720ec5713..1156d00bab6162 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bool.md @@ -46,4 +46,13 @@ Seleciona um valor dependendo do conteúdo de um atributo de campo de objeto, an [Date](date.md) [Num](num.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1537 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md index f36d4452704afb..e9171371e3e7bb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/boolean-array-from-set.md @@ -31,4 +31,13 @@ Se você não passar o parâmetro *conjunto*, o comando utilizará UserSet no pr #### Ver também -[CREATE SET FROM ARRAY](create-set-from-array.md) \ No newline at end of file +[CREATE SET FROM ARRAY](create-set-from-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 646 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md index 3a2702197cf8e3..a0fbabcd436399 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/break-level.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição BREAK LEVEL especifica o número de níveis de quebra em um relatório realizado utilizando [PRINT SELECTION](print-selection.md). @@ -46,4 +43,13 @@ O exemplo a seguir imprime um relatório com dois níveis de quebra. A seleção [ACCUMULATE](accumulate.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 302 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md index caf2e8b6c8f434..66d278c553ebad 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/bring-to-front.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição BRING TO FRONT passa todas as janelas que pertencem a *processo* ao primeiro plano. Se o processo já está no primeiro plano, o comando não faz nada. Se o processo estiver oculto, deve utilizar [SHOW PROCESS](show-process.md "SHOW PROCESS") para mostrar o processo, do contrário BRING TO FRONT não tem efeito. @@ -38,4 +35,13 @@ O exemplo a seguir é um método que pode ser executado desde um menu. Ele verif [HIDE PROCESS](hide-process.md) [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 326 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md index 0329416584afbc..3170a554faebbe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/build-application.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando BUILD APPLICATION inicia o processo de geração da aplicação levando em consideração os parâmetros definidos nas configurações do aplicativo atual ou na configuração de aplicação designado no parâmetro *constrAppConfigurações*. @@ -55,4 +52,15 @@ Se o comando falhar, é gerado um erro que pode ser interceptado com a ajuda do #### Ver também -[Compile project ](compile-project.md) \ No newline at end of file +[Compile project ](compile-project.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 871 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, Document, error | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md index b6083b45fa80a1..5be6f8de7dea96 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cache-info.md @@ -52,4 +52,13 @@ Se quiser obter informação da cache do banco de dados e todos os componentes a #### Ver também -[MEMORY STATISTICS](memory-statistics.md) \ No newline at end of file +[MEMORY STATISTICS](memory-statistics.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1402 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md index a4dddd717526ff..de6ccf6ef4dde6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-chain.md @@ -48,3 +48,13 @@ Se for executado um método de objeto de formulário, a cadeia de chamadas poder ```json [   {    "type":"formObjectMethod",    "name":"detailForm.Button",    "line":1,    "database":"myDatabase"   },   {    "type":"formMethod",    "name”:"detailForm",    "line":2,    "database":"myDatabase"   },   {    "type":"projectMethod",    "name”:"showDetailForm",    "line":2,    "database":"myDatabase”   }] ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1662 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md index 1636d6723027fe..e8df098390cf36 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-form.md @@ -100,4 +100,13 @@ Depois pode adicionar outras mensagens executando o comando **CALL FORM** novame [CALL WORKER](call-worker.md) -[DIALOG](dialog.md) \ No newline at end of file +[DIALOG](dialog.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1391 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md index 931e05f5e37659..7e8969a92e0984 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-subform-container.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **CALL SUBFORM CONTAINER** permite a uma instância de subformulário enviar o *evento* ao objeto subformulário que o contiver. O objeto subformulário pode então processar o *evento* no contexto do formulário pai. @@ -31,4 +28,13 @@ Em *evento*, pode passar todo evento de formulário pré-definido de 4D (pode ut #### Ver também [Form event code](form-event-code.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1086 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md index 48516858b8ab73..db37bb6d099493 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/call-worker.md @@ -82,4 +82,13 @@ O código de *workerMethod é*: [CALL FORM](call-form.md) [Current process name](current-process-name.md) [KILL WORKER](kill-worker.md) -*Sobre Workers* \ No newline at end of file +*Sobre Workers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1389 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md index e7b63805e72a81..fda7e8d507d2bb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel-transaction.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [START TRANSACTION](start-transaction.md) [Transaction level](transaction-level.md) *Usar Transações* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 241 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md index 69c9014ae0da1b..253dabfbd62700 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cancel.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição No contexto de entrada de dados, **CANCEL** realiza a mesma ação que se o usuário tivesse pressionado a tecla de cancelação (**Esc**). Também é possível colocar no método de caixa de fechamento opcional de uma janela criada pelo comando[Open window](open-window.md) @@ -52,4 +49,14 @@ Quando o comando CANCEL é executado (anulação de formulário ou de impressão [ACCEPT](accept.md) [PAGE BREAK](page-break.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 270 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md index 2b8d7bc0fbf5ee..8ec3452cf2adab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/caps-lock-down.md @@ -28,4 +28,13 @@ Veja o exemplo do comando [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 547 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md index 8d2146413dfa22..2b9a3675791df5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-current-user.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição CHANGE CURRENT USER permite mudar a identidade do usuário atual no banco, sem ter que sair. O usuário pode mudar sua identidade utilizando a caixa de diálogo de identificação do usuário do banco (quando o comando é chamado sem parâmetros) ou diretamente através deste comando. Quando um usuário muda sua identidade, o usuário abandona seus privilégios de acesso anteriores para os direitos do usuário escolhido. @@ -69,4 +66,13 @@ O exemplo abaixo exibe a caixa de diálogo de conexão: #### Ver também [CHANGE PASSWORD](change-password.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 289 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md index eacf1d1e4e57fa..dd4ebcb62a33f0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-licenses.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando CHANGE LICENSES mostra a caixa de diálogo de atualização de licenças 4D . @@ -42,4 +39,14 @@ Desta forma um usuário pode ativar licenças sem ter que modificar a base. #### Ver também [License info](license-info.md) -[Is license available](is-license-available.md) \ No newline at end of file +[Is license available](is-license-available.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 637 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md index 34b4c1572fbd00..b67e744fb1b291 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-password.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição CHANGE PASSWORD muda a senha do usuário atual. Este comando substitui a senha atual com a nova senha que se passa em *senha*. @@ -44,4 +41,13 @@ O exemplo abaixo permite ao usuário mudar sua senha. #### Ver também [CHANGE CURRENT USER](change-current-user.md) -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 186 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md index 70b32ff352c593..6eac2615b5ebc0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/change-string.md @@ -37,4 +37,13 @@ O seguinte exemplo ilustra o uso de Change string. Os resultados são atribuído [Delete string](delete-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 234 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md index 6a1a761bc37eeb..b50d69d8e5dc02 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/char.md @@ -36,4 +36,13 @@ O seguinte exemplo utiliza Char para inserir um retorno de carro no texto de uma [Character code](character-code.md) *Códigos Unicode* -*Símbolos de referência de caracteres* \ No newline at end of file +*Símbolos de referência de caracteres* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 90 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md index e7f4a45ad7c389..b63869377f43ad 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/character-code.md @@ -84,4 +84,13 @@ O segundo código é executado mais rápido por duas razões: apenas referencia #### Ver também [Char](char.md) -*Símbolos de referência de caracteres* \ No newline at end of file +*Símbolos de referência de caracteres* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 91 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md index 757d5955a67e68..1f47de18e8f4ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/check-log-file.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **CHECK LOG FILE** mostra a caixa de diálogo de visulização do arquivo de histórico atual da base de dados (acessível também através da janela do Centro de segurança e manutenção) : @@ -36,4 +33,14 @@ Este comando só pode ser utilizado no contexto de aplicativos monousuários. Ma #### Ver também *Erros de Gestão de backup (1401 -> 1421)* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 799 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md index c8e0a7e454e132..561f71e289aa1c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/choose.md @@ -80,3 +80,13 @@ Este código é estritamente equivalente a:        vEstado:="Separado"  End case ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 955 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md index 2f68b22355de26..71743b7b1ce239 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando CLEAR LIST apaga da memória a lista hierárquica cujo número de referência é passado em *lista*. @@ -55,4 +52,13 @@ Ver o exemplo do comando [BLOB to list](blob-to-list.md "BLOB to list"). [BLOB to list](blob-to-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 377 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md index a7b639fd1ba526..79fbfbd0da321d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-named-selection.md @@ -23,4 +23,13 @@ Se *nome* foi criado pelo comando [CUT NAMED SELECTION](cut-named-selection.md " [COPY NAMED SELECTION](copy-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 333 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md index 5c1caf032bbb08..d72e02f282a7c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-pasteboard.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando CLEAR PASTEBOARD apaga o conteúdo da área de transferência. Se a área de transferência contiver múltiplas instâncias dos mesmos dados, todas as instâncias são apagadas. Depois de chamar a CLEAR PASTEBOARD, a área de transferência fica vazio. @@ -41,4 +38,13 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m #### Ver também -[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) \ No newline at end of file +[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 402 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md index 75393f0ff7dede..5e007c3ca154b0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-semaphore.md @@ -27,4 +27,13 @@ Ver o exemplo de [Semaphore](semaphore.md "Semaphore"). *Semáforos e Sinais* [Semaphore](semaphore.md) -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 144 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md index 543f716e0c6921..c1f12911e6148a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-set.md @@ -25,4 +25,13 @@ Ver o exemplo do comando [USE SET](use-set.md "USE SET"). [CREATE EMPTY SET](create-empty-set.md) [CREATE SET](create-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 117 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md index 13a9e73eeb43ad..3c1122de8c6157 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clear-variable.md @@ -43,4 +43,13 @@ Em um formulário, utilize uma lista suspensa (drop down) chamada *MinhaListaSus #### Ver também -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 89 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md index 23f46bfa52a169..5d124367ba87cc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/clickcount.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Clickcount** devolve, no contexto de um evento clique, o número de vezes que o usuário fez clique de maneira repetida com o mesmo botão do mouse. Normalmente, este comando devolve 2 para um clique duplo. @@ -61,3 +58,13 @@ As etiquetas não são editáveis mas o são depois de um triplo-clique. Se dese     End case  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1332 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md index c07613b3651423..b10849b6f20928 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-document.md @@ -36,4 +36,13 @@ O exemplo abaixo permite ao usuário criar um novo documento, escreva a string " [Append document](append-document.md) [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 267 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md index fe931a428fe61a..195f2f20dd25b0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando CLOSE PRINTING JOB permite fechar o trabalho de impressão previamente aberto pelo comando [OPEN PRINTING JOB](open-printing-job.md) e enviar à impressora atual o documento de impressão eventualmente construído. @@ -25,4 +22,13 @@ Quando tiver executado este comando, a impressora novamente está disponível pa #### Ver também -[OPEN PRINTING JOB](open-printing-job.md) \ No newline at end of file +[OPEN PRINTING JOB](open-printing-job.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 996 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md index 9d72886df03c4c..f07204e9bc894e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-resource-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **CLOSE RESOURCE FILE** fecha o arquivo de recursos cujo número de referência se passa em *resArquivo*. @@ -30,4 +27,13 @@ Lembre chamar finalmente **CLOSE RESOURCE FILE** para um arquivo de recursos que #### Ver também -[Open resource file](open-resource-file.md) \ No newline at end of file +[Open resource file](open-resource-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 498 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md index e320c4a5cf9a5f..e028835fcda28e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/close-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição CLOSE WINDOW fecha a janela ativa aberta pelo comando [Open window](open-window.md) ou [Open form window](open-form-window.md) no processo atual. CLOSE WINDOW não faz nada se não houver uma janela personalizada aberta; não fecha as janelas sistema. CLOSE WINDOW tampoco tem efeito se for chamado enquanto um formulário estiver ativo na janela. Deve chamar CLOSE WINDOW quando tiver terminado de utilizar uma janela aberta por [Open window](open-window.md) ou [Open form window](open-form-window.md).. @@ -40,4 +37,13 @@ O seguinte exemplo abre uma janela formulario e cria novos registros com o coman #### Ver também [Open form window](open-form-window.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 154 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md index 33e1a738b473ad..a3239f452d908d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/collection-to-array.md @@ -64,4 +64,13 @@ Se quiser copiar diferentes valores de propriedade de uma coleção de objetos e #### Ver também [ARRAY TO COLLECTION ](array-to-collection.md) -*Conversões de Tipo entre coleções e arrays 4D* \ No newline at end of file +*Conversões de Tipo entre coleções e arrays 4D* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1562 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md index fdf5ab5f21a37b..fbb36cd676dabc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/combine-pictures.md @@ -50,4 +50,13 @@ Resultado: #### Ver também -[TRANSFORM PICTURE](transform-picture.md) \ No newline at end of file +[TRANSFORM PICTURE](transform-picture.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 987 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md index 668ed11d8b7fee..d61055c31b0feb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/command-name.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descrição -O comando **Command name** retorna o nome do comando cujno número foi passado em *comando*. - -**Nota:** O número de cada comando é indicado no Explorer assim como na área Propriedades desta documentação. +O comando **Command name** retorna o nome do comando cujno número foi passado em *comando*.O número de cada comando é indicado no Explorer assim como na área Propriedades desta documentação. **Nota de Compatibilidade:** Já que o nome de comando pode variar entre versões de 4D (comandos renomeados) ou de acordo com a linguagem do aplicativo, pode ser útil designar um comando através de seu número, especialmente em porções de código não-tokenizadas. A utilidade do comando com respeito a esta necessidade diminui ao longo do tempo com a evolução de 4D, já que agora 4D oferece uma sintaxe token. Esta sintaxe token pode ser usada para evitar possíveis problemas por variações em nomes de comando, assim como outros elementos tais como tabelas, mas permitindo digitar os nomes em uma maneira legível (para saber mais, veja *Usar tokens em fórmulas* ). Além disso, de forma pré-determinada, a versão na língua inglesa a partir de 4D v15; entretanto, a opção "Use regional system settings" em [Is a list](is-a-list.md) das Preferências permite que continue a usar a linguagem francesa na versão francesa de 4D. @@ -101,4 +99,14 @@ Depois, para o comando "SAVE RECORD" (53) por exemplo, pode escrever: #### Ver também [EXECUTE FORMULA](execute-formula.md) -*Processos 4D Preemptivos* \ No newline at end of file +*Processos 4D Preemptivos* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 538 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md index 80f64f5f2dc03c..fe2c55fde53260 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compact-data-file.md @@ -69,4 +69,14 @@ Se um arquivo de histórico for gerado, seu nome de caminho completo é retornad #### Ver também [Table fragmentation](table-fragmentation.md) -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 937 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md index bc5b5a2916d15b..145e8a33c01256 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compare-strings.md @@ -102,4 +102,13 @@ Os exemplos abaixo ilustram o impacto específico das opções no **contexto da #### Ver também -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1756 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md index 8a22b29476c791..f59125b5ab3fe2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compile-project.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Compile project** permite compialr o projeto do host atual ou o projeto especificado no parâmetro *projectFile*. Para saber mais sobre compilação, veja *a página de compilação em developer.4d.com*. @@ -171,4 +168,13 @@ Compile um projeto e declare seus componentes: #### Ver também -[BUILD APPLICATION](build-application.md) \ No newline at end of file +[BUILD APPLICATION](build-application.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1760 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md index 8f5d05383313bb..fe8d452a0d9f1a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/component-list.md @@ -32,4 +32,13 @@ Para maiores informações sobre componentes 4D, por favor consulte o Manual de #### Ver também -[PLUGIN LIST](plugin-list.md) \ No newline at end of file +[PLUGIN LIST](plugin-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1001 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md index d7532a1637c506..02d7c84c4948db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/compress-blob.md @@ -90,4 +90,14 @@ A variável OK é definida como 1 se o BLOB foi compactado com sucesso, caso con #### Ver também [BLOB PROPERTIES](blob-properties.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 534 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md index 3750a013e8402b..92637ceef975c5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/confirm.md @@ -91,4 +91,14 @@ Mostrará a seguinte caixa de diálogo de confirmação (em Macintosh): #### Ver também [ALERT](alert.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 162 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md index c49a799553b229..46888d8d7d10f9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/contextual-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Contextual click retorna Verdadeiro se foi realizado um clique contextual: @@ -42,4 +39,13 @@ Este método, combinado com uma área de rolagem, lhe permite modificar o valor #### Ver também [Form event code](form-event-code.md) -[Right click](right-click.md) \ No newline at end of file +[Right click](right-click.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 713 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md index 3b571d088c0298..476c246564c1ae 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **CONVERT COORDINATES**converte as coordenadas (x;y) de um ponto de um sistema de coordenadas para outro. Os sistemas de coordenada de entrada e saída compatíveis são formulários e subformulários, janelas e a tela. Por exemplo, pode usar este comando para obter as coordenadas no formulário principal de um objeto que pertence a um subformulário. Isso faz com que seja fácil criar um menu contextual para qualquer posição personalizada. @@ -86,4 +83,13 @@ Se quiser abrir uma janela pop-up na posição do cursor do mouse, em Windows, p [GET WINDOW RECT](get-window-rect.md) [OBJECT GET COORDINATES](object-get-coordinates.md) [OBJECT SET COORDINATES](object-set-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1365 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md index 29694e99dc4f6b..1c1df07b792362 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-from-text.md @@ -185,4 +185,14 @@ Se o comando tiver sido executado corretamente, a variável OK assume o valor 1\ #### Ver também -[Convert to text](convert-to-text.md) \ No newline at end of file +[Convert to text](convert-to-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1011 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md index 8fdd20a9928dd7..b56858e72c942b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md @@ -53,4 +53,13 @@ Exemplos em Windows: [Convert path system to POSIX](convert-path-system-to-posix.md) [Object to path](object-to-path.md) -[Path to object ](path-to-object.md) \ No newline at end of file +[Path to object ](path-to-object.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1107 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md index 71280e24d4b7d0..9a6fd6ae4998a3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md @@ -60,4 +60,13 @@ Exemplo em Windows [Convert path POSIX to system](convert-path-posix-to-system.md) [Object to path](object-to-path.md) [Path to object ](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1106 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md index bdd531d6107109..72d646a1771d22 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-picture.md @@ -49,4 +49,13 @@ Conversão de uma imagem com qualidade de 60%: #### Ver também -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1002 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md index eb2667ca5f8ea0..c981e9eed330f1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/convert-to-text.md @@ -30,4 +30,14 @@ Se o comando for executado corretamente, a variável OK assume o valor 1\. Do co #### Ver também -[CONVERT FROM TEXT](convert-from-text.md) \ No newline at end of file +[CONVERT FROM TEXT](convert-from-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1012 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md index 18cca8a2d52f75..475adfcbbda80e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando COPY ARRAY cria ou reescreve o array de destino com os mesmos conteúdo, tamanho e fonte do array fonte. - -**Nota**: no caso de arrays numéricos de tipos diferentes, o tipo de array *destino* é mantido. +O comando COPY ARRAY cria ou reescreve o array de destino com os mesmos conteúdo, tamanho e fonte do array fonte.é mantido. Os arrays *fonte* e *destino* podem ser arrays locais, de processo ou interprocesso. Ao se copiar arrays, o tamanho do array não interessa. @@ -36,3 +34,13 @@ O exemplo seguinte preenche o array chamado C. Ele então cria um novo array, ch  SELECTION TO ARRAY([Pessoas]Empresa;C) // Mover os dados do campo empresa ao array C  COPY ARRAY(C;D) // Copiar o array C ao array D ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 226 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md index a31b682cc5f4ca..9a7848e5b1fcb4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-blob.md @@ -28,4 +28,13 @@ A cópia começa na posição (expressa em relação ao início do BLOB fonte) e #### Ver também [DELETE FROM BLOB](delete-from-blob.md) -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 558 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md index c7cdefc14d3c3e..08a37eb8c3290e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-document.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descrição -O comando **COPY DOCUMENT** copia o documento especificado por *nomFonte* na localização especificada por *nomDest*. - -* **Cópia de arquivos** +O comando **COPY DOCUMENT** copia o documento especificado por *nomFonte* na localização especificada por *nomDest*. Este caso, o parâmetro *nomFonte* deve conter um caminho de arquivo completo, expressa em relação à raiz do volume. O parâmetro *nomDest* pode conter vários tipos de locais: * um caminho de arquivo completo expressa com relação à raiz do volume: o arquivo é copiado para este local @@ -119,4 +117,14 @@ Os seguintes exemplos criam diferentes arquivos e pastas na pasta da base (exemp #### Ver também *Documentos de Sistema* -[MOVE DOCUMENT](move-document.md) \ No newline at end of file +[MOVE DOCUMENT](move-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 541 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md index 77acf39bf76946..9338ad6228503a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Copy list duplica a lista cujo número de referência é passado no parâmetro *lista* e retorna o número de referência da nova lista. @@ -27,4 +24,13 @@ Quando tiver terminado de utilizar a nova lista, chame a [CLEAR LIST](clear-list [CLEAR LIST](clear-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 626 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md index b592b04529c9c1..21087159b4b163 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-named-selection.md @@ -49,4 +49,13 @@ O seguinte exemplo permite verificar se há outras faturas vencidas na tabela *\ [CLEAR NAMED SELECTION](clear-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 331 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md index b341417a084890..43fc80b467562f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-parameters.md @@ -79,4 +79,13 @@ Como o comando devolve uma coleção, pode ser utilizada com **.join()** para cr #### Ver também -[Count parameters](count-parameters.md) \ No newline at end of file +[Count parameters](count-parameters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1790 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md index 609cddbb83e674..d3ee57e41c818a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/copy-set.md @@ -38,4 +38,13 @@ O seguinte exemplo em Cliente/Servidor, copia o conjunto processo "*ConjuntoA*", #### Ver também -*Conjuntos* \ No newline at end of file +*Conjuntos* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 600 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md index e42e02aa3be5e8..4c1f98e58ceb34 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cos.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descrição -Cos retorna o cosseno do *numero*, onde *numero* é expresso em radianos. - -**Nota:** 4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3.14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). +Cos retorna o cosseno do *numero*, onde *numero* é expresso em radianos.4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3.14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). #### Ver também [Arctan](arctan.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 18 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md index 210d2b5c7f3a15..e382ed437a1d43 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-in-array.md @@ -56,4 +56,13 @@ Para contar referências de objeto em um array de objeto: #### Ver também [Find in array](find-in-array.md) -[Find in sorted array](find-in-sorted-array.md) \ No newline at end of file +[Find in sorted array](find-in-sorted-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 907 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md index 9efb7f8b75f239..9727334c7d0dbf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-list-items.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Count list items retorna o número atual de elementos visíveis ou o número total de elementos na lista cujo número de referência ou nome de objeto se passa em *lista*. @@ -62,4 +59,13 @@ Aqui temos uma lista chamada *hList* mostrada no ambiente Aplicação: #### Ver também [List item position](list-item-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 380 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md index 99e5c9bdd848e2..8052e66df17807 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Count menu items devolve o número dos elementos do menu presentes no menu cujo número ou referência é passada em *menu.* @@ -28,4 +25,14 @@ Se omite o parâmetro *processo*, Count menu items é aplicada a barra de menus #### Ver também -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 405 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md index c7a9c32ded50dc..425e78ce00a48e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-menus.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Count menus devolve o número de menus presentes na barra de menus. @@ -25,4 +22,14 @@ Se omitir o parâmetro *processo*, Count menus é aplicada a barra de menus do p #### Ver também -[Count menu items](count-menu-items.md) \ No newline at end of file +[Count menu items](count-menu-items.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 404 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md index ded46dd0175aac..54c81526ba3f32 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-parameters.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descrição -O comando Count parameters devolve o número de parâmetros passados a um método de projeto. - -**Advertência:** Count parameters é significativo apenas em um método de projeto que tenha sido chamado por outro método (método de projeto ou outro). Se o método de projeto que chama Count parameters está associado a um menu, Count parameters devolve 0. +O comando Count parameters devolve o número de parâmetros passados a um método de projeto.Count parameters é significativo apenas em um método de projeto que tenha sido chamado por outro método (método de projeto ou outro). Se o método de projeto que chama Count parameters está associado a um menu, Count parameters devolve 0. #### Exemplo 1 @@ -94,4 +92,13 @@ ou: #### Ver também *Comandos de Compilação* -[Copy parameters](copy-parameters.md) \ No newline at end of file +[Copy parameters](copy-parameters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 259 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md index 9827dbf08c22c0..51439a3c6b098e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-screens.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Count screens devolve o número de telas conectadas a seu equipo. @@ -26,4 +23,13 @@ displayed_sidebar: docs [SCREEN COORDINATES](screen-coordinates.md) [SCREEN DEPTH](screen-depth.md) [Screen height](screen-height.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 437 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md index 6a06db8b9a723b..5ea8cb459ff6b5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-tasks.md @@ -28,4 +28,13 @@ Ver o exemplo para [Process state](process-state.md "Process state") e [On Exit [Count user processes](count-user-processes.md) [Count users](count-users.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 335 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md index 5aecb016436634..bd922d1e0e3083 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-user-processes.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### Ver também [Count tasks](count-tasks.md) -[Count users](count-users.md) \ No newline at end of file +[Count users](count-users.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 343 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md index 12e5356fe9b13e..ced03dac40d270 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/count-users.md @@ -22,4 +22,13 @@ Quando em versão monousuário de 4D, **Count users** devolve 1. #### Ver também [Count tasks](count-tasks.md) -[Count user processes](count-user-processes.md) \ No newline at end of file +[Count user processes](count-user-processes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 342 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md index d82236484fcb83..2e72b770971131 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-alias.md @@ -66,4 +66,14 @@ A variável sistema OK assume o valor 1 se o comando for executado corretamente, #### Ver também -[RESOLVE ALIAS](resolve-alias.md) \ No newline at end of file +[RESOLVE ALIAS](resolve-alias.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 694 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md index 2620358430bbd1..70a42c413923c3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-data-file.md @@ -25,4 +25,13 @@ Antes de iniciar a operação, o comando verifica que o endereço de acesso não #### Ver também -[OPEN DATA FILE](open-data-file.md) \ No newline at end of file +[OPEN DATA FILE](open-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 313 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md index ace5c79fcb920c..1a023809712092 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-deployment-license.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **Create deployment license** command creates an embedded license file in the Licenses folder of the *mergedApp* built application. If the Licenses folder does not exist the *mergedApp*, it is created by the command. @@ -58,4 +55,13 @@ The command returns a *status* object containing the following properties: #### Ver também - \ No newline at end of file + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1811 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md index 632c03723764c3..75093da2ed44cc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-document.md @@ -71,4 +71,14 @@ Se o documento for criado corretamente, a variável sistema OK assume o valor 1 #### Ver também [Append document](append-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 266 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md index 6ad3523d1af198..9237579ca9f826 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-empty-set.md @@ -27,4 +27,13 @@ Consulte o exemplo da seção *Conjuntos*. #### Ver também [CLEAR SET](clear-set.md) -[CREATE SET](create-set.md) \ No newline at end of file +[CREATE SET](create-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 140 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md index 9ae23149766c6c..78d9c6f06a7bd3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-folder.md @@ -66,4 +66,14 @@ Criação da subpasta "\\Fevereiro\\" na atual pasta "C:\\Arquivos\\": #### Ver também [FOLDER LIST](folder-list.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 475 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md index 7e7c87c7519369..6a17d25624e9aa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-index.md @@ -86,4 +86,13 @@ Criação de um índice composto nos campos “Cidade” e “CódigoPostal” d [DELETE INDEX](delete-index.md) [RESUME INDEXES](resume-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 966 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md index deb4d23c6d40da..238740e0632c1c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-menu.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Create menu** permite criar um novo menu em memória. Este menu só existirá em memória e não será adicionado ao editor de menu no ambiente Desenho. Toda modificação realizada a este menu durante a sessão repercutirá imediatamente em todas as instâncias deste menu e em todos os processos do banco. @@ -44,4 +41,13 @@ Consulte o exemplo do comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR"). [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 408 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md index e9e56e763a7108..af526f2886e516 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-record.md @@ -45,4 +45,14 @@ O seguinte exemplo arquiva os registros que tem mais de 30 dias. Esta operação [ADD RECORD](add-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 68 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md index 22b1c3a25e96ca..97abccb6b204ac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-related-one.md @@ -23,4 +23,13 @@ Se já existe um registro relacionado, CREATE RELATED ONE atua como [RELATE ONE] #### Ver também -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 65 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md index 499b85f42c0227..ecef4c84818a95 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-selection-from-array.md @@ -47,4 +47,15 @@ Se um número de registro não é válido (registro não criado), é gerado o er [CREATE SET FROM ARRAY](create-set-from-array.md) [LONGINT ARRAY FROM SELECTION](longint-array-from-selection.md) [SELECTION TO ARRAY](selection-to-array.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 640 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md index b2eac0d9dd38f1..aa1777456d5ae5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set-from-array.md @@ -38,4 +38,14 @@ Em um array de inteiros longos, se um número de registro não for válido (regi #### Ver também [BOOLEAN ARRAY FROM SET](boolean-array-from-set.md) -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 641 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md index 2e1a7b54e88229..5e7cf8da248c51 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-set.md @@ -31,4 +31,13 @@ O seguinte exemplo cria um conjunto depois de realizar uma pesquisa, de maneira #### Ver também [CLEAR SET](clear-set.md) -[CREATE EMPTY SET](create-empty-set.md) \ No newline at end of file +[CREATE EMPTY SET](create-empty-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 116 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md index a1fc801b615c60..c5e00c444e4ccc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/create-thumbnail.md @@ -58,3 +58,13 @@ O parâmetro *profundidade* é ignorado e portanto deve ser omitido. O comando s O parâmetro opcional *profundidade* define o número de cores em Mac OS (ou seja, a profundidade de tela) a conservar na miniatura resultante. O parâmetro é um inteiro igual ao número de bits por píxel: 1, 2, 4, 8, 16 ou 32\. Introduza 0 para utilizar a profundidade de tela atual (valor padrão). **Nota:** Em Windows, se ignora o parâmetro *profundidade*; o comando sempre utiliza a profundidade de tela atual. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 679 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md index 6de34571fad047..cf2c4ea5a3a25a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-client-authentication.md @@ -70,3 +70,13 @@ Com esta configuração, não se mostra um diálogo de senha para um 4D remoto q * replicar os nomes do diretório Active nos nomes de usuário 4D e grupos, para um mapeamento automático, * mapa retorna informação para uma tabela personalizada \[users\] , * usa propriedades LDAP para conseguir credenciais de usuário. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1355 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md index 1739d399d22af2..29bd970c504cc5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando Current date retorna a data atual tal como está definida no relógio do sistema. - -**4D Server:** se passado o parâmetro asterisco (\*) durante a execução desta função em um equipo cliente 4D Client, a função devolve a data atual do servidor. +O comando Current date retorna a data atual tal como está definida no relógio do sistema.se passado o parâmetro asterisco (\*) durante a execução desta função em um equipo cliente 4D Client, a função devolve a data atual do servidor. #### Exemplo 1 @@ -97,4 +95,13 @@ O seguinte método de projeto permite fazer isso: [Day of](day-of.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 33 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md index 88ead3145d8028..b6f839bb2aaa60 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-default-table.md @@ -29,4 +29,13 @@ Desde que uma tabela padrão tenha sido estabelecida, a linha de código abaixo [DEFAULT TABLE](default-table.md) [Table](table.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 363 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md index 3e80c7d6fc0542..dae412bc2f0a47 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-name.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Current form name** retorna o nome do formulário atual definido para o processo. O formulário atual pode ser um formulário de projeto ou formulário de tabela. @@ -59,4 +56,13 @@ Se quiser obter o formulário atual se este for um formulário projeto: #### Ver também -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1298 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md index 15bef9541974ff..c98a5eac55fe0d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Current form table retorna o ponteiro para a tabela do formulário em tela ou impresso no processo atual. @@ -63,4 +60,13 @@ Para isso, utilize o método de objeto para criar a variável *vstRegistroAtual* [DIALOG](dialog.md) [FORM SET OUTPUT](form-set-output.md) [FORM SET INPUT](form-set-input.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 627 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md index 597370fac733e2..c06c90d39c556b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-form-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Current form window devolve a referência da janela do formulário atual. Se nenhuma janela tiver sido definida para o formulário atual, o comando devolve 0. @@ -26,4 +23,13 @@ A janela do formulário atual pode ser gerada automaticamente por um comando tal [Open form window](open-form-window.md) [Open window](open-window.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 827 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md index 24c9f7506f1c3e..950d6fbaa9b4e6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-machine.md @@ -29,4 +29,13 @@ Inclusive se não está correndo a versão cliente/servidor de 4D, sua aplicaç #### Ver também -[Current system user](current-system-user.md) \ No newline at end of file +[Current system user](current-system-user.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 483 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md index adc9d222da4129..824fc2b59a2889 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-name.md @@ -45,3 +45,13 @@ Este comando não pode ser chamado desde uma fórmula 4D. ```4d ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 684 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md index eeb2ea05fb4623..4b9d6984f77f83 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-method-path.md @@ -15,11 +15,18 @@ displayed_sidebar: docs #### Descrição -O comando **Current method path** devolve o caminho de acesso interna do método base, trigger, método de projeto, método formulário ou método objeto em execução. - -**Nota:** no contexto dos macro comandos 4D, a etiqueta ** é substituída pelo caminho de acesso completa do código em execução. +O comando **Current method path** devolve o caminho de acesso interna do método base, trigger, método de projeto, método formulário ou método objeto em execução.no contexto dos macro comandos 4D, a etiqueta ** é substituída pelo caminho de acesso completa do código em execução. #### Ver também [METHOD Get path](method-get-path.md) -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1201 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md index e296be6cab3857..5ad15efb8529c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process-name.md @@ -31,4 +31,13 @@ Se quiser chamar a um processo worker e passar o nome de processo de chamada com [CALL WORKER](call-worker.md) [KILL WORKER](kill-worker.md) -*Sobre Workers* \ No newline at end of file +*Sobre Workers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1392 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md index a02c4cf0bce46b..cb461afb1cfdca 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-process.md @@ -25,4 +25,13 @@ Ver os exemplos de [DELAY PROCESS](delay-process.md "DELAY PROCESS") e [PROCESS [Process number](process-number.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 322 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md index 9a9c03dd9ec8e8..3c20fac7cde9f7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-system-user.md @@ -23,4 +23,13 @@ Ver o exemplo do comando [Current machine](current-machine.md "Current machine") #### Ver também -[Current machine](current-machine.md) \ No newline at end of file +[Current machine](current-machine.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 484 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md index 886c7bc1b260df..da8bd83c8db876 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-time.md @@ -48,4 +48,13 @@ O exemplo a seguir extrai as horas, minutos e segundos da hora atual: [Milliseconds](milliseconds.md) [String](string.md) -[Tickcount](tickcount.md) \ No newline at end of file +[Tickcount](tickcount.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 178 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md index e5033e642e9bb2..4cb6af1a482d98 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/current-user.md @@ -37,4 +37,13 @@ Ver exemplo do comando [User in group](user-in-group.md). [CHANGE CURRENT USER](change-current-user.md) [CHANGE PASSWORD](change-password.md) [SET USER ALIAS](set-user-alias.md) -[User in group](user-in-group.md) \ No newline at end of file +[User in group](user-in-group.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 182 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md index 0436fa183e9cde..d92b9c105825ef 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/cut-named-selection.md @@ -35,4 +35,14 @@ O método seguinte vazia a seleção atual de uma tabela *\[Clientes\]*: [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 334 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md index 0e815cc35bae12..2919664ddee17c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file-encryption-status.md @@ -67,4 +67,13 @@ Se quiser conhecer o estado de criptografia de um arquivo de dados que correspon #### Ver também -[Encrypt data file](encrypt-data-file.md) \ No newline at end of file +[Encrypt data file](encrypt-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1609 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md index b8714a107a14e1..74dac41630f773 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/data-file.md @@ -31,4 +31,13 @@ Se você está trabalhando, por exemplo, com o banco na pasta Documentos:MeusCDs #### Ver também [Application file](application-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 490 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md index dad98365c1f5f0..5def1a8de1ff8f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/database-measures.md @@ -328,3 +328,13 @@ Queremos obter as medidas de bytes de cachê nos últimos dois minutos:  OB SET($oParams;"historyLength";2*60)  $measures:=Database measures($oParams) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1314 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md index 9959945f4d6f65..db17406c59be20 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/date.md @@ -93,4 +93,13 @@ Se quiser obter uma data de um atributo de objeto, qualquer que seja a opção a #### Ver também [Bool](bool.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 102 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md index 28094d10336975..7515274a95f03e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-number.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando Day number retorna um número que representa o dia da semana que corresponde a *data*. - -**Nota:** Day Number retorna *2* para datas nulas. +O comando Day number retorna um número que representa o dia da semana que corresponde a *data*.Day Number retorna *2* para datas nulas. 4D oferece as seguintes constantes pré-definidas: @@ -60,4 +58,13 @@ O seguinte exemplo é uma função que retorna o dia atual como uma string: #### Ver também -[Day of](day-of.md) \ No newline at end of file +[Day of](day-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 114 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md index bd89cae94b0c38..4387749a97c3be 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/day-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando Day of retorna o dia do mês de *data*. - -**Nota:** Day of retorna um valor entre 1 e 31\. Para obter o dia da semana de uma data, utilize o comando [Day number](day-number.md "Day number"). +O comando Day of retorna o dia do mês de *data*.Day of retorna um valor entre 1 e 31\. Para obter o dia da semana de uma data, utilize o comando [Day number](day-number.md "Day number"). #### Exemplo 1 @@ -37,4 +35,13 @@ Veja o exemplo para o comando [Current date](current-date.md "Current date"). [Day number](day-number.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 23 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md index 65dc837b9bf944..0230a57db5201f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/deactivated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Deactivated retorna TRUE em um método formulário de objeto quando a janela do primeiro plano do processo do primeiro plano, que contém ol formulário, passa ao segundo plano. @@ -27,4 +24,13 @@ Para que seja gerado o ciclo de execução Deactivated, tenha certeza de que o e #### Ver também [Activated](activated.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 347 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md index d74fcf4992eb88..636c296ce1ceec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dec.md @@ -29,4 +29,13 @@ O exemplo a seguir utiliza um valor monetário expresso como um número real, e #### Ver também -[Int](int.md) \ No newline at end of file +[Int](int.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 9 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md index 8a0125b1438b02..2bb64357253b34 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-blob.md @@ -33,4 +33,13 @@ Consulte os exemplos dados para o comando . #### Ver também [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 690 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md index a5a9be89563282..e660b8feb960fb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/decrypt-data-blob.md @@ -58,4 +58,13 @@ O exemplo abaixo mostra como decriptogrofar um arquivo criptografado localizado [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1774 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md index ad2d189a90e828..e792ac2036c07c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/default-table.md @@ -76,4 +76,13 @@ Neste código o resultado da tabela padrão: #### Ver também [Current default table](current-default-table.md) -[NO DEFAULT TABLE](no-default-table.md) \ No newline at end of file +[NO DEFAULT TABLE](no-default-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 46 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md index ca98364c75f280..8fd00abd169930 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delay-process.md @@ -37,4 +37,13 @@ Ver o exemplo do comando [Process number](process-number.md). #### Ver também [HIDE PROCESS](hide-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 323 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md index 7f516a7e8ed813..3f9512968bdd47 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-document.md @@ -47,4 +47,14 @@ A eliminação de um documento faz que a variável sistema assuma o valor 1\. Se #### Ver também -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 159 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md index 3aba9b29abf3b3..c4a6a08b86bb58 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-folder.md @@ -41,4 +41,14 @@ Pode interceptar estes erros usando o método isntalado pelo comando [ON ERR CAL #### Ver também -[DELETE DOCUMENT](delete-document.md) \ No newline at end of file +[DELETE DOCUMENT](delete-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 693 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md index 22f0b579a43fa5..f04df85fa56ec5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-array.md @@ -43,4 +43,13 @@ O exemplo a seguir deleta o última elemento de um array, se ele existir: #### Ver também [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 228 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md index acdbbebf466432..263b7f43341b67 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-blob.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### Ver também -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 560 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md index a751febfb9711f..dac28333363ae7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-from-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DELETE FROM LIST apaga o elemento designado pelo parâmetro *refElem* da lista cujo número de referência se passa em *lista*. @@ -44,4 +41,13 @@ O código a seguir apaga o elemento selecionado da lista *hList*. Se o elemento #### Ver também [CLEAR LIST](clear-list.md) -[GET LIST ITEM](get-list-item.md) \ No newline at end of file +[GET LIST ITEM](get-list-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 624 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md index 65bf5848296004..ce1712d94c9551 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-index.md @@ -44,4 +44,13 @@ Este exemplo ilustra as duas sintaxes do comando: [CREATE INDEX](create-index.md) [PAUSE INDEXES](pause-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 967 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md index 762c1e19ec722f..feb8af0d815702 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DELETE MENU ITEM elimina a linha de menu cujo número ou referência de menu e número de elemento você passou em *menu* e *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu.* @@ -35,4 +32,14 @@ Se omite o parâmetro *processo*, DELETE MENU ITEM é aplicado a barra de menus #### Ver também [APPEND MENU ITEM](append-menu-item.md) -[INSERT MENU ITEM](insert-menu-item.md) \ No newline at end of file +[INSERT MENU ITEM](insert-menu-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 413 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md index 9b8ec8005627ba..133140ffa816b5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-record.md @@ -41,4 +41,14 @@ O exemplo apaga um registro de um empregado. O código pergunta ao usuário o n #### Ver também [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 58 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md index d33ffa510be348..32cb7d95e7d9fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-selection.md @@ -61,4 +61,14 @@ Se for encontrado um registro bloqueado durante a execução de DELETE SELECTION [DISPLAY SELECTION](display-selection.md) [MODIFY SELECTION](modify-selection.md) *Record Locking* -[TRUNCATE TABLE](truncate-table.md) \ No newline at end of file +[TRUNCATE TABLE](truncate-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 66 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md index 3fa9e6673d7d4b..05e62b681779ff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-string.md @@ -43,4 +43,13 @@ O exemplo abaixo ilustra o uso de Delete string. Os resultados são atribuídos [Change string](change-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 232 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md index 7064df03d19516..247716475ca30a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/delete-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando [ON ERR CALL](on-err-call.md) apaga o usuário cujo número se passa em *refUsuario*. Deve passar um número válido de usuário retornado pelo comando [GET USER LIST](get-user-list.md). @@ -35,4 +32,14 @@ Se não tiver os privilégios de acesso para chamar DELETE USER ou se outro proc [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 615 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md index 86285782626c7b..2aeff1128d77ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/describe-query-execution.md @@ -65,4 +65,13 @@ $vResultPath : #### Ver também [Last query path](last-query-path.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1044 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md index 99967339ea11af..4d944a544e7811 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dialog.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comandoDIALOG apresenta o formulário *formulario* ao usuário. Este comando se designa para trabalhar com interfaces de usuário avançadas e personalizadas baseadas em formulários. Pode utilizá-lo para mostrar informação do banco de dados ou de outras localizações, ou para oferecer funcionalidades de entrada de dados. Diferente de [ADD RECORD](add-record.md) o u [MODIFY RECORD](modify-record.md), **DIALOG** lhe dá controle total sobre o formulário, seu conteúdo e os botões de navegação e validação. @@ -168,4 +165,14 @@ Depois de chamar a DIALOG, se o diálogo é aceito, a variável sistema OK toma [CALL FORM](call-form.md) [CANCEL](cancel.md) [Form](form.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 40 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md index 795a47feb6e148..1c52d1d3bba4f0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/difference.md @@ -53,4 +53,13 @@ Ao final da lista de registros há um botão com um método de objeto. O método #### Ver também [INTERSECTION](intersection.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 122 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md index a03f985c2bfbb0..97c3c68c3f838f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/disable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DISABLE MENU ITEM desativa o comando de menu cujo número ou referência de menu e número de elemento você passou em *menu* e *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu*. @@ -32,4 +29,14 @@ Se o parâmetro *menuItem* designa um submenu hierárquico, todos os elementos d #### Ver também -[ENABLE MENU ITEM](enable-menu-item.md) \ No newline at end of file +[ENABLE MENU ITEM](enable-menu-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 150 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md index 116a9011874946..5bcab9f769c808 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/discover-data-key.md @@ -48,4 +48,13 @@ Os archivos chave (arquivos de extensão ".4DKeyChain") devem ser armazenados no #### Ver também -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1639 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md index d14f82f02798c7..2c5ac6a35b4b4f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-notification.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DISPLAY NOTIFICATION mostra uma mensagem na área de notificação ao usuário: @@ -42,4 +39,13 @@ Sob Windows, é mostrada a janela da mensagem se não se detecta atividade na m #### Ver também -[ALERT](alert.md) \ No newline at end of file +[ALERT](alert.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 910 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md index 5e5adaccd5fd21..c6945f9d778f9e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DISPLAY RECORD mostra o registro atual de *tabela*, utilizando o formulário de entrada atual. O registro se mostra até que um evento provoque um redesenho da janela. Tal evento pode ser a execução de um comando ADD RECORD, o regresso ao formulário de entrada, ou a barra de menus. DISPLAY RECORD não faz nada se não houver registro atual. @@ -42,4 +39,13 @@ O exemplo a seguir mostra uma série de registros como uma apresentação de sli #### Ver também -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 105 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md index 5d7d7d20e9df64..13734cf40669a7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/display-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição DISPLAY SELECTION mostra a seleção de *tabela*, utilizando o formulário de saída. Os registros se mostram em uma lista pela qual pode ser deslocada similar ao do modo Desenho. Se o usuário fizer duplo clique em um registro, por padrão é mostrado o registro no formulário de entrada atual. A lista é mostrada na janela do primeiro plano. @@ -103,4 +100,14 @@ Também pode utilizar outros comandos, tais como [PRINT SELECTION](print-selecti *Conjuntos* [Form event code](form-event-code.md) -[MODIFY SELECTION](modify-selection.md) \ No newline at end of file +[MODIFY SELECTION](modify-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 59 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md index ec2204ba12127e..0db8771665844b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/displayed-line-number.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Displayed line number funciona unicamente no contexto do evento de formulário On Display Detail. Retorna o número da linha que estiver sendo processada enquanto uma lista de registros é mostrada em tela. Se Displayed line number for chamada quando não se mostra uma lista, retorna 0. @@ -46,4 +43,13 @@ Este exemplo lhe permite aplicar uma cor alternativa em um formulário listado m #### Ver também [Form event code](form-event-code.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 897 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md index e67cfa124aa9ea..5b944cd1fbe20f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-paths.md @@ -66,4 +66,13 @@ O array *aTPaths* obtém os elementos abaixo: #### Ver também -[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) \ No newline at end of file +[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1395 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md index 28499e776724a8..a0c61e12c5be15 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-attribute-values.md @@ -63,4 +63,13 @@ O array *aLAges* obtém os seguintes 9 elementos: #### Ver também -[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) \ No newline at end of file +[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1397 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md index 13d4ebaedda81e..d1d76bd04c4cc7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/distinct-values.md @@ -82,4 +82,13 @@ Para calcular as estatísticas, se quiser ordenar o número de valores distintos [GET TEXT KEYWORDS](get-text-keywords.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 339 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md index 5f0ba77e8eead3..cba93a12e682a8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-list.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **DOCUMENT LIST** preenche o array *documentos* de tipo texto ou alfa com os nomes dos documentos localizados na rota de acesso que se passa em *rotaAcesso*. - -**Nota**: o parâmetro *rotaAcesso* apenas aceita rotas de acesso absolutas. +O comando **DOCUMENT LIST** preenche o array *documentos* de tipo texto ou alfa com os nomes dos documentos localizados na rota de acesso que se passa em *rotaAcesso*.apenas aceita rotas de acesso absolutas. Por padrão, se você omitir o parâmetro *opções*, apenas os nomes dos documentos são retornados no array *documentos*. Você pode modificar esta passando, no parâmetro *opções*, uma ou mais das seguintes constantes, encontrado no tema *Documentos Sistema*: @@ -114,4 +112,14 @@ Lista de todos os documentos em modo recursivo Posix (relativo): #### Ver também [FOLDER LIST](folder-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 474 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md index df2f30c0888a70..ae703335030fdb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-blob.md @@ -49,4 +49,14 @@ Em cada caso, você pode interceptar o erro usando um método de interrupção [ #### Ver também [BLOB TO DOCUMENT](blob-to-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 525 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md index 9c32d261c6ea12..0d42643d59d8b1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/document-to-text.md @@ -76,4 +76,13 @@ Quando executa este código: #### Ver também *Documentos Sistema* -[TEXT TO DOCUMENT](text-to-document.md) \ No newline at end of file +[TEXT TO DOCUMENT](text-to-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1236 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md index dba01f25552cdd..60d6e1b10dce7b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md @@ -145,4 +145,13 @@ Se o conteúdo de *valorFilho* não é válido, se devolve um erro. #### Ver também [DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1080 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md index 04eca8ff070a26..f7b16c66a367a3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-append-xml-element.md @@ -27,4 +27,13 @@ Ver o exemplo do comando [DOM Insert XML element](dom-insert-xml-element.md "DOM #### Ver também -[DOM Insert XML element](dom-insert-xml-element.md) \ No newline at end of file +[DOM Insert XML element](dom-insert-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1082 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md index 1c56db879a41f7..49e956ed0e3d79 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-close-xml.md @@ -26,4 +26,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também [DOM Parse XML source](dom-parse-xml-source.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 722 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md index f416eeed1bc140..6f6e4ff16b0ef7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md @@ -51,4 +51,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também -[DOM Count XML elements](dom-count-xml-elements.md) \ No newline at end of file +[DOM Count XML elements](dom-count-xml-elements.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 727 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md index 4564267dbe7232..4e4c0a731b9d60 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-count-xml-elements.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando DOM Count XML elements devolve o número de elementos “filho” dependentes do elemento pai *refElemento* e chamado *nomeElemento*. - -**Nota:** como padrão, **DOM Count XML elements** diferencia maiúsculas de minúsculas relativas ao parâmetro *nomeElemento* (regras xml). Pode controlar se o comando diferencia maiúsculas de minúsculas usando o seletor XML DOM case sensitivity ou o comando [XML SET OPTIONS](xml-set-options.md). +O comando DOM Count XML elements devolve o número de elementos “filho” dependentes do elemento pai *refElemento* e chamado *nomeElemento*.como padrão, **DOM Count XML elements** diferencia maiúsculas de minúsculas relativas ao parâmetro *nomeElemento* (regras xml). Pode controlar se o comando diferencia maiúsculas de minúsculas usando o seletor XML DOM case sensitivity ou o comando [XML SET OPTIONS](xml-set-options.md). #### Variáveis e conjuntos do sistema @@ -28,4 +26,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também [DOM Get XML element](dom-get-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 726 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md index 72b04ce0f1e918..283b7b62e34981 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md @@ -60,4 +60,13 @@ Para isso, basta escrever: #### Ver também -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1097 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md index 4e1382b617f498..8e818553cdd55f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-element.md @@ -155,4 +155,14 @@ Um erro é gerado quando: [DOM Create XML element arrays](dom-create-xml-element-arrays.md) [DOM Get XML element](dom-get-xml-element.md) -[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) \ No newline at end of file +[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 865 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md index 997fa3fa8848d0..0a2099e4ae7073 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-create-xml-ref.md @@ -97,4 +97,14 @@ Se o comando foi executado corretamente, a variável sistema Ok assume o valor 1 #### Ver também [DOM CLOSE XML](dom-close-xml.md) -[DOM SET XML DECLARATION](dom-set-xml-declaration.md) \ No newline at end of file +[DOM SET XML DECLARATION](dom-set-xml-declaration.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 861 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md index 6d7157d1d88b26..8523d75aff7cb2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-file.md @@ -61,4 +61,14 @@ Se gera um erro quando: #### Ver também [DOM EXPORT TO VAR](dom-export-to-var.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 862 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md index c8d0ab3b962909..3fa20107d0c677 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-export-to-var.md @@ -54,4 +54,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 #### Ver também [DOM EXPORT TO FILE](dom-export-to-file.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 863 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md index 7cd3f97b5c3244..d685a1ce3d4720 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md @@ -27,4 +27,14 @@ O comando retorna como resultado a referência XML do elemento encontrado. #### Ver também -[DOM Find XML element](dom-find-xml-element.md) \ No newline at end of file +[DOM Find XML element](dom-find-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1010 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md index db3d235f98d1ae..eb84c80ade1ccc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-find-xml-element.md @@ -109,4 +109,14 @@ Um erro é gerado quando: #### Ver também [DOM Count XML elements](dom-count-xml-elements.md) -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 864 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md index efc73986615803..7eb282aa65be3d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md @@ -57,4 +57,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 #### Ver também -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 723 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md index 1f719b5993735f..7688f12f3628e4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md @@ -42,4 +42,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 925 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md index 9d7a209104ca2c..b05eaaf78de20f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md @@ -59,4 +59,14 @@ Se o comando tiver sido executado corretamente e se o elemento analisado não fo #### Ver também -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 724 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md index 90bf2926562bd0..2ac2b61469e259 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md @@ -35,4 +35,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 [DOM Get first child XML element](dom-get-first-child-xml-element.md) [DOM Get last child XML element](dom-get-last-child-xml-element.md) -[DOM Get Root XML element](dom-get-root-xml-element.md) \ No newline at end of file +[DOM Get Root XML element](dom-get-root-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 923 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md index c117dbe819b8cc..e46e4700e08d65 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md @@ -32,4 +32,14 @@ Se o comando for executado corretamente e se o elemento referenciado não for o #### Ver também -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 924 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md index e43d169191cff2..2e67d0d6e8ef62 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver também -[DOM Get parent XML element](dom-get-parent-xml-element.md) \ No newline at end of file +[DOM Get parent XML element](dom-get-parent-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1053 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md index 57d5423ac8f4fb..af1d338475f393 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md @@ -37,4 +37,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 729 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md index 153a7bdc12aefa..9cfa67bf848e3e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md @@ -48,4 +48,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 728 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md index 0b6d40b6f08edd..feb1baf4b6381f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md @@ -62,4 +62,13 @@ Depois da execução destas instruções: #### Ver também [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1081 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md index 03a57facfd40ef..ff30264939d6ab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md @@ -51,4 +51,13 @@ Neste exemplo, queremos encontrar a declaração DTD do documento XML: #### Ver também [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) \ No newline at end of file +[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1088 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md index 09ee81e735018d..67423bfffa9704 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md @@ -39,4 +39,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) \ No newline at end of file +[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 730 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md index 192253d33adb4f..13863684871834 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md @@ -42,4 +42,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) -[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) \ No newline at end of file +[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 731 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md index bf4d67e1d48b89..8d2a7e091b197d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-element.md @@ -32,4 +32,14 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 725 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md index 01372113cd689a..d3eae64e049616 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-get-xml-information.md @@ -32,4 +32,13 @@ Em *xmlInfo*, passe um código indicando o tipo de informação a ser recuperado #### Ver também -[XML GET ERROR](xml-get-error.md) \ No newline at end of file +[XML GET ERROR](xml-get-error.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 721 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md index 9bde2ee4275b23..e9d06d9076f6ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-insert-xml-element.md @@ -77,4 +77,13 @@ Para fazer isso, simplesmente execute o código abaixo: #### Ver também -[DOM Append XML element](dom-append-xml-element.md) \ No newline at end of file +[DOM Append XML element](dom-append-xml-element.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1083 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md index e2ed9e6e910ba4..22ea7aa66f5623 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-source.md @@ -91,4 +91,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 719 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md index 3d393cab625236..bd1ff5d791bb42 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md @@ -81,4 +81,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML source](dom-parse-xml-source.md) \ No newline at end of file +[DOM Parse XML source](dom-parse-xml-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 720 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md index 35f8235418c9e3..8baa050d6c257f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md @@ -43,4 +43,14 @@ O código abaixo permite remover o primeiro atributo "N=1": [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) -[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) \ No newline at end of file +[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1084 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md index b39c5db51bbcf7..fbb6bfc8af568b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-remove-xml-element.md @@ -26,4 +26,14 @@ Um erro é gerado quando o elemento de referência for inválido #### Ver também [DOM Create XML element](dom-create-xml-element.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 869 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md index 3dfeb3d734068b..9d49906145f04c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md @@ -66,4 +66,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 866 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md index da940a4688343f..57a798ad14fcc3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md @@ -36,4 +36,13 @@ O exemplo define a codificação a utilizar e a opção autônoma do elemento *e #### Ver também [DOM Create XML Ref](dom-create-xml-ref.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 859 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md index 025932fa8a60d6..a933d6c7a0c316 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md @@ -57,4 +57,14 @@ Um erro é gerado quando: #### Ver também -[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) \ No newline at end of file +[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 867 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md index 1199a84d717d98..bad1f202ecac1e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md @@ -118,4 +118,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 868 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md index 3cf567618009a4..c88446b1cacc8b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drag-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando DRAG WINDOW permite arrastar a janela na qual o usuário clica para seguindo os movimentos do mouse. Geralmente este comando se chama desde um método de objeto de um objeto que possa responder instantaneamente aos cliques do mouse (por exemplo um botão invisível). @@ -55,4 +52,13 @@ Depois pode arrastar a janela clicando em qualquer das margens. #### Ver também [GET WINDOW RECT](get-window-rect.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 452 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md index bd528b5193afb0..50987f0079c947 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-position.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Drop position pode ser utilizado para descobrir a localização, em um objeto de destino “complexo”, onde um objeto foi (arrastado e) soltado. @@ -95,4 +92,13 @@ O método de objeto de list box da esquerda (destino) contém o código abaixo: #### Ver também -*Arrastar e Soltar* \ No newline at end of file +*Arrastar e Soltar* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 608 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md index fdf0993de8ad69..553c8a85e161dc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/drop-remote-user.md @@ -42,4 +42,13 @@ Se quiser eliminar um usu\[ario remoto específico: #### Ver também [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) \ No newline at end of file +[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1633 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md index 37052dbe6300dc..6190a1d7dad2fc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/duplicate-record.md @@ -23,4 +23,14 @@ DUPLICATE RECORD pode ser executado durante a entrada de dados. Isso permite dup #### Ver também -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 225 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md index 93a8266af1cad4..d239c76021dce2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Dynamic pop up menu faz aparecer um menu suspenso hierárquico na localização atual do mouse ou na localização definida pelos parâmetros opcionais *Coordx* e *Coordy*. @@ -93,4 +90,13 @@ Este código permite criar um menu emergente dinâmico hierárquico baseado em a [Get selected menu item parameter](get-selected-menu-item-parameter.md) [Pop up menu](pop-up-menu.md) [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1006 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md index 988dd1a0d09cd0..0db1c9faf1292e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-access.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição EDIT ACCESS permite modificar o sistema de senhas. Quando se executa este comando, a janela da caixa de ferramentas que contiver as páginas Usuários e Grupos é mostrada. @@ -36,4 +33,14 @@ O exemplo abaixo mostra ao usuário a janela de gestão de usuários e grupos: #### Ver também [CHANGE CURRENT USER](change-current-user.md) -[CHANGE PASSWORD](change-password.md) \ No newline at end of file +[CHANGE PASSWORD](change-password.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 281 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md index f48743b60f50d8..7b1a6de3cc0d8d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **EDIT FORMULA** mostra o editor de fórmulas com o propósito de permitir ao usuário escrever ou modificar uma fórmula. O editor contém ao abrir: @@ -55,4 +52,14 @@ Se o usuário valida a caixa de diálogo, a variável de sistema OK toma o valor [APPLY TO SELECTION](apply-to-selection.md) [EXECUTE FORMULA](execute-formula.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 806 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md index 066804033098f6..11acd070ee608a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/edit-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **EDIT ITEM** lhe permite editar o elemento atual ou o elemento de número *item* do array ou a lista designada pelo parâmetro *objeto*. @@ -75,4 +72,13 @@ Dadas duas colunas em una list box onde os nomes das variáveis são “Array1 [GOTO OBJECT](goto-object.md) [INSERT IN LIST](insert-in-list.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 870 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md index cf70286659d668..41559f0d78838e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/enable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ENABLE MENU ITEM ativa o comando de menu cujo número ou referência de menu e número de elemento que passou em *menu* e *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu*. @@ -30,4 +27,14 @@ Se omite o parâmetro *processo*, ENABLE MENU ITEM é aplicado a barra de menus #### Ver também -[DISABLE MENU ITEM](disable-menu-item.md) \ No newline at end of file +[DISABLE MENU ITEM](disable-menu-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 149 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md index dc5187d8054c17..5664d2f2f7c4f6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-blob.md @@ -184,4 +184,13 @@ A empresa quer usar a Internet para trocar informações. Cada filial recebe inf [DECRYPT BLOB](decrypt-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 689 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md index 5a677ac439d351..6e4b0b0f023628 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-blob.md @@ -58,4 +58,13 @@ Para criptografar um arquivo texto na pasta RESOURCES no banco de dados: [Decrypt data BLOB](decrypt-data-blob.md) [ENCRYPT BLOB](encrypt-blob.md) [Encrypt data file](encrypt-data-file.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1773 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md index 14478733c3097a..bd0c5a552fa1a4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/encrypt-data-file.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Encrypt data file** se utiliza para cifrar ou cifrar novamente o arquivo de dados designado pelo parâmetro *rotaDados* associado ao parâmetro *rotaEstrutura*. Também pode ser utilizado para eliminar o cifrado do banco de dados. O comando não modifica os arquivos originais, devolve o nome de rota completo da pasta criada para respaldar o arquivo de dados original. @@ -133,4 +130,13 @@ Re-encriptar um arquivo de dados criptografado com a chave atual (por exemplo, q [Data file encryption status](data-file-encryption-status.md) [Decrypt data BLOB](decrypt-data-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1610 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md index cf95bb1d75dc74..777dc92f2261f6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-selection.md @@ -59,4 +59,13 @@ Este método de formulário é utilizado durante a impressão de um relatório. [Form event code](form-event-code.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 36 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md index e7494a4aa8a31d..45b5090f0267b2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/end-sql.md @@ -20,4 +20,13 @@ Uma sequência de instruções SQL deve estar rodeada pelas palavras chaves [Beg #### Ver também -[Begin SQL](begin-sql.md) \ No newline at end of file +[Begin SQL](begin-sql.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 949 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md index 8ca5b80aae9bcc..0edf9f6eef58f0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/equal-pictures.md @@ -41,3 +41,14 @@ Este é o código do botão **Compare**: ```4d  $equal :=Equal pictures($pict1;$pict2;$mask) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1196 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md index d74fa8745cead8..9b4965807d2a06 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/erase-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ERASE WINDOW apaga o conteúdo da janela cujo número de referência se passa em janela. @@ -29,4 +26,13 @@ No confunda ERASE WINDOW , que apaga o conteúdo de uma janela, com [CLOSE WINDO #### Ver também [GOTO XY](goto-xy.md) -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 160 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md index 9f6c52079666f5..8aee5a396ca5d8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/euro-converter.md @@ -78,3 +78,13 @@ Estes são alguns exemplos de conversões que podem ser realizadas com este coma   //Converter o valor a Liras Italianas  $EmLiras:=Euro converter($valor;French Franc;Italian Lira) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 676 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md index 917bcdcb586cde..3141602404b311 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-formula.md @@ -62,4 +62,13 @@ Se quiser executar instruções usando chamadas para comandos 4D e tabelas. Já [Command name](command-name.md) [EDIT FORMULA](edit-formula.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 63 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md index 506fefc9a455dd..ce684feba2e9bc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method-in-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando EXECUTE METHOD IN SUBFORM pode ser utilizado para executar o método de projeto *nomeMetodo no* contexto do sub formulário *objetoSubform*. @@ -77,3 +74,14 @@ Se este método foi utilizado diretamente no método do formulário Calendar, po #### Variáveis e conjuntos do sistema Se este comando é executado corretamente, a variável sistema OK toma o valor 1; do contrário toma o valor 0. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1085 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md index 95a08fcc725ccf..824a053a66e43a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-method.md @@ -31,4 +31,14 @@ Se este comando é executado corretamente, a variável sistema OK toma o valor 1 #### Ver também -[EXECUTE FORMULA](execute-formula.md) \ No newline at end of file +[EXECUTE FORMULA](execute-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1007 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md index b7a978c4a249c5..e095619a03c1f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **EXECUTE ON CLIENT** é usado para forçar a execução do método *nomeMetodo*, com lo parâmetros *param1... paramN*, se necessário, no cliente 4D registrado de nome *nomeCliente*.. O nome registrado do cliente 4D é definido pelo comando [REGISTER CLIENT](register-client.md). @@ -63,4 +60,14 @@ A variável do sistema **OK é** igual a 1 se o 4D Server recebeu corretamente o [Execute on server](execute-on-server.md) [GET REGISTERED CLIENTS](get-registered-clients.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 651 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md index 17103b6cbb70d4..5700fb5bf2119e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/execute-on-server.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Execute on server inicia um novo processo na máquina servidor (quando se chama em Cliente/Servidor) ou na mesma máquina (se é chamado em monousuário) e devolve o número deste processo. @@ -198,4 +195,13 @@ Consulte a seção *Serviços baseados nos procedimentos armazenados (exemplo)* #### Ver também [EXECUTE ON CLIENT](execute-on-client.md) -[New process](new-process.md) \ No newline at end of file +[New process](new-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 373 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md index 862b17617db220..8b9ee315356df7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/exp.md @@ -30,4 +30,13 @@ O exemplo a seguir atribui a exponencial de 1 a *vrE* (o log de *vrE* é 1): #### Ver também -[Log](log.md) \ No newline at end of file +[Log](log.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 21 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md index f2b39973c9da7d..b8bb2e3f31e972 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/expand-blob.md @@ -63,4 +63,14 @@ A variável OK é definida como 1 se o BLOB foi expandido com êxito, caso contr #### Ver também [BLOB PROPERTIES](blob-properties.md) -[COMPRESS BLOB](compress-blob.md) \ No newline at end of file +[COMPRESS BLOB](compress-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 535 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md index 98741ed80533f9..120345e0837177 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando EXPORT DATA exporta dados no arquivo *nomArquivo*. 4D pode exportar dados nos seguintes formatos: Texto, Texto de longitude fixa, XML, SYLK, DIF, DBF (dBase) e 4D. @@ -98,4 +95,14 @@ Se o usuário clicar em **Cancelar** na caixa de diálogo padrão de abrir arqui [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) -[IMPORT DATA](import-data.md) \ No newline at end of file +[IMPORT DATA](import-data.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 666 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md index b40e15b8dec331..f0edc8857be156 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando EXPORT DIF escreve os dados dos registros da seleção atual de *tabela* no processo atual. Os dados são escritos em *documento*, um documento DIF Windows ou Macintosh, no disco. @@ -51,4 +48,14 @@ OK toma o valor 1 se a exportação termina com sucesso; do contrário, toma o v [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 84 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md index b6f0be05ea2cf8..d38202ba278e8f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Export structure file** divide a estrutura atual do banco de dados 4D em um conjunto de arquivos de texto ou arquivos de imagem nativos e os armazena na *rotaPastta* especificada. Como padrão, se exporta a totalidade da estrutura do banco de dados (métodos, formulários, catálogo, etc.). Pode filtrar os conteúdos a exportar utilizando o parâmetro *opções* (ver abaixo). @@ -115,4 +112,13 @@ Se quiser exportar apenas os métodos projeto e banco de dados, e um arquivo de #### Ver também -[FORM Convert to dynamic](form-convert-to-dynamic.md) \ No newline at end of file +[FORM Convert to dynamic](form-convert-to-dynamic.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1565 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md index 9385794fe27497..48076698d54c64 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-structure.md @@ -57,4 +57,13 @@ Se quiser exportar a estrutura atual do banco de dados em formato html: #### Ver também -[IMPORT STRUCTURE](import-structure.md) \ No newline at end of file +[IMPORT STRUCTURE](import-structure.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1311 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md index 25ea417e7391ec..67639abf7a6959 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **EXPORT SYLK** escreve os dados dos registros da seleção atual de *tabela* no processo atual. Os dados são escritos em *documento*, um documento Sylk Windows ou Macintosh, no disco. @@ -51,4 +48,14 @@ OK toma el valor 1 se a exportação termina com sucesso; do contrário, toma o [EXPORT DIF](export-dif.md) [EXPORT TEXT](export-text.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 85 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md index 249a8f182183b5..69eff019a52258 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/export-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando EXPORT TEXT escreve os dados dos registros da seleção atual de *tabela* no processo atual. Os dados são escritos em *documento*, um documento de texto Windows ou Macintosh, no disco. @@ -53,4 +50,14 @@ OK toma o valor 1 se a exportação termina com sucesso; do contrário, toma o v [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 167 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md index caf1dc5518f8fe..3188bab936be9c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/false.md @@ -28,4 +28,13 @@ O exemplo atribui a variável *vbOpcoes* Falso: #### Ver também [Not](not.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 215 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md index ef806a41dc791f..a492150bef9d75 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field-name.md @@ -48,4 +48,13 @@ Este exemplo mostra um alerta. Este método passa um ponteiro a um campo: [Field](field.md) [Last field number](last-field-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 257 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md index 523bb03e1f37e9..d12591e3e5eac9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/field.md @@ -60,4 +60,13 @@ No seguinte exemplo, a variável *numCampo* for igual ao número do campo de \[T [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last field number](last-field-number.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 253 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md index 8ca3bf55f83f99..9fb57539a87ce1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-event.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FILTER EVENT** deve ser chamado desde o interior do método de gestão de eventos instalado utilizando o comando [ON EVENT CALL](on-event-call.md). @@ -41,4 +38,14 @@ Ver o exemplo do comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL"). #### Ver também -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 321 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md index 9cecce2cd79aa6..4753759c297e45 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/filter-keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição FILTER KEYSTROKE permite substituir ou caractere introduzido pelo usuário em um campo ou em uma área editável pelo primeiro caractere da string *carFiltro*. @@ -249,4 +246,13 @@ O método ObterTextoSelecionado é o seguinte: [Form event code](form-event-code.md) [Get edited text](get-edited-text.md) [Is editing text](is-editing-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 389 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md index b5ed8f61520864..eb672e566dacb8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-array.md @@ -115,4 +115,13 @@ $o1:={a10;b"xyz"} [DELETE FROM ARRAY](delete-from-array.md) [Find in sorted array](find-in-sorted-array.md) [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 230 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md index 776bd625615d19..9720c87ac8a635 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-field.md @@ -61,3 +61,13 @@ Este é um exemplo que permite verificar a existência de um valor: ``` Tenha em conta >= permite cobrir todos os casos. De fato, a função devolve um número de registro e o primeiro registro tem o número 0. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 653 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md index a258b35b1beed3..9056168b6d4627 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Find in list retorna a posição ou referência do primeiro elemento da *lista* que é equivalente à cadeia passada em *valor*. Se são encontrados vários elementos, a função também pode preencher um array *arrayElem* com a posição ou a referência de cada elemento. @@ -64,3 +61,13 @@ Dada a seguinte lista hierárquica:  $vlItemPos:=Find in list(hList;"Fecha";0;*)   //$vlItemPos igual a 0 ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 952 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md index 8462a521647eaa..733ad54efc1343 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-in-sorted-array.md @@ -72,4 +72,13 @@ Você quer encontrar o número de ocorrências das cadeias que começam por "tes [Count in array](count-in-array.md) [Find in array](find-in-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1333 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md index 1e6f3f45a5849d..a237a11a8ec8cc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/find-window.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Find window devolve (se existe) o número de referência da primeira janela “tocada” pelo ponto cujas coordenadas se passam em *esquerda e superior*. @@ -30,4 +27,13 @@ O parâmetro *parteJanela*, devolve 3 se toca a janela, caso contrário 0\. (**N #### Ver também [Frontmost window](frontmost-window.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 449 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md index 7674243a06d621..8aa157062f0048 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/first-record.md @@ -33,4 +33,14 @@ O exemplo a seguir carrega o primeiro registro da tabela \[Clientes\]: [End selection](end-selection.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 50 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md index 600bcec33bf4df..74635c5b8d7fbd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/flush-cache.md @@ -29,4 +29,13 @@ Geralmente não precisa chamar este comando, já que 4D salva modificações de #### Ver também [Get database parameter](get-database-parameter.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 297 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md index c370c5798d1ba0..36636d0bb7b687 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/focus-object.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Nota de compatibilidade Este comando só é conservado por razões de compatibilidade. Começa com a versão 12 de 4D, recomenda-se que se use o comando [OBJECT Get pointer](object-get-pointer.md). @@ -47,4 +44,13 @@ O exemplo abaixo é um método de objeto para um botão. O método de objeto mod #### Ver também -[OBJECT Get pointer](object-get-pointer.md) \ No newline at end of file +[OBJECT Get pointer](object-get-pointer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 278 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md index a626762fc1eeeb..087957e0f8e0b8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/folder-list.md @@ -25,4 +25,14 @@ Se não houver pastas na localização especificada, o comando retorna um array #### Ver também [DOCUMENT LIST](document-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 473 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md index 3e75ee9c3f752e..15d8456cf975c4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-file.md @@ -47,4 +47,13 @@ You want to make sure the font used in a text area is available on the user syst #### Ver também -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1700 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md index 8a54c622bd0774..251ee8c9849662 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-list.md @@ -74,4 +74,13 @@ Você quer obter uma lista de fontes recentes: [OBJECT SET FONT](object-set-font.md) [SET RECENT FONTS](set-recent-fonts.md) [ST SET ATTRIBUTES](st-set-attributes.md) -*Tipo de lista das fontes* \ No newline at end of file +*Tipo de lista das fontes* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 460 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md index a2363a3e8f5698..3d00f64836676c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/font-style-list.md @@ -57,4 +57,13 @@ Se quiser selecionar estilos da familia de fontes "Verdana" (se estiver disponí #### Ver também -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1362 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md index e43a43b69610d0..2b01f942ae5441 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM Convert to dynamic** converte o *nomeFormulario* (formulário clássico) a um formulário dinâmico e o devolve em um objeto. @@ -61,4 +58,13 @@ Se executar o código: #### Ver também [DIALOG](dialog.md) -[Export structure file](export-structure-file.md) \ No newline at end of file +[Export structure file](export-structure-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1570 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md index 5efdc39cff7309..ec50948e7eafe5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-edit.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **O comando FORM EDIT** abre o *formulário* associado a *Tabela* no editor 4D Form. Note que deve ter acesso ao ambiente Design, senão ocorre o erro-9804 ("Cannot open form"). @@ -43,4 +40,13 @@ Para abrir o formulário projeto *ContactList*: #### Ver também -*Design Object Access Commands* \ No newline at end of file +*Design Object Access Commands* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1749 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md index e04137b6d67aad..e7d0c9b4845819 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event-code.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Compatibilidade **Form event code** era chamado **Form event** em versões anteriores de 4D. Foi renomeado para maior claridade quando o comando [FORM Event](form-event.md), que retorna um objeto, foi adicionado. @@ -852,4 +849,13 @@ Como resultado, o retângulo vermelho segue o deslocamento da list box: [Get edited text](get-edited-text.md) [Keystroke](keystroke.md) [POST OUTSIDE CALL](post-outside-call.md) -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 388 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md index e4c0e2ab4efd7d..ac3d764cc63fc0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-event.md @@ -96,4 +96,13 @@ A list box resultado quando linhas são selecionadas: #### Ver também -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1606 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md index 2bc8b5ebe52f21..ef8bd1cbea1c7f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM Get color scheme** retorna o nome do esquema atual de cores do formulário atualmente sendo exibido . Se não houver formulário atual, o comando retorna uma string vazia. @@ -45,4 +42,13 @@ Se quiser carregar uma imagem dependendo do esquema atual do formulário: #### Ver também [Get application color scheme](get-application-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1761 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md index 8297eb20f5ab57..0181f803073fc7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-current-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM Get current page** retorna o número da página atual do formulário mostrado atualmente ou do formulário atual carregado via o comando [FORM LOAD](form-load.md). @@ -69,4 +66,13 @@ Em um formulário, se seleciona um comando de menu da barra de menu ou quando o [FORM GOTO PAGE](form-goto-page.md) [LAST PAGE](last-page.md) [NEXT PAGE](next-page.md) -[PREVIOUS PAGE](previous-page.md) \ No newline at end of file +[PREVIOUS PAGE](previous-page.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 276 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md index d49996bae4b447..cf015d50c94d97 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM GET ENTRY ORDER** devolve em *nomObjetos* os nomes ordenados dos objetos que definem a ordem de entrada do formulario. @@ -53,4 +50,13 @@ Pode excluir certos objetos da ordem de entrada: #### Ver também -[FORM SET ENTRY ORDER](form-set-entry-order.md) \ No newline at end of file +[FORM SET ENTRY ORDER](form-set-entry-order.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1469 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md index 718903559762c7..c5f3b81fa38018 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM GET HORIZONTAL RESIZING retorna as propriedades de redimensionamento horizontal do formulário atual nas variáveis *redimension*, *larguraMin* e *larguraMax*. Estas propriedades podem ser definidas para o formulário no editor de formulários em modo Desenho ou para o proceso atual através do comando [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md "FORM SET HORIZONTAL RESIZING"). #### Ver também -[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) \ No newline at end of file +[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1077 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md index 267c92983cee44..e932474749acfb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-names.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM GET NAMES** enche o array *arrayNoms* com os nomes dos formulários da aplicação. @@ -67,4 +64,13 @@ Exemplos de usos típicos: #### Ver também *Formulários* -[METHOD GET PATHS FORM](method-get-paths-form.md) \ No newline at end of file +[METHOD GET PATHS FORM](method-get-paths-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1167 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md index 6686c53f70a2e0..f968b2f8557180 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-objects.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM GET OBJECTS retorna em forma de array(s) a lista de todos os objetos presentes no formulário atual da tabela atual. Esta lista pode estar restrita à página atual do formulário. O comando pode ser utilizado com os formulários de entrada e de saída. @@ -126,4 +123,13 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list [FORM GET PROPERTIES](form-get-properties.md) *Objetos (Formulários)* -*Objetos de formulário (Acesso)* \ No newline at end of file +*Objetos de formulário (Acesso)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 898 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md index 8df93d24afdca5..1a8fdf70057109 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM GET PROPERTIES retorna as propriedades do formulário *nomForm*. @@ -43,4 +40,13 @@ O parâmetro *título* retorna o título da janela do formulário, tal como foi [FORM GET OBJECTS](form-get-objects.md) [FORM SET SIZE](form-set-size.md) -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 674 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md index 32e540326ef228..2a3f37cab0f59e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM GET VERTICAL RESIZING retorna as propriedades de redimensionamento vertical do formulário atual nas variáveis *redimension*, *alturaMin* e *alturaMax*. Estas propriedades podem ser definidas para o formulário no editor de formulários em modo Desenho ou para o processo atual através do comando [FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md "FORM SET VERTICAL RESIZING"). #### Ver também -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1078 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md index 0b3a3c99103852..bce925e0612615 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-goto-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **FORM GOTO PAGE** modifica a página atual de um formulário para mostrar a página especificada por *numPag*. @@ -50,4 +47,13 @@ O exemplo a seguir é um método de objeto para um botão que mostra uma página [FORM Get current page](form-get-current-page.md) [LAST PAGE](last-page.md) [NEXT PAGE](next-page.md) -[PREVIOUS PAGE](previous-page.md) \ No newline at end of file +[PREVIOUS PAGE](previous-page.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 247 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md index 3516f37b3f0232..e856fd0244a1eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-load.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM LOAD** se utiliza para carregar o *formulario* (projeto ou tabela) em memória com o propósito de imprimir seus dados ou analisar seus conteúdos. Só pode haver um formulário atual por processo. @@ -172,4 +169,13 @@ var $over Boolean [FORM UNLOAD](form-unload.md) [LISTBOX GET OBJECTS](listbox-get-objects.md) [OBJECT Get type](object-get-type.md) -[Print object](print-object.md) \ No newline at end of file +[Print object](print-object.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1103 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md index 0331dfb72b0176..5f97d86c279086 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-screenshot.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM SCREENSHOT** retorna um formulário em forma de imagem. Este comando aceita duas sintaxes diferentes: em função da sintaxe utilizada, você obtém ou uma imagem do formulário em execução ou uma imagem do formulário no editor de formulários. @@ -38,4 +35,13 @@ Automaticamente, o comando retorna uma captura de tela da página 1 do formulár #### Ver também -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 940 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md index 627b0b4631b692..1e8bb23d41f173 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM SET ENTRY ORDER** permite definir dinâmicamente a ordem de entrada do formulário atual para o processo atual baseado no array *nomObjetos*. @@ -55,4 +52,13 @@ Se quiser definir a ordem de entrada dos objetos no formulário baseado em seus #### Ver também -[FORM GET ENTRY ORDER](form-get-entry-order.md) \ No newline at end of file +[FORM GET ENTRY ORDER](form-get-entry-order.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1468 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md index 1fc86aca8f9990..9777ea35ccb4e2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM SET HORIZONTAL RESIZING permite modificar por programação as propriedades de redimensionamento horizontal do formulário atual. Automaticamente, estas propriedades são definidas no editor de formulários no ambiente Desenho. As novas propriedades são definidas para o processo atual; não são armazenadas com o formulário. @@ -38,4 +35,13 @@ Consulte o exemplo do comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE"). [FORM GET HORIZONTAL RESIZING](form-get-horizontal-resizing.md) [FORM SET SIZE](form-set-size.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 892 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md index 30354d32e544a4..e62531fd59c89e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-input.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM SET INPUT define o formulario de entrada atual de *tabela* para *form* ou *userForm*. O formulario deve pertencer a *tabela*. @@ -106,4 +103,13 @@ o que retorna: [MODIFY RECORD](modify-record.md) [MODIFY SELECTION](modify-selection.md) [Open window](open-window.md) -[QUERY BY EXAMPLE](query-by-example.md) \ No newline at end of file +[QUERY BY EXAMPLE](query-by-example.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 55 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md index 59bd5d2e057771..c10a3926f181d8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-output.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM SET OUTPUT define o formulário de salida atual de *formulario* ou *formUsuario*. O formulário deve pertencer a *tabela*. @@ -71,4 +68,13 @@ Os exemplos abaixo usam a rota a um formulário json para imprimir os registros [FORM SET INPUT](form-set-input.md) [MODIFY SELECTION](modify-selection.md) [PRINT LABEL](print-label.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 54 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md index 87189d4d8b3321..1259bc2f32b9f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-size.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM SET SIZE lhe permite modificar o tamanho do formulário atual por programação. O novo tamanho é definido pelo processo atual; não está armazenado com o formulário. @@ -123,4 +120,13 @@ O método de objeto associado com este botão é o seguinte: #### Ver também [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 891 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md index 334b710e1ff969..fb45feca6a89b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando FORM SET VERTICAL RESIZING lhe permite modificar por programação as propriedades de redimensionamento vertical do formulário atual. Automaticamente estas propriedades são definidas no editor de formulários no ambiente Desenho. As novas propriedades são definidas para o processo atual; não são armazenadas com o formulário. @@ -38,4 +35,13 @@ Consulte o exemplo do comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE"). [FORM GET VERTICAL RESIZING](form-get-vertical-resizing.md) [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET SIZE](form-set-size.md) \ No newline at end of file +[FORM SET SIZE](form-set-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 893 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md index a65a82f645c4c7..bcbdd3d8f42da6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form-unload.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **FORM UNLOAD** libera da memória o formulário atual designado utilizando o comando [FORM LOAD](form-load.md). @@ -23,4 +20,13 @@ Chamar este comando é necessário quando se utiliza o comando [FORM LOAD](form- #### Ver também -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1299 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md index 9e64c134c0deb4..1f81f67303fa15 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/form.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Form** devolve o objeto associado com o formulário atual, se houver. 4D associa automaticamente um objeto ao formulário atual nos casos abaixo: @@ -99,4 +96,13 @@ Se os valores forem editados e o botão OK button for clicaod, o campo é atuali #### Ver também -[DIALOG](dialog.md) \ No newline at end of file +[DIALOG](dialog.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1466 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md index b2448f5282baf7..bbc335c68882b8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Frontmost process devolve o número do processo cuja janela (ou janelas) estão no primeiro plano. @@ -35,4 +32,13 @@ Ver o exemplo para [BRING TO FRONT](bring-to-front.md "BRING TO FRONT"). #### Ver também [BRING TO FRONT](bring-to-front.md) -[WINDOW LIST](window-list.md) \ No newline at end of file +[WINDOW LIST](window-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 327 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md index fa016a10ad1273..48e7928c439c50 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/frontmost-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Frontmost window devolve o número de referência da janela localizada no primeiro plano. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver também [Frontmost process](frontmost-process.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 447 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md index 26753b6c5ad5a3..c65696ae3d48dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-certificate-request.md @@ -85,4 +85,13 @@ Este es o método do botão **Gerar** #### Ver também [GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 691 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md index 1c8831e8d882c9..e9859acd11c372 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-digest.md @@ -83,4 +83,13 @@ Esses exemplos ilustram como recuperar a chave digest de um texto: [BASE64 ENCODE](base64-encode.md) [Generate password hash](generate-password-hash.md) *Protocolo de segurança* -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1147 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md index a12b08be2b5801..6f72d468ba13f3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-encryption-keypair.md @@ -51,4 +51,13 @@ Ver o exemplo do comando [ENCRYPT BLOB](encrypt-blob.md). [DECRYPT BLOB](decrypt-blob.md) [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 688 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md index d54ffad108af4c..09f15493d6fe1f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-password-hash.md @@ -66,4 +66,13 @@ Este exemplo gera um hash de senha utilizando bcrypt com um fator de custo 4. [Generate digest](generate-digest.md) -[Verify password hash ](verify-password-hash.md) \ No newline at end of file +[Verify password hash ](verify-password-hash.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1533 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md index 9d8f734fa7a3b0..f51bd6ef7fe365 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/generate-uuid.md @@ -29,3 +29,13 @@ Geração de um UUID em uma variável:  var MyUUID : Text  MyUUID:=Generate UUID ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1066 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md index 9aba3798011a58..fca3daa6d71df0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-file.md @@ -68,4 +68,13 @@ Se quiser obter a rota do último arquivo de backup: #### Ver também -[File](file.md) \ No newline at end of file +[File](file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1418 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md index d21f320ef74248..953b4971f5c8ef 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-4d-folder.md @@ -53,8 +53,9 @@ Aplicações em ambiente 4D usar a pasta específica para armazenar as seguintes Com as principais aplicações 4D (4D e 4D Server), a pasta 4D ativa chamada **4D** e está localizada por padrão no seguinte local: -* No Windows 7 e seguintes: *{Disco}:\\Usuarios\\* *<* *nomeUsuario\>\\AppData\\Roaming\\* ** -* No OS X: *{Disco}:Usuarios:* *<* *nomeUsuario* *\>:Library:Application Support:<* *nomeBanco* *\>* +* Windows: *{Disk}:\\Users\\{userName}\\AppData\\Roaming\\{applicationName}* +* macOS: *{Disk}:Users:{userName}:Library:Application Support:{applicationName}* + ##### Pasta Licenças @@ -210,4 +211,14 @@ Se o parâmetro *pasta* não é válido ou se o endereço de acesso retornado é [System folder](system-folder.md) [Temporary folder](temporary-folder.md) [Test path name](test-path-name.md) -[WEB SET ROOT FOLDER](web-set-root-folder.md) \ No newline at end of file +[WEB SET ROOT FOLDER](web-set-root-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 485 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md index f9aa7e2ea6d1f9..192fb55f6d78d1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) *Gerenciar prioridades em cache de banco de dados* -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1428 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md index 39aec83b7f68e9..d33672f3150cd9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) *Gerenciar prioridades em cache de banco de dados* -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1427 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md index 7667773a14adda..6bf5252c6463ce 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md @@ -26,4 +26,13 @@ Os tipos de campos de dados escalares incluem campos de tipo data/hora, numéric [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) *Gerenciar prioridades em cache de banco de dados* -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1426 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md index 47387e66f6cd0a..7a6e9c32143f16 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET ALLOWED METHODS retorna, em *arrMetodos*, os nomes dos métodos que possam ser utilizados para escrever fórmulas. Estes métodos estão listados ao final da lista de comandos no editor. @@ -45,4 +42,13 @@ Este exemplo autoriza um conjunto de métodos específicos para criar um relató #### Ver também -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 908 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md index ceb3beb8941271..a6ac783c53920d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-application-color-scheme.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Get application color scheme** retorna o nome do esquema de cor atual para uso ao nível da aplicação. @@ -45,4 +42,13 @@ Veja a descrição do comando [SET APPLICATION COLOR SCHEME](set-application-col #### Ver também [FORM Get color scheme](form-get-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1763 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md index 201f4f0631ceb6..c2f1a9cde637d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-assert-enabled.md @@ -23,4 +23,13 @@ Automaticamente, as asserções estão ativas mas é possível desativá-las uti [ASSERT](assert.md) [Asserted](asserted.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1130 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md index fb939979564e2a..9afc11e9aa63eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-automatic-relations.md @@ -31,4 +31,13 @@ Consulte o exemplo do comando [GET FIELD RELATION](get-field-relation.md "GET FI [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 899 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md index e67246bf0a37ae..7acdd083bd1c0e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-cache-size.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descrição -O comando **Get cache size** devolve, em bytes, o tamanho atual da cache do banco de dados. - -**Nota:** este comando só funciona em modo local (4D Server e 4D); não deve ser utilizado com 4D em modo remoto. +O comando **Get cache size** devolve, em bytes, o tamanho atual da cache do banco de dados.este comando só funciona em modo local (4D Server e 4D); não deve ser utilizado com 4D em modo remoto. #### Exemplo @@ -25,4 +23,13 @@ Ver exemplo de comando [SET CACHE SIZE](set-cache-size.md). #### Ver também -[SET CACHE SIZE](set-cache-size.md) \ No newline at end of file +[SET CACHE SIZE](set-cache-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1432 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md index 0d6890c863b710..447cbc9761d7f3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get current printer devolve o nome da impressora atual definida na aplicação 4D. Como padrão, ao iniciar 4D, a impressora atual é a impressora definida no sistema. @@ -33,4 +30,13 @@ Se não tiver uma impressora instalada, um erro é gerado #### Ver também [PRINTERS LIST](printers-list.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 788 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md index 6060e19290c47a..99f904495c72f7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-localization.md @@ -51,4 +51,13 @@ O idioma atual do banco de dados pode ser usada para determinar a pasta. lproj o #### Ver também [Localized document path](localized-document-path.md) -[SET DATABASE LOCALIZATION](set-database-localization.md) \ No newline at end of file +[SET DATABASE LOCALIZATION](set-database-localization.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1009 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md index 23902c45067e10..0e9f59180eabb5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-database-parameter.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Get database parameter** permite obter o valor atual de um parâmetro do banco 4D. Quando o valor do parâmetro é uma cadeia de caracteres, é retornado o o parâmetro *valorAlfa*. @@ -134,4 +131,13 @@ Em [Método banco de dados On Startup](metodo-banco-de-dados-on-startup.md), pod [DISTINCT VALUES](distinct-values.md) [Application info](application-info.md) [QUERY SELECTION](query-selection.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 643 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md index 8e5255eeee3acf..3d34923c2c8c74 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-default-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get default user retorna o número de referência único do usuário designado como “Usuário por padrão” na caixa de diálogo de Preferências do banco: @@ -24,3 +21,13 @@ displayed_sidebar: docs Se nenhum usuário por padrão estiver definido, o comando retorna 0. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 826 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md index befaaec24e6ed7..b6f911013bbeaf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-icon.md @@ -26,3 +26,14 @@ Se passa uma string vazia em *rotaDoc*, aparece a caixa de diálogo padrão de a Passe em *ícone* um campo ou uma variável imagem 4D. Depois da execução do comando, este parâmetro contém o ícone do arquivo (formato PICT). O parâmetro opcional *tamanho* permite indicar as dimensões em píxels do ícone. Este valor representa o comprimento do quadrado incluindo o ícone. Geralmente, os ícones são definidos de 32x32 píxels (“ícones longos”) ou 16x16 píxels (“ícones pequenos”). Se passa 0 ou omite este parâmetro, o comando retorna o ícone mais grande disponível. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 700 | +| Thread-seguro | ✓ | +| Modificar variáveis | Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md index 79c40e1f7c3a96..fe1f65f5e67d5a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-position.md @@ -24,4 +24,13 @@ Get document position devolve a posição, a partir do início do documento, ond [RECEIVE PACKET](receive-packet.md) [SEND PACKET](send-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 481 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md index 2271a553eb749b..a2026749c9a10f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-properties.md @@ -209,4 +209,14 @@ Quando esse método tiver sido implementado no banco de dados, nóste mos todo o #### Ver também -[SET DOCUMENT PROPERTIES](set-document-properties.md) \ No newline at end of file +[SET DOCUMENT PROPERTIES](set-document-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 477 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md index 0b6d7a4f01eadb..0ad0324364a6f7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-document-size.md @@ -28,4 +28,14 @@ Em Macintosh, se não passa o parâmetro opcional *\**, se retorna o tamanho do [Get document position](get-document-position.md) [SET DOCUMENT POSITION](set-document-position.md) -[SET DOCUMENT SIZE](set-document-size.md) \ No newline at end of file +[SET DOCUMENT SIZE](set-document-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 479 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md index 19f548dbc0786c..e9008ee2430085 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-edited-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get edited text é utilizado principalmente com o evento de formulário On After Keystroke para recuperar o texto a medida em que é introduzido. Também pode ser utilizado com o evento de formulário On Before Keystroke. Para maior informação sobre estes eventos de formulário, por favor consulte a descrição do comando [Form event code](form-event-code.md). @@ -68,4 +65,13 @@ End if #### Ver também [Form event code](form-event-code.md) -[Is editing text](is-editing-text.md) \ No newline at end of file +[Is editing text](is-editing-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 655 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md index 4c6d4387866bee..a215e61112428e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-external-data-path.md @@ -30,4 +30,13 @@ Este comando devolve uma cadeia vazia nos seguintes casos: #### Ver também -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1133 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md index 09a362fd4e1555..d877976521d3e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-entry-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET FIELD ENTRY PROPERTIES retorna as propriedades de entrada de dados para o campo especificado por *numTabela* e *numCampo* ou por *pontCampo*. @@ -43,4 +40,13 @@ Se nenhuma lista estiver associada ao campo ou se o tipo do campo não permitir [GET FIELD PROPERTIES](get-field-properties.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[GET TABLE PROPERTIES](get-table-properties.md) \ No newline at end of file +[GET TABLE PROPERTIES](get-table-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 685 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md index cec827f19d2dc6..965c10b2671add 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-properties.md @@ -72,4 +72,13 @@ Este exemplo recupera nas variáveis *vTipo*, *vTamanho*, *vIndice*, *vUnico* e [Field](field.md) [Field name](field-name.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 258 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md index c3d1f0706ae4a5..be28c994e7267a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-relation.md @@ -91,4 +91,13 @@ O código a seguir ilustra as diferentes possibilidades oferecidas pelos comando [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET RELATION PROPERTIES](get-relation-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 920 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md index d7a49055230078..6fb84100bf1d85 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-field-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET FIELD TITLES preenche os arrays *titulosCampos* e *numCampos* com os nomes e os números dos campos da *Tabela*. Os conteúdos desses dois arrays estão sincronizados. @@ -31,4 +28,13 @@ Em ambos casos, o comando não retorna campos invisíveis. #### Ver também [GET TABLE TITLES](get-table-titles.md) -[SET FIELD TITLES](set-field-titles.md) \ No newline at end of file +[SET FIELD TITLES](set-field-titles.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 804 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md index 32a8a68f8690c7..a2c175974d2672 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get file from pasteboard devolve a rota de acesso absoluto de um arquivo incluído em uma operação de arrastar e soltar. Vários arquivos podem ser selecionados e movidos simultâneamente. O parâmetro *indiceN* são utilizados para designar um arquivo entre um conjunto de arquivos selecionados. @@ -43,4 +40,13 @@ O exemplo a seguir pode ser utilizado para recuperar em um array todas as rotas #### Ver também -[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) \ No newline at end of file +[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 976 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md index 837ef4df0b45e3..f993cd1869281e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-access.md @@ -34,4 +34,13 @@ Se qusier verificar se o usuário atual pertence ao grupo "plugins": #### Ver também -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1738 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md index 29d9b6549b0456..e5e133b1b12cc0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GET GROUP LIST preenche os arrays *nomGrupos e numGrupos* com os nomes e os números de referência únicos dos grupos tais como aparecem no editor de senhas. @@ -34,4 +31,14 @@ Se não tiver privilégios de acesso para chamar ao comando GET GROUP LIST ou se [GET GROUP PROPERTIES](get-group-properties.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 610 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md index 11aafdf840bcd1..345705ba9c7b69 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-group-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GET GROUP PROPERTIES retorna as propriedades do grupo cujo número de referência único de ID de grupo pode passar em *GrupoID*. Deve passar o número de referência do grupo retornado pelo comando [GET GROUP LIST](get-group-list.md). @@ -41,4 +38,14 @@ Se não tiver privilégios de acesso para chamar ao comando GET GROUP PROPERTIES [GET GROUP LIST](get-group-list.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 613 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md index 182cb720646607..b8357b7091795d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlight.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET HIGHLIGHT permite determinar o texto selecionado atualmente em *objeto*. @@ -64,4 +61,13 @@ Modificação do estilo do texto ressaltado: [FILTER KEYSTROKE](filter-keystroke.md) [HIGHLIGHT TEXT](highlight-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 209 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md index 005b2c4f30148e..f7014c87bad8db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-highlighted-records.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET HIGHLIGHTED RECORDS guarda, no conjunto designado pelo parâmetro *nomConjunto,* os registros selecionados (ou seja, os registros selecionados pelo usuário no formulário listado) da *tabela* passada como parâmetro. Se o parâmetro *tabela* for omitido, é utilizada a tabela do formulário ou do subformulário atual. @@ -45,4 +42,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 #### Ver também -[HIGHLIGHT RECORDS](highlight-records.md) \ No newline at end of file +[HIGHLIGHT RECORDS](highlight-records.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 902 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md index 29d584d634bc12..d6ced947466e24 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-indexed-string.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get indexed string devolve: @@ -40,4 +37,14 @@ Se o recurso for encontrado, OK toma o valor 1, do contrário assume o valor 0 ( [Get string resource](get-string-resource.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 510 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md index 4faf0132588ff3..18c623b7e80506 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-last-update-log-path.md @@ -24,4 +24,13 @@ Este comando está destinado a ser utilizado em um processo de atualização aut #### Ver também [RESTART 4D](restart-4d.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1301 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md index 0ea2f408eb20cf..1c79243568dbd4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get list item font retorna o nome da fonte do caractere atual do elemento especificado pelo parâmetro *RefElem* da lista cujo número de referência o nome de objeto se passa em *lista*. @@ -33,4 +30,13 @@ Finalmente, pode passar \* em *refElem*: neste caso, o comando se aplicará ao e #### Ver também -[SET LIST ITEM FONT](set-list-item-font.md) \ No newline at end of file +[SET LIST ITEM FONT](set-list-item-font.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 954 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md index 27ce8ad90bfe99..30797f93f24f0a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET LIST ITEM ICON retorna, em *ícone*, o ícone associado ao elemento cujo número de referencia se passa em *refElem* da lista cujo número de referencia o nome de objeto passa em *lista*. @@ -40,4 +37,13 @@ Se nenhum ícone está associado ao elemento, a variável ícone seja retornada #### Ver também [GET LIST ITEM PROPERTIES](get-list-item-properties.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 951 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md index fbd6c6ccb19bea..85f6e23dd165f5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **GET LIST ITEM PARAMETER ARRAYS** permite recuperar somente em uma chamada o conjunto dos parâmetros (também como, opcionalmente, seus valores) associados ao elemento *refElemento* da lista hierárquica cuja referencia ou nome de objeto se passou no parâmetro *lista*. @@ -77,4 +74,13 @@ Caso também queiras obter os valores dos parâmetros, escreva: #### Ver também -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1195 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md index 50867bc8da3c5d..f21c9bfaaec489 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comandoGET LIST ITEM PARAMETER retorna o nome da fonte do caractere atual do elemento especificado pelo parâmetro *refElem* da lista cujo número de referência o nome de objeto se passa em *lista*. @@ -37,4 +34,13 @@ Em *seletor*, pode passar a constante Additional text ou a constante de ação p #### Ver também *Listas hierárquicas* -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 985 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md index edcb8403632285..aa747e853be658 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **GET LIST ITEM PROPERTIES** retorna o nome da fonte do caractere atual do elemento especificado pelo parâmetro *refElem* da lista cujo número de referência o nome de objeto se passa em *lista*. @@ -53,4 +50,13 @@ Para maior informação sobre estas propriedades, consulte a descrição do coma [GET LIST ITEM](get-list-item.md) [GET LIST ITEM ICON](get-list-item-icon.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 631 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md index 50883846e06565..43dd3dfda9f015 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET LIST ITEM retorna a informação sobre o elemento especificado por *posiçaoElem* da lista cujo número de referencia ou nome de objeto se passa em *lista*. @@ -67,4 +64,13 @@ Consulte o exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST [List item position](list-item-position.md) [Selected list items](selected-list-items.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 378 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md index d03a47f171aa85..5d990de25bd1df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET LIST PROPERTIES retorna informação sobre a lista cujo número de referência se passa em *lista*. @@ -39,4 +36,13 @@ Para uma completa descrição da aparência, ícones de knots, altura de linha m #### Ver também -[SET LIST PROPERTIES](set-list-properties.md) \ No newline at end of file +[SET LIST PROPERTIES](set-list-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 632 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md index 0e7d70c1c15126..074f9f6e569a7d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET MACRO PARAMETER retorna, no parâmetro *paramText*, uma parte ou a totalidade do texto do método desde o qual é chamado. @@ -37,4 +34,13 @@ Consulte o exemplo do comando [SET MACRO PARAMETER](set-macro-parameter.md "SET #### Ver também -[SET MACRO PARAMETER](set-macro-parameter.md) \ No newline at end of file +[SET MACRO PARAMETER](set-macro-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 997 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md index 52fee4a3bcfb88..2c242c03e3f207 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-bar-reference.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Get menu bar reference** devolve a identificação única da barra de menus atual ou da barra de menus de um processo específico. @@ -41,4 +38,13 @@ Consulte o exemplo do comando [GET MENU ITEMS](get-menu-items.md "GET MENU ITEMS #### Ver também -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 979 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md index 500f6daf05da6b..af8b64103ee0fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET MENU ITEM ICON devolve, na variável *refIcone*, a referencia do ícone associado a linha de menu designada pelos parâmetros *menu* e *menuItem*. Esta referência é o nome ou número da imagem na biblioteca de imagens. @@ -35,4 +32,13 @@ Se nenhum ícone está associado a linha de menu, o comando devolve uma imagem v #### Ver também -[SET MENU ITEM ICON](set-menu-item-icon.md) \ No newline at end of file +[SET MENU ITEM ICON](set-menu-item-icon.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 983 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md index f78091b4fa8bdf..effde0a5395849 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-key.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item key devolve o código do atalho **Ctrl** (Windows) ou **Comando** (Mac OS) para o comando de menu cujo número ou referência de menu se passa em *menu* e cujo número de comando se passa em *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu.* @@ -49,4 +46,14 @@ Para obter um atalho associado com um comando de menu, é útil implementar uma #### Ver também [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 424 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md index fe92a7d8c78518..dce29c94d5d726 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item mark devolve a marca da linha de menu cujo número ou referência de menu e número de linha se passam em *menu* e *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu.* @@ -41,4 +38,14 @@ O exemplo a seguir exemplo inverte a marca de uma linha de menu: #### Ver também -[SET MENU ITEM MARK](set-menu-item-mark.md) \ No newline at end of file +[SET MENU ITEM MARK](set-menu-item-mark.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 428 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md index f8a5e5fdabe47b..dfc607bcbe212b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item method devolve o nome do método de projeto 4D associado a linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -31,4 +28,13 @@ O comando devolve o nome do método 4D como uma cadeia de caracteres (expressão #### Ver também -[SET MENU ITEM METHOD](set-menu-item-method.md) \ No newline at end of file +[SET MENU ITEM METHOD](set-menu-item-method.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 981 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md index e3f14f099843c9..343937e1b517df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item modifiers devolve os modificadores adicionais associados aos atalhos de teclado padrão da linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -53,4 +50,13 @@ Consulte o exemplo do comando [Get menu item key](get-menu-item-key.md "Get menu #### Ver também [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 980 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md index 22044fdf372010..73de5b1a1140a6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item parameter devolve a cadeia de caracteres personalizada associada a linha de menu designada pelos parâmetros *menu* e *menuItem*. Esta cadeia deve ter sido definida previamente utilizando o comando [SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER"). @@ -26,4 +23,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get selected menu item parameter](get-selected-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1003 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md index 29281ddddf6247..2830c39db7f1ac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comandoGET MENU ITEM PROPERTY devolve, no parâmetro *valor*, o valor atual da linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -34,4 +31,13 @@ Nota de compatibilidade: Como padrão, se o valor da variável não for digitado #### Ver também -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 972 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md index 2e914897fbfd62..adae1c67cc7119 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item style devolve o estilo de fonte da linha de menu cujo número ou referência se passa em *menu* e cujo número de elemento é passado em *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu.* @@ -48,4 +45,14 @@ Para provar se um elemento de menu é mostrado em negrito, escreve: #### Ver também -[SET MENU ITEM STYLE](set-menu-item-style.md) \ No newline at end of file +[SET MENU ITEM STYLE](set-menu-item-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 426 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md index e45e5fe7f80987..ba68e4bc880703 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-item.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu item devolve o texto do comando de menu cujos números de menu e de comando são passados em *menu* e *menuItem*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu*. @@ -30,4 +27,14 @@ Se omite o parâmetro *processo*, Get menu item é aplicado a barra de menus do #### Ver também [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM](set-menu-item.md) \ No newline at end of file +[SET MENU ITEM](set-menu-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 422 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md index 6f0e944f3d7997..f45bfeef1f030b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET MENU ITEMS devolve, nos arrays *arrayTitMenus* e *arraysRefMenus*, os títulos e identificadores de todas as linhas de menu ou da barra de menus designada pelo parâmetro *menu*. @@ -36,3 +33,13 @@ Imagine que queira conhecer o conteúdo da barra de menu do processo atual:  RefBarMenu:=Get menu bar reference(Frontmost process)  GET MENU ITEMS(RefBarMenu;arrayTitMenus;arraysRefMenus) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 977 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md index b7024252f8602b..9271370ac1c4ee 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-menu-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get menu title devolve o título do menu cujo número ou referência é passada em *menu.* @@ -28,4 +25,14 @@ Se omite o parâmetro *processo*, Get menu title é aplicado à barra de menus d #### Ver também -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 430 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md index cb8c874788f4ca..99626aefef6145 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-missing-table-names.md @@ -31,4 +31,13 @@ Quando tiver identificado as tabelas faltantes do banco, pode reativá-las atrav #### Ver também -[REGENERATE MISSING TABLE](regenerate-missing-table.md) \ No newline at end of file +[REGENERATE MISSING TABLE](regenerate-missing-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1125 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md index c571b8a4a10349..2bd8b3b971d33d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PASTEBOARD DATA TYPE permite obter a lista dos tipos de dados presentes na área de transferência. Este comando geralmente deve ser utilizado no contexto de uma operação arrastar e soltar, nos eventos de formulário On Drop ou On Drag Over do objeto de destino. Mais particularmente, permite verificar a presença de um tipo de dados específico na área de transferência. @@ -39,4 +36,13 @@ Para maior informação sobre os tipos de dados suportados, consulte a seção * #### Ver também -*Gerenciar área de transferência* \ No newline at end of file +*Gerenciar área de transferência* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 958 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md index 9e66fdee31116c..d46d07d34a8cd0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pasteboard-data.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PASTEBOARD DATA devolve no campo ou variável de tipo BLOB ou na variável *dados*, os dados que se encontram na área de transferência e cujo tipo se passa em *tipoDados*.(Se a cópia contiver texto copiado dentro de 4D, então o conjunto de caracteres do BLOB é provavelmente UTF-16) @@ -55,4 +52,14 @@ Se os dados são extraídos corretamente, a variável OK toma o valor 1; do cont [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 401 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md index 94a345f842b284..4a036a4914945c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-file-name.md @@ -24,4 +24,13 @@ Se a imagem nao tiver um nome por defeito, o comando devolve uma cadeia vazia. #### Ver também -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1171 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md index 89d920cae2e679..1cec3d3197241c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-formats.md @@ -47,4 +47,13 @@ Se quiser saber os formatos de imagem armazenados em um campo para o registro at #### Ver também - \ No newline at end of file + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1406 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md index 022030a7599e40..5490972365621e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-library.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PICTURE FROM LIBRARY devolve no parâmetro *imagem* a imagem da biblioteca de imagens cujo número de referência se passa em *refImag* ou cujo nome se passa em *nomImag*. @@ -55,4 +52,14 @@ Se não houver suficiente memória para devolver a imagem, se gera o erro -108\. [PICTURE LIBRARY LIST](picture-library-list.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 565 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md index 9abebcb3159a47..53c9a0a3d1dee3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GET PICTURE FROM PASTEBOARD devolve a imagem presente na área de transferência no campo ou variável imagem *imagem*. @@ -42,4 +39,14 @@ Se a imagem for extraída corretamente, OK toma o valor 1; do contrário OK toma [GET PASTEBOARD DATA](get-pasteboard-data.md) [Get text from pasteboard](get-text-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 522 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md index 39f49395329638..bd3c5a18d34a81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-keywords.md @@ -32,4 +32,13 @@ Caso a imagem não contém palavras-chaves ou metadados IPTC/Keywords, o comando #### Ver também [GET PICTURE METADATA](get-picture-metadata.md) -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1142 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md index 293b99d6f3ee43..04e2369f630125 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-metadata.md @@ -99,4 +99,14 @@ La variable sistema *OK* devolve 1 se a recuperación dos metadados es correta e [GET PICTURE KEYWORDS](get-picture-keywords.md) *Picture Metadata Names* *Picture Metadata Values* -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1122 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md index 117518763b06b5..b264b34c511ce4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-picture-resource.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PICTURE RESOURCE retorna no campo ou na variável *resDados* a imagem guardada no recurso imagem (“PICT”) cujo número se passa em *resNum*. @@ -43,4 +40,14 @@ Se não houver memória suficiente para carregar a imagem, um erro é gerado. Po #### Ver também -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 502 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md index a2155febe7ad4a..ddbcbf92b3c29b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get plugin access retorna o nome do grupo de usuários autorizados a utilizar o *plug-in* cujo número se passa no parâmetro *plugIn*. Se nenhum grupo estiver associado ao plug-in, o comando retorna uma cadeia vazia (""). @@ -35,4 +32,13 @@ Passe no parâmetro *plugIn* o número do plug-in do que deseja conhecer o grupo #### Ver também [SET GROUP ACCESS](set-group-access.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 846 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md index 99eb5266e76270..63feca5a36499d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-pointer.md @@ -49,4 +49,13 @@ Usando ponteiros para elementos de arrays bi-dimensionais: #### Ver também [Field](field.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 304 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md index cedc35a2889522..d267a5b99cc2c3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-marker.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get print marker permite obter a posição atual de um marcador durante uma impressão. @@ -62,4 +59,13 @@ Consulte o exemplo do comando [SET PRINT MARKER](set-print-marker.md). #### Ver também [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 708 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md index ee6b28a559a1d9..d83d75aef82ada 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **GET PRINT OPTION** devolve os valores atuais de uma opção de impressão. @@ -51,4 +48,14 @@ A variável sistema OK toma o valor 1 se o comando tiver sido executado corretam #### Ver também [PRINT OPTION VALUES](print-option-values.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 734 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md index 3793755dfdecb4..42a2d9d2e8bd73 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Get print preview** devolve True se o comando [SET PRINT PREVIEW](set-print-preview.md) foi chamado com o valor **True** no processo atual. @@ -25,4 +22,13 @@ Note que o usuário pode modificar esta opção antes de validar a caixa de diá #### Ver também [Is in print preview](is-in-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1197 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md index d60f01fa334e87..17b01266d70b39 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PRINTABLE AREA devolve o tamanho em píxels da área de impressão nos parâmetros *altura* e *largura* ou tamanho. Este tamanho depende dos parâmetros de impressão atuais, a orientação do papel, etc. @@ -40,4 +37,13 @@ Para saber o tamanho total da página, pode: #### Ver também [GET PRINTABLE MARGIN](get-printable-margin.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 703 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md index 2cb52cecbeee6b..2acba6815b4abc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PRINTABLE MARGIN devolve os valores atuais das diferentes margens definidas utilizando o comando [Print form](print-form.md) [PRINT SELECTION](print-selection.md) e [PRINT RECORD](print-record.md).. @@ -45,4 +42,13 @@ Por padrão, em 4D o cálculo das impressões é realizada baseada nas “margen [GET PRINTABLE AREA](get-printable-area.md) [Print form](print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 711 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md index 091b7b6bfab235..c7a021d6ace4a1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-printed-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get printed height devolve a altura global (em píxels) da seção impressa pelo comando [Print form](print-form.md). @@ -32,4 +29,13 @@ As margens de impressão direita e esquerda não influem no valor devolvido, dif [GET PRINTABLE AREA](get-printable-area.md) [Print form](print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 702 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md index 9707fed1729dcd..d1add50e0a2509 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET PROCESS VARIABLE lê o valor de as variáveis processo *srcVar* (*srvVar2*, etc.) desde o processo fonte cujo número se passa em *processo* e devolve seus valores atuais nas variáveis *dstVar* (*dstVar2*, etc.) do processo atual. @@ -119,4 +116,13 @@ Ver o exemplo do comando DRAG AND DROP PROPERTIES. [POST OUTSIDE CALL](post-outside-call.md) *Processos* [SET PROCESS VARIABLE](set-process-variable.md) -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 371 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md index 64a223f3c67d83..1c65bd49199b1c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-destination.md @@ -55,4 +55,13 @@ Queremos modificar temporariamente o destino de pesquisa e restabelecer os parâ #### Ver também -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1155 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md index 561249d9079639..46c327ab62610d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-query-limit.md @@ -23,4 +23,13 @@ Por defeito, caso nenhum limite tenha sido definido, o comando devolve 0. #### Ver também -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1156 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md index 556bc379c78b26..79a2cdd30fc738 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-registered-clients.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET REGISTERED CLIENTS preenche dois arrays: @@ -48,4 +45,14 @@ Consulte o exemplo do comando [REGISTER CLIENT](register-client.md). [EXECUTE ON CLIENT](execute-on-client.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 650 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md index c8fe47581cc4cb..50dcb2170fa877 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-relation-properties.md @@ -40,4 +40,13 @@ Quando o comando tiver sido executado: [GET FIELD PROPERTIES](get-field-properties.md) [GET TABLE PROPERTIES](get-table-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 686 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md index e83b150ccf79de..df1a7276062772 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get resource name retorna o nome do recurso cujo tipo se passa em *resTipo* e cujo número de referência (ID) em *resNum*. @@ -26,3 +23,13 @@ displayed_sidebar: docs Se passa um número de referência de arquivo de recursos no parâmetro *resArquivo*, o recurso é pesquisado apenas nesse arquivo. Se não passa *resArquivo*, o arquivo é pesquisado nos arquivos de recursos que estão abertos. Se o recurso não existir, Get resource name retorna uma cadeia vazia. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 513 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md index b5a15654cb268f..8ca1824d1048b8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Get resource properties** retorna os atributos do recurso cujo tipo se passa em *resTipo* e cujo número de identificação se passa em *resNum*. @@ -36,3 +33,14 @@ Ver o exemplo do comando [Get resource name](get-resource-name.md). #### Variáveis e conjuntos do sistema A variável sistema OK toma o valor 0 se o recurso não existir, do contrário assume o valor 1\. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 515 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md index fedd18d26f3395..87845622756d6c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-resource.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição o comando GET RESOURCE retorna no campo o a variável BLOB *resDados* o conteúdo do recurso cujo tipo e número se passa em *resTipo* e *resNum*. @@ -50,4 +47,14 @@ Se não houver memória suficiente para carregar a imagem, um erro é gerado. Po #### Ver também -*Recursos* \ No newline at end of file +*Recursos* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 508 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md index c4d85347b04e66..758b658591ebf6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get selected menu item parameter devolve a cadeia de caracteres personalizada associada a linha de menu selecionada. Este parâmetro deve ter sido definido antecipadamente utilizando o comando [SET MENU ITEM PARAMETER](set-menu-item-parameter.md "SET MENU ITEM PARAMETER"). @@ -27,4 +24,13 @@ Se nenhuma linha de menu for selecionada, o comando retorna uma cadeia vazia"". [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1005 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md index 22fa615329971e..29be9e89119dfc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-serial-port-mapping.md @@ -48,4 +48,13 @@ Este método de projeto pode ser usado para tratar a mesma porta serial (sem pro #### Ver também -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 909 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md index 59b77092dc212f..a9104782b92b97 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-string-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição o comando Get string resource retorna a string armazenada no recurso string (“STR ”) cujo número de referência se passa em *resNum*. @@ -44,4 +41,14 @@ A variável sistema OK toma o valor 1 se for encontrado o recurso, do contrário [Get indexed string](get-indexed-string.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 506 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md index e2bd67ba76fca7..fc32fcc3f090e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-style-sheet-info.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **GET STYLE SHEET INFO** devolve a configuração atual da folha de estilo *nomeFolhaEstilo* . @@ -66,4 +63,14 @@ Se quiser conhecer a configuração atual da folha de estilo "Automatic" #### Ver também [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1256 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md index e12a94f1a1c9a3..0dc81fc9caa8fe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-subrecord-key.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -El comando [Get subrecord key](get-subrecord-key.md) facilita la migración del código 4D utilizando subtablas convertidas al código estándar de manipulación de tablas. - -**Recordatorio:** a partir de la versión 11 de 4D, no se soportan subtablas. Cuando se convierte una base antigua, las subtablas existentes se transforman automáticamente en tablas estándar relacionadas con las tablas originales por una relación automática. La subtabla anterior se convierte en la tabla Muchos y la tabla original es la tabla Uno. En la tabla Uno, el campo subtabla anterior se transforma en un campo especial de tipo "Relación subtabla" y en la tabla Muchos, se añade un campo especial, de tipo "Relación subtabla", llamado "id\_anadido\_por\_convertidor". +El comando [Get subrecord key](get-subrecord-key.md) facilita la migración del código 4D utilizando subtablas convertidas al código estándar de manipulación de tablas.a partir de la versión 11 de 4D, no se soportan subtablas. Cuando se convierte una base antigua, las subtablas existentes se transforman automáticamente en tablas estándar relacionadas con las tablas originales por una relación automática. La subtabla anterior se convierte en la tabla Muchos y la tabla original es la tabla Uno. En la tabla Uno, el campo subtabla anterior se transforma en un campo especial de tipo "Relación subtabla" y en la tabla Muchos, se añade un campo especial, de tipo "Relación subtabla", llamado "id\_anadido\_por\_convertidor". Esto permite preservar el funcionamiento de bases de datos convertidas, pero le recomendamos que sustituya los mecanismos de subtablas en sus bases por los que se utilizan para las tablas estándar. @@ -80,3 +78,13 @@ Por ejemplo, con la estructura anterior puede escribir: ``` Este código funcionará tanto con una relación especial como con una estándar. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1137 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md index 1be18acc458e89..92f4f87017f98b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-system-format.md @@ -41,4 +41,13 @@ No parâmetro *formato*, passe o tipo do parâmetro do qual queira conhecer o va #### Ver também -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 994 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md index 17a12c5e943d35..c5477e412e3177 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-properties.md @@ -33,4 +33,13 @@ Una vez executado o comando: [GET FIELD ENTRY PROPERTIES](get-field-entry-properties.md) [GET FIELD PROPERTIES](get-field-properties.md) -[GET RELATION PROPERTIES](get-relation-properties.md) \ No newline at end of file +[GET RELATION PROPERTIES](get-relation-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 687 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md index 45bff622666554..ac2a8bf59003e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-table-titles.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET TABLE TITLES preenche os arrays *tituloTabelas* e *numTabelas* com os nomes e números das tabelas da banco definidas na janela de estrutura ou através do comando [SET TABLE TITLES](set-table-titles.md). O conteúdo desses dois arrays está sincronizado. @@ -30,4 +27,13 @@ Em ambos os casos, o comando não retorna as tabelas invisíveis. #### Ver também [GET FIELD TITLES](get-field-titles.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 803 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md index 71d39f537e3b6b..e42eec79fe23e6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Get text from pasteboard devolve o texto na área de transferência. @@ -34,4 +31,14 @@ Se o texto for extraído corretamente, OK toma o valor 1; do contrário OK toma [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 524 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md index 338fed22c5df1e..7d28ef77223429 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-keywords.md @@ -82,4 +82,13 @@ Para contar as palavras de um texto: #### Ver também -[DISTINCT VALUES](distinct-values.md) \ No newline at end of file +[DISTINCT VALUES](distinct-values.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1141 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md index 0272b008f686af..08863cc28570fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-text-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get text resource retorna o texto guardado no recurso texto (“TEXT”) cujo número de identificação é passado em *resNum*. @@ -44,4 +41,14 @@ Se o recurso for encontrado, OK assume o valor 1\. Do contrário, assume o valor [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 504 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md index b3026b0cd86232..26f9d3df9fe7a6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GET USER LIST preenche os arrays *nomUsuario* e *numUsuario* com os nomes e os números de referência únicos dos usuários tais como aparecem na janela de senhas. @@ -37,4 +34,14 @@ Se não tiver privilégios de acesso para chamar ao comando GET USER LIST ou se [GET GROUP LIST](get-group-list.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 609 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md index c19445ca29a6fe..b8380c018c2602 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-user-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GET USER PROPERTIES retorna a informação sobre o usuário cujo número de referência se passa no parâmetro *refUsuario*. Deve passar um número de referência de usuário retornado pelo comando [GET USER LIST](get-user-list.md). @@ -56,4 +53,14 @@ Se não tiver privilégios de acesso para chamar ao comando GET USER PROPERTIES [GET USER LIST](get-user-list.md) [Is user deleted](is-user-deleted.md) [Set user properties](set-user-properties.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 611 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md index 95016d463436cf..cc424940c294a7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-rect.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GET WINDOW RECT devolve as coordenadas globais da janela cujo número de referência se passa em janela. Se a janela não existir, as variáveis dos parâmetros não modificam. @@ -37,4 +34,13 @@ Ver o exemplo do comando [WINDOW LIST](window-list.md).. #### Ver também [CONVERT COORDINATES](convert-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 443 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md index ca089c4a33bc4a..4cec7fe6871ffb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/get-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Get window title devolve o título da janela cujo número de referência se passa em *janela*. Se a janela não existir, se devolve uma cadeia vazia. @@ -29,4 +26,13 @@ Ver exemplo do comando [SET WINDOW TITLE](set-window-title.md). #### Ver também -[SET WINDOW TITLE](set-window-title.md) \ No newline at end of file +[SET WINDOW TITLE](set-window-title.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 450 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md index fcbdcb5b7f44e8..f1309623155934 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-object.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GOTO OBJECT é utilizado para selecionar o objeto editável *objeto* como a área ativa do formulário. É equivalente a um clique do usuário na área ou de utilizar a tecla Tab para selecionar o campo ou a variável. @@ -51,4 +48,13 @@ Veja o exemplo do comando [REJECT](reject.md "REJECT"). #### Ver também [CALL SUBFORM CONTAINER](call-subform-container.md) -[REJECT](reject.md) \ No newline at end of file +[REJECT](reject.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 206 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md index 3cccf60f355e20..e29686902a6984 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-record.md @@ -28,4 +28,15 @@ Veja o exemplo para Record Number. #### Ver também [Record number](record-number.md) -*Sobre Números de Registros* \ No newline at end of file +*Sobre Números de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 242 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md index 4e6bcbbd8ad8c5..af6a2934d588e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-selected-record.md @@ -58,4 +58,14 @@ O seguinte método de objeto para *atNomes* seleciona o registro correto na sele #### Ver também -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 245 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md index e563e65ae66d31..b344860b52620a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/goto-xy.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando GOTO XY se utiliza conjuntamente com o comando [MESSAGE](message.md "MESSAGE") quando mostra mensagens em uma janela aberta pelo comando [Open window](open-window.md "Open window"). @@ -60,4 +57,13 @@ Mostra a janela a seguir (em Macintosh) por 30 segundos: #### Ver também -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 161 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md index 190a2c51f460b7..50a6b0039fedb1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph-settings.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição GRAPH SETTINGS permite modificar os parâmetros dos gráficos mostrados em um formulário. O gráfico deve ter sido definido com o comando [GRAPH](graph.md). GRAPH SETTINGS não tem efeito em um gráfico de tipo setores. Este comando deve ser chamado obrigatoriamente no mesmo processo que o formulário. @@ -44,4 +41,13 @@ Ver o exemplo do comando [GRAPH](graph.md "GRAPH"). #### Ver também -[GRAPH](graph.md) \ No newline at end of file +[GRAPH](graph.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 298 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md index 0db8b4f4fb49ce..ddea07184e0bfa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/graph.md @@ -279,4 +279,13 @@ Neste exemplo, personalizamos alguns parâmetros: [GRAPH SETTINGS](graph-settings.md) *Parâmetros de Gráficos* -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 169 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md index 4b836644e55b73..11d4e2ddf3aaa1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando HIDE MENU BAR torna invisível a barra de menus. @@ -45,4 +42,14 @@ O método abaixo mostra um registro em toda a tela (Macintosh) até que dê um c [HIDE TOOL BAR](hide-tool-bar.md) [SHOW MENU BAR](show-menu-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 432 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md index 5d068fda6360ed..ae6d1f6c836420 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição HIDE PROCESS oculta todas as janelas que pertencem ao *processo*. Todos os elementos de interface de *processo* se ocultam até o seguinte [SHOW PROCESS](show-process.md "SHOW PROCESS"). A barra de menus do processo também se oculta. Isso significa que a abertura de uma janela enquanto o processo está oculto não provocará nenhuma mudança na visualização em tela. Se o processo já estiver oculto, o comando não tem nenhum efeito. @@ -37,4 +34,13 @@ O exemplo a seguir oculta todas as janelas que pertencem ao processo atual: #### Ver também [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 324 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md index 9178451800e4e4..330aa759982a94 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando HIDE TOOL BAR gerencia a visualização das barras de ferramentas personalizadas criadas pelo comando [Open form window](open-form-window.md) para o processo atual. @@ -41,4 +38,13 @@ Para evitar isto, no evento formulário On Resize da janela estandarte, é neces #### Ver também -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 434 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md index d8f02d6d994ba9..78e95604e7d501 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/hide-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando HIDE WINDOW permite ocultar a janela cujo número de referência se passa em *janela* ou, se for omitido este parâmetro, a janela do primeiro plano do processo atual. Este comando permite, por exemplo, em um processo com várias janelas, mostrar apenas a janela ativa. @@ -47,4 +44,13 @@ Este exemplo corresponde a um método de um botão localizado em um formulário #### Ver também -[SHOW WINDOW](show-window.md) \ No newline at end of file +[SHOW WINDOW](show-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 436 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md index 78df423a2bc35c..6b336de24a688b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-records.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando HIGHLIGHT RECORDS permite selecionar registros em um formulário listado. Esta operação é idêntica à seleção de registros manual em modo listado utilizando o mouse ou as combinações de teclado **Shift+Clique** ou **Ctrl+Clique** (Windows) ou **comando+Clique** (Mac OS). A seleção atual não é modificada. @@ -49,4 +46,13 @@ Quando o usuário clicar no botão, aparece a caixa de diálogo padrão procurar #### Ver também [GET HIGHLIGHTED RECORDS](get-highlighted-records.md) -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 656 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md index dc34408ed30691..f9e5c562e178c3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/highlight-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando HIGHLIGHT TEXT seleciona uma parte de texto em *objeto*. @@ -63,4 +60,13 @@ Ver o exemplo do comando [FILTER KEYSTROKE](filter-keystroke.md "FILTER KEYSTROK #### Ver também -[GET HIGHLIGHT](get-highlight.md) \ No newline at end of file +[GET HIGHLIGHT](get-highlight.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 210 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md index a9e7517521cc65..8ca2a8e73e828b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-authenticate.md @@ -57,4 +57,13 @@ Exemplos de petições com autenticação: #### Ver também -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1161 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md index f76d63087a6d87..216f6a3dd062ee 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-certificates-folder.md @@ -37,4 +37,13 @@ Você quer mudar temporalmente a pasta de certificados: #### Ver também -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1307 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md index 13ca72ec4105da..c22c2936b02df4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get-option.md @@ -43,4 +43,13 @@ No parâmetro *valor*, passe uma variável para receber o valor atual da *opçã #### Ver também -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1159 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md index a2a9c6f7f21787..a264655fbed394 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-get.md @@ -103,4 +103,14 @@ Recuperação de um vídeo: #### Ver também -[HTTP Request](http-request.md) \ No newline at end of file +[HTTP Request](http-request.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1157 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md index 8c249d0950447d..313e9a61f726f9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-parse-message.md @@ -14,9 +14,16 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição A documentação para este comando está disponível em [developer.4d.com.](https://developer.4d.com/docs/API/HTTPRequestClass#http-parse-messege) + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1824 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md index 6f45f175401a7f..047994c79f2bf3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-request.md @@ -126,4 +126,13 @@ Petição para adicionar um registro em JSON a um banco de dados remoto: #### Ver também -[HTTP Get](http-get.md) \ No newline at end of file +[HTTP Get](http-get.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1158 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md index 3e223c56523d67..b394da03d0c22f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-certificates-folder.md @@ -55,4 +55,13 @@ Você quer mudar temporalmente a pasta de certificados: #### Ver também [GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) -[HTTP Get certificates folder](http-get-certificates-folder.md) \ No newline at end of file +[HTTP Get certificates folder](http-get-certificates-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1306 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md index 8a86d3285fda81..fe3dc9e2aa7fd4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/http-set-option.md @@ -44,4 +44,13 @@ Não importa a ordem das opções de chamada. Se a mesma opção é definida mai #### Ver também [HTTP AUTHENTICATE](http-authenticate.md) -[HTTP GET OPTION](http-get-option.md) \ No newline at end of file +[HTTP GET OPTION](http-get-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1160 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md index b7cbec034220eb..afa0848af87f87 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/idle.md @@ -50,4 +50,13 @@ com: #### Ver também *Comandos de Compilação* -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 311 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md index e8ad83a96d31d6..fa915b1bb9f039 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-data.md @@ -45,4 +45,14 @@ Se o usuário clicar em **Cancelar** na caixa de diálogo de salvar arquivos ou [EXPORT DATA](export-data.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[IMPORT TEXT](import-text.md) \ No newline at end of file +[IMPORT TEXT](import-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 665 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md index fdedd8196d2439..31cb11936c084d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando IMPORT DIF lê dados de *documento*, um documento DIF Windows ou Macintosh e os escreve em *tabela* criando novos registros para essa tabela. @@ -53,4 +50,14 @@ OK toma o valor 1 se la importação termina com sucesso; do contrário, toma o [EXPORT DIF](export-dif.md) [IMPORT SYLK](import-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 86 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md index bdc0d0cabe7944..c482c8758fc5c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-structure.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **IMPORT STRUCTURE** importa, na base atual, a definição XML da estrutura da base 4D passada no parâmetro *estruturaXML*. @@ -49,4 +46,13 @@ Você deseja importar uma definição de estrutura guardada na base de dados atu #### Ver também -[EXPORT STRUCTURE](export-structure.md) \ No newline at end of file +[EXPORT STRUCTURE](export-structure.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1310 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md index 67736f46f22975..a198c8d6c22172 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando IMPORT SYLK lê dados de *documento*, um documento SYLK Windows ou Macintosh e os escreve em *tabela* criando novos registros para essa tabela. @@ -53,4 +50,14 @@ OK toma o valor 1 se a importação termina com sucesso; do contrário, toma o v [EXPORT SYLK](export-sylk.md) [IMPORT DIF](import-dif.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 87 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md index 13e8aadb7ee17c..01e1f0a0d30aee 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/import-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando IMPORT TEXT lê dados de *documento*, um documento texto Windows ou Macintosh e os escreve em *tabela* criando novos registros para essa tabela. @@ -55,4 +52,14 @@ OK toma o valor 1 se a importação termina com sucesso; do contrário, toma o v [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 168 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md index 2bc5ba3a2ee4b3..b0b919623cb865 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **In break** devolve True para o ciclo de execução In break. @@ -27,4 +24,13 @@ Para que seja gerado o ciclo de execução **In break**, tenha certeza de que o #### Ver também [In footer](in-footer.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 113 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md index 24e206ce694f25..7153893ba71035 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-footer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **In footer** devolve True para o ciclo de execução In footer. @@ -27,4 +24,13 @@ Para que seja gerado o ciclo de execução **In footer** tenha certeza de que o #### Ver também [In break](in-break.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 191 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md index 02eff048cf6a37..44e85d7225bc39 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-header.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **In header** devolve True para o ciclo de execução In header. @@ -27,4 +24,13 @@ Para que seja gerado o ciclo de execução **In header**, tenha certeza de que o #### Ver também [In break](in-break.md) -[In footer](in-footer.md) \ No newline at end of file +[In footer](in-footer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 112 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md index 2bc3dc339517cc..8267690eca45b0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/in-transaction.md @@ -29,4 +29,13 @@ Se realiza as operações (adição, modificação, ou eliminação de registros [CANCEL TRANSACTION](cancel-transaction.md) [START TRANSACTION](start-transaction.md) *Triggers* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 397 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md index 054c41f4a4072e..29521bfab219cf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-array.md @@ -44,4 +44,13 @@ O exemplo a seguir adiciona um elemento a um array: #### Ver também [DELETE FROM ARRAY](delete-from-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 227 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md index 61e80ce60753f8..7e223e5ba531bc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-blob.md @@ -30,4 +30,13 @@ Antes da chamada, você passa no parâmetro *offset* a posição de inserção e #### Ver também -[DELETE FROM BLOB](delete-from-blob.md) \ No newline at end of file +[DELETE FROM BLOB](delete-from-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 559 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md index cc7eb9507c8f78..b263c4162a2cd9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comandoINSERT IN LIST insere o elemento designado pelo parâmetro *refElem* na lista cujo número de referência é passado em *lista*. @@ -52,4 +49,13 @@ O código a seguir insere um elemento (sem sub-lista associada) justo antes do e #### Ver também [APPEND TO LIST](append-to-list.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 625 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md index 673cfe609b8597..3fdfc931516ba3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-menu-item.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comandoINSERT MENU ITEM insere novas linhas no menu cujo número ou referência é passada em *menu* e as localiza depois da linha de menu cujo número se passa em *depoisItem*. @@ -56,4 +53,14 @@ O exemplo a seguir cria um menu que consiste em dois comandos os quais atribuem #### Ver também [APPEND MENU ITEM](append-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 412 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md index af0f71a7b58595..5f1ddfc18712d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/insert-string.md @@ -40,4 +40,13 @@ O seguinte exemplo ilustra o uso de Insert string. Os resultados são atribuído [Change string](change-string.md) [Delete string](delete-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 231 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md index 1b6fd52d7d85fe..4677711822fd93 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/int.md @@ -29,4 +29,13 @@ O exemplo a seguir ilustra o funcionamento de Int para números positivos e nega #### Ver também -[Dec](dec.md) \ No newline at end of file +[Dec](dec.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 8 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md index b1ab3212f41a42..085235a1e0c516 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integer-to-blob.md @@ -113,4 +113,13 @@ Depois de executar este código: [BLOB to text](blob-to-text.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 548 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md index 21552ea16ec7d4..0adcf216171d72 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md @@ -101,4 +101,14 @@ Se a integração é efetuada corretamente, a variável sistema OK recebe o valo #### Ver também -[LOG FILE TO JSON](log-file-to-json.md) \ No newline at end of file +[LOG FILE TO JSON](log-file-to-json.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1312 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md index 7c7094bc569a8d..ee9698b0cb7254 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/intersection.md @@ -47,4 +47,13 @@ O exemplo a seguir pesquisa os clientes que são atendidos por dois representant #### Ver também [DIFFERENCE](difference.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 121 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md index 4b99f869447069..7ee36785830b67 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/invoke-action.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **INVOKE ACTION** ativa a ação padrão definida pelo parâmetro ação, opcionalmente no contexto objetivo. @@ -65,4 +62,13 @@ Se quiser executar uma ação padrão **Goto page** (página 3) no formulário p #### Ver também -[Action info](action-info.md) \ No newline at end of file +[Action info](action-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1439 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md index 35d937ad668ca5..50c7584d7f6d36 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Is a list retorna TRUE se o valor passado em *lista* é uma referência válida a uma lista hierárquica. Do contrário, retorna FALSE. @@ -25,3 +22,13 @@ displayed_sidebar: docs Ver o exemplo do comando [CLEAR LIST](clear-list.md "CLEAR LIST"). + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 621 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md index d08a3ffcca63b3..6d098e6b2e6569 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-a-variable.md @@ -23,4 +23,13 @@ displayed_sidebar: docs #### Ver também [Is nil pointer](is-nil-pointer.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 294 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md index f6f2b3599472b3..e56086d57b983b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-compiled-mode.md @@ -40,4 +40,13 @@ Em uma de suas rotinas, você inclui a depuração do código apenas quando voc #### Ver também [IDLE](idle.md) -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 492 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md index 1d0c03b13f44a7..befda7de4ab2bd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-data-file-locked.md @@ -29,3 +29,13 @@ Este método vai impedir a abertura do banco de dados se o arquivo de dados esti     QUIT 4D  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 716 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md index 5051a1cb074477..50e44826bc86ff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-editing-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Is editing text** devolve **True** se o usuário estiver ingressando valores em um objeto de formulário de entrada e **False** em todos os demais casos. @@ -60,4 +57,13 @@ Se quiser permitir que o usuário selecione uma linha começando com a letra ou [FILTER KEYSTROKE](filter-keystroke.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1744 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md index 13588dc0345291..705f1c8290d0c7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-number-valid.md @@ -24,4 +24,13 @@ Este comando permite detectar as eventuais eliminações de campos, que criam qu #### Ver também [Last table number](last-table-number.md) -[Is table number valid](is-table-number-valid.md) \ No newline at end of file +[Is table number valid](is-table-number-valid.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1000 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md index cf0f57da4f2b16..1a1417ab6af485 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-field-value-null.md @@ -27,4 +27,13 @@ O valor retornado por esse comando só tem significado se a opção *Mapear valo #### Ver também [Null](null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 964 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md index 18d8a3de8425cc..e5a28a95c0f612 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Is in print preview** devolve True se a opção **Vista previa de impressão** está selecionada na caixa de diálogo de impressão e False caso contrário. Esta configuração é local ao processo. @@ -46,4 +43,13 @@ Este exemplo permite ter em conta todos os tipos de impressões: #### Ver também [Get print preview](get-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1198 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md index 31330f6322e166..a8052922561504 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-in-set.md @@ -35,4 +35,13 @@ O seguinte exemplo é um método de objeto de um botão que testa se o registro #### Ver também [ADD TO SET](add-to-set.md) -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 273 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md index 67ddd81c5f7b23..da37357f627784 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-license-available.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Is license available permite conhecer a disponibilidade de um plug-in. É útil, por exemplo, para mostrar ou ocultar funções que necessitam da presença de um plug-in. @@ -50,4 +47,13 @@ O comando Is license available pode ser utilizado de três maneiras diferentes: [License info](license-info.md) [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 714 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md index 1521e14b651a00..e3b1771b3e4cce 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-macos.md @@ -32,4 +32,13 @@ Se quiser determinar se o sistema operativo atual for macOS: #### Ver também [System info](system-info.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1572 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md index d93012823b6284..25e0616f5aadca 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-new-record.md @@ -39,4 +39,13 @@ As duas instruções a seguir são idênticas. A segunda é recomendada para que #### Ver também [Modified record](modified-record.md) -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 668 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md index 49b66e01b85c84..34d55c698f2947 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-nil-pointer.md @@ -35,4 +35,13 @@ Caso deseje conhecer o nome da variável apontada ou o número do campo, pode ut #### Ver também [Is a variable](is-a-variable.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 315 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md index e982f94b019b59..68a11e15ac6548 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-picture-file.md @@ -27,4 +27,13 @@ Se não passa o parâmetro *\**, o comando prova o arquivo buscando sua extensã #### Ver também -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1113 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md index 77ec20cb29119d..d1360fa713d93a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-record-loaded.md @@ -43,3 +43,13 @@ Ao invés de utilizar as ações automáticas “Seguinte registro” ou “Regi     End if  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 669 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md index a65ea38f375af0..8478852b1a5ea8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-table-number-valid.md @@ -23,4 +23,13 @@ Este comando permite detectar as eventuais eliminações de tabelas, que criam q #### Ver também [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 999 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md index fb18ee05a42bcf..3d34d94827be3e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-user-deleted.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Is user deleted testa a conta de usuário cujo número de identificação único se passa em *numUsuario*. @@ -31,4 +28,14 @@ Se não tiver os privilégios de acesso adequados para chamar Is user deleted ou [DELETE USER](delete-user.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 616 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md index 6320ed60ad9469..d71fc3c74d9f05 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Tema:** Eventos formulário @@ -60,4 +57,13 @@ O código abaixo pode ser usado para gerenciar uma propriedade de tracking de mo #### Ver também -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1422 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md index 0d25fdfc0e7209..3277964640b237 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-maximized.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Is window maximized** devolve **True** se a janela cujo número de referência for passado em *janela* estiver maximizada,no momento e **False** no caso contrário. @@ -36,4 +33,13 @@ Se quiser mudar entre o estado maximizado e o anterior: #### Ver também [Is window reduced](is-window-reduced.md) -[MAXIMIZE WINDOW](maximize-window.md) \ No newline at end of file +[MAXIMIZE WINDOW](maximize-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1830 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md index c167b34c3af09b..c5c5800074f656 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-window-reduced.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Is window reduced** devolve **True** se a janela cujo número de referência se passar na *Janela* estiver atualmente reduzida na barra de tarefas (Windows) ou no dock (macOS), e **False** no caso contrário. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver também [Is window maximized](is-window-maximized.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1831 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md index 0c8be45c4b2510..70dbb83d81a50c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/is-windows.md @@ -32,4 +32,13 @@ Se quiser determinar se o sistema operativo atual é Windows: #### Ver também [System info](system-info.md) -[Is macOS](is-macos.md) \ No newline at end of file +[Is macOS](is-macos.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1573 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md index c450ba4992f4a7..479bab16a7156a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse-array.md @@ -57,4 +57,13 @@ Neste exemplo, os dados dos campos dos registros de uma tabela se extraem e loca #### Ver também [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1219 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md index 00a86317a1859f..ae6179cbf92970 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-parse.md @@ -188,4 +188,13 @@ beta[1].golf:{line:10,offset:12}}} [JSON PARSE ARRAY](json-parse-array.md) [JSON Stringify](json-stringify.md) [JSON Validate](json-validate.md) -*Tipos de campos e variáveis* \ No newline at end of file +*Tipos de campos e variáveis* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1218 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md index f774e85de19ff4..ad9673e12e8317 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-resolve-pointers.md @@ -229,4 +229,13 @@ Se executar: #### Ver também - \ No newline at end of file + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1478 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md index 852b3b96f2090e..3cb9cd37fc5077 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify-array.md @@ -107,4 +107,13 @@ Conversão de uma seleção 4D em um array objeto: #### Ver também [JSON PARSE ARRAY](json-parse-array.md) -[JSON Stringify](json-stringify.md) \ No newline at end of file +[JSON Stringify](json-stringify.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1228 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md index 6a21fd9896bcdd..cf1d4b70d8bc67 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-stringify.md @@ -173,4 +173,13 @@ $myTxtCol="[33,"mike","2017-08-28",false]" #### Ver também [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1217 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md index ac602b6bc37180..0ac69f005f65d2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-to-selection.md @@ -67,4 +67,13 @@ Uso do comando **JSON TO SELECTION** para adicionar os registros a tabela \[Comp #### Ver também -[Selection to JSON](selection-to-json.md) \ No newline at end of file +[Selection to JSON](selection-to-json.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1235 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md index 583d94096b7de2..f88e14d51a6b1b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/json-validate.md @@ -103,4 +103,13 @@ Se quiser validar um objeto JSON com um esquema e obter a lista de erros de vali -[JSON Parse](json-parse.md) \ No newline at end of file +[JSON Parse](json-parse.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1456 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md index a49e43fed387f8..03ef337368d2f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Keystroke retorna o caractere introduzido pelo usuário em um campo o em uma área editável. @@ -178,4 +175,13 @@ Utilizando as habilidades da comunicação interprocesso de 4D, pode construir i [FILTER KEYSTROKE](filter-keystroke.md) [Form event code](form-event-code.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 390 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md index 3977611cfc2bd0..0623d548fd982d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/kill-worker.md @@ -53,4 +53,13 @@ No método (*theWorker*), adicionou código para manejar esta situaçao: [CALL WORKER](call-worker.md) [Current process name](current-process-name.md) -*Sobre Workers* \ No newline at end of file +*Sobre Workers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1390 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md index d86290bce5491a..d853c9db4254dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-errors.md @@ -32,4 +32,13 @@ Este comando deve ser chamado desde um método de chamada de erro instalado pelo #### Ver também [ON ERR CALL](on-err-call.md) -[throw](throw.md) \ No newline at end of file +[throw](throw.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1799 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md index 58b1044434693c..640338388d33e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-field-number.md @@ -41,4 +41,13 @@ Os campos estão numerados na ordem na qual foram criados. Se nenhum campo foi a [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 255 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md index 893a33119b0562..b724b6af76a058 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-path.md @@ -33,4 +33,13 @@ A descrição da rota da última pesquisa pode ser comparada com a descrição d #### Ver também [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1045 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md index 569ef84fc9a44f..8d4af279ea58c0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-query-plan.md @@ -33,4 +33,13 @@ A descrição do plano da última pesquisa pode ser comparada com a descrição #### Ver também [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query path](last-query-path.md) \ No newline at end of file +[Last query path](last-query-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1046 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md index e0009f649ec4b9..3370b663e04a70 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-record.md @@ -31,4 +31,14 @@ O exemplo a seguir designa o último registro da tabela \[Pessoas\] como registr [End selection](end-selection.md) [FIRST RECORD](first-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 200 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md index 51e01ff9492514..5565a6883c473c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/last-table-number.md @@ -38,4 +38,13 @@ O seguinte exemplo inicializa os elementos do array *arrayTabelas*, com os nomes [Last field number](last-field-number.md) [Is table number valid](is-table-number-valid.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 254 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md index 9c77e2c5a6ce5f..18c35c5f5e46db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/launch-external-process.md @@ -135,4 +135,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 #### Ver também [OPEN URL](open-url.md) -[SET ENVIRONMENT VARIABLE](set-environment-variable.md) \ No newline at end of file +[SET ENVIRONMENT VARIABLE](set-environment-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 811 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md index c2f79a1a15a38f..181e3b92788fe5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando**LDAP LOGIN** abre uma conexão somente leitura no servidor LDAP especificado pelo parâmetro *url* com os identificadores de *login* e *senha*. Se for aceito pelo servidor, esta ligação é utilizada para todas as pesquisas de LDAP posteriormente introduzidas no processo atual até que o comando *RuntimeVLWinFolder* sejaé executado (ou até que o processo seja fechado). @@ -98,4 +95,13 @@ Este exemplo tenta conectar-se a um aplicativo: #### Ver também *LDAP* -[LDAP LOGOUT](ldap-logout.md) \ No newline at end of file +[LDAP LOGOUT](ldap-logout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1326 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md index b83151fac9df14..8727db8ff695c2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-logout.md @@ -12,13 +12,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LDAP LOGOUT** termina a conexão com um servidor LDAP no processo atual (se for aplicável). Se não houver conexão, o error 1003 é retornado indicando que não está conectado. #### Ver também -[LDAP LOGIN](ldap-login.md) \ No newline at end of file +[LDAP LOGIN](ldap-login.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1327 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md index 3ebd7ddb7dfaf8..d5bc53bbe78530 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search-all.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LDAP SEARCH ALL** encontra todas as ocorrências que correspondem aos critérios definidos no servidor LDAP objetivo. Este comando deve ser executado dentro de uma conexão com um servidor LDAP aberto com *LDAP LOGIN*; caso contrário, um erro 1003 é retornado. @@ -117,4 +114,13 @@ Estes exemplos ilustram o uso do parâmetro *atributosEmArray*: #### Ver também *LDAP* -[LDAP Search](ldap-search.md) \ No newline at end of file +[LDAP Search](ldap-search.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1329 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md index c1bc2a0fcd8823..4c57410a34fabf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ldap-search.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LDAP Search** encontra a primeira ocorrência que corresponde aos critérios definidos no servidor LDAP alvo. Este comando deve ser executado em uma conexão com um servidor LDAP aberta com [LDAP LOGIN](ldap-login.md); caso contrário, é devolvido um erro 1003. @@ -85,4 +82,13 @@ Queremos obter um array de todas as entradas que se encontram no atributo "membe #### Ver também *LDAP* -[LDAP SEARCH ALL](ldap-search-all.md) \ No newline at end of file +[LDAP SEARCH ALL](ldap-search-all.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1328 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md index 9efa211de07c55..cab5493598fcbc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/length.md @@ -28,3 +28,13 @@ Este exemplo ilustra o uso de **Length**. Os resultados, descritos nos comentár  vlResult:=Length("Topázio") // vlResult obtém 7  vlResult:=Length("Cidadania") // vlResult obtém 9 ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 16 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md index d9334cdb8ce999..1d799b0cce871b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Level se utiliza para determinar o nível de quebra do cabeçalho atual. Devolve o nível de quebra durante os eventos On Header e On Printing Break. @@ -68,4 +65,13 @@ Este exemplo é um modelo para um método de formulário. Mostra cada evento pos [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Form event code](form-event-code.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 101 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md index 468dc3f07fd3b5..cf2d8062abdb32 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/license-usage.md @@ -71,3 +71,13 @@ Essa tabela detalha os conteúdos do objeto sessão para sessões REST: | sessionID | Text | Sessão REST ID | | IPAddress | Text | ID do cliente que iniciou a sessão REST | | isDatastore | Boolean | True se a petição REST vem de uma datastore | + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1782 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md index 8a9011effcc480..042790618b7034 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-parent.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando List item parent retorna o número de referência do elemento pai. @@ -73,4 +70,13 @@ Os números de referência dos elementos são os seguintes: [GET LIST ITEM](get-list-item.md) [List item position](list-item-position.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 633 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md index 89480dd0818874..9a6663ca79820b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-item-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando List item position retorna a posição do elemento cujo número de referencia ou nome de objeto se passa em *refElem*,na lista cujo número de referência se passa na lista. @@ -40,4 +37,13 @@ Se o elemento não existir, List item position retorna 0. #### Ver também [Count list items](count-list-items.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 629 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md index d5a399f1a62c9a..c06c342cbe2eff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-choice-lists.md @@ -14,11 +14,18 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LIST OF CHOICE LISTS retorna, nos arrays sincronizados *arrayNums* e *arrayNoms*, os números e os nomes das listas definidas no editor de listas no ambiente Desenho. Os números das listas correspondem a sua ordem de criação. No editor de listas, as listas são mostradas em ordem alfabética. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 957 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md index d1ab0b634f16db..82c01cbace5c42 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-of-style-sheets.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LIST OF STYLE SHEETS** devolve a lista de folhas de estilo da aplicação no array *arrFolhasEstilo*. @@ -51,4 +48,13 @@ Se executa o seguinte código: #### Ver também [GET STYLE SHEET INFO](get-style-sheet-info.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1255 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md index 68090bc4f91e19..51867a5f4e21b4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LIST TO ARRAY cria ou substitui o array *array* com os elementos de primeiro nível da lista ou da lista de seleção designada por *lista*. @@ -86,4 +83,13 @@ Se executa a seguinte instrução: [ARRAY TO LIST](array-to-list.md) [Load list](load-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 288 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md index 349f64a4483926..8064b215733b82 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/list-to-blob.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LIST TO BLOB armazena a *lista* hierárquica no BLOB *blob*. @@ -47,4 +44,14 @@ Veja o exemplo para o comando [BLOB to list](blob-to-list.md "BLOB to list"). [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) [SAVE LIST](save-list.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 556 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md index 52482a7a9666fc..feb5c2067c2994 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-collapse.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX COLLAPSE é utilizado para contrair linhas de quebra do objeto list box designado pelos parâmetros *objeto* e *\** . @@ -52,4 +49,13 @@ Este exemplo colapsa o primeiro nível de linhas de quebra da seleção no list #### Ver também -[LISTBOX EXPAND](listbox-expand.md) \ No newline at end of file +[LISTBOX EXPAND](listbox-expand.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1101 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md index 1771292efac00f..2814fdab0c22d4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-column.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX DELETE COLUMN apaga uma ou mais colunas (visíveis ou não) no list box designado pelos parâmetros *objeto* e *\**. @@ -35,4 +32,13 @@ Se o parâmetro *posicionCol* é maior que o número de colunas no list box, o c #### Ver também [LISTBOX Get number of columns](listbox-get-number-of-columns.md) -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 830 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md index 9b3edf1de828d0..8e4b75d116f81b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-delete-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX DELETE ROWS apaga a fila número *posição* (visível ou não) do list box definido pelos parâmetros *objeto* e \*. @@ -37,4 +34,14 @@ Se o parâmetro *posição* é superior ao número de linhas do array do list bo #### Ver também [LISTBOX Get number of rows](listbox-get-number-of-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 914 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md index e583b5130996ae..bc3dc200f1f570 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-duplicate-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX DUPLICATE COLUMN** duplica a coluna definida pelos parâmetros *objeto* e *\** por programação no contexto do formulário executado (Modo Aplicação). O formulário original, gerado em modo Desenho não se modifica. @@ -93,4 +90,13 @@ A partir de 4D v14 R3, pode duplicar dinamicamente as colunas de list box e 4D s #### Ver também -[LISTBOX MOVE COLUMN](listbox-move-column.md) \ No newline at end of file +[LISTBOX MOVE COLUMN](listbox-move-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1273 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md index 3f27d76caed4c5..54915abed5f0e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-expand.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX EXPAND é utilizado para expandir as linhas de quebra do objeto list box designado pelos parâmetros objeto e \*. @@ -82,4 +79,13 @@ Este ejemplo ilustra diferentes modos de utilizar el comando. Dados los siguient #### Ver também -[LISTBOX COLLAPSE](listbox-collapse.md) \ No newline at end of file +[LISTBOX COLLAPSE](listbox-collapse.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1100 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md index e6e28d16c4afab..fba0f438675645 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** Este comando só funciona com os list box de tipo array. @@ -62,4 +59,13 @@ Exemplos típicos de uso: #### Ver também [LISTBOX GET ARRAYS](listbox-get-arrays.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1278 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md index 4e398b5892ceb4..d18f0209407e11 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-arrays.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX GET ARRAYS** devolve um conjunto de arrays sincronizados oferecendo informação sobre cada coluna (visível ou invisível) do list box designado pelos parâmetros *objeto* e *\**. @@ -51,4 +48,13 @@ Para seleção de registro, list boxes do tipo coleção ou seleção de entidad [LISTBOX Get array](listbox-get-array.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 832 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md index ade8d581f70dbf..9d2308e0113056 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get auto row height** devolve o valor de altura de fila mínimo ou máximo actual definido para o objeto list box designado utilizando os parâmetros *objeto* e *\**. @@ -60,4 +57,13 @@ vhMax:=LISTBOX Get auto row height(*;"LB";lk row max height;lk lines) [LISTBOX Get row height ](listbox-get-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) \ No newline at end of file +[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1502 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md index fdcb3d157ebdcf..3eb297b96a32c7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX GET CELL COORDINATES devolve nas variáveis ou campos *esq*, *sup*, *dir* e *inf* as coordenadas (em pontos) da célula designada pelos parâmetros *coluna* e *linha*, no list box definido por *\** e *objeto*. @@ -54,4 +51,13 @@ Você quer desenhar um retângulo vermelho arredor da célula selecionada de um #### Ver também [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[OBJECT GET COORDINATES](object-get-coordinates.md) \ No newline at end of file +[OBJECT GET COORDINATES](object-get-coordinates.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1330 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md index 5be966aa6e25f9..53fbf25aa21e59 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-cell-position.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX GET CELL POSITION devolve os números da *coluna* e da *fila* correspondentes a localização no list box (designado por *\** e *objeto*) do último clique ou as coordenadas vertical e horizontal do mouse. @@ -57,4 +54,13 @@ Se a seleção é modificada utilizando as flechas do teclado, *coluna* devolve #### Ver também [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) -[LISTBOX SELECT BREAK](listbox-select-break.md) \ No newline at end of file +[LISTBOX SELECT BREAK](listbox-select-break.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 971 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md index 54a835bba41b31..a72f81c79767e5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get column formula** devolve a fórmula associada à coluna de list box designada pelos parâmetros *objeto* e *\**. As fórmulas só podem ser utilizadas quando a propriedade “Fonte de dados” do list box for **Seleção atual**, **Seleção temporal**.ou **Coleção ou Seleção de Entidades**. Se nenhuma fórmula estiver associada à coluna, o comando devolve uma cadeia vazia. @@ -26,4 +23,13 @@ Passado o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome #### Ver também -[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) \ No newline at end of file +[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1202 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md index 61e881917581e2..342c9ddeb3cf22 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX Get column width devolve a largura (em pixels) da coluna designada pelos parâmetros *objeto* e *\*.* Pode passar indiferentemente uma coluna ou um título de coluna de list box no parâmetro *objeto*. @@ -31,4 +28,13 @@ Se não tiver definido nenhum valor de largura mínima ou máxima para a coluna, #### Ver também -[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) \ No newline at end of file +[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 834 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md index c3ce16fe250c37..27163278c79cf8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O novo comando **LISTBOX Get footer calculation** devolve o tipo de cálculo associado à área de rodapé de página do list box designado pelos parâmetros *objeto* e *\**. @@ -32,4 +29,13 @@ Pode comparar o valor devolvido com as constantes do tema *Listbox Footer Calcul #### Ver também -[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) \ No newline at end of file +[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1150 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md index d9d27a90a2139f..e5691cb4089c40 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get footers height** devolve a altura da linha de rodapé do list box designado pelos parâmetros *objeto* e *\**. @@ -37,4 +34,13 @@ Por defeito, é omitido o parâmetro *unidad*e, a altura de linha devolvida se e #### Ver também -[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) \ No newline at end of file +[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1146 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md index 260133a911932e..86d705c69b04cd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX GET GRID COLORS** devolve a cor das linhas horizontais e verticais que eles compõem a grade do objeto list box designado pelo objeto de parâmetros *objeto* e *\**. @@ -32,4 +29,13 @@ Em *corH* e *corV*, o comando devolve os valores das cores RGB. O formato de cor #### Ver também -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1200 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md index c5f3a74a10e177..0c8d9d7bae0301 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX GET GRID** devolve o estado visível/oculto das linhas horizontais e verticais que compõem a grade do objeto list box designado pelos parâmetros *objeto* e *\**. @@ -29,4 +26,13 @@ O comando devolve nos parâmetros *horizontal* e *vertical*, o valor **True** ou #### Ver também -[LISTBOX SET GRID](listbox-set-grid.md) \ No newline at end of file +[LISTBOX SET GRID](listbox-set-grid.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1199 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md index 879726fb899351..e0cddbd7be16b0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get headers height** devolve a altura da linha horizontais de cabeçalho do list box designado pelos parâmetros *objeto* e *\**. @@ -36,4 +33,13 @@ Por defeito, se omitido o parâmetro *unidade*, a altura de linha devolvida se e #### Ver também -[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) \ No newline at end of file +[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1144 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md index 3452f6377f1a25..a6350db1000f3b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX GET HIERARCHY permite buscar as propriedades hierárquicas do objeto list box designado pelos parámetros *objeto* e *\** . @@ -36,4 +33,13 @@ Se o list box está em modo hierárquico, o comando preenche o array *hierarquia #### Ver também -[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) \ No newline at end of file +[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1099 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md index 498899ce68be80..def27f62e0ac72 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get locked columns** devolve o número de colunas bloquedas no list box designado pelos parâmetros objeto e *\**. @@ -31,4 +28,13 @@ Se uma coluna é inserida ou é eliminada por programação dentro de uma área #### Ver também -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1152 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md index 0a87b83fab5c3d..5bc2dc87d1962e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX Get number of columns devolve o número total de colunas (visíveis ou invisíveis) presentes no list box designado pelos parâmetros *objeto* e *\**. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome #### Ver também -[LISTBOX DELETE COLUMN](listbox-delete-column.md) \ No newline at end of file +[LISTBOX DELETE COLUMN](listbox-delete-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 831 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md index 0d3ba03d94ba9a..be168f48ca79b2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX Get number of rows devolve o número de filas do list box designado pelos parâmetros objeto e \*. @@ -31,4 +28,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome #### Ver também [LISTBOX DELETE ROWS](listbox-delete-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 915 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md index ac3932f894f48c..1f135663bc26d0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-objects.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX GET OBJECTS** devolve um array que contém os nomes de todos os objetos que compõem o list box designado pelos parâmetros *objeto* e *\** . @@ -61,4 +58,13 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list #### Ver também [FORM LOAD](form-load.md) -[OBJECT Get type](object-get-type.md) \ No newline at end of file +[OBJECT Get type](object-get-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1302 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md index fe70b0f67de6f8..8d081c84664bfc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-print-information.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX GET PRINT INFORMATION devolve a informação atual relativa a impressão do objeto list box designado pelos parâmetros *objeto e* *\** . Este comando permite controlar a impressão do conteúdo do list box. @@ -69,3 +66,13 @@ Impressão de pelo menos 500 linhas do list box, conhecendo que algumas linhas e     PAGE BREAK  Until($GlobalPrinted>=500) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1110 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md index d709c6d4331f79..fd33c8a2985410 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get property** devolve diferente informação relacionada com o tamanho e a visibilidade dos títulos e as barras de rolagem do objeto list box designado usandoos parâmetros *objeto* e *\**. @@ -100,4 +97,13 @@ Dado um list box "MyListbox", é executada a seguinte instrução: [LISTBOX SET GRID](listbox-set-grid.md) [LISTBOX SET PROPERTY](listbox-set-property.md) -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 917 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md index 39ff8e3d56bc85..53cda8a8aee646 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** este comando só funciona com os list box de tipo array. @@ -60,4 +57,13 @@ Given the following list box: *List box* [LISTBOX Get row color](listbox-get-row-color.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1271 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md index a3b204b79a1874..0e4120d6961102 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** este comando só funciona com list boxes de tipo array. @@ -59,4 +56,13 @@ Dado a list box abaixo: #### Ver também -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1658 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md index bc061f49383a78..2932c1c1105a61 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** Este comando só funciona com os list box de tipo array. @@ -51,4 +48,13 @@ Dado o seguinte list box: #### Ver também -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1269 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md index 336d1e21d23f29..8fe5929925853b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get row height** devolve a altura da *fila* especificada no objeto list box designado utilizando o *objeto* e os parâmetros *\**. @@ -36,4 +33,13 @@ O valor da altura da linha se expressa: [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1408 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md index 455f32a844caef..c6786da283fd83 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get rows height** devolve a altura atual (em píxels) das filas do objeto list box designado utilizando os parâmetros *objeto* e *\**. O valor devolvido corresponde à altura de uma só linha. @@ -38,4 +35,13 @@ Por padrão, se omitir o parâmetro *unidade*, a altura da linha devolvida é ex [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX Get row height ](listbox-get-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 836 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md index e4696ba5177192..568a157bb27599 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX Get static columns** devolve o número de colunas estáticas no list box designado pelos parâmetros objeto e *\**. @@ -33,4 +30,13 @@ Se uma coluna é inserida ou é eliminada por programação dentro de uma conjun #### Ver também -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1154 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md index 6d886ff3d6964e..11eef27051369c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-get-table-source.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX GET TABLE SOURCE permite conhecer a fonte atual de dados mostrados no list box designado pelos parâmetros *\** e *objeto*. @@ -34,4 +31,13 @@ Se o list box está associado com arrays, *numTabela* devolve -1 e *tempo*, se #### Ver também -[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) \ No newline at end of file +[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1014 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md index 1b7eec38185c26..b04c44b527174b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX INSERT COLUMN FORMULA** insere uma coluna no listbox designado pelos parâmetros *objeto* e *\**. @@ -120,4 +117,13 @@ A coluna é anexada à list box : #### Ver também -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 970 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md index 180c5f6655c959..796e316aab814c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX INSERT COLUMN insere uma coluna no list box designado pelos parâmetros *objeto* e *\**. @@ -99,4 +96,13 @@ Você deseja inserir uma coluna de forma dinâmica em um array de tipo list box #### Ver também [LISTBOX DELETE COLUMN](listbox-delete-column.md) -[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) \ No newline at end of file +[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 829 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md index 9da318bd9c70a2..cee428810ba4d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-insert-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX INSERT ROWS** insere uma nova linha no list box designado pelos parâmetros *objeto* e *\**. @@ -35,4 +32,14 @@ Se o parâmetro *numFilas* excede o número de linhas de tabelas nas arrays do l #### Ver também -[LISTBOX DELETE ROWS](listbox-delete-rows.md) \ No newline at end of file +[LISTBOX DELETE ROWS](listbox-delete-rows.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 913 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md index 201c4592ffb64b..700166d69ee185 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX MOVE COLUMN** move por programação a coluna designada pelos parâmetros *objeto* e *\** no contexto do formulário em execução (modo Aplicação). O formulário original, gerado em modo Desenho, não se modifica. @@ -42,4 +39,13 @@ Você quer inverter a segunda e terceira coluna do list box: #### Ver também -[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) \ No newline at end of file +[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1274 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md index e27617fd301f29..43a2886ee96b87 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-column-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX MOVED COLUMN NUMBER devolve dois números em *antPosição* e *novPosição* indicando respectivamente a posição anterior e a nova posição da coluna movida no list box designado pelos parâmetros *objeto* e *\**. @@ -32,4 +29,13 @@ Este comando deve ser utilizado com o evento de formulário On column moved (ver #### Ver também [Form event code](form-event-code.md) -[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) \ No newline at end of file +[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 844 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md index cf0ab8c3dcf40c..3d586341256d64 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-moved-row-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX MOVED ROW NUMBER devolve dois números em *antPosição* e *novPosição* indicando respectivamente a posição anterior e a nova posição da fila movida no list box, especificados pelos parâmetros *objeto* e *\**. @@ -34,4 +31,13 @@ Este comando deve ser utilizado com o evento de formulário On row moved (ver o #### Ver também [Form event code](form-event-code.md) -[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) \ No newline at end of file +[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 837 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md index 783ea254ad123c..89364388515052 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-break.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SELECT BREAK se utiliza para selecionar linhas de quebra no objeto list box designado pelos parâmetros *objeto* e *\**. O list box deve ser mostrado em modo hierárquico. @@ -63,4 +60,13 @@ Este é o resultado: #### Ver também [ LISTBOX SELECT ROW ](listbox-select-row.md) -[LISTBOX GET CELL POSITION](listbox-get-cell-position.md) \ No newline at end of file +[LISTBOX GET CELL POSITION](listbox-get-cell-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1117 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md index d7d7c098ca332b..31f02ee738c733 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-row.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SELECT ROW seleciona a fila cujo número é passado em *posição* no list box designado pelos parâmetros *objeto* e *\**. @@ -55,4 +52,13 @@ Depois da execução do método, os arrays são sincronizados: se o array fonte [LISTBOX INSERT ROWS](listbox-insert-rows.md) [LISTBOX SELECT BREAK](listbox-select-break.md) [LISTBOX SELECT ROWS](listbox-select-rows.md) -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 912 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md index 64f99509fad7db..e7326ffd6ba6df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-select-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **O comandoLISTBOX SELECT ROWS** seleciona as alinhas de uma list box de seleção de entidades ou uma list box coleção que corresponde às entidades ou objetos contendo o parâmetro *seleção*. @@ -85,4 +82,13 @@ Exemplo com a coleção de objetos: #### Ver também -[ LISTBOX SELECT ROW ](listbox-select-row.md) \ No newline at end of file +[ LISTBOX SELECT ROW ](listbox-select-row.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1715 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md index b1191a203cf77c..bb5598b03f1aa6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota**: este comando só funciona com os list box de tipo array. @@ -67,4 +64,13 @@ Se quiser definir um array de altura de linha para um list box: #### Ver também [LISTBOX Get array](listbox-get-array.md) -[LISTBOX GET ARRAYS](listbox-get-arrays.md) \ No newline at end of file +[LISTBOX GET ARRAYS](listbox-get-arrays.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1279 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md index 97d3c062164442..9f25c6e61a97fc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET AUTO ROW HEIGHT** \[#descv\]lhe permite estabelecer o *valor* de altura de fila mínimo ou máximo no objeto de list box designado utilizando os parâmetros *objeto* e *\**\[#/descv\]. @@ -59,4 +56,13 @@ Se quiser definir as alturas mínimas e máximas para um list box com uma altura [LISTBOX Get auto row height ](listbox-get-auto-row-height.md) [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1501 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md index 7f78093e4eb15a..ea1c4c760bc81e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET COLUMN FORMULA** modifica a *formula* associada à coluna de list box designada pelos parâmetros *objeto* e *\**. As fórmulas só podem ser utilizadas quando a propriedade “Fonte de dados” do list box forem de **Seleção atual**, **Seleção temporal** ou **Coleção ou Seleção de Entidades.** @@ -43,4 +40,13 @@ O parâmetro *tipoDados* designa o tipo de dados resultantes da execução da f #### Ver também [LISTBOX Get column formula](listbox-get-column-formula.md) -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1203 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md index 90536b3006706a..ac7cb66a10ceed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SET COLUMN WIDTH le permite modificar por programação a largura de uma ou todas as colunas do objeto (list box, coluna ou título) designado utilizando os parâmetros *objeto* e *\**. @@ -34,4 +31,13 @@ Os parâmetros opcionais *larguraMin e* *larguraMax* permitem definir os limites #### Ver também -[LISTBOX Get column width](listbox-get-column-width.md) \ No newline at end of file +[LISTBOX Get column width](listbox-get-column-width.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 833 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md index b084529d015127..baa9eeba2c5ba7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET FOOTER CALCULATION** permite definir o cálculo automático associado à área de rodapé do list box designado pelos parâmetros *objeto* e *\**. @@ -52,4 +49,13 @@ Se o tipo de dados da coluna ou de pelo menos uma coluna do list box (se objeto #### Ver também -[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) \ No newline at end of file +[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1140 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md index 54f20afd3fd7a9..26916a336daaa9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET FOOTERS HEIGHT** modifica por programação a altura da linha de rodapé do list box designado pelos parâmetros *objeto* e *\**. @@ -37,4 +34,13 @@ Passe no parâmetro *altura* a altura a definir. Por defeito, é omitido o parâ #### Ver também -[LISTBOX Get footers height](listbox-get-footers-height.md) \ No newline at end of file +[LISTBOX Get footers height](listbox-get-footers-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1145 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md index 9500db384b367f..cb7039d61604eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET GRID COLOR** lhe permite modificar a cor da grade do objeto list box designado pelos parâmetros *objeto* e *\**. @@ -37,4 +34,13 @@ Os parâmetros *horizontal* e *vertical* lhe permitem especificar as linhas as q [LISTBOX GET GRID COLORS](listbox-get-grid-colors.md) [LISTBOX SET GRID](listbox-set-grid.md) -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 842 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md index 3001e1bb8735ea..52d3452cf2be17 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET GRID** lhe permite mostrar ou ocultar as linhas horizontais e verticais que compõe a matriz no list box designado pelos parâmetros *objeto* e *\**. @@ -31,4 +28,13 @@ Passe nos parâmetros *horizontal* e *vertical* os valores booleanos que indicam [LISTBOX GET GRID](listbox-get-grid.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 841 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md index 5703b17031125f..672d74a2d80ef5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET HEADERS HEIGHT** modifica por programação a altura da linha de cabeçalho do list box designado pelos parâmetros *objeto* e *\**. @@ -41,4 +38,13 @@ Cabeçalhos devem respeitar a altura mínima estabelecida pelo sistema. Esta alt #### Ver também -[LISTBOX Get headers height](listbox-get-headers-height.md) \ No newline at end of file +[LISTBOX Get headers height](listbox-get-headers-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1143 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md index e1d651a65f09d5..6b967a857d5e0d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SET HIERARCHY permite configurar o objeto list box designado pelos parâmetros objeto e *\** em modo hierárquico ou não hierárquico. @@ -55,4 +52,13 @@ Definição dos arrays aPais, aRegião e aCidade como hierarquia de um list box: #### Ver também -[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) \ No newline at end of file +[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1098 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md index 08096018d941f9..a6ad869cf7f15b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando**LISTBOX SET LOCKED COLUMNS** bloqueia as primeiras *numColunas* colunas esquerdas do list box designado pelos parâmetros *objeto* e *\**. @@ -33,4 +30,13 @@ Para eliminar o bloqueio de colunas, passe 0 em *numColunas*. #### Ver também [LISTBOX Get locked columns](listbox-get-locked-columns.md) -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1151 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md index 724ee83dd4879b..fd0b0702dcd215 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET PROPERTY** define o *valor* da *propriedade* da coluna list box ou list box especificada utilizando os parâmetros *objeto* e *\**. @@ -86,4 +83,13 @@ Se quiser definir a largura máxima da coluna "ProductNumber": *List box* -[LISTBOX Get property](listbox-get-property.md) \ No newline at end of file +[LISTBOX Get property](listbox-get-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1440 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md index 21cb76493dd2c6..e699a2733d4b20 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** Este comando só funciona com listboxes de tipo array. @@ -65,4 +62,13 @@ Em um array de tipo list box, queremos estabelecer as cores de uma fila e para u *List box* [LISTBOX Get row color](listbox-get-row-color.md) [LISTBOX Get row color as number](listbox-get-row-color-as-number.md) -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1270 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md index fe13cba3a5fbd9..cd25b91eb2ac31 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** Este comando só funciona com os list boxes de tipo array. @@ -80,4 +77,13 @@ Depois da segunda declaração, todas as células da terceira fila mudam de fila #### Ver também [LISTBOX Get row font style](listbox-get-row-font-style.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1268 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md index 02c02fdce6bd02..a781b11ac81b26 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET ROW HEIGHT** lhe permite modificar a altura da *fila* especificada no objeto list box designado utilizando os parâmetros *objeto e* *\**. @@ -86,4 +83,13 @@ Por outro lado, se o código abaixo for executado posteriormente... [LISTBOX Get row height ](listbox-get-row-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1409 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md index 39b8921db0ca65..ccaaf04f55742d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SET ROWS HEIGHT lhe permite modificar por programação a altura das filas do objeto list box designado pelos parâmetros *objeto* e *\**. @@ -38,4 +35,13 @@ Nota: para mais informação sobre o cálculo das alturas das linhas, consulte o [LISTBOX Get rows height](listbox-get-rows-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 835 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md index 86bb6cb3b20627..e4a6b46b83a2a6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET STATIC COLUMNS** define as primeiras *numColunas* colunas (começando pela esquerda) no list box designado pelos parâmetros *objeto* e *\**. @@ -29,4 +26,13 @@ As colunas estáticas não podem mover-se no list box. #### Ver também [LISTBOX Get static columns](listbox-get-static-columns.md) -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1153 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md index 5024550ea01dfa..941c78b2c2b61f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-set-table-source.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **LISTBOX SET TABLE SOURCE** permite modificar a fonte de dados mostrada no listbox desenhado pelos parâmetros *\** e *objeto* @@ -39,4 +36,13 @@ Se o list box já conter as colunas, seus conteúdos são atualizados depois da #### Ver também -[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) \ No newline at end of file +[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1013 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md index a45b551999d469..0f0aed6f725635 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/listbox-sort-columns.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando LISTBOX SORT COLUMNS \[descv\] ordena as filas do list box designado pelos parâmetros objeto e \* em função dos valores de uma ou várias colunas.\[#/descv\] @@ -36,3 +33,13 @@ Pode definir ordenações multiniveis: para fazer isso, passe tantos pares (*num Conforme com o princípio de funcionamento do list box, as colunas estão sincronizadas, o que significa que a ordenação de uma coluna repercute automaticamente em todas as outras colunas do objeto. Nota: O comando LISTBOX SORT COLUMNS não leva em consideração a propriedade de listbox *Ordenável* . + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 916 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md index 81ecd364dd9065..da899c1e65c907 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-4d-view-document.md @@ -194,3 +194,13 @@ Obterá o resultado abaixo (objeto stringified): ``` **Nota:** para mais informação sobre o formato do [objeto](# "Estruturas de dados como objetos 4D nativos"), devolvido, contacte os serviços técnicos de 4D. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1528 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md index 807abe66baf1e7..931805de5cbc89 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Load list cria uma lista hierárquica cujo conteúdo é copiado da lista passada em *nomeLista*. Depois retorna o número de referência da lista criada recentemente. @@ -50,4 +47,13 @@ Você cria um banco para o mercado internacional e necessita mudar aos diferente [CLEAR LIST](clear-list.md) [Is a list](is-a-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 383 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md index ccb142bd100154..e59e793fea7909 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-record.md @@ -35,4 +35,13 @@ displayed_sidebar: docs [Locked](locked.md) *Record Locking* -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 52 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md index 842dffd7b7bb1c..7bf76bdb0080c0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-set.md @@ -41,4 +41,14 @@ Se o usuário clicar em Cancelar na caixa de diálogo de abrir arquivos, ou se f #### Ver também -[SAVE SET](save-set.md) \ No newline at end of file +[SAVE SET](save-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 185 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md index bc78b87a4d0973..f19bc10d15b91b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/load-variables.md @@ -44,4 +44,14 @@ Se as variáveis são carregadas corretamente, a variável sistema OK assume o v [BLOB TO VARIABLE](blob-to-variable.md) [DOCUMENT TO BLOB](document-to-blob.md) [RECEIVE VARIABLE](receive-variable.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 74 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md index 64754185393e98..7282826a32f540 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-document-path.md @@ -64,4 +64,13 @@ Se a linguagem atuarl for, por exemplo, francês canadense (fr-ca), o comando de #### Ver também -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1105 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md index 599245ed444633..47cd70bcc61664 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/localized-string.md @@ -53,4 +53,14 @@ Se o comando for executado corretamente, a variável OK assume o valor 1\. Se *r #### Ver também -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 991 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md index c3431b8132c3be..45d8ecd73ffe3d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-by.md @@ -38,4 +38,13 @@ nomeProcesso devolve o endereço IP do locker, p. ex. "127.0.0.1" #### Ver também [Locked](locked.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 353 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md index c651de238ecd53..14916159f93dc2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked-records-info.md @@ -89,4 +89,13 @@ Se o código é executado em um 4D Server e o bloqueio é causado por uma máqui #### Ver também -[Locked](locked.md) \ No newline at end of file +[Locked](locked.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1316 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md index db57fa3a89c26e..4cc9e656d20211 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/locked.md @@ -33,4 +33,13 @@ Durante uma transação, [LOAD RECORD](load-record.md) e Locked se utilizam com [Locked records info](locked-records-info.md) [LOAD RECORD](load-record.md) [LOCKED BY](locked-by.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 147 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md index 7ed3ab06619fb9..07a690004d2a5d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-event.md @@ -63,3 +63,13 @@ Cada vez que se abre o banco de dados, esta informação será escrita no visor #### Ver também [SET DATABASE PARAMETER](set-database-parameter.md) + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 667 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md index b4448c1bad328f..2655ce52331019 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file-to-json.md @@ -95,4 +95,14 @@ Ocomando **LOG FILE TO JSON** modifica o valor das variáveis OK e Document: se #### Ver também -[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) \ No newline at end of file +[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1352 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md index 2c5c586e941100..1dae3982337cbe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log-file.md @@ -30,4 +30,14 @@ Se o banco de dados funciona com um arquivo de histórico, a variável de sistem #### Ver também -[SELECT LOG FILE](select-log-file.md) \ No newline at end of file +[SELECT LOG FILE](select-log-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 928 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md index f7958a93429fec..8ffeba8e63b6d1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/log.md @@ -30,4 +30,13 @@ A linha a seguir mostra 1: #### Ver também -[Exp](exp.md) \ No newline at end of file +[Exp](exp.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 22 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md index 2f8a7edc631154..a753020113f45c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-array-from-selection.md @@ -34,4 +34,13 @@ Se quiser recuperar os números dos registros da seleção atual: #### Ver também -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 647 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md index 4f971bb0ebb4d2..170ebd3671628e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/longint-to-blob.md @@ -113,4 +113,13 @@ Depois de executar esse código: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 550 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md index 3838cad1db03fd..b5621a85564331 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/lowercase.md @@ -46,4 +46,13 @@ Este exemplo compara os resultados obtidos de acordo com se é passado ou não o #### Ver também -[Uppercase](uppercase.md) \ No newline at end of file +[Uppercase](uppercase.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 14 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md index d3a327942876d7..82e43222957933 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-command-down.md @@ -30,4 +30,13 @@ Ver exemplo do comando [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 546 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md index 725e5db6986ade..5515fcfda14c72 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-control-down.md @@ -30,4 +30,13 @@ Ver exemplo do comando [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 544 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md index 8ee9af9d0b24cd..db64cd3686f801 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/macintosh-option-down.md @@ -30,4 +30,13 @@ Ver exemplo do comando [Shift down](shift-down.md). [Macintosh control down](macintosh-control-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 545 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md index 308cd5698d7a08..0a412189558809 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/match-regex.md @@ -111,3 +111,14 @@ Adicionar una estrela ao final de uma das duas sintaxes anteriores. #### Gestão de erros Em caso de erro, o comando gera um erro que pode interceptar através de um método instalado pelo comando [ON ERR CALL](on-err-call.md "ON ERR CALL"). + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1019 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md index c9cd72068b341a..ffb73b06ea96d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/max.md @@ -69,4 +69,14 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri #### Ver também -[Min](min.md) \ No newline at end of file +[Min](min.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 3 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md index b6c5e523f7e981..92ad9e1c2c7a9e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/maximize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando MAXIMIZE WINDOW provoca a expansão da janela cujo número de referência se passa em *janela*. Se for omitido este parâmetro, o efeito é o mesmo mas é aplicado a todas as janelas da aplicação (Windows) ou a janela do primeiro plano do processo atual (Mac OS). @@ -81,4 +78,13 @@ Neste contexto, se o usuário fizer clique no botão: [Is window maximized](is-window-maximized.md) [MINIMIZE WINDOW](minimize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 453 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md index 47b750b533c0e5..90c85fae3e8366 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/memory-statistics.md @@ -26,4 +26,13 @@ Depois que o comando for executado, as estatísticas são fornecidas nos arrays #### Ver também -[Cache info](cache-info.md) \ No newline at end of file +[Cache info](cache-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1118 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md index 7c831ea1185b05..8c7f274d87e0e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Menu bar height retorna a altura da barra menu, expressa em pixels. @@ -31,4 +28,13 @@ O comando retorna 0: [HIDE MENU BAR](hide-menu-bar.md) [Menu bar screen](menu-bar-screen.md) -[SHOW MENU BAR](show-menu-bar.md) \ No newline at end of file +[SHOW MENU BAR](show-menu-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 440 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md index ba18c2b63a9c0d..5ed0cde75698d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-bar-screen.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Menu bar screen devolve o número da tela onde está a barra de menus. @@ -25,4 +22,13 @@ displayed_sidebar: docs #### Ver também [Count screens](count-screens.md) -[Menu bar height](menu-bar-height.md) \ No newline at end of file +[Menu bar height](menu-bar-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 441 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md index a5451da373bae7..64e6f79abf1bc0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/menu-selected.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Menu selected é utilizado só quando são mostrados formulários. Esta função detecta o comando de menu escolhido no menu no caso de um submenu hierárquico, retorna a referência do submenu. @@ -63,4 +60,14 @@ O método a seguir de formulário utiliza Menu selected para proporcionar os arg #### Ver também -*Gestão de Menus* \ No newline at end of file +*Gestão de Menus* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 152 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md index b3cba598d1b136..9d16b144435953 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/message.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **MESSAGE** geralmente se utiliza para informar ao usuário sobre alguma atividade. Mostra *mensagem* na tela em uma janela de mensagem especial que se abre e fecha cada vez que chamar a **MESSAGE**, a menos que trabalhe com uma janela que abriu previamente utilizando [Open window](open-window.md) (ver detalhes abaixo). A mensagem é temporária e é apagada assim que um formulário for exibido ou o método parar de executar. Se outra **MESSAGE** for executada, a mensagem antiga é apagada. @@ -114,4 +111,13 @@ O resultado é o seguinte (em Windows): [CLOSE WINDOW](close-window.md) [ERASE WINDOW](erase-window.md) [GOTO XY](goto-xy.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 88 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md index 49744c86fabd22..30ee528b30acf9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-off.md @@ -64,4 +64,13 @@ O exemplo a seguir elimina os termômetros de progresso antes de realizar uma or #### Ver também -[MESSAGES ON](messages-on.md) \ No newline at end of file +[MESSAGES ON](messages-on.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 175 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md index f1f0949eb4c74f..bd39e5b0fcbafd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/messages-on.md @@ -18,4 +18,13 @@ displayed_sidebar: docs #### Ver também -[MESSAGES OFF](messages-off.md) \ No newline at end of file +[MESSAGES OFF](messages-off.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 181 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md index 947808166f624b..e3c039cb7f6cd3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-error.md @@ -44,4 +44,13 @@ Este comando é particularmente útil no contexto de componentes porque lhe perm #### Ver também *Error Handler* -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 704 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md index 7abc3ef6639993..4f353a1cae4cf2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-called-on-event.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Method called on event devolve o nome do método instalado pelo comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL"). @@ -24,4 +21,13 @@ Se nenhum método do tipo for instalado, uma cadeia vazia ("") é retornada. #### Ver também -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 705 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md index 99cb9094b1e9de..f6038f4a4c2782 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando**METHOD Get attribute**retorna o valor do atributo *tipoAtributo* para o método projeto designado pelo parâmetro *rota*. @@ -43,4 +40,13 @@ O comando retorna **True** se for selecionado um atributo e **False** se for des #### Ver também -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1169 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md index dcf0b8badcb066..34deb7a53ea8e7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-attributes.md @@ -58,4 +58,13 @@ Depois da execução, $att contém, por exemplo: #### Ver também -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1334 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md index 498b77abf72f6e..99a15eda04dea5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-code.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET CODE** devolve no parâmetro *codigo*, o conteúdo dos métodos designados pelo parâmetro *rota*. Este comando pode devolver o código de todos os tipos de métodos: métodos base, triggers, métodos projeto, métodos formulário e métodos objeto. @@ -126,4 +123,13 @@ O documento resultante conterá: #### Ver também [METHOD SET CODE](method-set-code.md) -*Usar tokens em fórmulas* \ No newline at end of file +*Usar tokens em fórmulas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1190 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md index 367f339996f237..6f794e76399b66 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET COMMENTS** devolve no parâmetro *comentários*, os comentários dos métodos designados pelo parâmetro *rota*. @@ -58,4 +55,13 @@ Se o comando é executado desde um componente, se aplica por defeito aos método #### Ver também -[METHOD SET COMMENTS](method-set-comments.md) \ No newline at end of file +[METHOD SET COMMENTS](method-set-comments.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1189 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md index 1a8789e7747cde..7c55d32383c73d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-folders.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET FOLDERS** devolve no array *arrayNoms*, os nomes das pastas criadas na página Início do Explorador de 4D: @@ -31,4 +28,13 @@ Se executado este comando desde um componente, devolve por defeito os caminhos d #### Ver também -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1206 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md index 8bdbd08504df4e..a76fdb019d0b9f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-modification-date.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET MODIFICATION DATE** retorna nos parâmetros *dataMod* e *horaMod* as datas e horários da última modificação dos métodos designados pelo parâmetro rota. @@ -70,3 +67,13 @@ Se quiser obter as datas de modificação dos métodos de um módulo com o prefi ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1170 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md index 18fbc96c61eaa9..2f6cc7b1093fed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-names.md @@ -39,3 +39,13 @@ Exemplos de uso:   // Lista dos métodos projeto da base local que começam por uma cadeia específica  METHOD GET NAMES(t_Names;"web_@";*) ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1166 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md index 6fd934b62743c2..bd092935a54c03 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD Get path** devolve a rota de acesso interna completa de um método. @@ -66,4 +63,13 @@ Se o comando for executado desde um componente, retorna como padrão as rotas do [Current method path](current-method-path.md) [METHOD OPEN PATH](method-open-path.md) -[METHOD RESOLVE PATH](method-resolve-path.md) \ No newline at end of file +[METHOD RESOLVE PATH](method-resolve-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1164 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md index 36fcd926e5e9fe..9043a2a870869d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET PATHS FORM** enche o array *arrRotas* com as rotas de acesso internas e os nomes dos métodos de todos os objetos dos formulários assim como também dos métodos formulário. Os métodos formulário se etiquetam {formMethod}. @@ -71,4 +68,13 @@ Lista de todos os objetos dos formulários "input" da tabela \[Empregados\] a pa #### Ver também -[FORM GET NAMES](form-get-names.md) \ No newline at end of file +[FORM GET NAMES](form-get-names.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1168 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md index c6e16d84cd1ebe..f7cb893e87dc32 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-get-paths.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD GET PATHS** enche o array *arrRotas* com as rotas de acesso internas e os nomes dos métodos da aplicação do tipo definido pelo parâmetro *tipoMetodo*. @@ -86,4 +83,13 @@ Consulte o exemplo do comando [METHOD SET CODE](method-set-code.md). #### Ver também [Current method path](current-method-path.md) -[METHOD GET FOLDERS](method-get-folders.md) \ No newline at end of file +[METHOD GET FOLDERS](method-get-folders.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1163 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md index 9256b90613fc3d..905a64c8395c03 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-open-path.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD OPEN PATH** abre, no editor de métodos de 4D, o método cuja rota de acesso interna é passada no parâmetro *rota*. @@ -31,4 +28,13 @@ Pode executar este comando desde um componente, mas neste caso, deve passar o pa #### Ver também *Design Object Access Commands* -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1213 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md index 954dd453182f47..19e304933643eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-resolve-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD RESOLVE PATH** analisa a rota de acesso interna passada no parâmetro *rota* e devolve seus diferentes componentes nos parâmetros *tipoMetodo*, *ptrTabela*, *nomObjeto* e *nomObjetoForm*. @@ -85,4 +82,13 @@ Resolução de uma rota de método de formulário tabela: #### Ver também -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1165 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md index 2abb70f1c612f0..cd7d0f00f951ba 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-access-mode.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD SET ACCESS MODE** permite definir o comportamento de 4D quando intenta acessar em escritura a um objeto que já foi carregado em modificação por outro usuário ou processo . O alcance deste comando é a sessão atual. @@ -27,3 +24,13 @@ Em *modo*, passe uma das seguintes constantes do tema *Design Object Access*: | On object locked abort | Inteiro longo | 0 | A carga do objeto se aborta (funcionamento por defeito) | | On object locked confirm | Inteiro longo | 2 | 4D mostra uma caixa de diálogo permitindo-lhe eleger entre intentar novamente o abortar. Em modo remoto, esta opção não é suportada (a carga se abandona) | | On object locked retry | Inteiro longo | 1 | 4D tenta carregar o objeto até que seja liberado | + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1191 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md index a11d72e171ffec..e7779da73e6286 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD SET ATTRIBUTE** permite definir o valor do atributo tipoAtrib para o método projeto designado pelo parâmetro *rota*. Este comando somente funciona com métodos projeto. Se passar uma rota não válida, um erro é gerado. @@ -69,4 +66,13 @@ Definição de vários pares de atributos/valores: *Design Object Access* [METHOD Get attribute](method-get-attribute.md) -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1192 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md index 315deb99bc286a..ad6044d41ba46f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-attributes.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O novo comando **METHOD SET ATTRIBUTES** permite que você defina os valores dos *atributos* para os métodos especificados no parâmetro *caminho*. @@ -62,4 +59,13 @@ Se você desejar modificar apenas um atributo: #### Ver também [METHOD GET ATTRIBUTES](method-get-attributes.md) -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1335 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md index 899a4b2950c9f2..712f8f5d6f4901 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-code.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD SET CODE** modifica o código dos métodos designados pelo parâmetro *rota* com o conteúdo passado no parâmetro *codigo*. Este comando pode acessar ao código de todos os tipos de métodos: métodos de banco, triggers, métodos projeto, métodos formulário e métodos objeto. Se um método não existir, é criado com os conteúdos *codigo*. @@ -98,4 +95,13 @@ Este exemplo exporta e importa a totalidade dos métodos projeto de uma aplicaç #### Ver também -[METHOD GET CODE](method-get-code.md) \ No newline at end of file +[METHOD GET CODE](method-get-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1194 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md index 5c5193546f92d5..3554435048afab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/method-set-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **METHOD SET COMMENTS** substitui os comentários dos métodos designados pelo parâmtero *rota* pelos definidos no parâmetro *comentarios*. @@ -71,4 +68,13 @@ Pode executar o comando de uma componente, mas neste caso você deve passar o pa #### Ver também -[METHOD GET COMMENTS](method-get-comments.md) \ No newline at end of file +[METHOD GET COMMENTS](method-get-comments.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1193 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md index 1811cf2b032219..784b453b5b2846 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/milliseconds.md @@ -46,4 +46,13 @@ O código abaixo espera até 5 segundos para que um registro bloqueado seja desb [Current time](current-time.md) [Tickcount](tickcount.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 459 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md index 4597575c7ce959..97db3c2a9e74f5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/min.md @@ -77,4 +77,14 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri #### Ver também -[Max](max.md) \ No newline at end of file +[Max](max.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 4 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md index a76cb35f1d45d0..c15afe2de80160 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/minimize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando MINIMIZE WINDOW define o tamanho da janela, cujo número foi passado em *janela*, do tamanho que tinha antes de ser maximizada. Se for omitido janela, o comando aplica a cada janela da aplicação (Windows) ou a janela do primeiro plano do processo atual (em Mac OS). @@ -52,4 +49,13 @@ Mac OS #### Ver também [MAXIMIZE WINDOW](maximize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 454 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md index 9d01e7d2c0fffb..c18b9336d11465 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md @@ -44,4 +44,13 @@ Se quiser resetar todas as sessões atuais para todas as aplicações móveis: #### Ver também -[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) \ No newline at end of file +[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1596 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md index 8fd7f2af12b71f..cb54b2753a539e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mod.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando Mod retorna o resto da divisão inteira de *numero1* por *numero2*. - -**Notas:** +O comando Mod retorna o resto da divisão inteira de *numero1* por *numero2*. • Mod aceita expressões de tipo Inteiro, Inteiro longo e Reais. Entretanto, se *numero1* ou *numero2* são números reais, os números são arredondados primeiro e depois Mod é calculado. • Seja cuidadoso quando utilize Mod com números reais de grande tamanho (acima de 2^31), já que neste caso, sua operação poderia alcançar os limites das capacidades de cálculo dos processadores padrão. @@ -36,3 +34,13 @@ O exemplo a seguir ilustra o funcionamento de Mod com diferentes argumentos. Cad  vlResult:=Mod(4;2) // vlResult vale 0  vlResult:=Mod(3.5;2) // vlResult vale 0 ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 98 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md index 9558179ff82b9b..0aff1a38a806d3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified-record.md @@ -41,4 +41,13 @@ O exemplo a seguir mostra uma utilização típica de Modified record: [Modified](modified.md) [Old](old.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 314 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md index c3b3a31b9caf10..705b6ca9b25c92 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modified.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Modified** retorna [True](true.md "True") se um valor tiver sido atribuído por programação a *campo* ou se tiver sido modificado durante a entrada de dados. O comando **Modified**deve ser utilizado unicamente em um método de formulário (ou uma subrotina chamada por um método de formulário). @@ -69,4 +66,13 @@ Seleciona um registro para a tabela *\[umaTabela\]*, depois chama múltiplas sub #### Ver também [Form event code](form-event-code.md) -[Old](old.md) \ No newline at end of file +[Old](old.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 32 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md index 32e15d9148eec3..9ed0b760be6a98 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando MODIFY RECORD permite ao usuário modificar o registro atual da tabela *tabela* ou da tabela por padrão se é omitido o parâmetro *tabela*. MODIFY RECORD carrega o registro, se não for carregado pelo processo atual e mostra o formulário de entrada atual. Se não houver registro atual, então MODIFY RECORD não faz nada. MODIFY RECORD não afeta a seleção atual. @@ -50,4 +47,15 @@ A variável sistema OK toma o valor 1 se aceitar o registro e 0 se o cancelar. A [Locked](locked.md) [Modified record](modified-record.md) [READ WRITE](read-write.md) -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 57 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md index 0cf4b5e885078f..1c2ef4a415adc7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/modify-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição MODIFY SELECTION é quase idêntico ao comando [DISPLAY SELECTION](display-selection.md). Consulte a descrição do comando [DISPLAY SELECTION](display-selection.md) para uma descrição detalhada. As diferenças entre os dois comandos são: . @@ -32,4 +29,14 @@ displayed_sidebar: docs *Conjuntos* [DISPLAY SELECTION](display-selection.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 204 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md index 8f1d6b2f39c971..352d008751c988 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/monitored-activity.md @@ -134,4 +134,13 @@ Ver exemplos para **[START MONITORING ACTIVITY](start-monitoring-activity.md)** #### Ver também [START MONITORING ACTIVITY](start-monitoring-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1713 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md index 2f5f67a179f68e..8d4eca233b2c94 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/month-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando Month of retorna o mês de *data*. - -**Nota:** Month of retorna o número do mês, não o nome. (ver exemplo 1). +O comando Month of retorna o mês de *data*.Month of retorna o número do mês, não o nome. (ver exemplo 1). Para comparar o valor retornado por esta função, 4D oferece as seguintes constantes pré-definidas, que se encontram no tema "Days and Months": @@ -53,4 +51,13 @@ Ver o exemplo do comando [Current date](current-date.md "Current date"). #### Ver também [Day of](day-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 24 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md index 08fd62f21eec05..fab938e3b4c780 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/mouse-position.md @@ -40,4 +40,13 @@ Ver o exemplo do comando [Pop up menu](pop-up-menu.md). [ON EVENT CALL](on-event-call.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 468 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md index 94a794cc00f9c5..7f3b630d785a4f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/move-document.md @@ -50,4 +50,14 @@ O exemplo abaixo move o documento DocNome: #### Ver também -[COPY DOCUMENT](copy-document.md) \ No newline at end of file +[COPY DOCUMENT](copy-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 540 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md index 22dac32ccddf89..f0c33853baf6fb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/multi-sort-array.md @@ -114,4 +114,13 @@ Se quiser que o array de nomes seja usado como um terceiro critério de ordenaç [ORDER BY](order-by.md) [SELECTION TO ARRAY](selection-to-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 718 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md index ed3c5aa64fd164..ec36a10b7781e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-data-key.md @@ -54,4 +54,13 @@ Se quiser salvar uma chave de criptografia em um arquivo .4DKeyChain: [Discover data key](discover-data-key.md) [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[Register data key](register-data-key.md) \ No newline at end of file +[Register data key](register-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1611 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md index 5e9c26c7c8d1b2..d42710913eae5d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-list.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição New list cria uma nova lista hierárquica vazia em memória e retorna seu número de referência único. @@ -46,4 +43,13 @@ Ver o exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST"). [DELETE FROM LIST](delete-from-list.md) [INSERT IN LIST](insert-in-list.md) [LIST TO BLOB](list-to-blob.md) -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 375 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md index 522a3be91b1ebf..fe40095d56ba69 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-log-file.md @@ -30,3 +30,14 @@ O arquivo é renomeado com os números de backups atuais do banco de dados e o a Caso se apresente um erro, o comando gera um código que pode ser interceptado utilizando o comando [ON ERR CALL](on-err-call.md "ON ERR CALL"). + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 926 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md index e6bf14783e5de6..b7ac374a1fe57b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-object.md @@ -107,4 +107,13 @@ Com este comando, pode fácilmente manejar objetos em loops: #### Ver também -[New shared object](new-shared-object.md) \ No newline at end of file +[New shared object](new-shared-object.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1471 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md index 7c9968ea0b30c6..de5334d92871e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-process.md @@ -105,4 +105,13 @@ No editor de barras de menus, pode substituir ADICIONAR CLIENTES pelo método IN [Execute on server](execute-on-server.md) *Processos* -*Processos 4D Preemptivos* \ No newline at end of file +*Processos 4D Preemptivos* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 317 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md index 883d774b42a719..f8a1917f38e17b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/new-shared-object.md @@ -66,4 +66,13 @@ Se quiser criar e modificar um objeto compartido. A estrutura deve ser chamada p [New object](new-object.md) [New shared collection](new-shared-collection.md) -*Objetos compartidos e Coleções compartidas* \ No newline at end of file +*Objetos compartidos e Coleções compartidas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1526 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md index 960b2b853264ae..6dac254ee1e9bc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-record.md @@ -29,4 +29,14 @@ Ver o exemplo do comando [DISPLAY RECORD](display-record.md "DISPLAY RECORD"). [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 51 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md index 5e0dbed4ccabb3..eff0ff20d08ed5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/next-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição @@ -25,4 +22,13 @@ O comando Next window devolve o número de referência da janela localizada “a #### Ver também -[Frontmost window](frontmost-window.md) \ No newline at end of file +[Frontmost window](frontmost-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 448 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md index 758b7ae2e20b2f..fd165aa6bc8c94 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/no-default-table.md @@ -41,4 +41,13 @@ Em um banco que contenha um formulário de projeto chamado "oFormulário" e um f #### Ver também -[DEFAULT TABLE](default-table.md) \ No newline at end of file +[DEFAULT TABLE](default-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 993 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md index 0160c4ebf22de7..cff138a46bd08b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/not.md @@ -31,4 +31,13 @@ Este exemplo atribui primeiro Verdadeiro a uma variável, logo muda o valor da v #### Ver também [False](false.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 34 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md index 732ebb89b233b2..8670d49d29c6fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando NOTIFY RESOURCES FOLDER MODIFICATION "força" 4D Server a enviar uma notificação a todas as máquinas conectadas a 4D, indicando que a pasta de Resources do banco de dados foi modificada de modo que eles possam sincronizar sua pasta de recursos locais. @@ -35,4 +32,13 @@ O parâmetro atual pode estar definido: #### Ver também -[Get 4D folder](get-4d-folder.md) \ No newline at end of file +[Get 4D folder](get-4d-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1052 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md index af13662050b843..ed603440591805 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/null.md @@ -129,4 +129,13 @@ Abaixo os diferentes resultados do comando [Undefined](undefined.md) assim como [Is field value Null](is-field-value-null.md) [OB SET NULL](ob-set-null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1517 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md index 1f267edccb9c61..80278a68706bd6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/num.md @@ -84,4 +84,13 @@ Este exemplo compara os resultados obtidos dependendo do separador “atual”: [Bool](bool.md) [GET SYSTEM FORMAT](get-system-format.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 11 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md index 2cb59ba01c69c8..45260d36edeb84 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-class.md @@ -42,4 +42,13 @@ Depois, em um método, pode escrever: #### Ver também -[OB Instance of](ob-instance-of.md) \ No newline at end of file +[OB Instance of](ob-instance-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1730 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md index dd8b09e4c429a0..01237538bc216b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-copy.md @@ -20,9 +20,6 @@ displayed_sidebar: docs #### Descrição O comando **OB Copy** devolve um objeto que contém uma cópia completa das propriedades, sub objetos e valores de *objeto*. - -* Primeira sintaxe: **OB Copy(object{; resolvePtrs})** - Se o *objeto* conter valores de tipo de ponteiro, por padrão a cópia também contém os ponteiros. No entanto, pode resolver os ponteiros ao momento da cópia passando **True** no parâmetro *resolvePont*. Neste caso, cada ponteiro presente como valor em objeto se avalia ao momento da cópia e utiliza seu valor não referenciado. @@ -167,4 +164,13 @@ Imagine que queira copiar *$sharedObj* em *$sharedCol mas* como eles pertencem a #### Ver também [OB Get](ob-get.md) -*Objetos compartidos e Coleções compartidas* \ No newline at end of file +*Objetos compartidos e Coleções compartidas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1225 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md index dedcf9bfae2bb4..c9054193ac40e9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-entries.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OB Entries** retorna uma coleção de objetos contendo os conteúdos de *objeto* como pares de propriedade key/value. @@ -56,4 +53,13 @@ Usando um objeto com um map hash (sistema key/value) oferece um acesso rápido e #### Ver também [OB Keys](ob-keys.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1720 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md index b1c438a9876a97..e4a35edfd6a3a4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB GET ARRAY** recupera em *array*, o array de valores armazenados na *propriedade* do objeto de linguagem designado pelo parâmetro *objeto*. - -*objeto* deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. +O comando **OB GET ARRAY** recupera em *array*, o array de valores armazenados na *propriedade* do objeto de linguagem designado pelo parâmetro *objeto*.deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. No parâmetro *propriedade*, passe a etiqueta da propriedade a ler. Tenha em conta que o parâmetro *propriedade* leva em conta as maiúsculas e minúsculas. @@ -52,4 +50,13 @@ Queremos mudar um valor no primeiro elemento do array: #### Ver também *Conversões de Tipo entre coleções e arrays 4D* -[OB SET ARRAY](ob-set-array.md) \ No newline at end of file +[OB SET ARRAY](ob-set-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1229 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md index c81839ceee0bda..fcdd719ee50bed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-property-names.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB GET PROPERTY NAMES** devolve, em *arrProp*, os nomes das propriedades contidas no objeto de linguagem designados pelo parâmetro *objeto* . - -*objeto* deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. +O comando **OB GET PROPERTY NAMES** devolve, em *arrProp*, os nomes das propriedades contidas no objeto de linguagem designados pelo parâmetro *objeto* .deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. Passe um array texto no parâmetro *arrProp*. Se o array não existe, o comando cria e o redimensiona de forma automática. @@ -98,4 +96,13 @@ Utilizando um elemento de array de objetos: #### Ver também [OB Get type](ob-get-type.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1232 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md index 8e2ba545e63110..97e691fbfaaa8d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get-type.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB Get type** devolve o tipo do valor associado a *propriedade* do *objeto*. - -*objeto* deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. +O comando **OB Get type** devolve o tipo do valor associado a *propriedade* do *objeto*.deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. No parâmetro *propriedade*, passe a etiqueta da propriedade cujo tipo quer conhecer. Tenha em conta que o parâmetro *propriedade* leva em conta as maiúsculas e minúsculas. @@ -54,4 +52,13 @@ Queremos obter o tipo de valores padrão: #### Ver também [OB GET PROPERTY NAMES](ob-get-property-names.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1230 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md index f5722a74c963f5..8662dc28a7c367 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-get.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB Get** devolve o valor atual da *propriedade* do *objeto*, convertido opcionalmente no *tipo* definido. - -*objeto* deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. +O comando **OB Get** devolve o valor atual da *propriedade* do *objeto*, convertido opcionalmente no *tipo* definido.deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. **Nota:** este comando suporta definições de atributo em *objetos* 4D Write Pro, como o comando *WP GET ATTRIBUTES* (ver o exemplo 9). . @@ -221,4 +219,13 @@ Se quiser conhecer o tamanho de uma imagem armazenada em um atributo objeto: [OB Copy](ob-copy.md) [OB SET](ob-set.md) -*Tipos de campos e variáveis* \ No newline at end of file +*Tipos de campos e variáveis* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1224 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md index 487d1c6fc5ad09..5cbdd133772ef2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-instance-of.md @@ -52,4 +52,13 @@ Depois em um método, pode escrever: #### Ver também -[OB Class](ob-class.md) \ No newline at end of file +[OB Class](ob-class.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1731 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md index 1be1247c72397c..da412e26b83d51 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-defined.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando**OB Is defined** devolve **True** se *objeto* ou *propriedade* se definem e **False** em caso contrário. - -*objeto* deve ter sido criado com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. +O comando**OB Is defined** devolve **True** se *objeto* ou *propriedade* se definem e **False** em caso contrário.deve ter sido criado com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. Por padrão, se omitir o parâmetro *propriedade*, o comando comprova que *objeto* esteja definido. Um objeto está definido se seu conteúdo foi inicializado. @@ -61,4 +59,13 @@ Esta prova é equivalente a: #### Ver também -[OB Is empty](ob-is-empty.md) \ No newline at end of file +[OB Is empty](ob-is-empty.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1231 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md index 92cca9f9754563..79453f09f6d2c1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-empty.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB Is empty** devolve **True** se *objeto* não está definido ou está vazio, e **False** se *objeto* está definido (inicializado) e contém ao menos uma propriedade. - -*objeto* deve ter sido criado com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. +O comando **OB Is empty** devolve **True** se *objeto* não está definido ou está vazio, e **False** se *objeto* está definido (inicializado) e contém ao menos uma propriedade.deve ter sido criado com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. #### Exemplo @@ -42,4 +40,13 @@ Estes são os diferentes resultados deste comando como também do comando [OB Is #### Ver também -[OB Is defined](ob-is-defined.md) \ No newline at end of file +[OB Is defined](ob-is-defined.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1297 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md index d6e628992e90b3..d0079a2eff5dee 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-is-shared.md @@ -19,3 +19,13 @@ displayed_sidebar: docs O comando **OB Is shared** devolve **True** se o objeto ou coleção *aVerificar* é compartido, e **False** em caso contrário (ver *Objetos compartidos e Coleções compartidas*). Este comando devolve **True** se for passado uma seleção de entidades compaível em *aVerificar* (ver ). + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1759 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md index f3395a708bddfa..aba1eae9162547 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-keys.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OB Keys** retorna uma coleção de strings contendo todos os nomes de propriedade enumeráveis do *objeto*. @@ -48,4 +45,13 @@ Se quiser uma coleção com todos os nomes de propriedade de primeiro-nível de #### Ver também [OB Entries](ob-entries.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1719 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md index 70d24ec67b8f41..67ce69d8cceed7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-remove.md @@ -36,4 +36,13 @@ Você quer eliminar a propriedade "idade" de um objeto: #### Ver também -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1226 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md index 19badcd43a2d05..639f623a3c3395 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB SET ARRAY** define o *array* a ser associado a *propriedade* no objeto definido pelo parâmetro *objeto*. - -*objeto* deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. +O comando **OB SET ARRAY** define o *array* a ser associado a *propriedade* no objeto definido pelo parâmetro *objeto*.deve ter sido definido com o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. No parâmetro *propriedade*, passe a etiqueta da propriedade a criar ou modificar. Se a propriedade já existe em *objeto*, seu valor se atualiza. Se não existe, é criado. Tenha em conta que o parâmetro *propriedade* leva em conta as maiúsculas e minúsculas. @@ -131,4 +129,13 @@ Usar um array de imagem: *Conversões de Tipo entre coleções e arrays 4D* [OB GET ARRAY](ob-get-array.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1227 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md index fd2e9602ad383f..148099c0e90058 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set-null.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB SET NULL** armazena o valor **null** no objeto de linguagem designado pelo parâmetro *objeto* . - -*objeto* deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. +O comando **OB SET NULL** armazena o valor **null** no objeto de linguagem designado pelo parâmetro *objeto* .deve ter sido definido utilizando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D.. No parâmetro *propriedade*, passe a etiqueta da propriedade na que deseja armazenar o valor **null**. Se a propriedade já existe em *objeto*, seu valor se atualiza. Se não existe, é criada. Tenha em conta que o parâmetro *propriedade* tem em conta as maiúsculas e minúsculas. @@ -40,4 +38,13 @@ Queremos colocar o valor nulo na propriedade "idade" para Lea: [Null](null.md) [OB GET PROPERTY NAMES](ob-get-property-names.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1233 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md index c3fba845c66671..17c862c2a279b6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-set.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando **OB SET** cria ou modifica um ou mais pares de *propriedade*/*valor* no objeto de linguagem designado pelo parâmetro *objeto*. - -*objeto* deve ter sido definido usando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. +O comando **OB SET** cria ou modifica um ou mais pares de *propriedade*/*valor* no objeto de linguagem designado pelo parâmetro *objeto*.deve ter sido definido usando o comando [C\_OBJECT](c-object.md) ou designar um campo objeto 4D. No parâmetro *propriedade*, passe a etiqueta da propriedade a criar ou modificar. Se a propriedade já existe em *objeto*, seu valor se atualiza. Se não existe, é criado. @@ -199,4 +197,13 @@ Se quiser armazenar uma imagem em um campo objeto. Pode escrever: [OB Get](ob-get.md) [OB REMOVE](ob-remove.md) [OB SET ARRAY](ob-set-array.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1220 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md index 689c370371801f..cc8a394c03bd21 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/ob-values.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OB Values** retorna uma coleção de variantes contendo todas os valores de propriedade enumeráveis de *objeto*. @@ -46,4 +43,13 @@ Se quiser uma coleção com todos os valores de propriedade de um objeto: #### Ver também [OB Entries](ob-entries.md) -[OB Keys](ob-keys.md) \ No newline at end of file +[OB Keys](ob-keys.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1718 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md index 9f09c6f0b1fe41..e8fee872fe6120 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-duplicate.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT DUPLICATE permite criar uma cópia do objeto designado pelo parâmetro *objeto* no contexto do formulário que está sendo executado (modo Aplicação). O formulário de origem, gerado em modo Desenho, não se modifica. @@ -102,4 +99,14 @@ Criação de um novo botão opção "bRadio6" baseado no botão opção existent [OBJECT Get pointer](object-get-pointer.md) [OBJECT MOVE](object-move.md) -*Objetos de formulário (Acesso)* \ No newline at end of file +*Objetos de formulário (Acesso)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1111 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md index 393e0ff1c839e3..501a45234a9fb6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get action** devolve o nome e (se for o caso) o parâmetro da ação padrão associada com o objeto designado pelos parâmetros *objeto e* *\**. @@ -45,4 +42,13 @@ Se quiser associar a ação "Cancelar" com todos os objetos no formulário que a #### Ver também -[OBJECT SET ACTION](object-set-action.md) \ No newline at end of file +[OBJECT SET ACTION](object-set-action.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1457 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md index e06054746bb059..16a48a8eec8306 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get auto spellcheck** devolve o estado da opção Correção ortográfica automática do ou dos objeto(s) designado(s) pelos parâmetros *objeto* e *\** para o processo atual . @@ -28,4 +25,13 @@ O comando devolve **True** quando a correção ortográfica automática está at #### Ver também -[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) \ No newline at end of file +[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1174 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md index d6c2e236be3204..a0590244ab918e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-best-size.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET BEST SIZE** devolve nos parâmetros *largOpt* e *altOpt*, a largo e alto “ótimo” do objeto de formulário designado pelos parâmetros *\** e *objeto*. Estes valores se expressan em píxeles. Este comando é particularmente útil para a visualização ou impressão de relatórios complexos, associados ao comando [OBJECT MOVE](object-move.md). @@ -53,4 +50,13 @@ Consulte o exemplo no comando [SET PRINT MARKER](set-print-marker.md "SET PRINT #### Ver também [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 717 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md index 5c0f95a4b025b5..40b0c28de76627 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get border style** devolve o estilo de linha de borde do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\**. @@ -40,4 +37,13 @@ O comando devolve um valor que corresponde ao estilo da linha fronteira. Pode co #### Ver também -[OBJECT SET BORDER STYLE](object-set-border-style.md) \ No newline at end of file +[OBJECT SET BORDER STYLE](object-set-border-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1263 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md index d5193a16892981..6cd12b7541ef94 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get context menu** devolve o estado atual da opção "Menú contextual" do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -30,4 +27,13 @@ O comando devolve **True** se o menu contextual está ativo para o objeto e **Fa #### Ver também -[OBJECT SET CONTEXT MENU](object-set-context-menu.md) \ No newline at end of file +[OBJECT SET CONTEXT MENU](object-set-context-menu.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1252 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md index 7e65c6eaf5cda9..ab94394f2136b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET COORDINATES** devolve as coordenadas *esquerda*, *superior*, *direita* e *inferior* (em pontos) nas variáveis ou campos dos objetos do formulário atual definido pelos parâmetros *\** e *objeto*. @@ -86,4 +83,13 @@ O método devolve as coordenadas teóricas. Se o listbox é redimensionado, pode [CONVERT COORDINATES](convert-coordinates.md) [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) [OBJECT MOVE](object-move.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 663 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md index 5ebac7a6903819..c07b2d47bd7e47 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get corner radius** devolve o valor atual do rádio da esquina para o objeto retângulo arredondado cujo nome se passar no parâmetro *objeto*. Este valor pode ter sido definido a nível do formulário utilizando a lista de propriedades (ver *Rádio da esquina (retângulos)*), ou para o processo atual com o comando [OBJECT SET CORNER RADIUS](object-set-corner-radius.md). @@ -48,4 +45,13 @@ O seguinte código pode ser adicionado a um método button: #### Ver também -[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) \ No newline at end of file +[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1324 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md index c10cc85b0e5f0c..293ed3ba70aeec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get data source** devolve a fonte de dados atual dos objetos designados pelos parâmetros *objeto* e *\** . @@ -43,4 +40,13 @@ Executa o seguinte código: #### Ver também -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1265 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md index 6e772e15845cd2..89108af0efe864 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET DRAG AND DROP OPTIONS** devolve as opções de arrastar e soltar para o objeto o os objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -38,4 +35,13 @@ Cada parâmetro devolve True ou False dependendo se a opção correspondente est #### Ver também -[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) \ No newline at end of file +[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1184 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md index e69f4af2875f32..09ce26cb2f6643 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get enabled devolve True se o objeto ou grupo de objetos designado por objeto está ativo no formulário e False se não está ativo. @@ -36,4 +33,13 @@ Este comando pode ser aplicado aos seguintes tipos de objetos: #### Ver também -[OBJECT SET ENABLED](object-set-enabled.md) \ No newline at end of file +[OBJECT SET ENABLED](object-set-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1079 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md index 3a3c53936b630f..22e7490a6d0178 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get enterable devolve True se o objeto ou grupo de objetos designado por *objeto* tem o atributo **editável**; do contrário, devolve False. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d #### Ver também -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1067 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md index 7d7c7feb01c584..8778b2a138f1c5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-events.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET EVENTS** permite obter a configuração atual dos eventos formulário do formulário, do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\**. @@ -48,4 +45,13 @@ Você quer ativar dois eventos e obter a lista de eventos para um objeto: #### Ver também -[OBJECT SET EVENTS](object-set-events.md) \ No newline at end of file +[OBJECT SET EVENTS](object-set-events.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1238 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md index 2b85ce4061acd6..c2e90cec6cd5b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get filter devolve o nome de todo filtro associado com o objeto ou grupo de objetos designado por *objeto*. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d #### Ver também -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1073 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md index 11d06232b6c0be..b5cf9b3a6f658d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get focus rectangle invisible** devolve o estado da opção de invisibilidade do retângulo de foco do objeto e dos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. Esta configuração corresponde à opção **Ocultar retângulo de foco** disponível para os objetos editados na Lista de propriedades em modo Desenho. Este comando devolve o estado atual da opção, como se definiu em modo Desenho ou utilizando o comando [OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md). @@ -30,4 +27,13 @@ O comando devolve **True** se o retângulo de foco está oculto e **False** quan #### Ver também -[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1178 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md index aea5fe10ec60e8..f419e134a0fac2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get font size devolve o tamanho (em pontos) da fonte utilizada pelo objeto de formulário designado por *objeto*. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d #### Ver também -[OBJECT SET FONT SIZE](object-set-font-size.md) \ No newline at end of file +[OBJECT SET FONT SIZE](object-set-font-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1070 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md index 48b76b8e49b580..617c068632d5bf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get font style devolve o estilo atual da fonte utilizada pelo objeto de formulário designado por *objeto*. @@ -35,4 +32,13 @@ Pode comparar o valor retornado pelo comando com o valor de um ou mais das segui #### Ver também -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1071 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md index 7257bac123e377..f7c10ff1b5ac61 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get font devolve o nome da fonte utilizada pelo objeto de formulário designado por *objeto*. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d #### Ver também -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1069 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md index b756f2e7bc41b6..d2c7de320f34ed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get format** devolve o formato de saída atual aplicado ao objeto especificado no parâmetro *objeto*. @@ -65,4 +62,13 @@ Customized formats are returned untouched: #### Ver também -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 894 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md index 8bac06d2dc26b3..e2ec3d9a252758 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get help tip** devolve a mensagem de ajuda associado ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** no processo atual. @@ -38,4 +35,13 @@ O título de um botão imagem é guardado em forma de mensagem de ajuda. Este t #### Ver também -[OBJECT SET HELP TIP](object-set-help-tip.md) \ No newline at end of file +[OBJECT SET HELP TIP](object-set-help-tip.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1182 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md index f68248ab20dc0d..a2c4d4f995a789 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get horizontal alignment** devolve um código indicando o tipo de alinhamento aplicado ao objeto designado pelos parâmetros *objeto* e *\**. @@ -57,4 +54,13 @@ Os objetos de formulário aos quais se pode aplicar alinhamento são os seguinte [OBJECT Get vertical alignment](object-get-vertical-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 707 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md index 404396c3666584..627f126839fed5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get indicator type** devolve o tipo do indicador atual atribuído ao termômetro(s) designado pelos parâmetros *objeto* e *\**. @@ -36,4 +33,13 @@ Pode comparar o valor devolvido pelo comando com as seguintes constantes, que se #### Ver também -[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) \ No newline at end of file +[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1247 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md index dfba5763a45705..4ab452eae063be 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get keyboard layout** devolve a configuração do teclado atual associada aos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -28,4 +25,13 @@ O comando devolve uma cadeia indicando o código da linguagem utilizada, baseado #### Ver também -[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) \ No newline at end of file +[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1180 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md index a76ab119b479b0..ee9fe2eab94837 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get list name devolve o nome da lista associada ao objeto ou a um grupo de objetos designados por *objeto*. 4D lhe permite associar uma lista de opções (criada com o editor de listas em modo Desenho) com objetos de formulário utilizando o editor de formulários ou o comando [OBJECT SET LIST BY NAME](object-set-list-by-name.md). @@ -39,4 +36,13 @@ Se nenhuma lista do tipo definido está associada ao *objeto*, o comando devolve #### Ver também [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1072 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md index 6782c586de0157..fbaf6856a9bb30 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-list-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get list reference** devolve o número de referência (*RefList*) da lista hierárquica associada ao objeto ou grupo de objetos designados pelos parâmetros *objeto* e *\** . @@ -39,4 +36,13 @@ Se não há uma lista hierárquica associada ao objeto para o *tipoLista* defini #### Ver também [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1267 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md index 243afd5395663b..e5898ffd210651 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET MAXIMUM VALUE** devolve, na variável *valorMax*, o valor máximo atual do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\**. @@ -29,4 +26,13 @@ Se passar o parâmetro opcional *\** indica que o parâmetro *objeto* é um nome #### Ver também [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1245 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md index 9eb88eae3d8109..c97375868186c4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET MINIMUM VALUE** devolve, na variável *valorMin*, o valor mínimo atual do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\**. @@ -29,4 +26,13 @@ Se passar o parâmetro opcional *\** indica que o parâmetro *objeto* é um nome #### Ver também [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1243 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md index 286776291b0300..014eb5a1eebbfa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get multiline** devolve o estado atual da opção "Multi linha" do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -39,4 +36,13 @@ O valor devolvido corresponde a uma das seguintes constantes do tema "*Proprieda #### Ver também -[OBJECT SET MULTILINE](object-set-multiline.md) \ No newline at end of file +[OBJECT SET MULTILINE](object-set-multiline.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1254 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md index 49c3ee59afe79c..a9b6921f15c284 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-name.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get name retorna o nome de um objeto de formulário. @@ -40,4 +37,13 @@ Depois da execução deste método objeto, a variável *$btnName* contém o valo [OBJECT Get pointer](object-get-pointer.md) *Objetos (Formulários)* -*Objetos de formulário (Acesso)* \ No newline at end of file +*Objetos de formulário (Acesso)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1087 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md index f60bd8a9c62c01..8e7f49fe41f6d7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get placeholder** devolve o texto de exemplo associado ao objeto ou aos objetos designado(s) pelos parâmetros *objeto* e *\**. Se não há nenhum texto do marcador associado com o objeto, o comando devolve uma cadeia vazia. @@ -38,4 +35,13 @@ Se quer receber o texto do marcador de campo: #### Ver também -[OBJECT SET PLACEHOLDER](object-set-placeholder.md) \ No newline at end of file +[OBJECT SET PLACEHOLDER](object-set-placeholder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1296 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md index 0e04673bf9c44a..6ec11b651f0d3c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-pointer.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get pointer retorna um ponteiro à variável de um objeto de formulário. @@ -57,4 +54,13 @@ Dado um formulário "SF" utilizado duas vezes como sub-formulário no mesmo form [OBJECT Get subform container value](object-get-subform-container-value.md) *Objetos (Formulários)* *Objetos de formulário (Acesso)* -[Self](self.md) \ No newline at end of file +[Self](self.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1124 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md index a67ca96230a976..1e9c75e109d0d8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET PRINT VARIABLE FRAME** obtém a configuração atual das opções de impressão em tamanho variável do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -37,4 +34,13 @@ Se o *objeto* é um sub formulário e se a impressão em tamanho variável está #### Ver também -[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) \ No newline at end of file +[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1241 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md index 6cca0fa343caeb..6092c043808f13 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET RESIZING OPTIONS** devolve as opções de redimensionar atualmente os objetos designados pelos parâmetros *objeto* e *\**. @@ -45,4 +42,13 @@ O parâmetro *vertical* devolve um valor indicando a opção de redimensionament #### Ver também -[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) \ No newline at end of file +[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1176 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md index 013b036cb92768..07ede60ad1bff3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT GET RGB COLORS devolve as cores de fundo e primeiro plano do objeto ou grupo de objetos designados por *objeto*. @@ -37,4 +34,13 @@ Para obter mais informação sobre do formato dos parâmetros *corPrimeiroPlano* #### Ver também -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1074 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md index 802970bcfe3988..0e4dcde99c03f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scroll-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OBJECT GET SCROLL POSITION devolve, nos parâmetros *vPosição* e *hPosição*, informação relacionada com a posição das barras de rolagem do objeto de formulário designado pelos parâmetros *\** e *objeto*. @@ -33,4 +30,13 @@ Se *objeto* designa uma imagem (variável ou campo), *vPosição* retorna o movi #### Ver também -[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION ](object-set-scroll-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1114 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md index 8b69c3583b641e..14bf718c378c07 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT GET SCROLLBAR se utiliza para mostrar ou ocultar as barras de deslocamento horizontal e/ou vertical no objeto designado pelos parâmetros *objeto* e *\**. @@ -45,4 +42,13 @@ Para obter mais informação, consulte a descrição do comando [OBJECT SET SCRO #### Ver também -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1076 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md index e17e31bb1b7e21..d9350aad50151d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET SHORTCUT** devolve o atalho de teclado associado ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** no processo atual. @@ -43,4 +40,13 @@ Se nenhuma tecla de modificação foi definida para o atalho, modificadores devo #### Ver também -[OBJECT SET SHORTCUT](object-set-shortcut.md) \ No newline at end of file +[OBJECT SET SHORTCUT](object-set-shortcut.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1186 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md index 7496f2c1e2c8dd..6a02ec1f292f80 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get style sheet** devolve o nome da folha de estilos associada ao objeto ou aos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -48,4 +45,13 @@ Em **arquitetura de projeto**, só as três folhas de estilo automáticas são c #### Ver também *Estilos de fonte* -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1258 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md index 653f5d74152674..4c9e298eae2601 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET SUBFORM CONTAINER SIZE** devolve a *largura* e a *altura* (em pixels) de um objeto sub-formulário "atual", mostrado no formulário pai. @@ -34,4 +31,13 @@ O evento On Resize é gerado no método formulario de subformulário se o objeto #### Ver também [OBJECT GET SUBFORM](object-get-subform.md) -[OBJECT SET SUBFORM](object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1148 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md index f20c4ee47d44f7..cedbbdc648ed64 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **OBJECT Get subform container value** command returns the current value of the data source bound with the subform container displayed in the parent form. @@ -57,4 +54,13 @@ As a result, at runtime, updating the value of the main form's Input object also [Form](form.md) [OBJECT Get pointer](object-get-pointer.md) -[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) \ No newline at end of file +[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1785 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md index 00d36b3e0fdd2b..f72a49066c5102 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT GET SUBFORM** obtém os nomes dele ou dos formulário(s) associado(s) ao objeto sub-formulário designado pelos parâmetros *objeto* e *\**. @@ -42,4 +39,13 @@ Se não houver formulário lista, uma string vazia é devolvida no parâmetro *s #### Ver também [OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) -[OBJECT SET SUBFORM](object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1139 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md index 5338df5621537b..49be5aef07d29f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get text orientation** devolve o valor de orientação atual aplicado ao texto do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\**. @@ -57,4 +54,13 @@ Quando se executa o formulário, é chamada a seguinte declaração: #### Ver também -[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) \ No newline at end of file +[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1283 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md index 48c668b88117f2..54bfc5a7b204da 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get three states checkbox** devolve o estado atual da propriedade "Três estados" da(s) caixa(s) de seleção designada(s) pelos parâmetros *objeto* e *\** . @@ -26,4 +23,13 @@ A propriedade "Três estados" se pode definir seja usando a lista de propriedade #### Ver também -[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) \ No newline at end of file +[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1250 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md index 783c8a1dca8784..0bede12b5401da 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get title devolve o título (etiqueta) do objeto de formulário designado por *objeto* . Você pode usar esse comando com todos os objetos simples que tenham uma etiqueta: @@ -32,4 +29,13 @@ Se passar o parâmetro opcional *\**, indica que o parâmetro *objeto é* um nom #### Ver também -[OBJECT SET TITLE](object-set-title.md) \ No newline at end of file +[OBJECT SET TITLE](object-set-title.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1068 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md index b42bf71a2a4f75..da1068a1fef14e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **OBJECT Get type** command returns the type of the object designated by the *object* and *\** parameters in the current form. @@ -97,4 +94,13 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list #### Ver também [FORM LOAD](form-load.md) -[LISTBOX GET OBJECTS](listbox-get-objects.md) \ No newline at end of file +[LISTBOX GET OBJECTS](listbox-get-objects.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1300 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md index 9c566e6935fed7..14d05eda95f18f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get value** retorna o valor atual da fonte de dados para os objetos formulários determinados pelo parâmetro *nomObjeto*. @@ -40,4 +37,13 @@ Ver o exemplo para o comando [OBJECT SET VALUE](object-set-value.md). #### Ver também -[OBJECT SET VALUE](object-set-value.md) \ No newline at end of file +[OBJECT SET VALUE](object-set-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1743 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md index 4bc06df648ca5b..e5d416c552bb7c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Get vertical alignment** devolve um valor indicando o tipo de alinhamento vertical aplicada ao objeto designado pelos parâmetros *objeto* e *\**. @@ -44,4 +41,13 @@ O alinhamento vertical pode ser aplicado aos seguintes tipos de objetos de formu [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1188 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md index 17d540f40f6990..4eedc48c759722 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-get-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT Get visible devolve True se o objeto ou grupo de objetos designado por *objeto* tem o atributo visível e do contrário False. @@ -26,4 +23,13 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto é* um nome #### Ver também -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1075 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md index 4d2067342b3d35..4804b28ce9fbfe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-is-styled-text.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT Is styled text** devolve **True** se a opção "Multiestilo" está selecionada para o(s) objeto(s) designado(s) pelos parâmetros *objeto* e *\** . @@ -44,4 +41,13 @@ Um formulário contém um campo representado por dois objetos diferentes, um dos #### Ver também -*Texto multi estilo* \ No newline at end of file +*Texto multi estilo* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1261 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md index fb401e9422129e..cd84398b0ddcad 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-move.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT MOVE permite mover os objetos no formulário atual, definido pelos parâmetros *\** e *objeto, moveH* píxels horizontalmente e *moveV* píxels verticalmente. @@ -68,4 +65,13 @@ A seguinte instrução move o botão “botão\_1” as seguintes coordenadas (1 [OBJECT DUPLICATE](object-duplicate.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 664 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md index 9fb767dcce5508..a685c54cad9497 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET ACTION** modifica, para o processo atual, a ação estandarte associada ao objeto ou aos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -91,4 +88,13 @@ Se quiser associar a ação padrão **Validate** com um botão: #### Ver também -[OBJECT Get action](object-get-action.md) \ No newline at end of file +[OBJECT Get action](object-get-action.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1259 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md index 131295c112cc75..fbeb24c0d28980 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET AUTO SPELLCHECK** permite definir ou modificar dinamicamente o estado da opção **Correção ortográfica** dos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. Esta opção ativa ou desativa a correção ortográfica automática durante a entrada para o objeto (objetos de tipo texto unicamente). @@ -28,4 +25,13 @@ Passe **True** em *correAuto* para ativar esta função para objeto e **False** #### Ver também -[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) \ No newline at end of file +[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1173 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md index d64dadc5a136bf..e14148217d6862 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET BORDER STYLE** modifica o estilo de linha do borde do objeto(s) designada pelos parâmetros *objeto* e *\** . @@ -40,4 +37,13 @@ No parâmetro *estiloBorde*, passe o valor do estilo da linha fronteira que dese #### Ver também -[OBJECT Get border style](object-get-border-style.md) \ No newline at end of file +[OBJECT Get border style](object-get-border-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1262 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md index 6418b5c80b51ca..3ec54c1712cb65 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET CONTEXT MENU** ativa ou desativa, para o processo atual, a associação de um menu contextual por padrão ao objeto ou aos objetos designado(s) pelos parâmetros *objeto* e *\** . @@ -30,4 +27,13 @@ Passe **True** no parâmetro *menuContext* para ativar o menu contextual, e **Fa #### Ver também -[OBJECT Get context menu](object-get-context-menu.md) \ No newline at end of file +[OBJECT Get context menu](object-get-context-menu.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1251 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md index 93cf388a717ce2..e99ad7b05aad10 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **OBJECT SET COORDINATES** command modifies the location and, optionally, the size of the object(s) designated by the *object* and *\** parameters for the current process. @@ -56,4 +53,13 @@ A seguinte declaração localiza oi objeto "button\_1" nas coordenadas (10,20) ( [CONVERT COORDINATES](convert-coordinates.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1248 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md index c548c4d925a632..261f510d5b2dda 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET CORNER RADIUS** modifica o rádio das esquinas dos objetos retângulo arredondado cujos nomes passou no parâmetro *objeto*. O novo rádio só se define para o processo e não é guardado no formulário. @@ -66,4 +63,13 @@ Note that for text areas (as well as inputs), unlike for rectangles, the corner #### Ver também -[OBJECT Get corner radius](object-get-corner-radius.md) \ No newline at end of file +[OBJECT Get corner radius](object-get-corner-radius.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1323 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md index 012c08a3ceb622..5f67a3ab3aafe5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET DATA SOURCE** modifica a fonte de dados dos objetos designados pelos parâmetros *objeto* e *\** . @@ -51,4 +48,13 @@ Mudança da fonte de dados para uma área de entrada: #### Ver também [LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) -[OBJECT Get data source](object-get-data-source.md) \ No newline at end of file +[OBJECT Get data source](object-get-data-source.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1264 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md index 3892234003ba8e..8e1e694c8bf4e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET DRAG AND DROP OPTIONS** define ou modifica dinamicamente as opções de arrastar e soltar para o objeto ou aos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -44,4 +41,13 @@ Definição de uma área de texto em arrastar e soltar auto: #### Ver também -[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) \ No newline at end of file +[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1183 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md index 2c4cf819cdd983..2bb1c22610348a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET ENABLED utilizado para ativar ou desativar o objeto ou grupo de objetos especificado por *objeto no* formulário atual. @@ -40,4 +37,13 @@ Este comando pode ser aplicado aos seguintes tipos de objetos: #### Ver também -[OBJECT Get enabled](object-get-enabled.md) \ No newline at end of file +[OBJECT Get enabled](object-get-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1123 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md index ea2e74b3e1263a..6827df57001753 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET ENTERABLE** torna editáveis ou não editáveis os objetos de formulário especificados por *objeto* e podem estabelecer o atributo *focável* @@ -74,4 +71,13 @@ Este é o método de objeto de uma caixa de seleção localizada no cabeçalho d #### Ver também [OBJECT Get enterable](object-get-enterable.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 238 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md index c81eca6e8184ea..b6edff1e806d3d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-events.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET EVENTS** modifica, para o processo atual, a configuração dos eventos formulário do formulário, dos objetos designados pelos parâmetros *objeto* e *\** . @@ -107,4 +104,13 @@ Desativação de um só evento do formulário sem modificar os outros: #### Ver também *Form event* -[OBJECT GET EVENTS](object-get-events.md) \ No newline at end of file +[OBJECT GET EVENTS](object-get-events.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1239 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md index e5875fe4eec86a..fe9fdae57a4429 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **OBJECT SET FILTER** substitui o filtro de entrada para os objetos especificados por *objeto* por *filtroEntrada*. @@ -57,4 +54,13 @@ O exemplo a seguir permite unicamente a entrada das letras “a,” “b,” “ #### Ver também [OBJECT Get filter](object-get-filter.md) -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 235 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md index 251306e52e1a6c..fde550d8c654a0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET FOCUS RECTANGLE INVISIBLE** permite definir ou modificar dinamicamente a opção invisibilidade do retângulo de foco do objeto designado para os parâmetros *objeto* e *\** para o processo atual. Esta configuração corresponde à opção **Ocultar retângulo de foco** disponível para os objetos editados na Lista de propriedades em modo Desenho. @@ -31,4 +28,13 @@ Passe **True** no parâmetro *invisível* para ocultar o retângulo de foco e ** #### Ver também -[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1177 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md index 04ab8454186568..d3dbe72d957cb1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OBJECT SET FONT SIZE define o tamanho da fonte dos objetos de formulário especificados por *objeto* utilizando o tamanho de fonte que se passa em *tamanho*. @@ -53,4 +50,13 @@ O exemplo a seguir define o tamanho de fonte para todos os objetos de formulári *Interação de comandos genéricos com textos multi estilos* [OBJECT Get font size](object-get-font-size.md) [OBJECT SET FONT](object-set-font.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 165 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md index 31cb2e89d1f54a..90067a5f6095c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OBJECT SET FONT STYLE atribui o estilo de fonte de *estilos* aos objetos de formulário especificados por *objeto*. @@ -55,4 +52,13 @@ Este exemplo define o estilo de fonte Plain para todos os objetos de formulário [OBJECT Get font style](object-get-font-style.md) [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 166 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md index 5aa7624ac035af..383033b39730ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OBJECT SET FONT mostra *objeto* utilizando a fonte especificada no parâmetro *fonte*. O parâmetro *fonte* deve conter um nome de fonte válido. @@ -62,4 +59,13 @@ O seguinte exemplo utiliza a opção especial *%password*, desenhada para a entr *Interação de comandos genéricos com textos multi estilos* [OBJECT Get font](object-get-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 164 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md index c9e37f47033246..399b41dbcfa54b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OBJECT SET FORMAT substitui o formato de saída para os objetos especificados por *objeto* pelo formato que passa em *formatSaída*. O novo formato é utilizado unicamente para a visualização atual, não se guarda com o formulário. @@ -369,4 +366,13 @@ Passe um termômetro ao modo "Barber shop" [GET SYSTEM FORMAT](get-system-format.md) [OBJECT Get format](object-get-format.md) -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 236 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md index ecd650d3d2b9cb..26ed4a8057f9b3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET HELP TIP** permite definir ou modificar dinamicamente a mensagem de ajuda associado ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -131,4 +128,13 @@ O resultado é... #### Ver também [OBJECT Get help tip](object-get-help-tip.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1181 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md index a1611ee41b6c96..54ce46b375ce0a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET HORIZONTAL ALIGNMENT** permite determinar o tipo de alinhamento aplicado ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\**. @@ -55,4 +52,13 @@ Os objetos de formulário aos quais pode aplicar este comando são os seguintes: [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 706 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md index 2a2cfc74d9f50d..d951bc59ca3d4e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET INDICATOR TYPE** modifica o tipo de indicador de progressão do(s) termômetro(s) designado(s) pelos parâmetros *objeto* e *\** no processo atual. @@ -36,4 +33,13 @@ No parâmetro *indicador*, passe o tipo de indicador a mostrar. Pode utilizar um #### Ver também -[OBJECT Get indicator type](object-get-indicator-type.md) \ No newline at end of file +[OBJECT Get indicator type](object-get-indicator-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1246 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md index 5f5c0653b0a17d..5dd1a6b96de560 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET KEYBOARD LAYOUT** permite definir ou modificar dinamicamente a configuração de teclado associada ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -28,4 +25,13 @@ Em *codigoLing*, passe uma cadeia indicando o código de linguagem a utilizar, b #### Ver também -[OBJECT Get keyboard layout](object-get-keyboard-layout.md) \ No newline at end of file +[OBJECT Get keyboard layout](object-get-keyboard-layout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1179 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md index 64584813ad1705..6ff33acc516b58 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET LIST BY NAME define ou substitui a lista associada ao objeto o grupo de objetos designado por *objeto* A lista cujo nome é passado no parâmetro *lista* deve ter sido criada no editor de listas, em modo Desenho*.* @@ -95,4 +92,13 @@ Você quer eliminar a lista de associações: #### Ver também [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 237 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md index 00f503d8d65428..ab6d086cb99eb7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-list-by-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET LIST BY REFERENCE** define ou substitui a lista associada com o objeto ou objetos definidos pelos parâmetros *objeto* e *\**, com a lista hierárquica definida no parâmetro *lista*. @@ -130,4 +127,13 @@ Com o propósito de atualizar a lista associada ao pop-up gerenciado por array, #### Ver também [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1266 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md index 57f43c6b140f46..1a584a5f459727 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET MAXIMUM VALUE** modifica o valor máximo do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\** para o processo atual. @@ -31,4 +28,13 @@ Em *valorMax*, passe o novo valor máximo que deseja atribuir ao objeto para o p #### Ver também [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1244 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md index c33cd1bb031e61..94cca659ada9fb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET MINIMUM VALUE** modifica o valor mínimo do objeto ou dos objetos designado(s) pelos parâmetros *objeto* e *\** para o processo atual. @@ -31,4 +28,13 @@ Em *valorMinimo*, passe o novo valor mínimo a atribuir ao objeto para o process #### Ver também [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1242 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md index d3325f6fe75bd1..3f19b9b6382632 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET MULTILINE** modifica a propriedade "Multilinha" do objeto(s) designada pelos parâmetros *objeto* e *\** . @@ -44,4 +41,13 @@ Você quer proibir várias linhas em uma área de entrada: #### Ver também -[OBJECT Get multiline](object-get-multiline.md) \ No newline at end of file +[OBJECT Get multiline](object-get-multiline.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1253 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md index 5e93fa07ef103d..72ea1b0be0aa4b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET PLACEHOLDER** associa um texto de exemplo ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** . @@ -46,4 +43,13 @@ Você quer mostrar o texto "Buscar" um combo box: #### Ver também -[OBJECT Get placeholder](object-get-placeholder.md) \ No newline at end of file +[OBJECT Get placeholder](object-get-placeholder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1295 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md index 9e6d49bde17383..52096ab02e4ff3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET PRINT VARIABLE FRAME** modifica a propriedade de marco de impressão variável do objeto ou dos objetos designados pelos parâmetros *objeto* e *\**. @@ -42,4 +39,13 @@ O parâmetro opcional *subformFixo* lhe permite configurar uma opção adicional #### Ver também -[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) \ No newline at end of file +[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1240 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md index 48e3bf3ac6ee2b..746029339e4d5b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET RESIZING OPTIONS** permite definir ou modificar dinamicamente as opções de redimensionamento do objeto ou dos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. Estas opções definem a visualização do objeto em caso de redimensionamento da janela do formulário. @@ -44,4 +41,13 @@ No parâmetro *vertical*, passe um valor que indique a opção de redimensioname #### Ver também -[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) \ No newline at end of file +[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1175 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md index 6993d449cd268b..ec7936deb3bea7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET RGB COLORS modifica as cores de fundo e primeiro plano dos objetos especificados por objeto e o parâmetro opcional \*. Quando o comando é aplicado a um objeto list box, um parâmetro adicional lhe permite modificar a cor alternativa das filas. @@ -106,4 +103,13 @@ Muda o fundo transparente com uma cor de fonte clara: #### Ver também [OBJECT GET RGB COLORS](object-get-rgb-colors.md) -[Select RGB Color](select-rgb-color.md) \ No newline at end of file +[Select RGB Color](select-rgb-color.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 628 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md index e412723408d3b6..d69368220ad69b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scroll-position.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET SCROLL POSITION permite deslocar o conteúdo de vários tipos de objetos: linhas de um subformulário, de um formulário listado mostrado utilizando os comandos [MODIFY SELECTION](modify-selection.md), [DISPLAY SELECTION](display-selection.md) ou de uma lista hierárquica, linhas e colunas de um list box ou inclusive os píxels de uma imagem. @@ -92,4 +89,13 @@ Tenha a certeza de não omitir o segundo parâmetro *\** neste caso, caso contr [ LISTBOX SELECT ROW ](listbox-select-row.md) [HIGHLIGHT RECORDS](highlight-records.md) -[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) \ No newline at end of file +[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 906 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md index 92170e3881b762..de32c654bfe89e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET SCROLLBAR lhe permite mostrar ou ocultar as barras de rolagem horizontal ou vertical no objeto designado pelos parâmetros *objeto* e *\**. @@ -45,4 +42,13 @@ Passe nos parâmetros *horizontal* e *vertical* os valores booleanos indicando s [LISTBOX Get property](listbox-get-property.md) [LISTBOX SET GRID](listbox-set-grid.md) [OBJECT GET SCROLLBAR](object-get-scrollbar.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 843 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md index ab69eb95b8bda0..5973553cf52678 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET SHORTCUT** permite definir ou modificar dinamicamente o atalho de teclado associado ao objeto ou aos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -90,4 +87,13 @@ Você quer associar um atalho de teclado diferente em função da linguagem atua #### Ver também -[OBJECT GET SHORTCUT](object-get-shortcut.md) \ No newline at end of file +[OBJECT GET SHORTCUT](object-get-shortcut.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1185 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md index c0a659da93a3fe..e77da5e4d7a253 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET STYLE SHEET** modifica, para o processo atual, a folha de estilo associada ao objeto(s) designado(s) pelos parâmetros *objeto* e *\** . Uma folha de estilo modifica a fonte, o tamanho de fonte e o estilo de fonte. @@ -50,4 +47,13 @@ Em **arquitetura de projeto**, só as três folhas de estilo automáticas são c *Estilos de fonte* [GET STYLE SHEET INFO](get-style-sheet-info.md) [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT Get style sheet](object-get-style-sheet.md) \ No newline at end of file +[OBJECT Get style sheet](object-get-style-sheet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1257 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md index fa83b15b92a436..04b1b58b56c080 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **OBJECT SET SUBFORM CONTAINER VALUE** command sets the current value of the data source bound with the subform container displayed in the parent form. @@ -33,4 +30,13 @@ A detailed example is available in the [OBJECT Get subform container value](obje #### Ver também [Form](form.md) -[OBJECT Get subform container value](object-get-subform-container-value.md) \ No newline at end of file +[OBJECT Get subform container value](object-get-subform-container-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1784 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md index d025defd42bf82..4ba110939f803c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET SUBFORM** permite modificar dinamicamente o formulário detalhado assim também, opcionalmente, o formulário listado associado ao objeto sub-formulário designado pelos parâmetros *objeto* e *\**. @@ -44,4 +41,13 @@ Quando modifica um sub-formulário página, o comando pode executar-se em qualqu #### Ver também [OBJECT GET SUBFORM](object-get-subform.md) -[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) \ No newline at end of file +[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1138 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md index 6fd1ae1bfc0e2d..38bbee3a63ba4d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET TEXT ORIENTATION** modifica a orientação do conteúdo do objeto ou dos objetos designados pelos parâmetros *objeto* e *\** para o processo atual. @@ -51,4 +48,13 @@ Deseja aplicar uma orientação de 270° a uma variável em seu formulário: #### Ver também -[OBJECT Get text orientation](object-get-text-orientation.md) \ No newline at end of file +[OBJECT Get text orientation](object-get-text-orientation.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1284 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md index 2b68e9fe6e531c..7325da1e59fee8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET THREE STATES CHECKBOX** modifica para o processo atual, a propriedade de "Três Estados" da(s) caixa(s) de seleção designada(s) pelos parâmetros *objeto* e *\** . @@ -32,4 +29,13 @@ No parâmetro *tresEsta*, passe **True** para ativar o modo "três estados", ou #### Ver também -[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) \ No newline at end of file +[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1249 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md index c6be3dc2d0f37d..655329bd15b5d0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET TITLE modifica o título dos objetos especificados por *objeto* e o substitui pelo valor passado em *titulo.* @@ -68,4 +65,13 @@ Você quer inserir os títulos em duas linhas: #### Ver também -[OBJECT Get title](object-get-title.md) \ No newline at end of file +[OBJECT Get title](object-get-title.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 194 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md index c126f4cd088857..e216ed14a4ef45 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Exemplo 1 **OBJECT SET VALUE** estabelece *valor* da fonte de dados atual para os objetos formulário determinados pelo parâmetro *nomObjeto*.. @@ -41,4 +38,13 @@ Se quiser o valor da data source de um objeto formulário, obtenha seu nome e es #### Ver também -[OBJECT Get value](object-get-value.md) \ No newline at end of file +[OBJECT Get value](object-get-value.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1742 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md index 9b895591e8739f..5ce0aa4ccf658b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OBJECT SET VERTICAL ALIGNMENT** modifica por programação o tipo de alinhamento vertical aplicada ao objeto designado pelos parâmetros *objeto* e *\**. @@ -43,4 +40,13 @@ A alienação vertical pode aplicar-se aos seguintes tipos de objetos de formul [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) \ No newline at end of file +[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1187 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md index 7a5c519fd43286..affa9a1e0429c4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-set-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET VISIBLE mostra ou oculta os objetos especificados por *objeto*. @@ -60,4 +57,13 @@ ou: #### Ver também [OBJECT Get visible](object-get-visible.md) -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 603 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md index e910b77acb9628..b3f96ac36c0ebf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/object-to-path.md @@ -54,4 +54,13 @@ Se quisermos duplicar e mudar o nome de um arquivo em sua própria pasta [File](file.md) [Folder ](folder.md) [Path to object ](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1548 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md index f2841e3a848b83..8a6b41ddcdbf69 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-many.md @@ -24,4 +24,15 @@ OLD RELATED MANY muda a seleção da tabela relacionada e seleciona o primeiro r #### Ver também [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 263 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md index c8e2e22ad87ead..b7783da8a96a8e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old-related-one.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição OLD RELATED ONE funciona da mesma forma que [RELATE ONE](relate-one.md "RELATE ONE"), com a diferença de que OLD RELATED ONE utiliza o valor anterior de *campo* para estabelecer a relação. @@ -33,4 +30,14 @@ Se o comando for executado corretamente e se os registros relacionados forem car [Old](old.md) [OLD RELATED MANY](old-related-many.md) [RELATE ONE](relate-one.md) -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 44 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md index 05a7e549868870..446381b1077f05 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/old.md @@ -38,4 +38,13 @@ Para restaurar o valor original de um campo, atribua-lhe o valor retornado por O #### Ver também -[Modified](modified.md) \ No newline at end of file +[Modified](modified.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 35 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md index b1c13b9d7e0f75..e74a91e73463b9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On Backup Shutdown database method é chamado a cada vez que o backup do banco de dados termina. As razões para deter um backup podem ser o fim da cópia, interrupção por parte do usuário ou um erro. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md index 4c5597ff0224cf..2d8894fdc37e0b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Método de base de dados On Backup Startup O *Método de banco de dados On Backup Startup* é chamado cada vez que um backup está a ponto de ser iniciado (backup manual, backup automático programado, ou utilizando o comando [BACKUP](backup.md "BACKUP")). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md index 694bd34a52b0c3..ba292dbfcfac3f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-drop-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On Drop database method está disponível em aplicações 4D locais ou remotas. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md index 1021feeb0a7e6f..763312bef4c421 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-err-call.md @@ -184,4 +184,13 @@ O método abaixo de gestão de erros ignora as interrupções de usuário e most [Last errors](last-errors.md) [Last errors](last-errors.md) [Method called on error](method-called-on-error.md) -*Variáveis sistema* \ No newline at end of file +*Variáveis sistema* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 155 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md index abb7c93c088289..49e6bf9a336dbe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-event-call.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ON EVENT CALL** instala o método, cujo nome se passa em *metodoEvento*, como método de gestão de eventos. @@ -108,4 +105,14 @@ Se um relatório for impresso utilizando [PRINT SELECTION](print-selection.md "P [FILTER EVENT](filter-event.md) [MOUSE POSITION](mouse-position.md) [Method called on event](method-called-on-event.md) -[Shift down](shift-down.md) \ No newline at end of file +[Shift down](shift-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 190 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md index 4c932d91038eed..0c1010070a64b2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O **On Host Database Event database method** permite aos recipientes 4D executar código quando se abre e fecha a base local. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md index d10453ff94e1e0..68977441ec3aa1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Documentação trasladada** diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md index 9f39e49a39956e..032b6c571d2a22 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Documentação movida** diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md index 22b6644c3e5895..fe871fe07290fb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O **On Server Close Connection database method** é chamado no computador servidor cada vez que termina um processo 4D Client. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md index 233c9088964e02..50d6ca5552ef65 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Quando é chamado o método base On Server Open Connection? O **On Server Open Connection database method** é chamado uma vez no equipo servidor cada vez que um equipo remoto 4D inicia um processo de conexão. O **On Server Open Connection database method** NÃO é invocado por outro entorno 4D diferente de 4D Server. @@ -125,3 +122,13 @@ O seguinte exemplo evita uma nova conexão entre as 2 e 4 A.M.    If((?02:00:00?<=Current time)&(Current time ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 16001 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md index a23932f0bd2080..9e2fc1cc1f24d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On Server Shutdown database method é chamado uma vez na máquina servidor quando a base atual é fechada em 4D Server. O On Server Shutdown database method NÃO é chamado por outro ambiente 4D diferente de 4D Server. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md index a594ca3c61d2a3..827cc851e3f602 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-server-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On Server Startup database method é chamado uma vez na máquina servidor quando abre uma base com 4D Server. O On Server Startup database method NÃO é executado em um ambiente diferente a 4D Server. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md index 4a1eba1297b9f6..fa4844f0401d30 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On SQL Authentication database method pode ser utilizado para filtrar os pedidos enviados ao servidor SQL integrado de 4D. Este filtro pode estar baseado no nome e senha, assim como 7(opcional) no endereço IP do usuário. O desenvolvedor pode utilizar sua própria tabela de usuários ou a dos usuários 4D para avaliar os identificadores de conexão. Quando tiver validada a conexão, o comando [CHANGE CURRENT USER](change-current-user.md) pode ser utilizado para controlar o acesso das pedidos dentro do banco 4D. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md index a88baab60554b5..26b4282781da09 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/on-web-connection-database-method.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### O On Web Connection database method pode ser chamado nos seguintes casos: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md index 615c801afc2ac7..060da811189d8e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/one-record-select.md @@ -30,4 +30,15 @@ Aviso: lembre que um número de registro pode ser reutilizado se o registro for [CREATE SELECTION FROM ARRAY](create-selection-from-array.md) *Seleções temporárias* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 189 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md index dfb3614793db38..ff725f9f2d7440 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-administration-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OPEN ADMINISTRATION WINDOW exibe a janela de administração do servidor no equipo que executa. A janela de administração 4D Server pode ser usada para visualizar os parâmetros atuais e realizar diversas operações de manutenção (veja a Guia de Referência 4D Server). Começando com a versão 11 do 4D Server, essa janela pode ser exibida a partir de uma máquina cliente: @@ -51,4 +48,14 @@ Se o comando foi executado corretamente, a variável de sistema OK é definida c #### Ver também -[OPEN SECURITY CENTER](open-security-center.md) \ No newline at end of file +[OPEN SECURITY CENTER](open-security-center.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1047 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md index 93e94a6a59ca2e..7e1b50a8ce4b41 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-color-picker.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OPEN COLOR PICKER** mostra a caixa de diálogo de seleção de cor do sistema. @@ -30,4 +27,13 @@ Se a cor mudou, o evento formulário On After Edit é gerado para o objeto. #### Ver também -[OPEN FONT PICKER](open-font-picker.md) \ No newline at end of file +[OPEN FONT PICKER](open-font-picker.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1304 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md index fb249c938e4ad0..ce71aa937ec8e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-data-file.md @@ -53,4 +53,13 @@ No contexto de implementação de uma aplicação fusionada, se quiser abrir ou #### Ver também -[CREATE DATA FILE](create-data-file.md) \ No newline at end of file +[CREATE DATA FILE](create-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 312 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md index 0727e20518f27e..d6703872d9d0df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-database.md @@ -70,3 +70,13 @@ Se quiser selecionar um servidor no início desde uma aplicação monousuário.     QUIT 4D  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1321 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md index 67cbfc70b359a5..69e38695e7d1a8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-document.md @@ -96,4 +96,14 @@ Se passa o valor 3 em *modo*, a função retorna ?00:00:00? (sem referência de #### Ver também [Append document](append-document.md) -[Create document](create-document.md) \ No newline at end of file +[Create document](create-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 264 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md index ed0e597fc3e1c2..5c597da90b7c6a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-font-picker.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **OPEN FONT PICKER** mostra a caixa de diálogo de seleção de fonte do sistema . @@ -44,4 +41,13 @@ Abaixo o código do botão: #### Ver também -[OPEN COLOR PICKER](open-color-picker.md) \ No newline at end of file +[OPEN COLOR PICKER](open-color-picker.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1303 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md index 5304bf2159ff76..c151d1be0687f5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-form-window.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Open form window abre uma nova janela utilizando as propriedades de tamanho e de redimensionamentos do formulário *nomForm*. @@ -135,4 +132,13 @@ o que retorna: [FORM GET PROPERTIES](form-get-properties.md) [Open window](open-window.md) *Tipos de janelas* -*Tipos de Janelas* \ No newline at end of file +*Tipos de Janelas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 675 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md index 287d574f8b66c5..154d098c47755e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OPEN PRINTING JOB abre uma tarefa de impressão e empilha todas as ordens de impressão executadas até que se chame o comando [CLOSE PRINTING JOB](close-printing-job.md). Este comando lhe permite controlar os trabalhos de impressão e, mais particularmente, ter certeza que nenhuma tarefa de impressão "parasita" possa ser inserida em uma sequência de impressão. @@ -38,4 +35,14 @@ A variável sistema OK se estabelece em 1 se o trabalho de impressão foi aberto #### Ver também -[CLOSE PRINTING JOB](close-printing-job.md) \ No newline at end of file +[CLOSE PRINTING JOB](close-printing-job.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 995 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md index b86e5cd6ae6168..1f83667cb713d1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-resource-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Open resource file** abre o arquivo de recursos cujo nome ou rota de acesso completa se passa em *resNomArquivo*. @@ -101,4 +98,14 @@ Se o arquivo de recursos não puder ser aberto por um problema do recurso ou de #### Ver também [CLOSE RESOURCE FILE](close-resource-file.md) -*Recursos* \ No newline at end of file +*Recursos* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 497 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md index 909dddb70e6839..4c8faa0df32993 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-runtime-explorer.md @@ -15,3 +15,13 @@ displayed_sidebar: docs #### Descrição O comando OPEN RUNTIME EXPLORER exibe o Runtime Explorer em uma janela flutuante. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1781 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md index f5b3cc099f8591..2c5cd2a1693bb7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-security-center.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OPEN SECURITY CENTERmostra a janela do Centro de segurança e manutenção (CSM). Para saber mais veja a página *Centro de segurança e manutenção*. @@ -28,4 +25,13 @@ Dependendo dos privilegios de acesso do usuário atual, certas funções dispon #### Ver também -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1018 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md index d0a3dcdd976d6d..3c3a4eb96cd4ea 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-settings-window.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OPEN SETTINGS WINDOW abre a caixa de diálogo Preferências de 4D ou as configurações do banco de dados do aplicativo atual 4D e exibe os parâmetros ou a página correspondente à chave *seletor* fornecida. @@ -167,3 +164,14 @@ Acceso à interface das Propriedades do banco no modo "Propriedades usuário": #### Variáveis e conjuntos do sistema Se a caixa de diálogo Preferências/Propriedades é validada, a variável sistema OK devolve 1; se for cancelada, OK devolve 0. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 903 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md index c22d95aca3d984..0c5fc4de13426a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-url.md @@ -77,4 +77,13 @@ Pode abrir um arquivo texto com diferentes aplicações: #### Ver também -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 673 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md index 4eba467c6ae171..646fa6f80c74a3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/open-window.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Open window abre uma nova janela cujas dimensões são definidas pelos quatro primeiros parâmetros: @@ -138,4 +135,13 @@ Este exemplo ilustra o mecanismo de “atraso” de mostrar janelas em Mac OS X: [CLOSE WINDOW](close-window.md) *Criar janela* -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 153 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md index 17849268ca5268..6cf0e93dbe6aef 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-attribute.md @@ -111,4 +111,13 @@ Os registros estão na seguinte ordem: #### Ver também - \ No newline at end of file + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1407 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md index 82a37450c530d8..e73d272274dbf2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by-formula.md @@ -44,4 +44,15 @@ Este exemplo ordena os registros da tabela \[Pessoas\] em ordem descendente, bas #### Ver também -[ORDER BY](order-by.md) \ No newline at end of file +[ORDER BY](order-by.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 300 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md index 0449f57ae79309..ee54d8cc031dff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/order-by.md @@ -203,4 +203,15 @@ Sem importar como se defina a ordenação, se a operação de ordenação vai a #### Ver também -[ORDER BY FORMULA](order-by-formula.md) \ No newline at end of file +[ORDER BY FORMULA](order-by-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 49 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md index 56c057226bf313..2e249ef87d55a6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Outside call** retorna True para o ciclo de execução After. @@ -27,4 +24,13 @@ Para que seja gerado o ciclo de execução **Outside call,** tenha certeza de qu #### Ver também [Form event code](form-event-code.md) -[POST OUTSIDE CALL](post-outside-call.md) \ No newline at end of file +[POST OUTSIDE CALL](post-outside-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 328 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md index 1f4fec21435da7..29bac150e19906 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/page-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição PAGE BREAK dispara a impressão de dados enviados a la impressora e provocar um salto de página. PAGE BREAK se utiliza conjuntamente com [Print form](print-form.md) (no contexto do evento de formulário On Printing Detail) para forçar saltos de página e imprimir a última página criada em memória. Não utilize PAGE BREAK com o comando [PRINT SELECTION](print-selection.md). É melhor utilizar [Subtotal](subtotal.md) ou [BREAK LEVEL](break-level.md) com o parâmetro opcional para gerar saltos de página. @@ -45,4 +42,14 @@ Consulte o exemplo do comando [SET PRINT MARKER](set-print-marker.md "SET PRINT #### Ver também [CANCEL](cancel.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 6 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md index 862725c79c8e1a..ff64ae94bfcac3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/parse-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição A função **Parse formula** analisa a *fórmula* 4D, verifica sua sintaxe e devolve seu formulário normalizado. Isto permite que a fórmula continue sendo válida no caso de que se mude o nome de uma linguagem 4D ou elemento de estrutura (comando, constante, tabela, campo ou0 Plugin 4D). @@ -108,4 +105,13 @@ O parâmetro opcional *mensagemE* *rro* receberá uma mensagem de erro se houver [Formula from string](formula-from-string.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -*Usar tokens em fórmulas* \ No newline at end of file +*Usar tokens em fórmulas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1576 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md index 8b11d02470fd27..85b91f914f8333 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pasteboard-data-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Pasteboard data size permite testar se hay dados do tipo *tipoDatos* na área de transferência. @@ -92,4 +89,14 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m *Área de trabalho* [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 400 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md index 7caa3da4180cc3..13e284b97a6a76 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/path-to-object.md @@ -172,4 +172,13 @@ Se quiser saber a quantidade de subpastas em uma rota: [File](file.md) [Folder ](folder.md) [Object to path](object-to-path.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1547 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md index 09c2886517d10e..1b56ec5b8041eb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-indexes.md @@ -46,4 +46,13 @@ Exemplo de método de importação massivo de dados: #### Ver também [DELETE INDEX](delete-index.md) -[RESUME INDEXES](resume-indexes.md) \ No newline at end of file +[RESUME INDEXES](resume-indexes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1293 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md index 7fc29deb504802..d29c289b4b4458 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pause-process.md @@ -30,4 +30,13 @@ Quando se suspende a execução de um processo, as janelas que pertencem a este [ABORT PROCESS BY ID](abort-process-by-id.md) [DELAY PROCESS](delay-process.md) [HIDE PROCESS](hide-process.md) -[RESUME PROCESS](resume-process.md) \ No newline at end of file +[RESUME PROCESS](resume-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 319 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md index e25ac401868f94..75e254685a9539 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-execute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - :::info Compatibilidade **PHP está obsoleto em 4D**. Recomenda-se usar a classe [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -281,4 +278,13 @@ Para obter mais informação sobre a função trim, por favor, consulte a docume *Executar scripts PHP em 4D* [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1058 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md index d9a4703f9618f3..43abf0b2ddef83 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-full-response.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - :::info Compatibilidade **PHP está obsoleto em 4D**. Recomenda-se usar a classe [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ Dado que os intercâmbios entre 4D e o intérprete PHP se realizam através de F #### Ver também [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1061 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md index 6dff00fcf2adb8..1856feedd78cfc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - :::info Compatibilidade **PHP está obsoleto em 4D**. Recomenda-se usar a classe [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -36,4 +33,13 @@ Passe no parâmetro *opção* uma constante do tema "*PHP*" para designar a opç #### Ver também [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1060 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md index ce308946ad7e1e..89146e3df15df5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/php-set-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - :::info Compatibilidade **PHP está obsoleto em 4D**. Recomenda-se usar a classe [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -40,4 +37,13 @@ Como padrão, PHP SET OPTION define a opção para todas as chamadas a [PHP Exec #### Ver também [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1059 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md index f657ffbf8d3270..be423e287820b2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-codec-list.md @@ -34,4 +34,13 @@ Por padrão, se não passa o parâmetro *\**, o comando devolve unicamente os co #### Ver também *Imagens* -[Is picture file](is-picture-file.md) \ No newline at end of file +[Is picture file](is-picture-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 992 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md index 11397bf3a33781..127af6859f5aa0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-library-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando PICTURE LIBRARY LIST devolve os números de referência e os nomes das imagens armazenadas na biblioteca de imagens do banco de dados. @@ -94,4 +91,13 @@ O exemplo a seguir exporta a biblioteca de imagens a um documento armazenado no [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 564 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md index 8dc6bb18f3c7eb..fc42fe79de3cf2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-properties.md @@ -28,4 +28,13 @@ Os parâmetros *hDesp*, *vDesp*, e *modo* devolvem as posições horizontal e ve #### Ver também -[Picture size](picture-size.md) \ No newline at end of file +[Picture size](picture-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 457 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md index 74bb963f7bc86c..d1d42a65609419 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-size.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### Ver também -[PICTURE PROPERTIES](picture-properties.md) \ No newline at end of file +[PICTURE PROPERTIES](picture-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 356 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md index 1a96762a0970b7..656ce59c0ac337 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/picture-to-blob.md @@ -49,4 +49,14 @@ Se quiser converter uma imagem de um formato proprietário a formato GIF e mostr [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 692 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md index 7a7ef9cc48ab51..92641702424f95 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/play.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando PLAY permite reproduzir arquivos de som ou multimídia. Passe a rota de acesso completa do arquivo que deseja reproduzir em *nomeObjeto*. Em Mac OS, o comando também pode ser utilizado para reproduzir uma fonte de som ou um som sistema. @@ -59,4 +56,13 @@ O código de exemplo abaixo reproduz um som do sistema em OS X: #### Ver também -[BEEP](beep.md) \ No newline at end of file +[BEEP](beep.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 290 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md index cae9824ebac6cf..3478a14c49bde9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/plugin-list.md @@ -27,4 +27,13 @@ PLUGIN LIST leva todos os plug-ins em consideração, incluindo aqueles que est [COMPONENT LIST](component-list.md) [Get plugin access](get-plugin-access.md) [Is license available](is-license-available.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 847 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md index 8724185b57fd8d..45ee375d58a12f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-record.md @@ -32,4 +32,14 @@ O exemplo a seguir recupera o registro de um cliente na pilha: #### Ver também [PUSH RECORD](push-record.md) -*Usar a Pilha de Registros* \ No newline at end of file +*Usar a Pilha de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 177 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md index dc487648041a52..5404b93afdf378 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Pop up menu mostra um menu pop up na localização atual do mouse ou na localização definida pelos parâmetros opcionais *coordX* e *coordY*. @@ -105,4 +102,13 @@ O próximo é o menu pop-up tal como aparece em Windows (esquerda) e Macintosh ( #### Ver também [Dynamic pop up menu](dynamic-pop-up-menu.md) -[MOUSE POSITION](mouse-position.md) \ No newline at end of file +[MOUSE POSITION](mouse-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 542 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md index 507dd91bc28581..b48d6cfc786def 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/position.md @@ -116,4 +116,13 @@ No exemplo abaixo, se quiser encontrar todas as instâncias de uma string e subs #### Ver também [Compare strings](compare-strings.md) -[Substring](substring.md) \ No newline at end of file +[Substring](substring.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 15 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md index a3682a0b67353e..c6deeb221aca69 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-click.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando POST CLICK simula um clique do mouse. Tem o mesmo efeito que quando o usuário clicar no botão do mouse @@ -30,4 +27,13 @@ Se especificar o parâmetro processo *processo*, o clique é enviado ao processo #### Ver também [POST EVENT](post-event.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 466 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md index dc99f67ba082ab..dd281a065ba3d0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-event.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando POST EVENT simula um evento de teclado ou de mouse. Tem o mesmo efeito que quando o usuário atua através do teclado ou do mouse. @@ -73,4 +70,13 @@ Se passa o parâmetro *processo,* o evento é enviado através do processo cujo #### Ver também [POST CLICK](post-click.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 467 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md index d59cf92cbd0b8e..8a527dcb3f0ec1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-key.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando POST KEY simula uma tecla. Esse efeito funciona como se o usuário tivesse entrado um caractere no teclado. @@ -37,4 +34,13 @@ Ver exemplo do comando [Process number](process-number.md). *Códigos ASCII* *Códigos de Função de teclado* [POST CLICK](post-click.md) -[POST EVENT](post-event.md) \ No newline at end of file +[POST EVENT](post-event.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 465 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md index d49b38d9d92e24..3385de9714c915 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/post-outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Nota de compatibilidade Esse comando era chamado **CALL PROCESS** em lançamentos 4D anteriores. @@ -42,4 +39,14 @@ Ver o exemplo de [On Exit Database Method](metodo-banco-de-dados-on-exit.md "On [Form event code](form-event-code.md) [GET PROCESS VARIABLE](get-process-variable.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 329 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md index 64e2d2c0beabcf..66a0834a98170c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/previous-record.md @@ -25,4 +25,14 @@ Se PREVIOUS RECORD move o ponteiro do registro atual antes da seleção atual, B [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[NEXT RECORD](next-record.md) \ No newline at end of file +[NEXT RECORD](next-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 110 | +| Thread-seguro | ✓ | +| Modificar o registro atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md index 2486258e71b772..dd0dab02b8fbae 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Print form simplesmente imprime *formulario* com os valores atuais dos campos e variáveis. Geralmente este comando se utiliza para imprimir relatórios muito complexos que necessitem um controle total do processo de impressão. Print form não processa registros, nem quebras ou saltos de páginas. Estas operações são sua responsabilidade. Print form imprime campos e variáveis em um marco de tamanho fixo unicamente. @@ -173,4 +170,13 @@ O código que chama ao diálogo depois imprime seu corpo: [CANCEL](cancel.md) [PAGE BREAK](page-break.md) [PRINT SETTINGS](print-settings.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 5 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md index 19983eb2277f8c..624646c78ec973 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-label.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição PRINT LABEL permite imprimir etiquetas com los datos de la seleção de *tabela*. @@ -107,4 +104,14 @@ O exemplo a seguir lhe permite ao usuário efetuar uma pesquisa na tabela \[Pess #### Ver também [PRINT SELECTION](print-selection.md) -[QR REPORT](qr-report.md) \ No newline at end of file +[QR REPORT](qr-report.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 39 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md index 01c072544c2636..b2a2279b14ccb8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-object.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Print object** permite imprimir ele ou os objetos de formulário designado(s) pelos parâmetros *objeto* e *\**, na localização definida pelos parâmetros *posX* e *posY*. @@ -97,4 +94,13 @@ Exemplo de impressão de um list box completo: #### Ver também -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1095 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md index 96166a419828e0..eed9be0e821155 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-option-values.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando PRINT OPTION VALUES \[#descv\]devolve em *nomesArray*,uma lista de nomes de valores disponíveis para a *opçao* de impressão definida.Opcionalmente, pode recuperar a informação para cada valor em *info1Array* e *info2Array*. @@ -55,4 +52,13 @@ Toda a informação devolvida por estes comandos é fornecida pelo sistema opera #### Ver também [GET PRINT OPTION](get-print-option.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 785 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md index 176bad342c6360..b786525db1fbf4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição PRINT RECORD imprime o registro atual de *tabela*, sem modificar a seleção atual. O formulário de saída atual se utiliza para a impressão. Se não houver registro atual para *tabela*, PRINT RECORD não faz nada. @@ -66,4 +63,13 @@ O exemplo a seguir imprime o mesmo registro atual em dois formulários diferente #### Ver também -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 71 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md index e02feef2229d53..aef9161e574be3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-selection.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição PRINT SELECTION imprime a seleção atual de tabela. Os registros se imprimem no formulário de salida atual da tabela do processo atual. PRINT SELECTION realiza a mesma ação que o comando Imprimir do ambiente Usuário. Se a seleção está vazia, PRINT SELECTION não faz nada. @@ -62,4 +59,14 @@ O exemplo a seguir seleciona todos os registros na tabela \[Pessoas\]. O comando [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level ](level.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 60 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md index 2fa33446f5d489..0e495a48dfd618 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Print settings to BLOB** salva os ajustes de impressão 4D atuais no BLOB *confImp*. O parâmetro *confImp* armazena todos os valores utilizados para a impressão: @@ -55,4 +52,13 @@ Se quiser armazenar a configuração de impressão atual no disco: #### Ver também -[BLOB to print settings](blob-to-print-settings.md) \ No newline at end of file +[BLOB to print settings](blob-to-print-settings.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1433 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md index 6d524be1545350..c5216783ccb3bb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/print-settings.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando PRINT SETTINGS mostra una o dos caixas de diálogo de parâmetros de impressão. Este comando deve ser chamado antes de uma série de comandos [Print form](print-form.md) ou o comando [OPEN PRINTING JOB](open-printing-job.md). @@ -42,4 +39,14 @@ Se o usuário clicar em OK em ambas caixas de diálogo, a variável sistema OK t [OPEN PRINTING JOB](open-printing-job.md) [PAGE BREAK](page-break.md) [Print form](print-form.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 106 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md index af49f75a6ede3c..b1aa8a80fa3f5c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printers-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando PRINTERS LIST preenche os arrays passados como parâmetros com os nomes e opcionalmente com a localização os nomes personalizados e os modelos de impressão disponíveis para a máquina. @@ -46,4 +43,14 @@ A variável sistema OK toma o valor 1 se o comando tiver sido executado corretam #### Ver também [Get current printer](get-current-printer.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 789 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md index c08c7205477e4c..7a6dc71a4365c7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/printing-page.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Printing page devolvido o número da página em impressão. Pode ser utilizado só quando esteja imprimindo com [PRINT SELECTION](print-selection.md) ou com o menu Impressão no ambiente Usuário. @@ -39,4 +36,13 @@ O exemplo a seguir muda a posição dos números de página em um relatório de #### Ver também -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 275 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md index 5eb66b84b33f4f..4085e9a9b4ddcb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-4d-tags.md @@ -80,4 +80,13 @@ Este exemplo gera um texto utilizando os dados dos arrays: #### Ver também -*Etiquetas HTML 4D* \ No newline at end of file +*Etiquetas HTML 4D* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 816 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md index ef2e468e00a175..3041e97031529d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-aborted.md @@ -21,4 +21,13 @@ Este status acontece muito raramente. Processos são geralmente parados antes do #### Ver também -[Método banco de dados On Exit](metodo-banco-de-dados-on-exit.md) \ No newline at end of file +[Método banco de dados On Exit](metodo-banco-de-dados-on-exit.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 672 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md index c0f815e8714bc6..b18ddab048bb8c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-number.md @@ -65,4 +65,13 @@ Com esta função, o método de projeto listado cola o texto recebido como parâ [GET PROCESS VARIABLE](get-process-variable.md) [Process info](../commands/process-info.md) [Process state](process-state.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 372 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md index 411ca09daeface..ff30030c3dad4e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/process-state.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Process state devolve o estado do processo cujo número foi passado em *processo*. @@ -61,4 +58,13 @@ O seguinte exemplo coloca o nome e número de referencia para cada processo nos #### Ver também [Count tasks](count-tasks.md) -[Process info](../commands/process-info.md) \ No newline at end of file +[Process info](../commands/process-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 330 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md index 7d5de0ab7a7430..6cae64ef49a02e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/push-record.md @@ -32,4 +32,13 @@ O seguinte exemplo empilha o registro de um cliente: #### Ver também [POP RECORD](pop-record.md) -*Usar a Pilha de Registros* \ No newline at end of file +*Usar a Pilha de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 176 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md index 8dd2cdfa83f7a6..34b8599cb16e01 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-blob-to-report.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR BLOB TO REPORT coloca o relatório contido no *BLOB* na área de relatório rápido passada em *area*. @@ -45,4 +42,14 @@ A instrução a seguir recupera o relatório rápido armazenado em Campo4 e o mo #### Ver também -[QR REPORT TO BLOB](qr-report-to-blob.md) \ No newline at end of file +[QR REPORT TO BLOB](qr-report-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 771 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md index 7f7a19be8f2a8d..bbe2f5b16114c0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-count-columns.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Count columns devolve o número de colunas presentes na *area* do relatório rápido. @@ -35,4 +32,14 @@ O código a seguir permite adicionar uma coluna adicional à direita da última #### Ver também [QR DELETE COLUMN](qr-delete-column.md) -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 764 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md index 3aa8dc460cdfcd..cd0b84be374847 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR DELETE COLUMN apaga da *area* a coluna cujo número se passou em *numColuna*. Este comando não aplica aos relatórios de tabelas cruzadas. @@ -36,4 +33,14 @@ O exemplo a seguir garante de que o relatório seja listado e apaga a terceira c #### Ver também -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 749 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md index f6ce926829fe79..bf0ec8f5229a2c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR DELETE OFFSCREEN AREA apaga da memória a área fora de tela do relatório rápido cuja referência se passa no parâmetro *area*. @@ -24,4 +21,14 @@ Se passa um número de *area* incorreto, se gera o erro -9850. #### Ver também -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 754 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md index b112a1bca06241..fd45cce9940271 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-execute-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **QR EXECUTE COMMAND** executa o comando de menu ou o botão da barra de ferramentas cuja referência se passa em *comando*. Este comando é utilizado geralmente para executar um comando de menu selecionado pelo usuário e interceptado em seu código através do comando [QR ON COMMAND](qr-on-command.md) @@ -44,4 +41,14 @@ Se passa um número de *comando* incorreto, se gera o erro -9852. #### Ver também [QR Get command status](qr-get-command-status.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 791 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md index 02a7e0a0dca979..38fe623dbe380a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-find-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Find column devolve o número da primeira coluna cujo conteúdo corresponde à *expressao* passada em parâmetro. @@ -44,3 +41,14 @@ $NumColumn:=QR Find column (MiArea; "\[G.NQR Tests\]Trimestre")     QR DELETE COLUMN(MinhaArea;$NumColumn)  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 776 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md index e86f07e1628791..a0143c6faa9b81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **QR Get area property** devolve 0 se não mostra o elemento de interface (barra de ferramentas ou barra de menus) passado em *propriedade*; do contrário, devolve 1\. @@ -35,4 +32,14 @@ Se o parâmetro *propriedade* for incorreto, se gera o erro -9852. #### Ver também -[QR SET AREA PROPERTY](qr-set-area-property.md) \ No newline at end of file +[QR SET AREA PROPERTY](qr-set-area-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 795 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md index be290ee6641e1b..fa2a6b03744863 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET BORDERS permite recuperar o estilo do borda de uma célula determinada. @@ -69,4 +66,14 @@ Se o parâmetro *borda* é incorreto, se gera o erro -9854. #### Ver também -[QR SET BORDERS](qr-set-borders.md) \ No newline at end of file +[QR SET BORDERS](qr-set-borders.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 798 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md index b35bb7837dd949..a5249595a8e8c1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-command-status.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get command status devolve 0 se o *comando* estiver inativo ou 1 se estiver ativo. @@ -38,4 +35,14 @@ Se o parâmetro *comando* for incorreto, se gera o erro -9852. #### Ver também [QR EXECUTE COMMAND](qr-execute-command.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 792 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md index 661af3f812a04b..713434b306fd8a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET DESTINATION recupera o *tipo* de saída do relatório para a área cuja referência se passou em *area*. @@ -38,4 +35,14 @@ Se passa um número de *area* incorreto, se gera o erro -9850. #### Ver também -[QR SET DESTINATION](qr-set-destination.md) \ No newline at end of file +[QR SET DESTINATION](qr-set-destination.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 756 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md index 79008517675b25..52372d9a811c5b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get document property permite recuperar o estado mostrado para a caixa de diálogo de impressão ou a unidade utilizada para o documento presente na *area*. @@ -48,4 +45,13 @@ Se passa um valor incorreto do parâmetro *propriedade*, se gera o erro -9852. #### Ver também -[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) \ No newline at end of file +[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 773 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md index f9bf4f1c2a4722..99b2a0b144b78a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-drop-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get drop column devolve um valor dependendo de onde se realiza uma ação soltar: @@ -28,4 +25,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. #### Ver também -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 747 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md index 6d0bf6a6d5291d..fe495a231fb173 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET HEADER AND FOOTER permite recuperar o conteúdo e o tamanho do cabeçalho ou rodapé de página. @@ -68,4 +65,14 @@ O código a seguir recupera o conteúdo e a altura do título do cabeçalho e os #### Ver também -[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) \ No newline at end of file +[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 775 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md index f1a89611f6dfc8..16284e59f90c19 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get HTML template devolve o modelo HTML utilizado atualmente pela área do relatório rápido referenciada por área. O valor devolvido de tipo texto e inclui a totalidade do código HTML utilizado como modelo. @@ -27,4 +24,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. #### Ver também -[QR SET HTML TEMPLATE](qr-set-html-template.md) \ No newline at end of file +[QR SET HTML TEMPLATE](qr-set-html-template.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 751 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md index 3a289a14e8fc97..9d5910718b66db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição ##### Relatórios em lista @@ -113,4 +110,14 @@ Pode escrever: [QR Get info row](qr-get-info-row.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 766 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md index 8f07cfbb15437b..3ec911710f6a5a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get info row indica se *linha* se mostra o se oculta na *area*. @@ -40,4 +37,14 @@ Se o parâmetro *linha* é incorreto, se gera o erro -9852. [QR GET INFO COLUMN](qr-get-info-column.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 769 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md index 3e5e412cc14098..f73a9833e9bd14 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get report kind devolve o tipo do relatório presente em *area*. @@ -36,4 +33,14 @@ Se passa um número de *area* incorreto, se gera o erro -9850. #### Ver também -[QR SET REPORT KIND](qr-set-report-kind.md) \ No newline at end of file +[QR SET REPORT KIND](qr-set-report-kind.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 755 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md index bae6ca1216151a..989e7f2a372595 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get report table devolve o número da tabela atual do relatório designado pelo parâmetro *area*. @@ -25,4 +22,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. #### Ver também -[QR SET REPORT TABLE](qr-set-report-table.md) \ No newline at end of file +[QR SET REPORT TABLE](qr-set-report-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 758 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md index f302ae794c9524..72ef0530446a3e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET SELECTION devolve as coordenadas da seleção atual de *area*. @@ -40,4 +37,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. #### Ver também -[QR SET SELECTION](qr-set-selection.md) \ No newline at end of file +[QR SET SELECTION](qr-set-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 793 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md index 9f8c221536b6dd..34a0e76d0ac359 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET SORTS preenche dois arrays: @@ -36,4 +33,14 @@ Se passa um número de área inválido, se gera o erro -9850. #### Ver também -[QR SET SORTS](qr-set-sorts.md) \ No newline at end of file +[QR SET SORTS](qr-set-sorts.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 753 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md index e17e87f4be5b12..67d6b4aae0c34d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR Get text property devolve o valor da propriedade dos atributos de texto na célula determinada por *numColuna* e *numLinha*. @@ -69,4 +66,14 @@ Se o parâmetro *propriedade* é incorreto, se gera o erro -9854. #### Ver também -[QR SET TEXT PROPERTY](qr-set-text-property.md) \ No newline at end of file +[QR SET TEXT PROPERTY](qr-set-text-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 760 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md index ee556f54a2500f..4c6c1752dd06c1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-data.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição ##### List Mode @@ -73,4 +70,14 @@ Se o parâmetro *numQuebra* é incorreto, se gera o erro -9853. #### Ver também -[QR SET TOTALS DATA](qr-set-totals-data.md) \ No newline at end of file +[QR SET TOTALS DATA](qr-set-totals-data.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 768 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md index 2003e7ebc0abac..6aee39e493fe72 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR GET TOTALS SPACING permite recuperar o valor do espaço adicionado sobre uma linha de subtotal. Aplica unicamente em modo listado. @@ -38,4 +35,14 @@ Se o parâmetro *subtotal* for incorreto, se gera o erro -9852. #### Ver também -[QR SET TOTALS SPACING](qr-set-totals-spacing.md) \ No newline at end of file +[QR SET TOTALS SPACING](qr-set-totals-spacing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 762 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md index daf57a37bc3317..b3db248e9b0920 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-insert-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR INSERT COLUMN insere ou cria uma coluna em una posição específica. As colunas situadas à direita da coluna adicionada serão deslocadas em conseqüência disso. @@ -40,4 +37,14 @@ A seguinte instrução insere (ou cria) uma primeira coluna na área MinhaArea, #### Ver também -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 748 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md index 33de5715f666a2..6fada0268f1334 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **QR MOVE COLUMN** move a coluna que se encontra atualmente na posição *numColuna* para a posição *novaPosição*. @@ -41,3 +38,13 @@ Se executar: O resultado será: ![](../assets/en/commands/pict2569472.en.png) + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1325 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md index e2c03f71204aa2..781505f14247db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-area.md @@ -13,13 +13,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **QR NEW AREA** cria uma nova área de relatório rápido e armazena seu número de referência na variável de tipo Inteiro longo referenciada pelo ponteiro *ptr*. #### Ver também -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1320 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md index 46399d9adf987b..7f4e020d67956b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR New offscreen area cria uma área de relatório rápido fora de tela e devolve seu número de referência. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### Ver também [QR DELETE OFFSCREEN AREA](qr-delete-offscreen-area.md) -[QR NEW AREA](qr-new-area.md) \ No newline at end of file +[QR NEW AREA](qr-new-area.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 735 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md index 866671f2f7a671..095173b9a3ebac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-on-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR ON COMMAND executa o método de projeto 4D passado no parâmetro *nomMetodo* quando um comando do editor de relatórios rápidos for chamado pelo usuário, selecionando um comando de menu ou clicando em um botão. @@ -43,4 +40,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. *QR Comandos* [QR EXECUTE COMMAND](qr-execute-command.md) -[QR Get command status](qr-get-command-status.md) \ No newline at end of file +[QR Get command status](qr-get-command-status.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 790 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md index 990880ac038eaf..c72a19645267aa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR REPORT TO BLOB coloca o relatório cuja referência foi passada em *area* em um *BLOB* (variável ou campo). @@ -33,4 +30,14 @@ A seguinte instrução atribui o relatório rápido armazenado na área MinhaAre #### Ver também -[QR BLOB TO REPORT](qr-blob-to-report.md) \ No newline at end of file +[QR BLOB TO REPORT](qr-blob-to-report.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 770 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md index 9d1867e7c0aa5b..cb48140ea62775 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-report.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição QR REPORT imprime um relatório para *tabela*, criado com o editor de relatórios rápidos . O editor de relatórios rápidos permite aos usuários criar seus próprios relatórios. Para maior informação sobre a criação de relatórios rápidos com a ajuda do editor de relatórios rápidos, consulte *Relatórios rápidos* ou *Relatórios rápidos* no Manual de Desenho de 4D. @@ -136,4 +133,14 @@ O método myCallbackMeth converte o relatório quando é gerado: [PRINT LABEL](print-label.md) [PRINT SELECTION](print-selection.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 197 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md index ee3e7f6b4d1b1c..acc78dcf1967d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-run.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR RUN provoca a execução do relatório rápido designado pelo parâmetro *area*. O relatório é gerado com seus parâmetros atuais, incluindo seu tipo de saída. Pode utilizar o comando [QR SET DESTINATION](qr-set-destination.md) para modificar o tipo de saída. @@ -25,3 +22,14 @@ O relatório se executa na tabela à que pertence a área. Quando *area* designa Se passa um número de *area* inválido, se gera o erro -9850. **4D Server:** este comando pode ser executado em 4D Server como parte de um procedimento armazenado. Neste contexto, tenha certeza de que não apareça nenhuma caixa de diálogo na equipe servidor (exceto para os requisitos específicos). Para isso, é necessário chamar pelo comando [QR SET DESTINATION](qr-set-destination.md) com o parâmetro "\*". Em caso de um problema da impressora (sem papel, impressora desconectada, etc), não é gerado nenhuma mensagem de erro. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 746 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md index 28312116dd1792..49144733979418 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **QR SET AREA PROPERTY** permite mostrar ou ocultar o elemento de interface (barra de ferramentas ou barra de menus) cuja referência se passa em *propriedade*. @@ -43,4 +40,14 @@ Se o parâmetro *propriedade* for incorreto, se gera o erro -9852. #### Ver também -[QR Get area property](qr-get-area-property.md) \ No newline at end of file +[QR Get area property](qr-get-area-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 796 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md index 5df0accc5ec730..2f334196fc83dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET BORDERS permite definir o estilo da borda de uma célula dada. @@ -73,4 +70,14 @@ Se o parâmetro *largura* é incorreto, se gera o erro -9855. #### Ver também -[QR GET BORDERS](qr-get-borders.md) \ No newline at end of file +[QR GET BORDERS](qr-get-borders.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 797 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md index 1edfea4af1df38..155d0ee6c4d484 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET DESTINATION permite definir o tipo de saída do relatório rápido em *area*. @@ -54,4 +51,14 @@ O código a seguir define o arquivo texto Midoc.txt como tipo de destino do rela #### Ver também -[QR GET DESTINATION](qr-get-destination.md) \ No newline at end of file +[QR GET DESTINATION](qr-get-destination.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 745 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md index 8233e47eae5f4a..e0e0e20d196fdc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET DOCUMENT PROPERTY permite mostrar a caixa de diálogo de impressão ou definir a unidade utilizada pelo documento. @@ -37,4 +34,14 @@ Se passa um valor incorreto do parâmetro propriedade, se gera o erro -9852 ou - #### Ver também -[QR Get document property](qr-get-document-property.md) \ No newline at end of file +[QR Get document property](qr-get-document-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 772 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md index 13edf42583ea25..67f4de1d106ac6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET HEADER AND FOOTER permite definir o conteúdo e o tamanho do cabeçalho e o rodapé de *area*. @@ -57,4 +54,14 @@ A seguiete instrução coloca o título “Título do centro” no cabeçalho do #### Ver também -[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) \ No newline at end of file +[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 774 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md index 7889802ff18f68..2e8ce6cacd7dae 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET HTML TEMPLATE define o *modelo* HTML a utilizar para a área de relatório rápido referenciada por *area*. Este modelo se utilizará durante a criação do relatório em formato HTML. @@ -75,4 +72,14 @@ Se passa um número de área inválido, se gera o erro -9850. #### Ver também -[QR Get HTML template](qr-get-html-template.md) \ No newline at end of file +[QR Get HTML template](qr-get-html-template.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 750 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md index c6e678923fba51..f45d6101717abf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-column.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição ##### List mode @@ -110,4 +107,14 @@ Se o parâmetro *numColuna* for incorreto, se gera o erro -9852. [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 765 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md index fd4e2d1bcaf60d..5637d24b877b81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET INFO ROW mostra/oculta a fila cuja referência se passa em *linha*. @@ -51,4 +48,14 @@ A instrução a seguir oculta o conteúdo da linha detalhe: [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO COLUMN](qr-set-info-column.md) \ No newline at end of file +[QR SET INFO COLUMN](qr-set-info-column.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 763 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md index 7c4253adda933c..4cfe935796a164 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET REPORT KIND define o *tipo* do relatório presente em *area*. @@ -40,4 +37,14 @@ Se passa um valor incorreto do parâmetro *propriedade*, se gera o erro -9852. #### Ver também -[QR Get report kind](qr-get-report-kind.md) \ No newline at end of file +[QR Get report kind](qr-get-report-kind.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 738 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md index b60a99bb0554c8..34cda279392214 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET REPORT TABLE define a tabela atual para a área do relatório referenciada pelo parâmetro *area* a tabela número *tabela*. @@ -29,4 +26,14 @@ Se o parâmetro *tabela* for incorreto, se gera o erro -9852. #### Ver também -[QR Get report table](qr-get-report-table.md) \ No newline at end of file +[QR Get report table](qr-get-report-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 757 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md index e3013792238d66..fd37e671b7f5c5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET SELECTION permite selecionar uma célula, uma fila, uma coluna ou toda uma *area* como seria feito com um mouse. Este comando também lhe permite desmarcar a seleção atual. @@ -37,4 +34,14 @@ Se passa um número de *area* inválido, se gera o erro -9850. #### Ver também -[QR GET SELECTION](qr-get-selection.md) \ No newline at end of file +[QR GET SELECTION](qr-get-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 794 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md index e7e342e0b11400..7f5c9907b33538 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET SORTS permite definir o sentido de ordenação de cada coluna do relatório rápido cuja referência é passada em *area*. @@ -49,4 +46,14 @@ Se passa um número de área *inválido*, se gera o erro -9850. #### Ver também -[QR GET SORTS](qr-get-sorts.md) \ No newline at end of file +[QR GET SORTS](qr-get-sorts.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 752 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md index 016483f30184b4..fd2813f565b4c9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET TEXT PROPERTY permite definir as propriedades de texto da célula determinada pelos parâmetros *numColuna* e *numLinha*. @@ -86,4 +83,14 @@ Este método define vários atributos para o título da primeira coluna: #### Ver também -[QR Get text property](qr-get-text-property.md) \ No newline at end of file +[QR Get text property](qr-get-text-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 759 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md index 3a15b81c160502..ab1de742da7512 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota:** este comando não pode criar um subtotal. @@ -100,4 +97,14 @@ Se o parâmetro *numQuebra* for incorreto, se gera o erro -9853. #### Ver também -[QR GET TOTALS DATA](qr-get-totals-data.md) \ No newline at end of file +[QR GET TOTALS DATA](qr-get-totals-data.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 767 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md index e48ba86f4f82c1..74f87f51fe0cfa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QR SET TOTALS SPACING permite definir um espaço sobre a linha de subtotal. Aplica unicamente ao modo lista. @@ -40,4 +37,14 @@ Se o parâmetro *subtotal*, é incorreto, se gera o erro -9852. #### Ver também -[QR GET TOTALS SPACING](qr-get-totals-spacing.md) \ No newline at end of file +[QR GET TOTALS SPACING](qr-get-totals-spacing.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 761 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md index a0fd7bf8909760..42646a5598f309 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-attribute.md @@ -21,10 +21,7 @@ displayed_sidebar: docs #### Descrição -**QUERY BY ATTRIBUTE** localiza os registros que correspondam com a string de consulta definida utilizando os parâmetros *campoObjeto*, *caminhoAtributo*, *opPesq* e *valor* e retorna uma seleção de registros para a *tabela*. - - -**QUERY BY ATTRIBUTE** altera a seleção atual de *tabela* para o processo atual e faz o primeiro registro da nova seleção do registro atual. Se o parâmetro *tabela* for omitido, o comando aplica-se a tabela como padrão. Se você não tiver definido qualquer tabela padrão, ocorre um erro. +**QUERY BY ATTRIBUTE** localiza os registros que correspondam com a string de consulta definida utilizando os parâmetros *campoObjeto*, *caminhoAtributo*, *opPesq* e *valor* e retorna uma seleção de registros para a *tabela*.altera a seleção atual de *tabela* para o processo atual e faz o primeiro registro da nova seleção do registro atual. Se o parâmetro *tabela* for omitido, o comando aplica-se a tabela como padrão. Se você não tiver definido qualquer tabela padrão, ocorre um erro. O parâmetro opcional *opConj* é usado para combinar várias chamadas a **QUERY BY ATTRIBUTE** no caso de várias pesquisas. Os operadores de conjunção disponíveis são o mesmo que o comando [QUERY](query.md): @@ -408,4 +405,16 @@ A variável Ok toma o valor 0 se: *Estrutura dos objetos de linguagem 4D* -[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) \ No newline at end of file +[QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1331 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md index c206c45fa9b923..06003a5b6f2043 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-example.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição QUERY BY EXAMPLE realiza a mesma ação que o comando de menu Pesquisa por formulário... no ambiente Desenho. Este comando mostra o formulário de entrada atual como janela de pesquisa. QUERY BY EXAMPLE busca em *tabela* os dados que o usuário introduz na janela de pesquisa. O formulário deve conter os campos que você queira utilizar para realizar a pesquisa. A pesquisa é otimizada; os campos indexados são utilizados automaticamente para otimizar a pesquisa. @@ -42,4 +39,17 @@ Se o usuário clicar no botão Aceitar, ou pressionar a tecla Enter, a variável #### Ver também [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 292 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md index b154b3656dcca9..2e56819b8c9817 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-formula.md @@ -79,4 +79,15 @@ Este exemplo utiliza uma união para buscar todas as linhas de faturas de client [QUERY](query.md) [QUERY BY SQL](query-by-sql.md) [QUERY SELECTION](query-selection.md) -[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) \ No newline at end of file +[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 48 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md index d637ca42090cb9..029a63c8247354 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-by-sql.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando QUERY BY SQL permite aproveitar diretamente o motor SQL integrado de 4D. Este comando pode executar um pedido simples SELECT que pode ser escrito desta forma: @@ -165,4 +162,16 @@ Se o formato da condição de pesquisa for correto, a variável Sistema OK assum #### Ver também -[QUERY BY FORMULA](query-by-formula.md) \ No newline at end of file +[QUERY BY FORMULA](query-by-formula.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 942 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md index cd0982b65999f0..b177827d08748d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-attribute.md @@ -44,4 +44,16 @@ Se quiser encontrar pessoas com uma idade entre 20 e 30 nos registros que foram #### Ver também -[QUERY BY ATTRIBUTE](query-by-attribute.md) \ No newline at end of file +[QUERY BY ATTRIBUTE](query-by-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1424 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md index 1bec13f81ae929..2c1575aa67da18 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-by-formula.md @@ -29,4 +29,15 @@ Para maior informação, consulte a descrição do comando [QUERY BY FORMULA](qu [QUERY](query.md) [QUERY BY FORMULA](query-by-formula.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 207 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md index d4d94551993208..68702cfee15ce3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection-with-array.md @@ -27,4 +27,14 @@ Para maior informação, consulte a descrição do comando [QUERY WITH ARRAY](qu #### Ver também -[QUERY WITH ARRAY](query-with-array.md) \ No newline at end of file +[QUERY WITH ARRAY](query-with-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1050 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md index 502c662aa83bf4..abc2ae17716819 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-selection.md @@ -42,4 +42,16 @@ Isso faz com que encontre todas as empresas localizadas em Nova Iorque, com ativ #### Ver também -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 341 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md index 9c95654d762629..25bfad9d64cf9b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query-with-array.md @@ -38,4 +38,14 @@ O exemplo a seguir lhe permite recuperar os registros de clientes franceses e am #### Ver também -[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) \ No newline at end of file +[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 644 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md index 64c39748cbc628..7dba48007efc0e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/query.md @@ -309,4 +309,16 @@ A variável Ok toma o valor 0 se: #### Ver também -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 277 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md index e2e1b0537d06d8..62a0f28fe2796b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/quit-4d.md @@ -65,4 +65,13 @@ O método de projeto listado aqui está associado com o item Quit ou Exit do men #### Ver também -[Método banco de dados On Exit](metodo-banco-de-dados-on-exit.md) \ No newline at end of file +[Método banco de dados On Exit](metodo-banco-de-dados-on-exit.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 291 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md index cc901ae08b9bec..583dbd46fb33a1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/random.md @@ -32,3 +32,13 @@ O exemplo a seguir atribui um valor aleatório entre 10 e 30 à variável *vlRes ```4d  vlResult:=(Random%21)+10 ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 100 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md index 4912a0be9133e9..6da8eda75151ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only-state.md @@ -37,4 +37,13 @@ O seguinte exemplo testa o estado da tabela \[Faturas\]. Se o estado da tabela \ [READ ONLY](read-only.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 362 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md index 8640a5edad1a15..209b0dff775857 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-only.md @@ -25,4 +25,13 @@ Utilize READ ONLY quando não necessite modificar os registros. [Read only state](read-only-state.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 145 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md index c34c1b88118405..0fc716f23ca121 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-picture-file.md @@ -40,4 +40,14 @@ Se a execução do comando é correta, a variável sistema Document contém a ro [BLOB TO PICTURE](blob-to-picture.md) *Imagens* [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 678 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md index 75bce916054b3b..3b49fd3838e210 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/read-write.md @@ -29,4 +29,13 @@ Utilize READ WRITE quando tenha que modificar um registro e guardar as mudanças [READ ONLY](read-only.md) [Read only state](read-only-state.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 146 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md index 1aaffed4a7a728..8913cb28a31e43 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/real-to-blob.md @@ -131,4 +131,13 @@ Depois de executar este código: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 552 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md index 6d0a969939c56d..a8b038f3630e1d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-buffer.md @@ -63,4 +63,14 @@ Note que o acesso à variável interprocesso *vtBuffer* deve ser protegida por u [RECEIVE PACKET](receive-packet.md) [Semaphore](semaphore.md) [SET CHANNEL](set-channel.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 172 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md index 375af33a26d7a2..5a9f8d64c49f54 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-packet.md @@ -114,4 +114,14 @@ Depois de um chamado a RECEIVE PACKET, a variável sistema OK recebe o valor 1 s [SEND PACKET](send-packet.md) [SET DOCUMENT POSITION](set-document-position.md) [SET TIMEOUT](set-timeout.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 104 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md index c7e54c18852c63..eea68ab99ccfc2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-record.md @@ -150,4 +150,14 @@ The OK system variable is set to 1 if the record is received. Otherwise, the OK [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 79 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md index 60c68bc5d8c24e..486c1041e60048 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/receive-variable.md @@ -40,4 +40,14 @@ A variável de sistema OK é definida como 1 se a variável for recebida. Caso c [ON ERR CALL](on-err-call.md) [RECEIVE RECORD](receive-record.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 81 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md index f6f421bc5a9010..59beb7f6389b56 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/record-number.md @@ -42,4 +42,13 @@ O exemplo a seguir salva o número do registro atual e depois procura na tabela [Is new record](is-new-record.md) [Selected record number](selected-record-number.md) [Sequence number](sequence-number.md) -*Sobre Números de Registros* \ No newline at end of file +*Sobre Números de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 243 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md index 0393c3d55474d0..c4ae06f56394dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-selection.md @@ -34,4 +34,13 @@ End for #### Ver também -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 76 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md index 226584f585e281..f0a832535f4c9a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-set.md @@ -32,4 +32,13 @@ O seguinte exemplo mostra um alerta indicando a porcentagem de clientes classifi #### Ver também [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 195 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md index 3e9d614b260cf7..f5aa22605136f9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/records-in-table.md @@ -28,4 +28,13 @@ O exemplo a seguir mostra um alerta que indica o número de registros na tabela: #### Ver também -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 83 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md index 99e602eb55e6e3..f84837ec8b00c0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando REDRAW WINDOW provoca uma atualização do conteúdo da janela cujo número de referência é passado em janela. @@ -26,4 +23,13 @@ Se omitir o parâmetro *janela*, REDRAW WINDOW aplica à janela do primeiro plan #### Ver também -[ERASE WINDOW](erase-window.md) \ No newline at end of file +[ERASE WINDOW](erase-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 456 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md index f8bf5bec425b91..154da16492e961 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/redraw.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Quando utilizar um método para modificar o conteúdo de um campo ou sub campo mostrado em um sub-formulário, deve executar REDRAW para ter certeza que o formulário esteja corretamente atualizado. . @@ -24,4 +21,13 @@ No contexto dos list boxes em modo seleção,quando a instrução REDRAW for apl #### Ver também -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 174 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md index 9ffe270a20a1a0..a5e1160553be40 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-restore-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **REDUCE RESTORE WINDOW** reduz/expande a janela cujo número de referência foi passado em *janela d*esde a barra de tarefas em Windows ou no dock em macOS. @@ -31,4 +28,13 @@ O comando muda o estado da janela: [Is window reduced](is-window-reduced.md) [MAXIMIZE WINDOW](maximize-window.md) -[MINIMIZE WINDOW](minimize-window.md) \ No newline at end of file +[MINIMIZE WINDOW](minimize-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1829 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md index 644fa3fb93bf56..8886c1355331d2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reduce-selection.md @@ -54,4 +54,15 @@ O seguinte exemplo pesquisa as estatísticas corretas para uma concorrência mun *Conjuntos* [ORDER BY](order-by.md) [QUERY](query.md) -[SCAN INDEX](scan-index.md) \ No newline at end of file +[SCAN INDEX](scan-index.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 351 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md index 4e70c59003581c..42d841a4efcb05 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/refresh-license.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **Refresh license** atualiza a licença atual de servidor 4D. Conecta o servidor com o banco de dados de clientes 4D e ativa automaticamente qualquer licença nova ou atualizada (por exemplo, clientes comprados adicionais) relacionada com a licença atual. @@ -47,3 +44,13 @@ Se quiser atualizar sua licença e receber uma mensagem quando se completar:     ALERT($res.statusText)  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1336 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md index 53851a9ed5a1f3..4a25d70d0dfd91 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/regenerate-missing-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando REGENERATE MISSING TABLE reconstrui a tabela não encontrada cujo nome é passado no parâmetro *nomTabela*. Quando se reconstrui uma tabela não encontrada, ela se torna visível no editor de estrutura e seus dados são acessíveis novamente. @@ -61,4 +58,13 @@ Este método regenera todas as tabelas não encontradas eventualmente presentes #### Ver também -[GET MISSING TABLE NAMES](get-missing-table-names.md) \ No newline at end of file +[GET MISSING TABLE NAMES](get-missing-table-names.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1126 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md index d5589d0f1357c6..8e82b85750e657 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando REGISTER CLIENT “registra” uma máquina cliente com o nome especificado em *nomeCliente* no 4D Server, a fim de permitir outros clientes ou eventualmente 4D server (utilizando métodos armazenados) executar métodos fazendo uso do comando [EXECUTE ON CLIENT](execute-on-client.md). Uma vez registrado, um cliente 4D pode executar um ou vários métodos para outros clientes. @@ -114,4 +111,14 @@ Se um cliente 4D está registrado corretamente, a variável do sistema OK é igu [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 648 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md index baba4589375d65..a3115afe783ef5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/register-data-key.md @@ -47,4 +47,13 @@ No primeiro parâmetro, passe *curPassPhrase* ou *curDataKey* que define a chave #### Ver também -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1638 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md index 3aa9d08aa7aabb..e7ec15588124fb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject-new-remote-connections.md @@ -38,4 +38,13 @@ Se quiser rejeitar ou aceitar as novas conexões de clientes: [DROP REMOTE USER](drop-remote-user.md) [Application info](application-info.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1635 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md index ea485791b3c9b9..24d82eaaf38aad 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reject.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição REJECT tem duas sintaxes. A primeira sintaxe não tem parâmetros. Neste caso, o comando rechaça a totalidade da entrada e obriga ao usuário a permanecer no formulário. A segunda sintaxe recusa somente o *campo* e obriga ao usuário a permanecer no campo. @@ -63,4 +60,13 @@ O seguinte exemplo é parte de um método de objeto para um campo *\[Empregados\ [ACCEPT](accept.md) [CANCEL](cancel.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 38 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md index 383291b3d8947a..b327dd1e593c05 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many-selection.md @@ -34,4 +34,15 @@ Este exemplo seleciona todas as faturas de clientes com crédito superior ou igu [QUERY](query.md) [RELATE ONE](relate-one.md) -[RELATE ONE SELECTION](relate-one-selection.md) \ No newline at end of file +[RELATE ONE SELECTION](relate-one-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 340 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md index 233d65aab779e4..a11f25382c4c61 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-many.md @@ -65,4 +65,14 @@ Note que é necessário o comando RELATE MANY, mesmo que as relações sejam aut #### Ver também [OLD RELATED MANY](old-related-many.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 262 | +| Thread-seguro | ✓ | +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md index 7edc9c271cc731..9094453dc74fd2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one-selection.md @@ -57,4 +57,15 @@ A seguinte técnica utiliza **RELATE ONE SELECTION** para obter o mesmo resultad *Conjuntos* [QUERY](query.md) [RELATE MANY SELECTION](relate-many-selection.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 349 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md index 4bad6510ef7e51..bf597e80bd65df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/relate-one.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição RELATE ONE aceita duas sintaxes. @@ -91,4 +88,16 @@ Se o comando for executado corretamente e se os registros relacionados forem car #### Ver também [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 42 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md index 634c8671737552..0fd9ce9aaa1a44 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/release-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando RELEASE MENU apaga da memória o menu cuja referência se passa em *menu*.. A regra é a seguinte: a cada [Create menu](create-menu.md) deve corresponder um [RELEASE MENU](release-menu.md). @@ -56,4 +53,13 @@ Este exemplo mostra as diferentes formas de utilizar este comando: #### Ver também -[Create menu](create-menu.md) \ No newline at end of file +[Create menu](create-menu.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 978 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md index 89d9ededd204c7..f1b1e34b4a2a30 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-external-data.md @@ -25,4 +25,13 @@ A continuação deve recarregar os dados utilizando o comando **RELOAD EXTERNAL #### Ver também -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1135 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md index 263fcd30510978..101fa90086a917 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/reload-project.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **RELOAD PROJECT** recarrega as definições do arquivo fonte (métodos, formulários, etc.) do disco para o projeto executando no ambiente atual 4D. Só pode ser usado com projetos 4D executados em **modo interpretado**. A execução de comando é assíncrona. @@ -36,4 +33,13 @@ Quando o comando for chamado de: #### Ver também - \ No newline at end of file + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1739 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md index 57c5388c1d5e89..355e8e2416624e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-from-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### Ver também -[ADD TO SET](add-to-set.md) \ No newline at end of file +[ADD TO SET](add-to-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 561 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md index d35130d6717816..14c9783f42d887 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/remove-picture-from-library.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando REMOVE PICTURE FROM LIBRARY elimina da biblioteca de imagens a imagem cujo número de referência se passa em *refImag* ou cujo nome se passa em *nomImag*. @@ -51,4 +48,14 @@ O exemplo a seguir apaga da biblioteca de imagens toda imagem cujo nome comece p [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 567 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md index bc83b5f5d63448..cd7e97e50f5696 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/replace-string.md @@ -71,4 +71,13 @@ O exemplo abaixo ilustra o uso do parâmetro \* no caso de uma avaliação diacr [Change string](change-string.md) [Delete string](delete-string.md) -[Insert string](insert-string.md) \ No newline at end of file +[Insert string](insert-string.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 233 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md index 26cd11330a3581..3a414107422100 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/request.md @@ -77,4 +77,14 @@ Mostrará a seguinte caixa de diálogo (em Windows): #### Ver também [ALERT](alert.md) -[CONFIRM](confirm.md) \ No newline at end of file +[CONFIRM](confirm.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 163 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md index cf12f2fa02ba9e..9abb9922ed6eff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resize-form-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando RESIZE FORM WINDOW permite modificar o tamanho da janela do formulário atual. @@ -47,4 +44,13 @@ Depois da execução desta linha: [FORM GET PROPERTIES](form-get-properties.md) [FORM SET SIZE](form-set-size.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 890 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md index a6a41aff65ba73..471fbf145cec55 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-alias.md @@ -30,4 +30,14 @@ Se *rotaAlias* especifica um alias/atalho, a variável sistema OK assume o valor #### Ver também -[CREATE ALIAS](create-alias.md) \ No newline at end of file +[CREATE ALIAS](create-alias.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 695 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md index 146269c5e39fe6..a3017e64e17583 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resolve-pointer.md @@ -107,4 +107,13 @@ Este é um exemplo de ponteiro a um array 2D: [Get pointer](get-pointer.md) [Is a variable](is-a-variable.md) [Is nil pointer](is-nil-pointer.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 394 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md index 24d70eead3b5d0..ca4c46cae23529 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando RESOURCE LIST preenche os arrays *resNum* e *resNomes* com os números e os nomes dos recursos cujo tipo se passa em *resTipo*. @@ -71,4 +68,13 @@ O exemplo a seguir copia os recursos imagem presentes em todos os arquivos de re #### Ver também -[RESOURCE TYPE LIST](resource-type-list.md) \ No newline at end of file +[RESOURCE TYPE LIST](resource-type-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 500 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md index 6ca13dec4d6f48..3e68e5493b8fc1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resource-type-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando RESOURCE TYPE LIST preenche o array *resTipos* com os tipos de recursos presentes no(os) arquivo(s) de recursos aberto(s). @@ -82,4 +79,13 @@ Quando este método de projeto for implementado em um banco, pode escrever: #### Ver também -[RESOURCE LIST](resource-list.md) \ No newline at end of file +[RESOURCE LIST](resource-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 499 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md index d66f92ce35153b..bccecce1a71471 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restart-4d.md @@ -33,4 +33,14 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1, cas #### Ver também [Get last update log path](get-last-update-log-path.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1292 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md index 811fcdbdedf23e..c6b71fcce29351 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore-info.md @@ -34,4 +34,13 @@ O tipo e o conteúdo dos parâmetros *info1* e *info2* dependem do valor do *sel #### Ver também -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 889 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md index 440aeb88c7d243..a5cd48db5540a8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/restore.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando RESTORE permite restaurar o ou os arquivos incluidos em um arquivo de 4D. Este comando é útil com interfaces personalizadas para a gestão de backups. @@ -35,4 +32,14 @@ Nota: em um aplicativo 4D compilado e fusionado com 4D Volume Desktop, o comando #### Ver também [BACKUP](backup.md) -[RESTORE INFO](restore-info.md) \ No newline at end of file +[RESTORE INFO](restore-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 918 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md index 599c9329fcac0f..e04785fa229901 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-indexes.md @@ -26,4 +26,13 @@ The **RESUME INDEXES** command can only be called from 4D Server or a local 4D. #### Ver também [CREATE INDEX](create-index.md) -[PAUSE INDEXES](pause-indexes.md) \ No newline at end of file +[PAUSE INDEXES](pause-indexes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1294 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md index b7747789360c33..638da0b578f39c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-process.md @@ -24,4 +24,14 @@ Se *processo* foi atrasado anteriormente, consulte os comandos [PAUSE PROCESS](p #### Ver também [DELAY PROCESS](delay-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 320 | +| Thread-seguro | ✓ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md index e4c4c28625768b..e43c5e00103553 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/resume-transaction.md @@ -22,4 +22,13 @@ Para saber mais, consulte *Suspender as transações*. [Active transaction](active-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspender as transações* \ No newline at end of file +*Suspender as transações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1386 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md index e5fcaee19f7408..55cfe6b74a597f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/right-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Right click retorna [True](true.md "True") se fizer clique no botão direito do mouse. @@ -25,4 +22,13 @@ Este comando deve ser utilizado unicamente no contexto do evento de formulário #### Ver também [Contextual click](contextual-click.md) -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 712 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md index fd6ab97f09b8b3..6bdd88ae488031 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/round.md @@ -36,4 +36,13 @@ O exemplo a seguir ilustra como Round funciona com diferentes argumentos. Cada l #### Ver também -[Trunc](trunc.md) \ No newline at end of file +[Trunc](trunc.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 94 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md index 8b3ec5e06531c9..d0ee509fe991a0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SAVE LIST guarda a lista cujo número de referência passou em *lista*, no editor de listas no ambiente Desenho, sob o nome que passou em *nomeLista*. @@ -27,4 +24,13 @@ Seus conteúdos são substituídos se houver uma lista com o mesmo nome. #### Ver também -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 384 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md index 75ebb1baef0ebe..b9c48da6d0bcb0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-record.md @@ -47,4 +47,13 @@ O exemplo a seguir é parte de um método que lê registros de um documento. Nes [CREATE RECORD](create-record.md) [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 53 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md index 577cf3eb2775e7..d67360f071fd16 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-related-one.md @@ -24,4 +24,13 @@ SAVE RELATED ONE não guardará um registro bloqueado. Quando utilize este coman [CREATE RELATED ONE](create-related-one.md) [Locked](locked.md) [RELATE ONE](relate-one.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 43 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md index 66ee66a78556c9..30d1775c875331 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-set.md @@ -41,4 +41,14 @@ Se o usuário clicar no botão Cancelar na caixa de diálogo de salvar arquivos, #### Ver também -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 184 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md index 8f1bec2d1c588c..322c3af74cb8c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/save-variables.md @@ -47,4 +47,14 @@ Se as variáveis são guardadas corretamente, a variável sistema OK assume o va [DOCUMENT TO BLOB](document-to-blob.md) [LOAD VARIABLES](load-variables.md) [VARIABLE TO BLOB](variable-to-blob.md) -*Variáveis sistema* \ No newline at end of file +*Variáveis sistema* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 75 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md index 7d50ebbb7142d0..a0fd305f816f74 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md @@ -44,4 +44,14 @@ Se ou comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também -[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) \ No newline at end of file +[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 857 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md index 8207e6a62d3ab3..34c93e7eac857b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md @@ -74,4 +74,14 @@ Se ou comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também -[SAX GET XML CDATA](sax-get-xml-cdata.md) \ No newline at end of file +[SAX GET XML CDATA](sax-get-xml-cdata.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 856 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md index bb1606ae5aa0e0..1e95fdacfc9a83 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-comment.md @@ -45,4 +45,14 @@ No caso de um erro, o comando devolve um erro que pode ser interceptado usando u #### Ver também -[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) \ No newline at end of file +[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 852 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md index 78e61ebb0b0ddc..05056af73afae9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md @@ -45,4 +45,14 @@ Em caso de erro, o comando retorna um erro que possa ser interceptado usando um #### Ver também -[SAX ADD XML COMMENT](sax-add-xml-comment.md) \ No newline at end of file +[SAX ADD XML COMMENT](sax-add-xml-comment.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 851 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md index 29d3b665257b36..ed0b271b3d82ad 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md @@ -51,4 +51,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [SAX GET XML ELEMENT VALUE](sax-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 855 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md index c05167201c1b4e..b193bf1d5ece8e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-close-xml-element.md @@ -36,4 +36,13 @@ Se o último elemento aberto for **, a instrução abaixo: #### Ver também [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 854 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md index 0592408bd1aeea..56ddf1bdfadcd2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md @@ -48,4 +48,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [SAX ADD XML CDATA](sax-add-xml-cdata.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 878 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md index 849ea505480112..05b2839c3aea58 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-comment.md @@ -25,4 +25,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [SAX ADD XML COMMENT](sax-add-xml-comment.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 874 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md index 07a70dfd7b76d2..f26a6bf4ae0064 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md @@ -29,4 +29,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também [SAX Get XML node](sax-get-xml-node.md) -[SAX SET XML DECLARATION](sax-set-xml-declaration.md) \ No newline at end of file +[SAX SET XML DECLARATION](sax-set-xml-declaration.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 873 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md index b3051d8421bede..8d2a085ecf501d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md @@ -43,4 +43,14 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1\. Ca #### Ver também [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 877 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md index 32b6759b13eb35..1b68f20402c68c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-element.md @@ -56,4 +56,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 876 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md index 3fc55c6b78b6e4..52a386eef7c848 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-entity.md @@ -47,4 +47,14 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o #### Ver também -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 879 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md index 0fab1b74b7c7b4..f8f575f3354161 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-node.md @@ -55,3 +55,14 @@ O exemplo abaixo processa um evento: #### Variáveis e conjuntos do sistema Se o comando tiver sido executado corretamente, a variável sistema Ok assume o valor 1\. Do contrário assume o valor 0 e um erro é gerado. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 860 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md index d2b08a4b108584..de1d548e7a1529 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md @@ -39,4 +39,13 @@ A instrução abaixo devolverá “PI” em *vNom* e “TextProcess” em *vValo #### Ver também [SAX ADD PROCESSING INSTRUCTION](sax-add-processing-instruction.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 875 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md index ea82c2a48478aa..cad0c07b2f9917 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md @@ -53,4 +53,13 @@ O método abaixo: [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 921 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md index 0cfaa8ad21ade4..a5e3c7bf37a113 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-open-xml-element.md @@ -50,4 +50,14 @@ Se passar em tag um caractere inválido, se gera um erro. #### Ver também [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 853 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md index cf8cc06933ba78..376991475103d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md @@ -43,4 +43,13 @@ O código abaixo: #### Ver também -[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) \ No newline at end of file +[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 858 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md index b77beb08fc4e22..0d03ca5d8aae3e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/scan-index.md @@ -50,4 +50,15 @@ O seguinte exemplo envia cartas aos 50 piores clientes e aos 50 melhores cliente [ORDER BY](order-by.md) [QUERY](query.md) -[REDUCE SELECTION](reduce-selection.md) \ No newline at end of file +[REDUCE SELECTION](reduce-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 350 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md index 53a26623c92e50..8a133254cf21ff 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SCREEN COORDINATES devolve nos parâmetros *esquerda*, *acima*, *direita,* e *abaixo* as coordenadas da tela especificada por *IDtela*. @@ -47,4 +44,13 @@ As imagens abaixo demostram as diferenças entre o tamanho da tela e a área de [Count screens](count-screens.md) [Menu bar screen](menu-bar-screen.md) -[SCREEN DEPTH](screen-depth.md) \ No newline at end of file +[SCREEN DEPTH](screen-depth.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 438 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md index 9b37ec9a0079ef..8517f14b5369e3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-depth.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SCREEN DEPTH devolve nos parâmetros *profundidade* e *cor* a informação sobre o monitor. @@ -61,3 +58,13 @@ Sua aplicação mostra vários gráficos a cor. Pode escrever em alguma parte em #### Ver também [Count screens](count-screens.md) + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 439 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md index b2fe0c00640255..f19c71fc32d24c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-height.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Em Windows, Screen height devolve a altura da janela da aplicação 4D (janela MDI). Se passado o parâmetro opcional *\**, Screen height devolve a altura da tela. @@ -26,4 +23,13 @@ Em Mac OS, Screen height devolve a altura da tela principal, ou seja a tela onde #### Ver também [SCREEN COORDINATES](screen-coordinates.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 188 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md index 6a323620b5b8ac..4f887f3abcb051 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/screen-width.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Em Windows, Screen width devolve o largo da janela da aplicação 4D (janela MDI). Se passado o parâmetro opcional *\**, Screen width devolve o largo da tela. @@ -26,4 +23,13 @@ Em Macintosh, Screen width devolve o largo da tela principal, ou seja o largo da #### Ver também [SCREEN COORDINATES](screen-coordinates.md) -[Screen height](screen-height.md) \ No newline at end of file +[Screen height](screen-height.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 187 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md index 7495eba686c592..e68c6f371add44 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-document.md @@ -96,4 +96,14 @@ Se não for selecionado nenhum arquivo (por exemplo, se o usuário clicar no bot #### Ver também [Open document](open-document.md) -[Select folder](select-folder.md) \ No newline at end of file +[Select folder](select-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 905 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md index 93dc82fec3f981..3ecfed799b196c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-folder.md @@ -88,4 +88,14 @@ O exemplo abaixo lhe permite selecionar a pasta na qual serão armazenadas as im [CREATE FOLDER](create-folder.md) [FOLDER LIST](folder-list.md) -[Select document](select-document.md) \ No newline at end of file +[Select document](select-document.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 670 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md index 70a65a7b9a026b..b4ed229aa7479e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SELECT LIST ITEMS BY POSITION seleciona os elementos cuja posição se passa em *posiçaoElem* e opcionalmente em *posiçao* *Array* na lista cujo número de referência ou nome de objeto é passada em *lista*. @@ -74,4 +71,13 @@ São selecionados os elementos segundo, terceiro e quinto da lista hierárquica [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 381 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md index 11a2fef02d7826..2efffb283d84e2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-list-items-by-reference.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SELECT LIST ITEMS BY REFERENCE seleciona os elementos cujo número de referência se passa em *refElem* e opcionalmente em *refArray*, na lista cujo número de referência se passa em *lista*. @@ -51,4 +48,13 @@ Se trabalha com os números de referência dos elementos, tenha certeza de const [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 630 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md index 02dcdcacb6c241..4b091c6a174e86 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-log-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SELECT LOG FILE** cria, ou fecha o arquivo de histórico de acordo com o valor que se passe em *historico*. @@ -40,4 +37,14 @@ OK recebe o valor 1 se o arquivo de histórico é criado ou fechado corretamente #### Ver também -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 345 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md index 35f788ee6122a4..0aa10e22e9188c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/select-rgb-color.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Select RGB Color mostra a janela sistema de seleção de cor e devolve o valor RGB da cor selecionada pelo usuário. @@ -42,4 +39,15 @@ O efeito da validação desta caixa de diálogo muda dependendo da plataforma: #### Ver também -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 956 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md index 1acd052334efde..dc364cdade1a9f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-list-items.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Selected list items retorna a posição ou referência do elemento selecionado na lista cujo número de referência ou nome de objeto é passada em *lista*. @@ -86,4 +83,13 @@ Esta é uma lista chamada *hList,* mostrada no ambiente Aplicação: #### Ver também [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 379 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md index 4d1af1e332a5b9..667ccb7c780000 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selected-record-number.md @@ -34,4 +34,13 @@ O seguinte exemplo guarda o número do registro atual da seleção em uma variá [GOTO SELECTED RECORD](goto-selected-record.md) [Records in selection](records-in-selection.md) -*Sobre Números de Registros* \ No newline at end of file +*Sobre Números de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 246 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md index 6c51481d14a79e..6a219ea44fe53d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-range-to-array.md @@ -107,4 +107,13 @@ Use os 50 primeiros registros atuais da tabela \[facturas\] para carregar vário [ON ERR CALL](on-err-call.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 368 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md index 3400df0a9c26c6..d48ad67e5689e2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-array.md @@ -78,4 +78,13 @@ O mesmo exemplo pode ser escrito: [MULTI SORT ARRAY](multi-sort-array.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 260 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md index ed66b3de1053fd..feecccb34bf0e4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/selection-to-json.md @@ -90,4 +90,13 @@ Pode usar a sintaxe *modelo* para exportar campos de tabelas diferentes: #### Ver também -[JSON TO SELECTION](json-to-selection.md) \ No newline at end of file +[JSON TO SELECTION](json-to-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1234 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md index d3432cc27979a9..d97cc2385416a9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/self.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Nota de compatibilidade Este comando só é conservada por razões de compatibilidade. A partir da versão 12 de 4D, é recomendado utilizar o comando OBJECT Get pointer. @@ -44,4 +41,13 @@ Ver o exemplo do comando [RESOLVE POINTER](resolve-pointer.md "RESOLVE POINTER") [OBJECT Get pointer](object-get-pointer.md) [RESOLVE POINTER](resolve-pointer.md) -[This ](this.md) \ No newline at end of file +[This ](this.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 308 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md index b77724759c1215..fedd861d83e484 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/semaphore.md @@ -153,4 +153,13 @@ Sintaxe: [CLEAR SEMAPHORE](clear-semaphore.md) *Semáforos e Sinais* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 143 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md index dc9fc7957e02b0..d015f4354af2fe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-message-to-remote-user.md @@ -51,4 +51,13 @@ You want to send a message to all users, then send a message to a specific user: #### Ver também -[DROP REMOTE USER](drop-remote-user.md) \ No newline at end of file +[DROP REMOTE USER](drop-remote-user.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1632 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md index 2ba195f283b68b..8987f7ec6c5282 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-packet.md @@ -81,4 +81,13 @@ Este exemplo ilustra o envio e recuperação de caracteres estendidos através d [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 103 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md index a25dbdd6ff9958..9444d1684516f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-record.md @@ -33,4 +33,13 @@ O registro completo é enviado. Isso significa que imagens e BLOBs armazenados o [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 78 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md index f5f8d0bd300883..b086d7364f8db1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/send-variable.md @@ -31,4 +31,13 @@ Veja o exemplo para o comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 80 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md index f49bf210b5d704..ae41d0996b5aa3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sequence-number.md @@ -58,4 +58,13 @@ O exemplo a seguir é parte de um método de formulário. Estas linhas de códig [Record number](record-number.md) [Selected record number](selected-record-number.md) -*Sobre Números de Registros* \ No newline at end of file +*Sobre Números de Registros* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 244 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md index 460118d1f51bdd..6d7b5675ed4d41 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/session-storage.md @@ -51,4 +51,13 @@ Este método modifica o valor de uma propriedade "settings" armazenada no objeto #### Ver também -[Process activity](../commands/process-activity.md) \ No newline at end of file +[Process activity](../commands/process-activity.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1839 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md index 2e8465c72af74d..89822626359bf3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-about.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET ABOUT muda o comando de menu Sobre 4D do menu **Ajuda** (Windows) ou do menu **Aplicação** (Mac OS X) em *textoItem*. @@ -45,4 +42,13 @@ O exemplo abaixo reinicializa o comando de menu Sobre 4D: #### Ver também -[SET HELP MENU](set-help-menu.md) \ No newline at end of file +[SET HELP MENU](set-help-menu.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 316 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md index 211be63d64c662..7af3ba6286de45 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-application-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET APPLICATION COLOR SCHEME** define o esquema de cores a usar no nível da aplicação para a sessão atual. Este esquema será aplicado a formulários que não declaram um esquema específico (um esquema de cores definido no nível do formulário tem prioridade sobre o nível da aplicação). @@ -38,4 +35,13 @@ No parâmetro *esquemaCor*, passe um esquema de cores a aplicar: #### Ver também [FORM Get color scheme](form-get-color-scheme.md) -[Get application color scheme](get-application-color-scheme.md) \ No newline at end of file +[Get application color scheme](get-application-color-scheme.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1762 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md index 44f433da0f4858..1b3304dbfc5740 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-assert-enabled.md @@ -37,4 +37,13 @@ Desativação de asserções [ASSERT](assert.md) [Asserted](asserted.md) -[Get assert enabled](get-assert-enabled.md) \ No newline at end of file +[Get assert enabled](get-assert-enabled.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1131 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md index 8c5a86541d2826..d630fee4bbb59e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-automatic-relations.md @@ -43,4 +43,13 @@ O exemplo a seguir torna automáticas todas as relações Muitos a Um e restabel [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) [SET FIELD RELATION](set-field-relation.md) -*Sobre Relações* \ No newline at end of file +*Sobre Relações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 310 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md index 9a753984000556..94cf722e09b40f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blob-size.md @@ -49,4 +49,13 @@ O exemplo a seguir cria um BLOB de 16K cheios de 0xFF: #### Ver também -[BLOB size](blob-size.md) \ No newline at end of file +[BLOB size](blob-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 606 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md index bd730a659cfa52..49d0f206994fd7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md @@ -47,4 +47,13 @@ Em , se quiser definir uma prioridade alta para a tabela \[Customer\]: #### Ver também [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) -[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) \ No newline at end of file +[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1425 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md index 47b8909e054faf..2118e843354b9b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cache-size.md @@ -38,4 +38,13 @@ Se quiser adicionar 100 MB ao tamanho da cache de seu banco de ados atual. Pode #### Ver também -[Get cache size](get-cache-size.md) \ No newline at end of file +[Get cache size](get-cache-size.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1399 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md index bad7645bb21535..a9005c2493016b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-channel.md @@ -168,4 +168,14 @@ Veja os exemplos para os comandos [RECEIVE BUFFER](receive-buffer.md "RECEIVE BU [SEND PACKET](send-packet.md) [SEND RECORD](send-record.md) [SEND VARIABLE](send-variable.md) -[SET TIMEOUT](set-timeout.md) \ No newline at end of file +[SET TIMEOUT](set-timeout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 77 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md index 41194332f933ca..95026503cc1b82 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET CURRENT PRINTER** utiliza para designar a impressora a utilizar par imprimir com a aplicação 4D atual. @@ -56,4 +53,14 @@ Criação de um documento PDF em Windows: #### Ver também [Get current printer](get-current-printer.md) -[PRINTERS LIST](printers-list.md) \ No newline at end of file +[PRINTERS LIST](printers-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 787 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md index ecca5936c509a9..efc179bf41834e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-cursor.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET CURSOR muda o cursor do mouse para o cursos do sistema cujo número de ID você passar em *cursor*. @@ -38,3 +35,13 @@ Se quiser que o cursor seja exibido ![](../assets/en/commands/pict2478692.en.png     SET CURSOR(9019)  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 469 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md index 56fcdadd3ea1e0..d18b9414691afb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-localization.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET DATABASE LOCALIZATION é utilizado para modificar o idioma atual do banco de dados para a sessão atual. @@ -71,4 +68,14 @@ A interface do seu aplicativo usa a string estática ":xliff:shopping". Os arqui #### Ver também -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1104 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md index 15865cccb3adfa..36237faa8f0788 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-database-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET DATABASE PARAMETER** permite modificar vários parâmetros internos do banco de dados 4D. @@ -147,4 +144,13 @@ Você quer exportar dados em JSON que contém uma data 4D convertida. Note que a [Get database parameter](get-database-parameter.md) [LOG EVENT](log-event.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 642 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md index 985ff1155c27f1..8654ccef2e7d08 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-default-century.md @@ -64,3 +64,13 @@ Em todos os casos: * 25/01/2007 significa janeiro 25, 2007 Este comando afeta só a entrada de dados. Não tem nenhum efeito no armazenamento de dados, cálculos, etc. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 392 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md index 86c97571ccf65f..9edc92f24ff86f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-position.md @@ -29,4 +29,13 @@ Se omite o parâmetro opcional *ancora*, a posição é relativa ao início do d [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 482 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md index 03adec908ae581..36793bb90c2692 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-properties.md @@ -34,4 +34,14 @@ As datas e horas de criação e última modificação são administradas pelo ad #### Ver também -[GET DOCUMENT PROPERTIES](get-document-properties.md) \ No newline at end of file +[GET DOCUMENT PROPERTIES](get-document-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 478 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md index 6723560a078636..12e3d242e59e8a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-document-size.md @@ -26,4 +26,13 @@ Em Macintosh, é modificado o tamanho do data fork do documento [Get document position](get-document-position.md) [Get document size](get-document-size.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 480 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md index 40b90d1bffac28..2746fca8fd7eaa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-drag-icon.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET DRAG ICON** associa a imagem de ícone ao cursor durante as operações de arrastar e soltar que se manipulam por programação. @@ -59,4 +56,13 @@ Note que pode modificar a posição do cursor com respeito a imagem: #### Ver também -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1272 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md index 83c49c33d5772b..1f5e086a265f35 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-environment-variable.md @@ -42,4 +42,13 @@ Consulte os exemplos do comando [LAUNCH EXTERNAL PROCESS](launch-external-proces #### Ver também -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 812 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md index bdfd5a594b5880..b137a9bf579193 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-external-data-path.md @@ -57,4 +57,13 @@ Se você deseja guardar o conteúdo de um arquivo existente no campo imagem, arm #### Ver também [Get external data path](get-external-data-path.md) -[RELOAD EXTERNAL DATA](reload-external-data.md) \ No newline at end of file +[RELOAD EXTERNAL DATA](reload-external-data.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1134 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md index d6fc1db361d269..480aeb129d2947 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-relation.md @@ -48,4 +48,14 @@ QR REPORT(\[Faturas\];Char(1))\[#/code4D\] [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 919 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md index 2b208cf4c68f49..b16bba9c10916a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-titles.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SET FIELD TITLES permite ocultar, renomear e reorganizar os campos de uma tabela ou de uma subtabela passada em *tabela* ou *subtabela* quando aparecem nos editores padrão de 4D, tal como o editor de pesquisas, em modo Aplicação (mais especificamente, quando os editores são chamados através dos comandos do linguagem de 4D). @@ -62,4 +59,13 @@ Ver o exemplo do comando [SET TABLE TITLES](set-table-titles.md). [GET FIELD TITLES](get-field-titles.md) [Last field number](last-field-number.md) [Parse formula](parse-formula.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 602 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md index fcc01c8430c226..e16a994b3fb018 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-field-value-null.md @@ -27,4 +27,13 @@ O valor NULL é utilizado pelo motor SQL de 4D. Para maior informação, consult #### Ver também [Is field value Null](is-field-value-null.md) -[Null](null.md) \ No newline at end of file +[Null](null.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 965 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md index c8f4e6839ec59a..368f44696a9e5a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET FILE TO PASTEBOARD adiciona a área de transferência à rota de acesso completa do arquivo passada no parâmetro *arquivo*. Este comando permite criar interfaces permitindo arrastar e soltar objetos 4D aos arquivos no escritório por exemplo. @@ -29,4 +26,13 @@ O comando admite o asterisco *\** como parâmetro opcional. Automaticamente, qua #### Ver também -[Get file from pasteboard](get-file-from-pasteboard.md) \ No newline at end of file +[Get file from pasteboard](get-file-from-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 975 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md index b011785ab63c8b..19ee514b288942 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-access.md @@ -43,4 +43,14 @@ Se quiser promover o usuário atual aos grupos "admin" e "plugins" durante a ses [Get group access](get-group-access.md) [Get plugin access](get-plugin-access.md) [SET PLUGIN ACCESS](set-plugin-access.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1737 | +| Thread-seguro | ✓ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md index a75a68b98c44b0..4c95758c059213 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-group-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Set group properties permite modificar e atualizar as propriedades de um grupo existente cujo número de referência único se passa em *refGrupo*, ou para adicionar um novo grupo @@ -58,4 +55,14 @@ Se você não tiver os acessos de privilégio para chamar Set group properties o [GET GROUP LIST](get-group-list.md) [GET GROUP PROPERTIES](get-group-properties.md) -[GET USER LIST](get-user-list.md) \ No newline at end of file +[GET USER LIST](get-user-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 614 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md index 78c899246f4955..674161eeb5e68d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-help-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET HELP MENU** lhe permite substituir o menu **Ajuda** por padrão de 4D pela coleção de elementos do menu *menuCol* de modo aplicação. @@ -61,4 +58,13 @@ Se quiser personalizar o menu **Ajuda** de sua aplicação: #### Ver também -[SET ABOUT](set-about.md) \ No newline at end of file +[SET ABOUT](set-about.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1801 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md index 7bf3af9685cf4b..0347cf1e132fbe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index-cache-priority.md @@ -47,4 +47,13 @@ Em , se quiser estabelecer uma alta prioridade para os índices campo \[Customer #### Ver também [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) -[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) \ No newline at end of file +[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1401 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md index ffa3e8cae6a48c..d506167bf13316 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-index.md @@ -89,4 +89,13 @@ O exemplo abaixo indexa o campo *\[Clientes\]Num*: [DELETE INDEX](delete-index.md) [GET FIELD PROPERTIES](get-field-properties.md) [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 344 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md index d0aa951cff050a..350216582779a0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET LIST ITEM FONT modifica a fonte de caracteres do elemento especificado pelo parâmetro *refElem* da lista cujo número de referência ou nome de objeto se passa em *lista*. @@ -46,4 +43,13 @@ Aplicar a fonte Times ao elemento atual da lista: [Get list item font](get-list-item-font.md) [OBJECT SET FONT](object-set-font.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 953 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md index f9790f5ae93a78..67d1d7df8f87a8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET LIST ITEM ICON permite modificar o ícone associado ao elemento especificado pelo parâmetro *refElem* da lista cujo número de referência o nome de objeto se passa em *lista* @@ -48,4 +45,13 @@ Queremos atribuir a mesma imagem a dois elementos diferentes. O seguinte código [SET LIST ITEM](set-list-item.md) [SET LIST ITEM FONT](set-list-item-font.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 950 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md index be333a1f1df29e..e7168df5d9c722 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET LIST ITEM PARAMETER permite modificar o parâmetro *seletor* para o elemento *refElem* da lista hierárquica cuja referência ou nome de objeto são passadas no parâmetro *lista*. @@ -65,4 +62,13 @@ APPEND TO LIST($myList;ak standard action title;1) [Action info](action-info.md) [GET LIST ITEM PARAMETER](get-list-item-parameter.md) [GET LIST ITEM PARAMETER ARRAYS](get-list-item-parameter-arrays.md) -[INSERT IN LIST](insert-in-list.md) \ No newline at end of file +[INSERT IN LIST](insert-in-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 986 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md index cd75cea6300906..1111bdd51125df 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET LIST ITEM PROPERTIES** modifica o elemento designado pelo parâmetro *refElem* da lista cujo número de referência ou nome de objeto se passa em *lista*. @@ -81,4 +78,13 @@ O exemplo a seguir modifica o texto do elemento atual de *lista* negrito e verme [GET LIST ITEM PROPERTIES](get-list-item-properties.md) *Listas hierárquicas* [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 386 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md index d38152990f04c8..37b1cac7d9df2c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET LIST ITEM modifica o elemento designado pelo parâmetro *refElem* na lista cujo número de referência ou nome de objeto se passa em *lista*. @@ -79,4 +76,13 @@ Ver exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST"). [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [SET LIST ITEM FONT](set-list-item-font.md) [SET LIST ITEM ICON](set-list-item-icon.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 385 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md index 4e9be0cddae3ac..104d511e4d1e49 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET LIST PROPERTIES define a aparência da lista hierárquica cuja referência é passada no parâmetro *lista*. @@ -66,4 +63,13 @@ Se deseja recusar a sublista de expandir/contrair ao dar duplo clique, pode escr [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [GET LIST PROPERTIES](get-list-properties.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 387 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md index 87ae4507235e06..862534eabe9b5c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MACRO PARAMETER insere o texto *paramText* no método desde o qual é chamado. @@ -58,4 +55,13 @@ Esta macro cria um novo texto que será devolvido ao método que faz a chamada: #### Ver também -[GET MACRO PARAMETER](get-macro-parameter.md) \ No newline at end of file +[GET MACRO PARAMETER](get-macro-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 998 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md index ebbeeb6e1f25fd..3f72ea87c2d314 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-bar.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição MENU BAR substitui a barra de menus atual com a especificada por *barra* no processo atual unicamente. No parâmetro *barra*, pode passar o número ou nome da nova barra. Igualmente pode passar uma referência única de menu (tipo [MenuRef](# "Unique ID (16-character alphanumeric) of a menu"), string de 16 caracteres). Quando trabalha com referências, os menus podem ser utilizados como barras de menu e vice-versa (ver a seção *Gestão de Menus*). @@ -120,4 +117,13 @@ Neste exemplo, criaremos por programação, uma barra de menus incluindo os segu #### Ver também -*Gestão de Menus* \ No newline at end of file +*Gestão de Menus* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 67 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md index 4bfe1d67737e86..f8c0d618a90c7f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET MENU ITEM ICON** permite modificar o ícone associado à linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -45,4 +42,13 @@ Uso de uma imagem localizada na pasta Recursos do banco de dados: #### Ver também -[GET MENU ITEM ICON](get-menu-item-icon.md) \ No newline at end of file +[GET MENU ITEM ICON](get-menu-item-icon.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 984 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md index caa0c9cbe76093..bb5fff3732861a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM MARK modifica a marca do elemento de menu cujo número ou referência de menu é passado em *menu* e cujo número de linha se passa em *menuItem* ao primeiro caractere da cadeia passada em *marcar*. Pode passar -1 em *menuItem* para designar a última linha adicionada ao menu. @@ -38,4 +35,14 @@ Ver exemplo para o comando [Get menu item mark](get-menu-item-mark.md "Get menu #### Ver também -[Get menu item mark](get-menu-item-mark.md) \ No newline at end of file +[Get menu item mark](get-menu-item-mark.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 208 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md index 9e9a3c0c0128ff..4cce50a3b493b6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM METHOD pode ser utilizada para modificar o método de projeto 4D associado à linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -37,4 +34,13 @@ Consulte o exemplo do comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR"). #### Ver também -[Get menu item method](get-menu-item-method.md) \ No newline at end of file +[Get menu item method](get-menu-item-method.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 982 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md index 64102177344dc1..e91019faf65096 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM PARAMETER permite associar uma cadeia de caracteres personalizada com uma linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -43,4 +40,13 @@ Este código oferece um menu que inclui os nomes das janelas abertas e permite r [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[Get selected menu item parameter](get-selected-menu-item-parameter.md) \ No newline at end of file +[Get selected menu item parameter](get-selected-menu-item-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1004 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md index 30f41bd26f4296..4a748537bb576d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM PROPERTY permite fixar o *valor* da *propriedade* para a linha de menu designada pelos parâmetros *menu* e *menuItem*. @@ -51,4 +48,13 @@ Proprierdade personalizada - Nesta propriedade pode passar qualquer texto person #### Ver também [Dynamic pop up menu](dynamic-pop-up-menu.md) -[GET MENU ITEM PROPERTY](get-menu-item-property.md) \ No newline at end of file +[GET MENU ITEM PROPERTY](get-menu-item-property.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 973 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md index f90cdea5d0f68e..c74700471cb56a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM SHORTCUT modifica o atalho Ctrl (Windows) ou comando (Macintosh) para o comando de menu cujos números de menu e de elemento são passados em *menu* e *menuItem,* pelo caracter cujo caractere de código ou texto se passa em *itemKey*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado ao menu. Esta tecla se combinará automaticamente com a tecla **Ctrl** (Windows) ou **Comando** (Macintosh) para definir o novo atalho de teclado. @@ -78,4 +75,14 @@ Definição do atalho\\shortcut para o item de menu "Close: #### Ver também [Get menu item key](get-menu-item-key.md) -[Get menu item modifiers](get-menu-item-modifiers.md) \ No newline at end of file +[Get menu item modifiers](get-menu-item-modifiers.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 423 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md index 4cd2da9d178fb3..af9ae8cb541735 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM STYLE cambia o estilo da fonte da linha de menu cujo número ou referência de menu se passa em *menu* e cujo número de elemento se passa em *menuItem* de acordo ao estilo de fonte passado em *itemEstilo*. Pode passar -1 em *menuItem* para indicar o último elemento adicionado a *menu*. @@ -40,4 +37,14 @@ No parâmetro *itemEstilo* pode definir o estilo do elemento. Passe uma combina #### Ver também -[Get menu item style](get-menu-item-style.md) \ No newline at end of file +[Get menu item style](get-menu-item-style.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 425 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md index 8d71b0da60dcd9..edf640ddc06707 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET MENU ITEM modifica o texto da linha de menu cujo número ou referencia de menu se passa em *menu* e cujo número de elemento se passa em *menuItem*, para o texto que passou em *itemText*. Pode passar -1 em *menuItem* para designar o último elemento adicionado a *menu*. @@ -34,4 +31,14 @@ Se omitir o parâmetro *processo*, SET MENU ITEM é aplicada à barra de menus d [APPEND MENU ITEM](append-menu-item.md) [Get menu item](get-menu-item.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 348 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md index ab4ab0310b0376..bf126db296f1bb 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-file-name.md @@ -25,4 +25,13 @@ O nome por defeito se utiliza como nome de arquivo quando a imagem se exporta em #### Ver também [Get picture file name](get-picture-file-name.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1172 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md index 97ca0ebe645453..f55242b1a3dfe1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-metadata.md @@ -86,4 +86,14 @@ Quanto todos os metadados são manipulados via uma referência de elementos DOM, [GET PICTURE KEYWORDS](get-picture-keywords.md) [GET PICTURE METADATA](get-picture-metadata.md) *Picture Metadata Names* -*Picture Metadata Values* \ No newline at end of file +*Picture Metadata Values* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1121 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md index 0e0037894ab445..035a3192ade2bf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-library.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PICTURE TO LIBRARY cria uma nova imagem ou substitui uma imagem existente na biblioteca de imagens. @@ -94,4 +91,15 @@ Se não houver suficiente memória para adicionar a imagem à biblioteca de imag [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) \ No newline at end of file +[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 566 | +| Thread-seguro | ✗ | +| Modificar variáveis | error | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md index 3fc93bfe5cd3da..c5595f82ec7f5b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SET PICTURE TO PASTEBOARD limpa a área de transferência e coloca uma cópia da imagem que passou em *imagem* na área de transferência. @@ -50,4 +47,14 @@ Se não houver suficiente memória para colocar uma cópia da imagem na área de #### Ver também [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) \ No newline at end of file +[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 521 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md index 800b6a372270e0..415116ffa825d4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PLUGIN ACCESS permite especificar por programação o grupo de usuários autorizado a utilizar cada plug-in com “número de série” instalado na base. Ao fazer isto, pode administrar a repartição das licenças dos plug-ins. @@ -45,4 +42,13 @@ Passe no parâmetro *grupo* o nome do grupo cujos usuários estão autorizados a [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 845 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md index f202b476f7bbf3..cc642f55f478c0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-marker.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PRINT MARKER permite definir a posição de um marcador durante a impressão. Combinado com os comandos [Get print marker](get-print-marker.md "Get print marker"), OBJECT MOVE ou [Print form](print-form.md "Print form"), este comando lhe permite ajustar o tamanho das áreas de impressão. @@ -188,4 +185,13 @@ El método de formulario List\_Imp3 es el siguiente: [PAGE BREAK](page-break.md) [Print form](print-form.md) [PRINT RECORD](print-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 709 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md index 2153675d83e46e..2a00475ecadb48 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PRINT OPTION se utiliza para modificar por programação o valor de una opção de impressão.. Cada opção definida utilizando este comando se aplica [ configurações de impressão 4D](https://developer.4d.com/docs/settings/compatibility/) sempre que não se chame outro comando que modifique os parâmetros de impressão ([PRINT SETTINGS](print-settings.md), [PRINT SELECTION](print-selection.md) sem o parâmetro > parâmetro, etc.). Se tiver aberto um trabalho de impressão, (por exemplo com [OPEN PRINTING JOB](open-printing-job.md)), a opção está configurada para o trabalho e não pode ser modificada enquanto o trabalho não tiver terminado (exceto para Orientation option, ver abaixo). @@ -82,4 +79,14 @@ Se o valor passado por uma *opção* é incorreto ou se não estiver disponível *Opções de Impressão* [Print form](print-form.md) [PRINT OPTION VALUES](print-option-values.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 733 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md index 75ab59c237d852..4d250750f14626 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SET PRINT PREVIEW lhe permite selecionar ou desmarcar por programação a opção de pré-visualização em tela. Se passar TRUE em *vistaprevia*, se selecionar Pré-visualização em tela, se passar FALSE, será desmarcado. Este parâmetro é local para um processo e não afeta a impressão de outros processos ou usuários. @@ -38,4 +35,13 @@ O exemplo a seguir seleciona a opção Pré-visualização em tela para mostrar #### Ver também [Get print preview](get-print-preview.md) -[Is in print preview](is-in-print-preview.md) \ No newline at end of file +[Is in print preview](is-in-print-preview.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 364 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md index ac9d5558b0ba80..1435ed5f9ae1af 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PRINTABLE MARGIN\[#descv\]permite atribuir os valores de varias margens de impressão utilizando os comandos [Print form](print-form.md), [PRINT SELECTION](print-selection.md) e [PRINT RECORD](print-record.md). @@ -59,4 +56,13 @@ O exemplo a seguir lhe permite obter o tamanho do papel: [GET PRINTABLE MARGIN](get-printable-margin.md) [Get printed height](get-printed-height.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 710 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md index 9e0715ea293361..253dbe855703da 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET PROCESS VARIABLE escreve as variáveis processo *dstVar* (*dstVar2*, etc.) do processo de destino cujo número se passa em *processo* utilizando os valores passados em *expr1* (*expr2*, etc.). @@ -98,4 +95,13 @@ Este exemplo escreve a instância das variáveis *v1*, *v2* e *v3* utilizando a [GET PROCESS VARIABLE](get-process-variable.md) [POST OUTSIDE CALL](post-outside-call.md) *Processos* -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 370 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md index 9defc95203da97..8789e747bedbc3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-and-lock.md @@ -68,4 +68,14 @@ Se o comando não é chamado no contexto de uma transação, um erro é gerado. #### Ver também -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 661 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md index 44d8eb7a9c6125..e136d4a455fb1a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-destination.md @@ -253,4 +253,13 @@ Depois de implementar este método de projeto em sua aplicação, pode escrever: [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 396 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md index ab70645f2d86ea..7f1f7c69786190 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-query-limit.md @@ -62,4 +62,13 @@ Ver o segundo exemplo do comando [SET QUERY DESTINATION](set-query-destination.m [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 395 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md index 80a8f6b07d696c..f0f31ab4a2e280 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-real-comparison-level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET REAL COMPARISON LEVEL** retorna o valor epsilon utilizado por 4D para fazer comparações de igualdade de valores e expressões de tipo real. @@ -37,3 +34,13 @@ Utilizando **SET REAL COMPARISON LEVEL** , pode aumentar ou reduzir o valor epsi **IMPORTANTE:** modificar o epsilon só afeta a comparação de igualdade de reais. Não tem efeito nos outros cálculos e visualizações de valores reais. **Nota** O comando **SET REAL COMPARISON LEVEL** não tem efeito em pesquisas e ordenações realizadas com campos do tipo Real. Apenas aplica a linguagem 4D. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 623 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md index a8dc20a0137fe1..d361e82999861a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-recent-fonts.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição The **SET RECENT FONTS** command modifies the list of fonts displayed in the context menu of the "recent fonts". @@ -43,4 +40,13 @@ Then the menu contains: #### Ver também -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1305 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md index 3e29057afd554a..abf460f255a3a6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-cache-priority.md @@ -48,4 +48,13 @@ Em , se quiser estabelecer uma prioridade mais alta para os dados escalares \[Cu [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) -[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) \ No newline at end of file +[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1400 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md index 6329ca8140d0ee..bdb20fd788418e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-table-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SET TABLE TITLES permite ocultar, renomear e reordenar as tabelas de seu banco quando aparecem nos editores padrão de 4D em modo Aplicação (quando os editores se chamam via os comandos da linguagem 4D). Por exemplo, este comando pode modificar a visualização de tabelas e no editor pesquisas em modo Aplicação. @@ -184,4 +181,13 @@ Se quiser remover todos os campos personalizados e nomes de tabela definidos: [GET TABLE TITLES](get-table-titles.md) [Parse formula](parse-formula.md) [SET FIELD TITLES](set-field-titles.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 601 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md index 6147c436de8b16..c16983656c92a2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SET TEXT TO PASTEBOARD limpa a área de transferência e depois coloca uma cópia do texto em *texto* na área de transferência. @@ -39,4 +36,14 @@ Se o texto se coloca corretamente na área de transferência, a variável OK tom #### Ver também [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 523 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md index 968b7125c9e4c2..570c630782d23f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timeout.md @@ -48,4 +48,14 @@ O exemplo a seguir define a porta serial para receber dados. Em seguida, ele def [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) [RECEIVE RECORD](receive-record.md) -[RECEIVE VARIABLE](receive-variable.md) \ No newline at end of file +[RECEIVE VARIABLE](receive-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 268 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md index a13cea38357e60..dcc31e6e3ab51f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-timer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET TIMER permite ativar o evento de formulário On Timer e fixar, para o processo e formulário atual, o número de tics (1 tic = 1/60 de segundo) entre cada evento de formulário On Timer. @@ -47,4 +44,13 @@ Imaginemos que você queira, quando um formulário aparece em tela, que o comput #### Ver também [Form event code](form-event-code.md) -[REDRAW](redraw.md) \ No newline at end of file +[REDRAW](redraw.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 645 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md index c1589b3689f9ce..45034b61af0680 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-update-folder.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SET UPDATE FOLDER** especifica a pasta que contém a atualização da aplicação 4D fusionada atual. Esta informação se armazena na sessão 4D até que se chama o método [RESTART 4D](restart-4d.md). Se sair da aplicação manualmente, esta informação não se conserva. @@ -55,4 +52,14 @@ Você criou uma pasta "MyUpdates" em seu disco, na qual localizou uma nova vers #### Ver também [Get last update log path](get-last-update-log-path.md) -[RESTART 4D](restart-4d.md) \ No newline at end of file +[RESTART 4D](restart-4d.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1291 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md index ccf8ee62dfd514..871e3f8b3ab1db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-alias.md @@ -39,4 +39,14 @@ Seus usuários se administran através de uma tabela personalizada e utilizam a [CHANGE CURRENT USER](change-current-user.md) [Current user](current-user.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1666 | +| Thread-seguro | ✓ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md index 746d7a5443c8c7..dec2032689b485 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-user-properties.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Set user properties permite modificar e atualizar as propriedades de uma conta ativa de usuário existente cujo número de referência se passa no parâmetro *refUsuario* ou para adicionar um novo usuário. @@ -66,4 +63,13 @@ Se você não tiver os acessos de privilégio para chamar Set user properties ou [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 612 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md index e79d9f2b32bf2c..a289755e775857 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-rect.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET WINDOW RECT modifica as coordenadas globais da janela cujo número de referência for passado em janela. Se a janela não existir, o comando não faz nada. @@ -62,4 +59,13 @@ A janela aparece desta forma: [CONVERT COORDINATES](convert-coordinates.md) [DRAG WINDOW](drag-window.md) [GET WINDOW RECT](get-window-rect.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 444 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md index cc5de98ebd71c1..767b1ebc186ba6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/set-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SET WINDOW TITLE muda o título da janela cujo número de referência é passado em *janela* para o texto passado em *titulo* (longitude máxima 80 caracteres). @@ -51,4 +48,13 @@ Enquanto realiza uma entrada de dados em um formulário, você clica em um botã #### Ver também -[Get window title](get-window-title.md) \ No newline at end of file +[Get window title](get-window-title.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 213 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md index ebf3e9ea5c59e1..bd7bfa1fa00969 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/shift-down.md @@ -50,4 +50,13 @@ O método abaixo de objeto para o botão *bUnBotao* realiza diferentes ações d [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 543 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md index e89d5241944ae0..09b74bc3130ac9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SHOW MENU BAR torna visível a barra de menus. @@ -29,4 +26,14 @@ Ver exemplo do comando [HIDE MENU BAR](hide-menu-bar.md). [HIDE MENU BAR](hide-menu-bar.md) [HIDE TOOL BAR](hide-tool-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 431 | +| Thread-seguro | ✗ | +| Proibido no servidor || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md index 691cb444a73d78..449b0d026dea77 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-on-disk.md @@ -47,3 +47,14 @@ Os exemplos abaixo ilustram o funcionamento do comando: #### Variáveis e conjuntos do sistema A variável sistema OK assume o valor 1 se o comando for executado corretamente, do contrário assume o valor 0\. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 922 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md index 10458b40d65454..ebe85fce8e08ba 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição SHOW PROCESS mostra todas as janelas que pertencem a *processo*. Este comando não traz as janelas de *processo* ao primeiro plano. Para fazer isto, utilize o comando [BRING TO FRONT](bring-to-front.md "BRING TO FRONT"). @@ -33,4 +30,13 @@ O exemplo a seguir mostra um processo chamado Clientes, que foi ocultado previam [BRING TO FRONT](bring-to-front.md) [HIDE PROCESS](hide-process.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 325 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md index 35803b629d48be..97353281041a81 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SHOW TOOL BAR** \[#descn\] a visualização das barras de ferramentas personalizadas criadas pelo comando [Open form window](open-form-window.md) para o processo atual\[#/descv\]. @@ -27,4 +24,13 @@ Consulte o exemplo do comando [HIDE TOOL BAR](hide-tool-bar.md). #### Ver também -[HIDE TOOL BAR](hide-tool-bar.md) \ No newline at end of file +[HIDE TOOL BAR](hide-tool-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 433 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md index 4a12b2cb592a92..c9c02199f3d789 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/show-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SHOW WINDOW permite mostrar a janela cujo número foi passado em *janela*. Se for omitido este parâmetro, se mostrará a janela do primeiro plano do processo atual. @@ -28,4 +25,13 @@ Consulte o exemplo do comando [HIDE WINDOW](hide-window.md). #### Ver também -[HIDE WINDOW](hide-window.md) \ No newline at end of file +[HIDE WINDOW](hide-window.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 435 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md index a8a06183c75bfc..363de99785947d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sin.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descrição -Sin retorna o seno do *numero*, onde *numero* é expresso em radianos. - -**Nota:** 4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3,14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). +Sin retorna o seno do *numero*, onde *numero* é expresso em radianos.4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3,14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). #### Ver também [Arctan](arctan.md) [Cos](cos.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 17 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md index bd22f654ac36ca..42289330679bbc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/size-of-array.md @@ -45,4 +45,13 @@ O exemplo a seguir retorna o número de colunas em um array bidimensional: #### Ver também [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 274 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md index 2d16a68d1f917f..eaa847f7a844dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-declaration.md @@ -193,4 +193,13 @@ Este exemplo illustra os resultados dos diferentes tipos de declarações: [Is data file locked](is-data-file-locked.md) [SOAP get info](soap-get-info.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 782 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md index 6e9ea3d3f4f4b3..efe31f2464a23a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-get-info.md @@ -33,4 +33,13 @@ Passe no parâmetro *numInfo* o número do tipo de informação SOAP que deseja #### Ver também [SET DATABASE PARAMETER](set-database-parameter.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 784 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md index 8e4c48d16e6ecf..db93c8cfd8ce90 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-reject-new-requests.md @@ -35,4 +35,13 @@ Se quiser recusar qualquer petição nova a seu servidor de serviços web: #### Ver também [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[WEB Get server info](web-get-server-info.md) \ No newline at end of file +[WEB Get server info](web-get-server-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1636 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md index abff356d5d4a39..56c3fae5de2bfa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-request.md @@ -21,4 +21,13 @@ Este comando pode ser utilizado por razões de segurança no *On Web Authenticat #### Ver também -[SOAP DECLARATION](soap-declaration.md) \ No newline at end of file +[SOAP DECLARATION](soap-declaration.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 783 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md index cd44876630d78d..078446be2bb0f8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/soap-send-fault.md @@ -43,4 +43,13 @@ Regresando ao exemplo do serviço Web “Raiz\_quadrada” da descrição do com #### Ver também [SOAP DECLARATION](soap-declaration.md) -[SOAP get info](soap-get-info.md) \ No newline at end of file +[SOAP get info](soap-get-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 781 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md index 98cd85b70b3f35..9759822ae29882 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Descrição -O comando SORT ARRAY ordena um ou mais arrays em ordem ascendente ou descendente. - -* **Notas:** +O comando SORT ARRAY ordena um ou mais arrays em ordem ascendente ou descendente. Você não pode ordenar arrays *Ponteiro* ou *imagem*. Você pode classificar os elementos de um array bidimensional (i.e., a2DArray{$*vlThisElem*}), mas você não pode classificar o array bidimensional em si (i.e., *a2DArray*). Pode ordenar arrays Objeto. Elementos Null são agrupados e elementos array são ordenados com ordem interna @@ -82,4 +80,13 @@ Você exibe os nomes da tabela *\[Pessoas\]* em uma janela flutuante. Quando voc [Find in sorted array](find-in-sorted-array.md) [MULTI SORT ARRAY](multi-sort-array.md) [ORDER BY](order-by.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 229 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md index 7a6d51f1c97b80..b4bbde50cf5f08 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sort-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SORT LIST ordena a lista cujo número de referência se passa em *lista*. @@ -58,4 +55,13 @@ A lista se verá assim: #### Ver também -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 391 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md index 80e791f72360e9..aa1aaebb3512ba 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SPELL ADD TO USER DICTIONARY** agrega uma ou mais palavras ao dicionário usuário atual. @@ -38,4 +35,13 @@ Adição de nomes próprios ao dicionário de usuário: #### Ver também -[SPELL CHECK TEXT](spell-check-text.md) \ No newline at end of file +[SPELL CHECK TEXT](spell-check-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1214 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md index 045ea3f90ab80a..2cea5f563d6955 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-check-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SPELL CHECK TEXT** verifica o conteúdo do parâmetro *texto* a partir do caracter *posVerif* e devolve a posição da primeira palavra desconhecida encontrada (se houver). @@ -54,4 +51,14 @@ Queremos contar o número possível de erros em um texto: #### Ver também [SPELL ADD TO USER DICTIONARY](spell-add-to-user-dictionary.md) -[SPELL CHECKING](spell-checking.md) \ No newline at end of file +[SPELL CHECKING](spell-checking.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1215 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md index 23faf21550d7aa..2066933c874d59 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-checking.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SPELL CHECKING** ativa a revisão ortográfica de campo ou variável que tem o foco no formulário em tela. O objeto verificado deve ser de tipo Alfa ou Texto. @@ -35,4 +32,13 @@ A verificação ortográfica começa com a primeira palavra de campo ou variáve #### Ver também [SPELL CHECK TEXT](spell-check-text.md) -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 900 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md index bb55286b4bb0f0..337d5a87dcf866 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SPELL Get current dictionary** devolve o número de ID do dicionário que está sendo utilizado. @@ -35,4 +32,13 @@ Queremos mostrar a linguagem do dicionário atual: #### Ver também -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1205 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md index 83656fdb66c0ae..06a09bbee95c69 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **SPELL GET DICTIONARY LIST** devolve nos arrays *lingID*, *lingArquivos* e *lingNoms*, os IDs, os nomes de arquivos e os nomes dos linguagens correspondentes aos arquivos de dicionário Hunspell instalados no equipo. @@ -53,4 +50,13 @@ Você coloca "fr-classic+reform1990.aff" e "fr-classic+reform1990.dic" como tamb #### Ver também -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1204 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md index 5a0b63497f1cfd..240ec9ab1d1aed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SPELL SET CURRENT DICTIONARYsubstitui o dicionário atual pelo especificado no parâmetro *dicionario*. O dicionário atual é utilizado para a correção ortográfica integrada de 4D (para maior informação, consulte o *Manual de Desenho* de 4D), assim como também de 4D Write. A modificação do dicionário atual repercute em todos os processos do banco para a sessão, assim como nas áreas 4D Pro. @@ -51,4 +48,14 @@ Loading of the "fr-classic" dictionary found in the Hunspell folder: [SPELL CHECKING](spell-checking.md) [SPELL Get current dictionary](spell-get-current-dictionary.md) -[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) \ No newline at end of file +[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 904 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md index ab9734b9a63c1b..ddad055b71074a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/split-string.md @@ -56,4 +56,13 @@ O parâmetro *separador* pode ser uma string de múltiplos caracteres: #### Ver também -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1554 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md index f07d6feca6d4a2..c5e34ea7700ab8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-cancel-load.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL CANCEL LOAD finaliza a solicitação *SELECT* atual e inicializa os parâmetros. @@ -53,4 +50,14 @@ Se o comando for executado corretamente, a variável sistema OK retorna 1\. Do c #### Ver também [SQL LOAD RECORD](sql-load-record.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 824 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md index 7715d526409978..8f232f0a9c7226 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-end-selection.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL End selection é utiliza para determinar se os limites do resultado obtido foram alcançado. @@ -40,3 +37,13 @@ O código abaixo conecta-se a uma fonte de dados externos (Oracle) utilizando os ``` Este código devolverá na variável 4D *vNome* os nomes (ename) armazenados na tabela emp. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 821 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md index d6eab959dd4f01..8916ce361ae396 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute-script.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL EXECUTE SCRIPT permite executar uma série de instruções SQL localizadas no arquivo de script designado por *rotaScript*. @@ -61,3 +58,14 @@ Se o script for executado corretamente (nenhum erro ocorre), a variável Sistema \* Se *açãoErro* é SQL On erro continue (valor 3), a variável OK sempre assume o valor 1\. **Nota**: Se utilizar este comando para executar ações consumidoras de memória tales como importação massiva de dados, pode considerar chamar ao comando SQL *ALTER DATABASE* para desativar temporáriamente as opções SQL. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1089 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md index af0c35e67afed1..0f2d75640466be 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-execute.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL EXECUTE é utilizado para executar um comando SQL e associar o resultado a objetos 4D (arrays, variáveis ou campos). @@ -159,4 +156,14 @@ Se o comando for executado corretamente, a variável sistema OK retorna 1, do co #### Ver também -[SQL LOAD RECORD](sql-load-record.md) \ No newline at end of file +[SQL LOAD RECORD](sql-load-record.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 820 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md index eed41d1c8dccd2..e7825954a8a394 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-database.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL EXPORT DATABASE exporta ao formato SQL todos os registros de todas as tabelas do banco. Em SQL, esta operação de exportação global é chamada "Dump". @@ -56,4 +53,14 @@ Se a exportação for realizada corretamente, a variável OK assume o valor 1\. #### Ver também -[SQL EXPORT SELECTION](sql-export-selection.md) \ No newline at end of file +[SQL EXPORT SELECTION](sql-export-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1065 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md index 3a907ec7d5cbb3..d497641d231c67 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-export-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL EXPORT SELECTION exporta ao formato SQL os registros da seleção atual da tabela 4D especificada pelo parâmetro *Tabela*. @@ -38,4 +35,14 @@ Se a exportação for realizada corretamente, a variável OK assume o valor 1\. #### Ver também -[SQL EXPORT DATABASE](sql-export-database.md) \ No newline at end of file +[SQL EXPORT DATABASE](sql-export-database.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1064 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md index 2ea4b3d8e79dab..76dda03dee01fe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-current-data-source.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL Get current data source retorna o nome da fonte de dados atual da aplicação. A fonte de dados atual recebe as pesquisas SQL executadas dentro das estruturas **Begin SQL/End SQL**. @@ -30,4 +27,13 @@ Este comando permite verificar a fonte de dados atual, geralmente antes de execu [End SQL](end-sql.md) [SQL GET DATA SOURCE LIST](sql-get-data-source-list.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 990 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md index e459e9b3563945..a7ddd73e8927fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-data-source-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL GET DATA SOURCE LIST retorna nos arrays *arrayNomesFontes* e *arrayDrivers*, os nomes e drivers das fontes de dados de tipo *tipoFonte* definidas no administrador ODBC do Sistema operativo. @@ -56,4 +53,14 @@ Se o comando for executado corretamente, a variável Sistema OK assume o valor 1 [SQL Get current data source](sql-get-current-data-source.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 989 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md index 7d36db335a2bfd..9e881bb5025cde 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-last-error.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL GET LAST ERROR retorna a informação relacionada com o último erro encontrado durante a execução de um comando ODBC. O erro pode vir da aplicação 4D, da rede, da fonte ODBC, etc. @@ -34,4 +31,13 @@ Os dos últimos parâmetros apenas são preenchidos quando o erro vem da fonte O #### Ver também [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 825 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md index 92fbcfaf3e342c..ce1f855dcb6177 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL GET OPTION retorna o *valor* atual da opção passada no parâmetro *opçao*. @@ -29,4 +26,14 @@ Se o comando for executado corretamente, a variável Sistema OK assume o valor 1 #### Ver também -[SQL SET OPTION](sql-set-option.md) \ No newline at end of file +[SQL SET OPTION](sql-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 819 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md index e52170f448b0cd..cfda303354256a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-load-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL LOAD RECORD recupera a 4D um ou mais registros da fonte de dados aberta na conexão atual. @@ -34,4 +31,14 @@ Se o comando tiver sido executado corretamente, a variável Sistema OK retorna 1 #### Ver também [SQL CANCEL LOAD](sql-cancel-load.md) -[SQL EXECUTE](sql-execute.md) \ No newline at end of file +[SQL EXECUTE](sql-execute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 822 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md index e8fe2921433d39..b862d8d8cca0ed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL LOGIN permite que se conecte a uma fonte de dados SQL especificada no parâmetro *entradaDados* . Ele estabelece o objetivo das pesquisas SQL executadas posteriormente no processo atual: @@ -204,4 +201,14 @@ Se a conexão for exitosa, a variável sistema OK assume o valor 1, do contrári [Begin SQL](begin-sql.md) [End SQL](end-sql.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 817 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md index eb50890cc5e34d..b8ede269b98c89 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-logout.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL LOGOUT fecha a conexão com uma fonte ODBC aberta no processo atual (se aplicado). Se não há conexão ODBC aberta, o comando não faz nada. @@ -25,4 +22,14 @@ Se o logout é feito corretamente, a variável Sistema OK assume o valor 1; do c #### Ver também -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 872 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md index 386fd43c4358af..7fe7c9c6ef1ee9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL SET OPTION é utilizado para modificar o *valor* da opção passada em *opçao*. @@ -47,4 +44,14 @@ Se o comando for executado corretamente, a variável Sistema OK retorna 1\. Do c #### Ver também -[SQL GET OPTION](sql-get-option.md) \ No newline at end of file +[SQL GET OPTION](sql-get-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 818 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md index beb21d8ec4d7be..8c0747a7a947dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sql-set-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SQL SET PARAMETER permite o uso do valor de uma variável, array ou campo 4D nas pedidos SQL. @@ -77,3 +74,14 @@ O mesmo exemplo que o anterior, mas utilizando o comando SQL SET PARAMETER : #### Variáveis e conjuntos do sistema Se o comando tiver sido executado corretamente, a variável Sistema OK retorna 1\. Do contrário, retorna 0. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 823 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md index 267b3687f056b6..1703948c42f811 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/square-root.md @@ -41,3 +41,13 @@ O método a seguir retorna a hipotenusa do triângulo cujos dois lados são pass ``` Por exemplo, Hipotenusa (4;3) devolve 5. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 539 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md index f54240823c3db7..f42f73b05d6ca6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-compute-expressions.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST COMPUTE EXPRESSIONS** atualiza as expressões dinâmicas 4D encontradas no campo ou variável com multi-estilo ou 4D Write Pro definido pelo parâmetro *objeto*. @@ -68,4 +65,14 @@ Você deseja atualizar as referências incluídas na seleção de texto: #### Ver também [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1285 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md index 37c4d7c8f26018..e85f4ad7703a35 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-freeze-expressions.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST FREEZE EXPRESSIONS** "congela" o conteúdo das expressões encontradas em texto mult-estilo ou no campo ou variável 4D Write Pro com estilo definido pelo parâmetro *objeto*. Esta ação converte expressões dinâmicas em texto estático ou (apenas para áreas 4D Write Pro) converte imagens e remove as referências associadas ao *objeto*. @@ -68,4 +65,13 @@ Você quer inserir a hora atual ao início do texto e logo congelar ela antes de #### Ver também [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1282 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md index 9503664c98e051..affd1e4e0d67a7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ST GET ATTRIBUTES é utilizado para recuperar o valor atual de um atributo de estilo em uma selección de texto do objeto de formulário designado por *objeto*. @@ -105,4 +102,14 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv #### Ver também -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1094 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md index fa65ab741e2fff..57877bff91c9a9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-content-type.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST Get content type** devolve o tipo de conteúdo encontrado no campo ou a variável de texto multi estilo designada pelo parâmetro *objeto* . @@ -102,3 +99,14 @@ Você deseja mostrar os comandos de um menu contextual baseado no tipo de conte        ...     End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1286 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md index e64b3afef571f1..4764fbe5ae5579 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST Get expression** devolve a primeira expressão que se encontra na seleção atual do campo ou da variável de texto com estilo designada pelo parâmetro *objeto*. @@ -94,4 +91,14 @@ Você quer executar um método 4D quando é feito clique em um link de um usuár #### Ver também -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1287 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md index c4fa001e72dff5..9e852f2d578568 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST GET OPTIONS** obtém o valor atual de uma ou várias opções de funcionamento do campo ou da variável de texto com estilo designada pelo parâmetro *objeto*. @@ -36,4 +33,13 @@ Passe o código da opção a ler no parâmetro *opcao*. O comando devolve em *va #### Ver também -[ST SET OPTIONS](st-set-options.md) \ No newline at end of file +[ST SET OPTIONS](st-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1290 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md index cfbf127ae02ac6..6f845a5c54fa77 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-plain-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando *OBJECT Get plain text* remove as etiquetas de estilo da variável ou campo de texto designado pelos parâmetros *\** e *objeto* e devolve o texto plano. @@ -110,4 +107,14 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv [ST Get text](st-get-text.md) [ST SET PLAIN TEXT](st-set-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1092 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md index 8ca30ff209a50d..6967ee77a2ad22 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando *OBJECT Get styled text* devolve o texto com estilo encontrado no campo ou variável de texto designado pelo parâmetro *objeto*. @@ -63,4 +60,14 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv [ST Get plain text](st-get-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1116 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md index f8beed550be39b..768c9ba48be988 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-get-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST GET URL** devolve a etiqueta e o endereço da primeira URL detectada no campo ou a variável de texto multi estilo designado pelo parâmetro *objeto*. @@ -71,4 +68,13 @@ Quando há um evento de duplo clique, se comprova que não existe em realidade u #### Ver também -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1288 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md index a73e9c84b51c2a..9d4f7b1d9b7a8c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST INSERT EXPRESSION** insere uma referência a expressão no campo ou a variável de texto multi estilo designada pelo parâmetro *objeto*. @@ -90,4 +87,14 @@ Deseja substituir o texto selecionado com o resultado de um método projeto: [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) [ST Get expression](st-get-expression.md) -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1281 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md index 84781c42cdf375..cffde9f112e1fd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-insert-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST INSERT URL** insere um link URL no campo ou a variável de texto com estilo designada pelo parâmetro *objeto* . @@ -64,4 +61,14 @@ Você deseja inserir um link ao web site de 4D para substituir o texto seleciona #### Ver também [ST GET URL](st-get-url.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1280 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md index cc7fd2b9fa0e46..d11b01283d77a2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando ST SET ATTRIBUTES permite modificar um ou mais atributos de estilo no(s) objeto(s) de formulário designado(s) por *objeto*. @@ -105,4 +102,14 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv #### Ver também [FONT LIST](font-list.md) -[ST GET ATTRIBUTES](st-get-attributes.md) \ No newline at end of file +[ST GET ATTRIBUTES](st-get-attributes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1093 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md index 9a68dae5265557..56a25d802b021d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **ST SET OPTIONS** modifica uma ou várias opções de funcionamento do campo ou da variável de texto com estilo designada pelo parâmetro *objeto* . @@ -63,4 +60,13 @@ O seguinte código permite mudar o modo de visualização da área: #### Ver também -[ST GET OPTIONS](st-get-options.md) \ No newline at end of file +[ST GET OPTIONS](st-get-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1289 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md index 6d5922d1fd0e06..2628bfc32420ac 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-plain-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando [ST SET PLAIN TEXT](st-set-plain-text.md) insere o texto passado no parâmetro *novTexto* no campo ou a variável de texto com estilo designado pelo parâmetro *objeto* . Este comando aplica unicamente ao texto plano do parâmetro *objeto*, sem modificar as possíveis etiquetas de estilo que contenha. @@ -94,4 +91,14 @@ No caso de um erro, a variável não muda. Quando se produz um erro em uma vari #### Ver também [ST Get plain text](st-get-plain-text.md) -[ST SET TEXT](st-set-text.md) \ No newline at end of file +[ST SET TEXT](st-set-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1136 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md index 47deac3a78398d..3d73bfedf2c7e1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/st-set-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando OBJECT SET STYLED TEXT insere o texto passado no parâmetro *novoTexto* no campo ou variável de texto com estilo designado pelo parâmetro *objeto*. Este comando só é aplicado ao texto sem formato do parâmetro de *objeto*, sem modificar as etiquetas de estilo que contenha. Se pode utilizar para modificar por programação, texto com estilo na tela. @@ -91,4 +88,14 @@ Consulte o exemplo do comando [ST SET PLAIN TEXT](st-set-plain-text.md). [ST Get plain text](st-get-plain-text.md) [ST Get text](st-get-text.md) -[ST SET PLAIN TEXT](st-set-plain-text.md) \ No newline at end of file +[ST SET PLAIN TEXT](st-set-plain-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1115 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md index ca9e916bdd0295..b59994bc52ea68 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-monitoring-activity.md @@ -91,4 +91,13 @@ Se quiser iniciar/parar o monitoramento e revisão de dados 4D e atividades de d #### Ver também [Monitored activity](monitored-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1712 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md index 1f251f871e3bf3..1a6168f168e414 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando START SQL SERVER lança o servidor SQL integrado da aplicação 4D na qual é executado. Quando for lançado, o servidor SQL pode responder às pesquisas SQL externas. @@ -27,4 +24,14 @@ Se o servidor SQL tiver sido lançado corretamente, a variável Sistema OK assum #### Ver também -[STOP SQL SERVER](stop-sql-server.md) \ No newline at end of file +[STOP SQL SERVER](stop-sql-server.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 962 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md index 2862c45ca0aed1..6562e2a5d25790 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/start-transaction.md @@ -24,4 +24,13 @@ A partir da versão 11 de 4D, pode aninhar várias transações (subtransações [In transaction](in-transaction.md) [Transaction level](transaction-level.md) *Usar Transações* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 239 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md index 81eb25efd37b72..f65a7be8d5d335 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/std-deviation.md @@ -57,4 +57,13 @@ Este exemplo obtém o desvio padrão de uma série de valores localizados num ar [Average](average.md) [Sum](sum.md) [Sum squares](sum-squares.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 26 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md index 071813450f919e..01a34d31bcac68 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-monitoring-activity.md @@ -25,4 +25,13 @@ Ver exemplo para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**. #### Ver também [Monitored activity](monitored-activity.md) -[START MONITORING ACTIVITY](start-monitoring-activity.md) \ No newline at end of file +[START MONITORING ACTIVITY](start-monitoring-activity.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1721 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md index 217979a697d0b6..3107de1137deed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/stop-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando STOP SQL SERVER pára o servidor SQL integrado da aplicação 4D na qual foi executado. @@ -25,4 +22,13 @@ Se o servidor SQL foi lançado, todas as conexões SQL são interrompidas e o se #### Ver também -[START SQL SERVER](start-sql-server.md) \ No newline at end of file +[START SQL SERVER](start-sql-server.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 963 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md index bde0f80df5c23b..9135113470af4f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/storage.md @@ -81,4 +81,13 @@ Este exemplo mostra uma forma padrão de estabelecer valores de **Armazenamento* #### Ver também -*Objetos compartidos e Coleções compartidas* \ No newline at end of file +*Objetos compartidos e Coleções compartidas* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1525 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md index 021cd2204a3ec6..91f8e29b073a46 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string-list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando STRING LIST TO ARRAY preenche o array *cadeias* com: @@ -45,4 +42,14 @@ Se o recurso for encontrado, a variável sistema OK assume o valor 1, do contrá [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[Get text resource](get-text-resource.md) \ No newline at end of file +[Get text resource](get-text-resource.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 511 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md index a438c2d41c45ad..3e75b867cc38b7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/string.md @@ -173,4 +173,13 @@ Se a expressão for avaliada como Null, o comando devolve a string "null". Isto [Date](date.md) [Num](num.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 10 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md index 86bfca487706ab..1d73073736dc47 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/structure-file.md @@ -72,4 +72,13 @@ O exemplo a seguir pode ser usado para descobrir se o método é chamado de um c [Application file](application-file.md) [COMPONENT LIST](component-list.md) -[Data file](data-file.md) \ No newline at end of file +[Data file](data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 489 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md index 9754774a1a294f..3d62309f82d612 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/substring.md @@ -65,4 +65,13 @@ O seguinte método de projeto adiciona os parágrafos que são encontrados no te #### Ver também -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 12 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md index 55898be4aa280e..14e65ef5d9d6a1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/subtotal.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Subtotal devolve o subtotal de valores para o nível de quebra atual ou anterior. Subtotal só funciona quando uma seleção ordenada é impressa com [PRINT SELECTION](print-selection.md) ou utilizando Imprimir no ambiente Desenho. O parâmetro *valores* deve ser de tipo real, inteiro, ou inteiro longo. Você deve atribuir o resultado da função Subtotal a uma variável localizada na área de quebra do formulário. @@ -63,4 +60,13 @@ A função Subtotal é necessária para mostrar valores em um formulário. [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level ](level.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 97 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md index 0da077e0bab574..8c680caf658ced 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum-squares.md @@ -57,4 +57,13 @@ Este exemplo permite obter a soma de quadrados dos valores localizados num array [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 28 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md index 2e85d51387dcbe..0f55703adc5575 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/sum.md @@ -72,4 +72,14 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri [Min](min.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md index 18e19e77090a6f..58a0a6a3cca5d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/suspend-transaction.md @@ -22,4 +22,13 @@ Para saber mais, consulte *Suspender as transações*. [Active transaction](active-transaction.md) [RESUME TRANSACTION](resume-transaction.md) -*Suspender as transações* \ No newline at end of file +*Suspender as transações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1385 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md index d8f3a2787f5c9c..9903dc656da28b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-export-to-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Descrição -O comando SVG EXPORT TO PICTURE permite guardar na variável ou campo imagem indicado pelo parâmetro *varImag* uma imagem em formato SVG contida em uma árvore XML. - -**Nota**: Para maior informação sobre o formato SVG, consulte a seção *Introdução aos comandos de XML Utilities* +O comando SVG EXPORT TO PICTURE permite guardar na variável ou campo imagem indicado pelo parâmetro *varImag* uma imagem em formato SVG contida em uma árvore XML. Passe em *refElemento* a referência do elemento XML raiz que contenha a imagem SVG. @@ -54,4 +52,13 @@ O exemplo abaixo pode ser utilizado para mostrar “Hello World” em uma imagem #### Ver também [DOM EXPORT TO FILE](dom-export-to-file.md) -[DOM EXPORT TO VAR](dom-export-to-var.md) \ No newline at end of file +[DOM EXPORT TO VAR](dom-export-to-var.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1017 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md index c38664fcaed9bb..a83460b3c34435 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SVG Find element ID by coordinates retorna a identificação ("id" ou atributo "xml:id") do elemento XML encontrado na localização definida pelas coordenadas (x,y) na imagem SVG designada pelo parâmetro *objetoImagem*. Este comando pode ser utilizado particularmente para criar interfaces gráficas interativas utilizando objetos SVG. @@ -53,4 +50,14 @@ Se *objetoImagem* não contiver uma imagem SVG válida, o comando retorna uma ca #### Ver também -[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) \ No newline at end of file +[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1054 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md index acc4cfdf35b504..afca5f33737db8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SVG Find element IDs by rect preenche o array texto arrIDs com os IDs (atributo "id" ou "xml:id") dos elementos XML cujo retângulo circundante está em intersecção com o retângulo de seleção na localização definida pelos parâmetros *x* e *y*. @@ -43,4 +40,13 @@ Todos os elementos cujo retângulo circundante está em intersecção com o ret #### Ver também -[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) \ No newline at end of file +[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1109 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md index ce341ad3f43147..e7acd1510e32c2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-get-attribute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SVG GET ATTRIBUTE é utilizado para obter o valor atual do atributo *nomAtrib* em um objeto ou uma imagem SVG. @@ -44,4 +41,13 @@ Para obter mais informação acerca dos atributos SVG, consulte a descripção d #### Ver também -[SVG SET ATTRIBUTE](svg-set-attribute.md) \ No newline at end of file +[SVG SET ATTRIBUTE](svg-set-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1056 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md index e20172f6ef0f24..697796d20fd02b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-set-attribute.md @@ -93,4 +93,14 @@ Modificação do conteúdo de um elemento de tipo texto: #### Ver também -[SVG GET ATTRIBUTE](svg-get-attribute.md) \ No newline at end of file +[SVG GET ATTRIBUTE](svg-get-attribute.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1055 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md index 65aff47a6ad76a..5da44fb9045d18 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/svg-show-element.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando SVG SHOW ELEMENT move o documento SVG *objetoImagem* para mostrar o elemento cujo atributo "id" é especificado pelo parâmetro *id*. @@ -30,3 +27,14 @@ O comando move o documento SVG para que todo o objeto, cujos limites estão defi Este comando apenas tem efeito em modo de visualização "top left" (com barras de rolagem). Se este comando não for executado no contexto de um formulário ou se for passado um *objetoImagem* inválido, a variável OK toma o valor 0\. Se o comando for executado corretamente, toma o valor 1. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1108 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md index c5ec39cc8c19d0..64d8dc9e927749 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-folder.md @@ -48,4 +48,13 @@ Se omitido o parâmetro *tipo*, a função devolverá a rota à pasta sistema at #### Ver também [Get 4D folder](get-4d-folder.md) -[Temporary folder](temporary-folder.md) \ No newline at end of file +[Temporary folder](temporary-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 487 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md index 53b8394db2c2f5..52faa8be4a3f58 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/system-info.md @@ -144,4 +144,13 @@ Windows マシン上で以下のコードを実行した場合: [Application info](application-info.md) [Is macOS](is-macos.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1571 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md index 8f97ed28de604a..539c77f58b64d4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-fragmentation.md @@ -40,4 +40,13 @@ Este método lhe permite requisitar a compactação do arquivo de dados no caso #### Ver também -[Compact data file](compact-data-file.md) \ No newline at end of file +[Compact data file](compact-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1127 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md index 08909e21b5e512..814497366efc7e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table-name.md @@ -37,4 +37,13 @@ O seguinte é um exemplo de um método genérico que mostra os registros de uma [Last table number](last-table-number.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 256 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md index 8f24c103ddc9df..faae2259d20fe1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/table.md @@ -59,4 +59,13 @@ Este exemplo, a variável *numTabela* é igual ao número da tabela a qual perte [Field](field.md) [Last table number](last-table-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 252 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md index 44423e624b9902..7e98279b50a0e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tan.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Descrição -Tan retorna a tangente do *numero*, onde *numero* é expresso em radianos. - -**Nota:** 4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3.14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). +Tan retorna a tangente do *numero*, onde *numero* é expresso em radianos.4D oferece as constantes pré-definidas Pi, Degree, e Radian. Pi retorna o número Pi (3.14159...), Degree retorna o valor em radianos de um grau (0.01745...), e Radian retorna o valor em graus de um radiano (57.29577...). #### Ver também [Arctan](arctan.md) [Cos](cos.md) -[Sin](sin.md) \ No newline at end of file +[Sin](sin.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 19 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md index ec0931d5695784..57ce5e29947c98 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/temporary-folder.md @@ -23,4 +23,13 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m #### Ver também -[System folder](system-folder.md) \ No newline at end of file +[System folder](system-folder.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 486 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md index 1c129b99dfc53b..2244eafbb19f8f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-path-name.md @@ -49,4 +49,13 @@ O seguinte exemplo prova a presença do documento “Diário” na pasta da base [Create document](create-document.md) [CREATE FOLDER](create-folder.md) [Object to path](object-to-path.md) -[Path to object ](path-to-object.md) \ No newline at end of file +[Path to object ](path-to-object.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 476 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md index e121c8169554d6..06908a67f0a887 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/test-semaphore.md @@ -41,4 +41,13 @@ O exemplo a seguir lhe permite conhecer o estado de um processo (em nosso caso, #### Ver também [CLEAR SEMAPHORE](clear-semaphore.md) -[Semaphore](semaphore.md) \ No newline at end of file +[Semaphore](semaphore.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 652 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md index 7dd28997a2f861..2920c53a6140d1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-array.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **TEXT TO ARRAY** transforma uma variável texto em um array texto. El texto original (com estilo ou não) se divide e cada parte se converte em um elemento do array *arrText* que é devolvido pelo comando. Este comando se pode utilizar por exemplo para encher as páginas ou as colunas com texto de um tamanho fixo. @@ -110,4 +107,13 @@ Deve imprimir em uma área de 400 pixeles de largo um texto de um máximo de 80 [Split string](split-string.md) [ST Get plain text](st-get-plain-text.md) -[ST Get text](st-get-text.md) \ No newline at end of file +[ST Get text](st-get-text.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1149 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md index 0083bae6db45a1..9484f87a493e6b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-blob.md @@ -105,4 +105,13 @@ Depois de executar este código: [CONVERT FROM TEXT](convert-from-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[REAL TO BLOB](real-to-blob.md) \ No newline at end of file +[REAL TO BLOB](real-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 554 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md index 4ee4ff48a34d6c..04cbd2638f972d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/text-to-document.md @@ -81,4 +81,13 @@ Exemplo que permite ao usuário indicar a localização do arquivo a criar: #### Ver também [Document to text](document-to-text.md) -*Documentos Sistema* \ No newline at end of file +*Documentos Sistema* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1237 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md index a81c116670cafa..a52c39757f6fd4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/throw.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **throw** cria um erro que será lançado inmediatamente ou quando o método que o chamar o devolva a seu chamador (modo diferido). @@ -107,4 +104,13 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi [ASSERT](assert.md) [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1805 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md index 24a5ecce9c54d9..7e8fe67f6d6581 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tickcount.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Descrição -Tickcount retorna o número de tics (1 tic = 1 / 60 avos de um segundo) passados desde que se iniciou a máquina. - -**Nota:** Tickcount retorna um valor de tipo Inteiro longo. +Tickcount retorna o número de tics (1 tic = 1 / 60 avos de um segundo) passados desde que se iniciou a máquina.Tickcount retorna um valor de tipo Inteiro longo. #### Exemplo @@ -26,4 +24,13 @@ Ver o exemplo do comando [Milliseconds](milliseconds.md "Milliseconds"). #### Ver também [Current time](current-time.md) -[Milliseconds](milliseconds.md) \ No newline at end of file +[Milliseconds](milliseconds.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 458 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md index 0f368099ecb03b..3f2ff4218d368d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time-string.md @@ -35,4 +35,13 @@ O exemplo a seguir mostra uma caixa de alerta com a mensagem, “46 800 segundos #### Ver também [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 180 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md index 1485f9e13c8f57..a0c17efa6f527c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/time.md @@ -50,4 +50,13 @@ Pode expressar todo valor numérico como uma hora: [Bool](bool.md) [String](string.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 179 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md index 2df89708ab31bb..1ee9a91515a5e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/timestamp.md @@ -41,4 +41,13 @@ Resultado: [Milliseconds](milliseconds.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1445 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md index f60bb855486113..f47a884c198cbc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/tool-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Tool bar height devolve a altura da barra de ferramentas visível atualmente, expressada em píxels. Dependendo do contexto, pode ser a barra de ferramentas de modo Desenho 4D, ou uma barra de ferramentas personalizada criada com [Open form window](open-form-window.md) (a barra de ferramentas de modo Desenho se oculta automaticamente quando é mostrada uma barra de ferramentas personalizada). @@ -26,4 +23,13 @@ Se não se mostrar nenhuma barra de ferramentas, o comando devolve 0. [HIDE TOOL BAR](hide-tool-bar.md) [Menu bar height](menu-bar-height.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1016 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md index 1eb9c24cbc098b..14c86ee446bc02 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trace.md @@ -59,3 +59,13 @@ O método de projeto DEBUG é listado aqui:     End if  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 157 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md index d6d9ece390a4a6..c6b4303b6b1d0f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transaction-level.md @@ -21,4 +21,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Usar Transações* \ No newline at end of file +*Usar Transações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 961 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md index 4371004c49a707..b5b814c49bfd34 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/transform-picture.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Descrição -O comando TRANSFORM PICTURE permite aplicar uma transformação de tipo *operador* à imagem passada no parâmetro *imagem*. - -**Nota:** este comando estende as funcionalidades oferecidas pelos operadores convencionais de transformação de imagens (+/, etc., ver a seção ). Estes operadores permanecem totalmente utilizáveis em 4D. +O comando TRANSFORM PICTURE permite aplicar uma transformação de tipo *operador* à imagem passada no parâmetro *imagem*.este comando estende as funcionalidades oferecidas pelos operadores convencionais de transformação de imagens (+/, etc., ver a seção ). Estes operadores permanecem totalmente utilizáveis em 4D. A *imagem* fonte se modifica diretamente depois da execução do comando. Note que exceto por “Crop” e “Fade to grey scale,” as operações não são destrutivas e podem ser desfeitas realizando a operação contrária o via a operação “Reset”. Por exemplo, uma imagem reduzida a 1% retomará seu tamanho original sem alterações é aumentado 100 vezes. As transformações não modificam o tipo original da imagem: por exemplo, uma imagem vetorial permanecerá vetorial depois de sua transformação. @@ -73,4 +71,13 @@ Este é um exemplo de corte de uma imagem (a imagem se mostra no formulário com #### Ver também -[COMBINE PICTURES](combine-pictures.md) \ No newline at end of file +[COMBINE PICTURES](combine-pictures.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 988 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md index 55e63b8585d219..e44ff73795f0e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-event.md @@ -53,4 +53,13 @@ Utilize o comando **Trigger event** para estruturar seus triggers desta maneira: [In transaction](in-transaction.md) [Trigger level](trigger-level.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 369 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md index e3690c6c9aac35..d666b06cd80a52 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-level.md @@ -23,4 +23,13 @@ Para maior informação sobre níveis de execução, consulte o tema triggers em [Trigger event](trigger-event.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 398 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md index 7b05528b88537b..79a657f026ff29 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trigger-properties.md @@ -38,4 +38,13 @@ O número de tabela e de registro para o registro relacionado pelo evento de ban *Sobre Números de Registros* [Trigger event](trigger-event.md) [Trigger level](trigger-level.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 399 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md index 7a44d7422173cc..8054961aeaaef4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/true.md @@ -28,4 +28,13 @@ O exemplo a seguir atribui a variável *vbOpcoes* a Verdadeiro : #### Ver também [False](false.md) -[Not](not.md) \ No newline at end of file +[Not](not.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 214 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md index 741db1e425e195..f2207d1e3197bc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/trunc.md @@ -34,4 +34,13 @@ O exemplo a seguir ilustra a maneira como **Trunc** funciona com diferentes argu #### Ver também -[Round](round.md) \ No newline at end of file +[Round](round.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 95 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md index f662fb936e1bcb..db9278d6ee0376 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/truncate-table.md @@ -37,4 +37,16 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o #### Ver também -[DELETE SELECTION](delete-selection.md) \ No newline at end of file +[DELETE SELECTION](delete-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1051 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md index e315b94b8fedb4..2740a53671b56c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/type.md @@ -140,4 +140,13 @@ Ver exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md [Is a variable](is-a-variable.md) [Undefined](undefined.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 295 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md index 2aff16709c1baa..d1f9f582ade0b8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/undefined.md @@ -61,4 +61,13 @@ Abaixo os diferentes resultados do comando [Undefined](undefined.md) assim como #### Ver também -[CLEAR VARIABLE](clear-variable.md) \ No newline at end of file +[CLEAR VARIABLE](clear-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 82 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md index eaacf60a14e53e..82892b789e0da7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/union.md @@ -50,4 +50,13 @@ Este exemplo adiciona registros ao conjunto de melhores clientes. Os registros s #### Ver também [DIFFERENCE](difference.md) -[INTERSECTION](intersection.md) \ No newline at end of file +[INTERSECTION](intersection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 120 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md index d508a9443a562a..7f994e638729e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unload-record.md @@ -28,4 +28,13 @@ Se um registro tiver uma quantidade importante de dados, de campos de imagem, ou #### Ver também [LOAD RECORD](load-record.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 212 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md index 02c97aa8571781..729b86d80f2762 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/unregister-client.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando UNREGISTER CLIENT cancela o registro de uma máquina 4D Client. O cliente deverá ter sido registrado pelo comando [REGISTER CLIENT](register-client.md). @@ -35,4 +32,14 @@ Se o registro de um cliente é cancelado corretamente, a variável do sistema OK [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[REGISTER CLIENT](register-client.md) \ No newline at end of file +[REGISTER CLIENT](register-client.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 649 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md index c89d3dbc9e336c..8d3f5f8923cc58 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/uppercase.md @@ -36,4 +36,13 @@ Ver o exemplo para [Lowercase](lowercase.md "Lowercase"). #### Ver também -[Lowercase](lowercase.md) \ No newline at end of file +[Lowercase](lowercase.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 13 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md index ea5cf6a50217cf..673d0985efa055 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-character-set.md @@ -51,4 +51,14 @@ A variável de sistema OK é definida como 1 se o mapa é carregado corretamente [IMPORT TEXT](import-text.md) [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 205 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md index d4bba7e1b14009..83db91b745539e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-named-selection.md @@ -28,4 +28,15 @@ Lembre que uma seleção temporária é uma representação de uma seleção de [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[CUT NAMED SELECTION](cut-named-selection.md) \ No newline at end of file +[CUT NAMED SELECTION](cut-named-selection.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 332 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md index 2e7cf71ed2a94a..41dc5ab3775ad2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/use-set.md @@ -34,4 +34,15 @@ O seguinte exemplo utiliza [LOAD SET](load-set.md) para carregar um conjunto de #### Ver também [CLEAR SET](clear-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 118 | +| Thread-seguro | ✓ | +| Modificar o registro atual || +| Modificar a seleção atual || + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md index 037ed0aef514f8..79504be86d9c8f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/user-in-group.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição User in group retorna TRUE se *user* estlver em *group*. @@ -44,4 +41,13 @@ O exemplo abaixo procura faturas específicas. Se o usuário atual estiver no gr #### Ver também -[Current user](current-user.md) \ No newline at end of file +[Current user](current-user.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 338 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md index 9cca0de1090cf1..8444576b869ccc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/users-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição **Nota de compatibilidade*: este comando só funciona em bancos de dados binários. Sempre devolve um BLOB vazio em projetos.* @@ -33,4 +30,14 @@ Este conceito permite conservar um backup de usuários no banco e implementar um #### Ver também -[BLOB TO USERS](blob-to-users.md) \ No newline at end of file +[BLOB TO USERS](blob-to-users.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 849 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md index 763ca7a77f0a58..1c390c61bbbc75 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-password.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição Validate password retorna True se a cadeia passada em *senha* for a senha para a conta de usuário cujo número de referência é passado em *refUsuario*. @@ -61,4 +58,13 @@ No [On 4D Mobile Authentication database method](on-4d-mobile-authentication-dat [GET USER PROPERTIES](get-user-properties.md) [Set user properties](set-user-properties.md) -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 638 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md index 9cedbf4a363bf3..fd5851f5bb0e8b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/validate-transaction.md @@ -29,4 +29,14 @@ Note que quando OK for estabelecido como 0, a transação é automaticamente can [CANCEL TRANSACTION](cancel-transaction.md) [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Usar Transações* \ No newline at end of file +*Usar Transações* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 240 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md index 2e2e8ee58fe1d9..f58e5f0b06b320 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/value-type.md @@ -115,4 +115,13 @@ var $sum : Real #### Ver também [OB Get type](ob-get-type.md) -[Type](type.md) \ No newline at end of file +[Type](type.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1509 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md index e13b3904f5ef94..2b2ffa91b12ff1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-blob.md @@ -134,4 +134,14 @@ Depois que esses métodos foram adicionados a sua aplicação, pode escrever: [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 532 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md index f2c3b06e7ddabc..721dcbd0bffea9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variable-to-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando VARIABLE TO VARIABLE escreve as variáveis processo *dstVar* (*dstVar2*, etc.) do processo de destino cujo número se passa em processo utilizando os valores das variáveis *srcVar1 srcVar2*, etc.. @@ -62,4 +59,13 @@ O exemplo a seguir lê um array processo desde o processo indicado por *$vlProce [GET PROCESS VARIABLE](get-process-variable.md) *Processos* -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 635 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md index e9e72ea3fc2525..b483fd2749d2cc 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/variance.md @@ -65,4 +65,13 @@ Este exemplo permite obter a variância de valores localizados num array: [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Sum squares](sum-squares.md) \ No newline at end of file +[Sum squares](sum-squares.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 27 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md index 5abeca1bb5ec2f..8f1123b6597aba 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-current-data-file.md @@ -41,4 +41,14 @@ Se o método de callback não existir, a verificação não é efetuada, é gera #### Ver também -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1008 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md index ff8af1817f950e..eb8d5de246a405 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-data-file.md @@ -153,4 +153,14 @@ Se o método de callback não existir, a verificação não é efetuada, é gera #### Ver também -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 939 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md index df15e03ad320d6..779532e28138d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/verify-password-hash.md @@ -52,4 +52,13 @@ Este exemplo verifica um hash de senha previamente criado por [Generate password #### Ver também -[Generate password hash](generate-password-hash.md) \ No newline at end of file +[Generate password hash](generate-password-hash.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1534 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md index 30a936f99d48a2..bae9926c95d917 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/version-type.md @@ -42,4 +42,13 @@ Esta prova permite executar código diferente dependendo de que versão é uma a #### Ver também [Application type](application-type.md) -[Application version](application-version.md) \ No newline at end of file +[Application version](application-version.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 495 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md index b994c389e9a79b..d2c37ee51bd954 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-attributes.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Descrição -O comando VOLUME ATTRIBUTES retorna em bytes o tamanho, o espaço utilizado e o espaço livre do volume cujo nome se passa em *volume*. - -**Nota**: se *volume* indica um volume remoto não montado, a variável OK toma o valor 0 e os três parâmetros retornam -1. +O comando VOLUME ATTRIBUTES retorna em bytes o tamanho, o espaço utilizado e o espaço livre do volume cujo nome se passa em *volume*.indica um volume remoto não montado, a variável OK toma o valor 0 e os três parâmetros retornam -1. #### Exemplo @@ -96,4 +94,14 @@ Quando tiver sido adicionado este método de projeto a sua aplicação, pode esc #### Ver também -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 472 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md index 9f83dd5996be53..e64fe9217cef8c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/volume-list.md @@ -38,4 +38,13 @@ Utilizando uma área de rolagem chamada *atVolumes*,se quiser mostrar a lista de [DOCUMENT LIST](document-list.md) [FOLDER LIST](folder-list.md) -[VOLUME ATTRIBUTES](volume-attributes.md) \ No newline at end of file +[VOLUME ATTRIBUTES](volume-attributes.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 471 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md index 5c4f5c2a44fe4b..e0e3baea116084 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-back-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Back URL available descobre se existe uma URL anterior disponível na sequência de URLs abertas na área web designada pelos parâmetros \* e *objeto*. @@ -27,4 +24,13 @@ O comando retorna *True* se existe uma URL e do contrário *False*. Particularme #### Ver também [WA Forward URL available](wa-forward-url-available.md) -[WA OPEN BACK URL](wa-open-back-url.md) \ No newline at end of file +[WA OPEN BACK URL](wa-open-back-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1026 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md index f6187998519e9a..f25eb05862613f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Create URL history menu cria e preenche um menu que pode ser utilizado diretamente para a navegação entre as URLs visitadas durante a sessão na área web designada pelos parâmetros *\** e *objeto*. Pode ser utilizado para criar uma interface de navegação personalizada. @@ -69,4 +66,13 @@ O código abaixo pode estar associado a um botão 3D com menu pop up chamado "An [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[WA GET URL HISTORY](wa-get-url-history.md) \ No newline at end of file +[WA GET URL HISTORY](wa-get-url-history.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1049 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md index 5af8d68b45dff5..3baaf353e96e51 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Evaluate JavaScript executa na área web designada pelos parâmetros *\** e *objeto* o código JavaScript passado em *codeJS* e retorna o resultado.. Este comando deve ser chamado depois de carregar a página (o evento de formulário On End URL Loading deve ter sido gerado). @@ -103,4 +100,13 @@ Logo pode avaliar o código JavaScript desde 4D: #### Ver também -[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) \ No newline at end of file +[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1029 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md index e5cd49ccc027d0..f567c76c5464f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA EXECUTE JAVASCRIPT FUNCTION executa, na área Web designada pelos parâmetros *\** e *objeto*, a função JavaScript *funcaoJS* retorna opcionalmente seu resultado no parâmetro *resultado*. @@ -59,4 +56,13 @@ A função JavaScript "getCustomerInfo" recebe um número ID como parâmetro e d #### Ver também -[WA Evaluate JavaScript](wa-evaluate-javascript.md) \ No newline at end of file +[WA Evaluate JavaScript](wa-evaluate-javascript.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1043 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md index ddec854b554181..715947aa4a78d8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-forward-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Forward URL available permite conhecer se existe uma URL seguinte disponível na sequência de URLs abertas na área web designada pelos parâmetros *\** e *objeto*. @@ -27,4 +24,13 @@ O comando retorna *True* se existir um URL e do contrário *False*. Particularme #### Ver também [WA Back URL available](wa-back-url-available.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1027 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md index eacd32be407316..765829328a991e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-current-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Get current URL retorna a direção URL da página mostrada na área web designada pelos parâmetros \* e *objeto*. @@ -37,4 +34,13 @@ A página mostrada na URL "www.apple.com" e a página "www.4dhispano.com" está #### Ver também -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1025 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md index e72b801fd417e5..e2b309a9b27236 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA GET EXTERNAL LINKS FILTERS retorna nos arrays *arrFiltro* e *permitirArrRecusar*, os filtros de links externos da área web designada pelos parâmetros *\** e *objeto*. Se nenhum filtro estiver ativo, os arrays são retornados vazios. @@ -28,4 +25,13 @@ Os filtros são instalados pelo comando [WA SET EXTERNAL LINKS FILTERS](wa-set-e #### Ver também [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1033 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md index df75bb4225f56e..a4a9ca41b85595 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Get last filtered URL retorna a última URL filtrada na área web designada pelos parâmetros \* e *objeto*. @@ -34,4 +31,13 @@ A URL pode ter sido filtrada por uma das seguintes razões: [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) [WA GET URL FILTERS](wa-get-url-filters.md) [WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1035 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md index 84e559c4c4ffc7..549dd5b5730957 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-last-url-error.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA GET LAST URL ERROR permite recuperar vários elementos de informação relacionados com o último erro ocorrido na área Web designada pelos parâmetros *\** e *objeto*. @@ -36,4 +33,13 @@ Esta informação se retorna em três variáveis: #### Ver também -[Form event code](form-event-code.md) \ No newline at end of file +[Form event code](form-event-code.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1034 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md index a326c72c9e6ab6..ad8971f0120aed 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-content.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Get page content retorna o código HTML da página atual ou da página que vai ser mostrada na área web designada pelos parâmetros *\** e *objeto*. @@ -26,4 +23,13 @@ Este comando retorna uma string vazia se o conteúdo da página atual não estiv #### Ver também -[WA SET PAGE CONTENT](wa-set-page-content.md) \ No newline at end of file +[WA SET PAGE CONTENT](wa-set-page-content.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1038 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md index a29fd401a137e7..d483547675a857 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-page-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA Get page title retorna o título da página atual ou que vai a ser mostrada na área web designada pelos parâmetros *\** e *objeto*. O título corresponde a a etiqueta HTML "Title". @@ -26,4 +23,13 @@ Este comando retorna uma string vazia se não houver título disponível para o #### Ver também -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1036 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md index 1580608029f47a..3a5b48b4c69eee 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA GET PREFERENCE permite obter o valor atual de uma preferência na área web designada pelos parâmetros *\** e *objeto*. @@ -36,4 +33,13 @@ Passe no parâmetro *valor* uma variável que receberá o valor atual da prefer #### Ver também -[WA SET PREFERENCE](wa-set-preference.md) \ No newline at end of file +[WA SET PREFERENCE](wa-set-preference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1042 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md index 09c904dc738088..7e259f1870287a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA GET URL FILTERS retorna nos arrays *arrFiltro* e *permitirArrRecusar*, os filtros ativos na área web designada pelos parâmetros *\** e *objeto* . Se nenhum filtro estiver ativo, os arrays são retornados vazios. @@ -28,4 +25,13 @@ Os filtros são instalados pelo comando WA GET URL FILTERS. Se os arrays se rein #### Ver também [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1031 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md index 95a6074c8c7c43..55a691888cc08a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-get-url-history.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA GET URL HISTORY retorna um ou dois arrays que contenhamm as URLs visitadas durante a sessão na área web designada pelos parâmetros *\** e *objeto*. Permite construir uma interface de navegação personalizada. @@ -45,4 +42,13 @@ Nota de Compatibilidade: A partir de 4D v19 R5, esse comando só retorna a URL a #### Ver também -[WA Create URL history menu](wa-create-url-history-menu.md) \ No newline at end of file +[WA Create URL history menu](wa-create-url-history-menu.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1048 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md index e5f81bf0648869..bd342bc29ab1f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-back-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA OPEN BACK URL carrega na área web designada pelos parâmetros *\** e *objeto* a URL antecedente na sequência das URLs abertos. @@ -26,4 +23,13 @@ Se não houver um URL antecedente, o comando não faz nada. Pode testar a dispon #### Ver também [WA OPEN FORWARD URL](wa-open-forward-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1021 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md index cf6b8274316c44..0abbb8366c5d12 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-forward-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA OPEN FORWARD URL carrega na área web designada pelos parâmetros \* e *objeto* a URL passada no parâmetro url. @@ -26,4 +23,13 @@ displayed_sidebar: docs #### Ver também [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1022 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md index ec4092babe57f2..89ebdaf2499cb8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **WA OPEN URL** carrega na área web designada pelos parâmetros *\** e *objeto* o URL passado no parâmetro *url*. @@ -47,4 +44,13 @@ Este comando tem o mesmo efeito que a modificação do valor da variável "URL" [OPEN URL](open-url.md) [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1020 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md index 3e685e5db2164b..be6afaf246db40 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-open-web-inspector.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **WA OPEN WEB INSPECTOR** abre um inspetor web para a área web designada pelos parâmetros *\** e *objeto*. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### Ver também *Gestão programada de áreas web* -[WA Run offscreen area](wa-run-offscreen-area.md) \ No newline at end of file +[WA Run offscreen area](wa-run-offscreen-area.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1736 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md index 0b7926e025655a..57bff1ac7b8d7f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-refresh-current-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA REFRESH CURRENT URL recarrega a URL atual mostrada na área web designada pelos parâmetros *\** e *objeto*. #### Ver também -[WA STOP LOADING URL](wa-stop-loading-url.md) \ No newline at end of file +[WA STOP LOADING URL](wa-stop-loading-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1023 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md index ea8bfbfebadd8d..e6e1957ae3eede 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando **WA Run offscreen area** cria uma área web na memória que pode ser usada para carregar automaticamente e analisar as páginas web @@ -97,4 +94,14 @@ A variável de sistema OK é estabelecida como 0 se o timeout foi alcançaddo ou [FORM Event](form-event.md) *Gestão programada de áreas web* -[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) \ No newline at end of file +[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1727 | +| Thread-seguro | ✗ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md index d755e86d4b414d..80bee1099b89ea 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA SET EXTERNAL LINKS FILTERS permite estabelecer um ou mais filtros de links externos para a zona web designada pelos parâmetros *\** e *objeto*. Os filtros de links externos determinam se um URL associado a página atual através um link deve ser aberto na área web ou no navegador web por padrão da máquina. @@ -75,4 +72,13 @@ Este exemplo combina os filtros de sites e de links externos: #### Ver também [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1032 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md index 933008a63ce442..2975313c49ce26 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-page-content.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Nota de compatibilidade Este comando não é mais útil. Como a segurança em navegadores ficou cada vez mais forte, há mais e mais restrições para modificar o conteúdo de páginas "a qualquer momento". Uma abordagem mais adequada é criar um arquivo local (por exemplo na pasta temporária) e usar [WA OPEN URL](wa-open-url.md) para carregá-la. Para limpar o conteúdo, chame **WA OPEN URL**(myArea;”about:blank”). @@ -47,4 +44,13 @@ Mostrar a frase "Olá mundo!" e definição de uma URL de banco "file:///" banco #### Ver também -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1037 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md index 97793b21e55f12..ec510c4fcf9227 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA SET PREFERENCE permite fixar diferentes preferências para o área web designada pelos parâmetros *\** e *objeto*. @@ -54,4 +51,13 @@ WA SET PREFERENCE( *;"myarea"; WA enable URL drop ; True) #### Ver também -[WA GET PREFERENCE](wa-get-preference.md) \ No newline at end of file +[WA GET PREFERENCE](wa-get-preference.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1041 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md index a1c4884b637542..3347c028b600c8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-set-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA SET URL FILTERS permite colocar um ou mais filtros para a área Web designada pelos parâmetros *\** e *objeto*. @@ -141,4 +138,13 @@ Imagine que deseja negar o acesso a endereços IP específicos: #### Ver também [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1030 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md index 1941767a0ebc2b..f2848382690e91 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-stop-loading-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA STOP LOADING URL para de carregar os recurso da URL atual da área web determinada pelos parâmetros *\** e *objeto*. #### Ver também -[WA REFRESH CURRENT URL](wa-refresh-current-url.md) \ No newline at end of file +[WA REFRESH CURRENT URL](wa-refresh-current-url.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1024 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md index 29cd34921c476b..30e16683e390d6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-in.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA ZOOM IN aumenta o tamanho do texto mostrado na área web designada pelos parâmetros \* e *objeto*. @@ -27,4 +24,13 @@ Em Windows, o alcance deste comando é global: a configuração se conserva depo #### Ver também -[WA ZOOM OUT](wa-zoom-out.md) \ No newline at end of file +[WA ZOOM OUT](wa-zoom-out.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1039 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md index 758cdde2343ed3..f2edf4d0ea3bd7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/wa-zoom-out.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WA ZOOM OUT reduz o tamanho do texto mostrado no área web designada pelos parâmetros *\** e *objeto*. @@ -27,4 +24,13 @@ Em Windows, o alcance deste comando é global: a configuração se conserva depo #### Ver também -[WA ZOOM IN](wa-zoom-in.md) \ No newline at end of file +[WA ZOOM IN](wa-zoom-in.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1040 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md index 6954177aca1e68..227c951ce7b014 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part-count.md @@ -23,4 +23,13 @@ Consulte o exemplo do comando [WEB GET BODY PART](web-get-body-part.md). #### Ver também -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1211 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md index 05c854e591e485..1b1dde2eaad7f7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-body-part.md @@ -91,4 +91,13 @@ Este é o código do método GetFile: [WEB Get body part count](web-get-body-part-count.md) [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET VARIABLES](web-get-variables.md) \ No newline at end of file +[WEB GET VARIABLES](web-get-variables.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1212 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md index f6a55e24d80401..a1d875483a48f6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-current-session-id.md @@ -22,4 +22,13 @@ Se este comando se chama fora do contexto de uma sessão web, devolve uma cadeia #### Ver também [WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) -*Web Sessions Management (Legacy)* \ No newline at end of file +*Web Sessions Management (Legacy)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1162 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md index 5b33ace6c125a0..5fca624539aa2f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-body.md @@ -47,4 +47,13 @@ Quando o formulário é enviado ao servidor web, a variável $textoPetição rec #### Ver também [WEB GET BODY PART](web-get-body-part.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 814 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md index 12d858545f8e6e..4bd5781fc0bdfa 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-http-header.md @@ -116,4 +116,13 @@ O seguinte método permite recuperar o conteúdo de todo campo de cabeçalho de #### Ver também [WEB GET HTTP BODY](web-get-http-body.md) -[WEB SET HTTP HEADER](web-set-http-header.md) \ No newline at end of file +[WEB SET HTTP HEADER](web-set-http-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 697 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md index 9ceb7d83938590..778f76a5194562 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-option.md @@ -62,4 +62,13 @@ Quando usar o seletor web debug log, pode receber uma das constantes abaixo no p #### Ver também -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1209 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md index 03324e3cdf4dfb..4c7d0b7644bea5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-server-info.md @@ -87,4 +87,13 @@ Depois de executar o código abaixo: [License info](license-info.md) [Process activity](../commands/process-activity.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1531 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md index 51dd30c92ab621..c95e677f5d6dad 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-statistics.md @@ -62,3 +62,13 @@ No método de projeto STATS, escreva o código abaixo: ``` Pode enviar a página "stats.shtm" utilizando um link URL ou utilizando o comando [WEB SEND FILE](web-send-file.md). + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 658 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md index 91ecc8c87dc809..167a90a1260991 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-get-variables.md @@ -62,4 +62,13 @@ A variável vNOME contém ROBERTO e vCIDADE contém PARIS. #### Ver também -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 683 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md index 338463a2273372..19e205e4db4ae4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-secured-connection.md @@ -26,4 +26,13 @@ Este comando permite, por exemplo, recusar as tentativas de conexão em modo nã #### Ver também -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 698 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md index ec6ec718a07fac..faa03aa6ef0b27 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-is-server-running.md @@ -36,3 +36,13 @@ Você quer verificar que o servidor web se está executando:     ... //fazer as ações apropriadas  End if ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1313 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md index e6e387c0d505aa..7d3e4d09ca8090 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-close-session.md @@ -34,4 +34,13 @@ Depois da execução deste comando, se um cliente web envia um pedido com uma co #### Ver também [Método banco de dados On Web Legacy Close Session database method](metodo-banco-de-dados-on-web-legacy-close-session-database-method.md) -*Web Sessions Management (Legacy)* \ No newline at end of file +*Web Sessions Management (Legacy)* + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1208 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md index 4d5647ba2d121c..3fbf06b41805be 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md @@ -37,4 +37,13 @@ O parâmetro *dataVenc* recebe a data de vencimento e o parâmetro *horaVenc* re [WEB Get Current Session ID](web-get-current-session-id.md) *Web Sessions Management (Legacy)* -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1207 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md index 57f7586381c501..1310ee0ed18d56 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-blob.md @@ -79,4 +79,13 @@ Consulte o exemplo da rotina [PICTURE TO BLOB](picture-to-blob.md). #### Ver também -[WEB SEND FILE](web-send-file.md) \ No newline at end of file +[WEB SEND FILE](web-send-file.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 654 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md index da65e450cfcb6b..0b33338ca96700 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-file.md @@ -47,4 +47,14 @@ Se o arquivo a ser enviado existir e o timeout não tiver passado, OK é estabel #### Ver também -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 619 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md index 431a611cde26c7..09368a021aec28 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-http-redirect.md @@ -55,3 +55,13 @@ Na parte (ou subrotina) do [QR SET DESTINATION](qr-set-destination.md), insere o  ... //Coloque o código da pesquisa aqui End case ``` + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 659 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md index e53ea70eb6c995..f693e54c2fb38b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-raw-data.md @@ -82,4 +82,13 @@ Este exemplo ilustra o uso da opção chunked com o comando **WEB SEND RAW DATA* #### Ver também [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 815 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md index a53c68f7923aa8..cd4509be95311f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-send-text.md @@ -43,4 +43,13 @@ O método abaixo: #### Ver também -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 677 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md index 6d2f8aef65361b..2a66864c87df9c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-authenticate.md @@ -50,4 +50,13 @@ Autenticação com um serviço web localizado atrás de um proxy: #### Ver também [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE Get info](web-service-get-info.md) \ No newline at end of file +[WEB SERVICE Get info](web-service-get-info.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 786 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md index 085869eb8e6ca6..eae292403d85e1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-call.md @@ -171,4 +171,14 @@ Se a petição for corretamente encaminhada, e o Web Service a aceitar, a variá #### Ver também [WEB SERVICE GET RESULT](web-service-get-result.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 778 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md index 067317049d8c02..00823a48a4fda4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-info.md @@ -28,3 +28,13 @@ O parâmetro *tipoinfo* permite indicar o tipo de informação que quiser obter. | Web Service HTTP status code | Inteiro longo | 2 | Código de erro HTTP (para ser usado no caso do erro principal 9912). | Uma string vazia é retornada quando não há informação disponível, particularmente se a última petição SOAP não gerou erros. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 780 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md index f587f4b6da01a4..db112e65978206 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-get-result.md @@ -52,4 +52,13 @@ Imagine um serviço web que devolve a hora atual em qualquer cidade do mundo. Os #### Ver também [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 779 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md index ed3967234f0f3f..2545e20c28f560 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-option.md @@ -61,4 +61,13 @@ Utilização da versão 1.2 do protocolo SOAP: #### Ver também -[WEB SERVICE CALL](web-service-call.md) \ No newline at end of file +[WEB SERVICE CALL](web-service-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 901 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md index c28859c6f19b65..0186e9e4fd315f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-service-set-parameter.md @@ -72,4 +72,13 @@ Este exemplo define dois parâmetros: #### Ver também [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE GET RESULT](web-service-get-result.md) \ No newline at end of file +[WEB SERVICE GET RESULT](web-service-get-result.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 777 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md index 8d153a44413852..6a77756749af7f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-home-page.md @@ -26,3 +26,13 @@ Passe no parâmetro *pagInicio* o nome da página HTML ou da rota de acesso HTML Para não enviar *pagInicio* como página de inicio para o processo web atual, execute WEB SET HOME PAGE com uma string vazia ("") passada em *pagInicio*. **Nota**: a página de boas vindas por padrão do servidor web se definido nas Propriedades do banco. + + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 639 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md index dadc85c53aed31..aafca9a8435a9d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-http-header.md @@ -66,4 +66,13 @@ Os campos **Date** e **Content-Length** sempre são definidos por padrão por 4D #### Ver também -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 660 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md index b94e476d966814..05fb667c94feab 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-option.md @@ -82,4 +82,13 @@ Uma entrada registrada se vê dessa maneira: #### Ver também [WEB GET OPTION](web-get-option.md) -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 5 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md index b41c0eaea467d8..331a1e1ca4e480 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-set-root-folder.md @@ -37,4 +37,14 @@ Se especificar uma rota de acesso inválida, será gerado um erro do administrad #### Ver também [Get 4D folder](get-4d-folder.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 634 | +| Thread-seguro | ✓ | +| Modificar variáveis | error | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md index 5acd348395660c..c219aaf4bf3131 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-start-server.md @@ -24,4 +24,14 @@ Se o servidor Web é iniciado corretamente, Ok assume o valor 1; do contrário O #### Ver também -[WEB STOP SERVER](web-stop-server.md) \ No newline at end of file +[WEB STOP SERVER](web-stop-server.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 617 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md index eba9cf52795f66..2efa1b337ff53f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-stop-server.md @@ -20,4 +20,13 @@ Se o servidor web não for iniciado, o comando não faz nada. #### Ver também -[WEB START SERVER](web-start-server.md) \ No newline at end of file +[WEB START SERVER](web-start-server.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 618 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md index 2bc2100ea54cd2..db4906a9e5c6d9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/web-validate-digest.md @@ -55,4 +55,13 @@ Exemplo de método de base On Web Authentication em modo Digest: #### Ver também [Generate digest](generate-digest.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 946 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md index 8bcb11eb9c0fe5..6f81f8eb2ab9e0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Window kind devolve o tipo de janela 4D cujo número de referência for passado no parâmetro *janela*. Se a janela não existir, Window kind devolve *0 (zero)*. @@ -41,4 +38,13 @@ Ver o exemplo do comando [WINDOW LIST](window-list.md). [GET WINDOW RECT](get-window-rect.md) [Get window title](get-window-title.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 445 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md index 5327f675e05da1..c884fe247506cf 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando WINDOW LIST preenche o array *janelas* com os números de referência das janelas abertas atualmente em todos os processos (processos kernel ou usuário). Apenas janelas "visíveis" (ou seja, não ocultadas) são retornadas. @@ -52,4 +49,13 @@ O método de projeto abaixo coloca em mosaico todas as janelas abertas atualment #### Ver também [Window kind](window-kind.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 442 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md index 2ee45aaebc2042..29b0f22bbe0b8d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/window-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*Esse comando não é seguro para thread e não pode ser usado em código adequado.* - - #### Descrição O comando Window process devolve o número de processo que executa a janela cujo número de referência é passado em *janela*. Se a janela não existir, o comando devolve *0 (zero)*. @@ -25,4 +22,13 @@ Se omitir o parâmetro *janela*, Window process devolve o número do processo da #### Ver também -[Current process](current-process.md) \ No newline at end of file +[Current process](current-process.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 446 | +| Thread-seguro | ✗ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md index dd21b39a3e0a3c..182ddfb3050175 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-alt-down.md @@ -30,4 +30,13 @@ Ver exemplo do comando [Shift down](shift-down.md). [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 563 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md index 0136936a10ff50..df25a7155e7bfe 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/windows-ctrl-down.md @@ -30,4 +30,13 @@ Ver exemplo do comando [Shift down](shift-down.md). [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 562 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md index 09b846711f5426..b4ed647217b61d 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/write-picture-file.md @@ -49,4 +49,14 @@ Se a execução do comando for correta, a variável sistema Document contém a r *Imagens* [PICTURE TO BLOB](picture-to-blob.md) [READ PICTURE FILE](read-picture-file.md) -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 680 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK, Document | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md index 516d00e40f3565..205d35eec61446 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-decode.md @@ -75,4 +75,13 @@ Exemplo do documento XML: #### Ver também [BASE64 DECODE](base64-decode.md) -[BASE64 ENCODE](base64-encode.md) \ No newline at end of file +[BASE64 ENCODE](base64-encode.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1091 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md index f0258e6b2452ec..8b2fa63286216a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-error.md @@ -28,4 +28,14 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1 #### Ver também -[DOM Get XML information](dom-get-xml-information.md) \ No newline at end of file +[DOM Get XML information](dom-get-xml-information.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 732 | +| Thread-seguro | ✓ | +| Modificar variáveis | OK | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md index f58f81a8aa64ba..8c8179cf0ae31e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-get-options.md @@ -36,4 +36,13 @@ Em seletor, passe uma das constantes do tema "*XML*" indicando a opção a obter #### Ver também -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1096 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md index 4ebe33897b2ada..0962cc57768702 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/xml-set-options.md @@ -68,4 +68,13 @@ Inserir uma imagem SVG: [DOM SET XML DECLARATION](dom-set-xml-declaration.md) [DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[XML GET OPTIONS](xml-get-options.md) \ No newline at end of file +[XML GET OPTIONS](xml-get-options.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 1090 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md index cb32ac3c744fd3..704cd972ad600a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands-legacy/year-of.md @@ -37,4 +37,13 @@ Ver o exemplo do comando [Current date](current-date.md "Current date"). #### Ver também [Day of](day-of.md) -[Month of](month-of.md) \ No newline at end of file +[Month of](month-of.md) + +#### Propriedades + +| | | +| --- | --- | +| Número do comando | 25 | +| Thread-seguro | ✓ | + + diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/folder.md index 1ed61f56fca043..bad27f055e8332 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/folder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/folder.md @@ -29,7 +29,7 @@ displayed_sidebar: docs #### Descrição -O comando `Folder` cria e retorna um novo objeto do tipo `4D.Folder`. O comando aceita duas sintaxes: +Parâmetro O comando aceita duas sintaxes: **Folder ( path { ; pathType } { ; \* } )** diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md index 4c918dbca90514..785966a102265c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/form-event-code.md @@ -22,7 +22,7 @@ displayed_sidebar: docs 4D provides predefined constants (found in the *Form Events* theme) in order to compare the values returned by the **Form event code** command. Certain events are generic (generated for any type of object) and others are specific to a particular type of object. -For a description of events, please refer to the [**Form Events**](../Events/overview.md) section. +Para obter uma descrição dos eventos, consulte a seção [**Eventos formulário**](../Events/overview.md). #### Exemplo 1 diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/form-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/form-event.md index 5b7929abd85829..7bf3d72e3b2715 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/form-event.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/form-event.md @@ -23,28 +23,28 @@ displayed_sidebar: docs Cada objeto retornado inclui as seguintes propriedades principais: -| **Propriedade** | **Tipo** | **Description** | -| --------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| objectName | text | Name of the object triggering the event - Not included if the event is triggered by the form | -| code | integer | Valor numérico do evento de formulário. | -| description | text | Name of the form event (*e.g.* "On After Edit"). See the [**Form Events**](../Events/overview.md) section. | +| **Propriedade** | **Tipo** | **Description** | +| --------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| objectName | text | Nome do objeto que aciona o evento - Não incluído se o evento for acionado pelo formulário | +| code | integer | Valor numérico do evento de formulário. | +| description | text | Nome do evento do formulário (\*por exemplo, \* "On After Edit"). Veja a seção [**Eventos de Formulário**](../Events/overview.md) | -For example, in the case of a click on a button, the object contains the following properties: +Por exemplo, no caso de um clique no botão, o objeto contém as seguintes propriedades: ```json {"code":4,"description":"On Clicked","objectName":"Button2"} ``` -The event object can contain additional properties, depending on the object for which the event occurs. For *eventObj* objects generated on: +O objeto de evento pode conter propriedades adicionais, dependendo do objeto para o qual o evento ocorre. Para objetos *eventObj* gerados em: -- List box or list box column objects, see the *list box documentation on developer.4d.com*. -- 4D View Pro areas, see *On VP Ready form event*. +- Lista de objetos da coluna caixa de lista, veja a *documentação da caixa de lista no developer.4d.com*. +- 4D View Pro areas , consulte *No formulário VP Pronto*. -**Note:** If there is no current event, **FORM Event** returns a null object. +**Nota:** Se não há nenhum evento atual, **Evento FORMATO** retorna um objeto nulo. #### Exemplo 1 -You want to handle the On Clicked event on a button: +Você deseja manipular o evento On Clicked em um botão: ```4d  If(FORM Event.code=On Clicked) @@ -54,11 +54,11 @@ You want to handle the On Clicked event on a button: #### Exemplo 2 -If you set the column object name with a real attribute name of a dataclass like this: +Se você definir o nome do objeto de coluna com um nome de atributo real de um dataclass como este: ![](../assets/en/commands/pict4843820.en.png) -You can sort the column using the On Header Click event: +Você pode classificar a coluna usando o evento On Header Click: ```4d  Form.event:=FORM Event @@ -72,11 +72,11 @@ You can sort the column using the On Header Click event: #### Exemplo 3 -You want to handle the On Display Details on a list box object with a method set in the *Meta info expression* property: +Você deseja tratar o On Display Details em um objeto de caixa de listagem com um método definido na propriedade *Meta info expression*: ![](../assets/en/commands/pict4843812.en.png) -The *setColor* method: +O método *setColor*: ```4d  var $event;$0;$meta : Object @@ -92,11 +92,11 @@ The *setColor* method:  $0:=$meta ``` -The resulting list box when rows are selected: +A caixa de lista resultante quando as linhas são selecionadas: ![](../assets/en/commands/pict4843808.en.png) #### Veja também -[Form Events](../Events/overview.md) -[Form event code](../commands/form-event-code.md) +[Eventos de formulário](../Events/overview.md) +[Código de evento do formulário](../commands/form-event-code.md) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/formula-from-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/formula-from-string.md index aab8d87992ac04..281e8bb2e0fb4e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/formula-from-string.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/formula-from-string.md @@ -30,7 +30,7 @@ displayed_sidebar: docs The `Formula from string` command creates a `4D.Function` object based upon the *formulaString* and, optionnally, a *context*. *formulaString* can be as simple as a single value or complex, such as a project method with parameters. -This command is similar to [`Formula`](formula.md), except that it handles a text-based formula and allows to define an execution context. It is usually recommended to use the `Formula` command, except if the original formula was expressed as text (e.g., stored externally in a JSON file), or if you want to create a formula in a host database while calling `Formula from string` from a component. É altamente recomendável usar a sintaxe com tokens com esse comando. +Esse comando é como [`Formula`](formula.md), exceto pelo fato de que ele lida com uma fórmula baseada em texto e permite definir um contexto de execução. Esse comando é como [`Formula`](#formula), exceto pelo fato de que ele lida com uma fórmula baseada em texto e permite definir um contexto de execução. It is usually recommended to use the `Formula` command, except if the original formula was expressed as text (e.g., stored externally in a JSON file), or if you want to create a formula in a host database while calling `Formula from string` from a component. É altamente recomendável usar a sintaxe com tokens com esse comando. > Because local variable contents can not be accessed by name in compiled mode, they can not be used in *formulaString*. An attempt to access a local variable with `Formula from string` will result in an error (-10737). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md index e8ed3efc91518d..0a275e77c27e13 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/imap-new-transporter.md @@ -29,24 +29,24 @@ O comando `IMAP New transporter` ](../API/IMAPTransporterClass.md#acceptunsecureconnection)
    | False | -| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Not returned in *[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)* object. | nenhum | -| [](../API/IMAPTransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | -| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
    | 300 | -| [](../API/IMAPTransporterClass.md#connectiontimeout)
    | 30 | -| [](../API/IMAPTransporterClass.md#host)
    | *mandatory* | -| [](../API/IMAPTransporterClass.md#logfile)
    | nenhum | -| **senha** : Texto
    Senha do usuário para autenticação no servidor. Não retornado no objeto *[IMAP transporter](#imap-transporter-object)*. | nenhum | -| [](../API/IMAPTransporterClass.md#port)
    | 993 | -| [](../API/IMAPTransporterClass.md#user)
    | nenhum | +| *server* | Valor padrão (se omitido) | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------- | +| [](../API/IMAPTransporterClass.md#acceptunsecureconnection)
    | False | +| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Não retornado no objeto *[IMAP transporter](../API/IMAPTransporterClass.md#imap-transporter-object)*. | nenhum | +| [](../API/IMAPTransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | +| [](../API/IMAPTransporterClass.md#checkconnectiondelay)
    | 300 | +| [](../API/IMAPTransporterClass.md#connectiontimeout)
    | 30 | +| [](../API/IMAPTransporterClass.md#host)
    | *mandatory* | +| [](../API/IMAPTransporterClass.md#logfile)
    | nenhum | +| **senha** : Texto
    Senha do usuário para autenticação no servidor. Não retornado no objeto *[IMAP transporter](#imap-transporter-object)*. | nenhum | +| [](../API/IMAPTransporterClass.md#port)
    | 993 | +| [](../API/IMAPTransporterClass.md#user)
    | nenhum | > **Aviso**: certifique-se de que o tempo limite definido seja menor que o tempo limite do servidor, caso contrário, o tempo limite do cliente será inútil. #### Resultados -The function returns an [**IMAP transporter object**](../API/IMAPTransporterClass.md#imap-transporter-object). Todas as propriedades retornadas são **apenas leitura**. +A função retorna um [**objeto IMAP transporter**](../API/IMAPTransporterClass.md#imap-transportter-object). Todas as propriedades retornadas são **apenas leitura**. > A ligação IMAP é automaticamente fechada quando o objecto transportador é destruído. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/license-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/license-info.md index 0b6490be13f949..975fcdb980128f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/license-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/license-info.md @@ -56,31 +56,31 @@ O objeto retornado contém as propriedades abaixo: } ``` -| **Property** | **Type** | **Description** | **Exemplo** | -| ------------------- | ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| name | string | Commercial name | "4D Developer Professional vXX" | -| \| | number | ID of the installed product. A unique number is associated to a 4D application (such as 4D Server, 4D in local mode, 4D Desktop, etc.) installed on a machine. This number is encrypted. | 12356789 | -| licenseNumber | string | License number | "4DDP16XXXXX1123456789" | -| version | string | Product version number | "16", "16R2" | -| attributes | collection of strings | License type(s) when applicable (optional) | \["application","OEM"\] | -| userName | string | Name of 4D store account | "John Smith" | -| userMail | string | Mail of 4D store account | "john.smith@gmail.com" | -| companyName | string | Company name of 4D store account | "Alpha Cie" | -| platforms | collection of strings | License platform(s) | \["macOS", "windows"\] | -| expirationDate | object | Date of expiration (optional) | {"day":2, "month":6, "year":2018} | -| renewalFailureCount | number | Number of unsuccessful automatic renewal attempts for at least one of the product licenses (optional) | 3 | -| products | uma coleção de objetos | Description of product license (one element per product license). See below. | | +| **Property** | **Tipo** | **Description** | **Exemplo** | +| ------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------- | +| name | string | Nome comercial | "4D Developer Professional vXX" | +| \| | number | ID of the installed product. A unique number is associated to a 4D application (such as 4D Server, 4D in local mode, 4D Desktop, etc.) installed on a machine. Esse número é criptografado. | 12356789 | +| licenseNumber | string | License number | "4DDP16XXXXX1123456789" | +| version | string | Product version number | "16", "16R2" | +| attributes | collection of strings | License type(s) when applicable (optional) | \["application","OEM"\] | +| userName | string | Name of 4D store account | "John Smith" | +| userMail | string | Mail of 4D store account | "john.smith@gmail.com" | +| companyName | string | Company name of 4D store account | "Alpha Cie" | +| platforms | collection of strings | License platform(s) | \["macOS", "windows"\] | +| expirationDate | object | Date of expiration (optional) | {"day":2, "month":6, "year":2018} | +| renewalFailureCount | number | Number of unsuccessful automatic renewal attempts for at least one of the product licenses (optional) | 3 | +| products | uma coleção de objetos | Description of product license (one element per product license). See below. | | Each object of the `products` collection can have the following properties: -| **Property** | | **Type** | **Description** | **Exemplo** | +| **Property** | | **Tipo** | **Description** | **Exemplo** | | ------------ | ------------------------------------------------------------------------------------------ | ---------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | | id | | number | License number | For available values, see the [Is license available](../commands-legacy/is-license-available.md) command | | name | | string | License name | "4D Write - 4D Write Pro" | | usedCount | | number | Number of consumed connections | 8 | | allowedCount | | number | Total connections allowed for the product against the expiry dates | 15 | | rights | | uma coleção de objetos | Rights for the product (one element per expiration date) | | -| | \[ \].count | number | Number of allowed connections | 15 (32767 means unlimited) | +| | \[ \].count | number | Number of allowed connections | 15 (32767 significa ilimitado) | | | \[ \].expirationDate | object | Date of expiration (optional, same format as above) | {"day":1, "month":11, "year":2017} | #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-to-mime.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-to-mime.md index 4bd45d1ba0783b..a8d77ae34149f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-to-mime.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/mail-convert-to-mime.md @@ -31,7 +31,7 @@ The `MAIL Convert to MIME` command conne Os seguintes datastores remotos são compatíveis com o comando: -| tipo de datastore | Descrição | -| ---------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Aplicação 4D remoto | A 4D application available as a remote datastore, i.e.:
  • its web server is launched with http and/or https enabled,
  • its datastore is exposed to REST ([**Expose as REST server**](REST/configuration.md#starting-the-rest-server) option checked).
  • A license can be required (see note) | -| [Qodly application](https://developer.qodly.com/docs/cloud/getStarted) | Um aplicativo Qodly Server que forneceu a você um **api endpoint** e uma **api key** válida associada a um cargo definido. You must pass the api key in the `api-key` property of the *connectionInfo* object. You can then work with the returned datastore object, with all privileges granted to the associated role. | +| tipo de datastore | Descrição | +| -------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Aplicação 4D remoto | A 4D application available as a remote datastore, i.e.:
  • its web server is launched with http and/or https enabled,
  • its datastore is exposed to REST ([**Expose as REST server**](REST/configuration.md#starting-the-rest-server) option checked).
  • A license can be required (see note) | +| [Aplicação Qodly](https://developer.qodly.com/docs/cloud/getStarted) | Um aplicativo Qodly Server que forneceu a você um **api endpoint** e uma **api key** válida associada a um cargo definido. You must pass the api key in the `api-key` property of the *connectionInfo* object. You can then work with the returned datastore object, with all privileges granted to the associated role. | :::note @@ -43,7 +43,7 @@ Os seguintes datastores remotos são compatíveis com o comando: ::: -Passe em connectionInfo um objeto que desceva o armazém de dados remoto ao que quiser se conectar. It can contain the following properties (all properties are optional except *hostname*): +Passe em connectionInfo um objeto que desceva o armazém de dados remoto ao que quiser se conectar. Pode conter as propriedades abaixo (todas as propriedades são opcionais menos *hostname*): | Propriedade | Tipo | Aplicação 4D remoto | Aplicação Qodly | | ----------- | ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/pop3-new-transporter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/pop3-new-transporter.md index 24e232f8f9eeca..3f1f5ea978c44b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/pop3-new-transporter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/pop3-new-transporter.md @@ -11,7 +11,7 @@ displayed_sidebar: docs | Parâmetro | Tipo | | Descrição | | --------- | ---------------------------------- | - | --------------------------------------------------------------------------------- | | server | Object | → | Informação de servidor de correio | -| Resultado | 4D.POP3Transporter | ← | [POP3 transporter object](../API/POP3TransporterClass.md#pop3-transporter-object) | +| Resultado | 4D.POP3Transporter | ← | [Objeto transporter POP3](../API/POP3TransporterClass.md#pop3-transporter-object) | @@ -29,17 +29,17 @@ The `POP3 New transporter` command ](../API/POP3TransporterClass.md#acceptunsecureconnection)
    | False | -| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Not returned in *[SMTP transporter](../API/POP3TransporterClass.md#smtptransporterobject)* object. | nenhum | -| [](../API/POP3TransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | -| [](../API/POP3TransporterClass.md#connectiontimeout)
    | 30 | -| [](../API/POP3TransporterClass.md#host)
    | *mandatory* | -| [](../API/POP3TransporterClass.md#logfile)
    | nenhum | -| **.password** : Text
    Senha do usuário para autenticação no servidor. Not returned in *[SMTP transporter](../API/POP3TransporterClass.md#smtptransporterobject)* object. | nenhum | -| [](../API/POP3TransporterClass.md#port)
    | 995 | -| [](../API/POP3TransporterClass.md#user)
    | nenhum | +| *server* | Valor padrão (se omitido) | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------- | +| [](../API/POP3TransporterClass.md#acceptunsecureconnection)
    | False | +| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Não retornado no objeto *[SMTP transporter](../API/POP3TransporterClass.md#smtptransporterobject)*. | nenhum | +| [](../API/POP3TransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | +| [](../API/POP3TransporterClass.md#connectiontimeout)
    | 30 | +| [](../API/POP3TransporterClass.md#host)
    | *mandatory* | +| [](../API/POP3TransporterClass.md#logfile)
    | nenhum | +| **.password** : Text
    Senha do usuário para autenticação no servidor. Não retornado no objeto *[SMTP transporter](../API/POP3TransporterClass.md#smtptransporterobject)*. | nenhum | +| [](../API/POP3TransporterClass.md#port)
    | 995 | +| [](../API/POP3TransporterClass.md#user)
    | nenhum | #### Resultados diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/process-activity.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/process-activity.md index ed6f8ff9bb47a7..35897be57199d5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/process-activity.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/process-activity.md @@ -52,24 +52,24 @@ When executed on 4D in remote or local mode, `Process activity` always returns t **Sessions** -The "sessions" property contains a collection of objects describing all running sessions on the server. For a description of session object properties, please refer to the [`Session info`](session-info.md) command. +The "sessions" property contains a collection of objects describing all running sessions on the server. Para obter uma descrição das propriedades do objeto de sessão, consulte o comando [`Session info`](session-info.md). :::note Notes -- You can get the object of a session using the [Session](session.md) command. +- Você pode obter o objeto de uma sessão usando o comando [Session](session.md). - `Process activity` returns remote client sessions, stored procedure session and rest sessions but not Web sessions (limitation). ::: **Processes** -The "processes" property contains a collection of process objects describing all running processes. For a description of process object properties, please refer to the [`Process info`](process-info.md) command. +The "processes" property contains a collection of process objects describing all running processes. Para obter uma descrição das propriedades do objeto de processo, consulte o comando [`Process info`](process-info.md). On the server, the `Process activity` command returns an additional "session" property: -| Additional property | Tipo | Descrição | | -| ------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | - | -| session | Object | The [`.info`](../API/SessionClass.md#info) property of the session in which the process is running. Undefined if the `Processes only` parameter is passed. | | +| Additional property | Tipo | Descrição | | +| ------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | - | +| session | Object | A propriedade [`.info`](../API/SessionClass.md#info) da sessão onde o processo está sendo executado. Undefined if the `Processes only` parameter is passed. | | #### Exemplo 1 diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md index 89fcc2342f6a39..864468b682b4f2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/process-info.md @@ -57,7 +57,7 @@ O objeto retornado contém as propriedades abaixo: | Waiting for internal flag | 4 | | Paused | 5 | -- Possible values for "type": +- Valores possíveis para "type": | Parâmetros | Valor | | ----------------------------- | ----- | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md index 51159b9d84fa69..e00c844440e681 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/session-info.md @@ -44,7 +44,7 @@ O objeto retornado contém as propriedades abaixo: :::note -This command returns the [`.info`](../API/SessionClass.md#info) property of the *sessionID* session. To get information about the current session, you can directly call `Session.info`. +Este comando retorna a propriedade [`.info`](../API/SessionClass.md#info) da sessão *sessionID*. To get information about the current session, you can directly call `Session.info`. ::: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/session.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/session.md index 256a1092e9e107..8b853ecee429b4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/session.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/session.md @@ -63,7 +63,7 @@ Para mais informações em sessões usuários remotos, consulte o parágrafo [** Todos os processos de procedimento armazenado compartilham a mesma sessão de usuário virtual. O objeto `Session` de procedimentos armazenados está disponível em: -- methods called with the [`Execute on server`](../commands-legacy/execute-on-server.md) command, +- métodos chamados com o comando [`Execute on server`](../commands-legacy/execute-on-server.md), - `On Server Startup`, `On Server Shutdown`, `On Backup Startup`, `On Backup Shutdown`, and `On System event` database methods For information on stored procedures virtual user session, please refer to the [4D Server and the 4D Language](https://doc.4d.com/4Dv20R5/4D/20-R5/4D-Server-and-the-4D-Language.300-6932726.en.html) page. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md index 30df8536958a15..b2cbba16c33f72 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/set-allowed-methods.md @@ -26,7 +26,7 @@ displayed_sidebar: docs - The formula editor - allowed methods appear at the end of the list of default commands and can be used in formulas (see section *Description of formula editor*). - The label editor - the allowed methods are listed in the **Apply** menu if they are also shared with the component (see section *Description of label editor*). - Formulas inserted in styled text areas or 4D Write Pro documents through the [ST INSERT EXPRESSION](../commands-legacy/st-insert-expression.md) command - disallowed methods are automatically rejected. -- 4D View Pro documents - by default, if the [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) command has never been called during the session, 4D View Pro formulas only accept methods defined by **SET ALLOWED METHODS**. However, using [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) is recommended. See [Declaring allowed method](../ViewPro/formulas.md#declaring-allowed-methods). +- 4D View Pro documents - by default, if the [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md) command has never been called during the session, 4D View Pro formulas only accept methods defined by **SET ALLOWED METHODS**. No entanto, é recomendável usar [`VP SET ALLOWED METHODS`](../ViewPro/commands/vp-set-allowed-methods.md). Veja [Declarando o método permitido](../ViewPro/formulas.md#declaring-allowed-methods). By default, if you do not use the **SET ALLOWED METHODS** command, no method is enterable (using an unauthorized method in an expression causes an error). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/set-window-document-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/set-window-document-icon.md index c68afc4ec03d29..1354cc6af48520 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/set-window-document-icon.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/set-window-document-icon.md @@ -8,11 +8,11 @@ displayed_sidebar: docs -| Parâmetro | Tipo | | Descrição | -| --------- | -------------------------------------------------- | - | ------------------------ | -| winRef | Integer | → | Window reference number | -| image | Imagem | → | Custom icon | -| file | 4D.File, 4D.Folder | → | File path or folder path | +| Parâmetro | Tipo | | Descrição | +| --------- | -------------------------------------------------- | - | -------------------------------------- | +| winRef | Integer | → | Window reference number | +| image | Imagem | → | Ícone personalizado | +| file | 4D.File, 4D.Folder | → | Caminho do arquivo ou caminho da pasta | @@ -28,7 +28,7 @@ displayed_sidebar: docs The `SET WINDOW DOCUMENT ICON` command allows you to define an icon for windows in multi-window applications using either an *image* and/or *file* with the window reference *winRef*. The icon will be visible within the window itself and on the windows taskbar to help users identify and navigate different windows. -In the case of an MDI application on Windows, you can pass `-1` in *winRef* to set the icon of the main window. In other contexts (macOS or [SDI application](../Menus/sdi.md) on Windows), using -1 does nothing. +In the case of an MDI application on Windows, you can pass `-1` in *winRef* to set the icon of the main window. Em outros contextos (macOS ou [aplicação SDI](../Menus/sdi.md) no Windows), usar -1 não faz nada. - If only *file* is passed, the window uses the icon corresponding to the file type and the file’s path is displayed in the window’s menu. - If only *image* is passed, 4D does not show the path and the passed image is used for the window icon. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/smtp-new-transporter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/smtp-new-transporter.md index 51b00bad40e40a..0408e72c095299 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/smtp-new-transporter.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/smtp-new-transporter.md @@ -11,7 +11,7 @@ displayed_sidebar: docs | Parâmetro | Tipo | | Descrição | | --------- | ---------------------------------- | - | --------------------------------------------------------------------------------- | | server | Object | → | Informação de servidor de correio | -| Resultado | 4D.SMTPTransporter | ← | [SMTP transporter object](../API/SMTPTransporterClass.md#smtp-transporter-object) | +| Resultado | 4D.SMTPTransporter | ← | [Objeto SMTP transporter](../API/SMTPTransporterClass.md#smtp-transporter-object) | @@ -29,7 +29,7 @@ displayed_sidebar: docs The `SMTP New transporter` command configures a new SMTP connection according to the *server* parameter and returns a new [SMTP transporter object](../API/SMTPTransporterClass.md#smtp-transporter-object) object. O objecto transportador devolvido será então normalmente utilizado para enviar mensagens de correio electrónico. -> Este comando não abre qualquer ligação com o servidor SMTP. The SMTP connection is actually opened when the [`.send()`](../API/SMTPTransporterClass.md#send) function is executed. +> Este comando não abre qualquer ligação com o servidor SMTP. A conexão SMTP é realmente aberta quando a função [`.send()`](../API/SMTPTransporterClass.md#send) é executada. > > A coleção SMTP é automaticamente fechada: > @@ -38,21 +38,21 @@ The `SMTP New transporter` command ](../API/SMTPTransporterClass.md#acceptunsecureconnection)
    | False | -| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Not returned in *[SMTP transporter](../API/SMTPTransporterClass.md#smtp-transporter-object)* object. | nenhum | -| [](../API/SMTPTransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | -| [](../API/SMTPTransporterClass.md#bodycharset)
    | `mail mode UTF8` (US-ASCII_UTF8_QP) | -| [](../API/SMTPTransporterClass.md#connectiontimeout)
    | 30 | -| [](../API/SMTPTransporterClass.md#headercharset)
    | `mail mode UTF8` (US-ASCII_UTF8_QP) | -| [](../API/SMTPTransporterClass.md#host)
    | *mandatory* | -| [](../API/SMTPTransporterClass.md#keepalive)
    | True | -| [](../API/SMTPTransporterClass.md#logfile)
    | nenhum | -| **password** : Text
    Senha do usuário para autenticação no servidor. Not returned in *[SMTP transporter](../API/SMTPTransporterClass.md#smtp-transporter-object)* object. | nenhum | -| [](../API/SMTPTransporterClass.md#port)
    | 587 | -| [](../API/SMTPTransporterClass.md#sendtimeout)
    | 100 | -| [](../API/SMTPTransporterClass.md#user)
    | nenhum | +| *server* | Valor padrão (se omitido) | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ | +| [](../API/SMTPTransporterClass.md#acceptunsecureconnection)
    | False | +| .**accessTokenOAuth2**: Text
    .**accessTokenOAuth2**: Objeto
    Cadeia ou objeto token que representa as credenciais de autorização OAuth2. Usado somente com OAUTH2 `authenticationMode`. Se `accessTokenOAuth2` for usado, mas `authenticationMode` for omitido, o protocolo OAuth 2 será usado (se permitido pelo servidor). Não retornado no objeto *[SMTP transporter](../API/SMTPTransporterClass.md#smtp-transporter-object)*. | nenhum | +| [](../API/SMTPTransporterClass.md#authenticationmode)
    | o modo de autenticação mais seguro disponível no servidor é usado | +| [](../API/SMTPTransporterClass.md#bodycharset)
    | `mail mode UTF8` (US-ASCII_UTF8_QP) | +| [](../API/SMTPTransporterClass.md#connectiontimeout)
    | 30 | +| [](../API/SMTPTransporterClass.md#headercharset)
    | `mail mode UTF8` (US-ASCII_UTF8_QP) | +| [](../API/SMTPTransporterClass.md#host)
    | *mandatory* | +| [](../API/SMTPTransporterClass.md#keepalive)
    | True | +| [](../API/SMTPTransporterClass.md#logfile)
    | nenhum | +| **password** : Text
    Senha do usuário para autenticação no servidor. Não retornado no objeto *[SMTP transporter](../API/SMTPTransporterClass.md#smtp-transporter-object)*. | nenhum | +| [](../API/SMTPTransporterClass.md#port)
    | 587 | +| [](../API/SMTPTransporterClass.md#sendtimeout)
    | 100 | +| [](../API/SMTPTransporterClass.md#user)
    | nenhum | #### Resultados diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md index c0007c93c827ec..f9eddb46396618 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/web-server.md @@ -35,7 +35,7 @@ By default, if the *option* parameter is omitted, the command returns a referenc | Parâmetros | Valor | Comentário | | -------------------------------------------- | ----- | ------------------------------------------------------------------------------ | | `Web server database` | 1 | Servidor Web de banco de dados atual (padrão caso omitido) | -| `.keepSession` | 2 | Servidor Web do banco de dados de host de um componente | +| Parâmetros | 2 | Servidor Web do banco de dados de host de um componente | | `Solicitação de recebimento do servidor web` | 3 | Servidor web que recebeu o pedido (servidor Web de destino) | The **returned Web server object** contains the current values of the [Web server properties](../API/WebServerClass.md). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/zip-read-archive.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/zip-read-archive.md index d1dc9f2c6a6a0c..46bd4ce70e772c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/zip-read-archive.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/commands/zip-read-archive.md @@ -36,7 +36,7 @@ If the *zipFile* is password protected, you need to use the optional *password* **Objeto arquivo** -The returned `4D.ZipArchive` object contains a single [`root`](../API/ZipArchiveClass.md#root) property whose value is a `4D.ZipFolder` object. Esta pasta descreve todo o conteúdo do ficheiro ZIP. +O objeto `4D.ZipArchive` retornado contém uma única propriedade [`root`](../API/ZipArchiveClass.md#root) cujo valor é um objeto `4D.ZipFolder`. Esta pasta descreve todo o conteúdo do ficheiro ZIP. #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/settings/client-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/settings/client-server.md index 237125b26af83c..cb076e853525d8 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/settings/client-server.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R7/settings/client-server.md @@ -13,8 +13,8 @@ As páginas Cliente-servidor agrupam parâmetros relacionados ao uso do banco de Essa opção permite que você indique se o banco de dados do 4D Server aparecerá ou não na lista de bancos de dados publicados. -- Cuando esta opción está marcada (por defecto), la base de datos se hace pública y aparece en la lista de bases de datos publicadas (pestaña**Disponible**). -- Quando a opção não estiver marcada, o banco de dados não será tornado público e não aparecerá na lista de bancos de dados publicados. Para conectarse, los usuarios deben introducir manualmente la dirección de la base de datos en la pestaña **Personalizada** de la caja de diálogo de conexión. +- When this option is checked (default), the database is made public and appears in the list of published databases (**Available** tab). +- Quando a opção não estiver marcada, o banco de dados não será tornado público e não aparecerá na lista de bancos de dados publicados. To connect, users must manually enter the address of the database on the **Custom** tab of the connection dialog box. :::note @@ -50,7 +50,7 @@ Para actualizar las otras máquinas clientes que no estén conectadas, basta con O 4D Server usa três portas TCP para comunicações entre servidores internos e clientes: - **SQL Server**: 19812 por defecto (puede modificarse a través de la página "SQL/Configuración" de las Preferencias). -- **Servidor de aplicaciones**: 19813 por defecto (puede modificarse a través de la página "Cliente-Servidor/Configuración" de las Preferencias, ver arriba). +- **Application Server**: 19813 by default (can be modified via the "Client-Server/Configuration" page of the Preferences, see above). - **DB4D Server** (servidor de banco de dados): 19814 por padrão. This port number cannot be modified directly but it always consists of the application server port number + 1.\ When a 4D client connects to 4D Server, it uses the TCP port of the application server (19813 or the port indicated after the colon ':' in the IP address shown in the connection dialog box). Connection to other servers via their respective ports is then automatic; it is no longer necessary to specify them.\ Note that in the case of access via a router or a firewall, the three TCP ports must be opened explicitly. @@ -66,9 +66,9 @@ Quando o Single Sign On (SSO) estiver ativado (veja acima), você deverá preenc #### Camada de rede -Esta caja desplegable contiene 3 opciones de capa de red a elegir entre: **legacy**, **ServerNet** y **QUIC** (sólo en modo proyecto), que se utilizan para manejar las comunicaciones entre 4D Server y las máquinas 4D remotas (clientes). +This drop-down box contains 3 network layer options to choose between: **legacy**, **ServerNet** and **QUIC** (only in project mode), which are used to handle communications between 4D Server and remote 4D machines (clients). -- **Legal**: esta antigua capa de red "Legal" sigue siendo soportada para garantizar la compatibilidad de las bases de datos creadas antes de la v15. Esta capa de red también puede habilitarse por programación utilizando el comando [SET DATABASE PARAMETER](https://doc.4d.com/4Dv20/help/command/page642.html). +- **Legacy**: This former "legacy" network layer is still supported in order to ensure compatibility for databases created prior to v15. This network layer can also be enabled by programming using the [SET DATABASE PARAMETER](https://doc.4d.com/4Dv20/help/command/page642.html) command. - **ServerNet** (por padrão): ativa a camada de rede ServerNet no servidor (disponível desde 4D v15). - **QUIC** (disponible solo en modo proyecto): activa la capa de red QUIC en el servidor. @@ -80,9 +80,9 @@ Esta caja desplegable contiene 3 opciones de capa de red a elegir entre: **legac - O QUIC liga-se automaticamente à porta 19813 tanto para o servidor de aplicações como para o servidor DB4D. - Quando a opção de camada QUIC é selecionada: - Uma mensagem beta e um ícone de alerta são exibidos perto do seletor. - - [los parámetros del tiempo de espera de las conexiones cliente-servidor](#Client-Server-Connections-Timeout) están ocultos - - La casilla de verificación [Encriptar comunicación Cliente-Servidor](#Encrypt-Client-Server-Communications) está oculta (las comunicaciones QUIC son siempre en TLS, sea cual sea su modo seguro). - - **Compatibilidad**: necesita desplegar sus aplicaciones cliente/servidor con 4D v20 o superior antes de cambiar a la capa de red QUIC. + - [Client-server Connections Timeout settings](#Client-Server-Connections-Timeout) are hidden + - The [Encrypt Client-Server communication checkbox](#Encrypt-Client-Server-Communications) is hidden (QUIC communications are always in TLS, whatever your secured mode is.). + - **Compatibility**: You need to deploy your client/server applications with 4D v20 or higher before switching to the QUIC network layer. :::note @@ -100,7 +100,7 @@ Quando um tempo limite for selecionado, o servidor fechará a conexão de um cli #### Registrar clientes na inicialização para Execute On Client -Quando essa opção estiver marcada, todas as máquinas remotas 4D conectando à base de dados podem executar os métodos remotamente. Este mecanismo se detalla en la sección [Procedimientos almacenados en las máquinas cliente](https://doc.4d.com/4Dv19/4D/19/Stored-procedures-on-client-machines.300-5422461.en.html). +Quando essa opção estiver marcada, todas as máquinas remotas 4D conectando à base de dados podem executar os métodos remotamente. This mechanism is detailed in the section [Stored procedures on client machines](https://doc.4d.com/4Dv19/4D/19/Stored-procedures-on-client-machines.300-5422461.en.html). #### Encriptar as comunicações cliente-servidor @@ -110,10 +110,10 @@ Essa opção permite que você ative o modo seguro para comunicações entre a m This setting can be used to globally set the updating mode for the local instance of the **Resources** folder on the connected 4D machines when the **Resources** folder of the database is modified during the session (the **Resources** folder is automatically synchronized on the remote machine each time a session is opened). Estão disponíveis três parâmetros: -- **Nunca**: la carpeta local **Resources** no se actualiza durante la sesión. A notificação enviada pelo servidor é ignorada. La carpeta **Resources** local puede actualizarse manualmente mediante el comando **Update Local Resources** del menú de acción (ver [Uso del explorador de recursos](https://doc.4d.com/4Dv19/4D/19/Using-the-Resources-explorer.300-5416788.en.html)). -- **Siempre**: la sincronización de la carpeta local **Resources** se realiza automáticamente durante la sesión cada vez que el servidor envía una notificación. -- **Preguntar**: cuando la notificación es enviada por el servidor, se muestra una caja de diálogo en las máquinas cliente, indicando la modificación. The user can then accept or refuse the synchronization of the local **Resources** folder.\ - The **Resources** folder centralizes the custom files required for the database interface (translation files, pictures, etc.). Mecanismos automáticos ou manuais podem ser usados para notificar cada cliente quando o conteúdo dessa pasta tiver sido modificado. Para más información, consulte la sección [Gestión de la carpeta Resources](https://doc.4d.com/4Dv19/4D/19/Managing-the-Resources-folder.300-5422466.en.html). +- **Never**: The local **Resources** folder is not updated during the session. A notificação enviada pelo servidor é ignorada. The local **Resources** folder may be updated manually using the **Update Local Resources** action menu command (see [Using the Resources explorer](https://doc.4d.com/4Dv19/4D/19/Using-the-Resources-explorer.300-5416788.en.html)). +- **Always**: The synchronization of the local **Resources** folder is automatically carried out during the session whenever notification is sent by the server. +- **Ask**: When the notification is sent by the server, a dialog box is displayed on the client machines, indicating the modification. The user can then accept or refuse the synchronization of the local **Resources** folder.\ + The **Resources** folder centralizes the custom files required for the database interface (translation files, pictures, etc.). Mecanismos automáticos ou manuais podem ser usados para notificar cada cliente quando o conteúdo dessa pasta tiver sido modificado. For more information, please refer to the [Managing the Resources folder](https://doc.4d.com/4Dv19/4D/19/Managing-the-Resources-folder.300-5422466.en.html) section. ## Página Configuração IP @@ -125,7 +125,7 @@ Essa tabela permite definir regras de controle de acesso para o banco de dados, O comportamento da tabela de configuração é o seguinte: -- A coluna "Allow-Deny" permite selecionar o tipo de regra a ser aplicada (Allow ou Deny) usando um menu pop-up. Para adicionar uma regra, clique no botão Adicionar. Aparece uma nova linha na tabela. El botón **Borrar** permite eliminar la línea actual. +- A coluna "Allow-Deny" permite selecionar o tipo de regra a ser aplicada (Allow ou Deny) usando um menu pop-up. Para adicionar uma regra, clique no botão Adicionar. Aparece uma nova linha na tabela. The **Delete** button lets you remove the current row. - A coluna "IP Address" (Endereço IP) permite definir o(s) endereço(s) IP afetado(s) pela regra. Para especificar um endereço, clique na coluna e digite o endereço da seguinte forma: 123.45.67.89 (formato IPv4) ou 2001:0DB8:0000:85A3:0000:0000:AC1F:8001 (formato IPv6). Você pode usar um caractere \* (asterisco) para especificar endereços do tipo "começa com". Por exemplo, 192.168.\* indica todos os endereços que começam com 192.168. - A aplicação das regras é baseada na ordem de exibição da tabela. Se duas regras forem contraditórias, a prioridade será dada à regra localizada na parte mais alta da tabela. Você pode reordenar as linhas modificando a classificação atual (clique no cabeçalho da coluna para alternar a direção da classificação). Você também pode mover as linhas usando o recurso de arrastar e soltar. - Por motivos de segurança, somente os endereços que realmente correspondem a uma regra terão permissão para se conectar. Em outras palavras, se a tabela contiver apenas uma ou mais regras Deny, todos os endereços serão recusados porque nenhum corresponderá a pelo menos uma regra. Se você quiser negar apenas determinados endereços (e permitir outros), adicione uma regra Allow \* no final da tabela. Por exemplo: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/API/CryptoKeyClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/API/CryptoKeyClass.md index a16011ef3e18f6..cd5ff7483e9918 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/API/CryptoKeyClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/API/CryptoKeyClass.md @@ -71,21 +71,21 @@ A message is signed by a private key and the signature is verified by the corres - Lado bob: ```4d -// Create the message +// Criar a mensagem $message:="hello world" Folder(fk desktop folder).file("message.txt").setText($message) -// Create a key -$type:=New object("type";"RSA") +// Criar uma chave +$type:=New object("type"; "RSA") $key:=4D.CryptoKey.new($type) -// Get the public key and save it +// Obtenha a chave pública e salve-a Folder(fk desktop folder).file("public.pem").setText($key.getPublicKey()) -// Get signature as base64 and save it +// Obtenha a assinatura como base64 e salve-a Folder(fk desktop folder).file("signature").setText($key.sign($message;$type)) -/*Bob sends the message, the public key and the signature to Alice*/ +/*Bob envia a mensagem, a chave pública e a assinatura para Alice*/ ``` - O lado Alice: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md index 9514184804a56b..5b73aec26bf117 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/API/DataClassClass.md @@ -1012,6 +1012,21 @@ Não obterá o resultado esperado porque o valor nulo será avaliado por 4D como $vSingles:=ds. Person.query("spouse = null") //correct syntax ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + + #### Não igual a em colecções Ao pesquisar nos atributos de objectos de classe de dados que contêm colecções, o comparador "não igual a *valor*" (`#` ou `!=`) encontrará elementos em que TODAS as propriedades são diferentes de *valor* (e não aqueles em que PELO MENOS uma propriedade é diferente de *valor*, que é como funcionam outros comparadores). Basicamente, é equivalente a procurar "Not(find collection elements where property equals *value*"). Por exemplo, com as seguintes entidades: diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/API/WebSocketServerClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/API/WebSocketServerClass.md index 7cb5785e94bb51..8b9edfb9c668f9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/API/WebSocketServerClass.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/API/WebSocketServerClass.md @@ -190,19 +190,19 @@ Evento emitido quando ocorre um erro no servidor WebSocket. Este exemplo de um recurso básico de bate-papo ilustra como lidar com conexões de servidor WebSocket em uma classe *WSSHandler* . ```4d -//myWSServerHandler class +//Classe myWSServerHandler Function onConnection($wss : Object; $event : Object) : Object If (VerifyAddress($event.request.remoteAddress)) - // The VerifyAddress method validates the client address - // The returned WSConnectionHandler object will be used - // by 4D to instantiate the 4D.WebSocketConnection object - // related to this connection + // O método VerifyAddress valida o endereço do cliente + // O objeto WSConnectionHandler retornado será usado + // por 4D para instanciar o objeto 4D.WebSocketConnection + // relacionado a essa conexão return cs.myConnectionHandler.new() - // See connectionHandler object + // Veja o objeto connectionHandler Else - // The connection is cancelled + // A conexão é cancelada return Null End if diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/classes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/classes.md index b35f50e86585c4..3947218d79f6c9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/classes.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/classes.md @@ -257,7 +257,7 @@ Class constructor($width : Integer; $height : Integer) This.height:=$height This.width:=$width -// Function definition +// Definição da função Function getArea()->$result : Integer $result:=(This.height)*(This.width) ``` @@ -479,23 +479,22 @@ Uma classe estendida pode chamar o construtor de sua classe pai usando o comando Este exemplo cria uma classe chamada `Square` a partir de uma classe chamada `Polygon`. ```4d -//Class: Square +//Classe: Square //path: Classes/Square.4dm Class extends Polygon -Class constructor ($side : Integer) - // It calls the parent class's constructor with lengths - // provided for the Polygon's width and height +Construtor da classe ($side : Integer) + + // Chama o construtor da classe pai com comprimentos + // fornecidos para a largura e altura do Polygon Super($side;$side) - // In derived classes, Super must be called before you - // can use 'This' + // Em classes derivadas, Super tem de ser chamado antes de + // poder usar 'This' This.name:="Square" - - Function getArea() C_LONGINT($0) $0:=This.height*This.width diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/dt_time.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/dt_time.md index c6964e5d18304b..9de9616162ce62 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/dt_time.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/dt_time.md @@ -35,7 +35,7 @@ Uma hora nula se escreve ?00:00:00? | -------------------- | -------------- | ---------- | ----------------------- | ---------- | | Adição | Hora + Hora | Hora | ?02:03:04? + ?01:02:03? | ?03:05:07? | | Subtração | Hora – Hora | Hora | ?02:03:04? ?02:03:04? | ?01:01:01? | -| Adição | Hora + Número | Number | ?02:03:04? ?01:02:03? | 7449 | +| Adição | Hora + Número | Number | ?02:03:04? ?02:03:04? | 7449 | | Subtração | Hora – Número | Number | ?02:03:04? ?02:03:04? | 7319 | | Multiplicação | Hora * Número | Number | ?02:03:04? ?02:03:04? | 14768 | | Divisão | Hora / Número | Number | ?02:03:04? ?02:03:04? | 3692 | @@ -85,6 +85,9 @@ $t1:=?23:00:00? // São 23:00 p.m. // It is 23:00 p.m. // We want to add 2 and a half hours $t2:=$t1 +?02:30:00? // Com uma simples adição, $t2 é?25:30:00? -$t2:=($t1 +?02:30:00?)%?24:00:00? // $t2 é ?01:30:00? and it is 1:30 a.m. the next morning a manhã seguinte +$t2:=($t1 +?02:30:00?)%?24:00:00? // $t2 é ?01:30:00? // São 23:00 p.m. + // It is 23:00 p.m. + // We want to add 2 and a half hours +$t2:=$t1 +?02:30:00? ``` diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/flow-control.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/flow-control.md index a9d607993bc9cd..d52cf790e37e97 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/flow-control.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/flow-control.md @@ -271,7 +271,7 @@ The formal syntax of the `While... End while` control flow structure is: End while ``` -A `While...End while` loop executes the statements inside the loop as long as the Boolean expression is TRUE. Comprova a expressão booleana ao início do loop e não entra no loop se a expressão for FALSE. +Um loop `While...End while` executa as declarações no loop enquanto a expressão booleana for TRUE. Comprova a expressão booleana ao início do loop e não entra no loop se a expressão for FALSE. The `break` and `continue` statements are [described below](#break-and-continue). @@ -308,9 +308,9 @@ Repeat {continue} Until(Boolean_Expression) ``` -Um ciclo `Repeat...Until` é como um ciclo [While...End while](flow-control.md#whileend-while), exceto que testa a expressão booleana depois do ciclo e não antes. Thus, a `Repeat...Until` loop always executes the loop once, whereas if the Boolean expression is initially False, a `While...End while` loop does not execute the loop at all. +Um ciclo `Repeat...Until` é como um ciclo [While...End while](flow-control.md#whileend-while), exceto que testa a expressão booleana depois do ciclo e não antes. Assim, um loop `Repeat...Until` sempre executa o loop uma vez, enquanto se a expressão booleana for inicialmente Falsa, um loop `While...End while` não executa o loop de forma alguma. -The other difference with a `Repeat...Until` loop is that the loop continues until the Boolean expression is TRUE. +A outra diferença com um loop `Repeat...Until` é que o loop continua até que a expressão booleana seja TRUE. The `break` and `continue` statements are [described below](#break-and-continue). @@ -547,7 +547,7 @@ Aqui são dois exemplos: ## For each... End for each -The formal syntax of the `For each...End for each` control flow structure is: +A sintaxe formal da estrutura de controle de fluxo para `For each...End for each` é: ```4d For each(Current_Item;Expression{;begin{;end}}){Until|While}(Boolean_Expression)} diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/operators.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/operators.md index 66fa5d9b673e3f..8f7fbe36152e43 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/operators.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/Concepts/operators.md @@ -118,12 +118,12 @@ $x1-=5 //$x1=5 $d1:=!2000-11-10! $d1-=10 // $d1=!2000-10-31! -// Division +// Divisão $x3:=10 $x3/=2 // $x3=5 -// Multiplication +// Multiplicação $x2:=10 $x2*=5 // $x2=50 diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormEditor/properties_FormProperties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormEditor/properties_FormProperties.md index b32e6209e83bd7..d9a5d717336f29 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormEditor/properties_FormProperties.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormEditor/properties_FormProperties.md @@ -154,7 +154,7 @@ Apenas os projetos formulário podem ser especificados como subformulários publ ## Guardar geometria -When the option is used, if the window is opened using the `Open form window` command with the `*` parameter, several form parameters are automatically saved by 4D when the window is closed, regardless of how they were modified during the session: +Quando a opção é usada, se a janela for aberta usando o comando `Open form window` com o parâmetro `*`, vários parâmetros de formulário são salvos automaticamente pelo 4D quando a janela é fechada, independentemente de como foram modificados durante a sessão: * a página atual, * a posição, tamanho e visibilidade de cada objecto de formulário (incluindo o tamanho e visibilidade das colunas da lista box). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/button_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/button_overview.md index 933c48ce201b99..77d0ebe9d50e1f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/button_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/button_overview.md @@ -7,21 +7,21 @@ Um botão é um objeto ativo ao qual pode ser atribuída uma ação (*por exempl ![](../assets/en/FormObjects/button_regular.png) -Buttons can fulfill a variety of roles, depending on their style and the action assigned to it. For example, buttons could lead a user through a questionnaire or form to complete, or to make choices. Depending on its settings, a button may be designed to be clicked only once and execute a command, while others may require the user to click more than once to receive the desired result. +Os botões podem desempenhar várias funções, dependendo de seu estilo e da ação atribuída a eles. Por exemplo, os botões podem levar o usuário a preencher um questionário ou formulário, ou a fazer escolhas. Dependendo de suas configurações, um botão pode ser projetado para ser clicado apenas uma vez e executar um comando, enquanto outros podem exigir que o usuário clique mais de uma vez para obter o resultado desejado. ## Manipulação de botões -As ações atribuídas aos botões podem se originar de [ações padrão](properties_Action.md#standard-action) predefinidas ou de métodos objeto personalizados. Examples of typical actions include letting the user accept, cancel, or delete records, copy or paste data, move from page to page in a multi-page form, open, delete, or add records in a subform, handle font attributes in text areas, etc. +As ações atribuídas aos botões podem se originar de [ações padrão](properties_Action.md#standard-action) predefinidas ou de métodos objeto personalizados. Exemplos de ações típicas incluem permitir que o usuário aceite, cancele ou exclua registros, copie ou cole dados, passe de uma página para outra em um formulário de várias páginas, abra, exclua ou adicione registros em um subformulário, manipule atributos de fonte em áreas de texto etc. -Buttons with standard actions are dimmed when appropriate during form execution. For example, if the first record of a table is displayed, a button with the `firstRecord` standard action would appear dimmed. +Os botões com ações padrão são escurecidos quando apropriado durante a execução do formulário. Por exemplo, se o primeiro registro de uma tabela for exibido, um botão com a ação padrão `firstRecord`aparecerá esmaecido. -If you want a button to perform an action that's not available as a standard action, leave the standard action field empty and write an object method to specify the button’s action. Para obter mais informações sobre métodos de objeto e como criá-los e associá-los, consulte [Usando métodos objeto](https://doc.4d.com/4Dv17R5/4D/17-R5/Using-object-methods.300-4163733.en.html). Normally, you would activate the `On Clicked` event and the method would run only when the button is clicked. Pode associar um método a qualquer botão. +Se você quiser que um botão execute uma ação que não esteja disponível como ação padrão, deixe o campo de ação padrão vazio e escreva um método objeto para especificar a ação do botão. Para obter mais informações sobre métodos de objeto e como criá-los e associá-los, consulte [Usando métodos objeto](https://doc.4d.com/4Dv17R5/4D/17-R5/Using-object-methods.300-4163733.en.html). Normalmente, você ativaria o evento `On Clicked` e o método seria executado somente quando o botão fosse clicado. Pode associar um método a qualquer botão. -The [variable](properties_Object.md#variable-or-expression) associated with a button is automatically set to **0** when the form is executed for the first time in Design or Application mode. When the user clicks a button, its variable is set to **1**. +A [variável](properties_Object.md#variable-or-expression) associada a um botão é automaticamente definida como **0** quando o formulário é executado pela primeira vez no modo Desenho ou Aplicação. Quando o usuário clica em um botão, sua variável é definida como **1**. -> A um botão pode ser atribuída uma ação padrão e um método. In this case, if the button is not disabled by the standard action, the method is executed before the standard action. +> A um botão pode ser atribuída uma ação padrão e um método. Nesse caso, se o botão não for desativado pela ação padrão, o método será executado antes da ação padrão. @@ -41,9 +41,9 @@ O estilo de botão Clássico é um botão padrão do sistema (*ou seja*, um ret ![](../assets/en/FormObjects/button_regular.png) -By default, the Regular style has a light gray background with a label in the center. When the cursor hovers over the Regular button style, the border and background color change to demonstrate that it has the focus. In addition to initiating code execution, the Regular button style mimics a mechanical button by quickly changing background color when being clicked. +Por padrão, o estilo Regular tem um fundo cinza-claro com um rótulo no centro. Quando o cursor passa o mouse sobre o estilo de botão Clássico, a borda e a cor de fundo mudam para demonstrar que o foco está no botão. Além de iniciar a execução do código, o estilo de botão Clássico imita um botão mecânico, mudando rapidamente a cor do plano de fundo ao ser clicado. -#### JSON Exemplo +#### Exemplo JSON: ```4d @@ -61,7 +61,7 @@ By default, the Regular style has a light gray background with a label in the ce ``` -Only the Regular and Flat styles offer the [Default Button](properties_Appearance.md#default-button) property. +Apenas os estilos Regular e Flat oferecem a propriedade [Botão Padrão](properties_Appearance.md#default-button). ### Plano @@ -70,9 +70,9 @@ O estilo de botão Plano é um botão padrão do sistema (*ou seja*, um retângu ![](../assets/en/FormObjects/button_flat.png) -By default, the Flat style has a white background with a label in the center, rounded corners, and a minimalist appearance. The Flat button style's graphic nature is particularly useful for forms that will be printed. +Por padrão, o estilo Plano tem um fundo branco com um rótulo no centro, cantos arredondados e uma aparência minimalista. A natureza gráfica do estilo Plano é especialmente útil para os formulários que vão ser impressos. -#### JSON Exemplo +#### Exemplo JSON: ```4d @@ -90,21 +90,21 @@ By default, the Flat style has a white background with a label in the center, ro ``` -Only the Regular and Flat styles offer the [Default Button](properties_Appearance.md#default-button) property. +Apenas os estilos Regular e Plano oferecem a propriedade [Botão padrão](properties_Appearance.md#default-button). ### Barra de ferramentas -The Toolbar button style is primarily intended for integration in a toolbar. Inclui a opção de adicionar um menu pop-up (indicado por um triângulo invertido), sendo geralmente usado para exibir opções adicionais para o usuário selecionar. +O estilo de botão Barra de Ferramentas está pensado principalmente para sua integração em uma barra de ferramentas. Inclui a opção de adicionar um menu pop-up (indicado por um triângulo invertido), sendo geralmente usado para exibir opções adicionais para o usuário selecionar. -By default, the Toolbar style has a transparent background with a label in the center. A aparência do botão pode ser diferente quando o cursor passar por cima dele, dependendo do SO: +Por padrão, o estilo da barra de ferramentas tem um fundo transparente com um rótulo no centro. A aparência do botão pode ser diferente quando o cursor passar por cima dele, dependendo do SO: - - *Windows* - the button is highlighted when it uses the “With Pop-up Menu” property, a triangle is displayed to the right and in the center of the button. + - *Windows* - o botão é destacado quando usa a propriedade "Com menu pop-up", um triângulo é exibido à direita e no centro do botão. ![](../assets/en/FormObjects/button_toolbar.png) - - *macOS* - o destaque do botão nunca aparece. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. + - *macOS* - o destaque do botão nunca aparece. Quando ele usa a propriedade "Com menu pop-up", um triângulo é exibido à direita e na parte inferior do botão. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -124,17 +124,17 @@ By default, the Toolbar style has a transparent background with a label in the c ### Bevel -The Bevel button style combines the appearance of the [Regular](#regular) (*i.e.*, a rectangle with a descriptive label) style with the [Toolbar](#toolbar) style's pop-up menu property option. +O estilo de botão Bevel combina a aparência do estilo [Regular](#regular)*(ou seja,*, um retângulo com um rótulo descritivo) com a opção de propriedade de menu pop-up do estilo [Barra de ferramentas](#toolbar). -By default, the Bevel style has a light gray background with a label in the center. A aparência do botão pode ser diferente quando o cursor passar por cima dele, dependendo do SO: +Por padrão, o estilo Bevel tem um fundo cinza-claro com um rótulo no centro. A aparência do botão pode ser diferente quando o cursor passar por cima dele, dependendo do SO: - - *Windows* - o botão é realçado. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and in the center of the button. + - *Windows* - o botão é realçado. Quando ele usa a propriedade "Com menu pop-up", um triângulo é exibido à direita e no centro do botão. ![](../assets/en/FormObjects/button_bevel.png) - - *macOS* - o destaque do botão nunca aparece. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. + - *macOS* - o destaque do botão nunca aparece. Quando ele usa a propriedade "Com menu pop-up", um triângulo é exibido à direita e na parte inferior do botão. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -154,17 +154,17 @@ By default, the Bevel style has a light gray background with a label in the cent ### Bevel arredondado -O estilo de botão Bevel arredondado é quase idêntico ao estilo [Bevel](#bevel), exceto que, dependendo do sistema operativo, as esquinas do botão podem ser arredondadas. As with the Bevel style, the Rounded Bevel style combines the appearance of the [Regular](#regular) style with the [Toolbar](#toolbar) style's pop-up menu property option. +O estilo de botão Bevel arredondado é quase idêntico ao estilo [Bevel](#bevel), exceto que, dependendo do sistema operativo, as esquinas do botão podem ser arredondadas. Assim como o estilo Bevel, o estilo Rounded Bevel combina a aparência do estilo [Regular](#regular) com a opção de propriedade do menu pop-up do estilo [Barra de ferramentas](#toolbar). -By default, the Rounded Bevel style has a light gray background with a label in the center. A aparência do botão pode ser diferente quando o cursor passar por cima dele, dependendo do SO: +Por padrão, o estilo Bevel arredondado tem um fundo cinza-claro com um rótulo no centro. A aparência do botão pode ser diferente quando o cursor passar por cima dele, dependendo do SO: - - *Windows* - o botão é idêntico ao estilo Bevel. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and in the center of the button. + - *Windows* - o botão é idêntico ao estilo Bevel. Quando ele usa a propriedade "Com menu pop-up", um triângulo é exibido à direita e no centro do botão. ![](../assets/en/FormObjects/button_roundedbevel.png) - - *macOS* - os cantos do botão são arredondados. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. + - *macOS* - os cantos do botão são arredondados. Quando ele usa a propriedade "Com menu pop-up", um triângulo é exibido à direita e na parte inferior do botão. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -184,17 +184,17 @@ By default, the Rounded Bevel style has a light gray background with a label in ### OS X Gradient -The OS X Gradient button style is nearly identical to the [Bevel](#bevel) style except, depending on the OS, it may have a two-toned appearance. As with the Bevel style, the OS X Gradient style combines the appearance of the [Regular](#regular) style with the [Toolbar](#toolbar) style's pop-up menu property option. +The OS X Gradient button style is nearly identical to the [Bevel](#bevel) style except, depending on the OS, it may have a two-toned appearance. Assim como o estilo Bevel, o estilo OS X Gradient combina a aparência do estilo [Regular](#regular) com a opção de propriedade do menu pop-up do estilo [Barra de ferramentas](#toolbar). -By default, the OS X Gradient style has a light gray background with a label in the center. A aparência do botão pode ser diferente quando o cursor passar por cima dele, dependendo do SO: +Por padrão, o estilo OS X Gradient tem um fundo cinza-claro com um rótulo no centro. A aparência do botão pode ser diferente quando o cursor passar por cima dele, dependendo do SO: - *Windows* - o botão é idêntico ao estilo Bevel. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and in the center of the button. ![](../assets/en/FormObjects/button_osxgradient.png) - - *macOS* - the button is displayed as a two-tone system button. When it uses the “With Pop-up Menu” property, a triangle is displayed to the right and at the bottom of the button. + - *macOS* - o botão é exibido como um botão de sistema de dois tons. Quando ele usa a propriedade "Com menu pop-up", um triângulo é exibido à direita e na parte inferior do botão. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -213,17 +213,17 @@ By default, the OS X Gradient style has a light gray background with a label in ### OS X Texturizado -O estilo do botão OS X Textured é quase igual ao estilo [Bevel](#bevel), mas pode possuir uma aparência diferente, dependendo do sistema operativo. As with the Bevel style, the OS X Textured style combines the appearance of the [Regular](#regular) style with the [Toolbar](#toolbar) style's pop-up menu property option. +O estilo do botão OS X Textured é quase igual ao estilo [Bevel](#bevel), mas pode possuir uma aparência diferente, dependendo do sistema operativo. Assim como o estilo Bevel, o estilo OS X Textured combina a aparência do estilo [Regular](#regular) com a opção de propriedade do menu pop-up do estilo [Barra de ferramentas](#toolbar). Como padrão, o estilo OS X Textured aparece como: - - *Windows* - a standard system button with a light gray background with a label in the center. Tem a particularidade de ser transparente no Vista. + - *Windows* - um botão padrão do sistema com um fundo cinza-claro e um rótulo no centro. Tem a particularidade de ser transparente no Vista. ![](../assets/en/FormObjects/button_osxtextured.png) - *macOS* - - um botão sistema padrão que mostra uma mudança de cor cinza claro a cinza escuro. Sua altura está predefinida: não é possível ampliar ou reduzir. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -243,7 +243,7 @@ Como padrão, o estilo OS X Textured aparece como: ### Office XP -The Office XP button style combines the appearance of the [Regular](#regular) style with the [Toolbar](#toolbar) style's transparency and pop-up menu property option. +O estilo de botão Office XP combina a aparência do estilo [Regular](#regular) com a transparência do estilo [Barra de ferramentas](#toolbar) e a opção de propriedade de menu pop-up. As cores (ressaltado e fundo) de um botão com o estilo Office XP são baseadas nos sistemas de cores. A aparência do botão pode ser diferente quando o cursor passar por cima dele, dependendo do SO: @@ -253,7 +253,7 @@ As cores (ressaltado e fundo) de um botão com o estilo Office XP são baseadas - *macOS* - seu fundo é sempre mostrado. -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -274,11 +274,11 @@ As cores (ressaltado e fundo) de um botão com o estilo Office XP são baseadas ### Ajuda -The Help button style can be used to display a standard system help button. By default, the Help style is displayed as a question mark within a circle. +O estilo do botão Ajuda pode ser usado para exibir um botão padrão de ajuda do sistema. Por padrão, o estilo de Ajuda é exibido como um ponto de interrogação dentro de um círculo. ![](../assets/en/FormObjects/button_help.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myButton": { @@ -305,7 +305,7 @@ O estilo de botão Círculo aparece como um botão sistema redondo. Este estilo No Windows, ele é idêntico ao estilo "Nenhum" (o círculo no plano de fundo não é considerado). -#### JSON Exemplo +#### Exemplo JSON: ``` "myButton": { @@ -324,12 +324,12 @@ No Windows, ele é idêntico ao estilo "Nenhum" (o círculo no plano de fundo n ### Personalizado -The Custom button style accepts a personalized background picture and allows managing additional parameters such as icon and margin offset. +O estilo de botão Personalizado aceita uma imagem de fundo personalizada e permite gerenciar parâmetros adicionais, como a margem e o deslocamento do ícone. ![](../assets/en/FormObjects/button_custom.png) -#### JSON Exemplo +#### Exemplo JSON: ```code "myButton": { @@ -354,12 +354,12 @@ The Custom button style accepts a personalized background picture and allows man Todos os botões partilham o mesmo conjunto de propriedades básicas: -[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Button Style](properties_TextAndPicture.md#button-style) - [Class](properties_Object.md#css-class) - [Droppable](properties_Action.md#droppable) - [Focusable](properties_Entry.md#focusable) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Help Tip](properties_Help.md#help-tip) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Image hugs title](properties_TextAndPicture.md#image-hugs-title)(1) - [Left](properties_CoordinatesAndSizing.md#left) - [Not rendered](properties_Display.md#not-rendered) - [Number of States](properties_TextAndPicture.md#number-of-states)(1) - [Object Name](properties_Object.md#object-name) - [Picture pathname](properties_TextAndPicture.md#picture-pathname)(1) - [Right](properties_CoordinatesAndSizing.md#right) - [Shortcut](properties_Entry.md#shortcut) - [Standard action](properties_Action.md#standard-action) - [Title](properties_Object.md#title) - [Title/Picture Position](properties_TextAndPicture.md#titlepicture-position)(1) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Variable or Expression](properties_Object.md#variable-or-expression) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) - [With pop-up menu](properties_TextAndPicture.md#with-pop-up-menu)(2) +[Negrito](properties_Text.md#bold) - [Estilo da linha de borda](properties_BackgroundAndBorder.md#border-line-style) - [Inferior](properties_CoordinatesAndSizing.md#bottom) - [Estilo do botão](properties_TextAndPicture.md#button-style) - [Classe](properties_Object.md#css-class) - [Descartável](properties_Action.md#droppable) - [Focalizável](properties_Entry.md#focusable) - [Fonte](properties_Text.md#font) - [Cor da fonte](properties_Text.md#font-color) - [Tamanho da fonte](properties_Text.md#font-size) - [Altura](properties_CoordinatesAndSizing.md#height) - [Dica de ajuda](properties_Help.md#help-tip) - [Alinhamento horizontal](properties_Text.md#horizontal-alignment) - [Dimensionamento horizontal](properties_ResizingOptions.md#horizontal-sizing) - [Itálico](properties_Text.md#italic) - [Título dos abraços da imagem](properties_TextAndPicture.md#image-hugs-title)(1) - [Esquerda](properties_CoordinatesAndSizing.md#left) - [Não renderizado](properties_Display.md#not-rendered) - [Número de estados](properties_TextAndPicture.md#number-of-states)(1) - [Nome do objeto](properties_Object.md#object-name) - [Nome do caminho da imagem](properties_TextAndPicture.md#picture-pathname)(1) - [Direita](properties_CoordinatesAndSizing.md#right) - [Atalho](properties_Entry.md#shortcut) - [Ação padrão](properties_Action.md#standard-action) - [Título](properties_Object.md#title) - [Posição do título/da imagem](properties_TextAndPicture.md#titlepicture-position)(1) - [Superior](properties_CoordinatesAndSizing.md#top) - [Tipo](properties_Object.md#type) - [Sublinhado](properties_Text.md#underline) - [Variável ou expressão](properties_Object.md#variable-or-expression) - [Dimensionamento vertical](properties_ResizingOptions.md#vertical-sizing) - [Visibilidade](properties_Display.md#visibility) - [Largura](properties_CoordinatesAndSizing.md#width) - [Com menu pop-up](properties_TextAndPicture.md#with-pop-up-menu)(2) > (1) Não suportado pelo estilo [Ajuda](#help).
    (2) Não suportado pelos estilos [Ajuda](#help), [Flat](#flat) e [Regular](#regular). Propriedades específicas adicionais estão disponíveis, dependendo do [estilo botão](#button-styles): -- Custom: [Background pathname](properties_TextAndPicture.md#background-pathname) - [Horizontal Margin](properties_TextAndPicture.md#horizontal-margin) - [Icon Offset](properties_TextAndPicture.md#icon-offset) - [Vertical Margin](properties_TextAndPicture.md#vertical-margin) -- [Default Button](properties_Appearance.md#default-button) (Flat, Regular) +- Personalizado: [Nome do caminho do plano de fundo](properties_TextAndPicture.md#background-pathname) - [Margem horizontal](properties_TextAndPicture.md#horizontal-margin) - [Deslocamento do ícone](properties_TextAndPicture.md#icon-offset) - [Margem vertical](properties_TextAndPicture.md#vertical-margin) +- Plano, Regular: [Botão padrão](properties_Appearance.md#default-button) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/checkbox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/checkbox_overview.md index bc85a5172fa600..a5563f48c756db 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/checkbox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/checkbox_overview.md @@ -33,7 +33,7 @@ Para ativar este terceiro estado, deve selecionar a propriedade [Três estados]( Essa propriedade só está disponível para caixas de seleção regulares e planas associadas a [variáveis ou expressões](properties_Object.md#variable-or-expression) — as caixas de seleção de expressões booleanas não podem usar a propriedade [Três Estados](properties_Display.md#three-states) (uma expressão Booleana não pode estar em um estado intermediário). A variável associada à caixa de seleção devolve o valor 2 quando a caixa estiver no terceiro estado. -> In entry mode, the Three-States check boxes display each state sequentially, in the following order: unchecked / checked / intermediary / unchecked, etc. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. No modo de entrada, as caixas de seleção dos três estados mostram cada estado de forma sequencial na ordem abaixo: sem marcar/marcado/intermediário/sem marcar, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. +> No modo de entrada, as caixas de seleção dos três Estados exibem cada estado sequencialmente, na seguinte ordem: desmarcado / verificado / intermediário / desmarcado, etc. O estado intermediário não é geralmente muito útil no modo entrada; no código, simplesmente force o valor da variável para 0 quando tomar o valor de 2 para passar diretamente de um estado marcado para o estado desmarcado. ## Usar uma ação padrão @@ -89,7 +89,7 @@ O estilo Clássico de caixa de seleção corresponde a um sistema de caixa de se ![](../assets/en/FormObjects/checkbox_regular.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -113,7 +113,7 @@ O estilo de caixa de seleção Plano tem uma aparência minimalista. A natureza ![](../assets/en/FormObjects/checkbox_flat.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -141,7 +141,7 @@ Exemplo com estados selecionado/ não selecionado/ ressaltado: ![](../assets/en/FormObjects/checkbox_toolbar.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -170,7 +170,7 @@ Exemplo com estados selecionado/ não selecionado/ ressaltado: ![](../assets/en/FormObjects/checkbox_bevel.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -198,10 +198,10 @@ Exemplo em macOS: ![](../assets/en/FormObjects/checkbox_roundedbevel_mac.png) -> em Windows, o estilo Bevel arredondado é idêntico ao estilo [Bevel](#bevel). +> Em Windows, o estilo Bevel arredondado é idêntico ao estilo [Bevel](#bevel). -#### JSON Exemplo +#### Exemplo JSON: ```4d "myCheckBox": { @@ -230,7 +230,7 @@ O estilo Gradient OS X tem um fundo cinza claro com um título e se mostra como > Em Windows, este estilo é idêntico ao estilo [Bevel](#bevel). -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -263,7 +263,7 @@ Como padrão, o estilo OS X Textured aparece como: ![](../assets/en/FormObjects/checkbox_osxtextured_mac.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -294,7 +294,7 @@ As cores (ressaltado e fundo) de um botão com o estilo Office XP são baseadas ![](../assets/en/FormObjects/checkbox_officexp_mac.png) -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -332,7 +332,7 @@ O estilo Contrair/Expandir tem o nome "disclosure" na [gramática JSON do estilo ::: -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -367,7 +367,7 @@ O estilo Disclosure tem o nome "roundedDisclosure" na [gramática JSON do estilo ::: -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckBox": { @@ -388,11 +388,11 @@ O estilo de botão Personalizado aceita uma imagem de fundo personalizada e perm - [Rota de acesso ao Fundo](properties_TextAndPicture.md#background-pathname) - [Offset do ícone](properties_TextAndPicture.md#icon-offset) -- [Horizontal Margin](properties_TextAndPicture.md#horizontal-margin) and [Vertical Margin](properties_TextAndPicture.md#vertical-margin) +- [Margem horizontal](properties_TextAndPicture.md#horizontal-margin) e [margem vertical](properties_TextAndPicture.md#vertical-margin) -It is usually associated with a [4-state picture](properties_TextAndPicture.md#number-of-states), that can be used in conjunction with a [4-state](properties_TextAndPicture.md#number-of-states) [background picture](properties_TextAndPicture.md#background-pathname). +Geralmente está associado a uma [imagem de 4 estados](properties_TextAndPicture.md#number-of-states), que pode ser usada em conjunto com uma [imagem de fundo de](properties_TextAndPicture.md#background-pathname) [4 estados](properties_TextAndPicture.md#number-of-states). -#### JSON Exemplo +#### Exemplo JSON: ``` "myCheckbox": { @@ -420,11 +420,11 @@ It is usually associated with a [4-state picture](properties_TextAndPicture.md#n Todas as caixas de seleção partilhar o mesmo conjunto de propriedades básicas: -[Bold](properties_Text.md#bold) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Button Style](properties_TextAndPicture.md#button-style) - [Class](properties_Object.md#css-class) - [Enterable](properties_Entry.md#enterable) - [Expression Type](properties_Object.md#expression-type) - [Focusable](properties_Entry.md#focusable) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Help Tip](properties_Help.md#help-tip) - [Horizontal Alignment](properties_Text.md#horizontal-alignment)(1) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Image hugs title](properties_TextAndPicture.md#image-hugs-title)(2) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Number of States](properties_TextAndPicture.md#number-of-states)(2) - [Object Name](properties_Object.md#object-name) - [Picture pathname](properties_TextAndPicture.md#picture-pathname)(2) - [Right](properties_CoordinatesAndSizing.md#right) - [Save value](properties_Object.md#save-value) - [Shortcut](properties_Entry.md#shortcut) - [Standard action](properties_Action.md#standard-action) - [Title](properties_Object.md#title) - [Title/Picture Position](properties_TextAndPicture.md#titlepicture-position)(2) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Variable or Expression](properties_Object.md#variable-or-expression) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) +[Negrito](properties_Text.md#bold) - [Inferior](properties_CoordinatesAndSizing.md#bottom) - [Estilo do botão](properties_TextAndPicture.md#button-style) - [Classe](properties_Object.md#css-class) - [Digitável](properties_Entry.md#enterable) - [Tipo de expressão](properties_Object.md#expression-type) - [Focalizável](properties_Entry.md#focusable) - [Fonte](properties_Text.md#font) - [Cor da fonte](properties_Text.md#font-color) - [Tamanho da fonte](properties_Text.md#font-size) - [Altura](properties_CoordinatesAndSizing.md#height) - [Dica de ajuda](properties_Help.md#help-tip) - [Alinhamento horizontal](properties_Text.md#horizontal-alignment)(1) - [Dimensionamento horizontal](properties_ResizingOptions.md#horizontal-sizing) - [Título dos abraços da imagem](properties_TextAndPicture.md#image-hugs-title)(2) - [Itálico](properties_Text.md#italic) - [Esquerda](properties_CoordinatesAndSizing.md#left) - [Número de estados](properties_TextAndPicture.md#number-of-states)(2) - [Nome do objeto](properties_Object.md#object-name) - [Nome do caminho da imagem](properties_TextAndPicture.md#picture-pathname)(2) - [Direita](properties_CoordinatesAndSizing.md#right) - [Salvar valor](properties_Object.md#save-value) - [Atalho](properties_Entry.md#shortcut) - [Ação padrão](properties_Action.md#standard-action) - [Título](properties_Object.md#title) - [Posição do título/imagem](properties_TextAndPicture.md#titlepicture-position)(2) - [Superior](properties_CoordinatesAndSizing.md#top) - [Tipo](properties_Object.md#type) - [Sublinhado](properties_Text.md#underline) - [Variável ou expressão](properties_Object.md#variable-or-expression) - [Dimensionamento vertical](properties_ResizingOptions.md#vertical-sizing) - [Visibilidade](properties_Display.md#visibility) - [Largura](properties_CoordinatesAndSizing.md#width) > (1) Not supported by the [Regular](#regular) and [Flat](#flat) styles.
    (2) Not supported by the [Regular](#regular), [Flat](#flat), [Disclosure](#disclosure) and [Collapse/Expand](#collapseexpand) styles. Propriedades específicas adicionais estão disponíveis, dependendo do [estilo botão](#button-styles): -- Custom: [Background pathname](properties_TextAndPicture.md#background-pathname) - [Horizontal Margin](properties_TextAndPicture.md#horizontal-margin) - [Icon Offset](properties_TextAndPicture.md#icon-offset) - [Vertical Margin](properties_TextAndPicture.md#vertical-margin) +- Personalizado: [Nome do caminho do plano de fundo](properties_TextAndPicture.md#background-pathname) - [Margem horizontal](properties_TextAndPicture.md#horizontal-margin) - [Deslocamento do ícone](properties_TextAndPicture.md#icon-offset) - [Margem vertical](properties_TextAndPicture.md#vertical-margin) - [Três Estados](properties_Display.md#three-states) (Flat, Clássico) \ No newline at end of file diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/comboBox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/comboBox_overview.md index eb1279ae1e91bb..050b31e4ed7412 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/comboBox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/comboBox_overview.md @@ -13,13 +13,13 @@ Em outros aspectos, você deve tratar uma combo box como uma área editável que Use o evento `On Data Change` para gerenciar entradas em uma área editável, como faria em qualquer objeto área editável. -You initialize a combo box in exactly the same way as a [drop-down list](dropdownList_Overview.md#overview): using an object, an array, or a choice list. +Você inicializa um combo box exatamente da mesma forma que uma [lista suspensa](dropdownList_Overview.md#overview): usando um objeto, um array ou uma lista de opções. ### Utilização de um objecto > Esta funcionalidade só está disponível em projectos 4D. -An [object](Concepts/dt_object.md) encapsulating a [collection](Concepts/dt_collection) can be used as the data source of a combo box. O objeto deve conter as seguintes propriedades: +Um [objeto](Concepts/dt_object.md) que encapsula uma [coleção](../Concepts/dt_collection.md) pode ser usado como a fonte de dados de um combo box. O objeto deve conter as seguintes propriedades: | Propriedade | Tipo | Descrição | | -------------- | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | @@ -28,24 +28,24 @@ An [object](Concepts/dt_object.md) encapsulating a [collection](Concepts/dt_coll Se o objeto contiver outras propriedades, estas são ignoradas. -When the user enters text into the combo box, the `currentValue` property of the object gets the entered text. +Quando o usuário insere um texto na caixa de combinação, a propriedade `currentValue` do objeto obtém o texto inserido. ### Usar um array -Please refer to **Using an array** in the [drop-down list page](dropdownList_Overview.md#using-an-array) for information about how to initialize the array. +Por favor, consulte **Usando um array** na [página da lista suspensa](dropdownList_Overview.md#using-an-array) para informações sobre como inicializar o array. Um combo box é iniciado em exatamente da mesma forma que uma lista drop down Se o usuário digitar texto em uma combo box, preenche o 0imo elemento do array. ### Utilizar uma lista de seleção -If you want to use a combo box to manage the values of an input area (listed field or variable), 4D lets you reference the field or variable directly as the form object's data source. Isso facilita gerenciar variáveis/campos listados. +Se quiser usar uma caixa de combinação para gerenciar os valores de uma área de entrada (campo listado ou variável), 4D permite referenciar o campo ou a variável diretamente como a fonte de dados do objeto de formulário. Isso facilita gerenciar variáveis/campos listados. > Se usar uma lista hierárquica, só o primeiro nível é mostrado e pode ser selecionado. -To associate a combo box with a field or variable, you can just enter the name of the field or variable directly in the [Variable or Expression](properties_Object.md#variable-or-expression) of the form object in the Property List. +Para associar uma caixa de combinação a um campo ou variável, basta digitar o nome do campo ou da variável diretamente em [Variável ou Expressão](properties_Object.md#variable-or-expression) do objeto de formulário na Lista de propriedades. -When the form is executed, 4D automatically manages the combo box during input or display: when a user chooses a value, it is saved in the field; this field value is shown in the combo box when the form is displayed: +Quando o formulário é executado, 4D gerencia automaticamente a caixa de combinação durante a entrada ou exibição: quando um usuário escolhe um valor, ele é salvo no campo; esse valor de campo é mostrado na caixa de combinação quando o formulário é exibido: -Please refer to **Using a choice** in the [drop-down list page](dropdownList_Overview.md#using-a-choice-list) for more information. +Consulte **Usando uma opção** na [página da lista suspensa](dropdownList_Overview.md#using-a-choice-list) para obter mais informações. ## Opções @@ -57,4 +57,4 @@ Objetos do tipo combo box aceitam duas opções específicas referentes a listas > > > Associating a [list of required values](properties_RangeOfValues.md#required-list) is not available for combo boxes. Em uma interface, se um objeto precisar propor uma lista finita de valores exigidos, então deve usar um objeto [do tipo menu Pop-up](dropdownList_Overview.md#overview) . ## Propriedades compatíveis -[Formato Alfa](properties_Display.md#alpha-format) - [Negrito](properties_Text.md#bold) - [Inferior](properties_CoordinatesAndSizing.md#bottom) - \[Estilo de botão\](properties_TextAndPicture. md#button-style) - [Lista de opções](properties_DataSource.md#choice-list) - [Classe](properties_Object.md#css-class) - [Formato de data](properties_Display.md#date-format) - \[Focável\](properties_Entry. md#focusable) - [Fonte](properties_Text.md#font) - [Cor da fonte](properties_Text.md#font-color) - [Tamanho da fonte](properties_Text.md#font-size) - \[Altura\](properties_CoordinatesAndSizing. md#height) - [Conselho de ajuda](properties_Help.md#help-tip) - [Tamanho horizontal](properties_ResizingOptions.md#horizontal-sizing) - \[Itálica\](properties_Text. md#italic) - [Esquerda](properties_CoordinatesAndSizing.md#left) - [Não renderizado](properties_Display.md#not-rendered) - [Nome de objeto](properties_Object.md#object-name) - \[Direita\](properties_CoordinatesAndSizing. md#right) - [Ação padrão](properties_Action.md#standard-action) - [Formato de hora](properties_Display.md#time-format) - \[Top\](properties_CoordinatesAndSizing. md#top) - [Tipo](properties_Object.md#type) - [Sublinhado](properties_Text.md#underline) - [Variável ou Expressão](properties_Object.md#variable-or-expression) - \[Tamanho vertical\](properties_ResizingOptions. md#vertical-sizing) - [Visibilidade](properties_Display.md#visibility) - [Largura](properties_CoordinatesAndSizing.md#width) \ No newline at end of file +[Formato Alfa](properties_Display.md#alpha-format) - [Negrito](properties_Text.md#bold) - [Inferior](properties_CoordinatesAndSizing.md#bottom) - [Lista de opções](properties_DataSource.md#choice-list) - [Classe](properties_Object.md#css-class) - [Formato de data](properties_Display.md#date-format) - [Tipo de expressão](properties_Object.md#expression-type) - [Fonte](properties_Text.md#font) - [Cor da fonte](properties_Text.md#font-color) - [Tamanho da fonte](properties_Text.md#font-size) - [Altura](properties_CoordinatesAndSizing.md#height) - [Conselho de ajuda](properties_Help.md#help-tip) - [Tamanho horizontal](properties_ResizingOptions.md#horizontal-sizing) - [Itálica](properties_Text.md#italic) - [Esquerda](properties_CoordinatesAndSizing.md#left) - [Nome de objeto](properties_Object.md#object-name) - [Direita](properties_CoordinatesAndSizing.md#right) - [Formato de hora](properties_Display.md#time-format) - [Superior](properties_CoordinatesAndSizing.md#top) - [Tipo](properties_Object.md#type) - [Sublinhado](properties_Text.md#underline) - [Variável ou Expressão](properties_Object.md#variable-or-expression) - [Tamanho vertical](properties_ResizingOptions.md#vertical-sizing) - [Visibilidade](properties_Display.md#visibility) - [Largura](properties_CoordinatesAndSizing.md#width) \ No newline at end of file diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/groupBox.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/groupBox.md index ddb219d592039d..e78f64757c53d3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/groupBox.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/groupBox.md @@ -10,7 +10,7 @@ A group box is a static object that allows you to visually assemble multiple for -#### JSON Exemplo +#### Exemplo JSON: ``` "myGroup": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/input_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/input_overview.md index e501bb76a735e2..506a9d2eac36a2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/input_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/input_overview.md @@ -15,7 +15,7 @@ Além disso, as entradas podem ser [editáveis ou não](properties_Entry.md#ente Pode gerir os dados com objectos ou formulários [métodos](Concepts/methods.md). -### JSON Exemplo +### Exemplo JSON: ```4d "myText": { @@ -39,7 +39,7 @@ Pode gerir os dados com objectos ou formulários [métodos](Concepts/methods.md) -[Allow font/color picker](properties_Text.md#allow-fontcolor-picker) - [Alpha Format](properties_Display.md#alpha-format) - [Auto Spellcheck](properties_Entry.md#auto-spellcheck) - [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Bold](properties_Text.md#bold) - [Boolean format](properties_Display.md#text-when-falsetext-when-true) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Choice List](properties_DataSource.md#choice-list) - [Class](properties_Object.md#css-class) - [Context Menu](properties_Entry.md#context-menu) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Date Format](properties_Display.md#date-format) - [Default value](properties_RangeOfValues.md#default-value) - [Draggable](properties_Action.md#draggable) - [Droppable](properties_Action.md#droppable) - [Enterable](properties_Entry.md#enterable) - [Entry Filter](properties_Entry.md#entry-filter) - [Excluded List](properties_RangeOfValues.md#excluded-list) - [Expression type](properties_Object.md#expression-type) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Hide focus rectangle](properties_Appearance.md#hide-focus-rectangle) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Scroll Bar](properties_Appearance.md#horizontal-scroll-bar) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Multiline](properties_Entry.md#multiline) - [Multi-style](properties_Text.md#multi-style) - [Number Format](properties_Display.md#number-format) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Picture Format](properties_Display.md#picture-format) - [Placeholder](properties_Entry.md#placeholder) - [Print Frame](properties_Print.md#print-frame) - [Required List](properties_RangeOfValues.md#required-list) - [Right](properties_CoordinatesAndSizing.md#right) - [Selection always visible](properties_Entry.md#selection-always-visible) - [Store with default style tags](properties_Text.md#store-with-default-style-tags) - [Text when False/Text when True](properties_Display.md#text-when-falsetext-when-true) - [Time Format](properties_Display.md#time-format) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Variable or Expression](properties_Object.md#variable-or-expression) - [Vertical Scroll Bar](properties_Appearance.md#vertical-scroll-bar) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) - [Wordwrap](properties_Display.md#wordwrap) +[Permitir seletor de fonte/cor](properties_Text.md#allow-fontcolor-picker) - [Formato alfa](properties_Display.md#alpha-format) - [Verificação ortográfica automática](properties_Entry.md#auto-spellcheck) - [Cor de fundo](properties_BackgroundAndBorder.md#background-color--fill-color) - [Negrito](properties_Text.md#bold) - [Formato booleano](properties_Display.md#text-when-falsetext-when-true) - [Estilo de linha de borda](properties_BackgroundAndBorder.md#border-line-style) - [Inferior](properties_CoordinatesAndSizing.md#bottom) - [Lista de opções](properties_DataSource.md#choice-list) - [Classe](properties_Object.md#css-class) - [Menu de contexto](properties_Entry.md#context-menu) - [Raio de canto](properties_CoordinatesAndSizing.md#corner-radius) - [Formato de data](properties_Display.md#date-format) - [Valor padrão](properties_RangeOfValues.md#default-value) - [Arrastável](properties_Action.md#draggable) - [Descartável](properties_Action.md#droppable) - [Entrável](properties_Entry.md#enterable) - [Filtro de entrada](properties_Entry.md#entry-filter) - [Lista de excluídos](properties_RangeOfValues.md#excluded-list) - [Tipo de expressão](properties_Object.md#expression-type) - [Cor de preenchimento](properties_BackgroundAndBorder.md#background-color--fill-color) - [Fonte](properties_Text.md#font) - [Cor da fonte](properties_Text.md#font-color) - [Tamanho da fonte](properties_Text.md#font-size) - [Altura](properties_CoordinatesAndSizing.md#height) - [Ocultar retângulo de foco](properties_Appearance.md#hide-focus-rectangle) - [Alinhamento horizontal](properties_Text.md#horizontal-alignment) - [Barra de rolagem horizontal](properties_Appearance.md#horizontal-scroll-bar) - [Dimensionamento horizontal](properties_ResizingOptions.md#horizontal-sizing) - [Itálico](properties_Text.md#italic) - [Esquerda](properties_CoordinatesAndSizing.md#left) - [Multilinha](properties_Entry.md#multiline) - [Multi-estilo](properties_Text.md#multi-style) - [Formato de número](properties_Display.md#number-format) - [Nome do objeto](properties_Object.md#object-name) - [Orientação](properties_Text.md#orientation) - [Formato de imagem](properties_Display.md#picture-format) - [Placeholder](properties_Entry.md#placeholder) - [Quadro de impressão](properties_Print.md#print-frame) - [Lista obrigatória](properties_RangeOfValues.md#required-list) - [Direita](properties_CoordinatesAndSizing.md#right) - [Seleção sempre visível](properties_Entry.md#selection-always-visible) - [Armazenar com tags de estilo padrão](properties_Text.md#store-with-default-style-tags) - [Texto quando falso/Texto quando verdadeiro](properties_Display.md#text-when-falsetext-when-true) - [Formato de hora](properties_Display.md#time-format) - [Superior](properties_CoordinatesAndSizing.md#top) - [Tipo](properties_Object.md#type) - [Sublinhado](properties_Text.md#underline) - [Variável ou expressão](properties_Object.md#variable-or-expression) - [Barra de rolagem vertical](properties_Appearance.md#vertical-scroll-bar) - [Dimensionamento vertical](properties_ResizingOptions.md#vertical-sizing) - [Visibilidade](properties_Display.md#visibility) - [Largura](properties_CoordinatesAndSizing.md#width) - [Envolvimento de palavras](properties_Display.md#wordwrap) --- diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/list_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/list_overview.md index e9f53388bc9a81..3b9fbc64930037 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/list_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/list_overview.md @@ -41,9 +41,9 @@ Each representation of the list has its own specific characteristics and shares - O estado expandido/recolhido dos seus itens, - A posição do cursor de rolagem. -The other characteristics (font, font size, style, entry control, color, list contents, icons, etc.) are common to all the representations and cannot be modified separately. Consequently, when you use commands based on the expanded/collapsed configuration or the current item, for example `Count list items` (when the final `*` parameter is not passed), it is important to be able to specify the representation to be used without any ambiguity. +The other characteristics (font, font size, style, entry control, color, list contents, icons, etc.) are common to all the representations and cannot be modified separately. Consequentemente, quando você usa comandos com base na configuração expandida/colapsada ou no item atual, por exemplo, `Count list items` (quando o parâmetro final `*` não é passado), é importante poder especificar a representação a ser usada sem nenhuma ambiguidade. -You must use the `ListRef` ID with language commands when you want to specify the hierarchical list found in memory. On the other hand, if you want to specify the representation of a hierarchical list object at the form level, you must use the object name (string type) in the command, via the standard syntax (*;"ListName", etc.). +You must use the `ListRef` ID with language commands when you want to specify the hierarchical list found in memory. Por outro lado, se você quiser especificar a representação de um objeto lista hierárquica no nível do formulário, deverá usar o nome do objeto (tipo string) no comando, por meio da sintaxe padrão (*; "ListName", etc.). > In the case of commands that set properties, the syntax based on the object name does not mean that only the form object specified will be modified by the command, but rather that the action of the command will be based on the state of this object. The common characteristics of hierarchical lists are always modified in all of their representations. Por exemplo, se executa: @@ -81,7 +81,7 @@ As with other object property management commands, it is possible to use the “ ## Comandos genéricos utilizáveis com listas hierárquicas -It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. You can pass to these commands either the object name of the hierarchical list (using the * parameter), or its variable name (containing the ListRef value): +It is possible to modify the appearance of a hierarchical list form objects using several generic 4D commands. Você pode passar para esses comandos o nome do objeto da lista hierárquica (usando o parâmetro *) ou o nome da variável (contendo o valor ListRef): - `OBJECT SET FONT` - `OBJECT SET FONT STYLE` diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/listbox_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/listbox_overview.md index 99f00f286a3c57..0117514fe06401 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/listbox_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/listbox_overview.md @@ -56,7 +56,7 @@ Há vários tipos de list boxes com seus próprios comportamentos e propriedades - **Arrays**: cada coluna é conectada a um array 4D. List boxes baseadas em array podem ser exibidas como [list boxes hierárquicas](listbox_overview.md#hierarchical-list-boxes). - **Seleção** (**Seleção atual** ou **Seleções nomeadas**): cada coluna é conectada a uma expressão (por exemplo um campo) que é avaliado para cada registro da seleção. - **Coleção ou seleção de entidade**: cada coluna é conectada a uma expressão que é avaliada para todo elemento da coleção ou toda entidade da seleção de entidade. -> It is not possible to combine different list box types in the same list box object. A fonte de dados é estabelecida quando a list box é criada. Não é mais possível modificar por programação. +> Não é possível combinar diferentes tipos de list box no mesmo objeto list box. A fonte de dados é estabelecida quando a list box é criada. Não é mais possível modificar por programação. ### Gerenciando list boxes @@ -242,7 +242,7 @@ Propriedades compatíveis dependem do tipo de list box. #### Propriedades adicionais -Form events on list box or list box column objects may return the following additional properties: +Os eventos de formulário em objetos de caixa de listagem ou de coluna de caixa de listagem podem retornar as seguintes propriedades adicionais: | Propriedade | Tipo | Descrição | | -------------------- | ------------- | ---------------------------------------------------------------------------- | @@ -260,7 +260,7 @@ Form events on list box or list box column objects may return the following addi | oldSize | inteiro longo | Tamanho anterior (em pixéis) da coluna ou linha | | row | inteiro longo | Número da linha | | Alinhamento vertical | inteiro longo | Positivo se a deslocação for para baixo, negativo se for para cima | -> If an event occurs on a "fake" column or row that doesn't exist, an empty string is typically returned. +> Se um evento ocorrer em uma coluna ou linha "falsa" que não exista, é normalmente retornada uma cadeia de caracteres vazia. @@ -279,7 +279,7 @@ Pode estabelecer propriedades padrão (texto, cor de fundo, etc) para cada colun ### Propriedades específicas de coluna -[Alpha Format](properties_Display.md#alpha-format) - [Alternate Background Color](properties_BackgroundAndBorder.md#alternate-background-color) - [Automatic Row Height](properties_CoordinatesAndSizing.md#automatic-row-height) - [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Background Color Expression](properties_BackgroundAndBorder.md#background-color-expression) - [Bold](properties_Text.md#bold) - [Choice List](properties_DataSource.md#choice-list) - [Class](properties_Object.md#css-class) - [Data Type (selection and collection list box column)](properties_DataSource.md#data-type) - [Date Format](properties_Display.md#date-format) - [Default Values](properties_DataSource.md#default-list-of-values) - [Display Type](properties_Display.md#display-type) - [Enterable](properties_Entry.md#enterable) - [Entry Filter](properties_Entry.md#entry-filter) - [Excluded List](properties_RangeOfValues.md#excluded-list) - [Expression](properties_DataSource.md#expression) - [Expression Type (array list box column)](properties_Object.md#expression-type) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Padding](properties_CoordinatesAndSizing.md#horizontal-padding) - [Italic](properties_Text.md#italic) - [Invisible](properties_Display.md#visibility) - [Maximum Width](properties_CoordinatesAndSizing.md#maximum-width) - [Method](properties_Action.md#method) - [Minimum Width](properties_CoordinatesAndSizing.md#minimum-width) - [Multi-style](properties_Text.md#multi-style) - [Number Format](properties_Display.md#number-format) - [Object Name](properties_Object.md#object-name) - [Picture Format](properties_Display.md#picture-format) - [Resizable](properties_ResizingOptions.md#resizable) - [Required List](properties_RangeOfValues.md#required-list) - [Row Background Color Array](properties_BackgroundAndBorder.md#row-background-color-array) - [Row Font Color Array](properties_Text.md#row-font-color-array) - [Row Style Array](properties_Text.md#row-style-array) - [Save as](properties_DataSource.md#save-as) - [Style Expression](properties_Text.md#style-expression) - [Text when False/Text when True](properties_Display.md#text-when-falsetext-when-true) - [Time Format](properties_Display.md#time-format) - [Truncate with ellipsis](properties_Display.md#truncate-with-ellipsis) - [Underline](properties_Text.md#underline) - [Variable or Expression](properties_Object.md#variable-or-expression) - [Vertical Alignment](properties_Text.md#vertical-alignment) - [Vertical Padding](properties_CoordinatesAndSizing.md#vertical-padding) - [Width](properties_CoordinatesAndSizing.md#width) - [Wordwrap](properties_Display.md#wordwrap) +[Formato alfa](properties_Display.md#alpha-format) - [Cor de fundo alternativa](properties_BackgroundAndBorder.md#alternate-background-color) - [Altura automática da linha](properties_CoordinatesAndSizing.md#automatic-row-height) - [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Expressão de cor de fundo](properties_BackgroundAndBorder.md#background-color-expression) - [Negrito](properties_Text.md#bold) - [Lista de opções](properties_DataSource.md#choice-list) - [Classe](properties_Object.md#css-class) - [Tipo de dados (coluna de list box seleção e coleção)](properties_DataSource.md#data-type) - [Formato Data](properties_Display.md#date-format) - [Valores padrão](properties_DataSource.md#default-list-of-values) - [Tipo exibição](properties_Display.md#display-type) - [Digitável](properties_Entry.md#enterable) - [Filtro de entrada](properties_Entry.md#entry-filter) - [Lista de excluídos](properties_RangeOfValues.md#excluded-list) - [Expressão](properties_DataSource.md#expression) - [Tipo de expressão (coluna list box array)](properties_Object.md#expression-type) - [Fonte](properties_Text.md#font) - [Cor da fonte](properties_Text.md#font-color) - [Alinhamento horizontal](properties_Text.md#horizontal-alignment) - [Preenchimento horizontal](properties_CoordinatesAndSizing.md#horizontal-padding) - [Itálico](properties_Text.md#italic) - [Invisível](properties_Display.md#visibility) - [Largura máxima](properties_CoordinatesAndSizing.md#maximum-width) - [Método](properties_Action.md#method) - [Largura mínima](properties_CoordinatesAndSizing.md#minimum-width) - [Multi-estilo](properties_Text.md#multi-style) - [Formato número](properties_Display.md#number-format) - [Nome objeto](properties_Object.md#object-name) - [Formato imagem](properties_Display.md#picture-format) - [Redimensionável](properties_ResizingOptions.md#resizable) - [Lista obrigatória](properties_RangeOfValues.md#required-list) - [Array de cores de fundo de linha](properties_BackgroundAndBorder.md#row-background-color-array) - [Array de cores de fonte de linha](properties_Text.md#row-font-color-array) - [Array de estilo de linha](properties_Text.md#row-style-array) - [Salvar como](properties_DataSource.md#save-as) - [Expressão de estilo](properties_Text.md#style-expression) - [Texto quando False/Texto quando True](properties_Display.md#text-when-falsetext-when-true) - [Formato de hora](properties_Display.md#time-format) - [Truncar com reticências](properties_Display.md#truncate-with-ellipsis) - [Sublinhado](properties_Text.md#underline) - [Variável ou expressão](properties_Object.md#variable-or-expression) - [Alinhamento vertical](properties_Text.md#vertical-alignment) - [Preenchimento Vertical](properties_CoordinatesAndSizing.md#vertical-padding) - [Largura](properties_CoordinatesAndSizing.md#width) - [Envolvimento de palavras](properties_Display.md#wordwrap) ### Eventos formulário suportados @@ -354,7 +354,7 @@ Quando o comando `OBJECT SET VISIBLE` for usado com um rodapé, é aplicado a to ### Propriedades específicas do rodapé -[Alpha Format](properties_Display.md#alpha-format) - [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Bold](properties_Text.md#bold) - [Class](properties_Object.md#css-class) - [Date Format](properties_Display.md#date-format) - [Expression Type](properties_Object.md#expression-type) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Help Tip](properties_Help.md#help-tip) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Padding](properties_CoordinatesAndSizing.md#horizontal-padding) - [Italic](properties_Text.md#italic) - [Number Format](properties_Display.md#number-format) - [Object Name](properties_Object.md#object-name) - [Picture Format](properties_Display.md#picture-format) - [Time Format](properties_Display.md#time-format) - [Truncate with ellipsis](properties_Display.md#truncate-with-ellipsis) - [Underline](properties_Text.md#underline) - [Variable Calculation](properties_Object.md#variable-calculation) - [Variable or Expression](properties_Object.md#variable-or-expression) - [Vertical Alignment](properties_Text.md#vertical-alignment) - [Vertical Padding](properties_CoordinatesAndSizing.md#vertical-padding) - [Width](properties_CoordinatesAndSizing.md#width) - [Wordwrap](properties_Display.md#wordwrap) +[Formato alfa](properties_Display.md#alpha-format) - [Cor do plano de fundo](properties_BackgroundAndBorder.md#background-color--fill-color) - [Negrito](properties_Text.md#bold) - [Classe](properties_Object.md#css-class) - [Formato de data](properties_Display.md#date-format) - [Tipo de expressão](properties_Object.md#expression-type) - [Fonte](properties_Text.md#font) - [Cor da fonte](properties_Text.md#font-color) - [Dica de ajuda](properties_Help.md#help-tip) - [Alinhamento horizontal](properties_Text.md#horizontal-alignment) - [Preenchimento horizontal](properties_CoordinatesAndSizing.md#horizontal-padding) - [Itálico](properties_Text.md#italic) - [Formato de número](properties_Display.md#number-format) - [Nome do objeto](properties_Object.md#object-name) - [Formato de imagem](properties_Display.md#picture-format) - [Formato de hora](properties_Display.md#time-format) - [Truncar com reticências](properties_Display.md#truncate-with-ellipsis) - [Sublinhado](properties_Text.md#underline) - [Cálculo de variável](properties_Object.md#variable-calculation) - [Variável ou expressão](properties_Object.md#variable-or-expression) - [Alinhamento vertical](properties_Text.md#vertical-alignment) - [Preenchimento vertical](properties_CoordinatesAndSizing.md#vertical-padding) - [Largura](properties_CoordinatesAndSizing.md#width) - [Envolvimento de palavras](properties_Display.md#wordwrap) ## Gerenciar entrada @@ -421,7 +421,7 @@ Seleções são gerenciadas diretamente, dependendo de se a list box é a basead - **List box de tipo coleção/seleção de entidades**: as seleções se gerenciam através das propriedades de list box dedicado: - [Elemento atual](properties_DataSource.md#current-item) é um objeto que receberá o elemento/a entidade selecionado - - [Selected Items](properties_DataSource.md#selected-items) is a collection/entity selection object of selected items + - [Itens Selecionados](properties_DataSource.md#selected-items) é um objeto de seleção de coleção/entidade dos itens selecionados - [Posição do elemento atual](properties_DataSource.md#current-item-position) devolve a posição do elemento ou da entidade selecionada. - **List box de tipo array**: o comando `LISTBOX SELECT ROW` pode utilizar-se para selecionar uma ou mais linhas de list box por programação. A [variável associada ao objeto List box](propiedades_Objeto.md#variable-o-expresión) se utiliza para obter, definir ou armazenar as seleções de linhas no objeto. Esta variável corresponde a um array de booleanos que é criado e mantido automaticamente por 4D. O tamanho deste array vem determinado pelo tamanho do list box: contém o mesmo número de elementos que o menor array associado às colunas. Cada elemento deste array contém `True` se selecionar a línha correspondente e `False` em caso contrário. 4D atualiza o conteúdo deste array em função das ações de usuário. Do lado contrário, pode mduar o valor dos elementos array para mudar a seleção na list box. Mas não se pode inserir nem apagar linhas nesse array; nem se pode reescrever as linhas. O comando `Count in array` pode ser usado para encontrar o número de líneas selecionadas. Por exemplo, este método permite inverter a seleção da primeira línha de list box (tipo array): @@ -537,10 +537,10 @@ O suporte de ordenação padrão depende do tipo de list box: | Tipo de list box | Suporte de ordenação padrão | Comentários | | ----------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------ | -| Uma coleção de objetos | Sim |
    • As colunas "This.a" ou "This.a.b" podem ser ordenadas.
    • The [list box source property](properties_Object.md#variable-or-expression) must be an [assignable expression](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
    | -| Colecção de valores escalares | Não | Use custom sort with [`orderBy()`](../API/CollectionClass.md#orderby) function | -| Seleção de entidades | Sim |
  • The [list box source property](properties_Object.md#variable-or-expression) must be an [assignable expression](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
  • Supported: sorts on object attribute properties (e.g. "This.data.city" when "data" is an object attribute)
  • Suportado: ordena por atributos relacionados (por exemplo, "This.company.name")
  • Not supported: sorts on object attribute properties through related attributes (e.g. "This.company.data.city"). For this, you need to use custom sort with [`orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) function (see example below)
  • | -| Selecção actual | Sim | Only simple expressions are sortable (e.g. `[Table_1]Field_2`) | +| Uma coleção de objetos | Sim |
    • As colunas "This.a" ou "This.a.b" podem ser ordenadas.
    • A [propriedade source do list box](properties_Object.md#variable-or-expression) deve ser uma [expressão atribuível](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
    | +| Colecção de valores escalares | Não | Use a classificação personalizada com a função[`orderBy()`](../API/CollectionClass.md#orderby) | +| Seleção de entidades | Sim |
  • A [propriedade source do list box](properties_Object.md#variable-or-expression) deve ser uma [expressão atribuível](../Concepts/quick-tour.md#assignable-vs-non-assignable-expressions).
  • Suportado: classifica propriedades de atributos de objetos (por exemplo, "This.data.city" quando "data" é um atributo de objeto)
  • Suportado: ordena por atributos relacionados (por exemplo, "This.company.name")
  • Não suportado: classifica propriedades de atributos de objetos por meio de atributos relacionados (por exemplo, "This.company.data.city"). Para isso, você precisa usar a classificação personalizada com a função [`orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) (veja o exemplo abaixo)
  • | +| Selecção actual | Sim | Somente expressões simples podem ser classificadas (por exemplo, `[Table_1]Field_2`) | | Seleção temporal | Não | | | Arrays | Sim | As colunas ligadas a arrays de imagens e ponteiros não podem ser ordenadas | @@ -554,15 +554,15 @@ O desenvolvedor pode estabelecer ordenações personalizadas com o comando `LIST As ordenações personalizadas permitem-lhe: - efetuar ordenações multinível em várias colunas, graças ao comando [`LISTBOX SORT COLUMNS`](https://doc.4d.com/4dv19/help/command/en/page916.html), -- use functions such as [`collection.orderByFormula()`](../API/CollectionClass.md#orderbyformula) or [`entitySelection.orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) to sort columns on complex criteria. +- use funções como [`collection.orderByFormula()`](../API/CollectionClass.md#orderbyformula) ou [`entitySelection.orderByFormula()`](../API/EntitySelectionClass.md#orderbyformula) para classificar colunas com base em critérios complexos. #### Exemplo -You want to sort a list box using values of a property stored in a related object attribute. Tem a seguinte estrutura: +Você deseja classificar uma caixa de lista usando valores de uma propriedade armazenada em um atributo de objeto relacionado. Tem a seguinte estrutura: ![](../assets/en/FormObjects/relationLB.png) -You design a list box of the entity selection type, bound to the `Form.child` expression. In the `On Load` form event, you execute `Form.child:=ds. Child.all()`. +Você projeta um list box do tipo de seleção de entidades, vinculada à expressão `Form.child`. No evento formulário `On Load`, você executa `Form.child:=ds.Child.all()`. São exibidas duas colunas: @@ -587,9 +587,9 @@ P valor da variável column header variable[](properties_Object.md#variable-or-e - Se a variável for estabelecida como 1, a coluna é ordenada de forma ascendente e a flecha de ordenação é exibida;![](../assets/en/FormObjects/sorticon1.png) -- If the variable is set to 2, the column is sorted in descending order and the sort arrow is displayed. ![](../assets/en/FormObjects/sorticon2.png) +- Se a variável for estabelecida como 2, a coluna é ordenada de forma descendente e a flecha de ordenação é exibida. ![](../assets/en/FormObjects/sorticon2.png) -> Only declared or dynamic [variables](Concepts/variables.md) can be used as header column variables. Não são suportados outros tipos de [expressões](Concepts/quick-tour.md#expressions), como `Form.sortValue`. +> Somente [variáveis](Concepts/variables.md) declaradas ou dinâmicas podem ser usadas como variáveis de coluna de cabeçalho. Não são suportados outros tipos de [expressões](Concepts/quick-tour.md#expressions), como `Form.sortValue`. Pode estabelecer o valor da variável (por exemplo, Header2:=2) para “forçar” a exibição da flecha de ordenação. A ordenação de coluna não é modificada nesse caso; depende do desenvolvedor como vai manejá-la. @@ -993,9 +993,9 @@ OB SET($ob;"value";$entry) #### mín. e máx -When the "valueType" is "real" or "integer", the object also accepts min and max attributes with appropriate values (values must be of the same type as the valueType). +Quando o "valueType" é "real" ou "integer", o objeto também aceita os atributos min e max com os valores apropriados (os valores devem ser do mesmo tipo que o valueType). -Estes atributos podem ser utilizados para controlar a gama de valores de entrada. When a cell is validated (when it loses the focus), if the input value is lower than the min value or greater than the max value, then it is rejected. In this case, the previous value is maintained and a tip displays an explanation. +Esses atributos podem ser usados para controlar o intervalo de valores de entrada. Quando uma célula é validada (quando perde o foco), se o valor de entrada for menor que o valor mínimo ou maior que o valor máximo, ela será rejeitada. Nesse caso, o valor anterior é mantido e uma dica exibe uma explicação. ````4d C_OBJECT($ob3) @@ -1010,11 +1010,11 @@ Estes atributos podem ser utilizados para controlar a gama de valores de entrada #### behavior -The behavior attribute provides variations to the regular representation of values. Em 4D v15, uma única variação é proposta: +O atributo behavior fornece variações para a representação regular de valores. Em 4D v15, uma única variação é proposta: -| Atributo | Valor(es) disponível(eis) | valueType(s) | Descrição | -| -------- | ------------------------- | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| behavior | threeStates | integer | Represents a numeric value as a three-states check box.
    2=semi-checked, 1=checked, 0=unchecked, -1=invisible, -2=unchecked disabled, -3=checked disabled, -4=semi-checked disabled | +| Atributo | Valor(es) disponível(eis) | valueType(s) | Descrição | +| -------- | ------------------------- | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| behavior | threeStates | integer | Representa um valor numérico como uma caixa de seleção de três estados.
    2=semi-marcado, 1=marcado, 0=desmarcado, -1=invisível, -2=desmarcado desabilitado, -3=marcado desabilitado, -4=semi-marcado desabilitado | ```4d C_OBJECT($ob3) @@ -1033,17 +1033,17 @@ The behavior attribute provides variations to the regular representation of valu #### requiredList e choiceList -When a "choiceList" or a "requiredList" attribute is present inside the object, the text input is replaced by a drop-down list or a combo box, depending of the attribute: +Quando um atributo "choiceList" ou "requiredList" está presente no objeto, a entrada de texto é substituída por uma lista suspensa ou uma caixa de combinação, dependendo do atributo: * Se o atributo é "choiceList", a célula é apresentada como um combo box. Isto significa que o usuário pode selecionar ou escrever um valor. -* If the attribute is "requiredList" then the cell is displayed as a drop-down list and the user can only select one of the values provided in the list. +* Se o atributo for "requiredList", então a célula é exibida como uma lista suspensa e o usuário só pode selecionar um dos valores fornecidos na lista. -In both cases, a "value" attribute can be used to preselect a value in the widget. -> Os valores do widget são definidos através de um array. If you want to assign an existing 4D list to the widget, you need to use the "requiredListReference", "requiredListName", "choiceListReference", or "choiceListName" attributes. +Em ambos os casos, um atributo "valor" pode ser usado para pré-selecionar um valor no widget. +> Os valores do widget são definidos através de um array. Se quiser atribuir uma lista 4D existente ao widget, você precisará usar os atributos "requiredListReference", "requiredListName", "choiceListReference" ou "choiceListName". Exemplos: -* You want to display a drop-down list with only two options: "Open" or "Closed". "Closed" deve ser pré-selecionada: +* Se quiser exibir uma lista suspensa com apenas duas opções: "Aberto" ou "Fechado". "Closed" deve ser pré-selecionada: ```4d ARRAY TEXT($RequiredList;0) @@ -1056,7 +1056,7 @@ Exemplos: ``` ![](../assets/en/FormObjects/listbox_column_objectArray_helloWorld_openClosed.png) -* You want to accept any integer value, but display a combo box to suggest the most common values: +* Se quiser aceitar qualquer valor inteiro, mas exibir uma caixa de combinação para sugerir os valores mais comuns: ```4d ARRAY LONGINT($ChoiceList;0) @@ -1074,15 +1074,15 @@ Exemplos: #### requiredListName e requiredListReference -The "requiredListName" and "requiredListReference" attributes allow you to use, in a list box cell, a list defined in 4D either in Design mode (in the Lists editor of the Tool box) or by programming (using the New list command). A célula será então apresentada como uma lista pendente. This means that the user can only select one of the values provided in the list. +Os atributos "requiredListName" e "requiredListReference" permitem que você use, em uma célula da caixa de listagem, uma lista definida no 4D no modo Desenho (no editor de Listas da caixa de ferramentas) ou por programação (usando o comando Nova lista). A célula será então apresentada como uma lista pendente. Isso significa que o usuário só pode selecionar um dos valores fornecidos na lista. -Use "requiredListName" or "requiredListReference" depending on the origin of the list: if the list comes from the Tool box, you pass a name; otherwise, if the list has been defined by programming, you pass a reference. In both cases, a "value" attribute can be used to preselect a value in the widget. -> * If you want to define these values through a simple array, you need to use the "requiredList" attribute. -> * If the list contains text items representing real values, the decimal separator must be a period ("."), regardless of the local settings, e.g.: "17.6" "1234.456". +Use "requiredListName" ou "requiredListReference" dependendo da origem da lista: se a lista vier da Caixa de ferramentas, você passará um nome; caso contrário, se a lista tiver sido definida por programação, você passará uma referência. Em ambos os casos, um atributo "valor" pode ser usado para pré-selecionar um valor no widget. +> * Se quiser definir esses valores através de uma matriz simples, você precisará usar o atributo "requiredList". +> * Se a lista contiver itens de texto que representem valores reais, o separador decimal deverá ser um ponto ("."), independentemente das configurações locais, por exemplo: "17.6" "1234.456". Exemplos: -* You want to display a drop-down list based on a "colors" list defined in the Tool box (containing the values "blue", "yellow", and "green"), save it as a value and display "blue" by default: +* Você deseja exibir uma lista suspensa com base em uma lista de "cores" definida na caixa de ferramentas (contendo os valores "azul", "amarelo" e "verde"), salvá-la como um valor e exibir "azul" por padrão: ![](../assets/en/FormObjects/listbox_column_objectArray_colors.png) @@ -1096,7 +1096,7 @@ Exemplos: ``` ![](../assets/en/FormObjects/listbox_column_objectArray_colorsResult.png) -* You want to display a drop-down list based on a list defined by programming and save it as a reference: +* Você quer exibir uma lista suspensa baseada em uma lista definida por programação e salvá-la como uma referência: ```4d <>List:=New list @@ -1116,15 +1116,15 @@ Exemplos: #### choiceListName e choiceListReference -The "choiceListName" and "choiceListReference" attributes allow you to use, in a list box cell, a list defined in 4D either in Design mode (in the Tool box) or by programming (using the New list command). The cell is then displayed as a combo box, which means that the user can select or type a value. +Os atributos "choiceListName" e "choiceListReference" permitem que você use, em uma célula de caixa de listagem, uma lista definida no 4D no modo Desenho (na caixa de ferramentas) ou por programação (usando o comando Nova lista). A célula é então exibida como uma caixa de combinação, o que significa que o usuário pode selecionar ou digitar um valor. -Use "choiceListName" or "choiceListReference" depending on the origin of the list: if the list comes from the Tool box, you pass a name; otherwise, if the list has been defined by programming, you pass a reference. In both cases, a "value" attribute can be used to preselect a value in the widget. -> * If you want to define these values through a simple array, you need to use the "choiceList" attribute. -> * If the list contains text items representing real values, the decimal separator must be a period ("."), regardless of the local settings, e.g.: "17.6" "1234.456". +Use "choiceListName" ou "choiceListReference" dependendo da origem da lista: se a lista vier da Caixa de ferramentas, você passará um nome; caso contrário, se a lista tiver sido definida por programação, você passará uma referência. Em ambos os casos, um atributo "valor" pode ser usado para pré-selecionar um valor no widget. +> * Se quiser definir esses valores através de uma matriz simples, você precisará usar o atributo "choiceList". +> * Se a lista contiver itens de texto que representem valores reais, o separador decimal deverá ser um ponto ("."), independentemente das configurações locais, por exemplo: "17.6" "1234.456". Exemplo: -You want to display a combo box based on a "colors" list defined in the Tool box (containing the values "blue", "yellow", and "green") and display "green" by default: +Você deseja exibir uma caixa de combinação com base em uma lista de "cores" definida na caixa de ferramentas (contendo os valores "azul", "amarelo" e "verde") e exibir "verde" por padrão: ![](../assets/en/FormObjects/listbox_column_objectArray_colors.png) @@ -1141,21 +1141,21 @@ You want to display a combo box based on a "colors" list defined in the Tool box #### unitsList, unitsListName, unitsListReference e unitReference -You can use specific attributes to add units associated with cell values (*e.g.*: "10 cm", "20 pixels", etc.). Para definir a lista de unidades, pode utilizar um dos seguintes atributos: +Você pode usar atributos específicos para adicionar unidades associadas aos valores das células (*por exemplo:* "10 cm", "20 pixels" etc.). Para definir a lista de unidades, pode utilizar um dos seguintes atributos: -* "unitsList": an array containing the x elements used to define the available units (e.g.: "cm", "inches", "km", "miles", etc.). Utilize este atributo para definir unidades no interior do objeto. +* "unitsList": um array que contém os elementos x usados para definir as unidades disponíveis (por exemplo: "cm", "polegadas", "km", "milhas" etc.). Utilize este atributo para definir unidades no interior do objeto. * "unitsListReference": uma referência de lista 4D que contém as unidades disponíveis. Use esse atributo para definir unidades com uma lista 4D criada com o comando [New list](https://doc.4d.com/4Dv15/4D/15.6/New-list.301-3818474.en.html). -* "unitsListName": a name of a design-based 4D list that contains available units. Utilize este atributo para definir unidades com uma lista 4D criada na caixa de ferramentas. +* "unitsListName": um nome de uma lista 4D baseada em design que contém unidades disponíveis. Utilize este atributo para definir unidades com uma lista 4D criada na caixa de ferramentas. -Regardless of the way the unit list is defined, it can be associated with the following attribute: +Independentemente da forma como a lista de unidades é definida, ela pode ser associada ao seguinte atributo: -* "unitReference": a single value that contains the index (from 1 to x) of the selected item in the "unitList", "unitsListReference" or "unitsListName" values list. +* "unitReference": um valor único que contenha o índice (de 1 a x) do item selecionado na lista de valores "unitsListReference" ou "unitsListName". -The current unit is displayed as a button that cycles through the "unitList", "unitsListReference" or "unitsListName" values each time it is clicked (e.g., "pixels" -> "rows" -> "cm" -> "pixels" -> etc.) +A unidade atual é exibida como um botão que percorre os valores "unitList", "unitsListReference" ou "unitsListName" sempre que é clicado (por exemplo, "pixeil" -> "rows" -> "cm" -> "pixels" -> etc.) Exemplo: -We want to set up a numeric input followed by two possible units: "rows" or "pixels". O valor atual é "2" + "linhas". Utilizamos valores definidos diretamente no objeto (atributo "unitsList"): +Queremos configurar uma entrada numérica seguida de duas unidades possíveis: "linhas" ou "píxeis". O valor atual é "2" + "linhas". Utilizamos valores definidos diretamente no objeto (atributo "unitsList"): ````4d ARRAY TEXT($_units;0) @@ -1170,9 +1170,9 @@ OB SET($ob;"value";2) // 2 "units" OB SET($ob;"unitReference";1) //"lines" OB SE #### alternateButton -If you want to add an ellipsis button [...] to a cell, you just need to pass the "alternateButton" with the True value in the object. O botão será automaticamente apresentado na célula. +Se você quiser adicionar um botão de reticências [...] a uma célula, basta passar o "alternateButton" com o valor True no objeto. O botão será automaticamente apresentado na célula. -When this button is clicked by a user, an `On Alternate Click` event will be generated, and you will be able to handle it however you want (see the "Event management" paragraph for more information). +Quando esse botão for clicado por um usuário, será gerado um evento `On Alternate Click`, e você poderá tratá-lo como quiser (consulte o parágrafo "Gerenciamento de eventos" para obter mais informações). Exemplo: @@ -1199,12 +1199,12 @@ O valueType "color" permite-lhe apresentar uma cor ou um texto. ![](../assets/en/FormObjects/listbox_column_objectArray_colorValue.png) -* If the value is a text, then the text is displayed (*e.g.*: "value";"Automatic"). +* Si el valor es un texto, entonces se muestra el texto (*por ejemplo*: "valor"; "Automatic"). #### event valueType -The "event" valueType displays a simple button that generates an `On Clicked` event when clicked. Nenhum dado ou valor pode ser transmitido ou devolvido. +O "evento" valueType exibe um botão simples que gera um evento `On Clicked` quando clicado. Nenhum dado ou valor pode ser transmitido ou devolvido. Opcionalmente, pode passar um atributo "label". @@ -1222,11 +1222,11 @@ OB SET($ob;"label";"Edit...") ### Gestão de eventos Vários eventos podem ser tratados durante o uso de um list box array de objetos: -* **On Data Change**: An `On Data Change` event is triggered when any value has been modified either: +* **On Data Change**: um evento `On Data Change` é acionado quando qualquer valor foi modificado também: * numa zona de introdução de texto * numa lista pendente * numa área combo box * num botão de unidade (mudar do valor x para o valor x+1) * numa caixa de verificação (alternar entre verificado/não verificado) -* **On Clicked**: When the user clicks on a button installed using the "event" *valueType* attribute, an `On Clicked` event will be generated. Este evento é gerido pelo programador. -* **On Alternative Click**: When the user clicks on an ellipsis button ("alternateButton" attribute), an `On Alternative Click` event will be generated. Este evento é gerido pelo programador. +* **On Clicked**: quando o usuário clicar em um botão instalado usando o atributo *valueType* "event", será gerado um evento `On Clicked`. Este evento é gerido pelo programador. +* **On Alternative Click**: quando o usuário clicar em um botão de reticências (atributo "alternateButton"), será gerado um evento `On Alternative Click`. Este evento é gerido pelo programador. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Action.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Action.md index 0a612be8395d13..75dae822a5adf3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Action.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Action.md @@ -11,11 +11,11 @@ Controlar se e como o usuário pode arrastar o objeto. Por defeito, não é perm Estão disponíveis dois modos de arrastamento: -- **Custom**: In this mode, any drag operation performed on the object triggers the `On Begin Drag` form event in the context of the object. You then manage the drag action using a method. - In custom mode, basically the whole drag-and-drop operation is handled by the programmer. This mode lets you implement any interface based upon drag-on-drop, including interfaces that do not necessarily transport data, but can perform any action like opening files or triggering a calculation. This mode is based upon a combination of specific properties, events, and commands from the `Pasteboard` theme. -- **Automatic**: In this mode, 4D **copies** text or pictures directly from the form object. It can then be used in the same 4D area, between two 4D areas, or between 4D and another application. Por exemplo, o arrastar (e largar) automático permite-lhe copiar um valor entre dois campos sem utilizar a programação: +- **Personalizado**: nesse modo, qualquer operação de arrastar executada no objeto aciona o evento de formulário `On Begin Drag` no contexto do objeto. Em seguida, você gerencia a ação de arrastar usando um método. + No modo personalizado, basicamente toda a operação de arrastar e soltar é gerenciada pelo programador. Esse modo permite que você implemente qualquer interface baseada em arrastar e soltar, incluindo interfaces que não necessariamente transportam dados, mas podem executar qualquer ação, como abrir arquivos ou acionar um cálculo. Esse modo é baseado em uma combinação de propriedades, eventos e comandos específicos do tema `Pasteboard`. +- **Automático**: nesse modo, 4D **cópia** o texto ou as imagens diretamente do objeto formulário. Poderá então ser utilizado na mesma área de 4D, entre duas áreas 4D ou entre 4D e outra aplicação. Por exemplo, o arrastar (e largar) automático permite-lhe copiar um valor entre dois campos sem utilizar a programação: ![](../assets/en/FormObjects/property_automaticDragDrop.png) - ![](../assets/en/FormObjects/property_automaticDragDrop2.png) Neste modo, o evento do formulário `On Begin Drag` NÃO é gerado. If you want to "force" the use of the custom drag while automatic drag is enabled, hold down the **Alt** (Windows) or **Option** (macOS) key during the action. Esta opção não está disponível para as imagens. + ![](../assets/en/FormObjects/property_automaticDragDrop2.png) Neste modo, o evento do formulário `On Begin Drag` NÃO é gerado. Se você quiser "forçar" o uso do arrasto personalizado enquanto o arrasto automático estiver ativado, mantenha pressionada a tecla **Alt** (Windows) ou **Option** (macOS) durante a ação. Esta opção não está disponível para as imagens. Para mais informações, consulte [Arraste e Solte](https://doc.4d.com/4Dv18/4D/18/Drag-and-Drop.300-4505037.en.html) no manual *Linguajem 4D*. @@ -40,12 +40,12 @@ Para mais informações, consulte [Arraste e Solte](https://doc.4d.com/4Dv18/4D/ --- ## Soltável -Control whether and how the object can be the destination of a drag and drop operation. +Controle se e como o objeto pode ser o destino de uma operação de arrastar e soltar. Há dois modos de soltar em 4D: -- **Custom**: In this mode, any drop operation performed on the object triggers the `On Drag Over` and `On Drop` form events in the context of the object. You then manage the drop action using a method. - In custom mode, basically the whole drag-and-drop operation is handled by the programmer. This mode lets you implement any interface based upon drag-on-drop, including interfaces that do not necessarily transport data, but can perform any action like opening files or triggering a calculation. This mode is based upon a combination of specific properties, events, and commands from the `Pasteboard` theme. +- **Personalizado**: nesse modo, qualquer operação de soltar executada no objeto aciona os eventos de formulário `On Drag Over` e `On Drop` no contexto do objeto. Em seguida, você gerencia a ação de soltar usando um método. + No modo personalizado, basicamente toda a operação de arrastar e soltar é gerenciada pelo programador. Esse modo permite que você implemente qualquer interface baseada em arrastar e soltar, incluindo interfaces que não necessariamente transportam dados, mas podem executar qualquer ação, como abrir arquivos ou acionar um cálculo. Esse modo é baseado em uma combinação de propriedades, eventos e comandos específicos do tema `Pasteboard`. - **Automático**: neste modo, 4D gere automaticamente - se possível - a inserção de dados arrastados do tipo texto ou imagem largada no objeto (os dados são colados no objeto). Os eventos formulário `On Drag Over` e `On Drop` NÃO são gerados. Por outro lado, são gerados os eventos `On After Edit` (durante a descida) e `On Data Change` (quando o objeto perde o foco). Para mais informações, consulte [Arraste e Solte](https://doc.4d.com/4Dv18/4D/18/Drag-and-Drop.300-4505037.en.html) no manual *Linguajem 4D*. @@ -59,7 +59,7 @@ Para mais informações, consulte [Arraste e Solte](https://doc.4d.com/4Dv18/4D/ #### Objectos suportados -[4D Write Pro areas](writeProArea_overview.md) - [Button](button_overview.md) - [Input](input_overview.md) - [Hierarchical List](list_overview.md#overview) - [List Box](listbox_overview.md#overview) - [Plug-in Area](pluginArea_overview.md#overview) +[Áreas 4D Write Pro](writeProArea_overview.md) - [Botão](button_overview.md) - [Entrada](input_overview.md) - [Lista hierárquica](list_overview.md#overview) - [List Box](listbox_overview.md#overview) - [Área de plug-in](pluginArea_overview.md#overview) #### Veja também @@ -67,8 +67,8 @@ Para mais informações, consulte [Arraste e Solte](https://doc.4d.com/4Dv18/4D/ --- -## Executar método objecto -When this option is enabled, the object method is executed with the `On Data Change` event *at the same moment* the user changes the value of the indicator. When the option is disabled, the method is executed *after* the modification. +## Executar método objeto +Quando essa opção está ativada, o método objeto é executado com o evento `On Data Change` *no mesmo momento* em que o usuário altera o valor do indicador. Quando a opção está desativada, o método é executado *após* a modificação. #### Gramática JSON @@ -78,7 +78,7 @@ When this option is enabled, the object method is executed with the `On Data Cha #### Objectos suportados -[Progress bar](progressIndicator.md) - [Ruler](ruler.md) - [Stepper](stepper.md) +[Barra de progresso](progressIndicator.md) - [Régua](ruler.md) - [Degrau](stepper.md) @@ -88,19 +88,19 @@ When this option is enabled, the object method is executed with the `On Data Cha --- ## Métodos -Referência de um método ligado ao objeto. Object methods generally "manage" the object while the form is displayed or printed. You do not call an object method—4D calls it automatically when an event involves the object to which the object method is attached. +Referência de um método ligado ao objeto. Os métodos do objeto "gerencie" geralmente o objeto enquanto o formulário é exibido ou impresso. Você não chama um método objeto — 4D o chama automaticamente quando um evento envolve o objeto ao qual o método objeto é anexado. São suportados vários tipos de referências de métodos: -- a standard object method file path, i.e. that uses the following pattern: +- um caminho de arquivo de método de objeto padrão, ou seja, que usa o seguinte padrão: `ObjectMethods/objectName.4dm` - ... where `objectName` is the actual [object name](properties_Object.md#object-name). This type of reference indicates that the method file is located at the default location ("sources/forms/*formName*/ObjectMethods/"). In this case, 4D automatically handles the object method when operations are executed on the form object (renaming, duplication, copy/paste...) + ... em que `objectName` é o [nome do objeto](properties_Object.md#object-name) real. Este tipo de referência indica que o arquivo de método está localizado no local padrão ("sources/forms/*formName*/ObjectMethods/"). Nesse caso, 4D trata automaticamente o método objeto quando as operações são executadas no objeto formulário (renomeação, duplicação, copiar/colar...) -- a project method name: name of an existing project method without file extension, i.e.: `myMethod` In this case, 4D does not provide automatic support for object operations. +- um nome de método projeto: nome de um método projeto existente sem extensão de arquivo, ou seja: `myMethod` Nesse caso, o 4D não oferece suporte automático para operações objeto. -- a custom method file path including the .4dm extension, e.g.: - `../../CustomMethods/myMethod.4dm` You can also use a filesystem: - `/RESOURCES/Buttons/bOK.4dm` In this case, 4D does not provide automatic support for object operations. +- um caminho de arquivo de método personalizado incluindo a extensão .4dm, por exemplo: + `../../CustomMethods/myMethod.4dm` Você também pode usar um sistema de arquivos: + `/RESOURCES/Buttons/bOK.4dm` Nesse caso, o 4D não oferece suporte automático para operações objeto. #### Gramática JSON @@ -112,7 +112,7 @@ São suportados vários tipos de referências de métodos: #### Objectos suportados -[4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Button](button_overview.md) - [Button Grid](buttonGrid_overview.md) - [Check Box](checkbox_overview.md) - [Combo Box](comboBox_overview.md) - [Dropdown list](dropdownList_Overview.md) - [Forms](FormEditor/forms.md) - [Hierarchical List](list_overview.md#overview) - [Input](input_overview.md) - [List Box](listbox_overview.md#overview) - [List Box Column](listbox_overview.md#list-box-columns) - [Picture Button](pictureButton_overview.md) - [Picture Pop up menu](picturePopupMenu_overview.md) - [Plug-in Area](pluginArea_overview.md#overview) - [Progress Indicators](progressIndicator.md) - [Radio Button](radio_overview.md) - [Ruler](ruler.md) - [Spinner](spinner.md) - [Splitter](splitters.md) - [Stepper](stepper.md) - [Subform](subform_overview.md) - [Tab control](tabControl.md) - [Web Area](webArea_overview.md#overview) +[Área 4D View Pro](viewProArea_overview.md) - [Área 4D Write Pro](writeProArea_overview.md) - [Botão](button_overview.md) - [Grade de botões](buttonGrid_overview.md) - [Casilla de selección](checkbox_overview.md) - [Combo Box](comboBox_overview.md) - [Lista suspensa](dropdownList_Overview.md) - [Formulários](FormEditor/forms.md) - [Lista hierárquica](list_overview.md#overview) - [Entrada](input_overview.md) - [List Box](listbox_overview.md#overview) - [Coluna List Box](listbox_overview.md#list-box-columns) - [Botão imagem](pictureButton_overview.md) - [Menu pop-up de imagem](picturePopupMenu_overview.md) - [Área de plugins](pluginArea_overview.md#overview) - [Indicadores de progresso](progressIndicator.md) - [Botão rádio](radio_overview.md) - [Regra](ruler.md) - [Spinner](spinner.md) - [Splitter](splitters.md) - [Stepper](stepper.md) - [Subformulário](subform_overview.md) - [Controle de tabulação](tabControl.md) - [Área web](webArea_overview.md#overview) @@ -121,7 +121,7 @@ São suportados vários tipos de referências de métodos: ## Linhas móveis `List box de tipo array` -Autoriza a deslocação de linhas durante a execução. Esta opção é selecionada por defeito. It is not available for [selection type list boxes](listbox_overview.md#selection-list-boxes) nor for [list boxes in hierarchical mode](properties_Hierarchy.md#hierarchical-list-box). +Autoriza a deslocação de linhas durante a execução. Esta opção é selecionada por defeito. Não está disponível para [list boxes do tipo seleção](listbox_overview.md#selection-list-boxes) nem para [list boxes no modo hierárquico](properties_Hierarchy.md#hierarchical-list-box). #### Gramática JSON @@ -140,7 +140,7 @@ Autoriza a deslocação de linhas durante a execução. Esta opção é selecion --- ## Multi-seleccionável -Allows the selection of multiple records/options in a [hierarchical list](list_overview.md). +Permite a seleção de vários registros/opções em uma [lista hierárquica](list_overview.md). #### Gramática JSON @@ -160,11 +160,11 @@ Allows the selection of multiple records/options in a [hierarchical list](list_o Permite classificar os dados da coluna clicando no cabeçalho de uma [listbox](listbox_overview.md). Esta opção é selecionada por defeito. Os arrays de tipo imagem (colunas) não podem ser ordenadas com esta funcionalidade. -In list boxes based on a selection of records, the standard sort function is available only: +Nos list boxes baseados em uma seleção de registros, a função de classificação padrão está disponível apenas: * Quando a fonte de dados é *Seleção atual*, -* With columns associated with fields (of the Alpha, Number, Date, Time or Boolean type). +* Com colunas associadas com campos (do tipo Alfa, Número, Data, Hora ou Booliano). -In other cases (list boxes based on named selections, columns associated with expressions), the standard sort function is not available. A standard list box sort changes the order of the current selection in the database. However, the highlighted records and the current record are not changed. A standard sort synchronizes all the columns of the list box, including calculated columns. +Em outros casos (list box baseados em seleções nomeadas, colunas associadas com expressões), a função de classificação padrão não está disponível. Uma classificação de list box padrão altera a ordem da seleção atual no banco de dados. No entanto, os registros destacados e o registro atual não são alterados. Uma classificação padrão sincroniza todas as colunas da list box, incluindo colunas calculadas. #### Gramática JSON @@ -182,11 +182,11 @@ In other cases (list boxes based on named selections, columns associated with ex --- ## Ação padrão -Typical activities to be performed by active objects (*e.g.*, letting the user accept, cancel, or delete records, move between records or from page to page in a multi-page form, etc.) have been predefined by 4D as standard actions. They are described in detail in the [Standard actions](https://doc.4d.com/4Dv17R5/4D/17-R5/Standard-actions.300-4163633.en.html) section of the *Design Reference*. +As atividades típicas a serem realizadas por objetos ativos*(por exemplo,*, permitir que o usuário aceite, cancele ou exclua registros, mova-se entre registros ou de uma página para outra em um formulário de várias páginas, etc.) foram predefinidas por 4D como ações padrão. Eles são descritos em detalhes na seção [Ações padrão](https://doc.4d.com/4Dv17R5/4D/17-R5/Standard-actions.300-4163633.en.html) do *Manual de Desenho*. -You can assign both a standard action and a project method to an object. In this case, the standard action is usually executed after the method and 4D uses this action to enable/disable the object according to the current context. When an object is deactivated, the associated project method cannot be executed. +Você pode atribuir uma ação padrão e um método projeto de um objeto. Neste caso, a ação padrão é geralmente executada depois que o método e o 4D usa esta ação para ativar/desativar o objeto conforme o contexto atual. Quando um objeto é desativado, o método projeto associado não pode ser executado. -You can also set this property using the `OBJECT SET ACTION` command. +Você também pode definir essa propriedade usando o comando `OBJECT SET ACTION`. #### Gramática JSON @@ -196,4 +196,4 @@ You can also set this property using the `OBJECT SET ACTION` command. #### Objectos suportados -[Button](button_overview.md) - [Button Grid](buttonGrid_overview.md) - [Check Box](checkbox_overview.md) - [Drop-down List](dropdownList_Overview.md) - [List Box](listbox_overview.md) - [Picture Button](pictureButton_overview.md) - [Picture Pop-up Menu](picturePopupMenu_overview.md) - [Tab control](tabControl.md) +[Botão](button_overview.md) - [Grade de botões](buttonGrid_overview.md) - [Caixa de seleção](checkbox_overview.md) - [Lista suspensa](dropdownList_Overview.md) - [List Box](listbox_overview.md) - [Botão imagem](pictureButton_overview.md) - [Menu pop-up imagem](picturePopupMenu_overview.md) - [Controle de guias](tabControl.md) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Appearance.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Appearance.md index 6a0a1a83bc02a3..40e19879f8cdce 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Appearance.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Appearance.md @@ -377,7 +377,7 @@ Define o modo de exibição do documento 4D Write Pro na área do formulário. H - **Página**: o modo de visualização mais completo, que inclui contornos de página, orientação, margens, quebras de página, cabeçalhos e rodapés, etc. - **Rascunho**: modo rascunho com propriedades básicas do documento -- **Embutido**: modo de exibição adequado para áreas incorporadas; não exibe margins, rodapés, cabeçalhos, quadros da página, etc. Este modo também pode ser usado para produzir uma saída de exibição semelhante à web (se você também selecionar a resolução [96 dpi](#resolution) e [Mostrar propriedades HTML WYSIWYG](#show-html-wysiwyg)). +- **Embutido**: modo de exibição adequado para áreas incorporadas; não exibe margins, rodapés, cabeçalhos, quadros da página, etc. Este modo também pode ser usado para produzir uma saída de exibição semelhante à web (se você também selecionar a resolução [96 dpi](#resolution) e [Mostrar propriedades HTML WYSIWYG](#show-html-wysiwyg)). Este modo também pode ser usado para produzir uma saída de exibição semelhante à web (se você também selecionar a resolução [96 dpi](#resolution) e [Mostrar propriedades HTML WYSIWYG](#show-html-wysiwyg)). > A propriedade Mode vista só é utilizada para a renderização no ecrã. Para os parâmetros de impressão, são usadas automaticamente regras de renderização específicas. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_BackgroundAndBorder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_BackgroundAndBorder.md index b3aaeb8c172685..5991ac598b970c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_BackgroundAndBorder.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_BackgroundAndBorder.md @@ -38,7 +38,7 @@ Você também pode definir essa propriedade usando o comando [`OBJECT SET RGB CO #### Objectos suportados -[Hierarchical List](list_overview.md) - [Input](input_overview.md) - [List Box](listbox_overview.md) - [List Box Column](listbox_overview.md#list-box-columns) - [List Box Footer](listbox_overview.md#list-box-footers) - [Oval](shapes_overview.md#oval) - [Rectangle](shapes_overview.md#rectangle) - [Text Area](text.md) +[Lista hierárquica](list_overview.md) - [Entrada](input_overview.md) - [List Box](listbox_overview.md) - [Coluna List Box](listbox_overview.md#list-box-columns) - [Rodapé de List Box](listbox_overview.md#list-box-footers) - [Oval](shapes_overview.md#oval) - [Retângulo](shapes_overview.md#rectangle) - [Área de texto](text.md) #### Veja também @@ -205,7 +205,7 @@ Você pode obter o mesmo resultado usando os comandos [`LISTBOX SET UMA ARTA`](h ## Transparente -Define o fundo do list box como "Transparent". When set, any [alternate background color](#alternate-background-color) or [background color](#background-color--fill-color) defined for the column is ignored. +Define o fundo do list box como "Transparent". Quando definido, qualquer [cor de fundo alternativa](#alternate-background-color) ou [cor de fundo](#background-color--fill-color) definida para a coluna é ignorada. #### Gramática JSON diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_CoordinatesAndSizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_CoordinatesAndSizing.md index f2e4747a913976..ff74c45531824e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_CoordinatesAndSizing.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_CoordinatesAndSizing.md @@ -5,30 +5,30 @@ title: Coordenadas e dimensionamento ## Altura automática da linha -This property is only available for list boxes with the following [data sources](properties_Object.md#data-source): +Essa propriedade só está disponível para caixas de listagem com as seguintes [fontes de dados](properties_Object.md#data-source): - collection ou entity selection, - array (não hierárquico). -A propriedade não está selecionada por padrão. Note that only columns with the option selected will be taken into account to calculate the row height. Note that only columns with the option selected will be taken into account to calculate the row height. +A propriedade não está selecionada por padrão. Quando usado para pelo menos uma coluna, a altura de cada linha na coluna será automaticamente calculada por 4D, e o conteúdo da coluna será levado em consideração. Observe que somente as colunas com a opção selecionada serão levadas em conta para calcular a altura da linha. :::note -When resizing the form, if the "Grow" [horizontal sizing](properties_ResizingOptions.md#horizontal-sizing) property was assigned to the list box, the right-most column will be increased beyond its maximum width if necessary. +Ao redimensionar o formulário, se a propriedade [de dimensionamento horizontal](properties_ResizingOptions.md#horizontal-sizing) "Grow" tiver sido atribuída à caixa de listagem, a coluna mais à direita será aumentada além de sua largura máxima, se necessário. ::: -When this property is enabled, the height of every row is automatically calculated in order to make the cell contents entirely fit without being truncated (unless the [Wordwrap](properties_Display.md#wordwrap) option is disabled. +Quando essa propriedade está ativada, a altura de cada linha é calculada automaticamente para que o conteúdo da célula caiba totalmente sem ser truncado (a menos que a opção [Wordwrap](properties_Display.md#wordwrap) esteja desativada). * O cálculo da altura da linha tem em conta: - * any content types (text, numerics, dates, times, pictures (calculation depends on the picture format), objects), + * qualquer tipo de conteúdo (texto, numérico, datas, horas, imagens (o cálculo depende do formato da imagem), objetos), * quaisquer tipos de controlo (entradas, caixas de verificação, listas, listas suspensas), * tipos, estilos e tamanhos de letra, - * the [Wordwrap](properties_Display.md#wordwrap) option: if disabled, the height is based on the number of paragraphs (lines are truncated); if enabled, the height is based on number of lines (not truncated). + * a opção [Wordwrap](properties_Display.md#wordwrap): se desativada, a altura será baseada no número de parágrafos (as linhas são truncadas); se ativada, a altura será baseada no número de linhas (não truncadas). * O cálculo da altura da linha ignora: * conteúdo da coluna oculta - * [Row Height](#row-height) and [Row Height Array](#row-height-array) properties (if any) set either in the Property list or by programming. + * Propriedades [Row Height](#row-height) e [Row Height Array](#row-height-array) (se houver) definidas na lista de propriedades ou por programação. :::caution @@ -61,58 +61,91 @@ Coordenadas inferiores do objeto no formulário. #### Objectos suportados -[4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Button](button_overview.md) - [Button Grid](buttonGrid_overview.md) - [Check Box](checkbox_overview.md) - [Combo Box](comboBox_overview.md) - [Dropdown list](dropdownList_Overview.md) - [Group Box](groupBox.md) - [Hierarchical List](list_overview.md#overview) - [Input](input_overview.md) - [List Box](listbox_overview.md#overview) - [Line](shapes_overview.md#line) - [List Box Column](listbox_overview.md#list-box-columns) - [Oval](shapes_overview.md#oval) - [Picture Button](pictureButton_overview.md) - [Picture Pop up menu](picturePopupMenu_overview.md) - [Plug-in Area](pluginArea_overview.md#overview) - [Progress Indicators](progressIndicator.md) - [Radio Button](radio_overview.md) - [Rectangle](shapes_overview.md#rectangle) - [Ruler](ruler.md) - [Spinner](spinner.md) - [Splitter](splitters.md) - [Static Picture](staticPicture.md) - [Stepper](stepper.md) - [Subform](subform_overview.md) - [Tab control](tabControl.md) - [Text Area](text.md) - [Web Area](webArea_overview.md#overview) +[4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Botão](button_overview.md) - [Grade de botões](buttonGrid_overview.md) - [Caixa de seleção](checkbox_overview.md) - [Caixa de](comboBox_overview.md) [combinação](dropdownList_Overview.md) - [Lista suspensa](dropdownList_Overview.md) - + +Caixa de grupo - [Lista hierárquica](list_overview.md#overview) - [Entrada](input_overview.md) - [Caixa de listagem](listbox_overview.md#overview) - [Linha](shapes_overview.md#line) - [Coluna de caixa de listagem](listbox_overview.md#list-box-columns) - [Oval](shapes_overview.md#oval) - [Botão de imagem](pictureButton_overview.md) - [Menu pop-up de imagem](picturePopupMenu_overview.md) - [Área de plug-in](pluginArea_overview.md#overview) - [Indicadores de progresso](progressIndicator.md) - [Botão de rádio](radio_overview.md) - [Retângulo](shapes_overview.md#rectangle) - [Régua](ruler.md) - [Spinner](spinner.md) - [Divisor](splitters.md) - [Imagem estática](staticPicture.md) - [Stepper](stepper.md) - [Subformulário](subform_overview.md) - [Controle de tabulação](tabControl.md) - [Área de texto](text.md) - [Área da Web](webArea_overview.md#overview)

    + + --- + + ## Direita Coordenadas esquerda do objecto no formulário. + + #### Gramática JSON | Nome | Tipo de dados | Valores possíveis | | ---- | ------------- | ----------------- | | left | number | mínimo: 0 | + + + #### Objectos suportados -[4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Button](button_overview.md) - [Button Grid](buttonGrid_overview.md) - [Check Box](checkbox_overview.md) - [Combo Box](comboBox_overview.md) - [Dropdown list](dropdownList_Overview.md) - [Group Box](groupBox.md) - [Hierarchical List](list_overview.md#overview) - [Input](input_overview.md) - [List Box](listbox_overview.md#overview) - [Line](shapes_overview.md#line) - [List Box Column](listbox_overview.md#list-box-columns) - [Oval](shapes_overview.md#oval) - [Picture Button](pictureButton_overview.md) - [Picture Pop up menu](picturePopupMenu_overview.md) - [Plug-in Area](pluginArea_overview.md#overview) - [Progress Indicators](progressIndicator.md) - [Radio Button](radio_overview.md) - [Ruler](ruler.md) - [Rectangle](shapes_overview.md#rectangle) - [Spinner](spinner.md) - [Splitter](splitters.md) - [Static Picture](staticPicture.md) - [Stepper](stepper.md) - [Subform](subform_overview.md) - [Tab control](tabControl.md) - [Text Area](text.md) - [Web Area](webArea_overview.md#overview) +[4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Botão](button_overview.md) - [Grade de botões](buttonGrid_overview.md) - [Caixa de seleção](checkbox_overview.md) - [Caixa de](comboBox_overview.md) [combinação](dropdownList_Overview.md) - [Lista suspensa](dropdownList_Overview.md) - Caixa de grupo - [Lista hierárquica](list_overview.md#overview) - [Entrada](input_overview.md) - [Caixa de listagem](listbox_overview.md#overview) - [Linha](shapes_overview.md#line) - [Coluna de caixa de listagem](listbox_overview.md#list-box-columns) - [Oval](shapes_overview.md#oval) - [Botão de imagem](pictureButton_overview.md) - [Menu pop-up de imagem](picturePopupMenu_overview.md) - [Área de plug-in](pluginArea_overview.md#overview) - [Indicadores de progresso](progressIndicator.md) - [Botão de rádio](radio_overview.md) - [Régua](ruler.md) - [Retângulo](shapes_overview.md#rectangle) - [Spinner](spinner.md) - [Divisor](splitters.md) - [Imagem estática](staticPicture.md) - [Stepper](stepper.md) - [Subformulário](subform_overview.md) - [Controle de tabulação](tabControl.md) - [Área de texto](text.md) - [Área da Web](webArea_overview.md#overview)

    + + --- + + ## Esquerda Coordenada direita do objecto no formulário. + + #### Gramática JSON | Nome | Tipo de dados | Valores possíveis | | ------- | ------------- | ----------------- | | direita | number | mínimo: 0 | + + + #### Objectos suportados -[4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Button](button_overview.md) - [Button Grid](buttonGrid_overview.md) - [Check Box](checkbox_overview.md) - [Combo Box](comboBox_overview.md) - [Dropdown list](dropdownList_Overview.md) - [Group Box](groupBox.md) - [Hierarchical List](list_overview.md#overview) - [Input](input_overview.md) - [List Box](listbox_overview.md#overview) - [Line](shapes_overview.md#line) - [List Box Column](listbox_overview.md#list-box-columns) - [Oval](shapes_overview.md#oval) - [Picture Button](pictureButton_overview.md) - [Picture Pop up menu](picturePopupMenu_overview.md) - [Plug-in Area](pluginArea_overview.md#overview) - [Progress Indicators](progressIndicator.md) - [Radio Button](radio_overview.md) - [Ruler](ruler.md) - [Rectangle](shapes_overview.md#rectangle) - [Spinner](spinner.md) - [Splitter](splitters.md) - [Static Picture](staticPicture.md) - [Stepper](stepper.md) - [Subform](subform_overview.md) - [Tab control](tabControl.md) - [Text Area](text.md) - [Web Area](webArea_overview.md#overview) +[4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Botão](button_overview.md) - [Grade de botões](buttonGrid_overview.md) - [Caixa de seleção](checkbox_overview.md) - [Caixa de](comboBox_overview.md) [combinação](dropdownList_Overview.md) - [Lista suspensa](dropdownList_Overview.md) - Caixa de grupo - [Lista hierárquica](list_overview.md#overview) - [Entrada](input_overview.md) - [Caixa de listagem](listbox_overview.md#overview) - [Linha](shapes_overview.md#line) - [Coluna de caixa de listagem](listbox_overview.md#list-box-columns) - [Oval](shapes_overview.md#oval) - [Botão de imagem](pictureButton_overview.md) - [Menu pop-up de imagem](picturePopupMenu_overview.md) - [Área de plug-in](pluginArea_overview.md#overview) - [Indicadores de progresso](progressIndicator.md) - [Botão de rádio](radio_overview.md) - [Régua](ruler.md) - [Retângulo](shapes_overview.md#rectangle) - [Spinner](spinner.md) - [Divisor](splitters.md) - [Imagem estática](staticPicture.md) - [Stepper](stepper.md) - [Subformulário](subform_overview.md) - [Controle de tabulação](tabControl.md) - [Área de texto](text.md) - [Área da Web](webArea_overview.md#overview)

    + + --- + + ## Topo Coordenada superior do objecto no formulário. + + #### Gramática JSON | Nome | Tipo de dados | Valores possíveis | | ---- | ------------- | ----------------- | | top | number | mínimo: 0 | + + + #### Objectos suportados -[4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Button](button_overview.md) - [Button Grid](buttonGrid_overview.md) - [Check Box](checkbox_overview.md) - [Combo Box](comboBox_overview.md) - [Dropdown list](dropdownList_Overview.md) - [Group Box](groupBox.md) - [Hierarchical List](list_overview.md#overview) - [Input](input_overview.md) - [List Box](listbox_overview.md#overview) - [Line](shapes_overview.md#line) - [List Box Column](listbox_overview.md#list-box-columns) - [Oval](shapes_overview.md#oval) - [Picture Button](pictureButton_overview.md) - [Picture Pop up menu](picturePopupMenu_overview.md) - [Plug-in Area](pluginArea_overview.md#overview) - [Progress Indicators](progressIndicator.md) - [Radio Button](radio_overview.md) - [Ruler](ruler.md) - [Rectangle](shapes_overview.md#rectangle) - [Spinner](spinner.md) - [Splitter](splitters.md) - [Static Picture](staticPicture.md) - [Stepper](stepper.md) - [Subform](subform_overview.md) - [Tab control](tabControl.md) - [Text Area](text.md) - [Web Area](webArea_overview.md#overview) +[4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Botão](button_overview.md) - [Grade de botões](buttonGrid_overview.md) - [Caixa de seleção](checkbox_overview.md) - [Caixa de](comboBox_overview.md) [combinação](dropdownList_Overview.md) - [Lista suspensa](dropdownList_Overview.md) - Caixa de grupo - [Lista hierárquica](list_overview.md#overview) - [Entrada](input_overview.md) - [Caixa de listagem](listbox_overview.md#overview) - [Linha](shapes_overview.md#line) - [Coluna de caixa de listagem](listbox_overview.md#list-box-columns) - [Oval](shapes_overview.md#oval) - [Botão de imagem](pictureButton_overview.md) - [Menu pop-up de imagem](picturePopupMenu_overview.md) - [Área de plug-in](pluginArea_overview.md#overview) - [Indicadores de progresso](progressIndicator.md) - [Botão de rádio](radio_overview.md) - [Régua](ruler.md) - [Retângulo](shapes_overview.md#rectangle) - [Spinner](spinner.md) - [Divisor](splitters.md) - [Imagem estática](staticPicture.md) - [Stepper](stepper.md) - [Subformulário](subform_overview.md) - [Controle de tabulação](tabControl.md) - [Área de texto](text.md) - [Área da Web](webArea_overview.md#overview)

    + + --- + + ## Retângulo
    Histórico @@ -121,26 +154,29 @@ Coordenada superior do objecto no formulário. | ------- | -------------------------------------- | | 18 R6 | Suporte para entradas e áreas de texto | +
    -Defines the corner roundness (in pixels) of the object. By default, the radius value for rectangles is 0 pixels. You can change this property to draw rounded rectangles with custom shapes: +Define o arredondamento do canto (em pixels) do objeto. Por padrão, o valor do raio é 0 pixels. Você pode alterar essa propriedade para desenhar objetos arredondados com formas personalizadas: ![](../assets/en/FormObjects/shape_rectangle.png) -Minimum value is 0, in this case a standard non-rounded rectangle is drawn. Maximum value depends on the rectangle size (it cannot exceed half the size of the shortest rectangle side) and is calculated dynamically. +O valor mínimo é 0; nesse caso, um retângulo de objeto padrão não arredondado é desenhado. O valor máximo depende do tamanho do retângulo (ele não pode exceder metade do tamanho do retângulo menor) e é calculado dinamicamente. :::note -With [text areas](text.md) and [inputs](input_overview.md): +Com [áreas de texto](text.md) e [entradas](input_overview.md): -- the corner radius property is only available with "none", "solid", or "dotted" [border line styles](properties_BackgroundAndBorder.md#border-line-style), -- the corner roundness is drawn outside the area of the object (the object appears larger in the form but its [width](properties_CoordinatesAndSizing.md#width) and [height](properties_CoordinatesAndSizing.md#height) are not extended). +- a propriedade corner radius só está disponível com os [estilos de linha de borda](properties_BackgroundAndBorder.md#border-line-style)"none", "solid" ou "dotted", +- o arredondamento do canto é desenhado fora da área do objeto (o objeto parece maior no formulário, mas sua [largura](properties_CoordinatesAndSizing.md#width) e [altura](properties_CoordinatesAndSizing.md#height) não são ampliadas). ![](../assets/en/FormObjects/radius-text.png) -::: +::: + +Você também pode definir essa propriedade usando os comandos [OBJECT Get corner radius](https://doc.4d.com/4dv19/help/command/en/page1323.html) e [OBJECT SET CORNER RADIUS](https://doc.4d.com/4dv19/help/command/en/page1324.html). + -You can also set this property using the [OBJECT Get corner radius](https://doc.4d.com/4Dv17R6/4D/17-R6/OBJECT-Get-corner-radius.301-4311357.en.html) and [OBJECT SET CORNER RADIUS](https://doc.4d.com/4Dv17R6/4D/17-R6/OBJECT-SET-CORNER-RADIUS.301-4311356.en.html) commands. #### Gramática JSON @@ -148,35 +184,57 @@ You can also set this property using the [OBJECT Get corner radius](https://doc. | ------------ | ------------- | ----------------- | | borderRadius | integer | mínimo: 0 | + + + #### Objectos suportados -[Input](input_overview.md) - [Rectangle](shapes_overview.md#rectangle) - [Text Area](text.md) +[Entrada](input_overview.md) - [Retângulo](shapes_overview.md#rectangle) - [Área de texto](text.md) + + --- -## Height + + +## Altura Esta propriedade designa o tamanho vertical de um objeto. + + > Alguns objetos podem ter uma altura predefinida que não pode ser alterada. + + #### Gramática JSON | Nome | Tipo de dados | Valores possíveis | | ------ | ------------- | ----------------- | | height | number | mínimo: 0 | + + + #### Objectos suportados [4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Button](button_overview.md) - [Button Grid](buttonGrid_overview.md) - [Check Box](checkbox_overview.md) - [Combo Box](comboBox_overview.md) - [Dropdown list](dropdownList_Overview.md) - [Group Box](groupBox.md) - [Hierarchical List](list_overview.md#overview) - [Input](input_overview.md) - [List Box](listbox_overview.md#overview) - [Line](shapes_overview.md#line) - [List Box Column](listbox_overview.md#list-box-columns) - [Oval](shapes_overview.md#oval) - [Picture Button](pictureButton_overview.md) - [Picture Pop up menu](picturePopupMenu_overview.md) - [Plug-in Area](pluginArea_overview.md#overview) - [Progress Indicators](progressIndicator.md) - [Radio Button](radio_overview.md) - [Ruler](ruler.md) - [Rectangle](shapes_overview.md#rectangle) - [Spinner](spinner.md) - [Splitter](splitters.md) - [Static Picture](staticPicture.md) - [Stepper](stepper.md) - [Subform](subform_overview.md) - [Tab control](tabControl.md) - [Text Area](text.md) - [Web Area](webArea_overview.md#overview) + + --- + + ## Largura Esta propriedade designa o tamanho horizontal de um objeto. + + > * Alguns objetos podem ter uma altura predefinida que não pode ser alterada. -> * If the [Resizable](properties_ResizingOptions.md#resizable) property is used for a [list box column](listbox_overview.md#list-box-columns), the user can also manually resize the column. -> * When resizing the form, if the ["Grow" horizontal sizing](properties_ResizingOptions.md#horizontal-sizing) property was assigned to the list box, the right-most column will be increased beyond its maximum width if necessary. +> * Se a propriedade [Resizable](properties_ResizingOptions.md#resizable) for usada para uma [coluna de caixa de listagem](listbox_overview.md#list-box-columns), o usuário também poderá redimensionar manualmente a coluna. +> * Ao redimensionar o formulário, se a propriedade [ de dimensionamento horizontal "Grow"](properties_ResizingOptions.md#horizontal-sizing) tiver sido atribuída à caixa de listagem, a coluna mais à direita será aumentada além de sua largura máxima, se necessário. + + #### Gramática JSON @@ -184,16 +242,27 @@ Esta propriedade designa o tamanho horizontal de um objeto. | ----- | ------------- | ----------------- | | width | number | mínimo: 0 | + + + #### Objectos suportados -[4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Button](button_overview.md) - [Button Grid](buttonGrid_overview.md) - [Check Box](checkbox_overview.md) - [Combo Box](comboBox_overview.md) - [Dropdown list](dropdownList_Overview.md) - [Group Box](groupBox.md) - [Hierarchical List](list_overview.md#overview) - [Input](input_overview.md) - [Line](shapes_overview.md#line) - [List Box](listbox_overview.md#overview) - [List Box Column](listbox_overview.md#list-box-columns) - [Oval](shapes_overview.md#oval) - [Picture Button](pictureButton_overview.md) - [Picture Pop up menu](picturePopupMenu_overview.md) - [Plug-in Area](pluginArea_overview.md#overview) - [Progress Indicators](progressIndicator.md) - [Radio Button](radio_overview.md) - [Ruler](ruler.md) - [Rectangle](shapes_overview.md#rectangle) - [Spinner](spinner.md) - [Splitter](splitters.md) - [Static Picture](staticPicture.md) - [Stepper](stepper.md) - [Subform](subform_overview.md) - [Tab control](tabControl.md) - [Text Area](text.md) - [Web Area](webArea_overview.md#overview) +[4D View Pro Area](viewProArea_overview.md) - [4D Write Pro Area](writeProArea_overview.md) - [Botão](button_overview.md) - [Grade de botões](buttonGrid_overview.md) - [Caixa de seleção](checkbox_overview.md) - [Caixa de](comboBox_overview.md) [combinação](dropdownList_Overview.md) - <6>Lista suspensa - Caixa de grupo - [Lista hierárquica](list_overview.md#overview) - [Entrada](input_overview.md) - [Linha](shapes_overview.md#line) - [Caixa de listagem](listbox_overview.md#overview) - [Coluna de caixa de listagem](listbox_overview.md#list-box-columns) - [Oval](shapes_overview.md#oval) - [Botão de imagem](pictureButton_overview.md) - [Menu pop-up de imagem](picturePopupMenu_overview.md) - [Área de plug-in](pluginArea_overview.md#overview) - [Indicadores de progresso](progressIndicator.md) - [Botão de rádio](radio_overview.md) - [Régua](ruler.md) - [Retângulo](shapes_overview.md#rectangle) - [Spinner](spinner.md) - [Divisor](splitters.md) - [Imagem estática](staticPicture.md) - [Stepper](stepper.md) - [Subformulário](subform_overview.md) - [Controle de tabulação](tabControl.md) - [Área de texto](text.md) - [Área da Web](webArea_overview.md#overview)

    + + --- + + ## Largura máxima -A largura máxima da coluna (em píxeis). The width of the column cannot be increased beyond this value when resizing the column or form. -> When resizing the form, if the ["Grow" horizontal sizing](properties_ResizingOptions.md#horizontal-sizing) property was assigned to the list box, the right-most column will be increased beyond its maximum width if necessary. +A largura máxima da coluna (em píxeis). A largura da coluna não pode ser aumentada além deste valor ao redimensionar a coluna ou o formulário. + + +> Ao redimensionar o formulário, se a propriedade [ de dimensionamento horizontal "Grow"](properties_ResizingOptions.md#horizontal-sizing) tiver sido atribuída à caixa de listagem, a coluna mais à direita será aumentada além de sua largura máxima, se necessário. + + #### Gramática JSON @@ -201,16 +270,27 @@ A largura máxima da coluna (em píxeis). The width of the column cannot be incr | -------- | ------------- | ----------------- | | maxWidth | number | mínimo: 0 | + + + #### Objectos suportados [Coluna da List Box](listbox_overview.md#list-box-columns) + + --- + + ## Largura mínima A largura mínima da coluna (em píxeis). A largura da coluna não pode ser reduzida abaixo deste valor quando se redimensiona a coluna ou o formulário. -> When resizing the form, if the ["Grow" horizontal sizing](properties_ResizingOptions.md#horizontal-sizing) property was assigned to the list box, the right-most column will be increased beyond its maximum width if necessary. + + +> Ao redimensionar o formulário, se a propriedade [ de dimensionamento horizontal "Grow"](properties_ResizingOptions.md#horizontal-sizing) tiver sido atribuída à caixa de listagem, a coluna mais à direita será aumentada além de sua largura máxima, se necessário. + + #### Gramática JSON @@ -218,15 +298,24 @@ A largura mínima da coluna (em píxeis). A largura da coluna não pode ser redu | -------- | ------------- | ----------------- | | minWidth | number | mínimo: 0 | + + + #### Objectos suportados [Coluna da List Box](listbox_overview.md#list-box-columns) + + --- + + ## Array altura linha -Define a altura das linhas do list box (excluindo cabeçalhos e rodapés). By default, the row height is set according to the platform and the font size. +Define a altura das linhas do list box (excluindo cabeçalhos e rodapés). Por padrão, a altura da linha é definida conforme a plataforma e o tamanho da fonte. + + #### Gramática JSON @@ -234,32 +323,48 @@ Define a altura das linhas do list box (excluindo cabeçalhos e rodapés). By de | --------- | ------------- | ----------------------------------------------- | | rowHeight | string | valor css na unidade "em" ou "px" (por defeito) | + + + #### Objectos suportados [List Box](listbox_overview.md#overview) + + #### Veja também [Array estilo linha](#row-height-array) + + --- + + ## Array estilo linha -This property is used to specify the name of a row height array that you want to associate with the list box. Um array de altura de linha deve ser do tipo numérico (longint por defeito). +Essa propriedade é usada para especificar o nome de um array de altura de linha que você deseja associar a list box. Um array de altura de linha deve ser do tipo numérico (longint por defeito). -When a row height array is defined, each of its elements whose value is different from 0 (zero) is taken into account to determine the height of the corresponding row in the list box, based on the current Row Height unit. +Quando um array de altura de linha é definido, cada um de seus elementos cujo valor difere de 0 (zero) é considerado para determinar a altura da linha correspondente no list box, com base na unidade de altura da linha atual. Por exemplo, pode escrever: + + ```4d ARRAY LONGINT(RowHeights;20) RowHeights{5}:=3 ``` -Assuming that the unit of the rows is "lines," then the fifth row of the list box will have a height of three lines, while every other row will keep its default height. -> * The Row Height Array property is not taken into account for hierarchical list boxes. -> * For array-based list boxes, this property is available only if the [Automatic Row Height](#automatic-row-height) option is not selected. + +Supondo que a unidade das linhas seja "linhas", então a quinta linha do list box terá uma altura de três linhas, enquanto todas as outras linhas manterão sua altura padrão. + + +> * A propriedade Row Height Array não é considerado nos list boxes hierárquicos. +> * Para caixas de listagem de seleção de matriz e coleção/entidade, essa propriedade estará disponível somente se a opção [Altura automática da linha](#automatic-row-height) não estiver selecionada. + + #### Gramática JSON @@ -267,41 +372,63 @@ Assuming that the unit of the rows is "lines," then the fifth row of the list bo | --------------- | ------------- | ------------------------------ | | rowHeightSource | string | Nome de uma variável array 4D. | + + + #### Objectos suportados [List Box](listbox_overview.md#overview) + + #### Veja também [Array altura linha](#row-height) + + --- + + ## Barra rolagem horizontal Define um preenchimento horizontal para as células. O valor é definido em pixeis (padrão = 0). ![](../assets/en/FormObjects/padding.png) + + #### Gramática JSON | Nome | Tipo de dados | Valores possíveis | | ----------------- | ------------- | ------------------------------- | | horizontalPadding | number | Número de pixéis (deve ser >=0) | + + + #### Objectos suportados [List Box](listbox_overview.md#overview) - [List Box Column](listbox_overview.md#list-box-columns) - [Footers](properties_Footers.md) - [Headers](properties_Headers.md) + + #### Veja também [Dimensionamento vertical](#vertical-padding) + + --- + + ## Dimensionamento vertical -Define um preenchimento vertical para as células. O valor é definido em pixeis (padrão = 0). +Define um preenchimento vertical para as células. O valor é definido em pixeis (padrão = 0). + + #### Gramática JSON @@ -309,9 +436,14 @@ Define um preenchimento vertical para as células. O valor é definido em pixeis | --------------- | ------------- | ------------------------------- | | verticalPadding | number | Número de pixéis (deve ser >=0) | + + + #### Objectos suportados -[List Box](listbox_overview.md#overview) - [List Box Column](listbox_overview.md#list-box-columns) - [Footers](properties_Footers.md) - [Headers](properties_Headers.md) +[Caixa de listagem](listbox_overview.md#overview) - [Coluna de caixa de listagem](listbox_overview.md#list-box-columns) - [Rodapés](properties_Footers.md) - [Cabeçalhos](properties_Headers.md) + + #### Veja também diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Reference.md index d833c57a56045a..ffe3c54ca27651 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Reference.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Reference.md @@ -10,196 +10,196 @@ Nesta página, encontrará uma lista completa de todas as propriedades de object [a](#a) - [b](#b) - [c](#c) - [d](#d) - [e](#e) - [f](#f) - [g](#g) - [h](#h) - [i](#i) - [j](#j) - [k](#k) - [l](#l) - [m](#m) - [n](#n) - [p](#p) - [r](#r) - [s](#s) - [t](#t) - [u](#u) - [v](#v) - [w](#w) - [z](#z) -| Propriedade | Descrição | Valores possíveis | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **a** | | | -| [`action`](properties_Action.md#standard-action) | Ação típica a ser executada. | O nome de uma ação standard válida. | -| [`allowFontColorPicker`](properties_Text.md#allow-fontcolor-picker) | Permite a exibição do seletor de fontes do sistema ou do seletor de cores para editar os atributos dos objetos | true, false (padrão) | -| [`alternateFill`](properties_BackgroundAndBorder.md#alternate-background-color) | Permite definir uma cor de fundo diferente para linhas/colunas ímpares em uma caixa de listagem. | Qualquer valor CSS; "transparent"; "automatic"; "automaticAlternate" | -| [`automaticInsertion`](properties_DataSource.md#automatic-insertion) | Habilita a adição automática de um valor a uma lista quando o usuário insere um valor que não está na lista de escolha associada ao objeto. | true, false | -| **b** | | | -| [`booleanFormat`](properties_Display.md#text-when-falsetext-when-true) | Especifica apenas dois valores possíveis. | true, false | -| [`borderRadius`](properties_CoordinatesAndSizing.md#corner-radius) | O valor do raio para rectângulos redondos. | mínimo: 0 | -| [`borderStyle`](properties_BackgroundAndBorder.md#border-line-style-dotted-line-type) | Permite definir um estilo padrão para o contorno do objeto. | "system", "none", "solid", "dotted", "raised", "sunken", "double" | -| [`bottom`](properties_CoordinatesAndSizing.md#bottom) | Posiciona um objeto na parte inferior (centrado). | mínimo: 0 | -| **c** | | | -| [`choiceList`](properties_DataSource.md#choice-list) | Uma lista de escolhas associadas a um objeto | Uma lista de escolhas | -| [`"class"`](properties_Object.md#css-class) | Uma lista de palavras separadas por espaços utilizadas como selectores de classe em ficheiros css. | Uma lista de nomes de classes | -| [`columnCount`](properties_Crop.md#columns) | Número de colunas. | mínimo: 1 | -| [`columns`](properties_ListBox.md#columns) | Um conjunto de colunas list box | Coleção de objetos coluna com as propriedades de colunas definidas | -| [`contextMenu`](properties_Entry.md#context-menu) | Dá ao usuário acesso a um menu contextual padrão na área selecionada. | "automatic", "none" | -| [`continuousExecution`](properties_Action.md#execute-object-method) | Designa se deve ou não ser executado o método de um objeto enquanto o usuário segue o controlo. | true, false | -| [`controlType`](properties_Display.md#display-type) | Especifica como o valor deve ser apresentado numa célula do list box. | "input", "checkbox" (para colunas booleanas / numéricas), "automatic", "popup" (apenas para colunas booleanas) | -| [`currentItemSource`](properties_DataSource.md#current-item) | O último item selecionado num list box. | Expressão de objecto | -| [`currentItemPositionSource`](properties_DataSource.md#current-item-position) | A posição do último item selecionado num list box. | Expressão numérica | -| [`customBackgroundPicture`](properties_TextAndPicture.md#background-pathname) | Define a imagem que será desenhada no fundo, de um botão. | Caminho relativo na sintaxe POSIX. Deve ser utilizado em conjunto com a opção "Personalizado" da propriedade "Style". | -| [`customBorderX`](properties_TextAndPicture.md#horizontal-margin) | Define o tamanho (em píxeis) das margens horizontais internas de um objeto. Deve ser utilizado com a opção "Personalizado" da propriedade "Style". | mínimo: 0 | -| [`customBorderY`](properties_TextAndPicture.md#vertical-margin) | Define o tamanho (em píxeis) das margens verticais internas de um objeto. Deve ser utilizado com a opção "Personalizado" da propriedade "Style". | mínimo: 0 | -| [`customOffset`](properties_TextAndPicture.md#icon-offset) | Define um valor de desvio personalizado em pixéis. Deve ser utilizado com a opção "Personalizado" da propriedade "Style". | mínimo: 0 | -| [`customProperties`](properties_Plugins.md#advanced-properties) | Propriedades avançadas (se existirem) | Cadeia JSON ou cadeia codificada em base64 | -| **d** | | | -| [dataSource](properties_Object.md#variable-or-expression) (objects)
    [dataSource](properties_Subform.md#source) (subforms)
    [dataSource](properties_Object.md#data-source) (array list box)
    [dataSource](properties_Object.md#collection-or-entity-selection) (Collection or entity selection list box)
    [dataSource](properties_DataSource.md#expression) (list box column)
    [dataSource](properties_Hierarchy.md#hierarchical-list-box) (hierarchical list box) | Especifica a fonte dos dados. | Uma variável 4D, nome de campo ou uma expressão de linguagem complexa arbitrária. | -| [dataSourceTypeHint](properties_Object.md#expression-type) (objects)
    [dataSourceTypeHint](properties_DataSource.md#data-type) (list box column) | Indica o tipo de variável. | "integer", "number", "boolean", "picture", "text", date", "time", "arrayText", "collection", "object", "undefined" | -| [`dateFormat`](properties_Display.md#date-format) | Controla como as datas aparecem quando são apresentadas ou impressas. | Built-in formats ("systemShort", "systemMedium", "systemLong", "iso8601", "rfc822", "short", "shortCentury", "abbreviated", "long", "blankIfNull") | -| [`defaultButton`](properties_Appearance.md#default-button) | Modifica o aspeto de um botão para indicar ao usuário a escolha recomendada. | true, false | -| [`defaultValue`](properties_RangeOfValues.md#default-value) | Define um valor ou um carimbo a ser introduzido por defeito num objeto de entrada | Cadeia ou "#D", "#H", "#N" | -| [`deletableInList`](properties_Subform.md#allow-deletion) | Especifica se o utilizador pode eliminar sub-registos num subformulário lista | true, false | -| [detailForm](properties_ListBox.md#detail-form-name) (list box)
    [detailForm](properties_Subform.md#detail-form) (subform) | Associa um formulário detalhado a um subformulário listado. | Name (string) of table or project form, a POSIX path (string) to a .json file describing the form, or an object describing the form | -| [`display`](properties_Display.md#not-rendered) | O objeto é desenhado ou não no formulário. | true, false | -| [`doubleClickInEmptyAreaAction`](properties_Subform.md#double-click-on-empty-row) | Action to perform in case of a double-click on an empty line of a list subform. | "addSubrecord" ou "" para não fazer nada | -| [doubleClickInRowAction](properties_ListBox.md#double-click-on-row) (list box)
    [doubleClickInRowAction](properties_Subform.md#double-click-on-row) (subform) | Ação a executar no caso de um duplo clique num registo. | "editSubrecord", "displaySubrecord" | -| [`dpi`](properties_Appearance.md#resolution) | Resolução do ecrã para o conteúdo da área 4D Write Pro. | 0=automatic, 72, 96 | -| [`dragging`](properties_Action.md#draggable) | Ativa a função de arrastamento. | "none", "custom", "automatic" (exceto lista, list box) | -| [`dropping`](properties_Action.md#droppable) | Habilita a função de soltar. | "none", "custom", "automatic" (exceto lista, list box) | -| **e** | | | -| [`enterable`](properties_Entry.md#enterable) | Indica se os usuários podem introduzir valores no objeto. | true, false | -| [`enterableInList`](properties_Subform.md#enterable-in-list) | Indica se os usuários podem modificar os dados do registo diretamente no subformulário lista. | true, false | -| [`entryFilter`](properties_Entry.md#entry-filter) | Associa um filtro de entrada ao objeto ou às células da coluna. Essa propriedade não estará acessível se a propriedade Enterable não estiver ativada. | Texto para restringir entradas | -| [`events`](Events/overview.md) | Lista de todos os eventos selecionados para o objeto ou formulário | Coleção de nomes de eventos, por exemplo, ["onClick", "onDataChange"...]. | -| [`excludedList`](properties_RangeOfValues.md#excluded-list) | Permite definir uma lista cujos valores não podem ser introduzidos na coluna. | Uma lista de valores a excluir. | -| **f** | | | -| [`fill`](properties_BackgroundAndBorder.md#background-color--fill-color) | Define a cor de fundo de um objeto. | Qualquer valor CSS, "transparent", "automatic" | -| [`focável`](properties_Entry.md#focusable) | Indica se o objeto pode ter o foco (e, pode ser ativado pelo teclado, por exemplo) | true, false | -| [`fontFamily`](properties_Text.md#font) | Especifica o nome da família de fontes utilizada no objeto. | Nome da família de fontes CSS | -| [`fontSize`](properties_Text.md#font-size) | Define o tamanho do tipo de letra em pontos quando não está selecionado nenhum tema de tipo de letra | mínimo: 0 | -| [`fontStyle`](properties_Text.md#italic) | Define o texto selecionado como ligeiramente inclinado para a direita. | "normal", "italic" | -| [`fontTheme`](properties_Text.md#font-theme) | Define o estilo automático | "normal", "main", "additional" | -| [`fontWeight`](properties_Text.md#bold) | Define o texto selecionado para aparecer mais escuro e mais pesado. | "normal", "bold" | -| [`footerHeight`](properties_Footers.md#height) | Utilizado para definir a altura da linha | pattern (\\d+)(p|em)?$ (positive decimal + px/em ) | -| [`frameDelay`](properties_Animation.md#switch-every-x-ticks) | Permite percorrer o conteúdo do botão de imagem na velocidade especificada (em ticks). | mínimo: 0 | -| **g** | | | -| [`graduationStep`](properties_Scale.md#graduation-step) | Medição do visor da escala. | mínimo: 0 | -| **h** | | | -| [`header`](properties_Headers.md#headers) | Define o cabeçalho de uma coluna list box | Objeto com as propriedades "text", "name", "icon", "dataSource", "fontWeight", "fontStyle", "tooltip" | -| [`headerHeight`](properties_Headers.md#height) | Utilizado para definir a altura da linha | pattern (\\d+)(p|em)?$ (positive decimal + px/em ) | -| [`height`](properties_CoordinatesAndSizing.md#height) | Designa o tamanho vertical de um objeto | mínimo: 0 | -| [`hideExtraBlankRows`](properties_BackgroundAndBorder.md#hide-extra-blank-rows) | Desactiva a visibilidade de linhas extra e vazias. | true, false | -| [`hideFocusRing`](properties_Appearance.md#hide-focus-rectangle) | Oculta o retângulo de seleção quando o objeto tem o foco. | true, false | -| [`hideSystemHighlight`](properties_Appearance.md#hide-selection-highlight) | Utilizado para especificar a ocultação dos registos destacados no list box. | true, false | -| [`highlightSet`](properties_ListBox.md#highlight-set) | string | Nome do conjunto. | -| [`horizontalLineStroke`](properties_Gridlines.md#horizontal-line-color) | Define a cor das linhas horizontais num list box (cinzento por predefinição). | Qualquer valor CSS, "'transparent", "automatic" | -| **i** | | | -| [`icon`](properties_TextAndPicture.md#picture-pathname) | O nome do caminho da imagem utilizada para botões, caixas de verificação, botões rádio e cabeçalhos de list box. | Caminho relativo ou filesystem na sintaxe POSIX. | -| [`iconFrames`](properties_TextAndPicture.md#number-of-states) | Define o número exato de estados presentes na imagem. | mínimo: 1 | -| [`iconPlacement`](properties_TextAndPicture.md#icon-location) | Designa a colocação de um ícone em relação ao objeto formulário. | "none", "left", "right" | -| [`imageHugsTitle`](properties_TextAndPicture.md#image-hugs-title) | Define se o título e a imagem do botão devem ser visualmente adjacentes. | true (padrão), false | -| **k** | | | -| [`keyboardDialect`](properties_Entry.md#keyboardDialect) | Para associar um esquema de teclado específico a uma entrada. | Uma cadeia de códigos de teclado, por exemplo, "ar-ma" | -| **l** | | | -| [`labels`](properties_DataSource.md#choice-list-static-list) | Uma lista de valores a utilizar como etiquetas de controlo de pestanas | ex: "a", "b, "c", ... | -| [labelsPlacement](properties_Scale.md#label-location) (objects)
    [labelsPlacement](properties_Appearance.md#tab-control-direction) (splitter / tab control) | Especifica a localização do texto de um objeto. | "none", "top", "bottom", "left", "right" | -| [`layoutMode`](properties_Appearance.md#view-mode) | Modo de exibição do documento 4D Write Pro na área do formulário. | "page", "draft", "embedded" | -| [`left`](properties_CoordinatesAndSizing.md#left) | Posiciona um objeto à esquerda. | mínimo: 0 | -| list, see [choiceList](properties_DataSource.md#choice-list) | Uma lista de escolhas associada a uma lista hierárquica | Uma lista de escolhas | -| [`listboxType`](properties_Object.md#data-source) | A fonte de dados do list box. | "array", "currentSelection", "namedSelection", "collection" | -| [`listForm`](properties_Subform.md#list-form) | Formulário lista a utilizar no subformulário. | Name (string) of table or project form, a POSIX path (string) to a .json file describing the form, or an object describing the form | -| [`lockedColumnCount`](properties_ListBox.md#number-of-locked-columns) | Número de colunas que devem ser permanentemente apresentadas na parte esquerda de um list box. | mínimo: 0 | -| [`loopBackToFirstFrame`](properties_Animation.md#loop-back-to-first-frame) | As imagens são apresentadas num ciclo contínuo. | true, false | -| **m** | | | -| [`max`](properties_Scale.md#maximum) | O valor máximo permitido. For numeric steppers, these properties represent seconds when the object is associated with a time type value and are ignored when it is associated with a date type value. | mínimo: 0 (para tipos de dados numéricos) | -| [`maxWidth`](properties_CoordinatesAndSizing.md#maximum-width) | Designa o maior tamanho permitido para as colunas do list box. | mínimo: 0 | -| [`metaSource`](properties_Text.md#meta-info-expression) | Um objeto meta que contém definições de estilo e de seleção. | Uma expressão de objecto | -| [`method`](properties_Action.md#method) | Um nome de método projecto. | O nome de um método projecto existente | -| [`methodsAccessibility`](properties_WebArea.md#access-4d-methods) | Que métodos 4D podem ser chamados a partir de uma área Web | "none" (padrão), "all" | -| [`min`](properties_Scale.md#minimum) | O valor mínimo permitido. For numeric steppers, these properties represent seconds when the object is associated with a time type value and are ignored when it is associated with a date type value. | mínimo: 0 (para tipos de dados numéricos) | -| [`minWidth`](properties_CoordinatesAndSizing.md#minimum-width) | Designa o tamanho menor permitido para as colunas list box. | mínimo: 0 | -| [`movableRows`](properties_Action.md#movable-rows) | Autoriza a deslocação de linhas durante a execução. | true, false | -| [`multilinha`](properties_Entry.md#multiline) | Manipula conteúdo multilinha. | "yes", "no", "automatic" | -| **n** | | | -| [`name`](properties_Object.md#object-name) | O nome do objecto formulário. (Facultativo para o formulário) | Qualquer nome que não pertença a um objeto já existente | -| [`numberFormat`](properties_Display.md#number-format) | Controla como os campos alfanuméricos e as variáveis aparecem quando exibidos ou impressos. | Números (incluindo um ponto decimal ou sinal de menos, se necessário) | -| **p** | | | -| [`picture`](properties_Picture.md#pathname) | O nome do caminho da imagem para botões de imagem, menus pop-up de imagem ou imagens estáticas | Caminho relativo ou do sistema de arquivos na sintaxe POSIX, ou "var:\" para variável imagem. | -| [`pictureFormat`](properties_Display.md#picture-format) (entrada, coluna list box ou rodapé)
    [`pictureFormat`](properties_Picture.md#display) (imagem estática) | Controla a aparência das imagens quando exibidas ou impressas. | "truncatedTopLeft", "scaled", "truncatedCenter", "tiled", "proportionalTopLeft" (excluindo imagens estáticas), "proportionalCenter" (excluindo imagens estáticas) | -| [`placeholder`](properties_Entry.md#placeholder) | Acinzenta o texto quando o valor da fonte de dados está vazio. | Texto a ficar a cinzento. | -| [`pluginAreaKind`](properties_Object.md#plug-in-kind) | Descreve o tipo de plug-in. | O tipo de plug-in. | -| [`popupPlacement`](properties_TextAndPicture.md#with-pop-up-menu) | Permite a exibição de um símbolo que aparece como um triângulo no botão, o que indica haver um menu pop-up anexado. | "None", Linked", "Separated" | -| [`printFrame`](properties_Print.md#print-frame) | Modo de impressão para objetos cujo tamanho pode variar de um registro para outro, dependendo de seu conteúdo | "fixed", "variable", (apenas subformulário) "fixedMultiple" | -| [`progressSource`](properties_WebArea.md#progression) | Um valor entre 0 e 100, que representa a porcentagem de conclusão do carregamento da página na área Web. Atualizado automaticamente por 4D, não pode ser modificado manualmente. | mínimo: 0 | -| **r** | | | -| [`radioGroup`](properties_Object.md#radio-group) | Enables radio buttons to be used in coordinated sets: only one button at a time can be selected in the set. | Nome do grupo rádio | -| [`requiredList`](properties_RangeOfValues.md#required-list) | Permite definir uma lista onde só podem ser inseridos determinados valores. | Uma lista de valores obrigatórios. | -| [`resizable`](properties_ResizingOptions.md#resizable) | Designa se o tamanho de um objeto pode ser modificado pelo usuário. | "true", "false" | -| [`resizingMode`](properties_ResizingOptions.md#column-auto-resizing) | Especifica se uma coluna da caixa de listagem deve ser redimensionada automaticamente | "rightToLeft", "legacy" | -| [`direita`](properties_CoordinatesAndSizing.md#right) | Posiciona um objeto à direita. | mínimo: 0 | -| [`rowControlSource`](properties_ListBox.md#row-control-array) | Um array 4D que define as linhas do list box. | Array | -| [`rowCount`](properties_Crop.md#rows) | Define o número de linhas. | mínimo: 1 | -| [rowFillSource](properties_BackgroundAndBorder.md#row-background-color-array) (array list box)
    [rowFillSource](properties_BackgroundAndBorder.md#background-color-expression) (selection or collection list box) | O nome de um array ou expressão para aplicar uma cor de fundo personalizada a cada linha de um list box. | O nome de um array ou expressão. | -| [`rowHeight`](properties_CoordinatesAndSizing.md#row-height) | Define a altura das linhas do list box. | Valor CSS a unidade "em" ou "px" (por padrão) | -| [`rowHeightAuto`](properties_CoordinatesAndSizing.md#automatic-row-height) | boolean | "true", "false" | -| [`rowHeightAutoMax`](properties_CoordinatesAndSizing.md#maximum-width) | Designa a maior altura permitida para as linhas do list box. | Valor CSS a unidade "em" ou "px" (por padrão). mínimo: 0 | -| [`rowHeightAutoMin`](properties_CoordinatesAndSizing.md#minimum-width) | Designa a altura mais pequena permitida para as linhas da caixa do list box. | Valor CSS a unidade "em" ou "px" (por padrão). mínimo: 0 | -| [`rowHeightSource`](properties_CoordinatesAndSizing.md#row-height-array) | Um array que define diferentes alturas para as linhas de um list box. | Nome de uma variável array 4D. | -| [rowStyleSource](properties_Text.md#row-style-array) (array list box)
    [rowStyleSource](properties_Text.md#style-expression) (selection or collection/entity selection list box) | Um arrray ou expressão para gerir as cores das linhas. | Nome do array ou expressão. | -| [rowStrokeSource](properties_Text.md#row-font-color-array) (array list box)
    [rowStrokeSource](properties_Text.md#font-color-expression) (selection or collection/entity selection list box) | Um arrray ou expressão para gerir estilos das linhas. | Nome do array ou expressão. | -| **s** | | | -| entryFiler | O tipo de conteúdo a ser salvo no campo ou na variável associada ao objeto de formulário | "value", "reference" | -| [`scrollbarHorizontal`](properties_Appearance.md#horizontal-scroll-bar) | Uma ferramenta que permite ao usuário mover a área de visualização para a esquerda ou para a direita. | "visible", "hidden", "automatic" | -| [`scrollbarVertical`](properties_Appearance.md#vertical-scroll-bar) | Uma ferramenta que permite ao usuário mover a área de visualização para cima ou para baixo. | "visible", "hidden", "automatic" | -| [`selectedItemsSource`](properties_DataSource.md#selected-items) | Coleção dos itens seleccionados num list box. | Expressão da colecção | -| [selectionMode](properties_Action.md#multi-selectable) (hierarchical list)
    [selectionMode](properties_ListBox.md#selection-mode) (list box)
    [selectionMode](properties_Subform.md#selection-mode) (subform) | Permite a seleção de vários registos/linhas. | "multiple", "single", "none" | -| [`shortcutAccel`](properties_Entry.md#shortcut) | Especifica o sistema a utilizar, Windows ou Mac. | true, false | -| [`shortcutAlt`](properties_Entry.md#shortcut) | Designa a tecla Alt | true, false | -| [`shortcutCommand`](properties_Entry.md#shortcut) | Designa a tecla Comando (macOS) | true, false | -| [`shortcutControl`](properties_Entry.md#shortcut) | Designa a tecla Control (Windows) | true, false | -| [`shortcutKey`](properties_Entry.md#shortcut) | A letra ou o nome de uma chave de significado especial. | "[F1]" -> "[F15]", "[Return]", "[Enter]", "[Backspace]", "[Tab]", "[Esc]", "[Del]", "[Home]", "[End]", "[Help]", "[Page up]", "[Page down]", "[left arrow]", "[right arrow]", "[up arrow]", "[down arrow]" | -| [`shortcutShift`](properties_Entry.md#shortcut) | Designa a tecla Shift | true, false | -| [`showFooters`](properties_Footers.md#display-footers) | Mostra ou oculta os rodapés das colunas. | true, false | -| [`showGraduations`](properties_Scale.md#display-graduation) | Apresenta/oculta as graduações junto às etiquetas. | true, false | -| [`showHeaders`](properties_Headers.md#display-headers) | Mostra ou oculta os cabeçalhos das colunas. | true, false | -| [`showHiddenChars`](properties_Appearance.md#show-hidden-characters) | Mostra/oculta caracteres invisíveis. | true, false | -| [`showHorizontalRuler`](properties_Appearance.md#show-horizontal-ruler) | Mostra/oculta a régua horizontal quando a vista de documento está no modo de vista Página | true, false | -| [`showHTMLWysiwyg`](properties_Appearance.md#show-html-wysiwyg) | Ativa/desactiva a visualização HTML WYSIWYG | true, false | -| [`showPageFrames`](properties_Appearance.md#show-page-frame) | Exibe/oculta a moldura da página quando a visualização do documento está no modo Visualização de página | true, false | -| [`showReferences`](properties_Appearance.md#show-references) | Apresenta todas as expressões 4D inseridas no documento 4D Write Pro como *referências * | true, false | -| [`showSelection`](properties_Entry.md#selection-always-visible) | Mantém a seleção visível no objeto depois que ele perde o foco | true, false | -| [`showVerticalRuler`](properties_Appearance.md#show-vertical-ruler) | Exibe/oculta a régua vertical quando a visualização do documento está no modo de visualização Página | true, false | -| [`singleClickEdit`](properties_Entry.md#single-click-edit) | Permite a passagem direta para o modo de edição. | true, false | -| [`sizingX`](properties_ResizingOptions.md#horizontal-sizing) | Especifica se o tamanho horizontal de um objeto deve ser movido ou redimensionado quando um usuário redimensiona o formulário. | "grow", "move", "fixed" | -| [`sizingY`](properties_ResizingOptions.md#horizontal-sizing) | Especifica se o tamanho vertical de um objeto deve ser movido ou redimensionado quando um usuário redimensiona o formulário. | "grow", "move", "fixed" | -| [`sortable`](properties_Action.md#sortable) | Permite ordenar os dados das colunas clicando no cabeçalho. | true, false | -| [`spellcheck`](properties_Entry.md#auto-spellcheck) | Ativa a verificação ortográfica do objeto | true, false | -| [`splitterMode`](properties_ResizingOptions.md#pusher) | When a splitter object has this property, other objects to its right (vertical splitter) or below it (horizontal splitter) are pushed at the same time as the splitter, with no stop. | "grow", "move", "fixed" | -| [`startPoint`](shapes_overview.md#startpoint-property) | Ponto de partida para desenhar um objeto de linha (disponível somente na gramática JSON). | "bottomLeft", topLeft" | -| [`staticColumnCount`](properties_ListBox.md#number-of-static-columns) | Número de colunas que não podem ser movidas durante a execução. | mínimo: 0 | -| [`step`](properties_Scale.md#step) | Intervalo mínimo aceite entre valores durante a utilização. For numeric steppers, this property represents seconds when the object is associated with a time type value and days when it is associated with a date type value. | mínimo: 1 | -| [`storeDefaultStyle`](properties_Text.md#store-with-default-style-tags) | Armazenar as etiquetas de estilo com o texto, mesmo que nenhuma modificação tenha sido feita | true, false | -| [stroke](properties_Text.md#font-color) (text)
    [stroke](properties_BackgroundAndBorder.md#line-color) (lines)
    [stroke](properties_BackgroundAndBorder.md#transparent) (list box) | Especifica a cor do tipo de letra ou da linha utilizada no objeto. | Qualquer valor CSS, "transparent", "automatic" | -| [`strokeDashArray`](properties_BackgroundAndBorder.md#dotted-line-type) | Descreve o tipo de linha pontilhada como uma sequência de pontos pretos e brancos | Arrays numéricos ou strings | -| [`strokeWidth`](properties_BackgroundAndBorder.md#line-width) | Designa a espessura de uma linha. | Um número inteiro ou 0 para a largura mais pequena num formulário impresso | -| [`style`](properties_TextAndPicture.md#multi-style) | Permite definir o aspeto geral do botão. Consulte Estilo do botão para obter mais informações. | "regular", "flat", "toolbar", "bevel", "roundedBevel", "gradientBevel", "texturedBevel", "office", "help", "circular", "disclosure", "roundedDisclosure", "custom" | -| [`styledText`](properties_Text.md#style) | Permite a possibilidade de utilizar estilos específicos na área selecionada. | true, false | -| [`switchBackWhenReleased`](properties_Animation.md#switch-back-when-released) | Exibe a primeira imagem o tempo todo, exceto quando o usuário clica no botão. Apresenta a segunda imagem até que o botão do rato seja libertado. | true, false | -| [`switchContinuously`](properties_Animation.md#switch-continuously-on-clicks) | Permite ao usuário manter pressionado o botão do mouse para exibir as imagens continuamente (ou seja, como uma animação). | true, false | -| [`switchWhenRollover`](properties_Animation.md#switch-when-roll-over) | Modifica o conteúdo do botão de imagem quando o cursor do mouse passa sobre ele. A imagem inicial é exibida quando o cursor sai da área do botão. | true, false | -| **t** | | | -| [`tabela`](properties_Subform.md#source) | Tabela a que pertence o subformulário Lista (se existir). | Nome da tabela 4D, ou "" | -| [`text`](properties_Object.md#title) | O título do objeto formulário | Qualquer texto | -| [`textAlign`](properties_Text.md#horizontal-alignment) | Localização horizontal do texto na área que o contém. | "automatic", "right", "center", "justify", "left" | -| [`textAngle`](properties_Text.md#orientation) | Modifica a orientação (rotação) da área de texto. | 0, 90, 180, 270 | -| [`textDecoration`](properties_Text.md#underline) | Define o texto selecionado para ter uma linha por baixo. | "normal", "underline" | -| [`textFormat`](properties_Display.md#alpha-format) | Controla como os campos alfanuméricos e as variáveis aparecem quando exibidos ou impressos. | "####", "(#####) ### ####", "### ### ### ####", "#### ## ####", "00000", formatos personalizados | -| [`textPlacement`](properties_TextAndPicture.md#titlepicture-position) | Localização relativa do título do botão em relação ao ícone associado. | "left", "top", "right", "bottom", "center" | -| [`threeState`](properties_Display.md#three-states) | Permite que um objeto de caixa de verificação aceite um terceiro estado. | true, false | -| [`timeFormat`](properties_Display.md#time-format) | Controla como as horas aparecem quando são apresentadas ou impressas. | Built-in formats ("systemShort", "systemMedium", "systemLong", "iso8601", "hh_mm_ss", "hh_mm", "hh_mm_am", "mm_ss", "HH_MM_SS", "HH_MM", "MM_SS", "blankIfNull") | -| [`truncateMode`](properties_Display.md#truncate-with-ellipsis) | Controla a exibição de valores quando as colunas da caixa de listagem são muito estreitas para mostrar todo o seu conteúdo. | "withEllipsis", "none" | -| [`type`](properties_Object.md#type) | Obrigatório. Designa o tipo de dados do objeto do formulário. | "text", "rectangle", "groupBox", "tab", "line", "button", "checkbox", "radio", "dropdown", "combo", "webArea", "write", "subform", "plugin", "splitter", "buttonGrid", "progress", "ruler", "spinner", "stepper", "list", "pictureButton", "picturePopup", "listbox", "input", "view" | -| [`tooltip`](properties_Help.md) | Fornecer aos usuários informações adicionais sobre um campo. | Informações adicionais para ajudar um usuário | -| [`top`](properties_CoordinatesAndSizing.md#top) | Posiciona um objeto na parte superior (centrado). | mínimo: 0 | -| **u** | | | -| [`urlSource`](properties_WebArea.md#url) | Designa a URL carregada ou sendo carregada pela área Web associada. | Um URL. | -| [`useLastFrameAsDisabled`](properties_Animation.md#use-last-frame-as-disabled) | Habilita a configuração da última miniatura como a que será exibida quando o botão estiver desativado. | true, false | -| [`userInterface`](properties_Appearance.md#user-interface) | Interface de área 4D View Pro. | "none" (padrão), "ribbon", "toolbar" | -| **v** | | | -| [`values`](properties_DataSource.md#default-list-of-values) | Lista de valores predefinidos para as colunas listbox de tipo array | ex: "A", "B", "42"... | -| [`variableCalculation`](properties_Object.md#variable-calculation) | Permite efetuar cálculos matemáticos. | "none", "minimum", "maximum", "sum", "count", "average", "standardDeviation", "variance", "sumSquare" | -| [`verticalAlign`](properties_Text.md#vertical-alignment) | Localização vertical do texto na área que o contém. | "automatic", "top", "middle", "bottom" | -| [`verticalLineStroke`](properties_Gridlines.md#vertical-line-color) | Define a cor das linhas verticais num list box (cinzento por predefinição). | Qualquer valor CSS, "'transparent", "automatic" | -| [`visibilidade`](properties_Display.md#visibility) | Permite ocultar o objeto no ambiente da aplicação. | "visible", "hidden", "selectedRows", "unselectedRows" | -| **w** | | | -| [`webEngine`](properties_WebArea.md#use-embedded-web-rendering-engine) | Usado para escolher entre dois motores de renderização para a área Web, dependendo das especificações da aplicação. | "embedded", "system" | -| [`width`](properties_CoordinatesAndSizing.md#width) | Designa o tamanho horizontal de um objeto | mínimo: 0 | -| [`withFormulaBar`](properties_Appearance.md#show-formula-bar) | Gerencia a exibição de uma barra de fórmula com a interface da barra de ferramentas na área 4D View Pro. | true, false | -| [`wordwrap`](properties_Display.md#wordwrap) | Gerencia a exibição do conteúdo quando ele excede a largura do objeto. | "automatic" (exceto list box), "normal", "nenhum" | -| **z** | | | -| [`zoom`](properties_Appearance.md#zoom) | Percentagem de zoom para mostrar a área 4D Irite Pro | número (mínimo=0) | +| Propriedade | Descrição | Valores possíveis | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **a** | | | +| [`action`](properties_Action.md#standard-action) | Ação típica a ser executada. | O nome de uma ação standard válida. | +| [`allowFontColorPicker`](properties_Text.md#allow-fontcolor-picker) | Permite a exibição do seletor de fontes do sistema ou do seletor de cores para editar os atributos dos objetos | true, false (padrão) | +| [`alternateFill`](properties_BackgroundAndBorder.md#alternate-background-color) | Permite definir uma cor de fundo diferente para linhas/colunas ímpares em uma caixa de listagem. | Qualquer valor CSS; "transparent"; "automatic"; "automaticAlternate" | +| [`automaticInsertion`](properties_DataSource.md#automatic-insertion) | Habilita a adição automática de um valor a uma lista quando o usuário insere um valor que não está na lista de escolha associada ao objeto. | true, false | +| **b** | | | +| [`booleanFormat`](properties_Display.md#text-when-falsetext-when-true) | Especifica apenas dois valores possíveis. | true, false | +| [`borderRadius`](properties_CoordinatesAndSizing.md#corner-radius) | O valor do raio para rectângulos redondos. | mínimo: 0 | +| [`borderStyle`](properties_BackgroundAndBorder.md#border-line-style-dotted-line-type) | Permite definir um estilo padrão para o contorno do objeto. | "system", "none", "solid", "dotted", "raised", "sunken", "double" | +| [`bottom`](properties_CoordinatesAndSizing.md#bottom) | Posiciona um objeto na parte inferior (centrado). | mínimo: 0 | +| **c** | | | +| [`choiceList`](properties_DataSource.md#choice-list) | Uma lista de escolhas associadas a um objeto | Uma lista de escolhas | +| [`"class"`](properties_Object.md#css-class) | Uma lista de palavras separadas por espaços utilizadas como selectores de classe em ficheiros css. | Uma lista de nomes de classes | +| [`columnCount`](properties_Crop.md#columns) | Número de colunas. | mínimo: 1 | +| [`columns`](properties_ListBox.md#columns) | Um conjunto de colunas list box | Coleção de objetos coluna com as propriedades de colunas definidas | +| [`contextMenu`](properties_Entry.md#context-menu) | Dá ao usuário acesso a um menu contextual padrão na área selecionada. | "automatic", "none" | +| [`continuousExecution`](properties_Action.md#execute-object-method) | Designa se deve ou não ser executado o método de um objeto enquanto o usuário segue o controlo. | true, false | +| [`controlType`](properties_Display.md#display-type) | Especifica como o valor deve ser apresentado numa célula do list box. | "input", "checkbox" (para colunas booleanas / numéricas), "automatic", "popup" (apenas para colunas booleanas) | +| [`currentItemSource`](properties_DataSource.md#current-item) | O último item selecionado num list box. | Expressão de objecto | +| [`currentItemPositionSource`](properties_DataSource.md#current-item-position) | A posição do último item selecionado num list box. | Expressão numérica | +| [`customBackgroundPicture`](properties_TextAndPicture.md#background-pathname) | Define a imagem que será desenhada no fundo, de um botão. | Caminho relativo na sintaxe POSIX. Deve ser utilizado em conjunto com a opção "Personalizado" da propriedade "Style". | +| [`customBorderX`](properties_TextAndPicture.md#horizontal-margin) | Define o tamanho (em píxeis) das margens horizontais internas de um objeto. Deve ser utilizado com a opção "Personalizado" da propriedade "Style". | mínimo: 0 | +| [`customBorderY`](properties_TextAndPicture.md#vertical-margin) | Define o tamanho (em píxeis) das margens verticais internas de um objeto. Deve ser utilizado com a opção "Personalizado" da propriedade "Style". | mínimo: 0 | +| [`customOffset`](properties_TextAndPicture.md#icon-offset) | Define um valor de desvio personalizado em pixéis. Deve ser utilizado com a opção "Personalizado" da propriedade "Style". | mínimo: 0 | +| [`customProperties`](properties_Plugins.md#advanced-properties) | Propriedades avançadas (se existirem) | Cadeia JSON ou cadeia codificada em base64 | +| **d** | | | +| [dataSource](properties_Object.md#variable-or-expression) (objects)
    [dataSource](properties_Subform.md#source) (subforms)
    [dataSource](properties_Object.md#data-source) (array list box)
    [dataSource](properties_Object.md#collection-or-entity-selection) (Collection or entity selection list box)
    [dataSource](properties_DataSource.md#expression) (list box column)
    [dataSource](properties_Hierarchy.md#hierarchical-list-box) (hierarchical list box) | Especifica a fonte dos dados. | Uma variável 4D, nome de campo ou uma expressão de linguagem complexa arbitrária. | +| [dataSourceTypeHint](properties_Object.md#expression-type) (objects)
    [dataSourceTypeHint](properties_DataSource.md#data-type) (list box column) | Indica o tipo de variável. | "integer", "number", "boolean", "picture", "text", date", "time", "arrayText", "collection", "object", "undefined" | +| [`dateFormat`](properties_Display.md#date-format) | Controla como as datas aparecem quando são apresentadas ou impressas. | Built-in formats ("systemShort", "systemMedium", "systemLong", "iso8601", "rfc822", "short", "shortCentury", "abbreviated", "long", "blankIfNull") | +| [`defaultButton`](properties_Appearance.md#default-button) | Modifica o aspeto de um botão para indicar ao usuário a escolha recomendada. | true, false | +| [`defaultValue`](properties_RangeOfValues.md#default-value) | Define um valor ou um carimbo a ser introduzido por defeito num objeto de entrada | Cadeia ou "#D", "#H", "#N" | +| [`deletableInList`](properties_Subform.md#allow-deletion) | Especifica se o utilizador pode eliminar sub-registos num subformulário lista | true, false | +| [detailForm](properties_ListBox.md#detail-form-name) (list box)
    [detailForm](properties_Subform.md#detail-form) (subform) | Associa um formulário detalhado a um subformulário listado. | Name (string) of table or project form, a POSIX path (string) to a .json file describing the form, or an object describing the form | +| [`display`](properties_Display.md#not-rendered) | O objeto é desenhado ou não no formulário. | true, false | +| [`doubleClickInEmptyAreaAction`](properties_Subform.md#double-click-on-empty-row) | Action to perform in case of a double-click on an empty line of a list subform. | "addSubrecord" ou "" para não fazer nada | +| [doubleClickInRowAction](properties_ListBox.md#double-click-on-row) (list box)
    [doubleClickInRowAction](properties_Subform.md#double-click-on-row) (subform) | Ação a executar no caso de um duplo clique num registo. | "editSubrecord", "displaySubrecord" | +| [`dpi`](properties_Appearance.md#resolution) | Resolução do ecrã para o conteúdo da área 4D Write Pro. | 0=automatic, 72, 96 | +| [`dragging`](properties_Action.md#draggable) | Ativa a função de arrastamento. | "none", "custom", "automatic" (exceto lista, list box) | +| [`dropping`](properties_Action.md#droppable) | Habilita a função de soltar. | "none", "custom", "automatic" (exceto lista, list box) | +| **e** | | | +| [`enterable`](properties_Entry.md#enterable) | Indica se os usuários podem introduzir valores no objeto. | true, false | +| [`enterableInList`](properties_Subform.md#enterable-in-list) | Indica se os usuários podem modificar os dados do registo diretamente no subformulário lista. | true, false | +| [`entryFilter`](properties_Entry.md#entry-filter) | Associa um filtro de entrada ao objeto ou às células da coluna. Essa propriedade não estará acessível se a propriedade Enterable não estiver ativada. | Texto para restringir entradas | +| [`events`](Events/overview.md) | Lista de todos os eventos selecionados para o objeto ou formulário | Coleção de nomes de eventos, por exemplo, ["onClick", "onDataChange"...]. | +| [`excludedList`](properties_RangeOfValues.md#excluded-list) | Permite definir uma lista cujos valores não podem ser introduzidos na coluna. | Uma lista de valores a excluir. | +| **f** | | | +| [`fill`](properties_BackgroundAndBorder.md#background-color--fill-color) | Define a cor de fundo de um objeto. | Qualquer valor CSS, "transparent", "automatic" | +| [`focável`](properties_Entry.md#focusable) | Indica se o objeto pode ter o foco (e, pode ser ativado pelo teclado, por exemplo) | true, false | +| [`fontFamily`](properties_Text.md#font) | Especifica o nome da família de fontes utilizada no objeto. | Nome da família de fontes CSS | +| [`fontSize`](properties_Text.md#font-size) | Define o tamanho do tipo de letra em pontos quando não está selecionado nenhum tema de tipo de letra | mínimo: 0 | +| [`fontStyle`](properties_Text.md#italic) | Define o texto selecionado como ligeiramente inclinado para a direita. | "normal", "italic" | +| [`fontTheme`](properties_Text.md#font-theme) | Define o estilo automático | "normal", "main", "additional" | +| [`fontWeight`](properties_Text.md#bold) | Define o texto selecionado para aparecer mais escuro e mais pesado. | "normal", "bold" | +| [`footerHeight`](properties_Footers.md#height) | Utilizado para definir a altura da linha | pattern (\\d+)(p|em)?$ (positive decimal + px/em ) | +| [`frameDelay`](properties_Animation.md#switch-every-x-ticks) | Permite percorrer o conteúdo do botão de imagem na velocidade especificada (em ticks). | mínimo: 0 | +| **g** | | | +| [`graduationStep`](properties_Scale.md#graduation-step) | Medição do visor da escala. | mínimo: 0 | +| **h** | | | +| [`header`](properties_Headers.md#headers) | Define o cabeçalho de uma coluna list box | Objeto com as propriedades "text", "name", "icon", "dataSource", "fontWeight", "fontStyle", "tooltip" | +| [`headerHeight`](properties_Headers.md#height) | Utilizado para definir a altura da linha | pattern (\\d+)(p|em)?$ (positive decimal + px/em ) | +| [`height`](properties_CoordinatesAndSizing.md#height) | Designa o tamanho vertical de um objeto | mínimo: 0 | +| [`hideExtraBlankRows`](properties_BackgroundAndBorder.md#hide-extra-blank-rows) | Desactiva a visibilidade de linhas extra e vazias. | true, false | +| [`hideFocusRing`](properties_Appearance.md#hide-focus-rectangle) | Oculta o retângulo de seleção quando o objeto tem o foco. | true, false | +| [`hideSystemHighlight`](properties_Appearance.md#hide-selection-highlight) | Utilizado para especificar a ocultação dos registos destacados no list box. | true, false | +| [`highlightSet`](properties_ListBox.md#highlight-set) | string | Nome do conjunto. | +| [`horizontalLineStroke`](properties_Gridlines.md#horizontal-line-color) | Define a cor das linhas horizontais num list box (cinzento por predefinição). | Qualquer valor CSS, "'transparent", "automatic" | +| **i** | | | +| [`icon`](properties_TextAndPicture.md#picture-pathname) | O nome do caminho da imagem utilizada para botões, caixas de verificação, botões rádio e cabeçalhos de list box. | Caminho relativo ou filesystem na sintaxe POSIX. | +| [`iconFrames`](properties_TextAndPicture.md#number-of-states) | Define o número exato de estados presentes na imagem. | mínimo: 1 | +| [`iconPlacement`](properties_TextAndPicture.md#icon-location) | Designa a colocação de um ícone em relação ao objeto formulário. | "none", "left", "right" | +| [`imageHugsTitle`](properties_TextAndPicture.md#image-hugs-title) | Define se o título e a imagem do botão devem ser visualmente adjacentes. | true (padrão), false | +| **k** | | | +| [`keyboardDialect`](properties_Entry.md#keyboardDialect) | Para associar um esquema de teclado específico a uma entrada. | Uma cadeia de códigos de teclado, por exemplo, "ar-ma" | +| **l** | | | +| [`labels`](properties_DataSource.md#choice-list-static-list) | Uma lista de valores a utilizar como etiquetas de controlo de pestanas | ex: "a", "b, "c", ... | +| [labelsPlacement](properties_Scale.md#label-location) (objects)
    [labelsPlacement](properties_Appearance.md#tab-control-direction) (splitter / tab control) | Especifica a localização do texto de um objeto. | "none", "top", "bottom", "left", "right" | +| [`layoutMode`](properties_Appearance.md#view-mode) | Modo de exibição do documento 4D Write Pro na área do formulário. | "page", "draft", "embedded" | +| [`left`](properties_CoordinatesAndSizing.md#left) | Posiciona um objeto à esquerda. | mínimo: 0 | +| list, see [choiceList](properties_DataSource.md#choice-list) | Uma lista de escolhas associada a uma lista hierárquica | Uma lista de escolhas | +| [`listboxType`](properties_Object.md#data-source) | A fonte de dados do list box. | "array", "currentSelection", "namedSelection", "collection" | +| [`listForm`](properties_Subform.md#list-form) | Formulário lista a utilizar no subformulário. | Nome (string) da tabela ou formulário projeto, um caminho POSIX (string) para um arquivo .json descrevendo o formulário, ou um objeto descrevendo o formulário | +| [`lockedColumnCount`](properties_ListBox.md#number-of-locked-columns) | Número de colunas que devem ser permanentemente apresentadas na parte esquerda de um list box. | mínimo: 0 | +| [`loopBackToFirstFrame`](properties_Animation.md#loop-back-to-first-frame) | As imagens são apresentadas num ciclo contínuo. | true, false | +| **m** | | | +| [`max`](properties_Scale.md#maximum) | O valor máximo permitido. Para steppers numéricos, essas propriedades representam segundos quando o objeto está associado a um valor de tipo de hora sendo ignoradas quando ele está associado a um valor de tipo de data. | mínimo: 0 (para tipos de dados numéricos) | +| [`maxWidth`](properties_CoordinatesAndSizing.md#maximum-width) | Designa o maior tamanho permitido para as colunas do list box. | mínimo: 0 | +| [`metaSource`](properties_Text.md#meta-info-expression) | Um objeto meta que contém definições de estilo e de seleção. | Uma expressão de objecto | +| [`method`](properties_Action.md#method) | Um nome de método projecto. | O nome de um método projecto existente | +| [`methodsAccessibility`](properties_WebArea.md#access-4d-methods) | Que métodos 4D podem ser chamados a partir de uma área Web | "none" (padrão), "all" | +| [`min`](properties_Scale.md#minimum) | O valor mínimo permitido. Para steppers numéricos, essas propriedades representam segundos quando o objeto está associado a um valor de tipo de hora sendo ignoradas quando ele está associado a um valor de tipo de data. | mínimo: 0 (para tipos de dados numéricos) | +| [`minWidth`](properties_CoordinatesAndSizing.md#minimum-width) | Designa o tamanho menor permitido para as colunas list box. | mínimo: 0 | +| [`movableRows`](properties_Action.md#movable-rows) | Autoriza a deslocação de linhas durante a execução. | true, false | +| [`multilinha`](properties_Entry.md#multiline) | Manipula conteúdo multilinha. | "yes", "no", "automatic" | +| **n** | | | +| [`name`](properties_Object.md#object-name) | O nome do objecto formulário. (Facultativo para o formulário) | Qualquer nome que não pertença a um objeto já existente | +| [`numberFormat`](properties_Display.md#number-format) | Controla como os campos alfanuméricos e as variáveis aparecem quando exibidos ou impressos. | Números (incluindo um ponto decimal ou sinal de menos, se necessário) | +| **p** | | | +| [`picture`](properties_Picture.md#pathname) | O nome do caminho da imagem para botões de imagem, menus pop-up de imagem ou imagens estáticas | Caminho relativo ou do sistema de arquivos na sintaxe POSIX, ou "var:\" para variável imagem. | +| [`pictureFormat`](properties_Display.md#picture-format) (entrada, coluna list box ou rodapé)
    [`pictureFormat`](properties_Picture.md#display) (imagem estática) | Controla a aparência das imagens quando exibidas ou impressas. | "truncatedTopLeft", "scaled", "truncatedCenter", "tiled", "proportionalTopLeft" (excluindo imagens estáticas), "proportionalCenter" (excluindo imagens estáticas) | +| [`placeholder`](properties_Entry.md#placeholder) | Acinzenta o texto quando o valor da fonte de dados está vazio. | Texto a ficar a cinzento. | +| [`pluginAreaKind`](properties_Object.md#plug-in-kind) | Descreve o tipo de plug-in. | O tipo de plug-in. | +| [`popupPlacement`](properties_TextAndPicture.md#with-pop-up-menu) | Permite a exibição de um símbolo que aparece como um triângulo no botão, o que indica haver um menu pop-up anexado. | "None", Linked", "Separated" | +| [`printFrame`](properties_Print.md#print-frame) | Modo de impressão para objetos cujo tamanho pode variar de um registro para outro, dependendo de seu conteúdo | "fixed", "variable", (apenas subformulário) "fixedMultiple" | +| [`progressSource`](properties_WebArea.md#progression) | Um valor entre 0 e 100, que representa a porcentagem de conclusão do carregamento da página na área Web. Atualizado automaticamente por 4D, não pode ser modificado manualmente. | mínimo: 0 | +| **r** | | | +| [`radioGroup`](properties_Object.md#radio-group) | Permite que os botões de rádio sejam usados em conjuntos coordenados: somente um botão de cada vez pode ser selecionado no conjunto. | Nome do grupo rádio | +| [`requiredList`](properties_RangeOfValues.md#required-list) | Permite definir uma lista onde só podem ser inseridos determinados valores. | Uma lista de valores obrigatórios. | +| [`resizable`](properties_ResizingOptions.md#resizable) | Designa se o tamanho de um objeto pode ser modificado pelo usuário. | "true", "false" | +| [`resizingMode`](properties_ResizingOptions.md#column-auto-resizing) | Especifica se uma coluna da caixa de listagem deve ser redimensionada automaticamente | "rightToLeft", "legacy" | +| [`direita`](properties_CoordinatesAndSizing.md#right) | Posiciona um objeto à direita. | mínimo: 0 | +| [`rowControlSource`](properties_ListBox.md#row-control-array) | Um array 4D que define as linhas do list box. | Array | +| [`rowCount`](properties_Crop.md#rows) | Define o número de linhas. | mínimo: 1 | +| [rowFillSource](properties_BackgroundAndBorder.md#row-background-color-array) (array list box)
    [rowFillSource](properties_BackgroundAndBorder.md#background-color-expression) (selection or collection list box) | O nome de um array ou expressão para aplicar uma cor de fundo personalizada a cada linha de um list box. | O nome de um array ou expressão. | +| [`rowHeight`](properties_CoordinatesAndSizing.md#row-height) | Define a altura das linhas do list box. | Valor CSS a unidade "em" ou "px" (por padrão) | +| [`rowHeightAuto`](properties_CoordinatesAndSizing.md#automatic-row-height) | boolean | "true", "false" | +| [`rowHeightAutoMax`](properties_CoordinatesAndSizing.md#maximum-width) | Designa a maior altura permitida para as linhas do list box. | Valor CSS a unidade "em" ou "px" (por padrão). mínimo: 0 | +| [`rowHeightAutoMin`](properties_CoordinatesAndSizing.md#minimum-width) | Designa a altura mais pequena permitida para as linhas da caixa do list box. | Valor CSS a unidade "em" ou "px" (por padrão). mínimo: 0 | +| [`rowHeightSource`](properties_CoordinatesAndSizing.md#row-height-array) | Um array que define diferentes alturas para as linhas de um list box. | Nome de uma variável array 4D. | +| [rowStyleSource](properties_Text.md#row-style-array) (array list box)
    [rowStyleSource](properties_Text.md#style-expression) (selection or collection/entity selection list box) | Um arrray ou expressão para gerir as cores das linhas. | Nome do array ou expressão. | +| [rowStrokeSource](properties_Text.md#row-font-color-array) (array list box)
    [rowStrokeSource](properties_Text.md#font-color-expression) (selection or collection/entity selection list box) | Um arrray ou expressão para gerir estilos das linhas. | Nome do array ou expressão. | +| **s** | | | +| entryFiler | O tipo de conteúdo a ser salvo no campo ou na variável associada ao objeto de formulário | "value", "reference" | +| [`scrollbarHorizontal`](properties_Appearance.md#horizontal-scroll-bar) | Uma ferramenta que permite ao usuário mover a área de visualização para a esquerda ou para a direita. | "visible", "hidden", "automatic" | +| [`scrollbarVertical`](properties_Appearance.md#vertical-scroll-bar) | Uma ferramenta que permite ao usuário mover a área de visualização para cima ou para baixo. | "visible", "hidden", "automatic" | +| [`selectedItemsSource`](properties_DataSource.md#selected-items) | Coleção dos itens seleccionados num list box. | Expressão da colecção | +| [selectionMode](properties_Action.md#multi-selectable) (hierarchical list)
    [selectionMode](properties_ListBox.md#selection-mode) (list box)
    [selectionMode](properties_Subform.md#selection-mode) (subform) | Permite a seleção de vários registos/linhas. | "multiple", "single", "none" | +| [`shortcutAccel`](properties_Entry.md#shortcut) | Especifica o sistema a utilizar, Windows ou Mac. | true, false | +| [`shortcutAlt`](properties_Entry.md#shortcut) | Designa a tecla Alt | true, false | +| [`shortcutCommand`](properties_Entry.md#shortcut) | Designa a tecla Comando (macOS) | true, false | +| [`shortcutControl`](properties_Entry.md#shortcut) | Designa a tecla Control (Windows) | true, false | +| [`shortcutKey`](properties_Entry.md#shortcut) | A letra ou o nome de uma chave de significado especial. | "[F1]" -> "[F15]", "[Return]", "[Enter]", "[Backspace]", "[Tab]", "[Esc]", "[Del]", "[Home]", "[End]", "[Help]", "[Page up]", "[Page down]", "[left arrow]", "[right arrow]", "[up arrow]", "[down arrow]" | +| [`shortcutShift`](properties_Entry.md#shortcut) | Designa a tecla Shift | true, false | +| [`showFooters`](properties_Footers.md#display-footers) | Mostra ou oculta os rodapés das colunas. | true, false | +| [`showGraduations`](properties_Scale.md#display-graduation) | Apresenta/oculta as graduações junto às etiquetas. | true, false | +| [`showHeaders`](properties_Headers.md#display-headers) | Mostra ou oculta os cabeçalhos das colunas. | true, false | +| [`showHiddenChars`](properties_Appearance.md#show-hidden-characters) | Mostra/oculta caracteres invisíveis. | true, false | +| [`showHorizontalRuler`](properties_Appearance.md#show-horizontal-ruler) | Mostra/oculta a régua horizontal quando a vista de documento está no modo de vista Página | true, false | +| [`showHTMLWysiwyg`](properties_Appearance.md#show-html-wysiwyg) | Ativa/desactiva a visualização HTML WYSIWYG | true, false | +| [`showPageFrames`](properties_Appearance.md#show-page-frame) | Exibe/oculta a moldura da página quando a visualização do documento está no modo Visualização de página | true, false | +| [`showReferences`](properties_Appearance.md#show-references) | Apresenta todas as expressões 4D inseridas no documento 4D Write Pro como *referências * | true, false | +| [`showSelection`](properties_Entry.md#selection-always-visible) | Mantém a seleção visível no objeto depois que ele perde o foco | true, false | +| [`showVerticalRuler`](properties_Appearance.md#show-vertical-ruler) | Exibe/oculta a régua vertical quando a visualização do documento está no modo de visualização Página | true, false | +| [`singleClickEdit`](properties_Entry.md#single-click-edit) | Permite a passagem direta para o modo de edição. | true, false | +| [`sizingX`](properties_ResizingOptions.md#horizontal-sizing) | Especifica se o tamanho horizontal de um objeto deve ser movido ou redimensionado quando um usuário redimensiona o formulário. | "grow", "move", "fixed" | +| [`sizingY`](properties_ResizingOptions.md#horizontal-sizing) | Especifica se o tamanho vertical de um objeto deve ser movido ou redimensionado quando um usuário redimensiona o formulário. | "grow", "move", "fixed" | +| [`sortable`](properties_Action.md#sortable) | Permite ordenar os dados das colunas clicando no cabeçalho. | true, false | +| [`spellcheck`](properties_Entry.md#auto-spellcheck) | Ativa a verificação ortográfica do objeto | true, false | +| [`splitterMode`](properties_ResizingOptions.md#pusher) | Quando um objeto splitter tem essa propriedade, os outros objetos à sua direita (splitter vertical) ou abaixo dele (splitter horizontal) são empurrados ao mesmo tempo que o divisor, sem parada. | "grow", "move", "fixed" | +| [`startPoint`](shapes_overview.md#startpoint-property) | Ponto de partida para desenhar um objeto de linha (disponível somente na gramática JSON). | "bottomLeft", topLeft" | +| [`staticColumnCount`](properties_ListBox.md#number-of-static-columns) | Número de colunas que não podem ser movidas durante a execução. | mínimo: 0 | +| [`step`](properties_Scale.md#step) | Intervalo mínimo aceite entre valores durante a utilização. Para steppers numéricos, Esta propriedade representa os segundos quando o objeto está associado com um valor de tipo hora e dias quando está associado a um valor de tipo data. | mínimo: 1 | +| [`storeDefaultStyle`](properties_Text.md#store-with-default-style-tags) | Armazenar as etiquetas de estilo com o texto, mesmo que nenhuma modificação tenha sido feita | true, false | +| [stroke](properties_Text.md#font-color) (text)
    [stroke](properties_BackgroundAndBorder.md#line-color) (lines)
    [stroke](properties_BackgroundAndBorder.md#transparent) (list box) | Especifica a cor do tipo de letra ou da linha utilizada no objeto. | Qualquer valor CSS, "transparent", "automatic" | +| [`strokeDashArray`](properties_BackgroundAndBorder.md#dotted-line-type) | Descreve o tipo de linha pontilhada como uma sequência de pontos pretos e brancos | Arrays numéricos ou strings | +| [`strokeWidth`](properties_BackgroundAndBorder.md#line-width) | Designa a espessura de uma linha. | Um número inteiro ou 0 para a largura mais pequena num formulário impresso | +| [`style`](properties_TextAndPicture.md#multi-style) | Permite definir o aspeto geral do botão. Consulte Estilo do botão para obter mais informações. | "regular", "flat", "toolbar", "bevel", "roundedBevel", "gradientBevel", "texturedBevel", "office", "help", "circular", "disclosure", "roundedDisclosure", "custom" | +| [`styledText`](properties_Text.md#style) | Permite a possibilidade de utilizar estilos específicos na área selecionada. | true, false | +| [`switchBackWhenReleased`](properties_Animation.md#switch-back-when-released) | Exibe a primeira imagem o tempo todo, exceto quando o usuário clica no botão. Apresenta a segunda imagem até que o botão do rato seja libertado. | true, false | +| [`switchContinuously`](properties_Animation.md#switch-continuously-on-clicks) | Permite ao usuário manter pressionado o botão do mouse para exibir as imagens continuamente (ou seja, como uma animação). | true, false | +| [`switchWhenRollover`](properties_Animation.md#switch-when-roll-over) | Modifica o conteúdo do botão de imagem quando o cursor do mouse passa sobre ele. A imagem inicial é exibida quando o cursor sai da área do botão. | true, false | +| **t** | | | +| [`tabela`](properties_Subform.md#source) | Tabela a que pertence o subformulário Lista (se existir). | Nome da tabela 4D, ou "" | +| [`text`](properties_Object.md#title) | O título do objeto formulário | Qualquer texto | +| [`textAlign`](properties_Text.md#horizontal-alignment) | Localização horizontal do texto na área que o contém. | "automatic", "right", "center", "justify", "left" | +| [`textAngle`](properties_Text.md#orientation) | Modifica a orientação (rotação) da área de texto. | 0, 90, 180, 270 | +| [`textDecoration`](properties_Text.md#underline) | Define o texto selecionado para ter uma linha por baixo. | "normal", "underline" | +| [`textFormat`](properties_Display.md#alpha-format) | Controla como os campos alfanuméricos e as variáveis aparecem quando exibidos ou impressos. | "####", "(#####) ### ####", "### ### ### ####", "#### ## ####", "00000", formatos personalizados | +| [`textPlacement`](properties_TextAndPicture.md#titlepicture-position) | Localização relativa do título do botão em relação ao ícone associado. | "left", "top", "right", "bottom", "center" | +| [`threeState`](properties_Display.md#three-states) | Permite que um objeto de caixa de verificação aceite um terceiro estado. | true, false | +| [`timeFormat`](properties_Display.md#time-format) | Controla como as horas aparecem quando são apresentadas ou impressas. | Formatos incorporados: ("systemShort", "systemMedium", "systemLong", "iso8601", "hh_mm_ss", "hh_mm", "hh_mm_am", "mm_ss", "HH_MM_SS", "HH_MM", "MM_SS", "blankIfNull") | +| [`truncateMode`](properties_Display.md#truncate-with-ellipsis) | Controla a exibição de valores quando as colunas da caixa de listagem são muito estreitas para mostrar todo o seu conteúdo. | "withEllipsis", "none" | +| [`type`](properties_Object.md#type) | Obrigatório. Designa o tipo de dados do objeto do formulário. | "text", "rectangle", "groupBox", "tab", "line", "button", "checkbox", "radio", "dropdown", "combo", "webArea", "write", "subform", "plugin", "splitter", "buttonGrid", "progress", "ruler", "spinner", "stepper", "list", "pictureButton", "picturePopup", "listbox", "input", "view" | +| [`tooltip`](properties_Help.md) | Fornecer aos usuários informações adicionais sobre um campo. | Informações adicionais para ajudar um usuário | +| [`top`](properties_CoordinatesAndSizing.md#top) | Posiciona um objeto na parte superior (centrado). | mínimo: 0 | +| **u** | | | +| [`urlSource`](properties_WebArea.md#url) | Designa a URL carregada ou sendo carregada pela área Web associada. | Um URL. | +| [`useLastFrameAsDisabled`](properties_Animation.md#use-last-frame-as-disabled) | Habilita a configuração da última miniatura como a que será exibida quando o botão estiver desativado. | true, false | +| [`userInterface`](properties_Appearance.md#user-interface) | Interface de área 4D View Pro. | "none" (padrão), "ribbon", "toolbar" | +| **v** | | | +| [`values`](properties_DataSource.md#default-list-of-values) | Lista de valores predefinidos para as colunas listbox de tipo array | ex: "A", "B", "42"... | +| [`variableCalculation`](properties_Object.md#variable-calculation) | Permite efetuar cálculos matemáticos. | "none", "minimum", "maximum", "sum", "count", "average", "standardDeviation", "variance", "sumSquare" | +| [`verticalAlign`](properties_Text.md#vertical-alignment) | Localização vertical do texto na área que o contém. | "automatic", "top", "middle", "bottom" | +| [`verticalLineStroke`](properties_Gridlines.md#vertical-line-color) | Define a cor das linhas verticais num list box (cinzento por predefinição). | Qualquer valor CSS, "'transparent", "automatic" | +| [`visibilidade`](properties_Display.md#visibility) | Permite ocultar o objeto no ambiente da aplicação. | "visible", "hidden", "selectedRows", "unselectedRows" | +| **w** | | | +| [`webEngine`](properties_WebArea.md#use-embedded-web-rendering-engine) | Usado para escolher entre dois motores de renderização para a área Web, dependendo das especificações da aplicação. | "embedded", "system" | +| [`width`](properties_CoordinatesAndSizing.md#width) | Designa o tamanho horizontal de um objeto | mínimo: 0 | +| [`withFormulaBar`](properties_Appearance.md#show-formula-bar) | Gerencia a exibição de uma barra de fórmula com a interface da barra de ferramentas na área 4D View Pro. | true, false | +| [`wordwrap`](properties_Display.md#wordwrap) | Gerencia a exibição do conteúdo quando ele excede a largura do objeto. | "automatic" (exceto list box), "normal", "nenhum" | +| **z** | | | +| [`zoom`](properties_Appearance.md#zoom) | Percentagem de zoom para mostrar a área 4D Irite Pro | número (mínimo=0) | diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_WebArea.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_WebArea.md index 8fcfd810832976..f6387699941a1f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_WebArea.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/properties_WebArea.md @@ -6,11 +6,11 @@ title: Área Web --- ## Acesso a métodos 4D -You can call 4D methods from the JavaScript code executed in a Web area and get values in return. To be able to call 4D methods from a Web area, you must activate the 4D methods accessibility property ("all"). +Você pode chamar métodos 4D a partir do código JavaScript executado em uma área Web e obter valores em retorno. Para consegue chamar métodos 4D de uma área Web, você deve ativar o parâmetro de acessibilidade 4D ("todos"). > Esta propriedade só está disponível se a área Web [utilizar o mecanismo de renderização Web incorporado](properties_WebArea.md#use-embedded-web-rendering-engine). -When this property is on, a special JavaScript object named `$4d` is instantiated in the Web area, which you can [use to manage calls to 4D project methods](webArea_overview.md#4d-object). +Quando essa propriedade está ativada, um objeto JavaScript especial chamado `$4d` é instanciado na área Web, que pode ser [usado para gerenciar chamadas para os métodos projeto de 4D](webArea_overview.md#4d-object). @@ -28,7 +28,7 @@ When this property is on, a special JavaScript object named `$4d` is instantiate --- ## Progressão -Nome de uma variável do tipo Longint. This variable will receive a value between 0 and 100, representing the page load completion percentage in the Web area. Atualizado automaticamente por 4D, não pode ser modificado manualmente. +Nome de uma variável do tipo Longint. Essa variável receberá um valor entre 0 e 100, representando a porcentagem de conclusão do carregamento da página na área Web. Atualizado automaticamente por 4D, não pode ser modificado manualmente. > A partir de 4D v19 R5, esta variável só é atualizada no Windows se a área Web [utilizar o mecanismo de renderização Web incorporado](properties_WebArea.md#use-embedded-web-rendering-engine). @@ -48,20 +48,20 @@ Nome de uma variável do tipo Longint. This variable will receive a value betwee --- ## URL -A String type variable that designates the URL loaded or being loading by the associated Web area. The association between the variable and the Web area works in both directions: +Uma variável do tipo String que designa o URL carregado ou que está sendo carregado pela área Web associada. A associação entre a variável e a área Web funciona em ambas as direções: -* If the user assigns a new URL to the variable, this URL is automatically loaded by the Web area. -* Any browsing done within the Web area will automatically update the contents of the variable. +* Se o usuário atribuir um novo URL à variável, esse URL será carregado automaticamente pela área Web. +* Qualquer navegação feita na área Web atualizará automaticamente o conteúdo da variável. -Schematically, this variable functions like the address area of a Web browser. Pode representá-lo através de uma área de texto por cima da área Web. +Esquematicamente, essa variável funciona como a área de endereço de um navegador Web. Pode representá-lo através de uma área de texto por cima da área Web. ### Variável URL e comando WA OPEN URL -The URL variable produces the same effects as the [WA OPEN URL](https://doc.4d.com/4Dv18/4D/18/WA-OPEN-URL.301-4504841.en.html) command. No entanto, há que assinalar as seguintes diferenças: -- For access to documents, this variable only accepts URLs that are RFC-compliant ("file://c:/My%20Doc") and not system pathnames ("c:\MyDoc"). The [WA OPEN URL](https://doc.4d.com/4Dv18/4D/18/WA-OPEN-URL.301-4504841.en.html) command accepts both notations. -- If the URL variable contains an empty string, the Web area does not attempt to load the URL. The [WA OPEN URL](https://doc.4d.com/4Dv18/4D/18/WA-OPEN-URL.301-4504841.en.html) command generates an error in this case. -- If the URL variable does not contain a protocol (http, mailto, file, etc.), the Web area adds "http://", which is not the case for the [WA OPEN URL](https://doc.4d.com/4Dv18/4D/18/WA-OPEN-URL.301-4504841.en.html) command. -- When the Web area is not displayed in the form (when it is located on another page of the form), executing the [WA OPEN URL](https://doc.4d.com/4Dv18/4D/18/WA-OPEN-URL.301-4504841.en.html) command has no effect, whereas assigning a value to the URL variable can be used to update the current URL. +A variável URL produz os mesmos efeitos que o comando [WA OPEN URL](https://doc.4d.com/4dv19/help/command/en/page1020.html). No entanto, há que assinalar as seguintes diferenças: +- Para acesso a documentos, essa variável aceita apenas URLs em conformidade com a RFC ("file://c:/My%20Doc") e não nomes de caminho do sistema ("c:\MyDoc"). O comando [WA OPEN URL](https://doc.4d.com/4dv19/help/command/en/page1020.html) aceita ambas as notações. +- Se a variável URL contiver uma cadeia de caracteres vazia, a área Web não tentará carregar o URL. O comando [WA OPEN URL](https://doc.4d.com/4dv19/help/command/en/page1020.html) gera um erro nesse caso. +- Se a variável URL não contiver um protocolo (http, mailto, arquivo, etc.), a área Web adicionará "http://", o que não é o caso do comando [WA OPEN URL](https://doc.4d.com/4dv19/help/command/en/page1020.html). +- When the Web area is not displayed in the form (when it is located on another page of the form), executing the [WA OPEN URL](https://doc.4d.com/4dv19/help/command/en/page1020.html) command has no effect, whereas assigning a value to the URL variable can be used to update the current URL. #### Gramática JSON @@ -81,11 +81,11 @@ The URL variable produces the same effects as the [WA OPEN URL](https://doc.4d.c --- ## Utilizar o motor de renderização Web integrado -This option allows choosing between two rendering engines for the Web area, depending on the specifics of your application: +Essa opção permite escolher entre dois mecanismos de renderização para a área Web, dependendo das especificidades de sua aplicação: -* **unchecked** - `JSON value: system` (default): In this case, 4D uses the "best" engine corresponding to the system. This means that you automatically benefit from the latest advances in Web rendering, through HTML5 or JavaScript. No entanto, você poderá notar algumas diferenças de renderização entre as plataformas. No Windows, 4D usa Microsoft Edge WebView2. No macOS, 4D usa a versão atual do WebKit (Safari). +* **desmarcado** - `Valor JSON: system` (padrão): neste caso, a 4D usa o mecanismo "melhor" correspondente ao sistema. Isso significa que você se beneficia automaticamente dos mais recentes avanços na renderização da Web, por meio de HTML5 ou JavaScript. No entanto, você poderá notar algumas diferenças de renderização entre as plataformas. No Windows, 4D usa Microsoft Edge WebView2. No macOS, 4D usa a versão atual do WebKit (Safari). -> On Windows, if Microsoft Edge WebView2 is not installed, 4D uses the embedded engine as system rendering engine. To know if it is installed in your system, look for "Microsoft Edge WebView2 Runtime" in your applications panel. +> No Windows, se o Microsoft Edge WebView2 não estiver instalado, o 4D usa o mecanismo incorporado como mecanismo de renderização do sistema. To know if it is installed in your system, look for "Microsoft Edge WebView2 Runtime" in your applications panel. * **checked** - `JSON value: embedded`: In this case, 4D uses Blink engine from Google (CEF). Using the embedded Web engine means that Web area rendering and their functioning in your application are identical regardless of the platform used to run 4D (slight variations of pixels or differences related to network implementation may nevertheless be observed). Using the embedded Web engine means that Web area rendering and their functioning in your application are identical regardless of the platform used to run 4D (slight variations of pixels or differences related to network implementation may nevertheless be observed). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/radio_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/radio_overview.md index e7634a5a5e8714..93f00cfb34eec9 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/radio_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/radio_overview.md @@ -169,4 +169,4 @@ Todos os botões rádio partilham o mesmo conjunto de propriedades básicas: Propriedades específicas adicionais estão disponíveis dependendo do [estilo botão](#button-styles): -- Custom: [Background pathname](properties_TextAndPicture.md#background-pathname) - [Horizontal Margin](properties_TextAndPicture.md#horizontal-margin) - [Icon Offset](properties_TextAndPicture.md#icon-offset) - [Vertical Margin](properties_TextAndPicture.md#vertical-margin) \ No newline at end of file +- Personalizado: [Nome do caminho do plano de fundo](properties_TextAndPicture.md#background-pathname) - [Margem horizontal](properties_TextAndPicture.md#horizontal-margin) - [Deslocamento do ícone](properties_TextAndPicture.md#icon-offset) - [Margem vertical](properties_TextAndPicture.md#vertical-margin) \ No newline at end of file diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/shapes_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/shapes_overview.md index 47137c6f3c307b..8df8e469e8b84a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/shapes_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/shapes_overview.md @@ -20,7 +20,7 @@ O desenho dos retângulos é controlado através de muitas propriedades (cor, es ![](../assets/en/FormObjects/shapes_rectangle2.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myRectangle": { @@ -91,7 +91,7 @@ Uma oval estática é um objeto decorativo para formas. Oval objects can be used ![](../assets/en/FormObjects/shape_oval.png) -#### JSON Exemplo +#### Exemplo JSON: ```4d "myOval": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/splitters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/splitters.md index c539332c2a77c9..28152cbb3cd58c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/splitters.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/splitters.md @@ -21,7 +21,7 @@ Algumas das características gerais do repartidor: Uma vez inserido, o separador aparece como uma linha. You can modify its [border style](properties_BackgroundAndBorder.md#border-line-style-dotted-line-type) to obtain a thinner line or [change its color](properties_BackgroundAndBorder.md#line-color). -#### JSON Exemplo +#### Exemplo JSON: ```4d "mySplitter": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/stepper.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/stepper.md index 4f1ec880c12b98..23354395f255a6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/stepper.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/stepper.md @@ -14,7 +14,7 @@ You can assign the variable associated with the object to an enterable area (fie Um stepper pode ser associado diretamente a uma variável número, hora ou data. * For values of the time type, the Minimum, Maximum and Step properties represent seconds. Por exemplo, para definir um passo de 8:00 a 18:00 com passos de 10 minutos: - * [minimum](properties_Scale.md#minimum) = 28 800 (8\*60\*60) + * [mínimo](properties_Scale.md#minimum) = 28 800 (8\*60\*60) * [máximo](properties_Scale.md#maximum) = 64 800 (18\*60\*60) * [passo](properties_Scale.md#step) = 600 (10*60) * Para valores do tipo data, o valor introduzido na propriedade [passo](properties_Scale.md#step) representa dias. As propriedades Mínimo e Máximo são ignoradas. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/tabControl.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/tabControl.md index 354acfd48fcdfd..c7ff5cdae03ca3 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/tabControl.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/tabControl.md @@ -26,7 +26,7 @@ If the tab control is wide enough to display all the tabs with both the labels a Under macOS, in addition to the standard position (top), the tab controls can also be aligned to the bottom. -### JSON Exemplo +### Exemplo JSON: ```4d "myTab": { diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/text.md index af02a0904ab82b..155e062fda3dfd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/text.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/text.md @@ -6,7 +6,7 @@ title: Text Um objeto de texto permite a exibição de conteúdo escrito estático*(por exemplo*, instruções, títulos, rótulos etc.) em um formulário. Estas áreas de texto estático podem se tornar dinâmicas quando incluem referências dinâmicas. Para mais informações, consulte [Usando referências em textos estáticos](https://doc.4d.com/4Dv17R5/4D/17-R5/Using-references-in-static-text.300-4163725.en.html). -#### JSON Exemplo +#### Exemplo JSON: ```4d "myText": { @@ -51,4 +51,4 @@ Quando um texto é rodado, pode continuar a alterar o seu tamanho ou posição, -[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color(properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) +[Bold](properties_Text.md#bold) - [Border Line Style](properties_BackgroundAndBorder.md#border-line-style) - [Bottom](properties_CoordinatesAndSizing.md#bottom) - [Class](properties_Object.md#css-class) - [Corner radius](properties_CoordinatesAndSizing.md#corner-radius) - [Fill Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Font Size](properties_Text.md#font-size) - [Height](properties_CoordinatesAndSizing.md#height) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Sizing](properties_ResizingOptions.md#horizontal-sizing) - [Italic](properties_Text.md#italic) - [Left](properties_CoordinatesAndSizing.md#left) - [Object Name](properties_Object.md#object-name) - [Orientation](properties_Text.md#orientation) - [Right](properties_CoordinatesAndSizing.md#right) - [Title](properties_Object.md#title) - [Top](properties_CoordinatesAndSizing.md#top) - [Type](properties_Object.md#type) - [Underline](properties_Text.md#underline) - [Vertical Sizing](properties_ResizingOptions.md#vertical-sizing) - [Visibility](properties_Display.md#visibility) - [Width](properties_CoordinatesAndSizing.md#width) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/webArea_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/webArea_overview.md index e476158390dc6b..efe98b38ec3d3f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/webArea_overview.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/webArea_overview.md @@ -161,7 +161,7 @@ Quando o formulário for executado, as funções da interface de navegador padr - **Comandos menu Edição**: quando a área web tiver o foco, os comandos do menu **Edição** podem ser utilizadas para realizar ações como copiar, colar, selecionar tudo, etc., segundo a seleção. - **O menu contextual**: é possível utilizar o [menu contextual](properties_Entry.md#context-menu) padrão do sistema com a área web. Display of the context menu can be controlled using the `WA SET PREFERENCE` command. -- **Arrastar e soltar**: o usuário pode arrastar e soltar texto, imagens e documentos dentro da área web ou entre uma área web e os objetos dos formulários 4D, segundo as propriedades dos objetos 4D. Por razões de segurança, não é permitido mudar os conteúdos da área Web arrastando e soltando seja um arquivo ou URL. In this case, the mouse cursor displays a "forbidden" icon ![](../assets/en/FormObjects/forbidden.png). You have to use the `WA SET PREFERENCE(*;"warea";WA enable URL drop;True)` statement to display a "drop" icon and generate the [`On Window Opening Denied`](Events/onWindowOpeningDenied.md) event. Neste caso, pode chamar o comando [`WA OPEN URL`](https://doc.4d.com/4dv19/help/command/en/page1020.html) ou definir a [variável URL](properties_WebArea.md#url) em resposta a uma queda do usuário. +- **Arrastar e soltar**: o usuário pode arrastar e soltar texto, imagens e documentos dentro da área web ou entre uma área web e os objetos dos formulários 4D, segundo as propriedades dos objetos 4D. Por razões de segurança, não é permitido mudar os conteúdos da área Web arrastando e soltando seja um arquivo ou URL. In this case, the mouse cursor displays a "forbidden" icon ![](../assets/en/FormObjects/forbidden.png). Você precisa usar a instrução `WA SET PREFERENCE(*; "warea";WA enable URL drop;True)` para exibir um ícone "drop" e gerar o evento [`On Window Opening Denied`](Events/onWindowOpeningDenied.md). Neste caso, pode chamar o comando [`WA OPEN URL`](https://doc.4d.com/4dv19/help/command/en/page1020.html) ou definir a [variável URL](properties_WebArea.md#url) em resposta a uma queda do usuário. > Os recursos de arrastar e soltar descritos acima não são suportados em áreas web usando o mecanismo de renderização do sistema [macOS](properties_WebArea.md#use-embedded-web-rendering-engine). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/Project/compiler.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/Project/compiler.md index 62c4cd44aecfe7..18188449e88fc1 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/Project/compiler.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/Project/compiler.md @@ -3,88 +3,88 @@ id: compiler title: Compilação --- -You can compile your projects, i.e., translate all of your methods into machine language. Compiling a project lets you check the consistency of the code and accelerate its execution, as well as making it possible to obfuscate the code in its entirety. Compilation is an indispensable step between the development of projects using 4D and their deployment as stand-alone applications. +Você pode compilar seus projetos, ou seja, traduzir todos os seus métodos para a linguagem da máquina. Compilar um projeto permite que você verifique a consistência do código e acelere a sua execução, Além de tornar possível ofuscar o código na sua totalidade. A compilação constitui um passo indispensável entre o desenvolvimento de projectos que utilizam o 4D e a sua implantação como aplicações isoladas. ## Compilar -The compilation is handled from your 4D application and is entirely automatic. +A compilação é tratada do seu aplicativo 4D e é inteiramente automática. -> En macOS, la compilación requiere que instale `Xcode`. See [this section](#silicon-compiler) for more information about this requirement. +> En macOS, la compilación requiere que instale `Xcode`. Consulte [esta seção](#silicon-compiler) para obter mais informações sobre esse requisito. -1. Open the compiler window by selecting the **Compiler...** command in the **Design** menu or the **Compiler** toolbar button. +1. Abra a janela do compilador selecionando o comando **Compiler...** no menu **Desenho** ou o botão da barra de ferramentas **Compiler**. ![](../assets/en/Project/compilerWin1.png) ![](../assets/en/Project/comp1.png) -> You can also launch directly the compilation by selecting the **Start Compilation** menu item from the **Design** menu. +> Você também pode iniciar diretamente a compilação selecionando o item de menu **Iniciar Compilação** do menu **Desenho**. -2. Click the **Compile** button to launch the compilation using the current [compilation settings](#compiler-settings). +2. Clique no botão **Compilar** para iniciar a compilação usando as atuais configurações [de compilação](#compiler-settings). -If no errors are detected, the actual compilation begins and the "Compilation successful" message is displayed at the bottom of the window when the compilation is completed: +Se nenhum erro for detectado, a compilação atual começa e a mensagem "Compilação com sucesso" é exibida na parte inferior da janela quando a compilação é concluída: ![](../assets/en/Project/success.png) -You can immediately [run your application in compiled mode](#run-compiled) and see how faster it is. +Você pode imediatamente [executar sua aplicação em modo compilado](#run-compiled) e ver o quão mais rápido ela é. -If errors are detected, the process is stopped and the "Compilation failed" message is displayed. The information area of the window displays the method names and line numbers concerned in a hierarchical list: +Se erros forem detectados, o processo é interrompido e a mensagem "Compilação falhou" é exibida. A área de informação da janela exibe os nomes de métodos e números de linha envolvidos em uma lista hierárquica: ![](../assets/en/Project/compilerWin2.png) -Double-click on each error detected to open the method or class concerned directly in the 4D method editor. The line containing the error is highlighted and the type of error is displayed in the syntax area of the window. +Clique duas vezes em cada erro detectado para abrir o método ou a classe em questão diretamente no Editor de Código 4D. A linha que contém o erro é destacada e o tipo de erro é exibido na área de sintaxe da janela. -Use the **Previous Error** / **Next Error** commands of the **Method** menu to navigate from one error to the next. +Use os comandos **Previous Error (Erro anterior** )/ **Next Error (Próximo erro** ) do menu **Method (Método** ) para navegar de um erro para o próximo. -The number of errors found during your first compilations may be daunting, but do not let this put you off. You will soon discover that they often spring from the same source, i.e., non-compliance with certain project conventions. The compiler always provides a [precise diagnosis](#error-file) of the errors in order to help you correct them. +O número de erros encontrados durante as suas primeiras compilações pode ser um desafio, mas não deixe isso te avisar. Logo você descobrirá que eles muitas vezes nascem da mesma fonte, ou seja, não conformidade com certas convenções do projeto. O compilador sempre fornece um [diagnóstico preciso](#error-file) dos erros para ajudá-lo a corrigi-los. -> A compilação requer uma licença adequada. Without this license, it is not possible to carry out a compilation (buttons are disabled). Nevertheless, it is still possible to check the syntax and generate Typing methods. +> A compilação requer uma licença adequada. Sem esta licença, não é possível realizar uma compilação (os botões estão desativados). No entanto, ainda é possível verificar a sintaxe e gerar métodos de digitação. ## Executar a compilação -Once a project is compiled, it is possible to switch from [interpreted mode to compiled mode](Concepts/interpreted.md), and vice versa, at any time and without having to quit the 4D application (except when the interpreted code has been removed). To do this, use tge **Restart Interpreted** and **Restart Compiled** commands of the **Run** menu. The [Open project dialog box](creating.md#options) also offers a choice between interpreted or compiled mode for database startup. +Depois que um projeto é compilado, é possível mudar do [modo interpretado para o modo compilado](Concepts/interpreted.md), e vice-versa, a qualquer momento e sem precisar sair do aplicativo 4D (exceto quando o código interpretado tiver sido removido). Para fazer isso, use o tge **Reiniciar Interpretado** e **Reiniciar os comandos** do menu **Executar**. A [caixa de diálogo Abrir projeto](GettingStarted/creating.md#options) também oferece uma opção entre o modo interpretado ou compilado para a inicialização do banco de dados. -When you switch from one mode to the other, 4D closes the current mode and opens the new one. Isto é equivalente a sair e reabrir a aplicação. Each time you change from one mode to another, 4D executes the two following database methods (if specified) in this order: `On Exit` -> `On Startup`. +Quando você alternar de um modo para o outro, a 4D fecha o modo atual e abre o novo. Isto é equivalente a sair e reabrir a aplicação. Cada vez que você mudar de um modo para outro, O 4D executa os dois seguintes métodos de banco de dados (se especificado) nessa ordem: `On Exit` -> `On Startup`. -If you modify your project in interpreted mode, you must recompile it in order to have your edits taken into account in compiled mode. +Se você modificar seu projeto em modo interpretado, é necessário recompilá-lo para que suas edições sejam consideradas no modo compilado. ## Características da janela do compilador -In addition to the [**Compile** button](#compile), the Compiler window provides additional features that are useful during the project development phase. +Além do botão[**Compilar**](#compile), a janela Compilador oferece recursos adicionais que são úteis durante a fase de desenvolvimento do projeto. ### Verificar sintaxe -The **Check Syntax** button starts the execution of the syntax-checking phase. At the end of the checking process, any errors detected are listed in the information area. You can double–click on an error line in order to display the corresponding method. +O botão **Verificar sintaxe** inicia a execução da fase de verificação de sintaxe. No final do processo de verificação, todos os erros detectados são listados na área de informações. Você pode clicar duas vezes em uma linha de erro para exibir o método correspondente. -Syntax checking can also be launched directly using the **Check Syntax** command associated with the **Compiler** toolbar button. This option is the only one available if you do not have a suitable license to allow the compilation of applications. +A verificação de sintaxe também pode ser iniciada diretamente usando o comando **Check Syntax** associado ao botão da barra de ferramentas **Compiler**. Esta é a única opção disponível se você não tiver uma licença adequada para permitir a compilação de aplicativos. ### Gerar digitação -The **Generate Typing** button creates or updates typing compiler methods. Compiler methods are project methods that group together all the variable and array typing declarations (process and interprocess), as well as the [method parameters](../Concepts/parameters.md#compiler_methods-method). These methods, when they exist, are used directly by the compiler during code compilation, resulting in faster compilation times. +O botão **Generate Typing (Gerar digitação** ) cria ou atualiza os métodos do compilador de digitação. Os métodos do Compilador são métodos do projeto que agrupam todas as declarações de digitação de variável e matriz (processo e interprocesso), assim como os parâmetros do [método](../Concepts/parameters.md#compiler_methods-method). Esses métodos, quando eles existem, são usados diretamente pelo compilador durante a compilação de código, resultando em tempos de compilação mais rápidos. -O nome desses métodos deve começar com `Compiler_`. You can set the default name for each of the 5 compiler methods in the [compiler settings window](#compiler-methods-for). The compiler methods that are generated and maintained by 4D automatically have the `Invisible` attribute: +O nome desses métodos deve começar com `Compiler_`. Você pode definir o nome padrão para cada um dos 5 métodos do compilador na janela de configurações [do compilador](#compiler-methods-for). Os métodos do compilador que são gerados e mantidos pelo 4D automaticamente têm o atributo `Invisível`: ![](../assets/en/Project/compilerWin3.png) -Only the necessary compiler methods (i.e., those for which items already exist in the project) are generated. +Apenas os métodos necessários do compilador (ou seja, aqueles para os quais os itens já existem no projeto) são gerados. -The information area indicates any errors found during method creation or updating. Double-clicking on an error line causes the method and line concerned to be displayed in the Method editor. +A área de informação indica quaisquer erros encontrados durante a criação ou atualização de métodos. Clicar duas vezes em uma linha de erro faz com que o método e a linha em questão sejam exibidos no Editor de código. ### Limpar código compilado -The **Clear compiled code** button deletes the compiled code of the project. When you click on it, all of the [code generated during compilation](#classic-compiler) is deleted, the **Restart Compiled** command of the **Run** menu is disabled and the "Compiled Project" option is not available at startup. +O botão **Limpar código compilado** exclui o código compilado do projeto. Quando você clica nela, todo o [código gerado durante a compilação](#classic-compiler) é excluído, o comando **Reiniciar compilado** do menu **Executar** é desativado e a opção "Projeto compilado" não está disponível na inicialização. ### Mostrar/ocultar avisos -Warnings are specific messages generated by the compiler when it checks the syntax. These messages are intended to draw your attention to statements that might lead to execution errors. Não impedem a compilação. +Avisos são mensagens específicas geradas pelo compilador quando verifica a sintaxe. Essas mensagens têm o objetivo de chamar sua atenção para declarações que podem levar a erros de execução. Não impedem a compilação. -Depending on circumstances and the programming style used, these warnings may be more or less relevant. You can toggle the warnings on or off by clicking the **Show/Hide Warnings** button: +Dependendo das circunstâncias e do estilo de programação usado, esses avisos podem ser mais ou menos relevantes. Você pode ativar ou desativar os avisos clicando no botão **Show/Hide Warnings (Mostrar/Ocultar avisos** ): ![](../assets/en/Project/compilerWin4.png) -When this option is checked, the warnings (if any) are displayed in the window, after the other error types. Estas aparecem em itálico: +Quando essa opção for marcada, os avisos (se houver) são exibidos na janela, após os outros tipos de erro. Estas aparecem em itálico: ![](../assets/en/Project/compilerWin5.png) @@ -92,17 +92,17 @@ Um duplo clique num aviso abre o método correspondente. #### Desativar os avisos durante a compilação -You can selectively disable certain warnings during compilation by inserting the following into the code of a 4D method: +Você pode desativar seletivamente determinados avisos durante a compilação inserindo o seguinte no código de um método 4D: ```4d //%W- ``` -Apenas os avisos com números podem ser desactivados. Warning numbers are specified at the end of each message in the list of compilation errors. Por exemplo, para desativar o seguinte aviso: +Apenas os avisos com números podem ser desactivados. Os números de aviso são especificados no final de cada mensagem na lista de erros de compilação. Por exemplo, para desativar o seguinte aviso: *1: Ponteiro numa declaração de array (518.5)* -... you just need to write the following comment in a 4D method, preferably a `COMPILER_xxx` method (method compiled first): +... você só precisa escrever o seguinte comentário em um método 4D, de preferência um método `COMPILER_xxx` (método compilado primeiro): ```4d //%W-518.5 @@ -112,31 +112,31 @@ Apenas os avisos com números podem ser desactivados. Warning numbers are specif ## Parâmetros do compilador -The "Compiler" page of the Settings dialog box lets you set parameters related to project compilation. You can directly open this page from the [compiler window](#compiler-window) by clicking on the **Compiler Settings** button: +A página "Compiler" (Compilador) da caixa de diálogo Settings (Configurações) permite que você defina parâmetros relacionados à compilação do projeto. Você pode abrir diretamente esta página a partir da janela do compilador [](#compiler-window) clicando no botão **Configurações do Compilador**: ![](../assets/en/Project/compilerWin6.png) ### Opções de compilação -This area groups the generic options used during the compilation process. +Essa área agrupa as opções genéricas usadas durante o processo de compilação. -#### Generate symbol file +#### Gerar o arquivo de símbolo -Used to generate the error file (see [error file](#symbol-file)) at the time of syntax checking. The error file is created in the [Logs folder](Project/architecture.md#logs) of the project with the name `ProjectName_errors.xml`. +Usado para gerar o arquivo de símbolo (veja \[arquivo de símbolo\](#símbolo-arquivo). O arquivo de símbolo é criado na pasta [Logs](Project/architecture.md#logs) do projeto com o nome `ProjectName_symbols.txt`. -#### Gerar ficheiro de erros +#### Gerar arquivo de erro -Used to generate the error file (see [error file](#error-file)) at the time of syntax checking. The error file is automatically named `projectName_errors.xml` and is placed in the [Logs folder](Project/architecture.md#logs) of the project. +Usado para gerar o arquivo de erro (consulte \[arquivo de erro\](#error-file)) no momento da verificação de sintaxe. O arquivo de símbolo é criado na pasta [Logs](Project/architecture.md#logs) do projeto com o nome `ProjectName_symbols.txt`. #### Caminho de compilação -Used to set the number of passes (code parsing) performed by the compiler and thus the duration of compilation. +Usado para definir o número de passagens (análise de código) realizadas pelo compilador e, portanto, a duração da compilação. -- **Type the variables**: Passes by all the stages that make compilation possible. -- **Process and interprocess variables are typed**: The pass for typing process and interprocess variables as well as method parameters is not carried out. This option can be used when you have already carried out the typing of all your process and interprocess variables either yourself or using the function for automatic generation of compiler methods. -- **All variables are typed**: The pass for typing local, process and interprocess variables as well as method parameters is not carried out. Use this option when you are certain that all the process, interprocess and local variables as well as method parameters have been clearly typed. +- **Digite as variáveis**: Passes por todos os estágios que tornam possível a compilação. +- **As variáveis de processo e interprocesso são digitadas**: O passe para digitação de processo e variáveis de interprocesso, bem como parâmetros de método, não é realizado. Esta opção pode ser usada quando você já realizou a digitação de todos os seus processos e variáveis de processo por conta própria ou usando a função para a geração automática de métodos do compilador. +- **Todas as variáveis são digitadas**: A passagem para a digitação de variáveis locais, de processo e interprocessos, bem como de parâmetros de método, não é executada. Use essa opção quando tiver certeza de que todo o processo, interprocessos e variáveis locais, bem como parâmetros de métodos, foram claramente digitados. #### Objectivo de compilação @@ -148,68 +148,68 @@ Used to set the number of passes (code parsing) performed by the compiler and th -This setting allows you to select the processor family for which your 4D project must be natively compiled. O compilador 4D pode criar código nativo para duas famílias de processadores: +Esta configuração permite selecionar a família de processadores para a qual seu projeto 4D deve ser compilado nativamente. O compilador 4D pode criar código nativo para duas famílias de processadores: - Os processadores **Intel/AMD** (todas as máquinas), - os processadores **Apple Silicon**. Duas opções de alvo estão disponíveis. O resultado depende do processador da máquina em que 4D está em execução. -| *Opção* | *no Windows Intel/AMD* | *macOS Intel* | *no macOS Silicon* | -| ------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -| **Todos os processadores (Intel/AMD e Apple Silicon)** | Code for Intel/AMD
    *It is not possible to produce Apple Silicon code on Windows* | Code for Apple Silicon + Code for Intel/AMD
    *Two compiled codes will be available* | Code for Apple Silicon + Code for Intel/AMD
    *Two compiled codes will be available* | -| **O meu processador (processador)** | Código para Intel/AMD | Código para Intel/AMD | Código para Apple Silicon | +| *Opção* | *no Windows Intel/AMD* | *macOS Intel* | *no macOS Silicon* | +| ------------------------------------------------------ | ----------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| **Todos os processadores (Intel/AMD e Apple Silicon)** | Código para Intel/AMD
    *Não é possível produzir código Apple Silicon no Windows* | Código para Apple Silicon + Código para Intel/AMD
    *Dois códigos compilados estarão disponíveis* | Código para o Apple Silicon + Código para Intel/AMD
    *Dois códigos compilados estarão disponíveis* | +| **O meu processador (processador)** | Código para Intel/AMD | Código para Intel/AMD | Código para Apple Silicon | -> Apple Silicon compiler target requires that the **Clang** application be installed on your machine. Clang vem com a versão mais recente do Xcode. See the [Silicon compiler requirements](#requirements) for more information. +> O alvo do compilador Apple Silicon requer que o aplicativo **Clang** esteja instalado em sua máquina. Clang vem com a versão mais recente do Xcode. Consulte os [requisitos do compilador Silicon](#requirements) para obter mais informações. -### Digitação por defeito +### Digitação padrão Use esta área para definir o tipo padrão para objetos de banco de dados ambíguos. -- **Numeric**: Used to force numeric typing in an unambiguous manner, either in real or longint. Isso não substituirá as diretivas que você possa ter definido em seu projeto. Você pode otimizar a execução do seu banco de dados escolhendo o tipo Longint. -- **Button**: Used to force button typing in an unambiguous manner, either in real or longint. Isso não substituirá as diretivas que você possa ter definido em seu projeto. This type applies to buttons as well as check boxes, picture buttons, button grids, radio buttons, picture pop-up menus and drop-down lists. +- **Numérico**: Usado para forçar a digitação numérica de forma inequívoca, seja em real ou longint. Isso não substituirá as diretivas que você possa ter definido no seu projeto. Você pode otimizar a execução do seu banco de dados escolhendo o tipo Longint. +- **Botão**: Usado para forçar a digitação do botão de maneira inequívoca, seja em real ou longint. Isso não substituirá as diretivas que você possa ter definido em seu projeto. Este tipo se aplica a botões, bem como caixas de seleção, botões de imagem, grades de botão, botões de rádio, imagens de menus pop-up e listas suspensas. ### Compiler Methods for -This area lets you rename the Compiler methods that are generated automatically by the compiler when you click [Generate Typing](#generate-typing). +Esta área permite renomear os métodos do Compilador gerados automaticamente pelo compilador quando você clica em [Gerar Typing](#generate-typing). -Up to 5 compiler methods may be generated; a compiler method is only generated if the project contains the following items: +Podem ser gerados até 5 métodos de compilação; um método de compilação só é gerado se o projeto contiver os seguintes itens: -- **Variables**: Groups together process variable declarations; -- **Interprocess Variables**: Groups together interprocess variable declarations; +- **Variáveis**: Agrupa as declarações de variáveis do processo; +- **Variáveis de interprocessos**: Agrupa as declarações de variáveis interprocessuais; - **Arrays**: Agrupa as declarações de arrays de processos; -- **Interprocess Arrays**: Groups together interprocess array declarations; -- **Methods**: Groups together method parameter declarations (for instance, `C_LONGINT(mymethod;$1;$2)`). For more information, see [`Compiler_Methods` method](../Concepts/parameters.md#compiler_methods-method). +- **Arrays de interprocessos**: Agrupa declarações de matrizes interprocessos; +- **Métodos**: Agrupa as declarações de parâmetro do método (por exemplo, `C_LONGINT(meumétodo;$1;$2)`). Para obter mais informações, consulte [`Compiler_Methods` method](../Concepts/parameters.md#compiler_methods-method). -You can rename each of these methods in the corresponding areas, but they will always be preceded by the label `Compiler_` (non-modifiable). The name of each method (prefix included) must be no longer than 31 characters. It must also be unique and comply with [4D rules for naming methods](Concepts/identifiers.md#project-methods). +Você pode renomear cada um desses métodos nas áreas correspondentes, mas eles sempre serão precedidos pela etiqueta `Compiler_` (não modificável). O nome de cada método (prefixo incluído) não deve ter mais de 31 caracteres. Ele também deve ser único e cumprir as regras [4D para nomear métodos](Concepts/identifiers.md#project-methods). ## Ferramentas de compilação -### Ficheiro Symbol +### Arquivo Symbol -If you check the [**Generate the symbol file**](#generate-the-symbol-file) option in the compiler settings, a symbol file called `ProjectName_symbols.txt` is created in the [Logs folder](Project/architecture.md#logs) of the project during compilation. Está dividido en varias partes: +Se você marcar a opção [**Gerar o arquivo de símbolos**](#generate-the-symbol-file) nas configurações do compilador, um arquivo de símbolos chamado `ProjectName_symbols.txt` será criado na [pasta Logs](Project/architecture.md#logs) do projeto durante a compilação. Está dividido en varias partes: #### Lista das variáveis processo e interprocesso Estas duas listas contêm quatro colunas: -- Names of process and interprocess variables and arrays used in your project. Estas variáveis são enumeradas por ordem alfabética. -- Tipo da variável. Types are set by compiler directive commands or are determined by the compiler based on the use of the variable. Se o tipo de uma variável não puder ser determinado, a coluna estará vazia. +- Nomes de variáveis e matrizes de processo e interprocesso usadas em seu projeto. Estas variáveis são enumeradas por ordem alfabética. +- Tipo da variável. Os tipos são definidos por comandos da diretiva do compilador ou são determinados pelo compilador com base na utilização da variável. Se o tipo de uma variável não puder ser determinado, a coluna estará vazia. - Número de dimensões se a variável for um array. -- Reference to the context in which the compiler established the type of the variable. If the variable is used in several contexts, the context mentioned is the one used by the compiler to determine its type. - - If the variable was found in a database method, the database method name is given, preceded by (M)*. - - If the variable was found in a project method, the method is identified as it has been defined in 4D, preceded by (M). - - If the variable was found in a trigger, the table name is given, preceded by (TM). - - If the variable was found in a form method, the form name is given, preceded by the table name and (FM). - - If the variable was found in an object method, the object method’s name is given, preceded by the form name, table name, and by (OM). - - If the variable is an object in a form and does not appear in any project, form, object method, or trigger, the name of the form in which it appears is given, preceded by (F). At the end of each list, you can find the sizes of the process and interprocess variables in bytes. +- Referência ao contexto no qual o compilador estabeleceu o tipo da variável. Se a variável é usada em vários contextos, o contexto mencionado é o usado pelo compilador para determinar seu tipo. + - Se a variável foi encontrada em um método de banco de dados, o nome do método de banco de dados é dado, precedido por (M)*. + - Se a variável foi encontrada em um método do projeto, o método é identificado como foi definido em 4D, precedido por (M). + - Se a variável for encontrada em um gatilho, o nome da tabela é dado, precedido por (TM). + - Se a variável foi encontrada em um método do formulário, o nome do formulário é dado, precedido pelo nome da tabela e (FM). + - Se a variável foi encontrada em um método do objeto, o nome do método do objeto é fornecido, precedido pelo nome do formulário, nome da tabela, e por (OM). + - Se a variável for um objeto em um formulário e não aparecer em qualquer projeto, formulário, método do objeto, ou gatilho, o nome do formulário em que aparece é dado, precedido por (F). No final de cada lista, você pode encontrar os tamanhos das variáveis do processo e interprocessos em bytes. -> When compiling, the compiler cannot determine in which process a given process variable is used. Uma variável processo pode ter um valor diferente em cada processo. Consequently, all process variables are systematically duplicated as each new process is launched: it is thus advisable to watch out for the amount of memory that they will take up. Also, keep in mind that the space for process variables is not related to the stack size for the process. +> Durante a compilação, o compilador não pode determinar em qual processo uma determinada variável de processo é usada. Uma variável processo pode ter um valor diferente em cada processo. Consequentemente, todas as variáveis do processo são sistematicamente duplicadas à medida que cada novo processo é lançado: portanto, é aconselhável ter cuidado com a quantidade de memória que eles vão utilizar. Além disso, lembre-se de que o espaço para as variáveis do processo não está relacionado ao tamanho da pilha do processo. #### Lista de variáveis locais -The list of local variables is sorted by database method, project method, trigger, form method, and object method, in the same order as in 4D. +A lista de variáveis locais é classificada pelo método do banco de dados, método do projeto, acionado, método do formulário e método do objeto, na mesma ordem que em 4D. Esta lista está dividida em três colunas: @@ -229,57 +229,57 @@ Uma lista completa de seus métodos banco de dados e projeto é apresentada no f Esta informação aparece da seguinte forma: ``` -Procedure or Function (parameter data types): -result data type, number of calls, Thread Safe or Thread Unsafe +Procedimiento o función (tipos de datos de los parámetros): +tipo resultado, número de llamadas, Thread Safe o Thread Unsafe ``` ### Arquivo de erros -You can choose whether or not to generate an error file during compilation using the [**Generate error file**](#generate-error-file) option in the compiler settings. The error file is automatically named `projectName_errors.xml` and is placed in the [Logs folder](Project/architecture.md#logs) of the project. +Você pode escolher se deseja ou não gerar um arquivo de erro durante a compilação usando a opção [**Gerar arquivo de erro**](#generate-error-file) nas configurações do compilador. O arquivo de erro é automaticamente denominado `projectName_errors.xml` e é colocado na [pasta Logs](Project/architecture.md#logs) do projeto. -Although the errors can be accessed directly via the [compiler window](#compile), it can be useful to have an error file that can be transmitted from one machine to another. The error file is generated in XML format in order to facilitate automatic parsing of its contents. Também permite a criação de interfaces customizadas de exibição de erros. +Embora os erros possam ser acessados diretamente pela [janela do compilador](#compile), pode ser útil ter um arquivo de erros que possa ser transmitido de uma máquina para outra. O arquivo de erro é gerado no formato XML para facilitar a análise automática de seu conteúdo. Também permite a criação de interfaces customizadas de exibição de erros. -The length of the error file depends on the number of errors and warnings issued by the compiler. +O tamanho do arquivo de erros depende do número de erros e avisos emitidos pelo compilador. A estrutura do ficheiro de erros é a seguinte: -- At the top of the file is the list of errors and warnings, sorted by method and in their order of creation in 4D. +- Na parte superior do arquivo está a lista de erros e avisos, classificados por método e em sua ordem de criação em 4D. - **General errors**: These are errors that make it impossible to compile the project. There are two cases in which the compiler reports a general error: - número da linha no método (0 indica erros gerais) - - warning attribute indicating whether the detected anomaly is a warning (warning="true") or an error (warning="false") + - atributo de aviso indicando se a anomalia detectada é um aviso (warning="true") ou um erro (warning="false") - diagnóstico que descreve o erro -If your project does not have any general errors, the file will not have a *General errors* section. +Se o seu projeto não tiver nenhum erro geral, o arquivo não terá uma seção de *erros gerais*. -Um ficheiro de erros pode conter três tipos de mensagens: +Um arquivo de erro pode conter três tipos de mensagens: -- **Errors linked to a specific line**: these errors are displayed in context — the line in which they were found — with an explanation. The compiler reports this type of error when it encounters an expression in which it sees an inconsistency related to data type or syntax. In the compiler window, double–click on each error detected in order to open the method concerned directly in the 4D Method editor, with the line containing the error highlighted. +- **Erros vinculados a uma linha específica**: esses erros são exibidos no contexto — a linha em que foram encontrados — com uma explicação. O compilador relata esse tipo de erro quando encontra uma expressão em que vê uma inconsistência relacionada ao tipo de dados ou sintaxe. Na janela do compilador, clique duas vezes em cada erro detectado para abrir o método em questão diretamente no Editor de Código 4D, com a linha que contém o erro destacado. -- In the ***General errors*** section, all the typing impossibilities and identity ambiguities are grouped together. Há dois casos em que o compilador informa um erro geral: +- **Erros gerais**: São erros que impossibilitam a compilação do projeto. Há dois casos em que o compilador informa um erro geral: - Não foi possível determinar o tipo de dados de uma variável processo. - Dois tipos diferentes de objetos têm o mesmo nome. -General errors are so named because they cannot be linked to any specific method. In the first case, the compiler could not perform a specified typing anywhere in the project. In the second, it was unable to decide whether to associate a given name with one object rather than with another. +Os erros gerais são assim chamados porque não podem ser vinculados a nenhum método específico. No primeiro caso, o compilador não pôde executar uma digitação especificada em nenhum lugar do projeto. No segundo, ele não conseguiu decidir se associava um determinado nome a um objeto e não a outro. -- **Avisos**: os avisos não são erros. They do not prevent the project from being compiled, but simply point out potential code errors. Na janela do compilador, os avisos aparecem em itálico. Double-click on each warning to open the method concerned directly in the 4D Method editor, with the line containing the warning highlighted. +- **Avisos**: os avisos não são erros. Eles não impedem que o projeto seja compilado, mas simplesmente apontam possíveis erros de código. Na janela do compilador, os avisos aparecem em itálico. Clique duas vezes em cada aviso para abrir o método em questão diretamente no Editor de Código 4D, com a linha que contém o aviso destacado. -### Controlo de execução +### Verificação do intervalo -The code generated by the 4D compiler automatically checks that every access to an array element or a character reference is done within the actual range of array elements or string characters. Os acessos fora do intervalo provocarão erros de execução em tempo de execução. +O código gerado pelo compilador 4D verifica automaticamente que todo acesso a um elemento de array ou uma referência de caractere é feito dentro do intervalo real de elementos do array ou de caracteres de string. Os acessos fora do intervalo provocarão erros de execução em tempo de execução. -Em alguns casos, pode preferir que a verificação de intervalos não se aplique a certas partes do código consideradas fiáveis. More particularly, in the case of loops that are repeated a great number of times, and when running the compiled database on older machines, range checking can significantly slow down processing. If you are absolutely certain that the code concerned is reliable and cannot cause system errors, you can disable range checking locally. +Em alguns casos, pode preferir que a verificação de intervalos não se aplique a certas partes do código consideradas fiáveis. Mais especificamente, no caso de repetições que se repetem por diversas vezes. e ao executar a base de dados compilada em máquinas mais antigas, a verificação por intervalo pode diminuir significativamente o processamento. Se você tiver certeza absoluta de que o código em questão é confiável e não pode causar erros no sistema, poderá desativar a verificação de intervalo localmente. -To do this, you must surround the code to be excluded from range checking with the special comments `//%R-` and `//%R+`. The `//%R-` comment disables range checking and `//%R+` enables it again: +Para fazer isso, você deve cercar o código a ser excluído da verificação de intervalo com os comentários especiais `//%R-` e `//%R+`. O comentário `//%R-` desativa a verificação de intervalo e `//%R+` a ativa novamente: ```4d - // %R- to disable range checking - - ... //Place the code to be excluded from range checking here - - // %R+ to enable range checking again for the rest + // %R- para desativar o intervalo verificando + + ... //Coloque o código a ser excluído do intervalo verificando aqui + + // %R+ para habilitar a verificação de intervalo novamente para o resto ``` ## Sobre os compiladores @@ -289,7 +289,7 @@ To do this, you must surround the code to be excluded from range checking with t - um compilador "clássico", usado para compilar código nativo para processadores Intel/AMD; - um compilador Silicon, para compilar código nativo para processadores Apple Silicon. -The classic compiler can be used on any platform, while the Silicon compiler can only be used on a Mac machine: +O compilador clássico pode ser usado em qualquer plataforma, enquanto o compilador do Silicon só pode ser usado em uma máquina Mac: | | Compilar para Windows | Compilar para Intel Mac | Compilar para Silicon Mac | | ----------- |:---------------------:|:-----------------------:|:-------------------------:| @@ -298,40 +298,40 @@ The classic compiler can be used on any platform, while the Silicon compiler can | Silicon Mac | ✓ | ✓ | ✓ | -Ambos os compiladores estão integrados em 4D. The appropriate compiler is automatically selected depending on the [compilation target](#compilation-target) option. +Ambos os compiladores estão integrados em 4D. O compilador apropriado é selecionado automaticamente, dependendo da opção de [destino da compilação](#compilation-target). ### Compilador clássico -The classic compiler generates native compiled code for Intel/AMD processors on any machines. Não necessita de qualquer configuração específica. +O compilador clássico gera código compilado nativo para processadores Intel/AMD em qualquer máquina. Não necessita de qualquer configuração específica. -Resulting compiled code is stored in the [DerivedData](architecture.md#deriveddata) folder of the project. +O código compilado resultante é armazenado na pasta [DerivedData](architecture.md#deriveddata) do projeto. ### Compilador Silicon -The Silicon compiler generates native compiled code for Apple Silicon processors, such as *Apple M1*. +O compilador Silicon gera código compilado nativo para processadores Apple Silicon, como o *Apple M1*. -Resulting compiled code is stored in the [Libraries](architecture.md#libraries) folder of the project. +O código compilado resultante é armazenado na pasta [Bibliotecas](architecture.md#libraries) do projeto. #### Requisitos -- **Apple machine**: The Silicon compiler can only be run from an Apple machine. -- **4D Project architecture**: The Silicon compiler is only available for 4D developments using [project architecture](architecture.md). -- **Xcode or Developer Tools**: The Silicon compiler calls the **Clang** open-source macOS compiler to compile the project from C++ code at the [second step](#incremental-compiler) of compilation. **Xcode or Developer Tools**: The Silicon compiler calls the **Clang** open-source macOS compiler to compile the project from C++ code at the [second step](#incremental-compiler) of compilation. - - **If you already have** Xcode or Developer Tools installed on your computer, you only need to make sure that its version is compliant with 4D requirements. - - **If you do not have** any of these tools installed on your computer, you will need to download one of them from the Apple Developer web site. +- **Máquina Apple**: O compilador Silicon só pode ser executado por uma máquina Apple. +- A arquitetura do projeto **4D**: O compilador Silicon só está disponível para desenvolvimentos 4D usando a arquitetura [do projeto](architecture.md). +- **Xcode ou Ferramentas do Desenvolvedor**: O compilador Silicon chama o compilador macOS **Clang** de código aberto para compilar o projeto a partir do código C++ no segundo passo [](#incremental-compiler) da compilação. *clang* requer bibliotecas nativas da Apple, que são fornecidas pelo pacote **Xcode** ou **Developer Tools**. + - **Se você já tiver** Xcode ou Ferramentas de Desenvolvedor instalado no seu computador, você só precisa se certificar de que a sua versão está de acordo com os requisitos 4D. + - **Se você não tiver** nenhuma dessas ferramentas instaladas no seu computador, você precisará baixar uma delas, no site do desenvolvedor Apple. -> We recommend to install **Xcode**, which is quite simple to install. You can decide to install **Developer Tools** which is more compact, however its installation is a little more complex. +> Recomendamos instalar o **Xcode**, o que é muito simples de instalar. Você pode optar por instalar o **Developer Tools**, que é mais compacto, mas sua instalação é um pouco mais complexa. -In any cases, the 4D Silicon compiler will warn you if your configuration does not comply with its requirements. +Em quaisquer casos, o compilador 4D de Silicon irá avisá-lo se sua configuração não estiver de acordo com seus requisitos. #### Compilador incremental O compilador Silicon é incremental, o que significa que: -- During the very first compilation, **all 4D methods** are compiled. Esta etapa pode demorar algum tempo. No entanto, só ocorre uma vez. -- During all subsequent compilations, only **new or modified methods** are processed, thus reducing drastically the compilation time. \ No newline at end of file +- Durante a primeira compilação, **todos os métodos 4D** são compilados. Esta etapa pode demorar algum tempo. No entanto, só ocorre uma vez. +- Durante todas as compilações subsequentes, apenas **métodos novos ou modificados** são processados, reduzindo assim drasticamente o tempo de compilação. \ No newline at end of file diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/Project/documentation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/Project/documentation.md index c474fe24b8f1b4..576ba89dace9a6 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/Project/documentation.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/Project/documentation.md @@ -5,36 +5,36 @@ title: Documentar um projecto -In application projects, you can document your methods as well as your forms, tables, or fields. Creating documentation is particularly appropriate for projects being developed by multiple programmers and is generally good programming practice. Documentation can contain a description of an element as well as any information necessary to understand how the element functions in the application. +Nos projetos de aplicação, você pode documentar seus métodos e suas classes, formulários, tabelas ou campos. A criação de documentação é particularmente apropriada para projetos que estão sendo desenvolvidos por vários programadores e, em geral, é uma boa prática de programação. A documentação pode conter uma descrição de um elemento, bem como de qualquer informação necessária para entender como o elemento funciona na aplicação. Os seguintes elementos do projeto aceitam documentação: -- Methods (database methods, component methods, project methods, form methods, 4D Mobile methods, triggers, and classes) +- Métodos (métodos banco de dados, métodos componentes, métodos projeto, métodos formulário, métodos 4D Mobile e triggers) - Classes - Formulários - Tabela -Your documentation files are written in Markdown syntax (.md files) using any editor that supports Markdown. São armazenados como ficheiros independentes na pasta do seu projeto. +Seus arquivos de documentação são escritos na sintaxe Markdown (arquivos .md) usando qualquer editor compatível com Markdown. São armazenados como ficheiros independentes na pasta do seu projeto. -Documentation is displayed in the preview area (right-side panel) of the Explorer: +A documentação é exibida na área de visualização (painel do lado direito) do Explorer: ![](../assets/en/Project/explorer_Doc.png) -It can also be partially exposed as [code editor tips](#viewing-documentation-in-the-code-editor). +Ele também pode ser parcialmente exposto como [dicas do editor de código](#viewing-documentation-in-the-code-editor). ## Ficheiros documentação ### Nome do ficheiro de documentação -Documentation files have the same name as their attached element, with the ".md" extension. For example, the documentation file attached to the `myMethod.4dm` project method will be named `myMethod.md`. +Os arquivos de documentação têm o mesmo nome do elemento anexado, com a extensão ".md". Por exemplo, o arquivo de documentação anexado ao método projeto `myMethod.4dm` será denominado `myMethod.md`. -In the Explorer, 4D automatically displays the documentation file with the same name as the selected element (see below). +No Explorer, o 4D exibe automaticamente o arquivo de documentação com o mesmo nome do elemento selecionado (veja abaixo). ### Arquitetura dos ficheiros de documentação -All documentation files are stored in the `Documentation` folder, located at the first level of the package folder. +Todos os arquivos de documentação são armazenados na pasta `Documentation`, localizada no primeiro nível da pasta do pacote. A arquitetura da pasta `Documentation` é a seguinte: @@ -59,8 +59,8 @@ A arquitetura da pasta `Documentation` é a seguinte: * table1.md * ... -- A project form and its project form method share the same documentation file for form and method. -- A table form and its table form method share the same documentation file for form and method. +- Um formulário projeto e seu método de formulário projeto compartilham o mesmo arquivo de documentação para formulário e método. +- Um formulário tabela e seu método de formulário tabela compartilham o mesmo arquivo de documentação para o formulário e o método. > Renaming or deleting a documented element in your project will also rename or delete the element's associated Markdown file. @@ -73,40 +73,40 @@ Para visualizar a documentação na janela do Explorer: 1. Certifique-se de que a área de pré-visualização é mostrada. 2. Selecione o elemento documentado na lista do Explorador. -3. Click the **Documentation** button located below the preview area. +3. Clique no botão **Documentação** localizado abaixo da área de visualização. ![](../assets/en/Project/comments-explo2.png) -- If no documentation file was found for the selected element, a **Create** button is displayed (see below). +- Si no se ha encontrado ningún archivo de documentación para el elemento seleccionado, se muestra un botón **Crear** (ver más abajo). -- Otherwise, if a documentation file exists for the selected element, the contents are displayed in the area. Os conteúdos não são diretamente editáveis no painel. +- Caso contrário, se houver um arquivo de documentação para o elemento selecionado, o conteúdo será exibido na área. Os conteúdos não são diretamente editáveis no painel. ### Editar o ficheiro de documentação -You can create and/or edit a Markdown documentation file from the Explorer window for the selected element. +Você pode criar e/ou editar um arquivo de documentação Markdown na janela Explorer para o elemento selecionado. Se não houver um arquivo de documentação para o elemento selecionado, você poderá: -- click on the **Create** button in the `Documentation` pane or, -- choose the **Edit Documentation...** option in the contextual menu or options menu of the Explorer. +- clique no botão **Criar** no painel `Documentação` ou, +- escolha a opção **Editar documentação...** no menu contextual ou no menu de opções do Explorer. ![](../assets/en/Project/comments-explo3.png) -4D automatically creates an appropriately named .md file with a basic template at the relevant location and opens it with your default Markdown editor. +4D cria automaticamente um arquivo .md com o nome apropriado com um modelo básico no local relevante e o abre com seu editor Markdown padrão. -If a documentation file already exists for the selected element, you can open it with your Markdown editor by choosing the **Edit Documentation...** option in the contextual menu or options menu of the Explorer. +Se já existir um arquivo de documentação para o elemento selecionado, você poderá abri-lo com seu editor Markdown escolhendo a opção **Editar documentação...** no menu contextual ou no menu de opções do Explorer. ## Ver a documentação no editor de código -The 4D code editor displays a part of a method's documentation in its help tip. +O editor de código 4D exibe uma parte da documentação de um método em sua dica de ajuda. ![](../assets/en/Project/codeEditor_Comments.png) Se existir um ficheiro com o nome `\<MethodName>.md` na pasta `\<package>/documentation`, o editor de código é apresentado (por prioridade): -- Any text entered in an HTML comment tag (``) at the top of the markdown file. +- Qualquer texto inserido em uma tag de comentário HTML (``) na parte superior do arquivo de markdown. - Or, if no html comment tag is used, the first sentence after a `# Description` tag of the markdown file. In this case, the first line contains the **prototype** of the method, automatically generated by the 4D code parser. @@ -166,10 +166,10 @@ _italic_ - A etiqueta de tabela é suportada: ```md -| Parameter | Type | Description | +| Parâmetro | Tipo | Descrição | | --------- | ------ | ------------ | -| wpArea | Text |Write pro area| -| toolbar | Text |Toolbar name | +| wpArea | Text |Área de escrita profissional| +| toolbar | Text |Nome da barra de ferramentas | ``` @@ -217,9 +217,9 @@ GetLogo (size) -> logo | logo | Picture | out | Selected logo | -## Description +## Descrição -This method returns a logo of a specific size, depending on the value of the *size* parameter. +Esse método retorna um logotipo de um tamanho específico, dependendo do valor do parâmetro *size*. 1 = tamanho mais pequeno, 5 = tamanho maior. ## Example C_PICTURE($logo) diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/advanced-programming.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/advanced-programming.md index 7cb96a777cd3f7..fac4c94780079e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/advanced-programming.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/advanced-programming.md @@ -12,7 +12,7 @@ Como 4D View Pro é alimentado pela [solução de planilha eletrônica SpreadJS] Since 4D View Pro is a web area, you can select a webpage element and modify its behavior using Javascript. The following example hides the spreadJS [Ribbon](./configuring.md#ribbon): ```4d -//Button's object method +//Método objeto do botão var $js; $answer : Text diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/configuring.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/configuring.md index ef5b66d571825e..0d212f51ebe222 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/configuring.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/configuring.md @@ -124,7 +124,7 @@ Defining a format pattern ensures that the content of your 4D View Pro documents 4D View Pro has built-in formats for numbers, dates, times, and text, but you can also create your own patterns to format the contents of cells using special characters and codes. -For example, when using the [VP SET VALUE](method-list.md#vp-set-value) or [VP SET NUM VALUE](method-list.md#vp-set-num-value) methods to enter amounts in an invoice, you may want the currency symbols ($, €, ¥, etc.) to be aligned regardless of the space required by the number (i.e., whether the amount is $5.00 or $5,000.00). You could use formatting characters and spectify the pattern _($* #,##0.00_) which would display amounts as shown: +For example, when using the [VP SET VALUE](method-list.md#vp-set-value) or [VP SET NUM VALUE](method-list.md#vp-set-num-value) methods to enter amounts in an invoice, you may want the currency symbols ($, €, ¥, etc.) to be aligned regardless of the space required by the number (i.e., whether the amount is $5.00 or $5,000.00). Você poderia usar caracteres de formatação e especificar o padrão _($* #,##0.00_) que exibiria os valores conforme mostrado: ![](../assets/en/ViewPro/apx_vpCellFormat1.PNG) @@ -134,23 +134,23 @@ Note that when creating your own format patterns, only the display of the data i Number formats apply to all number types (e.g., positive, negative, and zeros). -| Caracteres | Descrição | Exemplo | -| ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -| 0 | Marcador de posição mostrando zeros. | #.00 mostrará 1.1 como 1.10 | -| . | Exibe um ponto decimal | 0.00 mostrará 1999 como 1999.00 | -| , | Mostra o separador de milhares num número. Thousands are separated by commas if the format contains a comma enclosed by number signs "#" or by zeros. Uma vírgula após um marcador de posição de dígito escala o número por 1.000. | #,0 mostrará 12200000 como 12,200,000 | -| \_ | Salta a largura do carácter seguinte. | Usually used in combination with parentheses to add left and right indents, \_( and _) respectively. | -| @ | Formatador de texto. Aplica o formato a todo o texto da célula | "\[Red]@" aplica a cor de letra vermelha aos valores de texto. | -| * | Repete o carácter seguinte para preencher a largura da coluna. | 0*- will include enough dashes after a number to fill the cell, whereas *0 before any format will include leading zeros. | -| " " | Exibe o texto dentro das aspas sem interpretá-lo. | "8%" será exibido como: 8% | -| % | Mostra os números como uma percentagem de 100. | 8% será exibido como 0,08 | -| \# | Espaço reservado para dígitos que não apresenta zeros extra. If a number has more digits to the right of the decimal than there are placeholders, the number is rounded up. | #.# mostrará 1.54 como 1.5 | -| ? | Digit placeholder that leaves space for extra zeros, but does not display them. Normalmente utilizado para alinhar números pelo ponto decimal. | $?? displays a maximum of 2 decimals and causes dollar signs to line up for varying amounts. | -| \ | Exibe o caractere seguinte. | #.00\? mostrará 123 como 123.00? | -| / | Quando utilizado com números, apresenta-os como fracções. Quando utilizado com códigos de texto, data ou hora, é apresentado "tal e qual". | #/# mostrará .75 como 3/4 | -| \[ ] | Cria formatos condicionais. | \[>100]\[GREEN]#,##0;\[`<=-100`]\[YELLOW]#,##0;\[BLUE]#,##0 | -| E | Formato notação científica. | #E+# - mostrará 1.500.500 como 2E+6 | -| \[color] | Formata o texto ou número na cor especificada | \[Green]###.##\[Red]-###.### | +| Caracteres | Descrição | Exemplo | +| ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | +| 0 | Marcador de posição mostrando zeros. | #.00 mostrará 1.1 como 1.10 | +| . | Exibe um ponto decimal | 0.00 mostrará 1999 como 1999.00 | +| , | Mostra o separador de milhares num número. Thousands are separated by commas if the format contains a comma enclosed by number signs "#" or by zeros. Uma vírgula após um marcador de posição de dígito escala o número por 1.000. | #,0 mostrará 12200000 como 12,200,000 | +| \_ | Salta a largura do carácter seguinte. | Usually used in combination with parentheses to add left and right indents, \_( and _) respectively. | +| @ | Formatador de texto. Aplica o formato a todo o texto da célula | "\[Red]@" aplica a cor de letra vermelha aos valores de texto. | +| * | Repete o carácter seguinte para preencher a largura da coluna. | 0*- incluirá traços suficientes após um número para preencher a célula, enquanto *0 antes de qualquer formato incluirá zeros à esquerda. | +| " " | Exibe o texto dentro das aspas sem interpretá-lo. | "8%" será exibido como: 8% | +| % | Mostra os números como uma percentagem de 100. | 8% será exibido como 0,08 | +| \# | Espaço reservado para dígitos que não apresenta zeros extra. If a number has more digits to the right of the decimal than there are placeholders, the number is rounded up. | #.# mostrará 1.54 como 1.5 | +| ? | Digit placeholder that leaves space for extra zeros, but does not display them. Normalmente utilizado para alinhar números pelo ponto decimal. | $?? displays a maximum of 2 decimals and causes dollar signs to line up for varying amounts. | +| \ | Exibe o caractere seguinte. | #.00\? mostrará 123 como 123.00? | +| / | Quando utilizado com números, apresenta-os como fracções. Quando utilizado com códigos de texto, data ou hora, é apresentado "tal e qual". | #/# mostrará .75 como 3/4 | +| \[ ] | Cria formatos condicionais. | \[>100]\[GREEN]#,##0;\[`<=-100`]\[YELLOW]#,##0;\[BLUE]#,##0 | +| E | Formato notação científica. | #E+# - mostrará 1.500.500 como 2E+6 | +| \[color] | Formata o texto ou número na cor especificada | \[Green]###.##\[Red]-###.### | #### Exemplo diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/formulas.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/formulas.md index 3a63e556cd1f4e..b3e6463d4ad66e 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/formulas.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/formulas.md @@ -46,7 +46,7 @@ Todas as fórmulas têm operandos e operadores: | ------------------------------------ | ----------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | [Number](Concepts/dt_number.md) | 1.2
    1.2 E3
    1.2E-3
    10.3x | + (adição)
    - (subtração)
    * (multiplicação)
    / (divisão)
    ^ (expoente, o número de vezes para multiplicar um número por ele mesmo)
    % (porcentagem -- dividir o número antes do operador por cem) | | [Date](Concepts/dt_date.md) | 10/24/2017 | + (date + number of days -> date)
    + (date + time -> date + time of day)
    - (date - number of days -> date)
    - (date - date -> number of days between the two) | -| [Hora](Concepts/dt_time.md) | 10:12:10 | Duration operators:
    + (addition)
    - (subtraction)
    * (duration * number -> duration)
    / (duration / number -> duration) | +| [Hora](Concepts/dt_time.md) | 10:12:10 | Operadores de duração:
    + (adição)
    - (subtração)
    * (duração * número -> duração)
    / (duração / número -> duração) | | [String](Concepts/dt_string.md) | 'Sophie' ou "Sophie" | & (concatenação) | | [Parâmetros](Concepts/dt_boolean.md) | TRUE ou FALSE | - | @@ -279,13 +279,13 @@ Alternate solutions are available to declare fields or methods as functions in y ### Referência a campos utilizando a estrutura virtual -4D View Pro allows you to reference 4D fields using the virtual structure of the database, i.e. declared through the [`SET TABLE TITLES`](https://doc.4d.com/4dv19/help/command/en/page601.html) and/or [`SET FIELD TITLES`](https://doc.4d.com/4dv19/help/command/en/page602.html) commands with the \* parameter. Essa solução alternativa pode ser útil se o sua aplicação já depender de uma estrutura virtual (caso contrário, recomenda-se [usar `VP SET CUSTOM FUNCTIONS`](#4d-functions)). +4D View Pro permite que você faça referência a campos 4D usando a estrutura virtual do banco de dados, ou seja, declarada por meio da função [`SET TABLE TITLES`](https://doc.4d.com/4dv19/help/command/en/page601.html) e/ou [`SET FIELD TITLES`](https://doc.4d.com/4dv19/help/command/en/page602.html) com o parâmetro \*. Essa solução alternativa pode ser útil se o sua aplicação já depender de uma estrutura virtual (caso contrário, recomenda-se [usar `VP SET CUSTOM FUNCTIONS`](#4d-functions)). > **ATENÇÃO:** não pode utilizar a estrutura virtual e `VP SET CUSTOM FUNCTIONS` simultaneamente. As soon as `VP SET CUSTOM FUNCTIONS` is called, the functions based upon `SET TABLE TITLES` and `SET FIELD TITLES` commands are ignored in the 4D View Pro area. #### Requisitos -* The field must belong to the virtual structure of the database, i.e. it must be declared through the [`SET TABLE TITLES`](https://doc.4d.com/4dv19/help/command/en/page601.html) and/or [`SET FIELD TITLES`](https://doc.4d.com/4dv19/help/command/en/page602.html) commands with the \* parameter (see example), +* O campo deve pertencer à estrutura virtual do banco de dados, ou seja, deve ser declarado por meio do comando [`SET TABLE TITLES`](https://doc.4d.com/4dv19/help/command/en/page601.html) e/ou [`SET FIELD TITLES`](https://doc.4d.com/4dv19/help/command/en/page602.html) com o parâmetro \* (consulte o exemplo), * Os nomes das tabelas e dos campos devem estar em conformidade com (consulte [o standard ECMA ECMA Script](https://www.ecma-international.org/ecma-262/5.1/#sec-7.6)), * O tipo de campo deve ser compatível com 4D View Pro (veja acima). @@ -329,7 +329,7 @@ We want to print the name of a person in a 4D View Pro area cell using a 4D virt ARRAY TEXT($fieldTitles;1) ARRAY LONGINT($fieldNum;1) $fieldTitles{1}:="Name" - $fieldNum{1}:=2 //last name + $fieldNum{1}:=2 //sobrenome SET FIELD TITLES([Employee];$fieldTitles;$fieldNum;*) ``` diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/method-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/method-list.md index c4fd42467198bf..22aca603d02a8f 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/method-list.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/ViewPro/method-list.md @@ -4898,7 +4898,7 @@ In *options*, you can pass an object that specifies additional options. As propr | Propriedade | Tipo | Descrição | | ------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | reset | Object | True to reset the sheet's contents before loading the new context, False (default) otherwise. | -| autoGenerateColumns | Object | Apenas utilizado quando os dados são uma coleção. True (default) to specify that columns must be generated automatically when the data context is bound. Neste caso, aplicam-se as seguintes regras:
    • If *dataColl* is a collection of objects, attribute names are used as column titles (see example 2).
    • If *dataColl* contains subcollections of scalar values, each subcollection defines the values in a row (see example 3). A primeira subcoleção determina o número de colunas criadas.
    | +| autoGenerateColumns | Object | Apenas utilizado quando os dados são uma coleção. True (default) to specify that columns must be generated automatically when the data context is bound. Neste caso, aplicam-se as seguintes regras:
    • Se *dataColl* for uma coleção de objetos, os nomes dos atributos serão usados como títulos das colunas (veja o exemplo 2).
    • Se *dataColl* contiver subcoleções de valores escalares, cada subcoleção definirá os valores em uma linha (consulte o exemplo 3). A primeira subcoleção determina o número de colunas criadas.
    | In *sheet*, pass the index of the sheet that will receive the data context. Se nenhum índice for passado, o contexto será aplicado à folha atual. @@ -6231,7 +6231,7 @@ A tabela seguinte lista as opções de libro disponíveis: | scrollbarShowMax | boolean | The displayed scroll bars are based on the entire number of columns and rows in the sheet. | | scrollByPixel | boolean | Ativar a deslocação de precisão por pixel. | | scrollIgnoreHidden | boolean | A barra de rolagem ignora as linhas ou colunas ocultas. | -| scrollPixel | integer | Decides scrolling by that number of pixels at a time when scrollByPixel is true. The final scrolling pixels are the result of `scrolling delta * scrollPixel`. For example: scrolling delta is 3, scrollPixel is 5, the final scrolling pixels are 15. | +| scrollPixel | integer | Decides scrolling by that number of pixels at a time when scrollByPixel is true. Os pixels de rolagem finais são o resultado de `scrolling delta * scrollPixel`. For example: scrolling delta is 3, scrollPixel is 5, the final scrolling pixels are 15. | | showDragDropTip | boolean | Exibir a dica de arrastar e soltar. | | showDragFillSmartTag | boolean | Exibe a caixa de diálogo de arrastar e preencher. | | showDragFillTip | boolean | Exibir a dica de preenchimento de arrasto. | diff --git a/src/css/customTheme.css b/src/css/customTheme.css index cb673fdb868f9a..a1393711297e9d 100644 --- a/src/css/customTheme.css +++ b/src/css/customTheme.css @@ -35,6 +35,14 @@ details { margin: 10px auto !important; } +details[data-value='properties'] > div > div { + border: none !important; +} + +details[data-value='properties'] > div > div > table > thead { + visibility: collapse; + line-height: 0; +} .details > summary { position: relative; diff --git a/versioned_docs/version-19/API/DataClassClass.md b/versioned_docs/version-19/API/DataClassClass.md index ba085bea7ac467..e941119b9365c1 100644 --- a/versioned_docs/version-19/API/DataClassClass.md +++ b/versioned_docs/version-19/API/DataClassClass.md @@ -806,6 +806,20 @@ You will not get the expected result because the null value will be evaluated by $vSingles:=ds.Person.query("spouse = null") //correct syntax ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + **Not equal to in collections** diff --git a/versioned_docs/version-20-R6/API/DataClassClass.md b/versioned_docs/version-20-R6/API/DataClassClass.md index 88270a9864b50f..550583f53cbd4c 100644 --- a/versioned_docs/version-20-R6/API/DataClassClass.md +++ b/versioned_docs/version-20-R6/API/DataClassClass.md @@ -1022,6 +1022,20 @@ You will not get the expected result because the null value will be evaluated by $vSingles:=ds.Person.query("spouse = null") //correct syntax ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + #### Not equal to in collections When searching within dataclass object attributes containing collections, the "not equal to *value*" comparator (`#` or `!=`) will find elements where ALL properties are different from *value* (and not those where AT LEAST one property is different from *value*, which is how work other comparators). Basically, it is equivalent to search for "Not(find collection elements where property equals *value*"). For example, with the following entities: diff --git a/versioned_docs/version-20-R7/API/DataClassClass.md b/versioned_docs/version-20-R7/API/DataClassClass.md index 1d387856fa459b..31cfb655bc4d63 100644 --- a/versioned_docs/version-20-R7/API/DataClassClass.md +++ b/versioned_docs/version-20-R7/API/DataClassClass.md @@ -1022,6 +1022,22 @@ You will not get the expected result because the null value will be evaluated by $vSingles:=ds.Person.query("spouse = null") //correct syntax ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + + + #### Not equal to in collections When searching within dataclass object attributes containing collections, the "not equal to *value*" comparator (`#` or `!=`) will find elements where ALL properties are different from *value* (and not those where AT LEAST one property is different from *value*, which is how work other comparators). Basically, it is equivalent to search for "Not(find collection elements where property equals *value*"). For example, with the following entities: diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/OutGoingMessageClass.md b/versioned_docs/version-20-R7/API/OutgoingMessageClass.md similarity index 73% rename from i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/OutGoingMessageClass.md rename to versioned_docs/version-20-R7/API/OutgoingMessageClass.md index c5a2db7b95bfea..53e5852fd4c732 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R7/API/OutGoingMessageClass.md +++ b/versioned_docs/version-20-R7/API/OutgoingMessageClass.md @@ -3,21 +3,25 @@ id: OutgoingMessageClass title: OutgoingMessage --- + The `4D.OutgoingMessage` class allows you to build messages to be returned by your application functions in response to [REST requests](../REST/REST_requests.md). If the response is of type `4D.OutgoingMessage`, the REST server does not return an object but the object instance of the `OutgoingMessage` class. -Typically, this class can be used in functions declared with the [`onHttpGet`](../ORDA/ordaClasses.md#onhttpget-keyword) keyword and designed to handle HTTP GET requests. Such requests are used, for example, to implement features such as download file, generate and download picture as well as receiving any content-type via a browser. +Typically, this class can be used in functions declared with the [`onHttpGet`](../ORDA/ordaClasses.md#onhttpget-keyword) keyword and designed to handle HTTP GET requests. Such requests are used, for example, to implement features such as download file, generate and download picture as well as receiving any content-type via a browser. An instance of this class is built on 4D Server and can be sent to the browser by the [4D REST Server](../REST/gettingStarted.md) only. This class allows to use other technologies than HTTP (e.g. mobile). -
    Historique -| Release | Modifications | -| ------- | -------------- | -| 20 R7 | Classe ajoutée | + + +
    History + +|Release|Changes| +|---|---| +|20 R7|Class added|
    -### Exemple +### Example In this example, a `getFile()` function is implemented in the [Datastore class](../ORDA/ordaClasses.md#datastore-class) and [can be called](../ORDA/ordaClasses.md#onhttpget-keyword) by a REST request. The purpose is to return a **testFile.pdf** file as a response to the request: @@ -36,16 +40,17 @@ exposed onHTTPGet Function getFile() : 4D.OutgoingMessage ### OutgoingMessage Object + 4D.OutgoingMessage objects provide the following properties and functions: -| | -| -------------------------------------------------------------------------------------------------------------------------------------- | -| [](#body)
    | -| [](#headers)
    | -| [](#setbody)
    | -| [](#setheader)
    | -| [](#setstatus)
    | -| [](#status)
    | +|| +|---| +|[](#body)
    | +|[](#headers)
    | +|[](#setbody)
    | +|[](#setheader)
    | +|[](#setstatus)
    | +|[](#status)
    | :::note @@ -53,8 +58,11 @@ A 4D.OutgoingMessage object is a [non-sharable](../Concepts/shared.md) object. ::: - + + + + ## .body **body** : any @@ -70,43 +78,42 @@ The `.body` property contains the The `.body` property is read-write. -You can also set the `.body` property using the [`setBody()`](#setbody) function, in which case the `content-type` header is automatically set. +You can also set the `.body` property using the [`setBody()`](#setbody) function, in which case the `content-type` header is automatically set. - + ## .headers **headers** : Object #### Description -The `.headers` property contains the current headers of the outgoing message as key/value pairs. +The `.headers` property contains the current headers of the outgoing message as key/value pairs. -The `.headers` property is read-only. To set a header, use the [`setHeader()`](#setheader) function. +The `.headers` property is read-only. To set a header, use the [`setHeader()`](#setheader) function. - + ## .setBody() **.setBody**( *body* : any ) - - -| Paramètres | Type | | Description | -| ---------- | ---- | -- | ---------------------------- | -| body | any | -> | Body of the outgoing message | + +|Parameter|Type||Description| +|---|--- |---|------| +|body|any |->|Body of the outgoing message| #### Description The `.setBody()` function sets the outgoing message *body*. -The following data types are supported in the *body*: + The following data types are supported in the *body*: - Text - Blob @@ -124,47 +131,45 @@ If *body* is not of a supported value type, an error is returned. - + ## .setHeader() **.setHeader**( *key* : Text ; *value* : Text ) - - -| Paramètres | Type | | Description | -| ---------- | ---- | -- | ---------------------------- | -| key | Text | -> | Header property to set | -| value | Text | -> | Value of the header property | + +|Parameter|Type||Description| +|---|--- |---|------| +|key|Text|->|Header property to set| +|value|Text|->|Value of the header property| #### Description The `.setHeader()` function sets the outgoing message header *key* with the provided *value*. If both parameters are not Text values, an error is raised. -When returning a 4D.OutgoingMessage object instance, 4D automatically sets some headers (e.g. `Set-Cookie` with `WASID4D=...` and `4DSID__ProjectName_=....`). +When returning a 4D.OutgoingMessage object instance, 4D automatically sets some headers (e.g. `Set-Cookie` with `WASID4D=...` and `4DSID__ProjectName_=....`). :::note -If you set a *value* for the "Content-Type" header *key*, make sure you call this function after the call to [`setBody()`](#setbody), because `setBody()` automatically fills this header. For a list of "Content-Type" header values, please refer to the [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md) documentation. +If you set a *value* for the "Content-Type" header *key*, make sure you call this function after the call to [`setBody()`](#setbody), because `setBody()` automatically fills this header. For a list of "Content-Type" header values, please refer to the [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md) documentation. ::: + - ## .setStatus() **.setStatus**( *status* : Integer ) - - -| Paramètres | Type | | Description | -| ---------- | ------- | -- | ------------- | -| status | Integer | -> | Status to set | + +|Parameter|Type||Description| +|---|--- |---|------| +|status|Integer|->|Status to set| #### Description @@ -173,12 +178,14 @@ The `.setStatus()` function - + + ## .status **status** : Integer diff --git a/versioned_docs/version-20-R7/Notes/updates.md b/versioned_docs/version-20-R7/Notes/updates.md index d5c6b3984d6a47..62de07392a0105 100644 --- a/versioned_docs/version-20-R7/Notes/updates.md +++ b/versioned_docs/version-20-R7/Notes/updates.md @@ -34,6 +34,7 @@ Read [**What’s new in 4D 20 R7**](https://blog.4d.com/en-whats-new-in-4d-v20-R - Documentations for [4D Language](../commands/command-index.md) and [4D Write Pro Language](../WritePro/commands/command-index.md) are now fully available on developer.4d.com. Find out about all the new features and changes concerning these documentations in this release note. - The [`File`](../commands/file.md) command (as well as [`4D.File.new()`](../API/FileClass.md#4dfilenew)) is stricter when it comes to checking the syntax of the *path* supplied as a parameter. +- The **describe** action [permission](../ORDA/privileges.md#permission-actions) has been removed from available actions. Access to [`/rest/$catalog`](../REST/$catalog.md) urls is no longer controlled. Session *describe* privileges are now ignored. ## 4D 20 R6 diff --git a/versioned_docs/version-20-R7/ORDA/glossary.md b/versioned_docs/version-20-R7/ORDA/glossary.md index f9ad836014b14c..e67a3d609c7092 100644 --- a/versioned_docs/version-20-R7/ORDA/glossary.md +++ b/versioned_docs/version-20-R7/ORDA/glossary.md @@ -11,7 +11,7 @@ title: Glossary ## Action -Every action that can be done on a [resource](#resource). Available actions are: create, read, update, drop, execute, promote, and describe. +Every action that can be done on a [resource](#resource). Available actions are: create, read, update, drop, execute, and promote. ## Attribute diff --git a/versioned_docs/version-20-R7/ORDA/privileges.md b/versioned_docs/version-20-R7/ORDA/privileges.md index 9c652c2207cd4f..bf515b6d291b3a 100644 --- a/versioned_docs/version-20-R7/ORDA/privileges.md +++ b/versioned_docs/version-20-R7/ORDA/privileges.md @@ -61,7 +61,6 @@ Available actions are related to target resource. |**update**|Update attributes in any dataclass. |Update attributes in this dataclass.|Update this attribute content (ignored for alias attributes).|n/a| |**drop**|Delete data in any dataclass. |Delete data in this dataclass. |Delete a not null value for this attribute (except for alias and computed attribute).|n/a| |**execute**|Execute any function on the project (datastore, dataclass, entity selection, entity)|Execute any function on the dataclass. Dataclass functions, entity functions, and entity selection functions are handled as dataclass functions|n/a|Execute this function| -|**describe**|All the dataclasses are available in the /rest/$catalog API|This dataclass is available in the /rest/$catalog API|This attribute is available in the /rest/$catalog API. |This dataclass function is available in the /rest/$catalog API (not available with singletons)| |**promote**|n/a|n/a|n/a|Associates a given privilege during the execution of the function. The privilege is temporary added to the session and removed at the end of the function execution. By security, only the process executing the function is added the privilege, not the whole session.| **Notes:** @@ -72,10 +71,7 @@ Available actions are related to target resource. - Default values: in the current implementation, only *Null* is available as default value. - In REST [force login mode](../REST/authUsers.md/#force-login-mode), the [`authentify()` function](../REST/authUsers.md#function-authentify) is always executable by guest users, whatever the permissions configuration. -Setting permissions requires to be consistent, in particular: - -- **update** and **drop** permissions also need **read** permission (but **create** does not need it) -- For data model functions, **promote** permission also needs **describe** permission. +Setting permissions requires to be consistent, in particular **update** and **drop** permissions also need **read** permission (but **create** does not need it). @@ -150,7 +146,6 @@ The default file has the following contents: "create": ["none"], "update": ["none"], "drop": ["none"], - "describe": ["none"], "execute": ["none"], "promote": ["none"] } @@ -203,7 +198,6 @@ The `roles.json` file syntax is the following: |||\[].create|Collection of strings||List of privileges| |||\[].update|Collection of strings||List of privileges| |||\[].drop|Collection of strings||List of privileges| -|||\[].describe|Collection of strings||List of privileges| |||\[].execute|Collection of strings||List of privileges| |||\[].promote|Collection of strings||List of privileges| |forceLogin|||Boolean||True to enable the ["forceLogin" mode](../REST/authUsers.md#force-login-mode) | @@ -267,9 +261,6 @@ The good practice is to keep all data access locked by default thanks to the "no "execute": [ "none" ], - "describe": [ - "none" - ], "promote": [ "none" ] diff --git a/versioned_docs/version-20-R7/ORDA/remoteDatastores.md b/versioned_docs/version-20-R7/ORDA/remoteDatastores.md index 7539f485d8c680..ca4ad373397b33 100644 --- a/versioned_docs/version-20-R7/ORDA/remoteDatastores.md +++ b/versioned_docs/version-20-R7/ORDA/remoteDatastores.md @@ -53,7 +53,7 @@ ORDA features related to entity locking and transaction are managed at process l * If a process locks an entity from a remote datastore, the entity is locked for all other processes, even when these processes share the same session (see [Entity locking](entities.md#entity-locking)). If several entities pointing to a same record have been locked in a process, they must be all unlocked in the process to remove the lock. If a lock has been put on an entity, the lock is removed when there is no more reference to this entity in memory. * Transactions can be started, validated or cancelled separately on each remote datastore using the `dataStore.startTransaction()`, `dataStore.cancelTransaction()`, and `dataStore.validateTransaction()` functions. They do not impact other datastores. -* Classic 4D language commands (`START TRANSACTION`, `VALIDATE TRANSACTION`, `CANCEL TRANSACTION`) only apply to the main datastore (returned by `ds`). +* Classic 4D language commands ([`START TRANSACTION`](../commands-legacy/start-transaction.md), [`VALIDATE TRANSACTION`](../commands-legacy/validate-transaction.md), [`CANCEL TRANSACTION`](../commands-legacy/cancel-transaction.md)) only apply to the main datastore (returned by `ds`). If an entity from a remote datastore is hold by a transaction in a process, other processes cannot update it, even if these processes share the same session. * Locks on entities are removed and transactions are rollbacked: * when the process is killed. diff --git a/versioned_docs/version-20-R7/commands-legacy/abort-process-by-id.md b/versioned_docs/version-20-R7/commands-legacy/abort-process-by-id.md index 5959512977b47f..dc8324a3f1fea5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/abort-process-by-id.md +++ b/versioned_docs/version-20-R7/commands-legacy/abort-process-by-id.md @@ -41,4 +41,13 @@ You want to stop the selected process of the processes collection displayed in a #### See also -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1634 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/abort.md b/versioned_docs/version-20-R7/commands-legacy/abort.md index ea45000239c32e..ad423a36cf24a2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/abort.md +++ b/versioned_docs/version-20-R7/commands-legacy/abort.md @@ -34,4 +34,13 @@ Although the **ABORT** command is intended to be used only from within a error-h #### See also -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 156 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/abs.md b/versioned_docs/version-20-R7/commands-legacy/abs.md index 099819734bf855..e54123de00ee09 100644 --- a/versioned_docs/version-20-R7/commands-legacy/abs.md +++ b/versioned_docs/version-20-R7/commands-legacy/abs.md @@ -25,3 +25,13 @@ The following example returns the absolute value of –10.3, which is 10.3: ```4d  vlVector:=Abs(-10.3) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 99 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/accept.md b/versioned_docs/version-20-R7/commands-legacy/accept.md index 5b8ddece96b0bc..9ff691ef966717 100644 --- a/versioned_docs/version-20-R7/commands-legacy/accept.md +++ b/versioned_docs/version-20-R7/commands-legacy/accept.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ACCEPT** command is used in form or object methods (or in subroutines) to: @@ -37,4 +34,14 @@ The **ACCEPT** command is allowed in headless mode, in the context of offscreen #### See also -[CANCEL](cancel.md) \ No newline at end of file +[CANCEL](cancel.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 269 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/accumulate.md b/versioned_docs/version-20-R7/commands-legacy/accumulate.md index e6d081631b890a..0ea9af4375a99d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/accumulate.md +++ b/versioned_docs/version-20-R7/commands-legacy/accumulate.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **ACCUMULATE** specifies the fields or variables to be accumulated during a form report performed using [PRINT SELECTION](print-selection.md). @@ -37,4 +34,13 @@ See the example for the [BREAK LEVEL](break-level.md) command. [BREAK LEVEL](break-level.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 303 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/action-info.md b/versioned_docs/version-20-R7/commands-legacy/action-info.md index c90f01dc28bb2c..37c9042b81e0dd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/action-info.md +++ b/versioned_docs/version-20-R7/commands-legacy/action-info.md @@ -64,4 +64,13 @@ You want to know if the copy action is available (i.e. if some data is selected) #### See also [INVOKE ACTION](invoke-action.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1442 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/activated.md b/versioned_docs/version-20-R7/commands-legacy/activated.md index 13aa0eb4b3502a..2a100ed6613a0b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/activated.md +++ b/versioned_docs/version-20-R7/commands-legacy/activated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Activated** command (obsolete) returns **True** in a form method when the window containing the form becomes the frontmost window of the frontmost process. @@ -29,4 +26,13 @@ displayed_sidebar: docs #### See also [Deactivated](deactivated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 346 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/active-transaction.md b/versioned_docs/version-20-R7/commands-legacy/active-transaction.md index 5e4bacb390d428..3d4f2cb4f976c8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/active-transaction.md +++ b/versioned_docs/version-20-R7/commands-legacy/active-transaction.md @@ -42,4 +42,13 @@ You want to know the current transaction status: [In transaction](in-transaction.md) [RESUME TRANSACTION](resume-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspending transactions* \ No newline at end of file +*Suspending transactions* + +#### Properties + +| | | +| --- | --- | +| Command number | 1387 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/activity-snapshot.md b/versioned_docs/version-20-R7/commands-legacy/activity-snapshot.md index 11bdb5ce76ea1e..87c171198ed393 100644 --- a/versioned_docs/version-20-R7/commands-legacy/activity-snapshot.md +++ b/versioned_docs/version-20-R7/commands-legacy/activity-snapshot.md @@ -104,3 +104,13 @@ This method, executed in a separate process on 4D or 4D Server, provides a snaps You get arrays such as: ![](../assets/en/commands/pict1213741.en.png) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1277 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/add-record.md b/versioned_docs/version-20-R7/commands-legacy/add-record.md index cd96373218bd72..c4a3a5b28af6c2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/add-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/add-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility *This command was implemented in 4D's early releases and is still useful for prototyping or basic developments. However, to build customized and modern interfaces, it is now recommended to use generic forms based upon the [DIALOG](dialog.md) command which provide advanced features and better control over the data flow.* @@ -91,4 +88,17 @@ Accepting the record sets the OK system variable to 1; canceling it sets the OK [CANCEL](cancel.md) [CREATE RECORD](create-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 56 | +| Thread safe | ✗ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/add-to-date.md b/versioned_docs/version-20-R7/commands-legacy/add-to-date.md index 380d393cd76434..fe891d82fb5d23 100644 --- a/versioned_docs/version-20-R7/commands-legacy/add-to-date.md +++ b/versioned_docs/version-20-R7/commands-legacy/add-to-date.md @@ -35,3 +35,13 @@ Although you can use the [Self](self.md) to add days to a date, **Add to date**   // This line does the same thing as $vdTomorrow:=Current date+1  $vdTomorrow:=Add to date(Current date;0;0;1) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 393 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/add-to-set.md b/versioned_docs/version-20-R7/commands-legacy/add-to-set.md index ef20dab5b32741..f40504d32e4775 100644 --- a/versioned_docs/version-20-R7/commands-legacy/add-to-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/add-to-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### See also -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 119 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md b/versioned_docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md index 13daae65ce0d1c..cd37342f285cc0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md +++ b/versioned_docs/version-20-R7/commands-legacy/adjust-blobs-cache-priority.md @@ -51,4 +51,13 @@ You want to temporarily change the cache priority for the \[Docs\] table text fi #### See also [Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1431 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md b/versioned_docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md index 31626dcbd0f128..caa30ca93c04d6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md +++ b/versioned_docs/version-20-R7/commands-legacy/adjust-index-cache-priority.md @@ -51,4 +51,13 @@ You want to temporarily change the cache priority for the \[Docs\]Comments field #### See also [Get adjusted index cache priority](get-adjusted-index-cache-priority.md) -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1430 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md b/versioned_docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md index 1f06318e492f38..5fee414be2106b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md +++ b/versioned_docs/version-20-R7/commands-legacy/adjust-table-cache-priority.md @@ -49,4 +49,13 @@ You want to temporarily change the cache priority for the \[Docs\] scalar fields #### See also [Get adjusted table cache priority](get-adjusted-table-cache-priority.md) -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1429 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/after.md b/versioned_docs/version-20-R7/commands-legacy/after.md index e21c2e6f13fc34..8610c10ab72bf4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/after.md +++ b/versioned_docs/version-20-R7/commands-legacy/after.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **After** returns True for the After execution cycle. @@ -26,4 +23,13 @@ In order for the **After** execution cycle to be generated, make sure that the O #### See also -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 31 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/alert.md b/versioned_docs/version-20-R7/commands-legacy/alert.md index c464793f0a2c9a..56815e5d366384 100644 --- a/versioned_docs/version-20-R7/commands-legacy/alert.md +++ b/versioned_docs/version-20-R7/commands-legacy/alert.md @@ -66,4 +66,13 @@ displays the alert dialog box (on Windows) shown: [CONFIRM](confirm.md) [DISPLAY NOTIFICATION](display-notification.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 41 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/all-records.md b/versioned_docs/version-20-R7/commands-legacy/all-records.md index c34f7992767626..ac5ae3b6db8b7e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/all-records.md +++ b/versioned_docs/version-20-R7/commands-legacy/all-records.md @@ -33,4 +33,15 @@ The following example displays all the records from the \[People\] table: [ORDER BY](order-by.md) [QUERY](query.md) [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 47 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md b/versioned_docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md index cedf18e97a6d6e..e2671644fd7d54 100644 --- a/versioned_docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md +++ b/versioned_docs/version-20-R7/commands-legacy/append-data-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The APPEND DATA TO PASTEBOARD command appends to the pasteboard the data contained in the BLOB *data* under the data type specified in *dataType*. @@ -217,4 +214,14 @@ If the BLOB data is correctly appended to the pasteboard, OK is set to 1; otherw [CLEAR PASTEBOARD](clear-pasteboard.md) [SET PICTURE TO PASTEBOARD](set-picture-to-pasteboard.md) -[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) \ No newline at end of file +[SET TEXT TO PASTEBOARD](set-text-to-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 403 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/append-document.md b/versioned_docs/version-20-R7/commands-legacy/append-document.md index 4536fa78ca9066..cce75eca2e5323 100644 --- a/versioned_docs/version-20-R7/commands-legacy/append-document.md +++ b/versioned_docs/version-20-R7/commands-legacy/append-document.md @@ -37,4 +37,14 @@ The following example opens an existing document called Note, appends the string #### See also [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 265 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/append-menu-item.md b/versioned_docs/version-20-R7/commands-legacy/append-menu-item.md index 09eb2ac6a6ab44..aaafb6c621e885 100644 --- a/versioned_docs/version-20-R7/commands-legacy/append-menu-item.md +++ b/versioned_docs/version-20-R7/commands-legacy/append-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **APPEND MENU ITEM** command appends new menu items to the menu whose number or reference is passed in *menu*. @@ -81,4 +78,14 @@ Then, in any form or project method, you can write: [DELETE MENU ITEM](delete-menu-item.md) [INSERT MENU ITEM](insert-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 411 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/append-to-array.md b/versioned_docs/version-20-R7/commands-legacy/append-to-array.md index 7ca9b598c0833b..41a112373d89e6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/append-to-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/append-to-array.md @@ -43,4 +43,13 @@ The following code: #### See also [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 911 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/append-to-list.md b/versioned_docs/version-20-R7/commands-legacy/append-to-list.md index e1dd3ee4df37f4..a54c36e3e6dc4e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/append-to-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/append-to-list.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **APPEND TO LIST** command appends a new item to the hierarchical list whose list reference number you pass in *list*. @@ -158,4 +155,13 @@ When the form is executed, the list will look like this: [INSERT IN LIST](insert-in-list.md) [SET LIST ITEM](set-list-item.md) [SET LIST ITEM PARAMETER](set-list-item-parameter.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 376 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/application-file.md b/versioned_docs/version-20-R7/commands-legacy/application-file.md index ced4decb7e6dbe..0af21f91bf46ba 100644 --- a/versioned_docs/version-20-R7/commands-legacy/application-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/application-file.md @@ -16,8 +16,6 @@ displayed_sidebar: docs #### Description The Application file command returns the long name of the 4D executable file or application you are running. - -*On Windows* If, for example, you are running 4D located at \\PROGRAMS\\4D on the volume E, the command returns E:\\PROGRAMS\\4D\\4D.EXE. *On Macintosh* @@ -40,4 +38,13 @@ At startup on Windows, you need to check if a DLL Library is correctly located a #### See also [Data file](data-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 491 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/application-info.md b/versioned_docs/version-20-R7/commands-legacy/application-info.md index aa3d2b119608dc..6b9c3a139bb20f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/application-info.md +++ b/versioned_docs/version-20-R7/commands-legacy/application-info.md @@ -130,4 +130,13 @@ If the code is executed on 4D Server, the object contains (for example): [Execute on server](execute-on-server.md) [Get database parameter](get-database-parameter.md) [System info](system-info.md) -[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) \ No newline at end of file +[REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1599 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/application-type.md b/versioned_docs/version-20-R7/commands-legacy/application-type.md index d53a92076f7f82..4c66df50bc3b82 100644 --- a/versioned_docs/version-20-R7/commands-legacy/application-type.md +++ b/versioned_docs/version-20-R7/commands-legacy/application-type.md @@ -41,4 +41,13 @@ Somewhere in your code, other than in the *On Server Startup Database Method*, y #### See also [Application version](application-version.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 494 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/application-version.md b/versioned_docs/version-20-R7/commands-legacy/application-version.md index b78c9816d72ebb..383854edc90932 100644 --- a/versioned_docs/version-20-R7/commands-legacy/application-version.md +++ b/versioned_docs/version-20-R7/commands-legacy/application-version.md @@ -118,4 +118,13 @@ You want to use the application's short version value returned by the command to #### See also [Application type](application-type.md) -[Version type](version-type.md) \ No newline at end of file +[Version type](version-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 493 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/apply-to-selection.md b/versioned_docs/version-20-R7/commands-legacy/apply-to-selection.md index 3ce41856db89b0..47f6d8bcd2c845 100644 --- a/versioned_docs/version-20-R7/commands-legacy/apply-to-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/apply-to-selection.md @@ -61,4 +61,14 @@ If the user clicks the Stop button in the progress thermometer, the OK system va #### See also [EDIT FORMULA](edit-formula.md) -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 70 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/arctan.md b/versioned_docs/version-20-R7/commands-legacy/arctan.md index 320d8473e448c6..3c820fbd8bef67 100644 --- a/versioned_docs/version-20-R7/commands-legacy/arctan.md +++ b/versioned_docs/version-20-R7/commands-legacy/arctan.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -Arctan returns the angle, expressed in radians, of the tangent *number*. - -**Note:** 4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). +Arctan returns the angle, expressed in radians, of the tangent *number*.4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). #### Example @@ -32,4 +30,13 @@ The following example shows the value of Pi: [Cos](cos.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 20 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-blob.md b/versioned_docs/version-20-R7/commands-legacy/array-blob.md index d6965c892f2854..72f6449bfb480d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-blob.md @@ -59,4 +59,13 @@ This example creates a local array of 100 rows each containing 50 BLOB-type elem #### See also -*Creating Arrays* \ No newline at end of file +*Creating Arrays* + +#### Properties + +| | | +| --- | --- | +| Command number | 1222 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-boolean.md b/versioned_docs/version-20-R7/commands-legacy/array-boolean.md index c5e220cdaf5b56..5da3f989fcdcd1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-boolean.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-boolean.md @@ -61,4 +61,13 @@ This example creates an interprocess array of 50 Boolean elements and sets each #### See also -[ARRAY INTEGER](array-integer.md) \ No newline at end of file +[ARRAY INTEGER](array-integer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 223 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-date.md b/versioned_docs/version-20-R7/commands-legacy/array-date.md index 4f36cc9d2eac90..ed75277ab2e49f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-date.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-date.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The ARRAY DATE command creates and/or resizes an array of [Date](# "In the range of 1/1/100 to 12/31/32,767") elements in memory. - -* The *arrayName* parameter is the name of the array. +The ARRAY DATE command creates and/or resizes an array of [Date](# "In the range of 1/1/100 to 12/31/32,767") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array. * The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the first dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. @@ -54,3 +52,13 @@ This example creates an interprocess array of 50 Date elements, and sets each el     ◊adValues{$vlElem}:=Current date+$vlElem  End for ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 224 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-integer.md b/versioned_docs/version-20-R7/commands-legacy/array-integer.md index 798b981e842610..68d065fef40a96 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-integer.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-integer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The ARRAY INTEGER command creates and/or resizes an array of 2-byte [Integer](# "Number between -32,768..32,767 (2^15..(2^15)-1) (2-byte integer)") elements in memory. - -* The *arrayName* parameter is the name of the array. +The ARRAY INTEGER command creates and/or resizes an array of 2-byte [Integer](# "Number between -32,768..32,767 (2^15..(2^15)-1) (2-byte integer)") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array. * The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the first dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. @@ -58,4 +56,13 @@ This example creates an interprocess array of 50 2-byte [Integer](# "Number betw #### See also [ARRAY LONGINT](array-longint.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 220 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-longint.md b/versioned_docs/version-20-R7/commands-legacy/array-longint.md index 53060c59aac693..1b9ee72d72fc3a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-longint.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-longint.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The ARRAY LONGINT command creates and/or resizes an array of 4-byte [Longint](# "Number between -2^31..(2^31)-1 (4-byte Integer)") elements in memory. - -* The *arrayName* parameter is the name of the array. +The ARRAY LONGINT command creates and/or resizes an array of 4-byte [Longint](# "Number between -2^31..(2^31)-1 (4-byte Integer)") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array. * The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the first dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. @@ -58,4 +56,13 @@ This example creates an interprocess array of 50 4-byte Long Integer elements an #### See also [ARRAY INTEGER](array-integer.md) -[ARRAY REAL](array-real.md) \ No newline at end of file +[ARRAY REAL](array-real.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 221 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-object.md b/versioned_docs/version-20-R7/commands-legacy/array-object.md index 03926b5ae8c691..6a4a501bb50809 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-object.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-object.md @@ -67,4 +67,13 @@ Creation and filling of a local object array: #### See also *Creating Arrays* -*Objects (Language)* \ No newline at end of file +*Objects (Language)* + +#### Properties + +| | | +| --- | --- | +| Command number | 1221 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-picture.md b/versioned_docs/version-20-R7/commands-legacy/array-picture.md index d793cff85a0303..09e3b441a3e1a7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-picture.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The ARRAY PICTURE command creates and/or resizes an array of [Picture](# "Can be any Windows or Macintosh picture") elements in memory. - -* The *arrayName* parameter is the name of the array. +The ARRAY PICTURE command creates and/or resizes an array of [Picture](# "Can be any Windows or Macintosh picture") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array.The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the first dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. While applying to an existing array: @@ -60,3 +58,13 @@ This example creates an interprocess array of [Picture](# "Can be any Windows or  End for  ARRAY PICTURE(◊agValues;$vlPictElem) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 279 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-pointer.md b/versioned_docs/version-20-R7/commands-legacy/array-pointer.md index 68f340f6e9684d..98b6358d202bb6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-pointer.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-pointer.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **ARRAY POINTER** command creates or resizes an array of [Pointer](# "A reference to another variable (including arrays and array elements), table, or field") elements in memory. - -* The *arrayName* parameter is the name of the array. +The **ARRAY POINTER** command creates or resizes an array of [Pointer](# "A reference to another variable (including arrays and array elements), table, or field") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array. * The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the firt dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. @@ -56,3 +54,13 @@ This example creates an interprocess array of [Pointer](# "A reference to anothe     End if  End for ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 280 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-real.md b/versioned_docs/version-20-R7/commands-legacy/array-real.md index 351e4d4c2dc938..dbcec076da4289 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-real.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-real.md @@ -58,4 +58,13 @@ This example creates an interprocess array of 50 Real elements and sets each ele #### See also [ARRAY INTEGER](array-integer.md) -[ARRAY LONGINT](array-longint.md) \ No newline at end of file +[ARRAY LONGINT](array-longint.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 219 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-text.md b/versioned_docs/version-20-R7/commands-legacy/array-text.md index 4e73032e807c68..3f835e1bfbaaab 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-text.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The ARRAY TEXT command creates and/or resizes an array of [Text](# "A character string that may contain from 0 to 2 GB of text") elements in memory. - -* The *arrayName* parameter is the name of the array. +The ARRAY TEXT command creates and/or resizes an array of [Text](# "A character string that may contain from 0 to 2 GB of text") elements in memory.parameter is the name of the array. * The *size* parameter is the number of elements in the array. * The *size2* parameter is optional; if *size2* is specified, the command creates a two-dimensional array. In this case, *size* specifies the number of rows and *size2* specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the first dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array. @@ -55,3 +53,13 @@ This example creates an interprocess array of 50 [Text](# "A character string th  End for ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 222 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-time.md b/versioned_docs/version-20-R7/commands-legacy/array-time.md index e6e75bd73333e5..263969fc68d006 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-time.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-time.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **ARRAY TIME** command creates and/or resizes an array of Time type elements in memory. - -**Reminder:** In 4D, times can be processed as numeric values. In 4D versions prior to v14, you had to combine a longint array with a display format in order to manage an array of times. +The **ARRAY TIME** command creates and/or resizes an array of Time type elements in memory.In 4D, times can be processed as numeric values. In 4D versions prior to v14, you had to combine a longint array with a display format in order to manage an array of times. The *arrayName* parameter is the name of the array. @@ -64,4 +62,13 @@ Since time arrays accept numeric values, the following code is valid: #### See also *Creating Arrays* -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1223 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-to-collection.md b/versioned_docs/version-20-R7/commands-legacy/array-to-collection.md index 6a5e9b211514cc..c6a01d15d4945e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-to-collection.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-to-collection.md @@ -81,4 +81,13 @@ You want to copy a text array in a shared collection: #### See also [COLLECTION TO ARRAY](collection-to-array.md) -*Type conversions between collections and 4D arrays* \ No newline at end of file +*Type conversions between collections and 4D arrays* + +#### Properties + +| | | +| --- | --- | +| Command number | 1563 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-to-list.md b/versioned_docs/version-20-R7/commands-legacy/array-to-list.md index 01826fe8d3fdac..291874b7bd664d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-to-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-to-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ARRAY TO LIST command creates or replaces the hierarchical list or the choice list (created in the List editor) that is specified in *list* using the elements of the array *array.* @@ -62,4 +59,14 @@ An error *\-9957* is generated when ARRAY TO LIST is applied to a list that is c [LIST TO ARRAY](list-to-array.md) [Load list](load-list.md) [ON ERR CALL](on-err-call.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 287 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/array-to-selection.md b/versioned_docs/version-20-R7/commands-legacy/array-to-selection.md index 52cdd86608b203..4673985f09ff34 100644 --- a/versioned_docs/version-20-R7/commands-legacy/array-to-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/array-to-selection.md @@ -79,4 +79,14 @@ You want to copy a selection of records to an archive table by selecting the fie #### See also [SELECTION TO ARRAY](selection-to-array.md) -*System Variables* \ No newline at end of file +*System Variables* + +#### Properties + +| | | +| --- | --- | +| Command number | 261 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/assert.md b/versioned_docs/version-20-R7/commands-legacy/assert.md index 0d06b5ce490a0a..387a0a847cebc8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/assert.md +++ b/versioned_docs/version-20-R7/commands-legacy/assert.md @@ -52,4 +52,14 @@ An assertion can allow parameters passed to a project method to be tested in ord [Asserted](asserted.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1129 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/asserted.md b/versioned_docs/version-20-R7/commands-legacy/asserted.md index ac5180db0b0d8a..66ceec8f393acc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/asserted.md +++ b/versioned_docs/version-20-R7/commands-legacy/asserted.md @@ -40,4 +40,14 @@ Insertion of an assertion in the evaluation of an expression: [ASSERT](assert.md) [Get assert enabled](get-assert-enabled.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1132 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/average.md b/versioned_docs/version-20-R7/commands-legacy/average.md index 49bd8d16799fdb..68e2869e17faf7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/average.md +++ b/versioned_docs/version-20-R7/commands-legacy/average.md @@ -88,4 +88,14 @@ You can perform the following computations: [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) [Subtotal](subtotal.md) -[Sum](sum.md) \ No newline at end of file +[Sum](sum.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 2 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/backup-info.md b/versioned_docs/version-20-R7/commands-legacy/backup-info.md index 81693c6636872f..747759be8ea049 100644 --- a/versioned_docs/version-20-R7/commands-legacy/backup-info.md +++ b/versioned_docs/version-20-R7/commands-legacy/backup-info.md @@ -30,4 +30,13 @@ Pass the type of information to get in *selector*. The type and content of the * #### See also -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 888 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/backup.md b/versioned_docs/version-20-R7/commands-legacy/backup.md index b129ba3848c5d5..646b8f934a3510 100644 --- a/versioned_docs/version-20-R7/commands-legacy/backup.md +++ b/versioned_docs/version-20-R7/commands-legacy/backup.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The BACKUP command starts the backup of the database using the current backup settings. No confirmation dialog is displayed; however, a progress bar appears on screen. @@ -39,4 +36,14 @@ If an incident occurs during backup, information about the incident is written i [BACKUP INFO](backup-info.md) *On Backup Startup Database Method* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 887 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/base64-decode.md b/versioned_docs/version-20-R7/commands-legacy/base64-decode.md index df567fbc477cc5..bf6ff7fabda83c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/base64-decode.md +++ b/versioned_docs/version-20-R7/commands-legacy/base64-decode.md @@ -54,4 +54,13 @@ This example lets you transfer a picture via a BLOB: [BASE64 ENCODE](base64-encode.md) [Generate digest](generate-digest.md) *Overview of XML DOM Commands* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 896 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/base64-encode.md b/versioned_docs/version-20-R7/commands-legacy/base64-encode.md index 208ad9edab28ba..c96a08865eb592 100644 --- a/versioned_docs/version-20-R7/commands-legacy/base64-encode.md +++ b/versioned_docs/version-20-R7/commands-legacy/base64-encode.md @@ -37,4 +37,13 @@ By default if the *\** parameter is omitted, the command uses a Base64 encoding. [BASE64 DECODE](base64-decode.md) [Generate digest](generate-digest.md) *Overview of XML DOM Commands* -[XML DECODE](xml-decode.md) \ No newline at end of file +[XML DECODE](xml-decode.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 895 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/beep.md b/versioned_docs/version-20-R7/commands-legacy/beep.md index 86008158323cae..b633715e04f86e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/beep.md +++ b/versioned_docs/version-20-R7/commands-legacy/beep.md @@ -32,4 +32,13 @@ In the following example, if no records are found by the query, a beep is emitte #### See also -[PLAY](play.md) \ No newline at end of file +[PLAY](play.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 151 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/before-selection.md b/versioned_docs/version-20-R7/commands-legacy/before-selection.md index 08f0371dc1aa3f..f07c9e3d9c3423 100644 --- a/versioned_docs/version-20-R7/commands-legacy/before-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/before-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**Before selection** returns TRUE when the current record pointer is before the first record of the current selection of *table*.**Before selection** is commonly used to check whether or not [PREVIOUS RECORD](previous-record.md) has moved the current record pointer before the first record. If the current selection is empty, **Before selection** returns TRUE. +**Before selection** returns TRUE when the current record pointer is before the first record of the current selection of *table*.is commonly used to check whether or not [PREVIOUS RECORD](previous-record.md) has moved the current record pointer before the first record. If the current selection is empty, **Before selection** returns TRUE. To move the current record pointer back into the selection, use [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) or [GOTO SELECTED RECORD](goto-selected-record.md). [NEXT RECORD](next-record.md) does not move the pointer back into the selection. @@ -61,4 +61,13 @@ This form method is used during the printing of a report. It sets a variable, *v [FIRST RECORD](first-record.md) [Form event code](../commands/form-event-code.md) [PREVIOUS RECORD](previous-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 198 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/before.md b/versioned_docs/version-20-R7/commands-legacy/before.md index 94a080a68f6b82..f79806c802c05b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/before.md +++ b/versioned_docs/version-20-R7/commands-legacy/before.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Before** returns True for the Before execution cycle. @@ -26,4 +23,13 @@ In order for the **Before** execution cycle to be generated, make sure that the #### See also -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 29 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/begin-sql.md b/versioned_docs/version-20-R7/commands-legacy/begin-sql.md index be37b5a6d60469..287a38e7a6473f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/begin-sql.md +++ b/versioned_docs/version-20-R7/commands-legacy/begin-sql.md @@ -44,4 +44,13 @@ Note that the 4D *Debugger* will evaluate the SQL code line by line. In certain [End SQL](end-sql.md) [SQL Get current data source](sql-get-current-data-source.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 948 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-properties.md b/versioned_docs/version-20-R7/commands-legacy/blob-properties.md index a8be6e2a53542d..496976d9a8999e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-properties.md @@ -77,4 +77,13 @@ After this method has been added to your application, you can use it this way: #### See also [COMPRESS BLOB](compress-blob.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 536 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-size.md b/versioned_docs/version-20-R7/commands-legacy/blob-size.md index 602287a851ac0a..5fb761f622e659 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-size.md @@ -28,4 +28,13 @@ The line of code adds 100 bytes to the BLOB *myBlob*: #### See also -[SET BLOB SIZE](set-blob-size.md) \ No newline at end of file +[SET BLOB SIZE](set-blob-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 605 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-to-document.md b/versioned_docs/version-20-R7/commands-legacy/blob-to-document.md index 7ba1c4b8c01db6..90594d7167f3e8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-to-document.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-to-document.md @@ -49,4 +49,14 @@ In all cases, you can trap the error using an [ON ERR CALL](on-err-call.md) inte [Create document](create-document.md) [DOCUMENT TO BLOB](document-to-blob.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 526 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-to-integer.md b/versioned_docs/version-20-R7/commands-legacy/blob-to-integer.md index 89d6089bd5e639..b714c744b89935 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-to-integer.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-to-integer.md @@ -57,4 +57,13 @@ The following example reads 20 Integer values from a BLOB, starting at the offse [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 549 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-to-list.md b/versioned_docs/version-20-R7/commands-legacy/blob-to-list.md index 19540f24125d06..e8ba4019062011 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-to-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-to-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The BLOB to list command creates a new hierarchical list with the data stored within the BLOB *blob* at the byte offset (starting at zero) specified by *offset* and returns a List Reference number for that new list. @@ -61,4 +58,14 @@ The OK variable is set to 1 if the list has been successfully created, otherwise #### See also -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 557 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-to-longint.md b/versioned_docs/version-20-R7/commands-legacy/blob-to-longint.md index 245146134f60ef..a5c0090f3c9e86 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-to-longint.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-to-longint.md @@ -57,4 +57,13 @@ The following example reads 20 Long Integer values from a BLOB, starting at the [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 551 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-to-picture.md b/versioned_docs/version-20-R7/commands-legacy/blob-to-picture.md index 88068b5b77a4f9..4683a84d510728 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-to-picture.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-to-picture.md @@ -50,4 +50,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. [PICTURE CODEC LIST](picture-codec-list.md) [PICTURE TO BLOB](picture-to-blob.md) -[READ PICTURE FILE](read-picture-file.md) \ No newline at end of file +[READ PICTURE FILE](read-picture-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 682 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-to-print-settings.md b/versioned_docs/version-20-R7/commands-legacy/blob-to-print-settings.md index 1561fc2ba74608..a7616f0d77997e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-to-print-settings.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-to-print-settings.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **BLOB to print settings** command replaces the current 4D print settings with the parameters stored in the *printSettings* BLOB. This BLOB must have been generated by the [Print settings to BLOB](print-settings-to-blob.md) command or the 4D Pack command (see below). @@ -76,4 +73,13 @@ You want to apply print settings previously saved to disk to the current 4D prin #### See also -[Print settings to BLOB](print-settings-to-blob.md) \ No newline at end of file +[Print settings to BLOB](print-settings-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1434 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-to-real.md b/versioned_docs/version-20-R7/commands-legacy/blob-to-real.md index b2251df3fefee9..cf611dd76c512c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-to-real.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-to-real.md @@ -58,4 +58,13 @@ The following example reads 20 Real values from a BLOB, starting at the offset 0 [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 553 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-to-text.md b/versioned_docs/version-20-R7/commands-legacy/blob-to-text.md index f500a7cb1c1dcf..ed14726ec9fcf7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-to-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-to-text.md @@ -59,4 +59,13 @@ After the call, the variable is incremented by the number of bytes read. Therefo [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 555 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-to-users.md b/versioned_docs/version-20-R7/commands-legacy/blob-to-users.md index 7bf3414333d40e..2ea0b246814a62 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-to-users.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-to-users.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The BLOB TO USERS command replaces the user accounts and groups found in the BLOB *users* in the current database. The BLOB *users* is encrypted and must have been created using the [USERS TO BLOB](users-to-blob.md) command. @@ -48,4 +45,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[USERS TO BLOB](users-to-blob.md) \ No newline at end of file +[USERS TO BLOB](users-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 850 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/blob-to-variable.md b/versioned_docs/version-20-R7/commands-legacy/blob-to-variable.md index dffb2431db78ae..81c4bcd55ae5e0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/blob-to-variable.md +++ b/versioned_docs/version-20-R7/commands-legacy/blob-to-variable.md @@ -40,4 +40,14 @@ The OK variable is set to 1 if the variable has been successfully rewritten, oth #### See also -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 533 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/bool.md b/versioned_docs/version-20-R7/commands-legacy/bool.md index fa9d31851bd688..03fbfc48824a79 100644 --- a/versioned_docs/version-20-R7/commands-legacy/bool.md +++ b/versioned_docs/version-20-R7/commands-legacy/bool.md @@ -46,4 +46,13 @@ You select a value depending on the contents of an object field attribute, antic [Date](date.md) [Num](num.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1537 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/boolean-array-from-set.md b/versioned_docs/version-20-R7/commands-legacy/boolean-array-from-set.md index 67aea24d4d0d9b..5395046cd4acdf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/boolean-array-from-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/boolean-array-from-set.md @@ -31,4 +31,13 @@ If you don’t pass the *set* parameter, the command will use UserSet in the cur #### See also -[CREATE SET FROM ARRAY](create-set-from-array.md) \ No newline at end of file +[CREATE SET FROM ARRAY](create-set-from-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 646 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/break-level.md b/versioned_docs/version-20-R7/commands-legacy/break-level.md index 632e7684aefd61..b6eda4255395de 100644 --- a/versioned_docs/version-20-R7/commands-legacy/break-level.md +++ b/versioned_docs/version-20-R7/commands-legacy/break-level.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **BREAK LEVEL** specifies the number of break levels in a report performed using [PRINT SELECTION](print-selection.md). @@ -46,4 +43,13 @@ The following example prints a report with two break levels. The selection is so [ACCUMULATE](accumulate.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 302 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/bring-to-front.md b/versioned_docs/version-20-R7/commands-legacy/bring-to-front.md index fa42372c5812e8..a53ae3b516c523 100644 --- a/versioned_docs/version-20-R7/commands-legacy/bring-to-front.md +++ b/versioned_docs/version-20-R7/commands-legacy/bring-to-front.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **BRING TO FRONT** brings all the windows belonging to *process* to the front. If the process is already the frontmost process, the command does nothing. If the process is hidden, you must use [SHOW PROCESS](show-process.md) to display the process, otherwise **BRING TO FRONT** has no effect. @@ -38,4 +35,13 @@ The following example is a method that can be executed from a menu. It checks to [HIDE PROCESS](hide-process.md) [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 326 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/build-application.md b/versioned_docs/version-20-R7/commands-legacy/build-application.md index 9e67f5f1a744ef..f1939fe574f983 100644 --- a/versioned_docs/version-20-R7/commands-legacy/build-application.md +++ b/versioned_docs/version-20-R7/commands-legacy/build-application.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The BUILD APPLICATION command launches the application generation process. It takes into account parameters set in the current build application settings file or the settings file set in the *buildAppSettings* parameter. @@ -53,4 +50,15 @@ If the command fails, an error is generated that you can intercept using the [ON #### See also -[Compile project](compile-project.md) \ No newline at end of file +[Compile project](compile-project.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 871 | +| Thread safe | ✗ | +| Modifies variables | OK, Document, error | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/cache-info.md b/versioned_docs/version-20-R7/commands-legacy/cache-info.md index 10f9a80eb4ff81..bd8e54807473e0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/cache-info.md +++ b/versioned_docs/version-20-R7/commands-legacy/cache-info.md @@ -52,4 +52,13 @@ You want to get cache information for the database and all opened components: #### See also -[MEMORY STATISTICS](memory-statistics.md) \ No newline at end of file +[MEMORY STATISTICS](memory-statistics.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1402 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/call-chain.md b/versioned_docs/version-20-R7/commands-legacy/call-chain.md index 85805d57ab6efc..c7fab1acd6dcc7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/call-chain.md +++ b/versioned_docs/version-20-R7/commands-legacy/call-chain.md @@ -48,3 +48,13 @@ If a form object method is executed, the call chain could contain (for example): ```json [   {    "type":"formObjectMethod",    "name":"detailForm.Button",    "line":1,    "database":"myDatabase"   },   {    "type":"formMethod",    "name”:"detailForm",    "line":2,    "database":"myDatabase"   },   {    "type":"projectMethod",    "name”:"showDetailForm",    "line":2,    "database":"myDatabase”   }] ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1662 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/call-form.md b/versioned_docs/version-20-R7/commands-legacy/call-form.md index bd6d392adbf95a..343bbed3f75d00 100644 --- a/versioned_docs/version-20-R7/commands-legacy/call-form.md +++ b/versioned_docs/version-20-R7/commands-legacy/call-form.md @@ -100,4 +100,13 @@ You can then add other messages by executing the **CALL FORM** command again: [CALL WORKER](call-worker.md) -[DIALOG](dialog.md) \ No newline at end of file +[DIALOG](dialog.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1391 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/call-subform-container.md b/versioned_docs/version-20-R7/commands-legacy/call-subform-container.md index 20cfa403a186a4..dba15443264881 100644 --- a/versioned_docs/version-20-R7/commands-legacy/call-subform-container.md +++ b/versioned_docs/version-20-R7/commands-legacy/call-subform-container.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The CALL SUBFORM CONTAINER command lets a subform instance send the *event* to the subform object that contains it. The subform object can then process the *event* in the context of the parent form. @@ -31,4 +28,13 @@ In *event*, you can pass any predefined form event of 4D (you can use the consta #### See also [Form event code](../commands/form-event-code.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1086 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/call-worker.md b/versioned_docs/version-20-R7/commands-legacy/call-worker.md index 47434398e0028c..1ba538387ff171 100644 --- a/versioned_docs/version-20-R7/commands-legacy/call-worker.md +++ b/versioned_docs/version-20-R7/commands-legacy/call-worker.md @@ -75,4 +75,13 @@ The code of *workerMethod* is: *About workers* [CALL FORM](call-form.md) [Current process name](current-process-name.md) -[KILL WORKER](kill-worker.md) \ No newline at end of file +[KILL WORKER](kill-worker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1389 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/cancel-transaction.md b/versioned_docs/version-20-R7/commands-legacy/cancel-transaction.md index 0573919398b863..70649ef0719de3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/cancel-transaction.md +++ b/versioned_docs/version-20-R7/commands-legacy/cancel-transaction.md @@ -14,7 +14,7 @@ displayed_sidebar: docs #### Description -**CANCEL TRANSACTION** cancels the transaction that was started with [START TRANSACTION](start-transaction.md) of the corresponding level in the current process. **CANCEL TRANSACTION** cancels the operations executed on the data and stored during the transaction. +**CANCEL TRANSACTION** cancels the transaction that was started with [START TRANSACTION](start-transaction.md) of the corresponding level in the current process.cancels the operations executed on the data and stored during the transaction. **Note:** **CANCEL TRANSACTION** does not have an effect on any changes made in the current records that were not saved - they remain displayed after the command is executed. @@ -24,4 +24,13 @@ displayed_sidebar: docs [START TRANSACTION](start-transaction.md) [Transaction level](transaction-level.md) *Using Transactions* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 241 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/cancel.md b/versioned_docs/version-20-R7/commands-legacy/cancel.md index 8aacfac5fb3449..94f22282173e5d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/cancel.md +++ b/versioned_docs/version-20-R7/commands-legacy/cancel.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CANCEL** command is used in form or object methods (or in a subroutine) to: @@ -52,4 +49,14 @@ When the [CANCEL](cancel.md) command is executed (form or printing cancelled), t [ACCEPT](accept.md) [PAGE BREAK](page-break.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 270 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/caps-lock-down.md b/versioned_docs/version-20-R7/commands-legacy/caps-lock-down.md index 9ea86146281301..1fc911bbdc833a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/caps-lock-down.md +++ b/versioned_docs/version-20-R7/commands-legacy/caps-lock-down.md @@ -28,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 547 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/change-current-user.md b/versioned_docs/version-20-R7/commands-legacy/change-current-user.md index cd75ea2d8d54ae..3c1d1b9d75004e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/change-current-user.md +++ b/versioned_docs/version-20-R7/commands-legacy/change-current-user.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **CHANGE CURRENT USER** changes the identity of the current user in the database, without needing to quit. The user can change their identity themselves either using the database connection dialog box (when the command is called without parameters) or directly via the command. When a user changes their identity, they abandon any former access privileges in favor of those belonging to the chosen user. @@ -68,4 +65,13 @@ The following example simply displays the connection dialog box: #### See also [CHANGE PASSWORD](change-password.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 289 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/change-licenses.md b/versioned_docs/version-20-R7/commands-legacy/change-licenses.md index acd54d02a05356..fe59175a07ca1b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/change-licenses.md +++ b/versioned_docs/version-20-R7/commands-legacy/change-licenses.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The CHANGE LICENSES command displays the 4D License Manager dialog box. @@ -41,4 +38,14 @@ This way a user can activate licenses without having to modify the database. #### See also [License info](../commands/license-info.md) -[Is license available](is-license-available.md) \ No newline at end of file +[Is license available](is-license-available.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 637 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/change-password.md b/versioned_docs/version-20-R7/commands-legacy/change-password.md index f45fad174003a8..fd7c1e17245da9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/change-password.md +++ b/versioned_docs/version-20-R7/commands-legacy/change-password.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description CHANGE PASSWORD changes the password of the current user. This command replaces the current password with the new password you pass in *password*. @@ -44,4 +41,13 @@ The following example allows the user to change his or her password. #### See also [CHANGE CURRENT USER](change-current-user.md) -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 186 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/change-string.md b/versioned_docs/version-20-R7/commands-legacy/change-string.md index 5d9ff093c89777..d4312ece15fc1e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/change-string.md +++ b/versioned_docs/version-20-R7/commands-legacy/change-string.md @@ -37,4 +37,13 @@ The following example illustrates the use of **Change string**. The results are [Delete string](delete-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 234 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/char.md b/versioned_docs/version-20-R7/commands-legacy/char.md index b25b83316e042d..0fbca433e651e5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/char.md +++ b/versioned_docs/version-20-R7/commands-legacy/char.md @@ -34,4 +34,13 @@ The following example uses **Char** to insert a carriage return within the text [Character code](character-code.md) *Character Reference Symbols* -*Unicode Codes* \ No newline at end of file +*Unicode Codes* + +#### Properties + +| | | +| --- | --- | +| Command number | 90 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/character-code.md b/versioned_docs/version-20-R7/commands-legacy/character-code.md index 60d788cebe47cf..9a25e76ddfb85f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/character-code.md +++ b/versioned_docs/version-20-R7/commands-legacy/character-code.md @@ -82,4 +82,13 @@ The second piece of code runs faster for two reasons: it does only one character #### See also [Char](char.md) -*Character Reference Symbols* \ No newline at end of file +*Character Reference Symbols* + +#### Properties + +| | | +| --- | --- | +| Command number | 91 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/check-log-file.md b/versioned_docs/version-20-R7/commands-legacy/check-log-file.md index 11bdfe9f4aaf40..4dee1881affba6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/check-log-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/check-log-file.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CHECK LOG FILE** command displays the dialog box for viewing the current log file of the database (which can also be accessed via the Maintenance Security Center window): @@ -36,4 +33,14 @@ You can intercept these errors using an error-handling method installed with the #### See also *Backup Manager Errors (1401 -> 1421)* -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 799 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/choose.md b/versioned_docs/version-20-R7/commands-legacy/choose.md index e40a22a6a103de..32df14da531696 100644 --- a/versioned_docs/version-20-R7/commands-legacy/choose.md +++ b/versioned_docs/version-20-R7/commands-legacy/choose.md @@ -78,3 +78,13 @@ This code is strictly equivalent to:        vStatus:="Divorced"  End case ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 955 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/clear-list.md b/versioned_docs/version-20-R7/commands-legacy/clear-list.md index cba336166d9903..9536c7118b7600 100644 --- a/versioned_docs/version-20-R7/commands-legacy/clear-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/clear-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CLEAR LIST** command deletes the hierarchical list whose list reference number you pass in *list*. @@ -54,4 +51,13 @@ See example for the [BLOB to list](blob-to-list.md) command. [BLOB to list](blob-to-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 377 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/clear-named-selection.md b/versioned_docs/version-20-R7/commands-legacy/clear-named-selection.md index 88f5bc2a92bd8d..34456b0641d6b5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/clear-named-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/clear-named-selection.md @@ -23,4 +23,13 @@ If *name* was created using the [CUT NAMED SELECTION](cut-named-selection.md) co [COPY NAMED SELECTION](copy-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 333 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/clear-pasteboard.md b/versioned_docs/version-20-R7/commands-legacy/clear-pasteboard.md index 58ca44983883eb..4cb6df7883d23c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/clear-pasteboard.md +++ b/versioned_docs/version-20-R7/commands-legacy/clear-pasteboard.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The CLEAR PASTEBOARD command clears the pasteboard of all its contents. If the pasteboard contains multiple instances of the same data, all instances are cleared. After a call to CLEAR PASTEBOARD, the pasteboard is empty. @@ -41,4 +38,13 @@ See example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) co #### See also -[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) \ No newline at end of file +[APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 402 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/clear-semaphore.md b/versioned_docs/version-20-R7/commands-legacy/clear-semaphore.md index 780703cb70bef9..db38012bdf9b8f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/clear-semaphore.md +++ b/versioned_docs/version-20-R7/commands-legacy/clear-semaphore.md @@ -27,4 +27,13 @@ See the example for [Semaphore](semaphore.md). [Semaphore](semaphore.md) *Semaphores and signals* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 144 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/clear-set.md b/versioned_docs/version-20-R7/commands-legacy/clear-set.md index 7351845658abeb..da6694067c9658 100644 --- a/versioned_docs/version-20-R7/commands-legacy/clear-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/clear-set.md @@ -25,4 +25,13 @@ See the example for [USE SET](use-set.md). [CREATE EMPTY SET](create-empty-set.md) [CREATE SET](create-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 117 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/clear-variable.md b/versioned_docs/version-20-R7/commands-legacy/clear-variable.md index 807986d7ef0df3..b56cf825131540 100644 --- a/versioned_docs/version-20-R7/commands-legacy/clear-variable.md +++ b/versioned_docs/version-20-R7/commands-legacy/clear-variable.md @@ -43,4 +43,13 @@ In a form, you are using the drop-down list *asMyDropDown* whose sole purpose is #### See also -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 89 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/clickcount.md b/versioned_docs/version-20-R7/commands-legacy/clickcount.md index 6f1966d1c35771..f8c25b35cceb50 100644 --- a/versioned_docs/version-20-R7/commands-legacy/clickcount.md +++ b/versioned_docs/version-20-R7/commands-legacy/clickcount.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Clickcount** command returns, in the context of a mouse click event, the number of times the user has clicked in rapid succession with the same mouse button. Typically, this command returns 2 for a double-click. @@ -61,3 +58,13 @@ Labels are not enterable but they become so after a triple-click. If you want to     End case  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1332 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/close-document.md b/versioned_docs/version-20-R7/commands-legacy/close-document.md index a0104b8ca24a39..7d5f2ab46591d9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/close-document.md +++ b/versioned_docs/version-20-R7/commands-legacy/close-document.md @@ -36,4 +36,13 @@ The following example lets the user create a new document, writes the string “ [Append document](append-document.md) [Create document](create-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 267 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/close-printing-job.md b/versioned_docs/version-20-R7/commands-legacy/close-printing-job.md index 09323735bd9799..632f462cf02c7a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/close-printing-job.md +++ b/versioned_docs/version-20-R7/commands-legacy/close-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CLOSE PRINTING JOB** command closes the print job previously opened by the [OPEN PRINTING JOB](open-printing-job.md) command and sends any printing document that has been assembled to the current printer. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### See also -[OPEN PRINTING JOB](open-printing-job.md) \ No newline at end of file +[OPEN PRINTING JOB](open-printing-job.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 996 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/close-resource-file.md b/versioned_docs/version-20-R7/commands-legacy/close-resource-file.md index d7fa02d4ad59ca..e9ad4713fedbad 100644 --- a/versioned_docs/version-20-R7/commands-legacy/close-resource-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/close-resource-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CLOSE RESOURCE FILE** command closes the resource file whose reference number is passed in *resFile*. @@ -30,4 +27,13 @@ Remember to eventually call **CLOSE RESOURCE FILE** for a resource file that you #### See also -[Open resource file](open-resource-file.md) \ No newline at end of file +[Open resource file](open-resource-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 498 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/close-window.md b/versioned_docs/version-20-R7/commands-legacy/close-window.md index c71bab942a1b0b..c059573206d0a2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/close-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/close-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **CLOSE WINDOW** closes the active window opened by the [Open window](open-window.md) or [Open form window](open-form-window.md) command in the current process. **CLOSE WINDOW** has no effect if a custom window is not open; it does not close system windows. **CLOSE WINDOW** also has no effect if called while a form is active in the window. You must call **CLOSE WINDOW** when you are done using a window opened by [Open window](open-window.md) or [Open form window](open-form-window.md). @@ -40,4 +37,13 @@ The following example opens a form window and adds new records with the [ADD REC #### See also [Open form window](open-form-window.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 154 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/collection-to-array.md b/versioned_docs/version-20-R7/commands-legacy/collection-to-array.md index a4c061395743fe..570e6972da4b97 100644 --- a/versioned_docs/version-20-R7/commands-legacy/collection-to-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/collection-to-array.md @@ -64,4 +64,13 @@ You want to copy different property values from a collection of objects in diffe #### See also [ARRAY TO COLLECTION](array-to-collection.md) -*Type conversions between collections and 4D arrays* \ No newline at end of file +*Type conversions between collections and 4D arrays* + +#### Properties + +| | | +| --- | --- | +| Command number | 1562 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/combine-pictures.md b/versioned_docs/version-20-R7/commands-legacy/combine-pictures.md index 9ac72f3fff5bba..7520c2e1280186 100644 --- a/versioned_docs/version-20-R7/commands-legacy/combine-pictures.md +++ b/versioned_docs/version-20-R7/commands-legacy/combine-pictures.md @@ -49,4 +49,13 @@ Result: #### See also -[TRANSFORM PICTURE](transform-picture.md) \ No newline at end of file +[TRANSFORM PICTURE](transform-picture.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 987 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/command-name.md b/versioned_docs/version-20-R7/commands-legacy/command-name.md index e6fa57174a256f..dfe5134295d61b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/command-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/command-name.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -The **Command name** command returns the name as well as (optionally) the properties of the command whose command number you pass in *command*. - -**Note:** The number of each command is indicated in the Explorer as well as in the Properties area of this documentation. +The **Command name** command returns the name as well as (optionally) the properties of the command whose command number you pass in *command*.The number of each command is indicated in the Explorer as well as in the Properties area of this documentation. **Compatibility note:** Since a command name may vary from one 4D version to the next (commands renamed), this command was used in previous versions of the program to designate a command directly by means of its number, especially in non-tokenized portions of code. This need has diminished over time as 4D continues to evolve because, for non-tokenized statements (formulas), 4D now provides a token syntax. This syntax allows you to avoid potential problems due to variations in command names as well as other elements such as tables, while still being able to type these names in a legible manner (for more information about this point, refer to the *Using tokens in formulas* section). Furthermore, by default, the English language version is used starting with 4D v15; however, the "Use regional system settings" option on the [Is a list](is-a-list.md) of the Preferences allows you to continue using the French language in a French version of 4D. @@ -102,4 +100,14 @@ Then, for the "SAVE RECORD" command (53) for example, you can write: #### See also [EXECUTE FORMULA](execute-formula.md) -*Preemptive 4D processes* \ No newline at end of file +*Preemptive 4D processes* + +#### Properties + +| | | +| --- | --- | +| Command number | 538 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/compact-data-file.md b/versioned_docs/version-20-R7/commands-legacy/compact-data-file.md index 0bdd021df40020..edeb7ecdb3bdf6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/compact-data-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/compact-data-file.md @@ -67,4 +67,14 @@ If the compacting operation is carried out correctly, the OK system variable is #### See also [Table fragmentation](table-fragmentation.md) -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 937 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/compare-strings.md b/versioned_docs/version-20-R7/commands-legacy/compare-strings.md index 38cb48c0d151b1..8eb6065af046e9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/compare-strings.md +++ b/versioned_docs/version-20-R7/commands-legacy/compare-strings.md @@ -104,4 +104,13 @@ The following examples illustrate the specific impact of options in **Japanese d #### See also -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1756 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/compile-project.md b/versioned_docs/version-20-R7/commands-legacy/compile-project.md index e6c966c9bcda46..dd6bdfcb193b56 100644 --- a/versioned_docs/version-20-R7/commands-legacy/compile-project.md +++ b/versioned_docs/version-20-R7/commands-legacy/compile-project.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description @@ -182,4 +179,13 @@ var $result:=Compile project($options) #### See also -[BUILD APPLICATION](build-application.md) \ No newline at end of file +[BUILD APPLICATION](build-application.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1760 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/component-list.md b/versioned_docs/version-20-R7/commands-legacy/component-list.md index 8dd1d863968f15..9a51f2c88c39a1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/component-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/component-list.md @@ -32,4 +32,13 @@ For more information about 4D components, please refer to the Design Reference m #### See also -[PLUGIN LIST](plugin-list.md) \ No newline at end of file +[PLUGIN LIST](plugin-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1001 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/compress-blob.md b/versioned_docs/version-20-R7/commands-legacy/compress-blob.md index cbb8cc2336e90e..2ed6e460135cb7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/compress-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/compress-blob.md @@ -91,4 +91,14 @@ The OK variable is set to 1 if the BLOB has been successfully compressed; otherw #### See also [BLOB PROPERTIES](blob-properties.md) -[EXPAND BLOB](expand-blob.md) \ No newline at end of file +[EXPAND BLOB](expand-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 534 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/confirm.md b/versioned_docs/version-20-R7/commands-legacy/confirm.md index 99bbc94c845199..3a2bb27ed87875 100644 --- a/versioned_docs/version-20-R7/commands-legacy/confirm.md +++ b/versioned_docs/version-20-R7/commands-legacy/confirm.md @@ -91,4 +91,14 @@ will display the confirm dialog box (on Windows) shown here: #### See also [ALERT](alert.md) -[Request](request.md) \ No newline at end of file +[Request](request.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 162 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/contextual-click.md b/versioned_docs/version-20-R7/commands-legacy/contextual-click.md index 41b4837788c22b..7570a3136c7e3d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/contextual-click.md +++ b/versioned_docs/version-20-R7/commands-legacy/contextual-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Contextual click command returns True if a contextual click has been made: @@ -42,4 +39,13 @@ This method, combined with a scrollable area, enables you to change the value of #### See also [Form event code](../commands/form-event-code.md) -[Right click](right-click.md) \ No newline at end of file +[Right click](right-click.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 713 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/convert-coordinates.md b/versioned_docs/version-20-R7/commands-legacy/convert-coordinates.md index 612d77cb57ebe7..52df40a29a1512 100644 --- a/versioned_docs/version-20-R7/commands-legacy/convert-coordinates.md +++ b/versioned_docs/version-20-R7/commands-legacy/convert-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **CONVERT COORDINATES** command converts the (x;y) coordinates of a point from one coordinate system to another. The input and output coordinate systems supported are forms (and subforms), windows, and the screen. For example, you can use this command to get the coordinates in the main form of an object belonging to a subform. This makes it easy to create a context menu at any custom position. @@ -86,4 +83,13 @@ You want to open a pop-up window at the position of the mouse cursor. On Windows [GET WINDOW RECT](get-window-rect.md) [OBJECT GET COORDINATES](object-get-coordinates.md) [OBJECT SET COORDINATES](object-set-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1365 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/convert-from-text.md b/versioned_docs/version-20-R7/commands-legacy/convert-from-text.md index 3380f366f88aab..afe4c599f36e60 100644 --- a/versioned_docs/version-20-R7/commands-legacy/convert-from-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/convert-from-text.md @@ -186,4 +186,14 @@ If the command has been correctly executed, the OK variable is set to 1\. Otherw #### See also -[Convert to text](convert-to-text.md) \ No newline at end of file +[Convert to text](convert-to-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1011 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md b/versioned_docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md index 475262c508a458..2387ccd1ca18a6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md +++ b/versioned_docs/version-20-R7/commands-legacy/convert-path-posix-to-system.md @@ -53,4 +53,13 @@ Examples under Windows: [Convert path system to POSIX](convert-path-system-to-posix.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1107 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md b/versioned_docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md index 09dce9dc71e2a0..d1ebb4fce039be 100644 --- a/versioned_docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md +++ b/versioned_docs/version-20-R7/commands-legacy/convert-path-system-to-posix.md @@ -60,4 +60,13 @@ Example under Windows [Convert path POSIX to system](convert-path-posix-to-system.md) [Object to path](object-to-path.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1106 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/convert-picture.md b/versioned_docs/version-20-R7/commands-legacy/convert-picture.md index f7cb48e2877885..6757dfcc0f5051 100644 --- a/versioned_docs/version-20-R7/commands-legacy/convert-picture.md +++ b/versioned_docs/version-20-R7/commands-legacy/convert-picture.md @@ -48,4 +48,13 @@ Conversion of a picture with 60% quality: #### See also -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1002 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/convert-to-text.md b/versioned_docs/version-20-R7/commands-legacy/convert-to-text.md index 84542c7dd80be8..24bb7fe2b364ad 100644 --- a/versioned_docs/version-20-R7/commands-legacy/convert-to-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/convert-to-text.md @@ -29,4 +29,14 @@ If the command has been correctly executed, the OK variable is set to 1\. Otherw #### See also -[CONVERT FROM TEXT](convert-from-text.md) \ No newline at end of file +[CONVERT FROM TEXT](convert-from-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1012 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/copy-array.md b/versioned_docs/version-20-R7/commands-legacy/copy-array.md index 155c2b26dd8769..e4bb62dd441423 100644 --- a/versioned_docs/version-20-R7/commands-legacy/copy-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/copy-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The COPY ARRAY command creates or overwrites the destination array *destination* with the exact contents, size, and type of the source array *source*. - -**Note:** In case of numeric arrays of different types, the type of the *destination* array is kept. +The COPY ARRAY command creates or overwrites the destination array *destination* with the exact contents, size, and type of the source array *source*.In case of numeric arrays of different types, the type of the *destination* array is kept. The *source* and *destination* arrays can be local, process, or interprocess arrays. When copying arrays, the scope of the array does not matter. @@ -36,3 +34,13 @@ The following example fills the array named C. It then creates a new array, name  SELECTION TO ARRAY([People]Company;C) // Move company field data into array C  COPY ARRAY(C;D) // Copy the array C to the array D ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 226 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/copy-blob.md b/versioned_docs/version-20-R7/commands-legacy/copy-blob.md index 5de74ff3da5325..de59ea691bee7a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/copy-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/copy-blob.md @@ -28,4 +28,13 @@ The copy starts at the position (expressed relative to the beginning of the sour #### See also [DELETE FROM BLOB](delete-from-blob.md) -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 558 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/copy-document.md b/versioned_docs/version-20-R7/commands-legacy/copy-document.md index ca731c5d144f63..8b0e02a659783a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/copy-document.md +++ b/versioned_docs/version-20-R7/commands-legacy/copy-document.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -The **COPY DOCUMENT** command copies the file or folder specified by *sourceName* to the location specified by *destinationName* and, optionally, renames it. - -* **Copying files** +The **COPY DOCUMENT** command copies the file or folder specified by *sourceName* to the location specified by *destinationName* and, optionally, renames it. In this case, the *sourceName* parameter can contain: * either a complete file pathname expressed with respect to the root of the volume, * or a pathname relative to the database folder. @@ -121,4 +119,14 @@ The following examples create different files and folders in the database folder #### See also [MOVE DOCUMENT](move-document.md) -*System Documents* \ No newline at end of file +*System Documents* + +#### Properties + +| | | +| --- | --- | +| Command number | 541 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/copy-list.md b/versioned_docs/version-20-R7/commands-legacy/copy-list.md index ed767a8da45f5b..ab7ac9abaf964f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/copy-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/copy-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Copy list** command duplicates the list whose reference number you pass in *list,* and returns the list reference number of the new list. @@ -27,4 +24,13 @@ After you have finished with the new list, call [CLEAR LIST](clear-list.md) to d [CLEAR LIST](clear-list.md) [Load list](load-list.md) -[New list](new-list.md) \ No newline at end of file +[New list](new-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 626 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/copy-named-selection.md b/versioned_docs/version-20-R7/commands-legacy/copy-named-selection.md index 72b9550455ecf3..4221689fd1cfc6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/copy-named-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/copy-named-selection.md @@ -49,4 +49,13 @@ The following example allows you to check if there are other overdue invoices in [CLEAR NAMED SELECTION](clear-named-selection.md) [CUT NAMED SELECTION](cut-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 331 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/copy-parameters.md b/versioned_docs/version-20-R7/commands-legacy/copy-parameters.md index 46e28f812040eb..ab84671fd096c5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/copy-parameters.md +++ b/versioned_docs/version-20-R7/commands-legacy/copy-parameters.md @@ -79,4 +79,13 @@ Since the command returns a collection, it can be used with **.join()** to build #### See also -[Count parameters](count-parameters.md) \ No newline at end of file +[Count parameters](count-parameters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1790 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/copy-set.md b/versioned_docs/version-20-R7/commands-legacy/copy-set.md index b39739b8ea3ecb..eb521176d61743 100644 --- a/versioned_docs/version-20-R7/commands-legacy/copy-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/copy-set.md @@ -38,4 +38,13 @@ The following example, in Client/Server, copies the process set "*SetA*", mainta #### See also -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 600 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/cos.md b/versioned_docs/version-20-R7/commands-legacy/cos.md index 50cce191d1dd53..c3f94a3167d457 100644 --- a/versioned_docs/version-20-R7/commands-legacy/cos.md +++ b/versioned_docs/version-20-R7/commands-legacy/cos.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Description -Cos returns the cosine of *number*, where *number* is expressed in radians. - -**Note:** 4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). +Cos returns the cosine of *number*, where *number* is expressed in radians.4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). #### See also [Arctan](arctan.md) [Sin](sin.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 18 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/count-in-array.md b/versioned_docs/version-20-R7/commands-legacy/count-in-array.md index 407ec63aa935f1..a612e0459916cb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/count-in-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/count-in-array.md @@ -56,4 +56,13 @@ You want to count object references in an object array: #### See also [Find in array](find-in-array.md) -[Find in sorted array](find-in-sorted-array.md) \ No newline at end of file +[Find in sorted array](find-in-sorted-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 907 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/count-list-items.md b/versioned_docs/version-20-R7/commands-legacy/count-list-items.md index bcc6c17fd2b6ed..173c549ffcc50a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/count-list-items.md +++ b/versioned_docs/version-20-R7/commands-legacy/count-list-items.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Count list items command returns either the number of items currently “visible” or the total number of items in the list whose reference number or object name you pass in *list*. @@ -61,4 +58,13 @@ Here a list named *hList* shown in the Application environment: #### See also [List item position](list-item-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 380 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/count-menu-items.md b/versioned_docs/version-20-R7/commands-legacy/count-menu-items.md index a76fb13aec2027..19a6e9225105fa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/count-menu-items.md +++ b/versioned_docs/version-20-R7/commands-legacy/count-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Count menu items** command returns the number of menu items present in the menu whose number or reference is passed in *menu.* @@ -28,4 +25,14 @@ If you omit the *process* parameter, **Count menu items** applies to the menu ba #### See also -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 405 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/count-menus.md b/versioned_docs/version-20-R7/commands-legacy/count-menus.md index 9191d17f4561ba..9abb6606ffdc24 100644 --- a/versioned_docs/version-20-R7/commands-legacy/count-menus.md +++ b/versioned_docs/version-20-R7/commands-legacy/count-menus.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Count menus** command returns the number of menus present in the menu bar. @@ -25,4 +22,14 @@ If you omit the *process* parameter, **Count menus** applies to the menu bar for #### See also -[Count menu items](count-menu-items.md) \ No newline at end of file +[Count menu items](count-menu-items.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 404 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/count-parameters.md b/versioned_docs/version-20-R7/commands-legacy/count-parameters.md index 3a2d0ff3274456..9bd0a24e81d90b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/count-parameters.md +++ b/versioned_docs/version-20-R7/commands-legacy/count-parameters.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -The Count parameters command returns the number of parameters passed to a project method. - -**WARNING:** Count parameters is meaningful only in a project method that has been called by another method (project method or other). If the project method calling this command is associated with a menu, it returns 0. +The Count parameters command returns the number of parameters passed to a project method.Count parameters is meaningful only in a project method that has been called by another method (project method or other). If the project method calling this command is associated with a menu, it returns 0. #### Example 1 @@ -94,4 +92,13 @@ or: #### See also *Compiler Commands* -[Copy parameters](copy-parameters.md) \ No newline at end of file +[Copy parameters](copy-parameters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 259 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/count-screens.md b/versioned_docs/version-20-R7/commands-legacy/count-screens.md index 3ee0d977d68782..2e8fab460cca33 100644 --- a/versioned_docs/version-20-R7/commands-legacy/count-screens.md +++ b/versioned_docs/version-20-R7/commands-legacy/count-screens.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Count screens command returns the number of screen monitors connected to your machine. @@ -26,4 +23,13 @@ displayed_sidebar: docs [SCREEN COORDINATES](screen-coordinates.md) [SCREEN DEPTH](screen-depth.md) [Screen height](screen-height.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 437 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/count-tasks.md b/versioned_docs/version-20-R7/commands-legacy/count-tasks.md index 674f6852bbaea6..fad5111dc6890e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/count-tasks.md +++ b/versioned_docs/version-20-R7/commands-legacy/count-tasks.md @@ -28,4 +28,13 @@ See the example for [Process state](process-state.md) and for the [Semaphore](se [Count user processes](count-user-processes.md) [Count users](count-users.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 335 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/count-user-processes.md b/versioned_docs/version-20-R7/commands-legacy/count-user-processes.md index d2345212303ec8..773124ced55e97 100644 --- a/versioned_docs/version-20-R7/commands-legacy/count-user-processes.md +++ b/versioned_docs/version-20-R7/commands-legacy/count-user-processes.md @@ -24,4 +24,13 @@ The Count user processes function returns the number of processes opened directl #### See also [Count tasks](count-tasks.md) -[Count users](count-users.md) \ No newline at end of file +[Count users](count-users.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 343 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/count-users.md b/versioned_docs/version-20-R7/commands-legacy/count-users.md index 48205d097d1ad8..f3f053373b143e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/count-users.md +++ b/versioned_docs/version-20-R7/commands-legacy/count-users.md @@ -22,4 +22,13 @@ When executed on a 4D single-user application, **Count users** returns 1. #### See also [Count tasks](count-tasks.md) -[Count user processes](count-user-processes.md) \ No newline at end of file +[Count user processes](count-user-processes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 342 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-alias.md b/versioned_docs/version-20-R7/commands-legacy/create-alias.md index afd69780f29c98..a8a8ab6b4a59b1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-alias.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-alias.md @@ -66,4 +66,14 @@ The OK system variable is set to 1 if the command execution was successful; othe #### See also -[RESOLVE ALIAS](resolve-alias.md) \ No newline at end of file +[RESOLVE ALIAS](resolve-alias.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 694 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-data-file.md b/versioned_docs/version-20-R7/commands-legacy/create-data-file.md index 943936669d481c..8a7f8293d8b689 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-data-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-data-file.md @@ -25,4 +25,13 @@ Before launching the operation, the command verifies that the specified access p #### See also -[OPEN DATA FILE](open-data-file.md) \ No newline at end of file +[OPEN DATA FILE](open-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 313 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-deployment-license.md b/versioned_docs/version-20-R7/commands-legacy/create-deployment-license.md index b3172bde51c8c9..8e4b77aadd87f6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-deployment-license.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-deployment-license.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Create deployment license** command creates an embedded license file in the Licenses folder of the *mergedApp* built application. If the Licenses folder does not exist the *mergedApp*, it is created by the command. @@ -58,4 +55,13 @@ The command returns a *status* object containing the following properties: #### See also -[Blog post - Finalize an application with 4D commands](https://blog.4d.com/finalize-an-application-with-4d-commands) \ No newline at end of file +[Blog post - Finalize an application with 4D commands](https://blog.4d.com/finalize-an-application-with-4d-commands) + +#### Properties + +| | | +| --- | --- | +| Command number | 1811 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-document.md b/versioned_docs/version-20-R7/commands-legacy/create-document.md index 09a4d9c3a32ab4..f13ca7d12e20b1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-document.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-document.md @@ -71,4 +71,14 @@ If the document has been created correctly, the system variable OK is set to 1 a #### See also [Append document](append-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 266 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-empty-set.md b/versioned_docs/version-20-R7/commands-legacy/create-empty-set.md index 3c5374c37880c9..cded9f366abbf2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-empty-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-empty-set.md @@ -27,4 +27,13 @@ Please refer to the examples of the *Sets* section. #### See also [CLEAR SET](clear-set.md) -[CREATE SET](create-set.md) \ No newline at end of file +[CREATE SET](create-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 140 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-folder.md b/versioned_docs/version-20-R7/commands-legacy/create-folder.md index ff244b2be883a4..68d9245d26ef22 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-folder.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-folder.md @@ -70,4 +70,14 @@ Creation of the "\\February\\" subfolder in the existing "C:\\Archives\\" folder #### See also [FOLDER LIST](folder-list.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 475 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-index.md b/versioned_docs/version-20-R7/commands-legacy/create-index.md index 9b3eb1a9212deb..6908b72f8c6f46 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-index.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-index.md @@ -86,4 +86,13 @@ Creation of a composite index on the “City” and “Zipcode” fields of the [DELETE INDEX](delete-index.md) [RESUME INDEXES](resume-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 966 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-menu.md b/versioned_docs/version-20-R7/commands-legacy/create-menu.md index 7ae0cef1c5f9f2..3495ed39aee1bc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-menu.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-menu.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Create menu** command creates a new menu in memory. This menu will only exist in memory and will not be added in the Menu editor in Design mode. Any changes made to this menu during the session will be immediately carried over to all the instances of this menu and in all the processes of the database. @@ -42,4 +39,13 @@ Refer to the example of the [SET MENU BAR](set-menu-bar.md) command. [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 408 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-record.md b/versioned_docs/version-20-R7/commands-legacy/create-record.md index c1058fbaf070e4..02eccbe98044a1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-record.md @@ -45,4 +45,14 @@ The following example archives records that are over 30 days old. It does does t [ADD RECORD](add-record.md) [MODIFY RECORD](modify-record.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 68 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-related-one.md b/versioned_docs/version-20-R7/commands-legacy/create-related-one.md index 4c87a9e0a553ce..377147c0988b64 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-related-one.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-related-one.md @@ -23,4 +23,13 @@ If a related record exists, **CREATE RELATED ONE** acts just like [RELATE ONE](r #### See also -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 65 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-selection-from-array.md b/versioned_docs/version-20-R7/commands-legacy/create-selection-from-array.md index 35cd079ac4d7b2..2942999eba671c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-selection-from-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-selection-from-array.md @@ -47,4 +47,15 @@ If a record number is invalid (record not created), the error -10503 is generate [CREATE SET FROM ARRAY](create-set-from-array.md) [LONGINT ARRAY FROM SELECTION](longint-array-from-selection.md) [SELECTION TO ARRAY](selection-to-array.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 640 | +| Thread safe | ✓ | +| Modifies variables | error | +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-set-from-array.md b/versioned_docs/version-20-R7/commands-legacy/create-set-from-array.md index 9488aa0ba4171d..8a19be32d75bbc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-set-from-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-set-from-array.md @@ -37,4 +37,14 @@ In a Longint array, if a record number is invalid (record not created), the erro #### See also [BOOLEAN ARRAY FROM SET](boolean-array-from-set.md) -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 641 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-set.md b/versioned_docs/version-20-R7/commands-legacy/create-set.md index dee8b57566c0cf..51c811d8c20341 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-set.md @@ -31,4 +31,13 @@ The following example creates a set after doing a search, in order to save the s #### See also [CLEAR SET](clear-set.md) -[CREATE EMPTY SET](create-empty-set.md) \ No newline at end of file +[CREATE EMPTY SET](create-empty-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 116 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/create-thumbnail.md b/versioned_docs/version-20-R7/commands-legacy/create-thumbnail.md index 900eaaee0a2512..f4e08245a4c5b3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/create-thumbnail.md +++ b/versioned_docs/version-20-R7/commands-legacy/create-thumbnail.md @@ -53,3 +53,13 @@ Resulting thumbnails (48x48) **Note:** With the “Scaled to fit proportional” and the “Scaled to fit prop centered”, the free space will be displayed in white. When these modes are applied to picture field or variable in 4D forms, the free space is transparent. The *depth* parameter is ignored and must be omitted. The command always uses the current screen depth (number of colors). + + +#### Properties + +| | | +| --- | --- | +| Command number | 679 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-client-authentication.md b/versioned_docs/version-20-R7/commands-legacy/current-client-authentication.md index 03e5b5979f9ed0..e1cfb41c7b92fb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-client-authentication.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-client-authentication.md @@ -72,3 +72,13 @@ With this setting, no password dialog will be displayed for a remote 4D that con * replicate the Active directory names in the 4D user and group names, for an automatic mapping, * map returned information to a custom \[users\] table, * use LDAP features to get user credentials. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1355 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-date.md b/versioned_docs/version-20-R7/commands-legacy/current-date.md index bffcefedd4e4a5..14531c01199301 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-date.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-date.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The Current date command returns the current date as kept by the system clock. - -**4D Server:** If you use the asterisk (\*) parameter when executing this function on a 4D Client machine, it returns the current date from the server. +The Current date command returns the current date as kept by the system clock.If you use the asterisk (\*) parameter when executing this function on a 4D Client machine, it returns the current date from the server. #### Example 1 @@ -97,4 +95,13 @@ The following project method allows you to do so: [Day of](day-of.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 33 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-default-table.md b/versioned_docs/version-20-R7/commands-legacy/current-default-table.md index f8ef00b875bb0e..7e5f6b57cae702 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-default-table.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-default-table.md @@ -29,4 +29,13 @@ Provided a default table has been set, the following line of code sets the windo [DEFAULT TABLE](default-table.md) [Table](table.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 363 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-form-name.md b/versioned_docs/version-20-R7/commands-legacy/current-form-name.md index 8cf8f29d416bb9..528ac62686748b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-form-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-form-name.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Current form name** command returns the name of the current form defined for the process. The current form can be a project form or a table form. @@ -59,4 +56,13 @@ You want to get the current form if it is a project form: #### See also -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1298 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-form-table.md b/versioned_docs/version-20-R7/commands-legacy/current-form-table.md index 203e09f8ca07d4..1f34ff1a6c29ac 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-form-table.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-form-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Current form table command returns the pointer to the table of the form being displayed or printed in the current process. @@ -65,4 +62,13 @@ To do so, use the object method to create the variable *vsCurrentRecord*, then c [DIALOG](dialog.md) [FORM SET INPUT](form-set-input.md) [FORM SET OUTPUT](form-set-output.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 627 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-form-window.md b/versioned_docs/version-20-R7/commands-legacy/current-form-window.md index 4c13bd859cb735..324d8a1342de42 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-form-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-form-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Current form window** command returns the reference of the current form window. If no window has been set for the current form, the command returns 0. @@ -26,4 +23,13 @@ The current form window can be generated automatically using a command such as [ [Open form window](open-form-window.md) [Open window](open-window.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 827 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-machine.md b/versioned_docs/version-20-R7/commands-legacy/current-machine.md index 27f7f1a849f384..76d2238505f335 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-machine.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-machine.md @@ -29,4 +29,13 @@ Even if you are not running with the Client/Server version of the 4D environment #### See also -[Current system user](current-system-user.md) \ No newline at end of file +[Current system user](current-system-user.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 483 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-method-name.md b/versioned_docs/version-20-R7/commands-legacy/current-method-name.md index 23530389e2a298..010bd9951d58a5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-method-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-method-name.md @@ -37,3 +37,13 @@ According to the calling method type, the returned string can be as follows: This command cannot be called from within a 4D formula. **Note:** For this command to be able to operate in compiled mode, it must not be included in code for which range checking has been disabled. See *Range checking*. + + +#### Properties + +| | | +| --- | --- | +| Command number | 684 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-method-path.md b/versioned_docs/version-20-R7/commands-legacy/current-method-path.md index 175d98adf15813..fc2d324be91926 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-method-path.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-method-path.md @@ -15,11 +15,18 @@ displayed_sidebar: docs #### Description -The **Current method path** command returns the internal pathname of the database method, trigger, project method, form method or object method being executed. - -**Note:** In the context of 4D macro-commands, the ** tag is replaced in the code by the full pathname of the method being executed. +The **Current method path** command returns the internal pathname of the database method, trigger, project method, form method or object method being executed.In the context of 4D macro-commands, the ** tag is replaced in the code by the full pathname of the method being executed. #### See also [METHOD Get path](method-get-path.md) -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1201 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-process-name.md b/versioned_docs/version-20-R7/commands-legacy/current-process-name.md index 46938b18a09b58..b6b024f5752659 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-process-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-process-name.md @@ -31,4 +31,13 @@ You want to call a worker and pass the calling process name as parameter: *About workers* [CALL WORKER](call-worker.md) -[KILL WORKER](kill-worker.md) \ No newline at end of file +[KILL WORKER](kill-worker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1392 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-process.md b/versioned_docs/version-20-R7/commands-legacy/current-process.md index 2570e34223fea4..46959d48303da7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-process.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-process.md @@ -25,4 +25,13 @@ See the examples for [DELAY PROCESS](delay-process.md) and [Process info](../com [Process number](../commands/process-number.md) [Process info](../commands/process-info.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 322 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-system-user.md b/versioned_docs/version-20-R7/commands-legacy/current-system-user.md index 397f4e4c171e71..a57d96dcca97ab 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-system-user.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-system-user.md @@ -23,4 +23,13 @@ See example for the [Current machine](current-machine.md) command. #### See also -[Current machine](current-machine.md) \ No newline at end of file +[Current machine](current-machine.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 484 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-time.md b/versioned_docs/version-20-R7/commands-legacy/current-time.md index 5a98dfebd02a57..7c093f503da71b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-time.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-time.md @@ -48,4 +48,13 @@ The following example extracts the hours, minutes, and seconds from the current [Milliseconds](milliseconds.md) [String](string.md) -[Tickcount](tickcount.md) \ No newline at end of file +[Tickcount](tickcount.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 178 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/current-user.md b/versioned_docs/version-20-R7/commands-legacy/current-user.md index e6329a0defbe98..830062d9724b4c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/current-user.md +++ b/versioned_docs/version-20-R7/commands-legacy/current-user.md @@ -37,4 +37,13 @@ See example for the [User in group](user-in-group.md) command. [CHANGE CURRENT USER](change-current-user.md) [CHANGE PASSWORD](change-password.md) [SET USER ALIAS](set-user-alias.md) -[User in group](user-in-group.md) \ No newline at end of file +[User in group](user-in-group.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 182 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/cut-named-selection.md b/versioned_docs/version-20-R7/commands-legacy/cut-named-selection.md index 9dfa42169c2076..a837c75c758f22 100644 --- a/versioned_docs/version-20-R7/commands-legacy/cut-named-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/cut-named-selection.md @@ -35,4 +35,14 @@ The following method empties the current selection of a table *\[Customers\]*: [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[USE NAMED SELECTION](use-named-selection.md) \ No newline at end of file +[USE NAMED SELECTION](use-named-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 334 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/data-file-encryption-status.md b/versioned_docs/version-20-R7/commands-legacy/data-file-encryption-status.md index a744716f0eb9c4..c780de6ac06eed 100644 --- a/versioned_docs/version-20-R7/commands-legacy/data-file-encryption-status.md +++ b/versioned_docs/version-20-R7/commands-legacy/data-file-encryption-status.md @@ -67,4 +67,13 @@ You want to know the encryption status of a data file that corresponds to the cu #### See also [4D Blog - New 4D commands to work with encrypted data](https://blog.4d.com/new-4d-commands-to-work-with-encrypted-data/) -[Encrypt data file](encrypt-data-file.md) \ No newline at end of file +[Encrypt data file](encrypt-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1609 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/data-file.md b/versioned_docs/version-20-R7/commands-legacy/data-file.md index 16ded6da295ebc..c97a604a91143d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/data-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/data-file.md @@ -31,4 +31,13 @@ If, for example, you are working with the database located in the folder Documen #### See also [Application file](application-file.md) -[Structure file](structure-file.md) \ No newline at end of file +[Structure file](structure-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 490 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/database-measures.md b/versioned_docs/version-20-R7/commands-legacy/database-measures.md index d57abeb7bf0f3b..07183ed7654f9c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/database-measures.md +++ b/versioned_docs/version-20-R7/commands-legacy/database-measures.md @@ -330,3 +330,13 @@ We want to request measures for cache bytes read within the last two minutes:  OB SET($oParams;"historyLength";2*60)  $measures:=Database measures($oParams) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1314 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/date.md b/versioned_docs/version-20-R7/commands-legacy/date.md index cc7a31d10509b4..44007125bf7916 100644 --- a/versioned_docs/version-20-R7/commands-legacy/date.md +++ b/versioned_docs/version-20-R7/commands-legacy/date.md @@ -91,4 +91,13 @@ You want to get a date from an object attribute, whatever the current attribute #### See also [Bool](bool.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 102 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/day-number.md b/versioned_docs/version-20-R7/commands-legacy/day-number.md index ad70211447c248..f3ae5bfe1ac254 100644 --- a/versioned_docs/version-20-R7/commands-legacy/day-number.md +++ b/versioned_docs/version-20-R7/commands-legacy/day-number.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Day number** command returns a number representing the weekday on which *aDate* falls. - -**Note:** **Day number** returns *2* for null dates. +The **Day number** command returns a number representing the weekday on which *aDate* falls.**Day number** returns *2* for null dates. 4D provides the following predefined constants, found in the "*Days and Months*" theme: @@ -60,4 +58,13 @@ The following example is a function that returns the current day as a string: #### See also -[Day of](day-of.md) \ No newline at end of file +[Day of](day-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 114 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/day-of.md b/versioned_docs/version-20-R7/commands-legacy/day-of.md index a594ed4c600de3..44d7e3146cd164 100644 --- a/versioned_docs/version-20-R7/commands-legacy/day-of.md +++ b/versioned_docs/version-20-R7/commands-legacy/day-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Day of** command returns the day of the month of *aDate*. - -**Note:** **Day of** returns a value between 1 and 31\. To get the day of the week for a date, use the command [Day number](day-number.md). +The **Day of** command returns the day of the month of *aDate*.**Day of** returns a value between 1 and 31\. To get the day of the week for a date, use the command [Day number](day-number.md). #### Example 1 @@ -37,4 +35,13 @@ See the example for the [Current date](current-date.md) command. [Day number](day-number.md) [Month of](month-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 23 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/deactivated.md b/versioned_docs/version-20-R7/commands-legacy/deactivated.md index 1eee6e088af26b..ab2f700c1e0d9b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/deactivated.md +++ b/versioned_docs/version-20-R7/commands-legacy/deactivated.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Deactivated** command returns True in a form or object method when the frontmost window of the frontmost process, containing the form, moves to the back. @@ -27,4 +24,13 @@ In order for the **Deactivated** execution cycle to be generated, make sure that #### See also [Activated](activated.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 347 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dec.md b/versioned_docs/version-20-R7/commands-legacy/dec.md index 34ed1e211304d0..26c2ffefdbd33b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dec.md +++ b/versioned_docs/version-20-R7/commands-legacy/dec.md @@ -29,4 +29,13 @@ The following example takes a monetary value expressed as a real number, and ext #### See also -[Int](int.md) \ No newline at end of file +[Int](int.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 9 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/decrypt-blob.md b/versioned_docs/version-20-R7/commands-legacy/decrypt-blob.md index 9bba8d49b0c80b..604e5825016bfa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/decrypt-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/decrypt-blob.md @@ -33,4 +33,13 @@ Refer to the examples given for the [ENCRYPT BLOB](encrypt-blob.md) command. #### See also [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 690 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/decrypt-data-blob.md b/versioned_docs/version-20-R7/commands-legacy/decrypt-data-blob.md index 832d75ba4819f9..5205c07138a67d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/decrypt-data-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/decrypt-data-blob.md @@ -57,4 +57,13 @@ The *passPhrase* and *salt* used for decryption are identical to the *passPhrase [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) [Encrypt your own data with the 4D algorithm](https://blog.4d.com/encrypt-your-own-data-with-the-4d-algorithm) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1774 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/default-table.md b/versioned_docs/version-20-R7/commands-legacy/default-table.md index c61e082aee1a70..681577c74e13a1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/default-table.md +++ b/versioned_docs/version-20-R7/commands-legacy/default-table.md @@ -74,4 +74,13 @@ Specifying the default table results in this code: #### See also [Current default table](current-default-table.md) -[NO DEFAULT TABLE](no-default-table.md) \ No newline at end of file +[NO DEFAULT TABLE](no-default-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 46 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delay-process.md b/versioned_docs/version-20-R7/commands-legacy/delay-process.md index 0c9473ed442977..377de9b4553bdc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delay-process.md +++ b/versioned_docs/version-20-R7/commands-legacy/delay-process.md @@ -37,4 +37,13 @@ See example for the command [Process number](../commands/process-number.md). #### See also [HIDE PROCESS](hide-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 323 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delete-document.md b/versioned_docs/version-20-R7/commands-legacy/delete-document.md index 091af4f64a13e9..0ea71427ecde5d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delete-document.md +++ b/versioned_docs/version-20-R7/commands-legacy/delete-document.md @@ -46,4 +46,14 @@ Deleting a document sets the OK system variable to 1\. If **DELETE DOCUMENT** ca #### See also -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 159 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delete-folder.md b/versioned_docs/version-20-R7/commands-legacy/delete-folder.md index becd0a907b6c7c..9980ae69922647 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delete-folder.md +++ b/versioned_docs/version-20-R7/commands-legacy/delete-folder.md @@ -41,4 +41,14 @@ You can intercept these errors using a method installed by the [ON ERR CALL](on- #### See also -[DELETE DOCUMENT](delete-document.md) \ No newline at end of file +[DELETE DOCUMENT](delete-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 693 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delete-from-array.md b/versioned_docs/version-20-R7/commands-legacy/delete-from-array.md index 11c5089dbe7d43..c93df67c1523f3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delete-from-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/delete-from-array.md @@ -43,4 +43,13 @@ The following example deletes the last element from an array, if it exists: #### See also [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 228 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delete-from-blob.md b/versioned_docs/version-20-R7/commands-legacy/delete-from-blob.md index 9be4c66e9658ae..e224062c5046e9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delete-from-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/delete-from-blob.md @@ -25,4 +25,13 @@ displayed_sidebar: docs #### See also -[INSERT IN BLOB](insert-in-blob.md) \ No newline at end of file +[INSERT IN BLOB](insert-in-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 560 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delete-from-list.md b/versioned_docs/version-20-R7/commands-legacy/delete-from-list.md index 97011e06ac44f7..0c63c7fac35bfe 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delete-from-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/delete-from-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **DELETE FROM LIST** command deletes the item designated by the *itemRef* parameter of the list whose reference number or object name is passed in *list*. @@ -44,4 +41,13 @@ The following code deletes the currently selected item of the list *hList*. If t #### See also [CLEAR LIST](clear-list.md) -[GET LIST ITEM](get-list-item.md) \ No newline at end of file +[GET LIST ITEM](get-list-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 624 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delete-index.md b/versioned_docs/version-20-R7/commands-legacy/delete-index.md index 1d7c546249799b..b4b0800a8015ad 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delete-index.md +++ b/versioned_docs/version-20-R7/commands-legacy/delete-index.md @@ -45,4 +45,13 @@ This example illustrates both syntaxes of the command: [CREATE INDEX](create-index.md) [PAUSE INDEXES](pause-indexes.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 967 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delete-menu-item.md b/versioned_docs/version-20-R7/commands-legacy/delete-menu-item.md index ba4512aafd350c..34a118b19dbe7d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delete-menu-item.md +++ b/versioned_docs/version-20-R7/commands-legacy/delete-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **DELETE MENU ITEM** command deletes the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -35,4 +32,14 @@ If you omit the *process* parameter, **DELETE MENU ITEM** applies to the menu ba #### See also [APPEND MENU ITEM](append-menu-item.md) -[INSERT MENU ITEM](insert-menu-item.md) \ No newline at end of file +[INSERT MENU ITEM](insert-menu-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 413 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delete-record.md b/versioned_docs/version-20-R7/commands-legacy/delete-record.md index 455c1dcbaa535b..b26de28d41e8c5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delete-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/delete-record.md @@ -41,4 +41,14 @@ The following example deletes an employee record. The code asks the user what em #### See also [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 58 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delete-selection.md b/versioned_docs/version-20-R7/commands-legacy/delete-selection.md index 068ba4718a0a34..29f2d4d248ef1c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delete-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/delete-selection.md @@ -62,4 +62,14 @@ If a locked record is encountered during the execution of **DELETE SELECTION**, [MODIFY SELECTION](modify-selection.md) *Record Locking* *Sets* -[TRUNCATE TABLE](truncate-table.md) \ No newline at end of file +[TRUNCATE TABLE](truncate-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 66 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delete-string.md b/versioned_docs/version-20-R7/commands-legacy/delete-string.md index f48e7d084b93f5..2fa4b683ef9a09 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delete-string.md +++ b/versioned_docs/version-20-R7/commands-legacy/delete-string.md @@ -44,4 +44,13 @@ The following example illustrates the use of Delete string. The results are assi [Change string](change-string.md) [Insert string](insert-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 232 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/delete-user.md b/versioned_docs/version-20-R7/commands-legacy/delete-user.md index 5338014747655d..253194a1576773 100644 --- a/versioned_docs/version-20-R7/commands-legacy/delete-user.md +++ b/versioned_docs/version-20-R7/commands-legacy/delete-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **DELETE USER** command deletes the user whose unique user ID number you pass in *userID*. You must pass a valid user ID number returned by the [GET USER LIST](get-user-list.md) command. @@ -35,4 +32,14 @@ If you do not have the proper access privileges for calling DELETE USER or if th [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 615 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/describe-query-execution.md b/versioned_docs/version-20-R7/commands-legacy/describe-query-execution.md index 88da3b8fe094d7..c8d81e0c43c271 100644 --- a/versioned_docs/version-20-R7/commands-legacy/describe-query-execution.md +++ b/versioned_docs/version-20-R7/commands-legacy/describe-query-execution.md @@ -66,4 +66,13 @@ $vResultPath : #### See also [Last query path](last-query-path.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1044 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dialog.md b/versioned_docs/version-20-R7/commands-legacy/dialog.md index 0aab5891e4dab6..e7d08e9efadc6b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dialog.md +++ b/versioned_docs/version-20-R7/commands-legacy/dialog.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **DIALOG** command presents the *form* to the user, along with *formData* parameter(s) (optional). @@ -167,4 +164,14 @@ After a call to **DIALOG**, if the dialog is accepted, OK is set to 1; if it is [CALL FORM](call-form.md) [CANCEL](cancel.md) [Form](form.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 40 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/difference.md b/versioned_docs/version-20-R7/commands-legacy/difference.md index 45e41876a396b9..8054abb56c8b44 100644 --- a/versioned_docs/version-20-R7/commands-legacy/difference.md +++ b/versioned_docs/version-20-R7/commands-legacy/difference.md @@ -54,4 +54,13 @@ At the bottom of the list of records is a button with an object method. The obje #### See also [INTERSECTION](intersection.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 122 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/disable-menu-item.md b/versioned_docs/version-20-R7/commands-legacy/disable-menu-item.md index 2606d532d4ed5b..63494f11e97069 100644 --- a/versioned_docs/version-20-R7/commands-legacy/disable-menu-item.md +++ b/versioned_docs/version-20-R7/commands-legacy/disable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The DISABLE MENU ITEM command disables the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem*.You can pass -1 in *menuItem* in order to designate the last item added to the *menu*. @@ -32,4 +29,14 @@ If the *menuItem* parameter designates a hierarchical submenu, all the items of #### See also -[ENABLE MENU ITEM](enable-menu-item.md) \ No newline at end of file +[ENABLE MENU ITEM](enable-menu-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 150 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/discover-data-key.md b/versioned_docs/version-20-R7/commands-legacy/discover-data-key.md index d05e1604b57453..43e02c4703851d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/discover-data-key.md +++ b/versioned_docs/version-20-R7/commands-legacy/discover-data-key.md @@ -48,4 +48,13 @@ Key files (".4DKeyChain" extension files) must be stored at the top level of con #### See also [4D Blog - New 4D commands to work with encrypted data](https://blog.4d.com/new-4d-commands-to-work-with-encrypted-data/) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1639 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/display-notification.md b/versioned_docs/version-20-R7/commands-legacy/display-notification.md index 9553753b8eb623..7e1dc49c04ab38 100644 --- a/versioned_docs/version-20-R7/commands-legacy/display-notification.md +++ b/versioned_docs/version-20-R7/commands-legacy/display-notification.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The DISPLAY NOTIFICATION command displays a notification message to the user. @@ -42,4 +39,13 @@ Under Windows, the message window remains displayed as long as no activity has b #### See also -[ALERT](alert.md) \ No newline at end of file +[ALERT](alert.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 910 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/display-record.md b/versioned_docs/version-20-R7/commands-legacy/display-record.md index 5b3898ba8b8214..cb88539278ff31 100644 --- a/versioned_docs/version-20-R7/commands-legacy/display-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/display-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **DISPLAY RECORD** command displays the current record of *aTable*, using the current input form. The record is displayed only until an event redraws the window. Such an event might be the execution of an [ADD RECORD](add-record.md) command, returning to an input form, or returning to the menu bar. **DISPLAY RECORD** does nothing if there is no current record. @@ -42,4 +39,13 @@ The following example displays a series of records as a slide show: #### See also -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 105 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/display-selection.md b/versioned_docs/version-20-R7/commands-legacy/display-selection.md index a4b00a25266c15..de3226de734c1e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/display-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/display-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **DISPLAY SELECTION** displays the selection of *aTable*, using the output form. The records are displayed in a scrollable list similar to that of the Design environment. If the user double-clicks a record, by default the record is displayed in the current input form. The list is displayed in the frontmost window. @@ -95,4 +92,14 @@ You can also use other commands, such as [PRINT SELECTION](print-selection.md), [Form event code](../commands/form-event-code.md) [MODIFY SELECTION](modify-selection.md) -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 59 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/displayed-line-number.md b/versioned_docs/version-20-R7/commands-legacy/displayed-line-number.md index 5da170cd6017b0..82bc609c66d54a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/displayed-line-number.md +++ b/versioned_docs/version-20-R7/commands-legacy/displayed-line-number.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Displayed line number** command only works with the On Display Detail form event. It returns the number of the row being processed while a list of records or list box rows is displayed on screen. If **Displayed line number** is called other than when displaying a list or a list box, it returns 0. @@ -46,4 +43,13 @@ This example lets you apply an alternating color to a list form displayed on scr #### See also [Form event code](../commands/form-event-code.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 897 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/distinct-attribute-paths.md b/versioned_docs/version-20-R7/commands-legacy/distinct-attribute-paths.md index 582a383c3ffe20..6e7bdbc080354e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/distinct-attribute-paths.md +++ b/versioned_docs/version-20-R7/commands-legacy/distinct-attribute-paths.md @@ -66,4 +66,13 @@ The *aTPaths* array receives the following elements: #### See also -[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) \ No newline at end of file +[DISTINCT ATTRIBUTE VALUES](distinct-attribute-values.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1395 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/distinct-attribute-values.md b/versioned_docs/version-20-R7/commands-legacy/distinct-attribute-values.md index fba4cec8559135..efbb05025c06ae 100644 --- a/versioned_docs/version-20-R7/commands-legacy/distinct-attribute-values.md +++ b/versioned_docs/version-20-R7/commands-legacy/distinct-attribute-values.md @@ -92,4 +92,13 @@ The *aLChildNum* array receives the following elements: #### See also -[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) \ No newline at end of file +[DISTINCT ATTRIBUTE PATHS](distinct-attribute-paths.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1397 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/distinct-values.md b/versioned_docs/version-20-R7/commands-legacy/distinct-values.md index 03d36d9521d4e8..5e80000ea2cea1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/distinct-values.md +++ b/versioned_docs/version-20-R7/commands-legacy/distinct-values.md @@ -81,4 +81,13 @@ To compute statistics, you want to sort the number of distinct values in a field [GET TEXT KEYWORDS](get-text-keywords.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 339 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/document-list.md b/versioned_docs/version-20-R7/commands-legacy/document-list.md index 8379a42ae69151..cc0ae5410b822e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/document-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/document-list.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **DOCUMENT LIST** command populates the Text array *documents* with the names of the documents located at the location you pass in *pathname*. - -**Note:** You must pass an absolute pathname in the *pathname* parameter. +The **DOCUMENT LIST** command populates the Text array *documents* with the names of the documents located at the location you pass in *pathname*.You must pass an absolute pathname in the *pathname* parameter. By default, if you omit the *options* parameter, only the names of documents are returned in the *documents* array. You can modify this by passing, in the *options* parameter, one or more of the following constants, found in the *System Documents* theme: @@ -114,4 +112,14 @@ List of all documents in recursive Posix (relative) mode: #### See also [FOLDER LIST](folder-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 474 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/document-to-blob.md b/versioned_docs/version-20-R7/commands-legacy/document-to-blob.md index e9a05032306a12..69defde138fec7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/document-to-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/document-to-blob.md @@ -49,4 +49,14 @@ In each case, you can trap the error using an [ON ERR CALL](on-err-call.md) inte #### See also [BLOB TO DOCUMENT](blob-to-document.md) -[Open document](open-document.md) \ No newline at end of file +[Open document](open-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 525 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/document-to-text.md b/versioned_docs/version-20-R7/commands-legacy/document-to-text.md index 30b9b0739672a4..4c219a3d8214bb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/document-to-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/document-to-text.md @@ -76,4 +76,13 @@ When you execute this code: #### See also *System Documents* -[TEXT TO DOCUMENT](text-to-document.md) \ No newline at end of file +[TEXT TO DOCUMENT](text-to-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1236 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md b/versioned_docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md index 91a16a113f2586..5e736ae9a1d2b1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-append-xml-child-node.md @@ -144,4 +144,13 @@ If the contents of *childValue* are not valid, an error is returned. #### See also [DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1080 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-append-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-append-xml-element.md index 7f6aa5cd3a9ea8..1ed9065fe4802b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-append-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-append-xml-element.md @@ -27,4 +27,13 @@ See the example of the [DOM Insert XML element](dom-insert-xml-element.md "DOM I #### See also -[DOM Insert XML element](dom-insert-xml-element.md) \ No newline at end of file +[DOM Insert XML element](dom-insert-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1082 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-close-xml.md b/versioned_docs/version-20-R7/commands-legacy/dom-close-xml.md index 1482c6332f9583..7335f1011d22b9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-close-xml.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-close-xml.md @@ -26,4 +26,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM Parse XML source](dom-parse-xml-source.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 722 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md b/versioned_docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md index 630367fbe31926..5c6031ec9143b7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-count-xml-attributes.md @@ -51,4 +51,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also -[DOM Count XML elements](dom-count-xml-elements.md) \ No newline at end of file +[DOM Count XML elements](dom-count-xml-elements.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 727 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-count-xml-elements.md b/versioned_docs/version-20-R7/commands-legacy/dom-count-xml-elements.md index 3744777d3cf194..fa6e2ea5355380 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-count-xml-elements.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-count-xml-elements.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The DOM Count XML elements command returns the number of “child” elements dependent on the *elementRef* parent element and named *elementName*. - -**Note:** By default, **DOM Count XML elements** is case sensitive regarding the *elementName* parameter (xml compliance). You can control the case sensitivity of the command using the XML DOM case sensitivity selector of the [XML SET OPTIONS](xml-set-options.md) command. +The DOM Count XML elements command returns the number of “child” elements dependent on the *elementRef* parent element and named *elementName*.By default, **DOM Count XML elements** is case sensitive regarding the *elementName* parameter (xml compliance). You can control the case sensitivity of the command using the XML DOM case sensitivity selector of the [XML SET OPTIONS](xml-set-options.md) command. #### System variables and sets @@ -28,4 +26,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM Get XML element](dom-get-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 726 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md b/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md index 0d6dea8d21bf04..c3700213d5e702 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-element-arrays.md @@ -60,4 +60,13 @@ For this, you can simply write: #### See also -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1097 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-element.md index 55364e7632b376..791d50ab8d192b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-element.md @@ -176,4 +176,14 @@ An error is generated when: [DOM Create XML element arrays](dom-create-xml-element-arrays.md) [DOM Get XML element](dom-get-xml-element.md) -[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) \ No newline at end of file +[DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 865 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-ref.md b/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-ref.md index e511a0a3eec9f5..56a2e59d68b456 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-ref.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-create-xml-ref.md @@ -97,4 +97,14 @@ If the command was executed correctly, the system variable OK is set to 1\. Othe #### See also [DOM CLOSE XML](dom-close-xml.md) -[DOM SET XML DECLARATION](dom-set-xml-declaration.md) \ No newline at end of file +[DOM SET XML DECLARATION](dom-set-xml-declaration.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 861 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-export-to-file.md b/versioned_docs/version-20-R7/commands-legacy/dom-export-to-file.md index 6a506997bd1680..52c5389241f01d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-export-to-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-export-to-file.md @@ -61,4 +61,14 @@ An error is generated when: #### See also [DOM EXPORT TO VAR](dom-export-to-var.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 862 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-export-to-var.md b/versioned_docs/version-20-R7/commands-legacy/dom-export-to-var.md index eb6c4b703cab02..f9f3982b384128 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-export-to-var.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-export-to-var.md @@ -54,4 +54,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [DOM EXPORT TO FILE](dom-export-to-file.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 863 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md b/versioned_docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md index 54e92dd328e23b..c465e91effb3d9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-find-xml-element-by-id.md @@ -27,4 +27,14 @@ The command returns the XML reference of the element found as a result. #### See also -[DOM Find XML element](dom-find-xml-element.md) \ No newline at end of file +[DOM Find XML element](dom-find-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1010 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-find-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-find-xml-element.md index 27b115673ee54f..22e6aaea5944d7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-find-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-find-xml-element.md @@ -116,4 +116,14 @@ An error is generated when: #### See also [DOM Count XML elements](dom-count-xml-elements.md) -[DOM Create XML element](dom-create-xml-element.md) \ No newline at end of file +[DOM Create XML element](dom-create-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 864 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md index 07ec6b55124079..3b53c2371c4634 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-first-child-xml-element.md @@ -57,4 +57,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 723 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md index 99700e5882e1da..a6eee17d4c668c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-last-child-xml-element.md @@ -42,4 +42,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 925 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md index 5db322978cfe95..11b25e03af3a30 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-next-sibling-xml-element.md @@ -59,4 +59,14 @@ If the command has been correctly executed and if the parsed element is not the #### See also -[DOM Get first child XML element](dom-get-first-child-xml-element.md) \ No newline at end of file +[DOM Get first child XML element](dom-get-first-child-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 724 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md index 1326fd3fa5b5ea..bb1c45550cadd4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-parent-xml-element.md @@ -33,4 +33,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. [DOM Get first child XML element](dom-get-first-child-xml-element.md) [DOM Get last child XML element](dom-get-last-child-xml-element.md) -[DOM Get Root XML element](dom-get-root-xml-element.md) \ No newline at end of file +[DOM Get Root XML element](dom-get-root-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 923 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md index a23d2676ee4ccb..f20283818222df 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-previous-sibling-xml-element.md @@ -32,4 +32,14 @@ If the command has been executed correctly and if the referenced element is not #### See also -[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) \ No newline at end of file +[DOM Get next sibling XML element](dom-get-next-sibling-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 924 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md index 926ceb31dc0019..a76e5d4877d887 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-root-xml-element.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### See also -[DOM Get parent XML element](dom-get-parent-xml-element.md) \ No newline at end of file +[DOM Get parent XML element](dom-get-parent-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1053 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md index 12357617eadbe8..0cd7c4243fd39c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-index.md @@ -37,4 +37,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 729 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md index f48d9a707bc9dc..08dc40da7414dd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-attribute-by-name.md @@ -48,4 +48,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 728 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md index e1926b19ab8806..2792790f3ec4d3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-child-nodes.md @@ -61,4 +61,13 @@ After executing these instructions: #### See also [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM Get XML document ref](dom-get-xml-document-ref.md) \ No newline at end of file +[DOM Get XML document ref](dom-get-xml-document-ref.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1081 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md index 51a091118c2940..a32d837ce1ea99 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-document-ref.md @@ -53,4 +53,13 @@ In this example, we want to find the DTD declaration of the XML document: #### See also [DOM Append XML child node](dom-append-xml-child-node.md) -[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) \ No newline at end of file +[DOM GET XML CHILD NODES](dom-get-xml-child-nodes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1088 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md index ebc71bde84e8b0..84698361a68ec8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element-name.md @@ -39,4 +39,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) \ No newline at end of file +[DOM SET XML ELEMENT NAME](dom-set-xml-element-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 730 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md index 12fb8d0f00cba8..6abc1ea22a1a0c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element-value.md @@ -42,4 +42,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. [DOM Get XML element](dom-get-xml-element.md) [DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) -[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) \ No newline at end of file +[DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 731 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element.md index d231e68e0a9176..5e5e6a737c54ad 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-element.md @@ -32,4 +32,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 725 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-information.md b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-information.md index 7497c232be5d62..a0821ee57779db 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-information.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-get-xml-information.md @@ -32,4 +32,13 @@ In *xmlInfo*, pass a code indicating the type of information to be retrieved. Yo #### See also -[XML GET ERROR](xml-get-error.md) \ No newline at end of file +[XML GET ERROR](xml-get-error.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 721 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-insert-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-insert-xml-element.md index 5e31b65ad66268..ed2694b02dd2dd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-insert-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-insert-xml-element.md @@ -73,4 +73,13 @@ To do this, simply execute the following code: #### See also -[DOM Append XML element](dom-append-xml-element.md) \ No newline at end of file +[DOM Append XML element](dom-append-xml-element.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1083 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-parse-xml-source.md b/versioned_docs/version-20-R7/commands-legacy/dom-parse-xml-source.md index 8eeee22dfd16d5..83c30fd148c48d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-parse-xml-source.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-parse-xml-source.md @@ -92,4 +92,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML variable](dom-parse-xml-variable.md) \ No newline at end of file +[DOM Parse XML variable](dom-parse-xml-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 719 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md b/versioned_docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md index 19713377e2f51a..850225cdd7771b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-parse-xml-variable.md @@ -82,4 +82,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also [DOM CLOSE XML](dom-close-xml.md) -[DOM Parse XML source](dom-parse-xml-source.md) \ No newline at end of file +[DOM Parse XML source](dom-parse-xml-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 720 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md b/versioned_docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md index a193421036ab88..3919d81b5ff4c0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-remove-xml-attribute.md @@ -43,4 +43,14 @@ The following code can be used to remove the first attribute "N=1": [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ELEMENT](dom-remove-xml-element.md) -[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) \ No newline at end of file +[DOM SET XML ATTRIBUTE](dom-set-xml-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1084 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-remove-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/dom-remove-xml-element.md index 943139530987b9..724b7d656b4f2c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-remove-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-remove-xml-element.md @@ -25,4 +25,14 @@ An error is generated when the element reference is invalid. #### See also [DOM Create XML element](dom-create-xml-element.md) -[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) \ No newline at end of file +[DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 869 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md b/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md index 30331e79bf7da2..d5f2dfe19002fa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-attribute.md @@ -65,4 +65,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. [DOM GET XML ATTRIBUTE BY INDEX](dom-get-xml-attribute-by-index.md) [DOM GET XML ATTRIBUTE BY NAME](dom-get-xml-attribute-by-name.md) [DOM REMOVE XML ATTRIBUTE](dom-remove-xml-attribute.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 866 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md b/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md index 1d9279cb2fbf4b..7588627a475fe7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-declaration.md @@ -36,4 +36,13 @@ The following example sets the encoding to use and the standalone option in the #### See also [DOM Create XML Ref](dom-create-xml-ref.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 859 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md b/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md index 2f5a265f89b742..49b813ceb76cd6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-element-name.md @@ -57,4 +57,14 @@ An error is generated when: #### See also -[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) \ No newline at end of file +[DOM GET XML ELEMENT NAME](dom-get-xml-element-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 867 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md b/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md index 357968767db63e..2fa94d081bb342 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/dom-set-xml-element-value.md @@ -115,4 +115,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [DOM GET XML ELEMENT VALUE](dom-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 868 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/drag-window.md b/versioned_docs/version-20-R7/commands-legacy/drag-window.md index dc675f2cd8a652..75e6e55bf5345b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/drag-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/drag-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The DRAG WINDOW command lets users drag the window on which they clicked following the movements of the mouse. Usually you call this command from within an object method of an object that can respond instantaneously to mouse clicks (i.e., invisible buttons). @@ -48,4 +45,13 @@ Then you can drag the window by clicking anywhere on the borders. #### See also [GET WINDOW RECT](get-window-rect.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 452 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/drop-position.md b/versioned_docs/version-20-R7/commands-legacy/drop-position.md index 3cd081f6726b17..aea2859f4beb77 100644 --- a/versioned_docs/version-20-R7/commands-legacy/drop-position.md +++ b/versioned_docs/version-20-R7/commands-legacy/drop-position.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Drop position command can be used to find out the location, in a “complex” destination object, where an object has been (dragged and) dropped. @@ -94,4 +91,13 @@ The left (destination) list box object method contains the following code: #### See also -*Drag and Drop* \ No newline at end of file +*Drag and Drop* + +#### Properties + +| | | +| --- | --- | +| Command number | 608 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/drop-remote-user.md b/versioned_docs/version-20-R7/commands-legacy/drop-remote-user.md index a3fa86bbf092bf..5e76664912ca64 100644 --- a/versioned_docs/version-20-R7/commands-legacy/drop-remote-user.md +++ b/versioned_docs/version-20-R7/commands-legacy/drop-remote-user.md @@ -40,4 +40,13 @@ You want to drop a specific remote user: #### See also [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) \ No newline at end of file +[SEND MESSAGE TO REMOTE USER](send-message-to-remote-user.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1633 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/duplicate-record.md b/versioned_docs/version-20-R7/commands-legacy/duplicate-record.md index 9e62acddf0d4e1..b20ff43ccd0850 100644 --- a/versioned_docs/version-20-R7/commands-legacy/duplicate-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/duplicate-record.md @@ -23,4 +23,14 @@ displayed_sidebar: docs #### See also -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 225 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md b/versioned_docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md index 28ab951ff99cb6..288bc50b319bc7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md +++ b/versioned_docs/version-20-R7/commands-legacy/dynamic-pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Dynamic pop up menu** causes a hierarchical pop-up menu to appear at the current location of the mouse or at the location set by the optional *xCoord* and *yCoord* parameters. @@ -93,4 +90,13 @@ This code allows creating a hierarchical dynamic pop up menu built upon standard [Get selected menu item parameter](get-selected-menu-item-parameter.md) [Pop up menu](pop-up-menu.md) [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1006 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/edit-access.md b/versioned_docs/version-20-R7/commands-legacy/edit-access.md index 144409be251813..a2193b2692e24f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/edit-access.md +++ b/versioned_docs/version-20-R7/commands-legacy/edit-access.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description EDIT ACCESS lets the user edit the password system. When this command is executed, the Toolbox window with only the Users and User groups pages appears. @@ -36,4 +33,14 @@ The following example displays the Users and User groups management window to th #### See also [CHANGE CURRENT USER](change-current-user.md) -[CHANGE PASSWORD](change-password.md) \ No newline at end of file +[CHANGE PASSWORD](change-password.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 281 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/edit-formula.md b/versioned_docs/version-20-R7/commands-legacy/edit-formula.md index e092c6825f783f..ac32dfeb1b15fa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/edit-formula.md +++ b/versioned_docs/version-20-R7/commands-legacy/edit-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **EDIT FORMULA** command displays the Formula editor in order to let the user write or modify a formula. The editor contains the following on opening: @@ -56,4 +53,14 @@ If the user validates the dialog box, the system variable OK is set to 1\. If th [APPLY TO SELECTION](apply-to-selection.md) [EXECUTE FORMULA](execute-formula.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 806 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/edit-item.md b/versioned_docs/version-20-R7/commands-legacy/edit-item.md index 8a35bec7409e17..db84623f635fc9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/edit-item.md +++ b/versioned_docs/version-20-R7/commands-legacy/edit-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **EDIT ITEM** command allows you to edit the current item or the item number *item* in the array or the list set in the *object* parameter. @@ -73,4 +70,13 @@ Given two columns in a list box whose variable names are “Array1” and “Arr [GOTO OBJECT](goto-object.md) [INSERT IN LIST](insert-in-list.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 870 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/enable-menu-item.md b/versioned_docs/version-20-R7/commands-legacy/enable-menu-item.md index b6a217d37d8658..3e575aa81b820e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/enable-menu-item.md +++ b/versioned_docs/version-20-R7/commands-legacy/enable-menu-item.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ENABLE MENU ITEM** command enables the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem*. You can pass -1 in *menuItem* in order to designate the last item added to the *menu*. @@ -32,4 +29,14 @@ If you omit the *process* parameter, **ENABLE MENU ITEM** applies to the menu ba #### See also -[DISABLE MENU ITEM](disable-menu-item.md) \ No newline at end of file +[DISABLE MENU ITEM](disable-menu-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 149 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/encrypt-blob.md b/versioned_docs/version-20-R7/commands-legacy/encrypt-blob.md index 33af97bdcbf205..17cf610c17aadb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/encrypt-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/encrypt-blob.md @@ -180,4 +180,13 @@ A company wants to use the Internet to exchange information. Each subsidiary rec *CryptoKey class* [DECRYPT BLOB](decrypt-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) \ No newline at end of file +[GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 689 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/encrypt-data-blob.md b/versioned_docs/version-20-R7/commands-legacy/encrypt-data-blob.md index 28a50145dac9e3..f7b0eefc21ab9a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/encrypt-data-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/encrypt-data-blob.md @@ -58,4 +58,13 @@ Encrypt a text file located in the RESOURCES folder of the database: [ENCRYPT BLOB](encrypt-blob.md) [Encrypt data file](encrypt-data-file.md) [Encrypt your own data with the 4D algorithm (blog post)](https://blog.4d.com/encrypt-your-own-data-with-the-4d-algorithm) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1773 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/encrypt-data-file.md b/versioned_docs/version-20-R7/commands-legacy/encrypt-data-file.md index 7a9f14944ff48c..bd96b27e63f733 100644 --- a/versioned_docs/version-20-R7/commands-legacy/encrypt-data-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/encrypt-data-file.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Encrypt data file** command is used to encrypt or re-encrypt the data file designated by the *dataPath* parameter associated to the *structurePath* parameter. It can also be used to remove encryption from the database. The command does not modify the original files, it returns the full path name of the folder created to backup the original data file. @@ -134,4 +131,13 @@ Re-encrypt an encrypted data file with the current key (for example, when the en [Data file encryption status](data-file-encryption-status.md) [Decrypt data BLOB](decrypt-data-blob.md) [Encrypt data BLOB](encrypt-data-blob.md) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1610 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/end-selection.md b/versioned_docs/version-20-R7/commands-legacy/end-selection.md index f9f901f1686db4..e2e345152ee5ad 100644 --- a/versioned_docs/version-20-R7/commands-legacy/end-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/end-selection.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**End selection** returns TRUE when the current record pointer is beyond the last record of the current selection of *aTable*. **End selection** is commonly used to check whether or not [NEXT RECORD](next-record.md) has moved the current record pointer past the last record. If the current selection is empty, **End selection** returns TRUE. +**End selection** returns TRUE when the current record pointer is beyond the last record of the current selection of *aTable*.is commonly used to check whether or not [NEXT RECORD](next-record.md) has moved the current record pointer past the last record. If the current selection is empty, **End selection** returns TRUE. To move the current record pointer back into the selection, use [FIRST RECORD](first-record.md), [LAST RECORD](last-record.md) or [GOTO SELECTED RECORD](goto-selected-record.md). [PREVIOUS RECORD](previous-record.md) does not move the pointer back into the selection. @@ -60,4 +60,13 @@ This form method is used during the printing of a report. It sets the variable * [Form event code](../commands/form-event-code.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 36 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/end-sql.md b/versioned_docs/version-20-R7/commands-legacy/end-sql.md index 716cf55ccca25c..005c872156fb94 100644 --- a/versioned_docs/version-20-R7/commands-legacy/end-sql.md +++ b/versioned_docs/version-20-R7/commands-legacy/end-sql.md @@ -20,4 +20,13 @@ A sequence of SQL statements must be enclosed with the [Begin SQL](begin-sql.md) #### See also -[Begin SQL](begin-sql.md) \ No newline at end of file +[Begin SQL](begin-sql.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 949 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/equal-pictures.md b/versioned_docs/version-20-R7/commands-legacy/equal-pictures.md index 11ffa56e82ce3b..f1aef5c015e786 100644 --- a/versioned_docs/version-20-R7/commands-legacy/equal-pictures.md +++ b/versioned_docs/version-20-R7/commands-legacy/equal-pictures.md @@ -41,3 +41,14 @@ Here is the code for the **Compare** button: ```4d  $equal :=Equal pictures($pict1;$pict2;$mask) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1196 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/erase-window.md b/versioned_docs/version-20-R7/commands-legacy/erase-window.md index bcc844fb615eb9..4fc7fe4cca6f84 100644 --- a/versioned_docs/version-20-R7/commands-legacy/erase-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/erase-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ERASE WINDOW** command clears the contents of the window whose reference number is passed in *window*. @@ -29,4 +26,13 @@ Do not confuse **ERASE WINDOW**, which clears the contents of a window, with [CL #### See also [GOTO XY](goto-xy.md) -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 160 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/euro-converter.md b/versioned_docs/version-20-R7/commands-legacy/euro-converter.md index 25545730cdcba5..8c397650648c1f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/euro-converter.md +++ b/versioned_docs/version-20-R7/commands-legacy/euro-converter.md @@ -78,3 +78,13 @@ Here are some examples of conversions that can be done with this command:   //Convert the value into Italian Lire  $InLires:=Euro converter($value;French Franc;Italian Lire) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 676 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/execute-formula.md b/versioned_docs/version-20-R7/commands-legacy/execute-formula.md index e33a2bb0b4cd12..86de4f8a807b64 100644 --- a/versioned_docs/version-20-R7/commands-legacy/execute-formula.md +++ b/versioned_docs/version-20-R7/commands-legacy/execute-formula.md @@ -61,4 +61,13 @@ You want to execute a formula including calls to 4D commands and tables. Since t [Command name](command-name.md) [EDIT FORMULA](edit-formula.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 63 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/execute-method-in-subform.md b/versioned_docs/version-20-R7/commands-legacy/execute-method-in-subform.md index c05dc1507359da..ab187711cf769e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/execute-method-in-subform.md +++ b/versioned_docs/version-20-R7/commands-legacy/execute-method-in-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The EXECUTE METHOD IN SUBFORM command can be used to execute the code designated by *formula* in the context of the *subformObject* subform object. @@ -75,3 +72,14 @@ If this method was used directly in the Calendar form method, you could call it #### System variables and sets If this command is executed correctly, the system variable OK is set to 1; otherwise, it is set to 0. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1085 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/execute-method.md b/versioned_docs/version-20-R7/commands-legacy/execute-method.md index abe8753f990fef..0e4bf574e1cd11 100644 --- a/versioned_docs/version-20-R7/commands-legacy/execute-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/execute-method.md @@ -31,4 +31,14 @@ If this command is executed correctly, the system variable OK is set to 1; other #### See also -[EXECUTE FORMULA](execute-formula.md) \ No newline at end of file +[EXECUTE FORMULA](execute-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1007 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/execute-on-client.md b/versioned_docs/version-20-R7/commands-legacy/execute-on-client.md index fc80ea8f6fa17d..18e9a4c4c72fbf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/execute-on-client.md +++ b/versioned_docs/version-20-R7/commands-legacy/execute-on-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **EXECUTE ON CLIENT** command forces the execution of the *methodName* method, with the parameters *param1... paramN*, if necessary, on the registered 4D Client whose name is *clientName*. 4D Client’s registered name is defined by the [REGISTER CLIENT](register-client.md) command. @@ -62,4 +59,14 @@ The **OK** system variable is equal to 1 if 4D Server has correctly received the [Execute on server](execute-on-server.md) [GET REGISTERED CLIENTS](get-registered-clients.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 651 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/execute-on-server.md b/versioned_docs/version-20-R7/commands-legacy/execute-on-server.md index bb07555057e7ad..d0e94b46fe1b42 100644 --- a/versioned_docs/version-20-R7/commands-legacy/execute-on-server.md +++ b/versioned_docs/version-20-R7/commands-legacy/execute-on-server.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Execute on server** command starts a new process on the Server machine (if it is called in Client/Server) or on the same machine (if it is called in single-user) and returns the process number for that process. @@ -191,4 +188,13 @@ Refer to the *SP-Based Services (Example)* section in the *4D Server Reference* #### See also [EXECUTE ON CLIENT](execute-on-client.md) -[New process](new-process.md) \ No newline at end of file +[New process](new-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 373 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/exp.md b/versioned_docs/version-20-R7/commands-legacy/exp.md index 533cc1077ab609..34170727505688 100644 --- a/versioned_docs/version-20-R7/commands-legacy/exp.md +++ b/versioned_docs/version-20-R7/commands-legacy/exp.md @@ -30,4 +30,13 @@ The following example assigns the exponential of 1 to *vrE* (the log of *vrE* is #### See also -[Log](log.md) \ No newline at end of file +[Log](log.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 21 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/expand-blob.md b/versioned_docs/version-20-R7/commands-legacy/expand-blob.md index 0da67a2b2843ea..e880e800c5bbeb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/expand-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/expand-blob.md @@ -63,4 +63,14 @@ The OK variable is set to 1 if the BLOB has been successfully expanded, otherwis #### See also [BLOB PROPERTIES](blob-properties.md) -[COMPRESS BLOB](compress-blob.md) \ No newline at end of file +[COMPRESS BLOB](compress-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 535 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/export-data.md b/versioned_docs/version-20-R7/commands-legacy/export-data.md index 4ca86ee60a3354..404fdfce15d056 100644 --- a/versioned_docs/version-20-R7/commands-legacy/export-data.md +++ b/versioned_docs/version-20-R7/commands-legacy/export-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **EXPORT DATA** command exports data in the *fileName* file.4D can export data in the following formats: Text, Fixed length text, XML, SYLK, DIF, DBF (dBase), and 4D. @@ -99,4 +96,14 @@ If the user clicks **Cancel** in the standard open file dialog box or in the exp [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) -[IMPORT DATA](import-data.md) \ No newline at end of file +[IMPORT DATA](import-data.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 666 | +| Thread safe | ✗ | +| Modifies variables | OK, Document | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/export-dif.md b/versioned_docs/version-20-R7/commands-legacy/export-dif.md index 65416c5297bf49..86f15b45e49862 100644 --- a/versioned_docs/version-20-R7/commands-legacy/export-dif.md +++ b/versioned_docs/version-20-R7/commands-legacy/export-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The EXPORT DIF command writes data from the records of the current selection of *aTable* in the current process. The data is written to *document*, a Windows or Macintosh DIF document on the disk. @@ -51,4 +48,14 @@ OK is set to 1 if the export is successfully completed; otherwise, it is set to [EXPORT SYLK](export-sylk.md) [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 84 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/export-structure-file.md b/versioned_docs/version-20-R7/commands-legacy/export-structure-file.md index 0b64856b5b2302..d7a28a146c46ae 100644 --- a/versioned_docs/version-20-R7/commands-legacy/export-structure-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/export-structure-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Export structure file** command breaks down the current 4D database structure into a set of text-based files or native picture files and stores them in the specified *folderPath*. By default, the entirety of the database structure (methods, forms, catalog, etc.) is exported. You can filter the contents to export using the *options* parameter (see below). @@ -116,4 +113,13 @@ You want to export only project and database methods, and a log file: #### See also -[FORM Convert to dynamic](form-convert-to-dynamic.md) \ No newline at end of file +[FORM Convert to dynamic](form-convert-to-dynamic.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1565 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/export-structure.md b/versioned_docs/version-20-R7/commands-legacy/export-structure.md index e595759632debb..da128209e8949e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/export-structure.md +++ b/versioned_docs/version-20-R7/commands-legacy/export-structure.md @@ -55,4 +55,13 @@ You want to export the current database structure in html format: #### See also -[IMPORT STRUCTURE](import-structure.md) \ No newline at end of file +[IMPORT STRUCTURE](import-structure.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1311 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/export-sylk.md b/versioned_docs/version-20-R7/commands-legacy/export-sylk.md index 87aa7077f50107..25dd30aee63a42 100644 --- a/versioned_docs/version-20-R7/commands-legacy/export-sylk.md +++ b/versioned_docs/version-20-R7/commands-legacy/export-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The EXPORT SYLK command writes data from the records of the current selection of *aTable* in the current process. The data is written to *document*, a Windows or Macintosh Sylk document on the disk. @@ -51,4 +48,14 @@ OK is set to 1 if the export is successfully completed; otherwise, it is set to [EXPORT DIF](export-dif.md) [EXPORT TEXT](export-text.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 85 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/export-text.md b/versioned_docs/version-20-R7/commands-legacy/export-text.md index d35e9ac97a5b16..952a23861f07eb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/export-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/export-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The EXPORT TEXT command writes data from the records of the current selection of *aTable* in the current process. The data is written to *document*, a Windows or Macintosh text document on the disk. @@ -53,4 +50,14 @@ OK is set to 1 if the export is successfully completed; otherwise, it is set to [EXPORT DIF](export-dif.md) [EXPORT SYLK](export-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 167 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/false.md b/versioned_docs/version-20-R7/commands-legacy/false.md index 292e18451d691e..fd3558ad8d3ab9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/false.md +++ b/versioned_docs/version-20-R7/commands-legacy/false.md @@ -28,4 +28,13 @@ The following example sets the variable *vbOptions* to False: #### See also [Not](not.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 215 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/field-name.md b/versioned_docs/version-20-R7/commands-legacy/field-name.md index 0c16c929982776..6c525ac2606d3a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/field-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/field-name.md @@ -47,4 +47,13 @@ This example displays an alert. This method passes a pointer to a field: [Field](field.md) [Last field number](last-field-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 257 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/field.md b/versioned_docs/version-20-R7/commands-legacy/field.md index 0ad09b241d36d9..c44d24c5883da1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/field.md +++ b/versioned_docs/version-20-R7/commands-legacy/field.md @@ -24,8 +24,7 @@ displayed_sidebar: docs The **Field** command has two forms: -* If you pass a table number in *tableNum* and a field number in fieldNum, **Field** returns a pointer to the field. -* If you pass a field pointer in *fieldPtr*, **Field** returns the field number of the field. +* If you pass a table number in *tableNum* and a field number in fieldNum, **Field** returns a pointer to the field.returns the field number of the field. #### Example 1 @@ -56,4 +55,13 @@ The following example sets the *FieldNum* variable to the field number of \[Tabl [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last field number](last-field-number.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 253 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/filter-event.md b/versioned_docs/version-20-R7/commands-legacy/filter-event.md index b62ad6d25f944e..bb68ea8167193c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/filter-event.md +++ b/versioned_docs/version-20-R7/commands-legacy/filter-event.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description You call the **FILTER EVENT** command from within an event-handling project method installed using the [ON EVENT CALL](on-event-call.md) command. @@ -42,4 +39,14 @@ See example for the [ON EVENT CALL](on-event-call.md) command. #### See also -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 321 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/filter-keystroke.md b/versioned_docs/version-20-R7/commands-legacy/filter-keystroke.md index bfd511b577d112..2fbc4c42998b31 100644 --- a/versioned_docs/version-20-R7/commands-legacy/filter-keystroke.md +++ b/versioned_docs/version-20-R7/commands-legacy/filter-keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **FILTER KEYSTROKE** enables you to replace the character entered by the user into a field or an enterable area with the first character of the string *filteredChar* you pass. @@ -242,4 +239,13 @@ The Get highlighted text method is listed here: [Form event code](../commands/form-event-code.md) [Get edited text](get-edited-text.md) [Is editing text](is-editing-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 389 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/find-in-array.md b/versioned_docs/version-20-R7/commands-legacy/find-in-array.md index 7052cfb0ac74e1..74ffb941c98d8d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/find-in-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/find-in-array.md @@ -108,4 +108,13 @@ You want to find an object reference: [DELETE FROM ARRAY](delete-from-array.md) [Find in sorted array](find-in-sorted-array.md) [INSERT IN ARRAY](insert-in-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 230 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/find-in-field.md b/versioned_docs/version-20-R7/commands-legacy/find-in-field.md index a0802e764081de..9b5343b6ecbfc4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/find-in-field.md +++ b/versioned_docs/version-20-R7/commands-legacy/find-in-field.md @@ -61,3 +61,13 @@ Here is an example that lets you verify the existence of a value: ``` Note the >= that lets you cover all cases. In fact, the function returns a record number and the first record is numbered 0. + + +#### Properties + +| | | +| --- | --- | +| Command number | 653 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/find-in-list.md b/versioned_docs/version-20-R7/commands-legacy/find-in-list.md index 8ebc4c124b12fd..7a2086aa30613e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/find-in-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/find-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Find in list** command returns the position or reference of the first item of the *list* that is equivalent to the string passed in *value*. If several items are found, the function can also fill an *itemsArray* array with the position or reference of each item. @@ -64,3 +61,13 @@ Given the following hierarchical list:  $vlItemPos:=(hList;"Date";0;*)   //$vlItemPos equals 0 ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 952 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/find-in-sorted-array.md b/versioned_docs/version-20-R7/commands-legacy/find-in-sorted-array.md index 2a5934b6b6e2c8..1f47742d1e7ca0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/find-in-sorted-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/find-in-sorted-array.md @@ -70,4 +70,13 @@ You want to find the number of occurrences of strings starting with "test" and c [Count in array](count-in-array.md) [Find in array](find-in-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1333 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/find-window.md b/versioned_docs/version-20-R7/commands-legacy/find-window.md index 12cfd8b6f5ddcb..50f51286559642 100644 --- a/versioned_docs/version-20-R7/commands-legacy/find-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/find-window.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Find window** command returns (if any) the reference number of the first window “touched” by the point whose coordinates passed in *left* and *top*. @@ -30,4 +27,13 @@ The *windowPart* parameter returns 3 if the window is touched, and 0 otherwise. #### See also [Frontmost window](frontmost-window.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 449 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/first-record.md b/versioned_docs/version-20-R7/commands-legacy/first-record.md index 1d07be20dae7cf..6bdf078ee10b28 100644 --- a/versioned_docs/version-20-R7/commands-legacy/first-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/first-record.md @@ -33,4 +33,14 @@ The following example makes the first record of the \[Customers\] table the firs [End selection](end-selection.md) [LAST RECORD](last-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 50 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/flush-cache.md b/versioned_docs/version-20-R7/commands-legacy/flush-cache.md index 52479ec65d27af..84bed8a9253a0d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/flush-cache.md +++ b/versioned_docs/version-20-R7/commands-legacy/flush-cache.md @@ -29,4 +29,13 @@ In normal cases, you should not call this command, as 4D saves data modification #### See also [Get database parameter](get-database-parameter.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 297 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/focus-object.md b/versioned_docs/version-20-R7/commands-legacy/focus-object.md index cf0aa60d4c4b9e..5d73258d67ba97 100644 --- a/versioned_docs/version-20-R7/commands-legacy/focus-object.md +++ b/versioned_docs/version-20-R7/commands-legacy/focus-object.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility Note This command is kept only for compatibility reasons. Starting with version 12 of 4D, it is recommended to use the [OBJECT Get pointer](object-get-pointer.md) command. @@ -46,4 +43,13 @@ The following example is an object method for a button. The object method change #### See also -[OBJECT Get pointer](object-get-pointer.md) \ No newline at end of file +[OBJECT Get pointer](object-get-pointer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 278 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/folder-list.md b/versioned_docs/version-20-R7/commands-legacy/folder-list.md index d3fb942d38a118..c8e7b754c9e445 100644 --- a/versioned_docs/version-20-R7/commands-legacy/folder-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/folder-list.md @@ -16,13 +16,21 @@ displayed_sidebar: docs #### Description -The **FOLDER LIST** command populates the Text or String array *directories* with the names of the folders located at the pathname you pass in *pathname*. - -**Note:** The *pathname* parameter only accepts absolute pathnames. +The **FOLDER LIST** command populates the Text or String array *directories* with the names of the folders located at the pathname you pass in *pathname*.The *pathname* parameter only accepts absolute pathnames. If there are no folders at the specified location, the command returns an empty array. If the pathname you pass in *pathname* is invalid, **FOLDER LIST** generate a file manager error that you can intercept using an [ON ERR CALL](on-err-call.md) method. #### See also [DOCUMENT LIST](document-list.md) -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 473 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/font-file.md b/versioned_docs/version-20-R7/commands-legacy/font-file.md index b2e524a28121e8..a9217e2348e4fa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/font-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/font-file.md @@ -47,4 +47,13 @@ You want to make sure the font used in a text area is available on the user syst #### See also -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1700 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/font-list.md b/versioned_docs/version-20-R7/commands-legacy/font-list.md index 0b351e173968ca..b649b88bd678cb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/font-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/font-list.md @@ -72,4 +72,13 @@ You want to get a list of recent fonts: *Font Type List* [OBJECT SET FONT](object-set-font.md) [SET RECENT FONTS](set-recent-fonts.md) -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 460 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/font-style-list.md b/versioned_docs/version-20-R7/commands-legacy/font-style-list.md index e5c2a13407fe73..c33c8ccb394adf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/font-style-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/font-style-list.md @@ -57,4 +57,13 @@ You want to select styles of the "Verdana" font family (if available): #### See also -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1362 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md b/versioned_docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md index 90aa0e9128788c..58ad81a45ad54f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-convert-to-dynamic.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM Convert to dynamic** command converts the *formName* (classic form) to a dynamic form and returns it in an object. @@ -63,4 +60,13 @@ If you execute the code: #### See also [DIALOG](dialog.md) -[Export structure file](export-structure-file.md) \ No newline at end of file +[Export structure file](export-structure-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1570 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-edit.md b/versioned_docs/version-20-R7/commands-legacy/form-edit.md index 0d69777f9b80e2..71853d1f5349fc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-edit.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-edit.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM EDIT** command opens the *form* associated to *aTable* in the 4D Form editor. Note that you must have access to the Design environment, otherwise the error -9804 ("Cannot open form") is generated. @@ -43,4 +40,13 @@ To open the *ContactList* project form: #### See also -*Design Object Access Commands* \ No newline at end of file +*Design Object Access Commands* + +#### Properties + +| | | +| --- | --- | +| Command number | 1749 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-first-page.md b/versioned_docs/version-20-R7/commands-legacy/form-first-page.md index b0018d98fa5350..1068539b026588 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-first-page.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-first-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description FORM FIRST PAGE changes the currently displayed form page to the first form page. If no form is being displayed or loaded by the [FORM LOAD](form-load.md) command, or if the first form page is already displayed, FORM FIRST PAGE does nothing. @@ -33,4 +30,13 @@ The following example is a one-line method called from a menu command. It displa [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 250 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-get-color-scheme.md b/versioned_docs/version-20-R7/commands-legacy/form-get-color-scheme.md index 62d56afc457eb5..dccc1025f0f9ba 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-get-color-scheme.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-get-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM Get color scheme** command returns the name of the actual color scheme of the currently displayed form. If there is no current form, the command returns an empty string. @@ -45,4 +42,13 @@ You want to load a picture depending on the form current scheme: #### See also [Get application color scheme](get-application-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1761 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-get-current-page.md b/versioned_docs/version-20-R7/commands-legacy/form-get-current-page.md index dc87ba568f6be5..36f32ad350dcfd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-get-current-page.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-get-current-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM Get current page** command returns the number of the currently displayed form page or of the current form loaded by the [FORM LOAD](form-load.md) command. @@ -69,4 +66,13 @@ In a form, when you select a menu item from the menu bar or when the form receiv [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 276 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-get-entry-order.md b/versioned_docs/version-20-R7/commands-legacy/form-get-entry-order.md index 7ce48a37cad9a3..bed091fed4052d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-get-entry-order.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-get-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM GET ENTRY ORDER** command returns in *objectNames* the sorted names of objects that define the form entry order. @@ -53,4 +50,13 @@ You want to exclude some objects from the current entry order: #### See also -[FORM SET ENTRY ORDER](form-set-entry-order.md) \ No newline at end of file +[FORM SET ENTRY ORDER](form-set-entry-order.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1469 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md b/versioned_docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md index 42c40e2eecd972..fae595dd8ea3f7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-get-horizontal-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM GET HORIZONTAL RESIZING command returns the horizontal resizing properties of the current form in the *resize*, *minWidth* and *maxWidth* variables. These properties may have been set for the form in the Form editor in Design mode or for the current process via the [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) command. #### See also -[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) \ No newline at end of file +[FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1077 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-get-names.md b/versioned_docs/version-20-R7/commands-legacy/form-get-names.md index db69f228762361..ac561124728a05 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-get-names.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-get-names.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM GET NAMES** command fills the *arrNames* array with the names of forms in the application. @@ -65,4 +62,13 @@ Examples of typical use: #### See also *Forms* -[METHOD GET PATHS FORM](method-get-paths-form.md) \ No newline at end of file +[METHOD GET PATHS FORM](method-get-paths-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1167 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-get-objects.md b/versioned_docs/version-20-R7/commands-legacy/form-get-objects.md index 5b15797622f228..520e6ba590ee46 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-get-objects.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-get-objects.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM GET OBJECTS command returns the list of all objects present in the current form in the form of (an) array(s). This list can be restricted to the current form page and can exclude objects of inherited forms. The command can be used with both input and output forms. @@ -125,4 +122,13 @@ You want to load a form and get a list of all the objects of list boxes that it [FORM GET PROPERTIES](form-get-properties.md) *Form Objects (Access)* -*Objects (Forms)* \ No newline at end of file +*Objects (Forms)* + +#### Properties + +| | | +| --- | --- | +| Command number | 898 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-get-properties.md b/versioned_docs/version-20-R7/commands-legacy/form-get-properties.md index 7432fadc1fc3b2..26b43c439ff973 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-get-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-get-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM GET PROPERTIES command returns the properties of the form *formName*. @@ -43,4 +40,13 @@ The *title* parameter returns the title of the form's window as it was defined i [FORM GET OBJECTS](form-get-objects.md) [FORM SET SIZE](form-set-size.md) -[Open form window](open-form-window.md) \ No newline at end of file +[Open form window](open-form-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 674 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md b/versioned_docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md index 8cda5b6e490db9..f7edb0e921c133 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-get-vertical-resizing.md @@ -15,13 +15,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM GET VERTICAL RESIZING command returns the vertical resizing properties of the current form in the *resize*, *minHeight* and *maxHeight* variables. These properties may have been set for the form in the Form editor in Design mode or for the current process via the [FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) command. #### See also -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1078 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-goto-page.md b/versioned_docs/version-20-R7/commands-legacy/form-goto-page.md index b5a62548060f80..b1be784327fd34 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-goto-page.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-goto-page.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **FORM GOTO PAGE** changes the currently displayed form page to the form page specified by *pageNumber*. @@ -50,4 +47,13 @@ The following example is an object method for a button. It displays a specific p [FORM Get current page](form-get-current-page.md) [FORM LAST PAGE](form-last-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 247 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-last-page.md b/versioned_docs/version-20-R7/commands-legacy/form-last-page.md index 7ae424aee2d696..dcde35c6fdc08c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-last-page.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-last-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description FORM LAST PAGE changes the currently displayed form page to the last form page. If a form is not being displayed or loaded by the [FORM LOAD](form-load.md) command, or if the last form page is already displayed, FORM LAST PAGE does nothing. @@ -33,4 +30,13 @@ The following example is a one-line method called from a menu command. It displa [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM NEXT PAGE](form-next-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 251 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-load.md b/versioned_docs/version-20-R7/commands-legacy/form-load.md index 6c94775d94c7d4..f221a71931d444 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-load.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-load.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM LOAD** command is used to load the *form* in memory in the current process along with *formData* (optional) in order to print its data or parse its contents. There can only be one current form per process. @@ -170,4 +167,13 @@ You want to print a form containing a list box. During the *on load* event, you [FORM UNLOAD](form-unload.md) [LISTBOX GET OBJECTS](listbox-get-objects.md) [OBJECT Get type](object-get-type.md) -[Print object](print-object.md) \ No newline at end of file +[Print object](print-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1103 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-next-page.md b/versioned_docs/version-20-R7/commands-legacy/form-next-page.md index 08bb8ff2883dc5..d0d969bebc1b1f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-next-page.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-next-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description FORM NEXT PAGE changes the currently displayed form page to the next form page. If no form is being displayed or loaded by the [FORM LOAD](form-load.md) command, or if the last form page is already displayed, FORM NEXT PAGE does nothing. @@ -33,4 +30,13 @@ The following example is a one-line method called from a menu command. It displa [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM PREVIOUS PAGE](form-previous-page.md) \ No newline at end of file +[FORM PREVIOUS PAGE](form-previous-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 248 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-previous-page.md b/versioned_docs/version-20-R7/commands-legacy/form-previous-page.md index 941ad12e570011..ecad1f8b90901e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-previous-page.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-previous-page.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description FORM PREVIOUS PAGE changes the currently displayed form page to the previous form page. If no form is being displayed or loaded by the [FORM LOAD](form-load.md) command, or if the first form page is already displayed, FORM PREVIOUS PAGE does nothing. @@ -33,4 +30,13 @@ The following example is a one-line method called from a menu command. It displa [FORM Get current page](form-get-current-page.md) [FORM GOTO PAGE](form-goto-page.md) [FORM LAST PAGE](form-last-page.md) -[FORM NEXT PAGE](form-next-page.md) \ No newline at end of file +[FORM NEXT PAGE](form-next-page.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 249 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-screenshot.md b/versioned_docs/version-20-R7/commands-legacy/form-screenshot.md index ee5f173603503d..e8d572313a7f84 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-screenshot.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-screenshot.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM SCREENSHOT command returns a form as a picture. This command accepts two different syntaxes: depending on the syntax used, you get either a picture of an executed form, or a picture of the form in the Form editor. @@ -38,4 +35,13 @@ By default, the command returns a screenshot of page 1 of the form. If you only #### See also -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 940 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-set-entry-order.md b/versioned_docs/version-20-R7/commands-legacy/form-set-entry-order.md index 89e83edd079ce9..95d8d6d24dbe17 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-set-entry-order.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-set-entry-order.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM SET ENTRY ORDER** command allows to set dynamically the entry order of the current form for the current process based upon the *objectNames* array. @@ -54,4 +51,13 @@ You want to set the entry order of objects in the form based upon their names: #### See also -[FORM GET ENTRY ORDER](form-get-entry-order.md) \ No newline at end of file +[FORM GET ENTRY ORDER](form-get-entry-order.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1468 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md b/versioned_docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md index 1ce7498daf261b..06eabb1a298843 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-set-horizontal-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The FORM SET HORIZONTAL RESIZING command allows you to change the horizontal resizing properties of the current form through programming. By default, these properties are set in the Design environment Form editor. New properties are set for the current process; they are not stored with the form. @@ -38,4 +35,13 @@ Refer to the example of the [FORM SET SIZE](form-set-size.md) command. [FORM GET HORIZONTAL RESIZING](form-get-horizontal-resizing.md) [FORM SET SIZE](form-set-size.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 892 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-set-input.md b/versioned_docs/version-20-R7/commands-legacy/form-set-input.md index 0c21d23750df18..799ec848c5e6bf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-set-input.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-set-input.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM SET INPUT** command sets the current input form for *aTable* to *form*, or *userForm*. The form must belong to *aTable*. @@ -108,4 +105,13 @@ which displays: [MODIFY RECORD](modify-record.md) [MODIFY SELECTION](modify-selection.md) [Open window](open-window.md) -[QUERY BY EXAMPLE](query-by-example.md) \ No newline at end of file +[QUERY BY EXAMPLE](query-by-example.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 55 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-set-output.md b/versioned_docs/version-20-R7/commands-legacy/form-set-output.md index 4234cbf3821d48..a8872df9fa7847 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-set-output.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-set-output.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM SET OUTPUT** command sets the current output form for *table* to *form*, or *userForm*. The form must belong to *aTable*. @@ -71,4 +68,13 @@ The following example uses the path to a .json form to print the records in an e [FORM SET INPUT](form-set-input.md) [MODIFY SELECTION](modify-selection.md) [PRINT LABEL](print-label.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 54 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-set-size.md b/versioned_docs/version-20-R7/commands-legacy/form-set-size.md index 562a360f73c51b..775b71ebb4a2ea 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-set-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-set-size.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM SET SIZE** command allows you to change the size of the current form by programming. The new size is defined for the current process; it is not saved with the form. @@ -124,4 +121,13 @@ The object method associated with this button is as follows: #### See also [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) \ No newline at end of file +[FORM SET VERTICAL RESIZING](form-set-vertical-resizing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 891 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md b/versioned_docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md index e33e7ec7bff11c..ad5570fae80922 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-set-vertical-resizing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM SET VERTICAL RESIZING** command allows you to change the vertical resizing properties of the current form through programming. By default, these properties are set in the Design environment Form editor. New properties are set for the current process; they are not stored with the form. @@ -38,4 +35,13 @@ Refer to the example of the [FORM SET SIZE](form-set-size.md) command. [FORM GET VERTICAL RESIZING](form-get-vertical-resizing.md) [FORM SET HORIZONTAL RESIZING](form-set-horizontal-resizing.md) -[FORM SET SIZE](form-set-size.md) \ No newline at end of file +[FORM SET SIZE](form-set-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 893 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form-unload.md b/versioned_docs/version-20-R7/commands-legacy/form-unload.md index 264464027f6721..120fb2dcc32527 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form-unload.md +++ b/versioned_docs/version-20-R7/commands-legacy/form-unload.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **FORM UNLOAD** command releases from memory the current form designated using the [FORM LOAD](form-load.md) command. @@ -23,4 +20,13 @@ Calling this command is necessary when you use the [FORM LOAD](form-load.md) com #### See also -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1299 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/form.md b/versioned_docs/version-20-R7/commands-legacy/form.md index 6939481610ced3..b76f3ffd77d35c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/form.md +++ b/versioned_docs/version-20-R7/commands-legacy/form.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Form** command returns the object associated with the current form, if any. 4D automatically associates an object to the current form in the following cases: @@ -99,4 +96,13 @@ If values are edited and the OK button is clicked, the field is updated (the par #### See also -[DIALOG](dialog.md) \ No newline at end of file +[DIALOG](dialog.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1466 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/frontmost-process.md b/versioned_docs/version-20-R7/commands-legacy/frontmost-process.md index 2f519438d9e4aa..037bbe5d9046c9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/frontmost-process.md +++ b/versioned_docs/version-20-R7/commands-legacy/frontmost-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Frontmost process** returns the number of the process whose window (or windows) are in the front. @@ -35,4 +32,13 @@ See the example for [BRING TO FRONT](bring-to-front.md). #### See also [BRING TO FRONT](bring-to-front.md) -[WINDOW LIST](window-list.md) \ No newline at end of file +[WINDOW LIST](window-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 327 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/frontmost-window.md b/versioned_docs/version-20-R7/commands-legacy/frontmost-window.md index d3402d72044c7e..7c0e5ae91e1a04 100644 --- a/versioned_docs/version-20-R7/commands-legacy/frontmost-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/frontmost-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Frontmost window command returns the window reference number of the frontmost window. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### See also [Frontmost process](frontmost-process.md) -[Next window](next-window.md) \ No newline at end of file +[Next window](next-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 447 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/generate-certificate-request.md b/versioned_docs/version-20-R7/commands-legacy/generate-certificate-request.md index 8e0f74fa18f4f5..61b67fd13cf7ed 100644 --- a/versioned_docs/version-20-R7/commands-legacy/generate-certificate-request.md +++ b/versioned_docs/version-20-R7/commands-legacy/generate-certificate-request.md @@ -85,4 +85,13 @@ Here is the **Generate** button method: #### See also [GENERATE ENCRYPTION KEYPAIR](generate-encryption-keypair.md) -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 691 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/generate-digest.md b/versioned_docs/version-20-R7/commands-legacy/generate-digest.md index 8d5ec56d9b61b4..9617e668f6e44d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/generate-digest.md +++ b/versioned_docs/version-20-R7/commands-legacy/generate-digest.md @@ -83,4 +83,13 @@ These examples illustrate how to retrieve the digest key of a text: [BASE64 ENCODE](base64-encode.md) [Generate password hash](generate-password-hash.md) *Secured Protocol* -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1147 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/generate-encryption-keypair.md b/versioned_docs/version-20-R7/commands-legacy/generate-encryption-keypair.md index 45ebf7f16ed5d6..9093f25c7274bd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/generate-encryption-keypair.md +++ b/versioned_docs/version-20-R7/commands-legacy/generate-encryption-keypair.md @@ -51,4 +51,13 @@ See example for the [ENCRYPT BLOB](encrypt-blob.md) command. [DECRYPT BLOB](decrypt-blob.md) [ENCRYPT BLOB](encrypt-blob.md) -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 688 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/generate-password-hash.md b/versioned_docs/version-20-R7/commands-legacy/generate-password-hash.md index dcddefa71e325a..19c4d0d17291fe 100644 --- a/versioned_docs/version-20-R7/commands-legacy/generate-password-hash.md +++ b/versioned_docs/version-20-R7/commands-legacy/generate-password-hash.md @@ -66,4 +66,13 @@ This example generates a password hash using bcrypt with a cost factor 4. [Generate digest](generate-digest.md) -[Verify password hash](verify-password-hash.md) \ No newline at end of file +[Verify password hash](verify-password-hash.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1533 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/generate-uuid.md b/versioned_docs/version-20-R7/commands-legacy/generate-uuid.md index f2fd89dfd8aea5..cbe8878bafd9f2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/generate-uuid.md +++ b/versioned_docs/version-20-R7/commands-legacy/generate-uuid.md @@ -29,3 +29,13 @@ Generation of a UUID in a variable:  var MyUUID : Text  MyUUID:=Generate UUID ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1066 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-4d-file.md b/versioned_docs/version-20-R7/commands-legacy/get-4d-file.md index cf51e7c1033f39..02219221f0710c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-4d-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-4d-file.md @@ -68,4 +68,13 @@ You want to get the path of the last backup file: #### See also -[File](../commands/file.md) \ No newline at end of file +[File](../commands/file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1418 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-4d-folder.md b/versioned_docs/version-20-R7/commands-legacy/get-4d-folder.md index 511f161d7c3d05..30fabd1e4d2e74 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-4d-folder.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-4d-folder.md @@ -51,8 +51,8 @@ The 4D environment uses a specific folder to store the following information: The active 4D folder is created by default at the following location: -* On Windows: *{Disk}:\\Users\\* *\\AppData\\Roaming\\* -* On macOS: *{Disk}:Users:* *:Library:Application Support:* +* On Windows: *{Disk}:\\Users\\{userName}\\AppData\\Roaming\\{applicationName}* +* On macOS: *{Disk}:Users:{userName}:Library:Application Support:{applicationName}* ##### Licenses Folder @@ -206,4 +206,14 @@ If the *folder* parameter is invalid or if the pathname returned is empty, the O [System folder](system-folder.md) [Temporary folder](temporary-folder.md) [Test path name](test-path-name.md) -[WEB SET ROOT FOLDER](web-set-root-folder.md) \ No newline at end of file +[WEB SET ROOT FOLDER](web-set-root-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 485 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md b/versioned_docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md index ad0b2a9e193f79..2a6d04026f7aaa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-adjusted-blobs-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) *Managing priorities in database cache* -[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) \ No newline at end of file +[SET BLOBS CACHE PRIORITY](set-blobs-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1428 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md b/versioned_docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md index 33bb8c294f3dda..65075db3a4127c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-adjusted-index-cache-priority.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) *Managing priorities in database cache* -[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) \ No newline at end of file +[SET INDEX CACHE PRIORITY](set-index-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1427 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md b/versioned_docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md index aaf9be537ca385..9bca9cbe52c5f6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-adjusted-table-cache-priority.md @@ -26,4 +26,13 @@ Scalar data field types include fields of date/hour, numeric, or string type. [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) *Managing priorities in database cache* -[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) \ No newline at end of file +[SET TABLE CACHE PRIORITY](set-table-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1426 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-allowed-methods.md b/versioned_docs/version-20-R7/commands-legacy/get-allowed-methods.md index cf1c1272ff3ab6..1ad8e74a27db1d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-allowed-methods.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET ALLOWED METHODS** command returns, in *methodsArray*, the names of methods that can be used to write formulas. These methods are listed at the end of the list of commands in the editor. @@ -45,4 +42,13 @@ This example authorizes a set of specific methods to create a report: #### See also -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 908 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-application-color-scheme.md b/versioned_docs/version-20-R7/commands-legacy/get-application-color-scheme.md index 94805ef1444396..3dcfb0da463a3c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-application-color-scheme.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-application-color-scheme.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get application color scheme** command returns the name of the actual color scheme in use at the application level. @@ -45,4 +42,13 @@ Please refer to the [SET APPLICATION COLOR SCHEME](set-application-color-scheme. #### See also [FORM Get color scheme](form-get-color-scheme.md) -[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) \ No newline at end of file +[SET APPLICATION COLOR SCHEME](set-application-color-scheme.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1763 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-assert-enabled.md b/versioned_docs/version-20-R7/commands-legacy/get-assert-enabled.md index 9593705255f682..15879cbbd85d7a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-assert-enabled.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-assert-enabled.md @@ -23,4 +23,13 @@ By default, assertions are enabled but they may have been disabled using the [SE [ASSERT](assert.md) [Asserted](asserted.md) -[SET ASSERT ENABLED](set-assert-enabled.md) \ No newline at end of file +[SET ASSERT ENABLED](set-assert-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1130 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-automatic-relations.md b/versioned_docs/version-20-R7/commands-legacy/get-automatic-relations.md index 322232505b1f4d..76f0acbdac69da 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-automatic-relations.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-automatic-relations.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **GET AUTOMATIC RELATIONS** command lets you know if the automatic/manual status of all manual many-to-one and one-to-many relations of the database have been modified in the current process. - -* *one*: This parameter returns **True** if a previous calll from the [SET AUTOMATIC RELATIONS](set-automatic-relations.md) command made all manual many-to-one relations automatic — for example, **[SET AUTOMATIC RELATIONS](set-automatic-relations.md "SET AUTOMATIC RELATIONS")**(True;False). +The **GET AUTOMATIC RELATIONS** command lets you know if the automatic/manual status of all manual many-to-one and one-to-many relations of the database have been modified in the current process.if a previous calll from the [SET AUTOMATIC RELATIONS](set-automatic-relations.md) command made all manual many-to-one relations automatic — for example, **[SET AUTOMATIC RELATIONS](set-automatic-relations.md "SET AUTOMATIC RELATIONS")**(True;False). This parameter returns **False** if the [SET AUTOMATIC RELATIONS](set-automatic-relations.md) command has not been called or if its previous execution did not modify manual many-to-one relations — for example, **[SET AUTOMATIC RELATIONS](set-automatic-relations.md "SET AUTOMATIC RELATIONS")**(False;False). * *many*: This parameter returns **True** if a previous call from the [SET AUTOMATIC RELATIONS](set-automatic-relations.md) command made all manual one-to-many relations automatic — for example, **[SET AUTOMATIC RELATIONS](set-automatic-relations.md "SET AUTOMATIC RELATIONS")**(True;True). This parameter returns **False** if the [SET AUTOMATIC RELATIONS](set-automatic-relations.md) command has not been called or if its previous execution did not modify manual one-to-many relations — for example, **[SET AUTOMATIC RELATIONS](set-automatic-relations.md "SET AUTOMATIC RELATIONS")**(True;False). @@ -31,4 +29,13 @@ Refer to the example of the [GET FIELD RELATION](get-field-relation.md) command. [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 899 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-cache-size.md b/versioned_docs/version-20-R7/commands-legacy/get-cache-size.md index c828e2fce3ab9e..6bb146a44e2b6a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-cache-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-cache-size.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -The **Get cache size** command returns the current database cache size in bytes. - -**Note:** This command only works in local mode (4D Server and 4D); it must not be used from 4D in remote mode. +The **Get cache size** command returns the current database cache size in bytes.This command only works in local mode (4D Server and 4D); it must not be used from 4D in remote mode. #### Example @@ -25,4 +23,13 @@ See example for [SET CACHE SIZE](set-cache-size.md) command. #### See also -[SET CACHE SIZE](set-cache-size.md) \ No newline at end of file +[SET CACHE SIZE](set-cache-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1432 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-current-printer.md b/versioned_docs/version-20-R7/commands-legacy/get-current-printer.md index e19923468d76ec..0c7ee1cb583f1b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-current-printer.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get current printer** command returns the name of the current printer defined in the 4D application. By default, on start-up of 4D, the current printer is the printer defined in the system. @@ -33,4 +30,13 @@ If no printer is installed, an error is generated. #### See also [PRINTERS LIST](printers-list.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 788 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-database-localization.md b/versioned_docs/version-20-R7/commands-legacy/get-database-localization.md index 773df210819c62..0488de2d1bb4b5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-database-localization.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-database-localization.md @@ -49,4 +49,13 @@ The current language of the database determines the .lproj folder where the prog #### See also [Localized document path](localized-document-path.md) -[SET DATABASE LOCALIZATION](set-database-localization.md) \ No newline at end of file +[SET DATABASE LOCALIZATION](set-database-localization.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1009 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-database-parameter.md b/versioned_docs/version-20-R7/commands-legacy/get-database-parameter.md index e4fc23c90c4e5f..94e228c05fe077 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-database-parameter.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-database-parameter.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get database parameter** command allows you to get the current value of a 4D database parameter. When the parameter value is a character string, it is returned in the *stringValue* parameter. @@ -134,4 +131,13 @@ In the [On Startup database method](on-startup-database-method.md), you write: [DISTINCT VALUES](distinct-values.md) [Application info](application-info.md) [QUERY SELECTION](query-selection.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 643 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-default-user.md b/versioned_docs/version-20-R7/commands-legacy/get-default-user.md index de366f9726e805..0b1fcb057b7d97 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-default-user.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-default-user.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Get default user command returns the unique user ID of the user set as “Default user” in the database Settings dialog box: @@ -23,3 +20,13 @@ displayed_sidebar: docs ![](../assets/en/commands/pict36789.en.png) If no default user has been set, the command returns 0. + + +#### Properties + +| | | +| --- | --- | +| Command number | 826 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-document-icon.md b/versioned_docs/version-20-R7/commands-legacy/get-document-icon.md index 8485dd28ae5b96..f1e38d792a90a9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-document-icon.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-document-icon.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -The GET DOCUMENT ICON command returns, in the 4D picture variable or field *icon*, the icon of the document whose name or complete pathname is passed in *docPath*. *docPath* can specify a file of any type (executable, document, shortcut or alias, etc.) or a folder. +The GET DOCUMENT ICON command returns, in the 4D picture variable or field *icon*, the icon of the document whose name or complete pathname is passed in *docPath*.can specify a file of any type (executable, document, shortcut or alias, etc.) or a folder. *docPath* contains the full pathname of the document. You can also pass the document name only or a relative pathname, in this case the document must be placed in the database current working directory (usually, the folder containing the database structure file). If you pass an empty string in *docPath*, the standard Open File dialog box appears. The user can then select the file to read. Once the dialog box is validated, the Document system variable contains the full pathname to the selected file. @@ -25,3 +25,14 @@ If you pass an empty string in *docPath*, the standard Open File dialog box appe Pass a 4D picture field or variable in *icon*. After the command is executed, this parameter contains the icon of the file (PICT format). The optional *size* parameter sets the dimensions in pixels of the returned icon. This value actually represents the side length of the square including the icon. Icons are usually defined in 32x32 pixels (“large icons”) or 16x16 pixels (“small icons”). If you pass 0 or omit this parameter, the largest available icon is returned. + + +#### Properties + +| | | +| --- | --- | +| Command number | 700 | +| Thread safe | ✓ | +| Modifies variables | Document, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-document-position.md b/versioned_docs/version-20-R7/commands-legacy/get-document-position.md index b6ff0272f072b0..03f4139d930f52 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-document-position.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-document-position.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Description -This command operates only on a document that is currently open whose document reference number you pass in *docRef*. - -**Get document position** returns the position, starting from the beginning of the document, where the next read ([RECEIVE PACKET](receive-packet.md)) or write ([SEND PACKET](send-packet.md)) will occur. +This command operates only on a document that is currently open whose document reference number you pass in *docRef*.returns the position, starting from the beginning of the document, where the next read ([RECEIVE PACKET](receive-packet.md)) or write ([SEND PACKET](send-packet.md)) will occur. #### See also [RECEIVE PACKET](receive-packet.md) [SEND PACKET](send-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 481 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-document-properties.md b/versioned_docs/version-20-R7/commands-legacy/get-document-properties.md index 00bd3f8a63dfc3..3fb5ffcc5a389b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-document-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-document-properties.md @@ -207,4 +207,14 @@ Once this is implemented in the database, we have all we need to write the proje #### See also -[SET DOCUMENT PROPERTIES](set-document-properties.md) \ No newline at end of file +[SET DOCUMENT PROPERTIES](set-document-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 477 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-document-size.md b/versioned_docs/version-20-R7/commands-legacy/get-document-size.md index 0f4b9d1f8f22c3..c5f492861534bf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-document-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-document-size.md @@ -29,4 +29,14 @@ On Macintosh, if you do not pass the optional *\** parameter, the size of the da [Get document position](get-document-position.md) [SET DOCUMENT POSITION](set-document-position.md) -[SET DOCUMENT SIZE](set-document-size.md) \ No newline at end of file +[SET DOCUMENT SIZE](set-document-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 479 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-edited-text.md b/versioned_docs/version-20-R7/commands-legacy/get-edited-text.md index 0ecaa05679d703..08cff48ce3bdc5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-edited-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-edited-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get edited text** command is mainly to be used with the On After Edit form event to retrieve the text as it is being entered. It can also be used with the On Before Keystroke and On After Keystroke form events. For more information about those form events, please refer to the description of the command [Form event code](../commands/form-event-code.md). @@ -67,4 +64,13 @@ Here is an example of how to process on the fly characters entered in a text fie #### See also [Form event code](../commands/form-event-code.md) -[Is editing text](is-editing-text.md) \ No newline at end of file +[Is editing text](is-editing-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 655 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-external-data-path.md b/versioned_docs/version-20-R7/commands-legacy/get-external-data-path.md index 612859e463bfec..7c2f3a1355bc09 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-external-data-path.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-external-data-path.md @@ -30,4 +30,13 @@ More particularly, this command lets you recopy the external file. #### See also -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1133 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-field-entry-properties.md b/versioned_docs/version-20-R7/commands-legacy/get-field-entry-properties.md index c397c1151795cf..997a61de916d02 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-field-entry-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-field-entry-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The GET FIELD ENTRY PROPERTIES command returns the data entry properties for the field specified by *tableNum* and *fieldNum* or by *fieldPtr*. @@ -43,4 +40,13 @@ If there is no choice list associated to the field or if the field type is not s [GET FIELD PROPERTIES](get-field-properties.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[GET TABLE PROPERTIES](get-table-properties.md) \ No newline at end of file +[GET TABLE PROPERTIES](get-table-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 685 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-field-properties.md b/versioned_docs/version-20-R7/commands-legacy/get-field-properties.md index 1571eb748b6422..2f629ff2fc4df2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-field-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-field-properties.md @@ -73,4 +73,13 @@ This example sets the variables *vType*, *vLength*, *vIndex*, *vUnique* and *vIn [Field](field.md) [Field name](field-name.md) -[SET INDEX](set-index.md) \ No newline at end of file +[SET INDEX](set-index.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 258 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-field-relation.md b/versioned_docs/version-20-R7/commands-legacy/get-field-relation.md index f437d84a7a8895..82a49e43e2b356 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-field-relation.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-field-relation.md @@ -82,4 +82,13 @@ The following code illustrates the various possibilities offered by the **GET FI [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET RELATION PROPERTIES](get-relation-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 920 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-field-titles.md b/versioned_docs/version-20-R7/commands-legacy/get-field-titles.md index 66de3fd294f4a7..8b4af2153273fb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-field-titles.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-field-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET FIELD TITLES** command fills the *fieldTitles* and *fieldNums* arrays with the names and numbers of database fields for the desired *aTable*. The contents of these two arrays are synchronized. @@ -31,4 +28,13 @@ In both cases, the command does not return invisible fields. #### See also [GET TABLE TITLES](get-table-titles.md) -[SET FIELD TITLES](set-field-titles.md) \ No newline at end of file +[SET FIELD TITLES](set-field-titles.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 804 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md b/versioned_docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md index 58d88eb4e0eca5..e4365bd95740ed 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-file-from-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Get file from pasteboard command returns the absolute pathname of a file included in a drag and drop operation. Several files can be selected and moved simultaneously. The *xIndex* parameter is used to designate a file from among the set of files selected. @@ -43,4 +40,13 @@ The following example can be used to retrieve in an array all the pathnames of t #### See also -[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) \ No newline at end of file +[SET FILE TO PASTEBOARD](set-file-to-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 976 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-group-access.md b/versioned_docs/version-20-R7/commands-legacy/get-group-access.md index c9b4d9b83485af..638a1b4fd811a4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-group-access.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-group-access.md @@ -34,4 +34,13 @@ You want to check if the current user belongs to the "plugins" group: #### See also -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1738 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-group-list.md b/versioned_docs/version-20-R7/commands-legacy/get-group-list.md index 0f6d98b4a6b8f0..6aef370aedf450 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-group-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-group-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description GET GROUP LIST populates the arrays *groupNames* and *groupNumbers* with the names and unique ID numbers of the groups as they appear in the Password editor window. @@ -34,4 +31,14 @@ If you do not have the proper access privileges for calling GET GROUP LIST or if [GET GROUP PROPERTIES](get-group-properties.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 610 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-group-properties.md b/versioned_docs/version-20-R7/commands-legacy/get-group-properties.md index 59a8468446af6e..0e369f6def40a0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-group-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-group-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description GET GROUP PROPERTIES returns the properties of the group whose unique group ID number you pass in *groupID*. You must pass a valid group ID number returned by the command [GET GROUP LIST](get-group-list.md). @@ -41,4 +38,14 @@ If you do not have the proper access privileges for calling GET GROUP PROPERTIES [GET GROUP LIST](get-group-list.md) [GET USER LIST](get-user-list.md) -[Set group properties](set-group-properties.md) \ No newline at end of file +[Set group properties](set-group-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 613 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-highlight.md b/versioned_docs/version-20-R7/commands-legacy/get-highlight.md index 7b1c52a24c2162..c967b2687be2a2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-highlight.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-highlight.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The GET HIGHLIGHT command is used to determine what text is currently highlighted in *object*. @@ -65,4 +62,13 @@ Modification of highlighted text style: [FILTER KEYSTROKE](filter-keystroke.md) [HIGHLIGHT TEXT](highlight-text.md) -[Keystroke](keystroke.md) \ No newline at end of file +[Keystroke](keystroke.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 209 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-highlighted-records.md b/versioned_docs/version-20-R7/commands-legacy/get-highlighted-records.md index 3a38b5889bc859..c153d83103ab3b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-highlighted-records.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-highlighted-records.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET HIGHLIGHTED RECORDS** command stores in the set designated by the *setName* parameter the highlighted records (i.e., the records highlighted by the user in the list form) in the *aTable* passed as parameter. If the *aTable* parameter is omitted, the table of the current form or subform is used. @@ -44,4 +41,14 @@ If the command was executed properly, the system variable OK is set to 1\. Other #### See also -[HIGHLIGHT RECORDS](highlight-records.md) \ No newline at end of file +[HIGHLIGHT RECORDS](highlight-records.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 902 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-indexed-string.md b/versioned_docs/version-20-R7/commands-legacy/get-indexed-string.md index 9589d551ca850b..ff3c093db05277 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-indexed-string.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-indexed-string.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get indexed string** command returns: @@ -46,4 +43,14 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero). [Get string resource](get-string-resource.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 510 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-last-update-log-path.md b/versioned_docs/version-20-R7/commands-legacy/get-last-update-log-path.md index 4e71963143368c..1868c021488e59 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-last-update-log-path.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-last-update-log-path.md @@ -24,4 +24,13 @@ This command is intended to be used in an automatic update process for a merged #### See also [RESTART 4D](restart-4d.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1301 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-list-item-font.md b/versioned_docs/version-20-R7/commands-legacy/get-list-item-font.md index 2fab280c185fb1..a4974b96184d4b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-list-item-font.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get list item font** command returns the current character font name of the item specified by the *itemRef* parameter of the list whose reference number or object name is passed in *list*. @@ -33,4 +30,13 @@ Lastly, you can pass \* in *itemRef*: in this case, the command will get the fon #### See also -[SET LIST ITEM FONT](set-list-item-font.md) \ No newline at end of file +[SET LIST ITEM FONT](set-list-item-font.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 954 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-list-item-icon.md b/versioned_docs/version-20-R7/commands-legacy/get-list-item-icon.md index 2460969ecb8006..a5ca688ea961cf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-list-item-icon.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST ITEM ICON** command returns, in *icon*, the icon associated with the item whose reference number is passed in *itemRef* in the list whose reference number or object name is passed in *list*. @@ -39,4 +36,13 @@ If no icon is associated with the item, the icon variable is returned empty. #### See also [GET LIST ITEM PROPERTIES](get-list-item-properties.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 951 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md b/versioned_docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md index b1171a52582018..31f1f367f13768 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-list-item-parameter-arrays.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST ITEM PARAMETER ARRAYS** command lets you retrieve all the parameters in a single call (as well as, optionally, their values) that are associated with the *itemRef* item in the hierarchical list whose reference or object name is passed in the *list* parameter. @@ -76,4 +73,13 @@ If you want to get the parameter values as well, you write: #### See also -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1195 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-list-item-parameter.md b/versioned_docs/version-20-R7/commands-legacy/get-list-item-parameter.md index 72860f425c0400..a7c73df51b6a6a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-list-item-parameter.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST ITEM PARAMETER** command is used to find out the current *value* of the *selector* parameter for the *itemRef* item of the hierarchical list whose reference or object name is passed in the *list* parameter. @@ -37,4 +34,13 @@ In *selector*, you can pass the Additional text or Associated standard action co #### See also *Hierarchical Lists* -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 985 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-list-item-properties.md b/versioned_docs/version-20-R7/commands-legacy/get-list-item-properties.md index b9982da3ddc228..d8d69056a5fade 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-list-item-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST ITEM PROPERTIES** command returns the properties of the item designated by the *itemRef* parameterwithin the list whose list reference number or object name is passed in *list*. @@ -54,4 +51,13 @@ For details about these properties, see the description of the command [SET LIST [GET LIST ITEM](get-list-item.md) [GET LIST ITEM ICON](get-list-item-icon.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 631 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-list-item.md b/versioned_docs/version-20-R7/commands-legacy/get-list-item.md index 98b5b72986303c..b11a2e49f7d3d5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-list-item.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST ITEM** command returns information about the item specified by *itemPos* of the list whose reference number or object name is passed in *list*. @@ -67,4 +64,13 @@ Refer to the example of the [APPEND TO LIST](append-to-list.md) command. [List item position](list-item-position.md) [Selected list items](selected-list-items.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 378 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-list-properties.md b/versioned_docs/version-20-R7/commands-legacy/get-list-properties.md index a5b4184b4b42b9..5ae934f8d22b07 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-list-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET LIST PROPERTIES** command returns information about the list whose reference number you pass in *list*. @@ -44,4 +41,13 @@ For a complete description of the appearance, node icons, minimal line height an #### See also -[SET LIST PROPERTIES](set-list-properties.md) \ No newline at end of file +[SET LIST PROPERTIES](set-list-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 632 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-macro-parameter.md b/versioned_docs/version-20-R7/commands-legacy/get-macro-parameter.md index da02bfb3771959..407ed0214a5a69 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-macro-parameter.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET MACRO PARAMETER** command returns, in the *paramText* parameter, all or part of the text of the method from which it was called. @@ -36,4 +33,13 @@ Refer to the example of the [SET MACRO PARAMETER](set-macro-parameter.md) comman #### See also -[SET MACRO PARAMETER](set-macro-parameter.md) \ No newline at end of file +[SET MACRO PARAMETER](set-macro-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 997 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-bar-reference.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-bar-reference.md index dd8b90707ea15b..4b3e0f564b3b98 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-bar-reference.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-bar-reference.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu bar reference** command returns the ID of the current menu bar or the menu bar of a specific process. @@ -41,4 +38,13 @@ Refer to the example of the [GET MENU ITEMS](get-menu-items.md) command. #### See also -[SET MENU BAR](set-menu-bar.md) \ No newline at end of file +[SET MENU BAR](set-menu-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 979 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-icon.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-icon.md index 048fe7a87ba98b..1119c863dece50 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-icon.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The GET MENU ITEM ICON command returns, in the *iconRef* variable, the reference of any icon that is associated with the menu item designated by the *menu* and *menuItem* parameters. This reference is the pathname or number of the picture. @@ -35,4 +32,13 @@ If no icon is associated with the menu item, the command returns a blank value. #### See also -[SET MENU ITEM ICON](set-menu-item-icon.md) \ No newline at end of file +[SET MENU ITEM ICON](set-menu-item-icon.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 983 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-key.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-key.md index ca6367bac1dc18..873bddc8b4388e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-key.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-key.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item key** command returns the code of the **Ctrl** (Windows) or **Command** (Macintosh) shortcut for the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -50,4 +47,14 @@ To obtain the shortcut associated with a menu item, it is useful to implement a #### See also [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 424 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-mark.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-mark.md index b3c817cd5bc125..161191c9ea431d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-mark.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item mark** command returns the check mark of the menu item whose number or reference is passed in *menu* and whose item number is passed in *menuItem*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -41,4 +38,14 @@ The following example toggles the check mark of a menu item: #### See also -[SET MENU ITEM MARK](set-menu-item-mark.md) \ No newline at end of file +[SET MENU ITEM MARK](set-menu-item-mark.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 428 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-method.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-method.md index 7916b8d4826ea3..6363d54225a8d2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Get menu item method command returns the name of the 4D project method associated with the menu item designated by the *menu* and *menuItem* parameters. @@ -31,4 +28,13 @@ The command returns the name of the 4D method as a character string (expression) #### See also -[SET MENU ITEM METHOD](set-menu-item-method.md) \ No newline at end of file +[SET MENU ITEM METHOD](set-menu-item-method.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 981 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md index 0b74bf109be2c9..c2cd3127be266e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-modifiers.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item modifiers** command returns any additional modifier(s) associated with the standard shortcut of the menu item designated by the *menu* and *menuItem* parameters. @@ -52,4 +49,13 @@ Refer to the example of the [Get menu item key](get-menu-item-key.md) command. #### See also [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 980 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-parameter.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-parameter.md index b97a1579eeac12..efbf214ec06a6d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-parameter.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item parameter** command returns the custom character string associated with the menu item designated by the *menu* and *menuItem* parameters. This string must have been set beforehand using the [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) command. @@ -26,4 +23,13 @@ displayed_sidebar: docs [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get selected menu item parameter](get-selected-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1003 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-property.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-property.md index c47858ca559d9c..7b3cf1822bcc63 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-property.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET MENU ITEM PROPERTY** command returns, in the *value* parameter, the current value of the property of the menu item designated by the *menu* and *menuItem* parameters. @@ -34,4 +31,13 @@ In the *property* parameter, pass the property for which you want to get the val #### See also -[SET MENU ITEM PROPERTY](set-menu-item-property.md) \ No newline at end of file +[SET MENU ITEM PROPERTY](set-menu-item-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 972 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-style.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-style.md index 54cba14bb4cddd..7d1605d1365aa9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-item-style.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item style** command returns the font style of the menu item whose number or reference is passed in *menu* and whose item number is passed in *menuItem*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -49,4 +46,14 @@ To test if a menu item is displayed in bold, you write: #### See also -[SET MENU ITEM STYLE](set-menu-item-style.md) \ No newline at end of file +[SET MENU ITEM STYLE](set-menu-item-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 426 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-item.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-item.md index 194796ac347a68..15f66d7e9fb576 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-item.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-item.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu item** command returns the text of the menu item whose menu and item numbers are passed in *menu* and *menuItem*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -30,4 +27,14 @@ If you omit the *process* parameter, **Get menu item** applies to the menu bar f #### See also [Get menu item key](get-menu-item-key.md) -[SET MENU ITEM](set-menu-item.md) \ No newline at end of file +[SET MENU ITEM](set-menu-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 422 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-items.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-items.md index 9f352e02f0e37d..59f2234c8fc953 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-items.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-items.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET MENU ITEMS** command returns, in the *menuTitlesArray* and *menuRefsArray* arrays, the titles and IDs of all the items of the menu or menu bar designated by the *menu* parameter. @@ -36,3 +33,13 @@ You want to find out the contents of the menu bar of the current process:  MenuBarRef:=Get menu bar reference(Frontmost process)  GET MENU ITEMS(MenuBarRef;menuTitlesArray;menuRefsArray) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 977 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-menu-title.md b/versioned_docs/version-20-R7/commands-legacy/get-menu-title.md index 5e1a93245ded58..bb625e2dc43285 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-menu-title.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-menu-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get menu title** command returns the title of the menu whose number or reference is passed in *menu.* @@ -28,4 +25,14 @@ If you omit the *process* parameter, **Get menu title** applies to the menu bar #### See also -[Count menus](count-menus.md) \ No newline at end of file +[Count menus](count-menus.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 430 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-missing-table-names.md b/versioned_docs/version-20-R7/commands-legacy/get-missing-table-names.md index b81d67786087de..4fb9ae207744af 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-missing-table-names.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-missing-table-names.md @@ -32,4 +32,13 @@ Once you have identified the missing tables of the database, you can reactivate #### See also -[REGENERATE MISSING TABLE](regenerate-missing-table.md) \ No newline at end of file +[REGENERATE MISSING TABLE](regenerate-missing-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1125 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md b/versioned_docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md index 4efa3fa8e1f253..2d28b66c0da9dd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-pasteboard-data-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PASTEBOARD DATA TYPE** command gets the list of data types present in the pasteboard. This command should generally be used in the context of a drag and drop operation, within the On Drop or On Drag Over form events of the destination object. More particularly, it allows the pasteboard to be checked for the presence of a specific type of data. @@ -35,4 +32,13 @@ For more information about the data types supported, please refer to the *Managi #### See also -*Managing Pasteboards* \ No newline at end of file +*Managing Pasteboards* + +#### Properties + +| | | +| --- | --- | +| Command number | 958 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-pasteboard-data.md b/versioned_docs/version-20-R7/commands-legacy/get-pasteboard-data.md index a77849aafdbf62..4f4e8df3aef7f1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-pasteboard-data.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-pasteboard-data.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PASTEBOARD DATA** command returns, in the BLOB field or in the *data* variable, the data present in the pasteboard and whose type you pass in *dataType*. (If the pasteboard contains text copied within 4D, then the BLOB’s character set is likely to be UTF-16.) @@ -55,4 +52,14 @@ If the data is correctly extracted, OK is set to 1; otherwise OK is set to 0 and [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 401 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-picture-file-name.md b/versioned_docs/version-20-R7/commands-legacy/get-picture-file-name.md index d6d8c72414ab0a..9298caaf569810 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-picture-file-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-picture-file-name.md @@ -24,4 +24,13 @@ If the picture does not have a default name, the command returns an empty string #### See also -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1171 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-picture-formats.md b/versioned_docs/version-20-R7/commands-legacy/get-picture-formats.md index 968e8f40e4c0b7..910172159f2973 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-picture-formats.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-picture-formats.md @@ -45,4 +45,13 @@ You want to know the picture formats stored in a field for the current record: #### See also - \ No newline at end of file + + +#### Properties + +| | | +| --- | --- | +| Command number | 1406 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-picture-from-library.md b/versioned_docs/version-20-R7/commands-legacy/get-picture-from-library.md index f281e04dc9bcba..777e1e76e6e5ab 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-picture-from-library.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-picture-from-library.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PICTURE FROM LIBRARY** command returns in the *picture* parameter the Picture Library graphic whose reference number is passed in *picRef* or whose name is passed in *picName*. @@ -55,4 +52,14 @@ If there is not enough memory to return the picture, an error -108 is generated. [PICTURE LIBRARY LIST](picture-library-list.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 565 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md b/versioned_docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md index dd209f9cc1b944..129bde8b5ee749 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-picture-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description GET PICTURE FROM PASTEBOARD returns the picture present in the pasteboard in the *picture* field or variable. @@ -42,4 +39,14 @@ If the picture is correctly extracted, OK is set to 1; otherwise OK is set to 0. [GET PASTEBOARD DATA](get-pasteboard-data.md) [Get text from pasteboard](get-text-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 522 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-picture-keywords.md b/versioned_docs/version-20-R7/commands-legacy/get-picture-keywords.md index 7217e3ced9aa97..8ed159cb56177d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-picture-keywords.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-picture-keywords.md @@ -32,4 +32,13 @@ If the picture does not contain keywords or IPTC/Keywords metadata, the command #### See also [GET PICTURE METADATA](get-picture-metadata.md) -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1142 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-picture-metadata.md b/versioned_docs/version-20-R7/commands-legacy/get-picture-metadata.md index f71e9eccc932b9..57200a2ed5628a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-picture-metadata.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-picture-metadata.md @@ -99,4 +99,14 @@ The *OK* system variable returns 1 if the retrieval of the metadata has proceede [GET PICTURE KEYWORDS](get-picture-keywords.md) *Picture Metadata Names* *Picture Metadata Values* -[SET PICTURE METADATA](set-picture-metadata.md) \ No newline at end of file +[SET PICTURE METADATA](set-picture-metadata.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1122 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-picture-resource.md b/versioned_docs/version-20-R7/commands-legacy/get-picture-resource.md index 338189e309afad..1809a219886a71 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-picture-resource.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-picture-resource.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PICTURE RESOURCE** command returns in the picture field or variable *resData* the picture stored in the picture (“PICT”) resource whose ID is passed in *resID*. @@ -43,4 +40,14 @@ If there is not enough memory to load the picture, an error is generated. You ca #### See also -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 502 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-plugin-access.md b/versioned_docs/version-20-R7/commands-legacy/get-plugin-access.md index a7e2e1f1eea8c2..efc68e5b32e3ad 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-plugin-access.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Get plugin access command returns the name of the user group authorized to use the plug-in whose number was passed in the *plugIn* parameter. If there is no group associated with the plug-in, the command returns an empty string (""). @@ -35,4 +32,13 @@ Pass the number of the plug-in for which you want to find out the associated gro #### See also [SET GROUP ACCESS](set-group-access.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 846 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-pointer.md b/versioned_docs/version-20-R7/commands-legacy/get-pointer.md index 19fa61db343a4e..00daf0849fb04d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-pointer.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-pointer.md @@ -49,4 +49,13 @@ Using pointers to elements of two-dimensional arrays: #### See also [Field](field.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 304 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-print-marker.md b/versioned_docs/version-20-R7/commands-legacy/get-print-marker.md index 6cbd108913dc67..ad09a5de3437cc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-print-marker.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-print-marker.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get print marker** command enables you to get the current position of a marker during printing. @@ -63,4 +60,13 @@ Refer to the example of the [SET PRINT MARKER](set-print-marker.md) command. #### See also [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 708 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-print-option.md b/versioned_docs/version-20-R7/commands-legacy/get-print-option.md index 3f9050eeafead1..dbb3cf71d50aee 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-print-option.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PRINT OPTION** command returns the current value(s) of a print option. @@ -51,4 +48,14 @@ The system variable OK is set to 1 if the command has been executed correctly; o #### See also [PRINT OPTION VALUES](print-option-values.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 734 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-print-preview.md b/versioned_docs/version-20-R7/commands-legacy/get-print-preview.md index e6e91892421a6f..9656f39ca481f2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-print-preview.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get print preview** command returns True if the [SET PRINT PREVIEW](set-print-preview.md) command was called with the **True** value in the current process. @@ -25,4 +22,13 @@ Note that the user can modify this option before validating the dialog box. To g #### See also [Is in print preview](is-in-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1197 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-printable-area.md b/versioned_docs/version-20-R7/commands-legacy/get-printable-area.md index 68520d4e73aa61..75b52e94a1a2bd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-printable-area.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-printable-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PRINTABLE AREA** command returns the size, in pixels, of the *height* and *width* parameters of the printable area. This size depends on the current printing parameters, the paper orientation, etc. @@ -40,4 +37,13 @@ To know the total size of the page, you can: #### See also [GET PRINTABLE MARGIN](get-printable-margin.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 703 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-printable-margin.md b/versioned_docs/version-20-R7/commands-legacy/get-printable-margin.md index 58afaa7c94e582..744ef03faf82a1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-printable-margin.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The GET PRINTABLE MARGIN command returns the current values of the different margins defined using the [Print form](print-form.md), [PRINT SELECTION](print-selection.md) and [PRINT RECORD](print-record.md) commands. @@ -47,4 +44,13 @@ It is possible to base the form printing carried out using the [Print form](prin [GET PRINTABLE AREA](get-printable-area.md) [Print form](print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 711 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-printed-height.md b/versioned_docs/version-20-R7/commands-legacy/get-printed-height.md index 1aa442fd5ee108..e6f339b489fb1c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-printed-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-printed-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get printed height** command returns the overall height (in pixels) of the section printed using the [Print form](print-form.md) command. @@ -32,4 +29,13 @@ The right and left printable margins, unlike the top and bottom margins (which m [GET PRINTABLE AREA](get-printable-area.md) [Print form](print-form.md) -[SET PRINTABLE MARGIN](set-printable-margin.md) \ No newline at end of file +[SET PRINTABLE MARGIN](set-printable-margin.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 702 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-process-variable.md b/versioned_docs/version-20-R7/commands-legacy/get-process-variable.md index 04054d91bc6fe6..c15ab5202ae88a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-process-variable.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET PROCESS VARIABLE** command reads the *srcVar* process variables (*srvVar2*, etc.) from the source process whose number is passed in *process*, and returns their current values in the *dstVar* variables ( *dstVar2*, etc.) of the current process. @@ -114,4 +111,13 @@ This example reads the source process instances of the variables *v1*,*v2*,*v3* [POST OUTSIDE CALL](post-outside-call.md) *Processes* [SET PROCESS VARIABLE](set-process-variable.md) -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 371 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-query-destination.md b/versioned_docs/version-20-R7/commands-legacy/get-query-destination.md index 89fb6c2ed36d44..086578f7ea67af 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-query-destination.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-query-destination.md @@ -55,4 +55,13 @@ We want to modify the query destination temporarily and then restore the previou #### See also -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1155 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-query-limit.md b/versioned_docs/version-20-R7/commands-legacy/get-query-limit.md index 3352d61b4b3cac..d949787041d050 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-query-limit.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-query-limit.md @@ -23,4 +23,13 @@ By default, if no limit is set, the command returns 0. #### See also -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1156 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-registered-clients.md b/versioned_docs/version-20-R7/commands-legacy/get-registered-clients.md index 8ed86387083225..e26ae6a10eb7b9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-registered-clients.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-registered-clients.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET REGISTERED CLIENTS** command fills two arrays: @@ -46,4 +43,14 @@ If the operation was successful, the OK system variable is equal to 1. [EXECUTE ON CLIENT](execute-on-client.md) [REGISTER CLIENT](register-client.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 650 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-relation-properties.md b/versioned_docs/version-20-R7/commands-legacy/get-relation-properties.md index db73e0d3cdfdf7..3a8f7e21a205c9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-relation-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-relation-properties.md @@ -42,4 +42,13 @@ Once the command has been executed: [GET FIELD PROPERTIES](get-field-properties.md) [GET TABLE PROPERTIES](get-table-properties.md) [SET AUTOMATIC RELATIONS](set-automatic-relations.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 686 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-resource-name.md b/versioned_docs/version-20-R7/commands-legacy/get-resource-name.md index 9af5ef8e6d1839..1208d26e79b0e0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-resource-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-resource-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get resource name** command returns the name of the resource whose type is passed in *resType* and whose ID number is passed in *resID*. @@ -26,3 +23,13 @@ displayed_sidebar: docs If you pass a valid resource file reference number in the parameter *resFile*, the resource is searched for within that file only. If you do not pass the parameter *resFile*, the resource is searched for within the current open resource files. If the resource does not exist, **Get resource name** returns an empty string. + + +#### Properties + +| | | +| --- | --- | +| Command number | 513 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-resource-properties.md b/versioned_docs/version-20-R7/commands-legacy/get-resource-properties.md index f21b319778ada5..90e66381e88dad 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-resource-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-resource-properties.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get resource properties** command returns the attributes of the resource whose type is passed in *resType* and whose ID number is passed in *resID*. @@ -36,3 +33,14 @@ See example for the [Get resource name](get-resource-name.md) command. #### System variables and sets The OK variable is set to 0 if the resource does not exist; otherwise, it is set to 1. + + +#### Properties + +| | | +| --- | --- | +| Command number | 515 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-resource.md b/versioned_docs/version-20-R7/commands-legacy/get-resource.md index c686cbb1b25a7f..a161c21a39ec9e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-resource.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-resource.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET RESOURCE** command returns in the BLOB field or variable *resData* the contents of the resource whose type and ID is passed in *resType* and *resID*. @@ -50,4 +47,14 @@ If there is not enough memory to load the resource, an error is generated. You c #### See also -*Resources* \ No newline at end of file +*Resources* + +#### Properties + +| | | +| --- | --- | +| Command number | 508 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md b/versioned_docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md index 2a024d7e0b5dcf..3cec5f1218fbf7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-selected-menu-item-parameter.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get selected menu item parameter** command returns the custom character string associated with the selected menu item. This parameter must have been set beforehand using the [SET MENU ITEM PARAMETER](set-menu-item-parameter.md) command. @@ -26,4 +23,13 @@ If no menu item has been selected, the command returns an empty string "". [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1005 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-serial-port-mapping.md b/versioned_docs/version-20-R7/commands-legacy/get-serial-port-mapping.md index 29732549899de8..02682d20909dc5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-serial-port-mapping.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-serial-port-mapping.md @@ -48,4 +48,13 @@ This project method can be used to address the same serial port (without protoco #### See also -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 909 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-string-resource.md b/versioned_docs/version-20-R7/commands-legacy/get-string-resource.md index fc9ec1e1d23608..51a9f5557789db 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-string-resource.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-string-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get string resource** command returns the string stored in the string (“STR ”) resource whose ID is passed in *resID*. @@ -44,4 +41,14 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero). [Get indexed string](get-indexed-string.md) [Get text resource](get-text-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 506 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-style-sheet-info.md b/versioned_docs/version-20-R7/commands-legacy/get-style-sheet-info.md index 9820121d22528f..ac6b3dba5f2eac 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-style-sheet-info.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-style-sheet-info.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET STYLE SHEET INFO** command returns the current configuration of the style sheet designated in the *styleSheetName* parameter. @@ -66,4 +63,14 @@ You want to find out the current configuration of the "Automatic" style sheet: #### See also [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1256 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-subrecord-key.md b/versioned_docs/version-20-R7/commands-legacy/get-subrecord-key.md index bc2a5c7b26b37d..9b12947f8c4372 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-subrecord-key.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-subrecord-key.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The Get subrecord key command facilitates the migration of 4D code using converted subtables to standard code for working with tables. - -**Reminder:** Beginning with version 11 of 4D, subtables are not supported. When a older database is converted, any existing subtables are transformed into standard tables that are linked with the original tables by an automatic relation. The former subtable becomes the Many table and the original table is the One table. In the One table, the former subtable field is transformed into a special field of the "Subtable Relation" type and in the Many field, a special "Subtable Relation" type field is added named “id\_added\_by\_converter”. +The Get subrecord key command facilitates the migration of 4D code using converted subtables to standard code for working with tables.Beginning with version 11 of 4D, subtables are not supported. When a older database is converted, any existing subtables are transformed into standard tables that are linked with the original tables by an automatic relation. The former subtable becomes the Many table and the original table is the One table. In the One table, the former subtable field is transformed into a special field of the "Subtable Relation" type and in the Many field, a special "Subtable Relation" type field is added named “id\_added\_by\_converter”. This allows converted databases to function but we strongly recommend that you replace any subtable mechanisms in your converted databases by those used for standard tables. @@ -80,3 +78,13 @@ For example, with the structure above you can write: ``` This code will work with either a special relation or a standard one. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1137 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-system-format.md b/versioned_docs/version-20-R7/commands-legacy/get-system-format.md index 7323d69dc668bd..2cd473d7f70ed3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-system-format.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-system-format.md @@ -41,4 +41,13 @@ In the *format* parameter, pass the type of parameter whose value you want to kn #### See also -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 994 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-table-properties.md b/versioned_docs/version-20-R7/commands-legacy/get-table-properties.md index 2b7cdcc84244bb..b6bd5d74897e04 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-table-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-table-properties.md @@ -33,4 +33,13 @@ Once the command has been executed: [GET FIELD ENTRY PROPERTIES](get-field-entry-properties.md) [GET FIELD PROPERTIES](get-field-properties.md) -[GET RELATION PROPERTIES](get-relation-properties.md) \ No newline at end of file +[GET RELATION PROPERTIES](get-relation-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 687 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-table-titles.md b/versioned_docs/version-20-R7/commands-legacy/get-table-titles.md index ac1b09b5f719f0..882af654fb5d40 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-table-titles.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-table-titles.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET TABLE TITLES** command fills the *tableTitles* and *tableNums* arrays with the names and numbers of database tables defined in the Structure window or using the [SET TABLE TITLES](set-table-titles.md) command. The contents of these two arrays are synchronized. @@ -30,4 +27,13 @@ In both cases, the command does not return invisible tables. #### See also [GET FIELD TITLES](get-field-titles.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 803 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md b/versioned_docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md index 002c699ab1e847..2aaba57b104c04 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-text-from-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Get text from pasteboard** returns the text present in the pasteboard. @@ -34,4 +31,14 @@ If the text is correctly extracted, OK is set to 1; otherwise OK is set to 0. [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) -[Pasteboard data size](pasteboard-data-size.md) \ No newline at end of file +[Pasteboard data size](pasteboard-data-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 524 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-text-keywords.md b/versioned_docs/version-20-R7/commands-legacy/get-text-keywords.md index 5cdf3a05e1ba87..cbcdfd0d54e6ff 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-text-keywords.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-text-keywords.md @@ -82,4 +82,13 @@ To count words in a text: #### See also -[DISTINCT VALUES](distinct-values.md) \ No newline at end of file +[DISTINCT VALUES](distinct-values.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1141 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-text-resource.md b/versioned_docs/version-20-R7/commands-legacy/get-text-resource.md index c08f080d94201a..ee85058d99b776 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-text-resource.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-text-resource.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get text resource** command returns the text stored in the text (“TEXT”) resource whose ID is passed in *resID*. @@ -44,4 +41,14 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero). [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[STRING LIST TO ARRAY](string-list-to-array.md) \ No newline at end of file +[STRING LIST TO ARRAY](string-list-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 504 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-user-list.md b/versioned_docs/version-20-R7/commands-legacy/get-user-list.md index 90c5a9b951b08b..7da1369f8fd57f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-user-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-user-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description GET USER LIST populates the arrays *userNames* and *userNumbers* with the names and unique ID numbers of the users as they appear in the Passwords window. @@ -37,4 +34,14 @@ If you do not have the proper access privileges for calling GET USER LIST or if [GET GROUP LIST](get-group-list.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 609 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-user-properties.md b/versioned_docs/version-20-R7/commands-legacy/get-user-properties.md index 3bdecdab082949..b2e68edae23230 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-user-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-user-properties.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **GET USER PROPERTIES** returns the information about the user whose unique user ID number you pass in *userID*. You must pass a valid user ID number returned by the [GET USER LIST](get-user-list.md) command. @@ -54,4 +51,14 @@ If you do not have the proper access privileges for calling GET USER PROPERTIES [GET USER LIST](get-user-list.md) [Is user deleted](is-user-deleted.md) [Set user properties](set-user-properties.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 611 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-window-rect.md b/versioned_docs/version-20-R7/commands-legacy/get-window-rect.md index e419f99fcb4226..22141dd59f24f0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-window-rect.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-window-rect.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GET WINDOW RECT** command returns the coordinates of the window whose reference number is passed in *window*. If the window does not exist, the variable parameters are left unchanged. @@ -37,4 +34,13 @@ See example for the [WINDOW LIST](window-list.md) command. #### See also [CONVERT COORDINATES](convert-coordinates.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 443 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/get-window-title.md b/versioned_docs/version-20-R7/commands-legacy/get-window-title.md index b08b4ca3a6c5c9..6b5e3f97b60f66 100644 --- a/versioned_docs/version-20-R7/commands-legacy/get-window-title.md +++ b/versioned_docs/version-20-R7/commands-legacy/get-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Get window title** command returns the title of the window whose reference number is passed in *window*. If the window does not exist, an empty string is returned. @@ -29,4 +26,13 @@ See example for the [SET WINDOW TITLE](set-window-title.md) command. #### See also -[SET WINDOW TITLE](set-window-title.md) \ No newline at end of file +[SET WINDOW TITLE](set-window-title.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 450 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/goto-object.md b/versioned_docs/version-20-R7/commands-legacy/goto-object.md index f9f10401c3d3c7..93f344e805d918 100644 --- a/versioned_docs/version-20-R7/commands-legacy/goto-object.md +++ b/versioned_docs/version-20-R7/commands-legacy/goto-object.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GOTO OBJECT** command is used to select the data entry object *object* as the active area of the form. It is equivalent to the user’s clicking on or tabbing into the field or variable. @@ -51,4 +48,13 @@ See the example for the [REJECT](reject.md) command. #### See also [CALL SUBFORM CONTAINER](call-subform-container.md) -[REJECT](reject.md) \ No newline at end of file +[REJECT](reject.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 206 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/goto-record.md b/versioned_docs/version-20-R7/commands-legacy/goto-record.md index 40b069da9aa195..c2d38187b1cd99 100644 --- a/versioned_docs/version-20-R7/commands-legacy/goto-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/goto-record.md @@ -27,4 +27,15 @@ See the example for [Record number](record-number.md). #### See also *About Record Numbers* -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 242 | +| Thread safe | ✓ | +| Modifies variables | error | +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/goto-selected-record.md b/versioned_docs/version-20-R7/commands-legacy/goto-selected-record.md index a029fb341f5812..b8fc11dcbe2ba1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/goto-selected-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/goto-selected-record.md @@ -60,4 +60,14 @@ The following object method for *atNames* selects the correct record in the \[Pe #### See also -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 245 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/goto-xy.md b/versioned_docs/version-20-R7/commands-legacy/goto-xy.md index b59b9c690f6d31..cd35ee026f42f4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/goto-xy.md +++ b/versioned_docs/version-20-R7/commands-legacy/goto-xy.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **GOTO XY** command is used in conjunction with the [MESSAGE](message.md) command when you display messages in a window opened using [Open window](open-window.md). @@ -60,4 +57,13 @@ displays the following window (on Macintosh) for 30 seconds: #### See also -[MESSAGE](message.md) \ No newline at end of file +[MESSAGE](message.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 161 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/graph-settings.md b/versioned_docs/version-20-R7/commands-legacy/graph-settings.md index 599d8a024563b9..4802c2c101baef 100644 --- a/versioned_docs/version-20-R7/commands-legacy/graph-settings.md +++ b/versioned_docs/version-20-R7/commands-legacy/graph-settings.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description GRAPH SETTINGS changes the graph settings for graph displayed in a form. The graph must have already been defined using the [GRAPH](graph.md) command. GRAPH SETTINGS has no effect on a pie chart. This command must be called in the same process as the form. @@ -44,4 +41,13 @@ See example for the [GRAPH](graph.md) command. #### See also -[GRAPH](graph.md) \ No newline at end of file +[GRAPH](graph.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 298 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/graph.md b/versioned_docs/version-20-R7/commands-legacy/graph.md index 6694b475e22551..607378da7c8b8d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/graph.md +++ b/versioned_docs/version-20-R7/commands-legacy/graph.md @@ -276,4 +276,13 @@ In this example, we customize a few settings: *Graph Parameters* [GRAPH SETTINGS](graph-settings.md) -[SVG EXPORT TO PICTURE](svg-export-to-picture.md) \ No newline at end of file +[SVG EXPORT TO PICTURE](svg-export-to-picture.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 169 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/hide-menu-bar.md b/versioned_docs/version-20-R7/commands-legacy/hide-menu-bar.md index 5106ea7809a0fe..6dfdbfdf5fb789 100644 --- a/versioned_docs/version-20-R7/commands-legacy/hide-menu-bar.md +++ b/versioned_docs/version-20-R7/commands-legacy/hide-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The HIDE MENU BAR command makes the menu bar invisible. @@ -45,4 +42,14 @@ The following method displays a record in full-screen display (Macintosh) until [HIDE TOOL BAR](hide-tool-bar.md) [SHOW MENU BAR](show-menu-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 432 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/hide-process.md b/versioned_docs/version-20-R7/commands-legacy/hide-process.md index ec95bca9aa1ed9..aa37fe7890d382 100644 --- a/versioned_docs/version-20-R7/commands-legacy/hide-process.md +++ b/versioned_docs/version-20-R7/commands-legacy/hide-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **HIDE PROCESS** hides all windows that belong to *process*. All interface elements of *process* are hidden until the next [SHOW PROCESS](show-process.md). The menu bar of the process is also hidden. This means that opening a window while the process is hidden does not make the screen redraw or display. If the process is already hidden, the command has no effect. @@ -37,4 +34,13 @@ The following example hides all the windows belonging to the current process: #### See also [Process state](process-state.md) -[SHOW PROCESS](show-process.md) \ No newline at end of file +[SHOW PROCESS](show-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 324 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/hide-tool-bar.md b/versioned_docs/version-20-R7/commands-legacy/hide-tool-bar.md index 619f66128554e0..d555ae30162ef2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/hide-tool-bar.md +++ b/versioned_docs/version-20-R7/commands-legacy/hide-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **HIDE TOOL BAR** command handles the display of custom toolbars created by the [Open form window](open-form-window.md) command for the current process. @@ -41,4 +38,13 @@ To prevent this, in the On Resize form event of the standard window, you need to #### See also -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 434 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/hide-window.md b/versioned_docs/version-20-R7/commands-legacy/hide-window.md index 037d0ec6676a0a..2ba16928bc58a1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/hide-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/hide-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **HIDE WINDOW** command hides the window whose number was passed in *window* or, if this parameter is omitted, the current process frontmost window. For example, this command lets you display only the active window in a process that consists of several processes. @@ -47,4 +44,13 @@ This example corresponds to a method of a button located in an input form. This #### See also -[SHOW WINDOW](show-window.md) \ No newline at end of file +[SHOW WINDOW](show-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 436 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/highlight-records.md b/versioned_docs/version-20-R7/commands-legacy/highlight-records.md index d62115f840d6cf..74113a6504cdee 100644 --- a/versioned_docs/version-20-R7/commands-legacy/highlight-records.md +++ b/versioned_docs/version-20-R7/commands-legacy/highlight-records.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **HIGHLIGHT RECORDS** command highlights records in a list form. This operation is identical to manually selecting records in list mode by using the mouse or the **Shift+Click** or **Ctrl+Click** (Windows) or **Command+Click** (Mac OS) key combinations. The current selection is not modified. @@ -49,4 +46,13 @@ When the user clicks the button, the standard query dialog box appears. Once the #### See also [GET HIGHLIGHTED RECORDS](get-highlighted-records.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 656 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/highlight-text.md b/versioned_docs/version-20-R7/commands-legacy/highlight-text.md index efc7c0c42138fb..da6383069df1c1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/highlight-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/highlight-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The HIGHLIGHT TEXT command highlights a section of the text in *object*. @@ -64,4 +61,13 @@ See example for the [FILTER KEYSTROKE](filter-keystroke.md) command. #### See also -[GET HIGHLIGHT](get-highlight.md) \ No newline at end of file +[GET HIGHLIGHT](get-highlight.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 210 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/http-authenticate.md b/versioned_docs/version-20-R7/commands-legacy/http-authenticate.md index 325c5056d33262..2313023bc74cea 100644 --- a/versioned_docs/version-20-R7/commands-legacy/http-authenticate.md +++ b/versioned_docs/version-20-R7/commands-legacy/http-authenticate.md @@ -56,4 +56,13 @@ Examples of requests with authentication: #### See also -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1161 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/http-get-certificates-folder.md b/versioned_docs/version-20-R7/commands-legacy/http-get-certificates-folder.md index ddcd6d1b1c738f..824cae5ea00921 100644 --- a/versioned_docs/version-20-R7/commands-legacy/http-get-certificates-folder.md +++ b/versioned_docs/version-20-R7/commands-legacy/http-get-certificates-folder.md @@ -39,4 +39,13 @@ You want to change certificates folder temporarily: #### See also -[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) \ No newline at end of file +[HTTP SET CERTIFICATES FOLDER](http-set-certificates-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1307 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/http-get-option.md b/versioned_docs/version-20-R7/commands-legacy/http-get-option.md index 0ab9cbce7bcff7..89344b17407db8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/http-get-option.md +++ b/versioned_docs/version-20-R7/commands-legacy/http-get-option.md @@ -42,4 +42,13 @@ In the *value* parameter, pass a variable to receive the current value of the *o #### See also -[HTTP SET OPTION](http-set-option.md) \ No newline at end of file +[HTTP SET OPTION](http-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1159 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/http-get.md b/versioned_docs/version-20-R7/commands-legacy/http-get.md index 1db17f74cceef1..ff00da6845941f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/http-get.md +++ b/versioned_docs/version-20-R7/commands-legacy/http-get.md @@ -103,4 +103,14 @@ Retrieval of a video: #### See also -[HTTP Request](http-request.md) \ No newline at end of file +[HTTP Request](http-request.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1157 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/http-parse-message.md b/versioned_docs/version-20-R7/commands-legacy/http-parse-message.md index 5ae6fe9730fe73..9d183c4fc8eb2a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/http-parse-message.md +++ b/versioned_docs/version-20-R7/commands-legacy/http-parse-message.md @@ -14,9 +14,16 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The documentation for this command is available on [developer.4d.com.](https://developer.4d.com/docs/API/HTTPRequestClass#http-parse-messege) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1824 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/http-request.md b/versioned_docs/version-20-R7/commands-legacy/http-request.md index 5f9fe5b6f7790f..cdea806ce571cc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/http-request.md +++ b/versioned_docs/version-20-R7/commands-legacy/http-request.md @@ -125,4 +125,13 @@ Request to add a record in JSON to a remote database:: #### See also -[HTTP Get](http-get.md) \ No newline at end of file +[HTTP Get](http-get.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1158 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/http-set-certificates-folder.md b/versioned_docs/version-20-R7/commands-legacy/http-set-certificates-folder.md index 0374ada8a7e1ea..95d8fd5ac2786d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/http-set-certificates-folder.md +++ b/versioned_docs/version-20-R7/commands-legacy/http-set-certificates-folder.md @@ -55,4 +55,13 @@ You want to change certificates folder temporarily: #### See also [GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) -[HTTP Get certificates folder](http-get-certificates-folder.md) \ No newline at end of file +[HTTP Get certificates folder](http-get-certificates-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1306 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/http-set-option.md b/versioned_docs/version-20-R7/commands-legacy/http-set-option.md index 5f5ee3c5006a7d..4d06b38a4d1057 100644 --- a/versioned_docs/version-20-R7/commands-legacy/http-set-option.md +++ b/versioned_docs/version-20-R7/commands-legacy/http-set-option.md @@ -43,4 +43,13 @@ You can call options in any order. If the same option is set more than once, onl #### See also [HTTP AUTHENTICATE](http-authenticate.md) -[HTTP GET OPTION](http-get-option.md) \ No newline at end of file +[HTTP GET OPTION](http-get-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1160 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/idle.md b/versioned_docs/version-20-R7/commands-legacy/idle.md index 0137d49c1d55b1..0026df6c268e5f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/idle.md +++ b/versioned_docs/version-20-R7/commands-legacy/idle.md @@ -50,4 +50,13 @@ with: #### See also *Compiler Commands* -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 311 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/import-data.md b/versioned_docs/version-20-R7/commands-legacy/import-data.md index e7bc0025f489ec..99302e4f514e27 100644 --- a/versioned_docs/version-20-R7/commands-legacy/import-data.md +++ b/versioned_docs/version-20-R7/commands-legacy/import-data.md @@ -46,4 +46,14 @@ If the user clicks **Cancel** in the standard save file dialog box or in the imp [EXPORT DATA](export-data.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[IMPORT TEXT](import-text.md) \ No newline at end of file +[IMPORT TEXT](import-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 665 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/import-dif.md b/versioned_docs/version-20-R7/commands-legacy/import-dif.md index 3114b9a26d8ec3..dbad6234cd63e8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/import-dif.md +++ b/versioned_docs/version-20-R7/commands-legacy/import-dif.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **IMPORT DIF** command reads data from *document*, a Windows or Macintosh DIF document, into the table *aTable* by creating new records for that table. @@ -53,4 +50,14 @@ OK is set to 1 if the import is successfully completed; otherwise, it is set to [EXPORT DIF](export-dif.md) [IMPORT SYLK](import-sylk.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 86 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/import-structure.md b/versioned_docs/version-20-R7/commands-legacy/import-structure.md index 8bfb41d6fc3741..efb99ac7ea2096 100644 --- a/versioned_docs/version-20-R7/commands-legacy/import-structure.md +++ b/versioned_docs/version-20-R7/commands-legacy/import-structure.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **IMPORT STRUCTURE** command imports, into the current database, the XML definition of the 4D database structure passed in the *xmlStructure* parameter. @@ -49,4 +46,13 @@ You want to import a saved structure definition into the current database: #### See also -[EXPORT STRUCTURE](export-structure.md) \ No newline at end of file +[EXPORT STRUCTURE](export-structure.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1310 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/import-sylk.md b/versioned_docs/version-20-R7/commands-legacy/import-sylk.md index 29b8e4d97dfb5c..2e180765ba7806 100644 --- a/versioned_docs/version-20-R7/commands-legacy/import-sylk.md +++ b/versioned_docs/version-20-R7/commands-legacy/import-sylk.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **IMPORT SYLK** command reads data from *document*, a Windows or Macintosh SYLK document, into the table *aTable* by creating new records for that table. @@ -53,4 +50,14 @@ OK is set to 1 if the import is successfully complete; otherwise, it is set to 0 [EXPORT SYLK](export-sylk.md) [IMPORT DIF](import-dif.md) [IMPORT TEXT](import-text.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 87 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/import-text.md b/versioned_docs/version-20-R7/commands-legacy/import-text.md index 6f23ea6d2e36d4..a5e459bf11f5c7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/import-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/import-text.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **IMPORT TEXT** command reads data from *document*, a Windows or Macintosh text document, into the table *aTable* by creating new records for that table. @@ -55,4 +52,14 @@ OK is set to 1 if the import is successfully completed; otherwise, it is set to [EXPORT TEXT](export-text.md) [IMPORT DIF](import-dif.md) [IMPORT SYLK](import-sylk.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 168 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/in-break.md b/versioned_docs/version-20-R7/commands-legacy/in-break.md index 78c239ba3af84e..c756b395524ea3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/in-break.md +++ b/versioned_docs/version-20-R7/commands-legacy/in-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **In break** returns True for the In break execution cycle. @@ -27,4 +24,13 @@ In order for the **In break** execution cycle to be generated, make sure that th #### See also [In footer](in-footer.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 113 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/in-footer.md b/versioned_docs/version-20-R7/commands-legacy/in-footer.md index 84a401c0b0f138..1b3e03a0ba193b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/in-footer.md +++ b/versioned_docs/version-20-R7/commands-legacy/in-footer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **In footer** returns True for the In footer execution cycle. @@ -27,4 +24,13 @@ In order for the **In footer** execution cycle to be generated, make sure that #### See also [In break](in-break.md) -[In header](in-header.md) \ No newline at end of file +[In header](in-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 191 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/in-header.md b/versioned_docs/version-20-R7/commands-legacy/in-header.md index 3e97756d4cd22e..2974a9c1516e8f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/in-header.md +++ b/versioned_docs/version-20-R7/commands-legacy/in-header.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **In header** returns True for the In header execution cycle. @@ -27,4 +24,13 @@ In order for the **In header** execution cycle to be generated, make sure that t #### See also [In break](in-break.md) -[In footer](in-footer.md) \ No newline at end of file +[In footer](in-footer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 112 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/in-transaction.md b/versioned_docs/version-20-R7/commands-legacy/in-transaction.md index 39f8ccbfcfe10e..bc79f67f538fae 100644 --- a/versioned_docs/version-20-R7/commands-legacy/in-transaction.md +++ b/versioned_docs/version-20-R7/commands-legacy/in-transaction.md @@ -29,4 +29,13 @@ If you perform the operation from within a trigger or from a subroutine (that ca [CANCEL TRANSACTION](cancel-transaction.md) [START TRANSACTION](start-transaction.md) *Triggers* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 397 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/insert-in-array.md b/versioned_docs/version-20-R7/commands-legacy/insert-in-array.md index ef69bfc0edfeb6..acfdd273bc2b22 100644 --- a/versioned_docs/version-20-R7/commands-legacy/insert-in-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/insert-in-array.md @@ -44,4 +44,13 @@ The following example appends an element to an array: #### See also [DELETE FROM ARRAY](delete-from-array.md) -[Size of array](size-of-array.md) \ No newline at end of file +[Size of array](size-of-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 227 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/insert-in-blob.md b/versioned_docs/version-20-R7/commands-legacy/insert-in-blob.md index dd3fcbae031970..af41e9b1c6df49 100644 --- a/versioned_docs/version-20-R7/commands-legacy/insert-in-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/insert-in-blob.md @@ -30,4 +30,13 @@ Before the call, you pass in the *offset* parameter the position of the insertio #### See also -[DELETE FROM BLOB](delete-from-blob.md) \ No newline at end of file +[DELETE FROM BLOB](delete-from-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 559 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/insert-in-list.md b/versioned_docs/version-20-R7/commands-legacy/insert-in-list.md index f780cf2e5af349..9f6dc7061a240b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/insert-in-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/insert-in-list.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The INSERT IN LIST command inserts the item designated by the *itemRef* parameter in the list whose reference number or object name you pass in *list*. @@ -52,4 +49,13 @@ The following code inserts an item (with no attached sublist) just before the cu #### See also [APPEND TO LIST](append-to-list.md) -[SET LIST ITEM PARAMETER](set-list-item-parameter.md) \ No newline at end of file +[SET LIST ITEM PARAMETER](set-list-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 625 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/insert-menu-item.md b/versioned_docs/version-20-R7/commands-legacy/insert-menu-item.md index 9715dc8fe91715..b6a51072d686ac 100644 --- a/versioned_docs/version-20-R7/commands-legacy/insert-menu-item.md +++ b/versioned_docs/version-20-R7/commands-legacy/insert-menu-item.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **INSERT MENU ITEM** command inserts new menu items into the menu whose number or reference is passed in *menu* after the existing menu item whose number is passed in *afterItem*. @@ -56,4 +53,14 @@ The following example creates a menu consisting of two commands to which it assi #### See also [APPEND MENU ITEM](append-menu-item.md) -[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) \ No newline at end of file +[SET MENU ITEM PARAMETER](set-menu-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 412 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/insert-string.md b/versioned_docs/version-20-R7/commands-legacy/insert-string.md index f842f8c66aba94..e3f4780d0497a2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/insert-string.md +++ b/versioned_docs/version-20-R7/commands-legacy/insert-string.md @@ -18,7 +18,7 @@ displayed_sidebar: docs #### Description -**Insert string** inserts a string into *source* and returns the resulting string. **Insert string** inserts the string *what* before the character at position *where*. +**Insert string** inserts a string into *source* and returns the resulting string.inserts the string *what* before the character at position *where*. If *what* is an empty string (""), **Insert string** returns *source* unchanged. @@ -40,4 +40,13 @@ The following example illustrates the use of **Insert string**. The results are [Change string](change-string.md) [Delete string](delete-string.md) -[Replace string](replace-string.md) \ No newline at end of file +[Replace string](replace-string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 231 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/int.md b/versioned_docs/version-20-R7/commands-legacy/int.md index afe8456fda174d..b820f7a25a1235 100644 --- a/versioned_docs/version-20-R7/commands-legacy/int.md +++ b/versioned_docs/version-20-R7/commands-legacy/int.md @@ -29,4 +29,13 @@ The following example illustrates how Int works for both positive and negative n #### See also -[Dec](dec.md) \ No newline at end of file +[Dec](dec.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 8 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/integer-to-blob.md b/versioned_docs/version-20-R7/commands-legacy/integer-to-blob.md index c5213660385a75..a049aa8c650b9a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/integer-to-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/integer-to-blob.md @@ -113,4 +113,13 @@ After executing this code: [BLOB to text](blob-to-text.md) [LONGINT TO BLOB](longint-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 548 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md b/versioned_docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md index da3e69b237294a..d97efa493a0e48 100644 --- a/versioned_docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/integrate-mirror-log-file.md @@ -98,4 +98,14 @@ If the integration is carried out correctly, the system variable OK is set to 1; #### See also -[LOG FILE TO JSON](log-file-to-json.md) \ No newline at end of file +[LOG FILE TO JSON](log-file-to-json.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1312 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/intersection.md b/versioned_docs/version-20-R7/commands-legacy/intersection.md index 6b61773a1ff135..9f5e078fd4b53d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/intersection.md +++ b/versioned_docs/version-20-R7/commands-legacy/intersection.md @@ -48,4 +48,13 @@ The following example finds the customers who are served by two sales representa #### See also [DIFFERENCE](difference.md) -[UNION](union.md) \ No newline at end of file +[UNION](union.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 121 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/invoke-action.md b/versioned_docs/version-20-R7/commands-legacy/invoke-action.md index d333fdf9860d5a..015f7c8c57628a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/invoke-action.md +++ b/versioned_docs/version-20-R7/commands-legacy/invoke-action.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **INVOKE ACTION** command triggers the standard action defined by the *action* parameter, optionally in the *target* context. @@ -65,4 +62,13 @@ You want to execute a **Goto page** standard action (page 3) in the main form: #### See also -[Action info](action-info.md) \ No newline at end of file +[Action info](action-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1439 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-a-list.md b/versioned_docs/version-20-R7/commands-legacy/is-a-list.md index 1c0e4fe8df3da5..4f05b04a1bca12 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-a-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-a-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Is a list command returns TRUE if the value you pass in *list* is a valid reference to a hierarchical list. Otherwise, it returns FALSE. @@ -26,3 +23,13 @@ displayed_sidebar: docs See example for the [CLEAR LIST](clear-list.md) command. + + +#### Properties + +| | | +| --- | --- | +| Command number | 621 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-a-variable.md b/versioned_docs/version-20-R7/commands-legacy/is-a-variable.md index fe31445d5e74a4..aea0ad8fd91c54 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-a-variable.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-a-variable.md @@ -23,4 +23,13 @@ When you want to know the name of the variable being pointed to or the field num #### See also [Is nil pointer](is-nil-pointer.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 294 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-compiled-mode.md b/versioned_docs/version-20-R7/commands-legacy/is-compiled-mode.md index cd519fa39a23e9..b5abbba5f994b2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-compiled-mode.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-compiled-mode.md @@ -40,4 +40,13 @@ In one of your routines, you include debugging code useful only when you are run #### See also [IDLE](idle.md) -[Undefined](undefined.md) \ No newline at end of file +[Undefined](undefined.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 492 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-data-file-locked.md b/versioned_docs/version-20-R7/commands-legacy/is-data-file-locked.md index a53b2ebb6b7702..c891f50c8481c0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-data-file-locked.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-data-file-locked.md @@ -29,3 +29,13 @@ This method will prevent the opening of the database if the data file is locked:     QUIT 4D  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 716 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-editing-text.md b/versioned_docs/version-20-R7/commands-legacy/is-editing-text.md index 31435ea841d3a5..25ca0ebc404d46 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-editing-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-editing-text.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Is editing text** command returns **True** if the user is entering values in an input form object, and **False** in all other cases. @@ -60,4 +57,13 @@ You want to allow the user to select a row beginning with the typed letter or nu [FILTER KEYSTROKE](filter-keystroke.md) [Get edited text](get-edited-text.md) -[Type ahead made easy (blog post)](https://blog.4d.com/type-ahead-made-easy/) \ No newline at end of file +[Type ahead made easy (blog post)](https://blog.4d.com/type-ahead-made-easy/) + +#### Properties + +| | | +| --- | --- | +| Command number | 1744 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-field-number-valid.md b/versioned_docs/version-20-R7/commands-legacy/is-field-number-valid.md index df7c3500ee872b..6827ed9a563178 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-field-number-valid.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-field-number-valid.md @@ -24,4 +24,13 @@ This command can be used to detect any field deletions, which create gaps in the #### See also [Last table number](last-table-number.md) -[Is table number valid](is-table-number-valid.md) \ No newline at end of file +[Is table number valid](is-table-number-valid.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1000 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-field-value-null.md b/versioned_docs/version-20-R7/commands-legacy/is-field-value-null.md index b17598dbcf5d5f..c2a92474885a71 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-field-value-null.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-field-value-null.md @@ -27,4 +27,13 @@ The value returned by this command is only meaningful if the "*Map NULL values t #### See also [Null](null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 964 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-in-print-preview.md b/versioned_docs/version-20-R7/commands-legacy/is-in-print-preview.md index 4974dc2d4d673f..e630ac7ca4f907 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-in-print-preview.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-in-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Is in print preview** command returns True if the **Preview on Screen** option is checked in the printing dialog box and False otherwise. This setting is local to the process. @@ -46,4 +43,13 @@ This example takes all types of printing into account: #### See also [Get print preview](get-print-preview.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1198 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-in-set.md b/versioned_docs/version-20-R7/commands-legacy/is-in-set.md index 9865c4380a0b69..92f8ce2bc0c0f9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-in-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-in-set.md @@ -33,4 +33,13 @@ The following example is a button object method. It tests to see whether or not #### See also [ADD TO SET](add-to-set.md) -[REMOVE FROM SET](remove-from-set.md) \ No newline at end of file +[REMOVE FROM SET](remove-from-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 273 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-license-available.md b/versioned_docs/version-20-R7/commands-legacy/is-license-available.md index bacb042c5a78ff..8ede903127bf8e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-license-available.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-license-available.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Is license available command lets you find out the availability of a plug-in. It is useful, for instance, for displaying or hiding functions requiring the presence of a plug-in. @@ -48,4 +45,13 @@ Is license available returns [False](false.md "False") if the plug-in is operati [License info](../commands/license-info.md) [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 714 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-macos.md b/versioned_docs/version-20-R7/commands-legacy/is-macos.md index 108f29e9cc276b..392f3b9a42c73f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-macos.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-macos.md @@ -32,4 +32,13 @@ You want to determine if the current operating system is macOS: #### See also [System info](system-info.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1572 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-new-record.md b/versioned_docs/version-20-R7/commands-legacy/is-new-record.md index dbd2d2eceff48a..f7f4cdd6cfa339 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-new-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-new-record.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Is new record** command returns True when *aTable*’s current record is being created and has not yet been saved in the current process. - -**Compatibility Note:** You can obtain the same information by using the existing [Record number](record-number.md) command, and by testing if it returns -3\. +The **Is new record** command returns True when *aTable*’s current record is being created and has not yet been saved in the current process.You can obtain the same information by using the existing [Record number](record-number.md) command, and by testing if it returns -3\. However, we strongly advise you to use **Is new record** instead of [Record number](record-number.md) in this case. In fact, the **Is new record** command ensures compatibility with future versions of 4D. **4D Server:** This command returns a different result for the On Validate form event depending on whether it is executed on 4D in local mode or 4D in remote mode. In local mode, the command returns False (the record is considered as already created). In remote mode, the command returns True because, in this case, the record is already created on the server but the information has not yet been sent to the client. @@ -40,4 +38,13 @@ The following two statements are identical. The second one is strongly advised s #### See also [Modified record](modified-record.md) -[Record number](record-number.md) \ No newline at end of file +[Record number](record-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 668 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-nil-pointer.md b/versioned_docs/version-20-R7/commands-legacy/is-nil-pointer.md index d2bef4dfc2e5c1..a13ad5877adb51 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-nil-pointer.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-nil-pointer.md @@ -35,4 +35,13 @@ If you want to find out the name of the variable or the number of the field that #### See also [Is a variable](is-a-variable.md) -[RESOLVE POINTER](resolve-pointer.md) \ No newline at end of file +[RESOLVE POINTER](resolve-pointer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 315 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-picture-file.md b/versioned_docs/version-20-R7/commands-legacy/is-picture-file.md index 0479ce91fefc1f..7e6a38ac51f48b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-picture-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-picture-file.md @@ -27,4 +27,13 @@ If you do not pass the *\** parameter, the command tests the file by looking for #### See also -[PICTURE CODEC LIST](picture-codec-list.md) \ No newline at end of file +[PICTURE CODEC LIST](picture-codec-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1113 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-record-loaded.md b/versioned_docs/version-20-R7/commands-legacy/is-record-loaded.md index 0e6cc8c9b1cbba..ab7d1a8fd1b758 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-record-loaded.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-record-loaded.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The Is record loaded command returns True if *aTable*’s current record is loaded in the current process. - -**4D Server**: In principle, when tables are linked by automatic relations, the current records of related tables are loaded automatically (see *About Relations*). However, for optimization reasons, 4D Server only loads these records when necessary, for example when reading or assigning a field of the related record. As a result, in this context the **Is record loaded** command will return False in remote mode (it returns True in local mode). +The Is record loaded command returns True if *aTable*’s current record is loaded in the current process.command will return False in remote mode (it returns True in local mode). #### Example @@ -43,3 +41,13 @@ Instead of using the “Next record” or “Previous record” automatic action     End if  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 669 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-table-number-valid.md b/versioned_docs/version-20-R7/commands-legacy/is-table-number-valid.md index 66ee54349f7f73..ceb9dd219a3ff7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-table-number-valid.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-table-number-valid.md @@ -23,4 +23,13 @@ This command can be used to detect any table deletions, which create gaps in the #### See also [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 999 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-user-deleted.md b/versioned_docs/version-20-R7/commands-legacy/is-user-deleted.md index 2095563e40b0f5..78793fb642a0a5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-user-deleted.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-user-deleted.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Is user deleted command tests the user account whose unique user ID number you pass in *userID*. @@ -31,4 +28,14 @@ If you do not have the proper access privileges for calling Is user deleted or i [DELETE USER](delete-user.md) [GET USER PROPERTIES](get-user-properties.md) -[Set user properties](set-user-properties.md) \ No newline at end of file +[Set user properties](set-user-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 616 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md b/versioned_docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md index 609385d4ffde16..e193c692f8796c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-waiting-mouse-up.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Is waiting mouse up** command returns **True** if the current object has been clicked and the mouse button has not been released, while the parent window has the focus. Otherwise, it returns **False**, in particular if the parent window has lost the focus before the mouse button was released. @@ -52,4 +49,13 @@ The following code can be used to manage a mouse tracking feature in a picture o #### See also -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1422 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-window-maximized.md b/versioned_docs/version-20-R7/commands-legacy/is-window-maximized.md index 6ea59d675dac07..a85fa27c47c476 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-window-maximized.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-window-maximized.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Is window maximized** command returns **True** if the window whose reference number is passed in *window* is currently maximized, and **False** otherwise. @@ -36,4 +33,13 @@ You want to switch between the maximized and previous states: #### See also [Is window reduced](is-window-reduced.md) -[MAXIMIZE WINDOW](maximize-window.md) \ No newline at end of file +[MAXIMIZE WINDOW](maximize-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1830 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-window-reduced.md b/versioned_docs/version-20-R7/commands-legacy/is-window-reduced.md index b293e550e1cf8a..5f4a73b1c2cc66 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-window-reduced.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-window-reduced.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Is window reduced** command returns **True** if the window whose reference number is passed in *window* is currently reduced in the taskbar (Windows) or in the dock (macOS), and **False** otherwise. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### See also [Is window maximized](is-window-maximized.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1831 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/is-windows.md b/versioned_docs/version-20-R7/commands-legacy/is-windows.md index 747ad5b1e228e4..0a59b4fcb3d4a8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/is-windows.md +++ b/versioned_docs/version-20-R7/commands-legacy/is-windows.md @@ -32,4 +32,13 @@ You want to determine if the current operating system is Windows: #### See also [System info](system-info.md) -[Is macOS](is-macos.md) \ No newline at end of file +[Is macOS](is-macos.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1573 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/json-parse-array.md b/versioned_docs/version-20-R7/commands-legacy/json-parse-array.md index eba5f0ca32a713..275b0931524686 100644 --- a/versioned_docs/version-20-R7/commands-legacy/json-parse-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/json-parse-array.md @@ -57,4 +57,13 @@ In this example, data from fields of the records in a table are extracted and th #### See also [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1219 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/json-parse.md b/versioned_docs/version-20-R7/commands-legacy/json-parse.md index 693e5c8c851df4..ec1baa0ea6bd8a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/json-parse.md +++ b/versioned_docs/version-20-R7/commands-legacy/json-parse.md @@ -188,4 +188,13 @@ beta[1].golf:{line:10,offset:12}}} *Field and Variable Types* [JSON PARSE ARRAY](json-parse-array.md) [JSON Stringify](json-stringify.md) -[JSON Validate](json-validate.md) \ No newline at end of file +[JSON Validate](json-validate.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1218 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/json-resolve-pointers.md b/versioned_docs/version-20-R7/commands-legacy/json-resolve-pointers.md index facbe25f3a64ab..ba40d969b062bb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/json-resolve-pointers.md +++ b/versioned_docs/version-20-R7/commands-legacy/json-resolve-pointers.md @@ -230,4 +230,13 @@ If you execute: #### See also - \ No newline at end of file + + +#### Properties + +| | | +| --- | --- | +| Command number | 1478 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/json-stringify-array.md b/versioned_docs/version-20-R7/commands-legacy/json-stringify-array.md index 26ca4e56bb57f6..d59e80af7f2227 100644 --- a/versioned_docs/version-20-R7/commands-legacy/json-stringify-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/json-stringify-array.md @@ -107,4 +107,13 @@ Conversion of a 4D selection in an object array: #### See also [JSON PARSE ARRAY](json-parse-array.md) -[JSON Stringify](json-stringify.md) \ No newline at end of file +[JSON Stringify](json-stringify.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1228 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/json-stringify.md b/versioned_docs/version-20-R7/commands-legacy/json-stringify.md index 29696dfc6bce22..922e779e91c050 100644 --- a/versioned_docs/version-20-R7/commands-legacy/json-stringify.md +++ b/versioned_docs/version-20-R7/commands-legacy/json-stringify.md @@ -172,4 +172,13 @@ $myTxtCol="[33,"mike","2017-08-28",false]" #### See also [JSON Parse](json-parse.md) -[JSON Stringify array](json-stringify-array.md) \ No newline at end of file +[JSON Stringify array](json-stringify-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1217 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/json-to-selection.md b/versioned_docs/version-20-R7/commands-legacy/json-to-selection.md index ebaa442deecdc4..62aaf7a2dd12e2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/json-to-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/json-to-selection.md @@ -67,4 +67,13 @@ Using the **JSON TO SELECTION** command to add records to the \[Company\] table: #### See also -[Selection to JSON](selection-to-json.md) \ No newline at end of file +[Selection to JSON](selection-to-json.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1235 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/json-validate.md b/versioned_docs/version-20-R7/commands-legacy/json-validate.md index a87e64f0a2825c..5b4ee6b6d73db1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/json-validate.md +++ b/versioned_docs/version-20-R7/commands-legacy/json-validate.md @@ -103,4 +103,13 @@ You want to validate a JSON object with a schema and get the list of validation -[JSON Parse](json-parse.md) \ No newline at end of file +[JSON Parse](json-parse.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1456 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/keystroke.md b/versioned_docs/version-20-R7/commands-legacy/keystroke.md index 7df9fe0ba18d9c..445122d4443163 100644 --- a/versioned_docs/version-20-R7/commands-legacy/keystroke.md +++ b/versioned_docs/version-20-R7/commands-legacy/keystroke.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Keystroke** returns the character entered by the user into a field or an enterable area. @@ -170,4 +167,13 @@ Using the interprocess communication capabilities of 4D, you can similarily buil [FILTER KEYSTROKE](filter-keystroke.md) [Form event code](../commands/form-event-code.md) -[Get edited text](get-edited-text.md) \ No newline at end of file +[Get edited text](get-edited-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 390 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/kill-worker.md b/versioned_docs/version-20-R7/commands-legacy/kill-worker.md index 304a7b9ebaa044..b8b341167c5129 100644 --- a/versioned_docs/version-20-R7/commands-legacy/kill-worker.md +++ b/versioned_docs/version-20-R7/commands-legacy/kill-worker.md @@ -52,4 +52,13 @@ In the worker method (*theWorker*), you add some code to handle this situation: *About workers* [CALL WORKER](call-worker.md) -[Current process name](current-process-name.md) \ No newline at end of file +[Current process name](current-process-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1390 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/last-errors.md b/versioned_docs/version-20-R7/commands-legacy/last-errors.md index 240f147e635c8b..62525961d51e32 100644 --- a/versioned_docs/version-20-R7/commands-legacy/last-errors.md +++ b/versioned_docs/version-20-R7/commands-legacy/last-errors.md @@ -31,4 +31,13 @@ This command must be called from an on error call method installed by the [ON ER #### See also [ON ERR CALL](on-err-call.md) -[throw](throw.md) \ No newline at end of file +[throw](throw.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1799 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/last-field-number.md b/versioned_docs/version-20-R7/commands-legacy/last-field-number.md index 47a9d9bfae13e6..3ce47abcaf284c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/last-field-number.md +++ b/versioned_docs/version-20-R7/commands-legacy/last-field-number.md @@ -41,4 +41,13 @@ The following project method builds the array *asFields*, consisting of the fiel [Field name](field-name.md) [GET FIELD PROPERTIES](get-field-properties.md) [Last table number](last-table-number.md) -[Is field number valid](is-field-number-valid.md) \ No newline at end of file +[Is field number valid](is-field-number-valid.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 255 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/last-query-path.md b/versioned_docs/version-20-R7/commands-legacy/last-query-path.md index d7e87f8e0bae33..4f2a2127c3ddbc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/last-query-path.md +++ b/versioned_docs/version-20-R7/commands-legacy/last-query-path.md @@ -32,4 +32,13 @@ The description of the last query path can be compared to the description of the #### See also [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query plan](last-query-plan.md) \ No newline at end of file +[Last query plan](last-query-plan.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1045 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/last-query-plan.md b/versioned_docs/version-20-R7/commands-legacy/last-query-plan.md index b0bb9d8c19e7f8..707178a9f3aa07 100644 --- a/versioned_docs/version-20-R7/commands-legacy/last-query-plan.md +++ b/versioned_docs/version-20-R7/commands-legacy/last-query-plan.md @@ -33,4 +33,13 @@ The description of the last query plan can be compared to the description of the #### See also [DESCRIBE QUERY EXECUTION](describe-query-execution.md) -[Last query path](last-query-path.md) \ No newline at end of file +[Last query path](last-query-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1046 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/last-record.md b/versioned_docs/version-20-R7/commands-legacy/last-record.md index ae20e467634a2f..c76b1f5b6e205e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/last-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/last-record.md @@ -31,4 +31,14 @@ The following example makes the last record of the \[People\] table the current [End selection](end-selection.md) [FIRST RECORD](first-record.md) [NEXT RECORD](next-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 200 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/last-table-number.md b/versioned_docs/version-20-R7/commands-legacy/last-table-number.md index 1e25de3242f448..b8d3c72dae5f21 100644 --- a/versioned_docs/version-20-R7/commands-legacy/last-table-number.md +++ b/versioned_docs/version-20-R7/commands-legacy/last-table-number.md @@ -38,4 +38,13 @@ The following example builds an array, named asTables*,* with the names of table [Last field number](last-field-number.md) [Is table number valid](is-table-number-valid.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 254 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/launch-external-process.md b/versioned_docs/version-20-R7/commands-legacy/launch-external-process.md index 7f0ca008ec0c24..5f8937cd8da69f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/launch-external-process.md +++ b/versioned_docs/version-20-R7/commands-legacy/launch-external-process.md @@ -145,4 +145,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [OPEN URL](open-url.md) -[SET ENVIRONMENT VARIABLE](set-environment-variable.md) \ No newline at end of file +[SET ENVIRONMENT VARIABLE](set-environment-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 811 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ldap-login.md b/versioned_docs/version-20-R7/commands-legacy/ldap-login.md index 2c65772f203ad6..ba26b8eb06bdf7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ldap-login.md +++ b/versioned_docs/version-20-R7/commands-legacy/ldap-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LDAP LOGIN** command opens a read-only connection to the LDAP server specified in the *url* parameter with the *login* and *password* identifiers provided. If accepted by the server, this connection will be used for any LDAP searches executed subsequently in the current process until the [LDAP LOGOUT](ldap-logout.md) command is executed (or until the process is closed). @@ -97,4 +94,13 @@ This example tries to connect to an application: #### See also *LDAP* -[LDAP LOGOUT](ldap-logout.md) \ No newline at end of file +[LDAP LOGOUT](ldap-logout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1326 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ldap-logout.md b/versioned_docs/version-20-R7/commands-legacy/ldap-logout.md index 81f7e921f9052d..b674fd691d1858 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ldap-logout.md +++ b/versioned_docs/version-20-R7/commands-legacy/ldap-logout.md @@ -12,13 +12,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LDAP LOGOUT** command closes the connection with an LDAP server in the current process (if applicable). If there is no connection, an error 1003 stating that you are not logged in is returned. #### See also -[LDAP LOGIN](ldap-login.md) \ No newline at end of file +[LDAP LOGIN](ldap-login.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1327 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ldap-search-all.md b/versioned_docs/version-20-R7/commands-legacy/ldap-search-all.md index 86c81f917988a3..8f561df85072be 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ldap-search-all.md +++ b/versioned_docs/version-20-R7/commands-legacy/ldap-search-all.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LDAP SEARCH ALL** command searches in the target LDAP server for all occurrences matching the criteria defined. This command must be executed within a connection to an LDAP server opened with [LDAP LOGIN](ldap-login.md); otherwise a 1003 error is returned. @@ -117,4 +114,13 @@ These examples illustrate the use of the *attributesAsArray* parameter: #### See also *LDAP* -[LDAP Search](ldap-search.md) \ No newline at end of file +[LDAP Search](ldap-search.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1329 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ldap-search.md b/versioned_docs/version-20-R7/commands-legacy/ldap-search.md index 3c4c373512425f..6fe78a3988d173 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ldap-search.md +++ b/versioned_docs/version-20-R7/commands-legacy/ldap-search.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LDAP Search** command searches in the target LDAP server for the first occurrence matching the criteria defined. This command must be executed within a connection to an LDAP server opened with [LDAP LOGIN](ldap-login.md); otherwise a 1003 error is returned. @@ -85,4 +82,13 @@ We want to get an array of all entries found for the "memberOf" attribute: #### See also *LDAP* -[LDAP SEARCH ALL](ldap-search-all.md) \ No newline at end of file +[LDAP SEARCH ALL](ldap-search-all.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1328 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/length.md b/versioned_docs/version-20-R7/commands-legacy/length.md index 58774d052334fd..e33e00df74f5e9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/length.md +++ b/versioned_docs/version-20-R7/commands-legacy/length.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**Length** is used to find the length of *aString*. **Length** returns the number of characters that are in *aString*. +**Length** is used to find the length of *aString*.returns the number of characters that are in *aString*. **Note:** In Unicode mode, when you want to check whether a string contains any characters, including ignorable characters, you must use the test If(Length(vtAnyText)=0) rather than If(vtAnyText=""). If the string contains for example Char(1), which is an ignorable character, Length(vtAnyText) does return 1 but vtAnyText="" returns True. @@ -28,3 +28,13 @@ This example illustrates the use of **Length**. The results, described in the co  vlResult:=Length("Topaz") // vlResult gets 5  vlResult:=Length("Citizen") // vlResult gets 7 ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 16 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/level.md b/versioned_docs/version-20-R7/commands-legacy/level.md index d53ae5f4a1af13..a7d5d0c2cbfb04 100644 --- a/versioned_docs/version-20-R7/commands-legacy/level.md +++ b/versioned_docs/version-20-R7/commands-legacy/level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Level is used to determine the current header or break level. It returns the level number during the On Header and On Printing Break events. @@ -68,4 +65,13 @@ This example is a template for a form method. It shows each of the possible even [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Form event code](../commands/form-event-code.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 101 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/license-usage.md b/versioned_docs/version-20-R7/commands-legacy/license-usage.md index f6c318d4dcdb37..38013c327e42c8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/license-usage.md +++ b/versioned_docs/version-20-R7/commands-legacy/license-usage.md @@ -71,3 +71,13 @@ This table details the contents of the session object for REST sessions: | sessionID | Text | REST session ID | | IPAddress | Text | ID of the client that initiated the REST session | | isDatastore | Boolean | True if the REST request comes from a datastore | + + +#### Properties + +| | | +| --- | --- | +| Command number | 1782 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/list-item-parent.md b/versioned_docs/version-20-R7/commands-legacy/list-item-parent.md index 1ffd8272a64ab0..d032df5c5058b8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/list-item-parent.md +++ b/versioned_docs/version-20-R7/commands-legacy/list-item-parent.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **List item parent** command returns the item reference number of a parent item. @@ -72,4 +69,13 @@ The item reference numbers are set as follows: [GET LIST ITEM](get-list-item.md) [List item position](list-item-position.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[SET LIST ITEM](set-list-item.md) \ No newline at end of file +[SET LIST ITEM](set-list-item.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 633 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/list-item-position.md b/versioned_docs/version-20-R7/commands-legacy/list-item-position.md index f2828344bdb2b8..ec66ede94c0415 100644 --- a/versioned_docs/version-20-R7/commands-legacy/list-item-position.md +++ b/versioned_docs/version-20-R7/commands-legacy/list-item-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **List item position** command returns the position of the item whose item reference number is passed in *itemRef*, within the list whose list reference number or object name is passed in *list*. @@ -40,4 +37,13 @@ If the item does not exist, **List item position** returns 0. #### See also [Count list items](count-list-items.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 629 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/list-of-choice-lists.md b/versioned_docs/version-20-R7/commands-legacy/list-of-choice-lists.md index 2a2c458146cfd7..94da824cfc8aa0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/list-of-choice-lists.md +++ b/versioned_docs/version-20-R7/commands-legacy/list-of-choice-lists.md @@ -14,11 +14,18 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LIST OF CHOICE LISTS command returns, in the synchronized *numsArr* and *namesArr* arrays, the numbers and names of the choice lists defined by the list editor in Design mode. The numbers of choice lists correspond to their order of creation. In the list editor, choice lists are displayed in alphabetical order. + + +#### Properties + +| | | +| --- | --- | +| Command number | 957 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/list-of-style-sheets.md b/versioned_docs/version-20-R7/commands-legacy/list-of-style-sheets.md index f81e1f1f2d141a..253db3565a7066 100644 --- a/versioned_docs/version-20-R7/commands-legacy/list-of-style-sheets.md +++ b/versioned_docs/version-20-R7/commands-legacy/list-of-style-sheets.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LIST OF STYLE SHEETS** command returns the list of application style sheets in the *arrStyleSheets* array. @@ -51,4 +48,13 @@ If you execute the following code: #### See also [GET STYLE SHEET INFO](get-style-sheet-info.md) -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1255 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/list-to-array.md b/versioned_docs/version-20-R7/commands-legacy/list-to-array.md index dd97863a708b83..c8e7e47635a1aa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/list-to-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LIST TO ARRAY command creates or overrides the array *array* with the first level items of the list or choice list designated by *list*. @@ -86,4 +83,13 @@ If you execute the following statement: [ARRAY TO LIST](array-to-list.md) [Load list](load-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 288 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/list-to-blob.md b/versioned_docs/version-20-R7/commands-legacy/list-to-blob.md index 0a058f565fb1e0..d978f4b264c1bf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/list-to-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/list-to-blob.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LIST TO BLOB command stores the hierarchical list *list* in the BLOB *blob*. @@ -47,4 +44,14 @@ See example for the command [BLOB to list](blob-to-list.md). [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) [SAVE LIST](save-list.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 556 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-collapse.md b/versioned_docs/version-20-R7/commands-legacy/listbox-collapse.md index c1dbbcc7e423b4..04684f1809234d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-collapse.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-collapse.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX COLLAPSE command is used to collapse the break rows of the list box object designated by the *object* and *\** parameters. @@ -52,4 +49,13 @@ This example collapses the first level of the break rows of the selection in the #### See also -[LISTBOX EXPAND](listbox-expand.md) \ No newline at end of file +[LISTBOX EXPAND](listbox-expand.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1101 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-delete-column.md b/versioned_docs/version-20-R7/commands-legacy/listbox-delete-column.md index 22322befbfa222..1a8511ec65d529 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-delete-column.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-delete-column.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX DELETE COLUMN** command removes one or more columns (visible or invisible) in the list box set in the *object* and *\** parameters. @@ -36,4 +33,13 @@ If the *colPosition* parameter is greater than the number of columns in the list #### See also [LISTBOX Get number of columns](listbox-get-number-of-columns.md) -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 830 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-delete-rows.md b/versioned_docs/version-20-R7/commands-legacy/listbox-delete-rows.md index 5007a17f079026..2422dfc391b05a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-delete-rows.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-delete-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX DELETE ROWS** command deletes one or several row(s) starting at *rowPosition* row (visible or not) from the list box set in the *object* and *\** parameters. @@ -38,4 +35,14 @@ If the *rowPosition* value is higher than the total number of rows in the list b #### See also [LISTBOX Get number of rows](listbox-get-number-of-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 914 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-duplicate-column.md b/versioned_docs/version-20-R7/commands-legacy/listbox-duplicate-column.md index d3df5d9ef7a7c5..97550d4e63eacf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-duplicate-column.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-duplicate-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX DUPLICATE COLUMN** command duplicates the column designated by the *object* and *\** parameters by programming in the context of the form being executed (Application mode). The original form, generated in the Design mode, is not modified. @@ -95,4 +92,13 @@ You want to duplicate a Boolean column and change its title: #### See also -[LISTBOX MOVE COLUMN](listbox-move-column.md) \ No newline at end of file +[LISTBOX MOVE COLUMN](listbox-move-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1273 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-expand.md b/versioned_docs/version-20-R7/commands-legacy/listbox-expand.md index 5e89bff2aab78a..c871b72f14094c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-expand.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-expand.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX EXPAND command is used to expand the break rows of the list box object designated by the *object* and *\** parameters. @@ -81,4 +78,13 @@ This example illustrates different ways of using the command. Given the followin #### See also -[LISTBOX COLLAPSE](listbox-collapse.md) \ No newline at end of file +[LISTBOX COLLAPSE](listbox-collapse.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1100 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-array.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-array.md index 9b38b6cc1bc670..d53ddc141a96fb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -62,4 +59,13 @@ Typical examples of use: #### See also [LISTBOX GET ARRAYS](listbox-get-arrays.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1278 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-arrays.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-arrays.md index 1ed9a1ea54f632..424f157457dc3a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-arrays.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-arrays.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET ARRAYS** command returns a set of synchronized arrays providing information on each column (visible or invisible) in the list box set in the *object* and *\** parameters. @@ -51,4 +48,13 @@ For record selection, collection or entity selection type list boxes, *arrStyles [LISTBOX Get array](listbox-get-array.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET ARRAY](listbox-set-array.md) \ No newline at end of file +[LISTBOX SET ARRAY](listbox-set-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 832 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md index 8e374277d7a786..0eae74c61f95a1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get auto row height** command returns the current minimum or maximum row height value set for the list box object designated using the *object* and *\** parameters. @@ -57,4 +54,13 @@ You want to get the maximum number of lines for a list box row: [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) \ No newline at end of file +[LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1502 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md index 4f6d1a1ba137da..ac75d34aaac171 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-cell-coordinates.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET CELL COORDINATES** command returns in variables or fields the *left*, *top*, *right* and *bottom* coordinates (in points) of the cell designated by the *column* and *row* parameters, in the list box defined by *\** and *object*. @@ -55,4 +52,13 @@ You want to draw a red rectangle around the selected cell of a list box: #### See also [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[OBJECT GET COORDINATES](object-get-coordinates.md) \ No newline at end of file +[OBJECT GET COORDINATES](object-get-coordinates.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1330 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-cell-position.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-cell-position.md index 1699b8bad832fc..961147dac028e5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-cell-position.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-cell-position.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET CELL POSITION** command returns the numbers of the *column* and the *row* that correspond to the location in the listbox (designated by *\** and *object*) of the last mouse click, last selection made via the keyboard, or the horizontal and vertical coordinates of the mouse. @@ -55,4 +52,13 @@ This command takes into account any selection or deselection actions whether by #### See also [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) -[LISTBOX SELECT BREAK](listbox-select-break.md) \ No newline at end of file +[LISTBOX SELECT BREAK](listbox-select-break.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 971 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-column-formula.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-column-formula.md index f13aafe7d0ce8e..4ede462b229e71 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-column-formula.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-column-formula.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get column formula** command returns the formula associated with the list box column designated by the *object* and *\** parameters. Formulas can only be used when the “Data Source” property of the list box is either **Current Selection**, **Named Selection**, or **Collection or Entity Selection**. If no formula is associated with the column, the command returns an empty string. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, this indicates that the *object* parame #### See also -[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) \ No newline at end of file +[LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1202 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-column-width.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-column-width.md index 164dff6eb33350..c65488c24d7c50 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-column-width.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get column width** command returns the width (in pixels) of the column set in the *object* and *\** parameters. You can pass either a list box column or a column header in the *object* parameter. @@ -31,4 +28,13 @@ If no minimum and/or maximum value has been set for the column, the correspondin #### See also -[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) \ No newline at end of file +[LISTBOX SET COLUMN WIDTH](listbox-set-column-width.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 834 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md index 1c71541a99f4ad..8393c93e43f891 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get footer calculation** command returns the type of calculation associated with the footer area of the list box designated by the *object* and *\** parameters. @@ -33,4 +30,13 @@ You can compare the value returned with the constants of the *Listbox Footer Cal #### See also -[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) \ No newline at end of file +[LISTBOX SET FOOTER CALCULATION](listbox-set-footer-calculation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1150 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-footers-height.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-footers-height.md index 9cca6d187c5d4f..8661e01310ced6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-footers-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get footers height** command returns the height of the footer row in the list box designated by the *object* and *\** parameters. @@ -36,4 +33,13 @@ By default, if you omit the *unit* parameter, the height of the row returned is #### See also -[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) \ No newline at end of file +[LISTBOX SET FOOTERS HEIGHT](listbox-set-footers-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1146 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md index 5c739636963b50..2aa57b1232c669 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-grid-colors.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET GRID COLORS** command returns the color of the horizontal and vertical lines making up the grid of the list box object designated by the *object* and *\** parameters. @@ -32,4 +29,13 @@ In *hColor* and *vColor*, the command returns the values of the RGB colors. The #### See also -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1200 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-grid.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-grid.md index 217178dc3830d9..5ff1112b1b0bee 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-grid.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET GRID** command returns the shown/hidden status of the horizontal and/or vertical lines making up the grid of the list box object designated by the *object* and *\** parameters. @@ -29,4 +26,13 @@ In *horizontal* and *vertical*, the command returns the value **True** or **Fals #### See also -[LISTBOX SET GRID](listbox-set-grid.md) \ No newline at end of file +[LISTBOX SET GRID](listbox-set-grid.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1199 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-headers-height.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-headers-height.md index f56a3d398368b6..d2b2eb22bcedc2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-headers-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get headers height** command returns the height of the header row in the list box designated by the *object* and *\** parameters. @@ -36,4 +33,13 @@ By default, if you omit the *unit* parameter, the height of the row returned is #### See also -[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) \ No newline at end of file +[LISTBOX SET HEADERS HEIGHT](listbox-set-headers-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1144 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md index 76eb2745221508..d8842d6e7b9cba 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX GET HIERARCHY command lets you find out the hierarchical properties of the list box object designated by the *object* and *\** parameters. @@ -36,4 +33,13 @@ If the list box is in hierarchical mode, the command fills the *hierarchy* array #### See also -[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) \ No newline at end of file +[LISTBOX SET HIERARCHY](listbox-set-hierarchy.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1099 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md index f9b84dfe31f0fe..191e8349dd88b5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get locked columns** command returns the number of locked columns in the list box designated by the *object* and *\** parameters. @@ -32,4 +29,13 @@ However, the command does not take into account the visible/invisible status of #### See also -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1152 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md index 2e2e5d1732613c..a87844da3332ea 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-number-of-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get number of columns** command returns the total number of columns (visible or invisible) present in the list box set in the *object* and *\** parameters. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[LISTBOX DELETE COLUMN](listbox-delete-column.md) \ No newline at end of file +[LISTBOX DELETE COLUMN](listbox-delete-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 831 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md index 762719e0862e4b..7b1de435fbf2e7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-number-of-rows.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get number of rows** command returns the number of rows in the list box set in the *object* and *\** parameters. @@ -31,4 +28,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also [LISTBOX DELETE ROWS](listbox-delete-rows.md) -[LISTBOX INSERT ROWS](listbox-insert-rows.md) \ No newline at end of file +[LISTBOX INSERT ROWS](listbox-insert-rows.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 915 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-objects.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-objects.md index 91ad63f3f535c5..0821a1a168457b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-objects.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-objects.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET OBJECTS** command returns an array containing the names of each object making up the list box designated by the *object* and *\** parameters. @@ -61,4 +58,13 @@ You want to load a form and get a list of all the objects of list boxes that it #### See also [FORM LOAD](form-load.md) -[OBJECT Get type](object-get-type.md) \ No newline at end of file +[OBJECT Get type](object-get-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1302 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-print-information.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-print-information.md index 1068377d699f29..63c0647a4a5509 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-print-information.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-print-information.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX GET PRINT INFORMATION** command returns the current information relative to the printing of the list box object designated by the *object* and *\** parameters. This command can be used to control the printing of the list box contents. @@ -69,3 +66,13 @@ Printing at least 500 rows of the list box, knowing that certain rows are hidden     PAGE BREAK  Until($GlobalPrinted>=500) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1110 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-property.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-property.md index ab846c202cb920..27d07565fcda89 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-property.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get property** command returns the value of the *property* of the list box or column specified using the *object* and *\** parameters. @@ -101,4 +98,13 @@ Given a list box "MyListbox", if you execute the following statement: [LISTBOX SET GRID](listbox-set-grid.md) [LISTBOX SET PROPERTY](listbox-set-property.md) -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 917 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md index 4af661dad17337..dfe6bf7466000c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-color-as-number.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -61,4 +58,13 @@ Given the following list box: *List Box* [LISTBOX Get row color](listbox-get-row-color.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1271 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-color.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-color.md index a618abacf9be89..e87b7e44a660a4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-color.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -59,4 +56,13 @@ Given the following list box: #### See also -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1658 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md index a669a20182e85f..5764e6ec466d00 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -52,4 +49,13 @@ Given the following list box: #### See also -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1269 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-height.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-height.md index 65ae5f2d386b54..17626ab4f0abcd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get row height** command returns the current height of the specified *row* in the list box object designated using the *object* and *\** parameters. Row height can be set globally using the Property List or the [LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) command, or individually by means of the [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) command. @@ -36,4 +33,13 @@ The returned height value is expressed: [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get rows height](listbox-get-rows-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1408 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-rows-height.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-rows-height.md index 9e90ce1376812d..63e0f4ae0a2fa4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-rows-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get rows height** command returns the current row height for the list box object set using the *object* and *\** parameters. @@ -38,4 +35,13 @@ By default, if you omit the *unit* parameter, the row height returned is express [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX Get row height](listbox-get-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 836 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-static-columns.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-static-columns.md index b0af9257a612ae..2ba80a0371f8e2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-static-columns.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX Get static columns** command returns the number of static columns in the list box designated by the *object* and *\** parameters. @@ -33,4 +30,13 @@ However, the command does not take into account the visible/invisible status of #### See also -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1154 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-get-table-source.md b/versioned_docs/version-20-R7/commands-legacy/listbox-get-table-source.md index d38543b20826a3..3749c666a8d26a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-get-table-source.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-get-table-source.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX GET TABLE SOURCE command can be used to find out the current source of the data displayed in the list box that is designated by the *\** and *object* parameters. @@ -34,4 +31,13 @@ If the list box is associated with arrays, *tableNum* returns -1 and *name*, if #### See also -[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) \ No newline at end of file +[LISTBOX SET TABLE SOURCE](listbox-set-table-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1014 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md b/versioned_docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md index d4537b478931e0..afed99411e3ace 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-insert-column-formula.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX INSERT COLUMN FORMULA** command inserts a column into the list box designated by the *object* and *\** parameters. @@ -120,4 +117,13 @@ The column is added to the list box: #### See also -[LISTBOX INSERT COLUMN](listbox-insert-column.md) \ No newline at end of file +[LISTBOX INSERT COLUMN](listbox-insert-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 970 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-insert-column.md b/versioned_docs/version-20-R7/commands-legacy/listbox-insert-column.md index 87dfa56cc86dec..91b88cdf931ac4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-insert-column.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-insert-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX INSERT COLUMN** command inserts a column in the list box set by the *object* and *\** parameters. @@ -98,4 +95,13 @@ You want to insert a column dynamically into an array type list box and define i #### See also [LISTBOX DELETE COLUMN](listbox-delete-column.md) -[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) \ No newline at end of file +[LISTBOX INSERT COLUMN FORMULA](listbox-insert-column-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 829 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-insert-rows.md b/versioned_docs/version-20-R7/commands-legacy/listbox-insert-rows.md index 72f48b7ca5b48a..7f03432bf4cfce 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-insert-rows.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-insert-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX INSERT ROWS** command inserts one or several new row(s) in the list box set in the *object* and *\** parameters. @@ -35,4 +32,14 @@ If the *rowPosition* value is higher than the total number of rows in the list b #### See also -[LISTBOX DELETE ROWS](listbox-delete-rows.md) \ No newline at end of file +[LISTBOX DELETE ROWS](listbox-delete-rows.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 913 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-move-column.md b/versioned_docs/version-20-R7/commands-legacy/listbox-move-column.md index f95555be7b1f2b..d8ba569a96e341 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-move-column.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX MOVE COLUMN** command moves the column designated by the *object* and *\** parameters by programming in the context of the form being executed (Application mode). The original form, generated in the Design mode, is not modified. @@ -42,4 +39,13 @@ You want to swap the 2nd and 3rd columns of the list box: #### See also -[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) \ No newline at end of file +[LISTBOX DUPLICATE COLUMN](listbox-duplicate-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1274 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-moved-column-number.md b/versioned_docs/version-20-R7/commands-legacy/listbox-moved-column-number.md index f02edb291196ef..dcb49a4747d4d4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-moved-column-number.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-moved-column-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX MOVED COLUMN NUMBER** command returns two numbers in *oldPosition* and *newPosition* indicating respectively the previous position and the new position of the column moved in the list box, specified by the *object* and *\** parameters. @@ -32,4 +29,13 @@ This command must be used with the form event On Column Moved (see the [Form eve #### See also [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) \ No newline at end of file +[LISTBOX MOVED ROW NUMBER](listbox-moved-row-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 844 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-moved-row-number.md b/versioned_docs/version-20-R7/commands-legacy/listbox-moved-row-number.md index 31aec02ce91630..a1833ad3005f43 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-moved-row-number.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-moved-row-number.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX MOVED ROW NUMBER** command returns two numbers in *oldPosition* and *newPosition* indicating respectively the previous position and the new position of the row moved in the list box, specified by the *object* and *\** parameters. @@ -34,4 +31,13 @@ This command must be used with the form event On Row Moved (see the [Form event #### See also [Form event code](../commands/form-event-code.md) -[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) \ No newline at end of file +[LISTBOX MOVED COLUMN NUMBER](listbox-moved-column-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 837 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-select-break.md b/versioned_docs/version-20-R7/commands-legacy/listbox-select-break.md index c61c8e9db2f5c2..ab4decc087db82 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-select-break.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-select-break.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SELECT BREAK** command can be used to select break rows in the list box object designated by the *object* and *\** parameters. The list box must be displayed in hierarchical mode. @@ -63,4 +60,13 @@ Here is the result: #### See also [LISTBOX GET CELL POSITION](listbox-get-cell-position.md) -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1117 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-select-row.md b/versioned_docs/version-20-R7/commands-legacy/listbox-select-row.md index 44f062da40ee53..0feac4cd020f7a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-select-row.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-select-row.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX SELECT ROW command selects the row whose number is passed in *position* in the list box set in the *object* and *\** parameters. @@ -54,4 +51,13 @@ After execution of the method, the arrays are synchronized: if the source array [LISTBOX INSERT ROWS](listbox-insert-rows.md) [LISTBOX SELECT BREAK](listbox-select-break.md) [LISTBOX SELECT ROWS](listbox-select-rows.md) -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 912 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-select-rows.md b/versioned_docs/version-20-R7/commands-legacy/listbox-select-rows.md index 520339988f19d2..753fb3552900ab 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-select-rows.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-select-rows.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SELECT ROWS** command selects the rows of an entity selection or collection list box that correspond to the entities or objects in the *selection* parameter. @@ -85,4 +82,13 @@ Example with a collection of objects: #### See also -[LISTBOX SELECT ROW](listbox-select-row.md) \ No newline at end of file +[LISTBOX SELECT ROW](listbox-select-row.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1715 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-array.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-array.md index bc80a6e815b645..6ee80e3ab9522f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-array.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -66,4 +63,13 @@ You want to set a row height array for a list box: #### See also [LISTBOX Get array](listbox-get-array.md) -[LISTBOX GET ARRAYS](listbox-get-arrays.md) \ No newline at end of file +[LISTBOX GET ARRAYS](listbox-get-arrays.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1279 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md index 4272c2f7c85ba0..e0b977fe9fb80b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-auto-row-height.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET AUTO ROW HEIGHT** command allows you to set the minimum or maximum row height *value* in the list box object designated using the *object* and *\** parameters. @@ -59,4 +56,13 @@ You want to set the minimum and maximum heights for a list box with an automatic [LISTBOX Get auto row height](listbox-get-auto-row-height.md) [LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1501 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-column-formula.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-column-formula.md index c05f3cded0d4b6..25cc00a77f5717 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-column-formula.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-column-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET COLUMN FORMULA** command modifies the *formula* associated with the column of the list box designated by the *object* and *\** parameters. Formulas can only be used when the “Data Source” property of the list box is either **Current Selection**, **Named Selection**, or **Collection or Entity Selection**. @@ -43,4 +40,13 @@ The *dataType* parameter designates the type of data resulting from the executio #### See also [LISTBOX Get column formula](listbox-get-column-formula.md) -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1203 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-column-width.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-column-width.md index f18a4668cca1a9..746316c30c5cc9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-column-width.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-column-width.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET COLUMN WIDTH** command allows you to modify through programming the width of one or all column(s) of the object (list box, column or header) set using the *object* and *\** parameters. @@ -36,4 +33,13 @@ The optional *minWidth* and *maxWidth* parameters can be used to set limits for #### See also -[LISTBOX Get column width](listbox-get-column-width.md) \ No newline at end of file +[LISTBOX Get column width](listbox-get-column-width.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 833 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md index fe422b5e792812..fbded9c0a812c5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-footer-calculation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET FOOTER CALCULATION** command sets the automatic calculation associated with the footer of the list box designated by the *object* and *\** parameters @@ -51,4 +48,13 @@ If the data type of a column or of even one column of the list box (when object #### See also -[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) \ No newline at end of file +[LISTBOX Get footer calculation](listbox-get-footer-calculation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1140 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-footers-height.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-footers-height.md index 76f84dbef5e8c0..17f698fb04bcc2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-footers-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-footers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET FOOTERS HEIGHT** command modifies by programming the height of the footer row in the list box designated by the *object* and *\** parameters. @@ -36,4 +33,13 @@ Pass the height to set in the *height* parameter. By default, if you omit the *u #### See also -[LISTBOX Get footers height](listbox-get-footers-height.md) \ No newline at end of file +[LISTBOX Get footers height](listbox-get-footers-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1145 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-grid-color.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-grid-color.md index dbbd937973a0f1..cc05736b89729b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-grid-color.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-grid-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET GRID COLOR** command allows you to modify the color of the grid in the list box object set using the *object* and *\** parameters. @@ -37,4 +34,13 @@ The *horizontal* and *vertical* parameters allow you to set the grid lines to wh [LISTBOX GET GRID COLORS](listbox-get-grid-colors.md) [LISTBOX SET GRID](listbox-set-grid.md) -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 842 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-grid.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-grid.md index b7d6777b65eccd..8431d6447f377c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-grid.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-grid.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET GRID** command allows you to display or hide the horizontal and/or vertical grid lines that make up the grid in the list box object set using the *object* and *\** parameters. @@ -31,4 +28,13 @@ Pass the Boolean values in *horizontal* and *vertical* that indicate if the corr [LISTBOX GET GRID](listbox-get-grid.md) [LISTBOX Get property](listbox-get-property.md) -[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) \ No newline at end of file +[LISTBOX SET GRID COLOR](listbox-set-grid-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 841 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-headers-height.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-headers-height.md index c3a9acbdc05ad7..5e3bb3e75346b6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-headers-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-headers-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET HEADERS HEIGHT** command modifies by programming the height of the header row in the list box designated by the *object* and *\** parameters. @@ -40,4 +37,13 @@ Headers must respect the minimum height set by the system. This height is 24 pix #### See also -[LISTBOX Get headers height](listbox-get-headers-height.md) \ No newline at end of file +[LISTBOX Get headers height](listbox-get-headers-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1143 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md index 715d3a4280d9cb..7228825434711c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-hierarchy.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET HIERARCHY** command lets you configure the list box object designated by the *object* and *\** parameters in hierarchical or non-hierarchical mode. @@ -54,4 +51,13 @@ Definition of the aCountry, aRegion and aCity arrays as the hierarchy of a list #### See also -[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) \ No newline at end of file +[LISTBOX GET HIERARCHY](listbox-get-hierarchy.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1098 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md index 6577948ed4a064..7f4984eb533453 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-locked-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET LOCKED COLUMNS** command locks *numColumns* columns (starting from the first on the left) in the list box designated by the *object* and *\** parameters. @@ -33,4 +30,13 @@ To remove the column locking, pass 0 or a negative value in *numColumns*. #### See also [LISTBOX Get locked columns](listbox-get-locked-columns.md) -[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) \ No newline at end of file +[LISTBOX SET STATIC COLUMNS](listbox-set-static-columns.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1151 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-property.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-property.md index ef82bc80157d98..f0a9327ab2cb6a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-property.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-property.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET PROPERTY** command sets the *value* for the *property* of the list box or list box column specified using the *object* and *\** parameters. @@ -86,4 +83,13 @@ You want to set a maximum width for the column whose name is "ProductNumber": *List Box* -[LISTBOX Get property](listbox-get-property.md) \ No newline at end of file +[LISTBOX Get property](listbox-get-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1440 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-color.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-color.md index fb1de26122d0d3..74e0e4144174ad 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-color.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-color.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -65,4 +62,13 @@ In an array type list box, we want to set colors for a row and for one cell in t *List Box* [LISTBOX Get row color](listbox-get-row-color.md) [LISTBOX Get row color as number](listbox-get-row-color-as-number.md) -[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) \ No newline at end of file +[LISTBOX SET ROW FONT STYLE](listbox-set-row-font-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1270 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md index 2b2830ab6b49a2..2212e8ae775967 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-font-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command only works with array type list boxes. @@ -79,4 +76,13 @@ After the second statement, all the cells of the third row change to underlined #### See also [LISTBOX Get row font style](listbox-get-row-font-style.md) -[LISTBOX SET ROW COLOR](listbox-set-row-color.md) \ No newline at end of file +[LISTBOX SET ROW COLOR](listbox-set-row-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1268 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-height.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-height.md index 2f5c0c434ed0a9..831804eff3fbc3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-row-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET ROW HEIGHT** command allows you to modify the height of the specified *row* in the list box object designated using the *object* and *\** parameters. @@ -84,4 +81,13 @@ On the other hand, if the code below is executed subsequently… [LISTBOX Get row height](listbox-get-row-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) \ No newline at end of file +[LISTBOX SET ROWS HEIGHT](listbox-set-rows-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1409 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-rows-height.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-rows-height.md index 5ad96c1a0a7497..300b6b522f19ce 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-rows-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-rows-height.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET ROWS HEIGHT** command allows you to modify by programming the row height in the list box object set using the *object* and *\** parameters. @@ -38,4 +35,13 @@ By default, if you omit the *unit* parameter, the height is expressed in pixels. [LISTBOX Get rows height](listbox-get-rows-height.md) [LISTBOX SET AUTO ROW HEIGHT](listbox-set-auto-row-height.md) -[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) \ No newline at end of file +[LISTBOX SET ROW HEIGHT](listbox-set-row-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 835 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-static-columns.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-static-columns.md index 244a90b9394876..0dda6b7995092c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-static-columns.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-static-columns.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET STATIC COLUMNS** command sets *numColumns* columns as static (starting from the first on the left) in the list box designated by the *object* and *\** parameters. @@ -29,4 +26,13 @@ Static columns cannot be moved within the list box. #### See also [LISTBOX Get static columns](listbox-get-static-columns.md) -[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) \ No newline at end of file +[LISTBOX SET LOCKED COLUMNS](listbox-set-locked-columns.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1153 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-set-table-source.md b/versioned_docs/version-20-R7/commands-legacy/listbox-set-table-source.md index 385c6be72a9ab9..c4bd2915aaf032 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-set-table-source.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-set-table-source.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **LISTBOX SET TABLE SOURCE** command can be used to modify the source of the data displayed in the listbox that is designated by the *\** and *object* parameters. @@ -39,4 +36,13 @@ If the listbox already contains columns, their contents will be updated after th #### See also -[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) \ No newline at end of file +[LISTBOX GET TABLE SOURCE](listbox-get-table-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1013 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/listbox-sort-columns.md b/versioned_docs/version-20-R7/commands-legacy/listbox-sort-columns.md index 8955508b1eee67..69b48dc2ffba62 100644 --- a/versioned_docs/version-20-R7/commands-legacy/listbox-sort-columns.md +++ b/versioned_docs/version-20-R7/commands-legacy/listbox-sort-columns.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The LISTBOX SORT COLUMNS command applies a standard sort to the rows of the list box defined by the *object* and *\** parameters on the basis of one or more column value(s). @@ -36,3 +33,13 @@ You can define multi-level sorts: to do so, pass as many pairs (*colNum;order*) In conformity with the principle of list box operation, the columns are synchronized which means that the sorting of a column is automatically passed on to all the other columns of the object. **Note:** The **LISTBOX SORT COLUMNS** command does not take the *Sortable* listbox property into account. + + +#### Properties + +| | | +| --- | --- | +| Command number | 916 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/load-4d-view-document.md b/versioned_docs/version-20-R7/commands-legacy/load-4d-view-document.md index 81ca0ee7ca5317..d42110780cc3f2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/load-4d-view-document.md +++ b/versioned_docs/version-20-R7/commands-legacy/load-4d-view-document.md @@ -194,3 +194,13 @@ You will get the following result (stringified object): ``` **Note:** For more information about the format of the returned [object](# "Data structured as a native 4D object"), please contact the 4D technical services. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1528 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/load-list.md b/versioned_docs/version-20-R7/commands-legacy/load-list.md index 80f248123fa583..8c83a026fdf057 100644 --- a/versioned_docs/version-20-R7/commands-legacy/load-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/load-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Load list** creates a new hierarchical list whose contents are copied from the list and whose name you pass in *listName*. It then returns the list reference number to the newly created list. @@ -52,4 +49,13 @@ You create a database for the international market and you need to switch to dif [CLEAR LIST](clear-list.md) [Is a list](is-a-list.md) -[SAVE LIST](save-list.md) \ No newline at end of file +[SAVE LIST](save-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 383 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/load-record.md b/versioned_docs/version-20-R7/commands-legacy/load-record.md index db65083d1fb3e5..12008268863072 100644 --- a/versioned_docs/version-20-R7/commands-legacy/load-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/load-record.md @@ -34,4 +34,13 @@ In multi-user and multi-process environments, when you need to modify an existin [Locked](locked.md) *Record Locking* -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 52 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/load-set.md b/versioned_docs/version-20-R7/commands-legacy/load-set.md index 029ced12928f37..700c7e495dcca6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/load-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/load-set.md @@ -41,4 +41,14 @@ If the user clicks Cancel in the Open File dialog box, or there is an error duri #### See also -[SAVE SET](save-set.md) \ No newline at end of file +[SAVE SET](save-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 185 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/load-variables.md b/versioned_docs/version-20-R7/commands-legacy/load-variables.md index 0c995d6b9f2b27..8405167d400091 100644 --- a/versioned_docs/version-20-R7/commands-legacy/load-variables.md +++ b/versioned_docs/version-20-R7/commands-legacy/load-variables.md @@ -44,4 +44,14 @@ If the variables are loaded properly, the OK system variable is set to 1; otherw [BLOB TO VARIABLE](blob-to-variable.md) [DOCUMENT TO BLOB](document-to-blob.md) [RECEIVE VARIABLE](receive-variable.md) -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 74 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/localized-document-path.md b/versioned_docs/version-20-R7/commands-legacy/localized-document-path.md index 37372a6c7b5390..74c943470b9baa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/localized-document-path.md +++ b/versioned_docs/version-20-R7/commands-legacy/localized-document-path.md @@ -65,4 +65,13 @@ If the current language is, for example, French Canadian (fr-ca), the command re #### See also -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1105 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/localized-string.md b/versioned_docs/version-20-R7/commands-legacy/localized-string.md index ab3900e84228c5..39b7dc2f867297 100644 --- a/versioned_docs/version-20-R7/commands-legacy/localized-string.md +++ b/versioned_docs/version-20-R7/commands-legacy/localized-string.md @@ -53,4 +53,14 @@ If the command is executed correctly, the OK variable is set to 1\. If *resName* #### See also -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 991 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/locked-by.md b/versioned_docs/version-20-R7/commands-legacy/locked-by.md index 7a082a473eb153..2915d4dc53c160 100644 --- a/versioned_docs/version-20-R7/commands-legacy/locked-by.md +++ b/versioned_docs/version-20-R7/commands-legacy/locked-by.md @@ -39,4 +39,13 @@ If the record has been locked by a *$lock REST request*: #### See also [Locked](locked.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 353 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/locked-records-info.md b/versioned_docs/version-20-R7/commands-legacy/locked-records-info.md index f623c86b8dd53a..7f59bc8191e55f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/locked-records-info.md +++ b/versioned_docs/version-20-R7/commands-legacy/locked-records-info.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Locked records info** command returns an [object](# "Data structured as a native 4D object") containing different information about the currently locked record(s) in *aTable*. - -**Note:** The command works only with 4D and 4D Server. It returns an invalid object when called from 4D Remote. However, it can be called in this context if the "Execute on server" option is activated for the calling method. In this case, the object returned will contain information about the server. When called from a component, it always applies to the host database. +The **Locked records info** command returns an [object](# "Data structured as a native 4D object") containing different information about the currently locked record(s) in *aTable*.The command works only with 4D and 4D Server. It returns an invalid object when called from 4D Remote. However, it can be called in this context if the "Execute on server" option is activated for the calling method. In this case, the object returned will contain information about the server. When called from a component, it always applies to the host database. The returned object contains a "records" property which is a collection of objects: @@ -89,4 +87,13 @@ If the code is executed on a 4D Server and the locking is caused by a remote cli #### See also -[Locked](locked.md) \ No newline at end of file +[Locked](locked.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1316 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/locked.md b/versioned_docs/version-20-R7/commands-legacy/locked.md index 278985ac87a37e..c1cbd9b025e62c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/locked.md +++ b/versioned_docs/version-20-R7/commands-legacy/locked.md @@ -33,4 +33,13 @@ During transaction processing, [LOAD RECORD](load-record.md) and **Locked** are [Locked records info](locked-records-info.md) [LOAD RECORD](load-record.md) [LOCKED BY](locked-by.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 147 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/log-event.md b/versioned_docs/version-20-R7/commands-legacy/log-event.md index ac50f2442ea7bc..7c03130d415961 100644 --- a/versioned_docs/version-20-R7/commands-legacy/log-event.md +++ b/versioned_docs/version-20-R7/commands-legacy/log-event.md @@ -62,4 +62,13 @@ Each time the database is opened, this information will be written in Windows’ #### See also -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 667 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/log-file-to-json.md b/versioned_docs/version-20-R7/commands-legacy/log-file-to-json.md index b71270b4d4d57b..6138fd0cfe541a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/log-file-to-json.md +++ b/versioned_docs/version-20-R7/commands-legacy/log-file-to-json.md @@ -95,4 +95,14 @@ The **LOG FILE TO JSON** command modifies the value of the OK and Document varia #### See also [Download HDI database](http://download.4d.com/Demos/4D%5Fv15%5FR4/ExportLogToJSON%5FHDI.zip) -[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) \ No newline at end of file +[INTEGRATE MIRROR LOG FILE](integrate-mirror-log-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1352 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/log-file.md b/versioned_docs/version-20-R7/commands-legacy/log-file.md index b092e1cf181032..5f50e57b7f8254 100644 --- a/versioned_docs/version-20-R7/commands-legacy/log-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/log-file.md @@ -30,4 +30,14 @@ If the database operates with a log file, the system variable OK is set to 1\. T #### See also -[SELECT LOG FILE](select-log-file.md) \ No newline at end of file +[SELECT LOG FILE](select-log-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 928 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/log.md b/versioned_docs/version-20-R7/commands-legacy/log.md index b816e41af8223b..20a60e4a6ba216 100644 --- a/versioned_docs/version-20-R7/commands-legacy/log.md +++ b/versioned_docs/version-20-R7/commands-legacy/log.md @@ -30,4 +30,13 @@ The following line displays 1: #### See also -[Exp](exp.md) \ No newline at end of file +[Exp](exp.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 22 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/longint-array-from-selection.md b/versioned_docs/version-20-R7/commands-legacy/longint-array-from-selection.md index d40d851dc1c891..0155bb978b8df6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/longint-array-from-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/longint-array-from-selection.md @@ -34,4 +34,13 @@ You want to retrieve the numbers of the records in the current selection: #### See also -[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) \ No newline at end of file +[CREATE SELECTION FROM ARRAY](create-selection-from-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 647 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/longint-to-blob.md b/versioned_docs/version-20-R7/commands-legacy/longint-to-blob.md index 9784431047fa17..50e8ce0103c0fa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/longint-to-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/longint-to-blob.md @@ -113,4 +113,13 @@ After executing this code: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [REAL TO BLOB](real-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 550 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/lowercase.md b/versioned_docs/version-20-R7/commands-legacy/lowercase.md index c093e27783bd2f..039e32e7cf9749 100644 --- a/versioned_docs/version-20-R7/commands-legacy/lowercase.md +++ b/versioned_docs/version-20-R7/commands-legacy/lowercase.md @@ -47,4 +47,13 @@ This example compares the results obtained according to whether or not the *\** #### See also -[Uppercase](uppercase.md) \ No newline at end of file +[Uppercase](uppercase.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 14 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/macintosh-command-down.md b/versioned_docs/version-20-R7/commands-legacy/macintosh-command-down.md index 2c20f8c93f9730..ff6858bf132512 100644 --- a/versioned_docs/version-20-R7/commands-legacy/macintosh-command-down.md +++ b/versioned_docs/version-20-R7/commands-legacy/macintosh-command-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh command down** returns TRUE if the Macintosh command key is pressed. - -**Note:** When called on a Windows platform, **Macintosh command down** returns TRUE if the Windows Ctrl key is pressed. +**Macintosh command down** returns TRUE if the Macintosh command key is pressed.When called on a Windows platform, **Macintosh command down** returns TRUE if the Windows Ctrl key is pressed. #### Example @@ -30,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 546 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/macintosh-control-down.md b/versioned_docs/version-20-R7/commands-legacy/macintosh-control-down.md index 961e11d16ee0c9..ade0bdaafed8aa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/macintosh-control-down.md +++ b/versioned_docs/version-20-R7/commands-legacy/macintosh-control-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh control down** returns TRUE if the Macintosh Control key is pressed. - -**Note:** When called on a Windows platform, **Macintosh control down** always return FALSE. This Macintosh key has no equivalent on Windows. +**Macintosh control down** returns TRUE if the Macintosh Control key is pressed.When called on a Windows platform, **Macintosh control down** always return FALSE. This Macintosh key has no equivalent on Windows. #### Example @@ -30,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 544 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/macintosh-option-down.md b/versioned_docs/version-20-R7/commands-legacy/macintosh-option-down.md index f8e6371d8ce27a..7b8a77b648b1ac 100644 --- a/versioned_docs/version-20-R7/commands-legacy/macintosh-option-down.md +++ b/versioned_docs/version-20-R7/commands-legacy/macintosh-option-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Macintosh option down** returns TRUE if the Macintosh Option key is pressed. - -**Note:** When called on a Windows platform, **Macintosh option down** returns TRUE if the Windows Alt key is pressed. +**Macintosh option down** returns TRUE if the Macintosh Option key is pressed.When called on a Windows platform, **Macintosh option down** returns TRUE if the Windows Alt key is pressed. #### Example @@ -30,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh control down](macintosh-control-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 545 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/match-regex.md b/versioned_docs/version-20-R7/commands-legacy/match-regex.md index e64b3e5b14eca1..2dde8cab4a3a78 100644 --- a/versioned_docs/version-20-R7/commands-legacy/match-regex.md +++ b/versioned_docs/version-20-R7/commands-legacy/match-regex.md @@ -107,3 +107,14 @@ Add a star to the end of one of the two previous syntaxes. #### Error management In the event of an error, the command generates an error that you can intercept via a method installed by the [ON ERR CALL](on-err-call.md) command. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1019 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/max.md b/versioned_docs/version-20-R7/commands-legacy/max.md index c42072c504ece2..cfb025347c6652 100644 --- a/versioned_docs/version-20-R7/commands-legacy/max.md +++ b/versioned_docs/version-20-R7/commands-legacy/max.md @@ -68,4 +68,14 @@ For an example of computing an object field attribute, please refer to the examp #### See also -[Min](min.md) \ No newline at end of file +[Min](min.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 3 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/maximize-window.md b/versioned_docs/version-20-R7/commands-legacy/maximize-window.md index 20cb60e243b557..8b2c428f15aa18 100644 --- a/versioned_docs/version-20-R7/commands-legacy/maximize-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/maximize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The MAXIMIZE WINDOW command triggers the expansion of the window whose reference number was passed in *window*. If this parameter is omitted, the effect is the same but is applied to all the frontmost windows of the current process (Windows) or to the frontmost window of the current process (Mac OS). @@ -84,4 +81,13 @@ In this context, when the user clicks on the button: [Is window maximized](is-window-maximized.md) [MINIMIZE WINDOW](minimize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 453 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/memory-statistics.md b/versioned_docs/version-20-R7/commands-legacy/memory-statistics.md index 25796e13944e4e..8e8a0035063f6c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/memory-statistics.md +++ b/versioned_docs/version-20-R7/commands-legacy/memory-statistics.md @@ -26,4 +26,13 @@ After the command has been executed, the statistics are provided in the *arrName #### See also -[Cache info](cache-info.md) \ No newline at end of file +[Cache info](cache-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1118 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/menu-bar-height.md b/versioned_docs/version-20-R7/commands-legacy/menu-bar-height.md index a11228e371621a..89e2ddc0000413 100644 --- a/versioned_docs/version-20-R7/commands-legacy/menu-bar-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/menu-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Menu bar height returns the height of the menu bar, expressed in pixels. @@ -31,4 +28,13 @@ The command returns 0: [HIDE MENU BAR](hide-menu-bar.md) [Menu bar screen](menu-bar-screen.md) -[SHOW MENU BAR](show-menu-bar.md) \ No newline at end of file +[SHOW MENU BAR](show-menu-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 440 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/menu-bar-screen.md b/versioned_docs/version-20-R7/commands-legacy/menu-bar-screen.md index 412531077494da..8d5ee6ad79b359 100644 --- a/versioned_docs/version-20-R7/commands-legacy/menu-bar-screen.md +++ b/versioned_docs/version-20-R7/commands-legacy/menu-bar-screen.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Menu bar screen returns the number of the screen where the menu bar is located. @@ -25,4 +22,13 @@ displayed_sidebar: docs #### See also [Count screens](count-screens.md) -[Menu bar height](menu-bar-height.md) \ No newline at end of file +[Menu bar height](menu-bar-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 441 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/menu-selected.md b/versioned_docs/version-20-R7/commands-legacy/menu-selected.md index b86adb6d3a755f..3e3bc4f2ed5c2e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/menu-selected.md +++ b/versioned_docs/version-20-R7/commands-legacy/menu-selected.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Menu selected** is used only when forms are displayed. It detects which menu command has been chosen from a menu and, in the case of a hierarchical submenu, returns the reference of the submenu. @@ -61,4 +58,14 @@ The following form method uses **Menu selected** to supply the menu and menu ite #### See also -*Managing Menus* \ No newline at end of file +*Managing Menus* + +#### Properties + +| | | +| --- | --- | +| Command number | 152 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/message.md b/versioned_docs/version-20-R7/commands-legacy/message.md index 02847b14089212..6dae0e7c3d8548 100644 --- a/versioned_docs/version-20-R7/commands-legacy/message.md +++ b/versioned_docs/version-20-R7/commands-legacy/message.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **MESSAGE** command is usually used to inform the user of some activity. It displays *message* on the screen in a special message window that opens and closes each time you call **MESSAGE**, unless you work with a window you previously opened using [Open window](open-window.md) (see the following details). The message is temporary and is erased as soon as a form is displayed or the method stops executing. If another **MESSAGE** is executed, the old message is erased. @@ -114,4 +111,13 @@ This provides the following result (shown here on Windows): [CLOSE WINDOW](close-window.md) [ERASE WINDOW](erase-window.md) [GOTO XY](goto-xy.md) -[Open window](open-window.md) \ No newline at end of file +[Open window](open-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 88 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/messages-off.md b/versioned_docs/version-20-R7/commands-legacy/messages-off.md index ac608559d56ad3..1cd9718811d71d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/messages-off.md +++ b/versioned_docs/version-20-R7/commands-legacy/messages-off.md @@ -66,4 +66,13 @@ The following example turns off the progress meter before doing a sort, and then #### See also -[MESSAGES ON](messages-on.md) \ No newline at end of file +[MESSAGES ON](messages-on.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 175 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/messages-on.md b/versioned_docs/version-20-R7/commands-legacy/messages-on.md index 771fdff22ce457..51a7bafaea0bd2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/messages-on.md +++ b/versioned_docs/version-20-R7/commands-legacy/messages-on.md @@ -18,4 +18,13 @@ displayed_sidebar: docs #### See also -[MESSAGES OFF](messages-off.md) \ No newline at end of file +[MESSAGES OFF](messages-off.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 181 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-called-on-error.md b/versioned_docs/version-20-R7/commands-legacy/method-called-on-error.md index 429348b833016d..5f6b9e93977f9b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-called-on-error.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-called-on-error.md @@ -44,4 +44,13 @@ This command is particularly useful in the context of components because it enab #### See also *Error Handler* -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 704 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-called-on-event.md b/versioned_docs/version-20-R7/commands-legacy/method-called-on-event.md index 326b7f1d443878..d1ae698bcb943a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-called-on-event.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-called-on-event.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Method called on event** command returns the name of the method installed by the [ON EVENT CALL](on-event-call.md) command. @@ -24,4 +21,13 @@ If no such method has been installed, an empty string ("") is returned. #### See also -[ON EVENT CALL](on-event-call.md) \ No newline at end of file +[ON EVENT CALL](on-event-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 705 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-get-attribute.md b/versioned_docs/version-20-R7/commands-legacy/method-get-attribute.md index 84aeb419b67b61..ba1fc855d6293c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-get-attribute.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-get-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD Get attribute** command returns the value of the *attribType* attribute for the project method designated by the *path* parameter. This command only works with project methods. If you pass an invalid *path*, an error is generated. @@ -41,4 +38,13 @@ The command returns **True** when an attribute is selected and **False** if it i #### See also -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1169 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-get-attributes.md b/versioned_docs/version-20-R7/commands-legacy/method-get-attributes.md index e0603127958d28..8f95a314bd244d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-get-attributes.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-get-attributes.md @@ -59,4 +59,13 @@ After execution, $att contains, for example: #### See also -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1334 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-get-code.md b/versioned_docs/version-20-R7/commands-legacy/method-get-code.md index 15981ac3416793..4a08272462f17b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-get-code.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-get-code.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET CODE** command returns, in the *code* parameter, the contents of the method(s) designated by the *path* parameter. This command can return the code of all types of methods: database methods, class definitions, triggers, project methods, form methods and object methods. @@ -120,4 +117,13 @@ The resulting document will contain: #### See also [METHOD SET CODE](method-set-code.md) -*Using tokens in formulas* \ No newline at end of file +*Using tokens in formulas* + +#### Properties + +| | | +| --- | --- | +| Command number | 1190 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-get-comments.md b/versioned_docs/version-20-R7/commands-legacy/method-get-comments.md index 27a49e774336d2..7d5c7740ba3991 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-get-comments.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-get-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET COMMENTS** command returns, in the *comments* parameter, the documentation of the method(s) designated by the *path* parameter. @@ -55,4 +52,13 @@ If the command is executed from a component, it applies by default to the compon #### See also -[METHOD SET COMMENTS](method-set-comments.md) \ No newline at end of file +[METHOD SET COMMENTS](method-set-comments.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1189 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-get-folders.md b/versioned_docs/version-20-R7/commands-legacy/method-get-folders.md index 25e8ceae5a45cb..85ae61da544a44 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-get-folders.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-get-folders.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET FOLDERS** command returns, in the *arrNames* array, the names of folders created on the Home page of the 4D Explorer: @@ -32,4 +29,13 @@ If the command is executed from a component, it returns by default the paths of #### See also -[METHOD GET PATHS](method-get-paths.md) \ No newline at end of file +[METHOD GET PATHS](method-get-paths.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1206 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-get-modification-date.md b/versioned_docs/version-20-R7/commands-legacy/method-get-modification-date.md index 4c07faf69d9ae9..bba7530a3dd078 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-get-modification-date.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-get-modification-date.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET MODIFICATION DATE** command returns, in the *modDate* and *modTime* parameters, the dates and times of the last modification of the method(s) designated by the *path* parameter. @@ -70,3 +67,13 @@ You want to get modification dates for methods in a module that are prefixed wit ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1170 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-get-names.md b/versioned_docs/version-20-R7/commands-legacy/method-get-names.md index 992161c7010856..e36e0ed0d24225 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-get-names.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-get-names.md @@ -39,3 +39,13 @@ Here are a few typical examples of use:   // List of project methods in the host database beginning with a specific string  METHOD GET NAMES(t_Names;"web_@";*) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1166 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-get-path.md b/versioned_docs/version-20-R7/commands-legacy/method-get-path.md index ed06ee0b2a1fc6..667707ea1c3142 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-get-path.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-get-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD Get path** command returns the full internal pathname of a method. @@ -66,4 +63,13 @@ If the command is executed from a component, it returns by default the paths of [Current method path](current-method-path.md) [METHOD OPEN PATH](method-open-path.md) -[METHOD RESOLVE PATH](method-resolve-path.md) \ No newline at end of file +[METHOD RESOLVE PATH](method-resolve-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1164 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-get-paths-form.md b/versioned_docs/version-20-R7/commands-legacy/method-get-paths-form.md index 629c2fbaff5e8a..a34df8859964f2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-get-paths-form.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-get-paths-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET PATHS FORM** command fills the *arrPaths* array with the internal pathnames and names of the methods for all form objects as well as form methods. Form methods are labeled {formMethod}. @@ -71,4 +68,13 @@ List of all objects of the "input" form for the \[Employees\] table from a compo #### See also -[FORM GET NAMES](form-get-names.md) \ No newline at end of file +[FORM GET NAMES](form-get-names.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1168 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-get-paths.md b/versioned_docs/version-20-R7/commands-legacy/method-get-paths.md index 83f9ffaee4e258..0fe948ac21920e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-get-paths.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-get-paths.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD GET PATHS** command fills the *arrPaths* array with the internal pathnames and names of methods in the application that are of the type specified by the *methodType* parameter. @@ -86,4 +83,13 @@ Refer to the example of the [METHOD SET CODE](method-set-code.md) command. #### See also [Current method path](current-method-path.md) -[METHOD GET FOLDERS](method-get-folders.md) \ No newline at end of file +[METHOD GET FOLDERS](method-get-folders.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1163 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-open-path.md b/versioned_docs/version-20-R7/commands-legacy/method-open-path.md index 4798a0d1baedf8..f343feddb990fb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-open-path.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-open-path.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD OPEN PATH** command opens, in the 4D Method editor, the method whose internal pathname is passed in the *path* parameter. @@ -33,4 +30,13 @@ You can execute this command from a component, but in this case, you must pass t #### See also *Design Object Access Commands* -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1213 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-resolve-path.md b/versioned_docs/version-20-R7/commands-legacy/method-resolve-path.md index e463c51b59edd0..9f2da17a123a62 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-resolve-path.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-resolve-path.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD RESOLVE PATH** command parses the internal path name passed in the *path* parameter and returns its different components in the *methodType*, *ptrTable*, *objectName*, and *formObjectName* parameters. @@ -84,4 +81,13 @@ Resolution of a path for an object of a table form method: #### See also -[METHOD Get path](method-get-path.md) \ No newline at end of file +[METHOD Get path](method-get-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1165 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-set-access-mode.md b/versioned_docs/version-20-R7/commands-legacy/method-set-access-mode.md index 9de6696f66be89..239d7170fabf48 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-set-access-mode.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-set-access-mode.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD SET ACCESS MODE** command sets the behavior for 4D when you attempt to write access an object already loaded for modification by another user or process. The scope of this command is the current session. @@ -27,3 +24,13 @@ In *mode*, you pass one of the following constants of the *Design Object Access* | On object locked abort | Integer | 0 | Loading of object is aborted (default functioning) | | On object locked confirm | Integer | 2 | 4D displays a dialog box so that you can choose to try again or to abort. In remote mode, this option is not supported (loading is aborted) | | On object locked retry | Integer | 1 | 4D keeps attempting to load the object until it has been released | + + +#### Properties + +| | | +| --- | --- | +| Command number | 1191 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-set-attribute.md b/versioned_docs/version-20-R7/commands-legacy/method-set-attribute.md index 391d816929e0a6..59b6ea63ec1399 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-set-attribute.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-set-attribute.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD SET ATTRIBUTE** command sets the value(s) of the *attribType* attribute(s) for the project method designated by the *path* parameter. This command only works with project methods. If you pass an invalid *path*, an error is generated. @@ -69,4 +66,13 @@ Setting several attribute/value pairs: *Design Object Access* [METHOD Get attribute](method-get-attribute.md) -[METHOD SET ATTRIBUTES](method-set-attributes.md) \ No newline at end of file +[METHOD SET ATTRIBUTES](method-set-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1192 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-set-attributes.md b/versioned_docs/version-20-R7/commands-legacy/method-set-attributes.md index 4a80e299907cf3..2d2b25e6a617c3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-set-attributes.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-set-attributes.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD SET ATTRIBUTES** command allows you to set the *attributes* values for the method(s) specified in the *path* parameter. @@ -53,4 +50,13 @@ You want to set a single attribute: #### See also [METHOD GET ATTRIBUTES](method-get-attributes.md) -[METHOD SET ATTRIBUTE](method-set-attribute.md) \ No newline at end of file +[METHOD SET ATTRIBUTE](method-set-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1335 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-set-code.md b/versioned_docs/version-20-R7/commands-legacy/method-set-code.md index a5dec7254a9036..7a478064861e11 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-set-code.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-set-code.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD SET CODE** command modifies the code of the method(s) designated by the *path* parameter with the contents passed in the *code* parameter. @@ -99,4 +96,13 @@ This example exports and imports all the project methods of an application: #### See also -[METHOD GET CODE](method-get-code.md) \ No newline at end of file +[METHOD GET CODE](method-get-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1194 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/method-set-comments.md b/versioned_docs/version-20-R7/commands-legacy/method-set-comments.md index 392a2a54153309..2b6f3592c07887 100644 --- a/versioned_docs/version-20-R7/commands-legacy/method-set-comments.md +++ b/versioned_docs/version-20-R7/commands-legacy/method-set-comments.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **METHOD SET COMMENTS** command replaces the documentation of the method(s) designated by the *path* parameter by those specified in the *comments* parameter. @@ -63,4 +60,13 @@ Add a modification date to an existing trigger documentation: #### See also -[METHOD GET COMMENTS](method-get-comments.md) \ No newline at end of file +[METHOD GET COMMENTS](method-get-comments.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1193 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/milliseconds.md b/versioned_docs/version-20-R7/commands-legacy/milliseconds.md index 13d7e5298470ca..47147b53dd4460 100644 --- a/versioned_docs/version-20-R7/commands-legacy/milliseconds.md +++ b/versioned_docs/version-20-R7/commands-legacy/milliseconds.md @@ -46,4 +46,13 @@ The following code waits up to 5 seconds for a locked record to become unlocked [Current time](current-time.md) [Tickcount](tickcount.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 459 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/min.md b/versioned_docs/version-20-R7/commands-legacy/min.md index a0033ca7cf183d..360e26b52bdf83 100644 --- a/versioned_docs/version-20-R7/commands-legacy/min.md +++ b/versioned_docs/version-20-R7/commands-legacy/min.md @@ -76,4 +76,14 @@ For an example of computing an object field attribute, please refer to the examp #### See also -[Max](max.md) \ No newline at end of file +[Max](max.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 4 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/minimize-window.md b/versioned_docs/version-20-R7/commands-legacy/minimize-window.md index 5ac41a9037ff2b..a03599af9f2333 100644 --- a/versioned_docs/version-20-R7/commands-legacy/minimize-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/minimize-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The MINIMIZE WINDOW command sets the size of the window whose number is passed as *window* to the size it was before being maximized. If *window* is omitted, the command applies to each window of the application (Windows) or to the frontmost window of the process (on Mac OS). @@ -49,4 +46,13 @@ Mac OS #### See also [MAXIMIZE WINDOW](maximize-window.md) -[REDUCE RESTORE WINDOW](reduce-restore-window.md) \ No newline at end of file +[REDUCE RESTORE WINDOW](reduce-restore-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 454 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md b/versioned_docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md index 53331a617b1321..ebf7d5b379c5b0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md +++ b/versioned_docs/version-20-R7/commands-legacy/mobile-app-refresh-sessions.md @@ -44,4 +44,13 @@ You want to reset all current sessions for all mobile applications: #### See also -[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) \ No newline at end of file +[On Mobile App Authentication database method](on-mobile-app-authentication-database-method.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1596 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/mod.md b/versioned_docs/version-20-R7/commands-legacy/mod.md index b24a8369e2288e..c65799002f5ebc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/mod.md +++ b/versioned_docs/version-20-R7/commands-legacy/mod.md @@ -19,8 +19,6 @@ displayed_sidebar: docs The **Mod** command returns the remainder of the Integer division of *number1* by *number2*. -**Notes:** - * **Mod** accepts Integer, Long Integer, and Real expressions. However, if *number1* or *number2* are real numbers, the numbers are first rounded and then **Mod** is calculated. * Be careful when using **Mod** with real numbers of a large size (above 2^31) since, in this case, its operation may reach the limits of the calculation capacities of standard processors. @@ -37,3 +35,13 @@ The following example illustrates how the Mod function works with different argu  vlResult:=Mod(4;2) // vlResult gets 0  vlResult:=Mod(3.5;2) // vlResult gets 0 ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 98 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/modified-record.md b/versioned_docs/version-20-R7/commands-legacy/modified-record.md index b3ae50d766e489..f26baa3ee532df 100644 --- a/versioned_docs/version-20-R7/commands-legacy/modified-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/modified-record.md @@ -41,4 +41,13 @@ The following example shows a typical use for **Modified record**: [Modified](modified.md) [Old](old.md) -[SAVE RECORD](save-record.md) \ No newline at end of file +[SAVE RECORD](save-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 314 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/modified.md b/versioned_docs/version-20-R7/commands-legacy/modified.md index 8624604692c00c..9357adf0ebf93b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/modified.md +++ b/versioned_docs/version-20-R7/commands-legacy/modified.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Modified** returns [True](true.md "True") if *field* has been programmatically assigned a value or has been edited during data entry. The **Modified** command must only be used in a form method (or a subroutine called by a form method). @@ -69,4 +66,13 @@ You select a record for the table *\[anyTable\]*, then you call multiple subrout #### See also [Form event code](../commands/form-event-code.md) -[Old](old.md) \ No newline at end of file +[Old](old.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 32 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/modify-record.md b/versioned_docs/version-20-R7/commands-legacy/modify-record.md index e2beac87c4312c..dc82fadeb04f91 100644 --- a/versioned_docs/version-20-R7/commands-legacy/modify-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/modify-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **MODIFY RECORD** command modifies the current record for the table *aTable* or for the default table if you omit the *aTable* parameter. **MODIFY RECORD** loads the record, if it is not already loaded for the current process, and displays the current input form. If there is no current record, then **MODIFY RECORD** does nothing. **MODIFY RECORD** does not affect the current selection. @@ -50,4 +47,15 @@ Accepting the record sets the OK system variable to 1; canceling it sets the OK [Locked](locked.md) [Modified record](modified-record.md) [READ WRITE](read-write.md) -[UNLOAD RECORD](unload-record.md) \ No newline at end of file +[UNLOAD RECORD](unload-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 57 | +| Thread safe | ✗ | +| Modifies variables | OK | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/modify-selection.md b/versioned_docs/version-20-R7/commands-legacy/modify-selection.md index cdd1a32f101374..fdb7cc48c9171d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/modify-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/modify-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **MODIFY SELECTION** does almost the same thing as [DISPLAY SELECTION](display-selection.md). Refer to the description of [DISPLAY SELECTION](display-selection.md) for details. The differences between the two commands are: @@ -32,4 +29,14 @@ displayed_sidebar: docs [DISPLAY SELECTION](display-selection.md) [Form event code](../commands/form-event-code.md) -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 204 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/monitored-activity.md b/versioned_docs/version-20-R7/commands-legacy/monitored-activity.md index 4ef250516abbd0..eecfbd598a75bc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/monitored-activity.md +++ b/versioned_docs/version-20-R7/commands-legacy/monitored-activity.md @@ -138,4 +138,13 @@ See example for **[START MONITORING ACTIVITY](start-monitoring-activity.md)** #### See also [START MONITORING ACTIVITY](start-monitoring-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1713 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/month-of.md b/versioned_docs/version-20-R7/commands-legacy/month-of.md index cba837436cec3e..e0cd5da28d4afd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/month-of.md +++ b/versioned_docs/version-20-R7/commands-legacy/month-of.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Month of** command returns the month of *aDate*. - -**Note:** **Month of** returns the number of the month, not the name (see Example 1). +The **Month of** command returns the month of *aDate*.**Month of** returns the number of the month, not the name (see Example 1). To compare the value returned by this function, 4D provides the following predefined constants, found in the "*Days and Months*" theme: @@ -54,4 +52,13 @@ See example for the [Current date](current-date.md) command. #### See also [Day of](day-of.md) -[Year of](year-of.md) \ No newline at end of file +[Year of](year-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 24 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/mouse-position.md b/versioned_docs/version-20-R7/commands-legacy/mouse-position.md index 25a95f55201e33..9233e423381c8a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/mouse-position.md +++ b/versioned_docs/version-20-R7/commands-legacy/mouse-position.md @@ -39,4 +39,13 @@ See the example for the [Pop up menu](pop-up-menu.md) command. [ON EVENT CALL](on-event-call.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 468 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/move-document.md b/versioned_docs/version-20-R7/commands-legacy/move-document.md index 0687e4abab10e2..90122d477040b3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/move-document.md +++ b/versioned_docs/version-20-R7/commands-legacy/move-document.md @@ -50,4 +50,14 @@ The following example moves the document DocName: #### See also -[COPY DOCUMENT](copy-document.md) \ No newline at end of file +[COPY DOCUMENT](copy-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 540 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/multi-sort-array.md b/versioned_docs/version-20-R7/commands-legacy/multi-sort-array.md index 1ce7b60311d456..5fbe2304231d4d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/multi-sort-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/multi-sort-array.md @@ -108,4 +108,13 @@ If you want the array of names be used as a third sort criterion, you need to as [ORDER BY](order-by.md) [SELECTION TO ARRAY](selection-to-array.md) -[SORT ARRAY](sort-array.md) \ No newline at end of file +[SORT ARRAY](sort-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 718 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/new-data-key.md b/versioned_docs/version-20-R7/commands-legacy/new-data-key.md index ca18a87cc56bff..5d07cbbb4e8ba4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/new-data-key.md +++ b/versioned_docs/version-20-R7/commands-legacy/new-data-key.md @@ -54,4 +54,13 @@ You want to save an encryption key in a .4DKeyChain file: [Discover data key](discover-data-key.md) [Encrypt data BLOB](encrypt-data-blob.md) [Encrypt data file](encrypt-data-file.md) -[Register data key](register-data-key.md) \ No newline at end of file +[Register data key](register-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1611 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/new-list.md b/versioned_docs/version-20-R7/commands-legacy/new-list.md index ee2a9bd828b2b6..a606f60d31deda 100644 --- a/versioned_docs/version-20-R7/commands-legacy/new-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/new-list.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **New list** creates a new, empty hierarchical list in memory and returns its unique list reference number. @@ -46,4 +43,13 @@ See example for the [APPEND TO LIST](append-to-list.md) command. [DELETE FROM LIST](delete-from-list.md) [INSERT IN LIST](insert-in-list.md) [LIST TO BLOB](list-to-blob.md) -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 375 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/new-log-file.md b/versioned_docs/version-20-R7/commands-legacy/new-log-file.md index cd923d8489fea2..5fc7463d4ed255 100644 --- a/versioned_docs/version-20-R7/commands-legacy/new-log-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/new-log-file.md @@ -30,3 +30,14 @@ The file is renamed with the current backup numbers of the database and of the l In the event of an error, the command generates a code that can be intercepted using the [ON ERR CALL](on-err-call.md "ON ERR CALL") command. + + +#### Properties + +| | | +| --- | --- | +| Command number | 926 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/new-object.md b/versioned_docs/version-20-R7/commands-legacy/new-object.md index 6ffda7d67f38eb..377d743d3d0e69 100644 --- a/versioned_docs/version-20-R7/commands-legacy/new-object.md +++ b/versioned_docs/version-20-R7/commands-legacy/new-object.md @@ -105,4 +105,13 @@ With this command, you can easily handle objects in loops: #### See also -[New shared object](new-shared-object.md) \ No newline at end of file +[New shared object](new-shared-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1471 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/new-process.md b/versioned_docs/version-20-R7/commands-legacy/new-process.md index 863a735099466d..236ff32ef39f26 100644 --- a/versioned_docs/version-20-R7/commands-legacy/new-process.md +++ b/versioned_docs/version-20-R7/commands-legacy/new-process.md @@ -105,4 +105,13 @@ In the Menu Bar editor, you replace the method ADD CUSTOMERS with the method STA [Execute on server](execute-on-server.md) *Preemptive 4D processes* -*Processes* \ No newline at end of file +*Processes* + +#### Properties + +| | | +| --- | --- | +| Command number | 317 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/new-shared-object.md b/versioned_docs/version-20-R7/commands-legacy/new-shared-object.md index f64a266fdb502b..9c98a27729c3e1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/new-shared-object.md +++ b/versioned_docs/version-20-R7/commands-legacy/new-shared-object.md @@ -66,4 +66,13 @@ You want to create and modify a shared object. The structure must be called for [New object](new-object.md) [New shared collection](../commands/new-shared-collection.md) -*Shared objects and shared collections* \ No newline at end of file +*Shared objects and shared collections* + +#### Properties + +| | | +| --- | --- | +| Command number | 1526 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/next-record.md b/versioned_docs/version-20-R7/commands-legacy/next-record.md index 91068e453112b1..13fada8ca2019e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/next-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/next-record.md @@ -29,4 +29,14 @@ See the example for [DISPLAY RECORD](display-record.md). [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[PREVIOUS RECORD](previous-record.md) \ No newline at end of file +[PREVIOUS RECORD](previous-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 51 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/next-window.md b/versioned_docs/version-20-R7/commands-legacy/next-window.md index eb65a230ca0566..cecb8d648474ef 100644 --- a/versioned_docs/version-20-R7/commands-legacy/next-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/next-window.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Next window command returns the window reference number of the window “behind” the window you pass in *window* (based on the front-to-back order of the windows). #### See also -[Frontmost window](frontmost-window.md) \ No newline at end of file +[Frontmost window](frontmost-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 448 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/no-default-table.md b/versioned_docs/version-20-R7/commands-legacy/no-default-table.md index fce45b3ad20d49..a1a80fcf17ef88 100644 --- a/versioned_docs/version-20-R7/commands-legacy/no-default-table.md +++ b/versioned_docs/version-20-R7/commands-legacy/no-default-table.md @@ -41,4 +41,13 @@ In a database containing a project form named “TheForm” and a table form wit #### See also -[DEFAULT TABLE](default-table.md) \ No newline at end of file +[DEFAULT TABLE](default-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 993 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/not.md b/versioned_docs/version-20-R7/commands-legacy/not.md index 15a5317921e8d2..66108d287244d4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/not.md +++ b/versioned_docs/version-20-R7/commands-legacy/not.md @@ -31,4 +31,13 @@ This example first assigns True to a variable, then changes the variable value t #### See also [False](false.md) -[True](true.md) \ No newline at end of file +[True](true.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 34 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md b/versioned_docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md index 2c3d2757573a2a..e595c00a1b92dc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md +++ b/versioned_docs/version-20-R7/commands-legacy/notify-resources-folder-modification.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The NOTIFY RESOURCES FOLDER MODIFICATION command "forces" 4D Server to send a notification to all the connected 4D machines indicating that the Resources folder of the database has been modified so that they can synchronize their local Resources folder. @@ -36,4 +33,13 @@ Current settings are set either: #### See also -[Get 4D folder](get-4d-folder.md) \ No newline at end of file +[Get 4D folder](get-4d-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1052 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/null.md b/versioned_docs/version-20-R7/commands-legacy/null.md index c718fd2e77f4d8..40743d1e97f7d9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/null.md +++ b/versioned_docs/version-20-R7/commands-legacy/null.md @@ -129,4 +129,13 @@ Here are the different results of the [Undefined](undefined.md) command as well [Is field value Null](is-field-value-null.md) [OB SET NULL](ob-set-null.md) -[SET FIELD VALUE NULL](set-field-value-null.md) \ No newline at end of file +[SET FIELD VALUE NULL](set-field-value-null.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1517 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/num.md b/versioned_docs/version-20-R7/commands-legacy/num.md index 953cd9a622e723..795d8d3a3bf954 100644 --- a/versioned_docs/version-20-R7/commands-legacy/num.md +++ b/versioned_docs/version-20-R7/commands-legacy/num.md @@ -82,4 +82,13 @@ This example compares the results obtained depending on the “current” separa [Bool](bool.md) [GET SYSTEM FORMAT](get-system-format.md) -[String](string.md) \ No newline at end of file +[String](string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 11 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-class.md b/versioned_docs/version-20-R7/commands-legacy/ob-class.md index b6dabea96fbb05..b6e835f4e90bf8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-class.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-class.md @@ -42,4 +42,13 @@ Then, in a method, you can write: #### See also -[OB Instance of](ob-instance-of.md) \ No newline at end of file +[OB Instance of](ob-instance-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1730 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-copy.md b/versioned_docs/version-20-R7/commands-legacy/ob-copy.md index 3fe2c1d89b27b0..2dd11e42724c16 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-copy.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-copy.md @@ -20,9 +20,6 @@ displayed_sidebar: docs #### Description The **OB Copy** command returns an object containing a complete (deep) copy of the properties, sub-objects and values for the *object*. - -* First syntax: **OB Copy(object{; resolvePtrs})** - If *object* contains pointer type values, by default the copy also contains the pointers. However, you can resolve pointers when copying by passing **True** in the *resolvePtrs* parameter. In this case, each pointer present as a value in *object* is evaluated when copying and its dereferenced value is used. **Note:** If properties of *object* are shared objects or shared collections, they become regular (not shared) objects or collections in the returned copy. Use the second syntax if you want to return shared elements (see below). @@ -166,4 +163,13 @@ We want to copy *$sharedObj* in *$sharedColl* but since they belong to different #### See also [OB Get](ob-get.md) -*Shared objects and shared collections* \ No newline at end of file +*Shared objects and shared collections* + +#### Properties + +| | | +| --- | --- | +| Command number | 1225 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-entries.md b/versioned_docs/version-20-R7/commands-legacy/ob-entries.md index 700597d76b421a..923751c1cf3b30 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-entries.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-entries.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OB Entries** command returns a collection of objects containing the contents of the *object* as key / value property pairs. @@ -56,4 +53,13 @@ Using an object as an hash map (key / value system) provides a quick and direct #### See also [OB Keys](ob-keys.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1720 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-get-array.md b/versioned_docs/version-20-R7/commands-legacy/ob-get-array.md index a1ea8a4db1f1a3..7c0035057eb6c2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-get-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-get-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB GET ARRAY** command retrieves, in *array*, the array of values stored in the *property* of the language object designated by the *object* parameter. - -*object* can be an object variable or a 4D object field. +The **OB GET ARRAY** command retrieves, in *array*, the array of values stored in the *property* of the language object designated by the *object* parameter.can be an object variable or a 4D object field. In the *property* parameter, pass the label of the property to be read. Note that the *property* parameter is case sensitive. @@ -52,4 +50,13 @@ We want to change a value in the first element of the array: #### See also [OB SET ARRAY](ob-set-array.md) -*Type conversions between collections and 4D arrays* \ No newline at end of file +*Type conversions between collections and 4D arrays* + +#### Properties + +| | | +| --- | --- | +| Command number | 1229 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-get-property-names.md b/versioned_docs/version-20-R7/commands-legacy/ob-get-property-names.md index 2a173f4cccd5fb..d8686473316eae 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-get-property-names.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-get-property-names.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB GET PROPERTY NAMES** command returns, in *arrProperties*, the names of the properties contained in the language object designated by the *object* parameter. - -*object* can be an object varialble or a 4D object field. +The **OB GET PROPERTY NAMES** command returns, in *arrProperties*, the names of the properties contained in the language object designated by the *object* parameter.can be an object varialble or a 4D object field. Pass a text array in the *arrProperties* parameter. If the array does not exist, the command creates and sizes it automatically. @@ -97,4 +95,13 @@ Using an object array element: #### See also [OB Get type](ob-get-type.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1232 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-get-type.md b/versioned_docs/version-20-R7/commands-legacy/ob-get-type.md index ba28c592e88aa8..b68900243b148f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-get-type.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-get-type.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB Get type** command returns the type of value associated with the *property* of the language *object*. - -*object* can be an object varialble or a 4D object field.. +The **OB Get type** command returns the type of value associated with the *property* of the language *object*.can be an object varialble or a 4D object field.. In the *property* parameter, pass the label of the property whose type you want to find out. Note that the *property* parameter is case sensitive. @@ -53,4 +51,13 @@ We want to get the type of standard values: #### See also [OB GET PROPERTY NAMES](ob-get-property-names.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1230 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-get.md b/versioned_docs/version-20-R7/commands-legacy/ob-get.md index d67304870190b6..90bafd1ac91a24 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-get.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-get.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -The **OB Get** command returns the current value of the *property* of the *object*, optionally converted into the *type* specified. - -*object* can be an object varialble or a 4D object field. +The **OB Get** command returns the current value of the *property* of the *object*, optionally converted into the *type* specified.can be an object varialble or a 4D object field. **Note:** This command supports attribute definitions in 4D Write Pro *objects*, like the *WP GET ATTRIBUTES* command (see example 9). @@ -221,4 +219,13 @@ You want to know the size of a picture stored in an object attribute: *Field and Variable Types* [OB Copy](ob-copy.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1224 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-instance-of.md b/versioned_docs/version-20-R7/commands-legacy/ob-instance-of.md index 35b429e524d9fa..abafb6d83f7318 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-instance-of.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-instance-of.md @@ -52,4 +52,13 @@ Then, in a method, you can write: #### See also -[OB Class](ob-class.md) \ No newline at end of file +[OB Class](ob-class.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1731 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-is-defined.md b/versioned_docs/version-20-R7/commands-legacy/ob-is-defined.md index f2cb9cc4dce1b0..d4fb9cf76bed1b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-is-defined.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-is-defined.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB Is defined** command returns True if *object* or *property* is defined, and False otherwise. - -*object* can be an object varialble or a 4D object field. +The **OB Is defined** command returns True if *object* or *property* is defined, and False otherwise.can be an object varialble or a 4D object field. By default, if you omit the *property* parameter, the command checks whether the *object* is defined. An object is defined if its contents has been initialized. @@ -61,4 +59,13 @@ This test is equivalent to: #### See also -[OB Is empty](ob-is-empty.md) \ No newline at end of file +[OB Is empty](ob-is-empty.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1231 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-is-empty.md b/versioned_docs/version-20-R7/commands-legacy/ob-is-empty.md index 29eb2f59d3fa17..9bf65e07d69e3b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-is-empty.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-is-empty.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **OB Is empty** command returns True if *object* is undefined or empty, and False if *object* is defined (initialized) and contains at least one property. - -*object* can be an object varialble or a 4D object field. +The **OB Is empty** command returns True if *object* is undefined or empty, and False if *object* is defined (initialized) and contains at least one property.can be an object varialble or a 4D object field. #### Example @@ -42,4 +40,13 @@ Here are the different results of this command as well as the [OB Is defined](ob #### See also -[OB Is defined](ob-is-defined.md) \ No newline at end of file +[OB Is defined](ob-is-defined.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1297 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-is-shared.md b/versioned_docs/version-20-R7/commands-legacy/ob-is-shared.md index 9cefa3dbd0d85f..fc61c2d0be68fc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-is-shared.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-is-shared.md @@ -19,3 +19,13 @@ displayed_sidebar: docs The **OB Is shared** command returns **True** if the *toCheck* object or collection is shared, and **False** otherwise (see *Shared objects and shared collections*). This command returns **True** if you pass a shareable entity selection in *toCheck* (see ). + + +#### Properties + +| | | +| --- | --- | +| Command number | 1759 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-keys.md b/versioned_docs/version-20-R7/commands-legacy/ob-keys.md index e9998abaaa1cda..63e607272767e1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-keys.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-keys.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OB Keys** command returns a collection of strings containing all of the enumerable property names of the *object*. @@ -46,4 +43,13 @@ You want a collection with all first-level property names of an object: #### See also [OB Entries](ob-entries.md) -[OB Values](ob-values.md) \ No newline at end of file +[OB Values](ob-values.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1719 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-remove.md b/versioned_docs/version-20-R7/commands-legacy/ob-remove.md index a03eefdecea0b6..0a2a6485f09116 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-remove.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-remove.md @@ -36,4 +36,13 @@ You want to remove the "age" property of an object: #### See also -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1226 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-set-array.md b/versioned_docs/version-20-R7/commands-legacy/ob-set-array.md index b9aa0d5bb4c4dc..d2822e64107ece 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-set-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-set-array.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB SET ARRAY** command defines the *array* to be associated with the *property* in the language object designated by the *object* parameter. - -*object* can be an object varialble or a 4D object field. +The **OB SET ARRAY** command defines the *array* to be associated with the *property* in the language object designated by the *object* parameter.can be an object varialble or a 4D object field. In the *property* parameter, pass the label of the property to be created or modified. If the property already exists in *object*, its value is updated. If it does not exist, it is created. Note that the *property* parameter is case sensitive. @@ -133,4 +131,13 @@ Using a picture array: [OB GET ARRAY](ob-get-array.md) [OB SET](ob-set.md) -*Type conversions between collections and 4D arrays* \ No newline at end of file +*Type conversions between collections and 4D arrays* + +#### Properties + +| | | +| --- | --- | +| Command number | 1227 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-set-null.md b/versioned_docs/version-20-R7/commands-legacy/ob-set-null.md index cd5a86ed8132cf..8121bda4709685 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-set-null.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-set-null.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **OB SET NULL** command stores the **null** value in the language object designated by the *object* parameter. - -*object* can be an object varialble or a 4D object field. +The **OB SET NULL** command stores the **null** value in the language object designated by the *object* parameter.can be an object varialble or a 4D object field. In the *property* parameter, pass the label of the property where you want to store the **null** value. If the property already exists in *object*, its value is updated. If it does not exist, it is created. Note that the *property* parameter is case sensitive. @@ -40,4 +38,13 @@ We want to put the null value in the "age" property for Lea: [Null](null.md) [OB GET PROPERTY NAMES](ob-get-property-names.md) -[OB SET](ob-set.md) \ No newline at end of file +[OB SET](ob-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1233 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-set.md b/versioned_docs/version-20-R7/commands-legacy/ob-set.md index dbb15051b1420b..0dfa84264dd291 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-set.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **OB SET** command creates or modifies one or more *property*/*value* pairs in the language object designated by the *object* parameter. - -*object* must be an object variable or designate a 4D object field. +The **OB SET** command creates or modifies one or more *property*/*value* pairs in the language object designated by the *object* parameter.must be an object variable or designate a 4D object field. In the *property* parameter, pass the label of the property to be created or modified. If the property already exists in *object*, its value is updated. If it does not exist, it is created. @@ -197,4 +195,13 @@ You want to store a picture in an object field. You can write: [OB Get](ob-get.md) [OB REMOVE](ob-remove.md) [OB SET ARRAY](ob-set-array.md) -[OB SET NULL](ob-set-null.md) \ No newline at end of file +[OB SET NULL](ob-set-null.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1220 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/ob-values.md b/versioned_docs/version-20-R7/commands-legacy/ob-values.md index 77554ee74e6d4b..eef3df334fa34d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/ob-values.md +++ b/versioned_docs/version-20-R7/commands-legacy/ob-values.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OB Values** command returns a collection of variants containing all of the enumerable property values of the *object*. @@ -46,4 +43,13 @@ You want a collection with all property values of an object: #### See also [OB Entries](ob-entries.md) -[OB Keys](ob-keys.md) \ No newline at end of file +[OB Keys](ob-keys.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1718 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-duplicate.md b/versioned_docs/version-20-R7/commands-legacy/object-duplicate.md index 56afbde830e21a..04c5278249765e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-duplicate.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-duplicate.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT DUPLICATE** command is used to create a copy of the object designated by the *object* parameter in the context of the form being executed (Application mode). The source form, generated in Design mode, is not modified. @@ -105,4 +102,14 @@ Creation of a new radio button "bRadio6" based on the existing radio button "bRa *Form Objects (Access)* [OBJECT Get pointer](object-get-pointer.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1111 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-action.md b/versioned_docs/version-20-R7/commands-legacy/object-get-action.md index 29811dbe1571c3..c7e57c38c83e72 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-action.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get action** command returns the name and (if any) parameter of the standard action associated with the object(s) designated by the *object* and *\** parameters. @@ -45,4 +42,13 @@ You want to associate the "Cancel" action with all the objects in the form that #### See also -[OBJECT SET ACTION](object-set-action.md) \ No newline at end of file +[OBJECT SET ACTION](object-set-action.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1457 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md b/versioned_docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md index fa22625a6d1fb0..18fb96554bd9a4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get auto spellcheck** command returns the status of the Auto spellcheck option for the object(s) designated by the *object* and *\** parameters for the current process. @@ -28,4 +25,13 @@ The command returns **True** when automatic spell-checking is enabled for the *o #### See also -[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) \ No newline at end of file +[OBJECT SET AUTO SPELLCHECK](object-set-auto-spellcheck.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1174 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-best-size.md b/versioned_docs/version-20-R7/commands-legacy/object-get-best-size.md index eaff8f1128348d..55fa50be297427 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-best-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-best-size.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET BEST SIZE** command returns the *bestWidth* and *bestHeight* parameters, the “optimal” width and height of the form object designated by the *\** and *object* parameters. These values are expressed in pixels. This command is particularly useful for displaying or printing complex reports, associated with the [OBJECT MOVE](object-move.md) command. @@ -49,4 +46,13 @@ Refer to the example in the [SET PRINT MARKER](set-print-marker.md) command. #### See also [OBJECT MOVE](object-move.md) -[SET PRINT MARKER](set-print-marker.md) \ No newline at end of file +[SET PRINT MARKER](set-print-marker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 717 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-border-style.md b/versioned_docs/version-20-R7/commands-legacy/object-get-border-style.md index 5b33875f189a36..620ab6f75f2bd0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-border-style.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get border style** command returns the border line style of the object(s) designated by the *object* and *\** parameters. @@ -40,4 +37,13 @@ The command returns a value corresponding to the border line style. You can comp #### See also -[OBJECT SET BORDER STYLE](object-set-border-style.md) \ No newline at end of file +[OBJECT SET BORDER STYLE](object-set-border-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1263 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-context-menu.md b/versioned_docs/version-20-R7/commands-legacy/object-get-context-menu.md index 496fcba4548618..2602b342645e17 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-context-menu.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get context menu** command returns the current state of the "Context Menu" option for the object(s) designated by the *object* and *\** parameters. @@ -30,4 +27,13 @@ The command returns **True** if the context menu is enabled for the object and * #### See also -[OBJECT SET CONTEXT MENU](object-set-context-menu.md) \ No newline at end of file +[OBJECT SET CONTEXT MENU](object-set-context-menu.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1252 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-coordinates.md b/versioned_docs/version-20-R7/commands-legacy/object-get-coordinates.md index efca4c3e488d25..4239b4309b7730 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-coordinates.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT GET COORDINATES command returns the coordinates *left*, *top*, *right* and *bottom* (in points) in variables or fields of the object(s) of the current form defined by the parameters *\** and *object*. @@ -86,4 +83,13 @@ The method returns theoretical coordinates. In cases where the list box has been [CONVERT COORDINATES](convert-coordinates.md) [LISTBOX GET CELL COORDINATES](listbox-get-cell-coordinates.md) [OBJECT MOVE](object-move.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 663 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-corner-radius.md b/versioned_docs/version-20-R7/commands-legacy/object-get-corner-radius.md index a16e0a2521c737..295a6a05c4b2fc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-corner-radius.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get corner radius** command returns the current value of the corner radius for the object designated by the *object* parameter. This value may have been set at the form level using the *Corner radius property* or for the current process using the [OBJECT SET CORNER RADIUS](object-set-corner-radius.md) command. @@ -48,4 +45,13 @@ The following code could be added to a button method: #### See also -[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) \ No newline at end of file +[OBJECT SET CORNER RADIUS](object-set-corner-radius.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1324 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-data-source.md b/versioned_docs/version-20-R7/commands-legacy/object-get-data-source.md index b5404b7737881a..dbd7bc2cdab77f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-data-source.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get data source** command returns the current data source of the object(s) designated by the *object* and *\** parameters. @@ -41,4 +38,13 @@ You execute the following code: #### See also -[OBJECT SET DATA SOURCE](object-set-data-source.md) \ No newline at end of file +[OBJECT SET DATA SOURCE](object-set-data-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1265 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md b/versioned_docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md index 05008891d9187e..f2b836f61d646c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET DRAG AND DROP OPTIONS** command returns the drag and drop options for the object(s) designated by the *object* and *\** parameters for the current process. @@ -38,4 +35,13 @@ Each parameter returns True or False according to whether the corresponding opti #### See also -[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) \ No newline at end of file +[OBJECT SET DRAG AND DROP OPTIONS](object-set-drag-and-drop-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1184 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-enabled.md b/versioned_docs/version-20-R7/commands-legacy/object-get-enabled.md index 661d17606086fe..df367938e157cf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-enabled.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get enabled command returns True if the object or group of objects designated by *object* is enabled in the form and False if it is not enabled. @@ -36,4 +33,13 @@ This command can be applied to the following types of objects: #### See also -[OBJECT SET ENABLED](object-set-enabled.md) \ No newline at end of file +[OBJECT SET ENABLED](object-set-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1079 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-enterable.md b/versioned_docs/version-20-R7/commands-legacy/object-get-enterable.md index 01aa00adeb40b7..7b8fa57e9fefad 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-enterable.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get enterable command returns True if the object or group of objects designated by *object* has the **enterable** attribute; otherwise, it returns False. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1067 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-events.md b/versioned_docs/version-20-R7/commands-legacy/object-get-events.md index f30f3aeda6ddd6..ee9d1a1ae7b79f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-events.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-events.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET EVENTS** command gets the current configuration of the form events for the object(s) designated by the *object* and *\** parameters. @@ -48,4 +45,13 @@ You want to enable two events and get the list of events for an object: #### See also -[OBJECT SET EVENTS](object-set-events.md) \ No newline at end of file +[OBJECT SET EVENTS](object-set-events.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1238 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-filter.md b/versioned_docs/version-20-R7/commands-legacy/object-get-filter.md index 254e2695551d46..c249743f270879 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-filter.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get filter command returns the name of any filter associated with the object or group of objects designated by *object*. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1073 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md b/versioned_docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md index cec6d82baffb4e..2c878e4d991919 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get focus rectangle invisible** command returns the status of the visibility option for the focus rectangle of the object(s) designated by the *object* and *\** parameters for the current process . This setting corresponds to the **Hide focus rectangle** option that is available for enterable objects in the Property List in the Design mode. This command returns the current status of the option, as it is defined in Design mode or using the [OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) command. @@ -30,4 +27,13 @@ The command returns **True** when the focus rectangle is hidden and **False** wh #### See also -[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT SET FOCUS RECTANGLE INVISIBLE](object-set-focus-rectangle-invisible.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1178 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-font-size.md b/versioned_docs/version-20-R7/commands-legacy/object-get-font-size.md index 585dd6f7005085..87105f53970244 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-font-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get font size command returns the size (in points) of the character font used by the form object(s) designated by *object*. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[OBJECT SET FONT SIZE](object-set-font-size.md) \ No newline at end of file +[OBJECT SET FONT SIZE](object-set-font-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1070 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-font-style.md b/versioned_docs/version-20-R7/commands-legacy/object-get-font-style.md index aa3da4a6ca2050..2b78f83f488f5c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-font-style.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get font style command returns the current style of the character font used by the form object(s) designated by *object*. @@ -35,4 +32,13 @@ You can compare the value returned with the value of one or more of the followin #### See also -[OBJECT SET FONT STYLE](object-set-font-style.md) \ No newline at end of file +[OBJECT SET FONT STYLE](object-set-font-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1071 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-font.md b/versioned_docs/version-20-R7/commands-legacy/object-get-font.md index 6495ff6c37eb8d..6d0c237fa98cd8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-font.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get font command returns the name of the character font used by the form object(s) designated by *object*. @@ -26,4 +23,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[OBJECT SET FONT](object-set-font.md) \ No newline at end of file +[OBJECT SET FONT](object-set-font.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1069 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-format.md b/versioned_docs/version-20-R7/commands-legacy/object-get-format.md index 5072319e4717ae..0cc43ad5df8edb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-format.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get format** command returns the current display format applied to the object specified in the *object* parameter. @@ -65,4 +62,13 @@ Customized formats are returned untouched: #### See also -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 894 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-help-tip.md b/versioned_docs/version-20-R7/commands-legacy/object-get-help-tip.md index a0ab0f9b9ac605..cae6a987b0a91f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-help-tip.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get help tip** command returns the help message associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -38,4 +35,13 @@ The title of a picture button is stored as a help message. This title is stored #### See also -[OBJECT SET HELP TIP](object-set-help-tip.md) \ No newline at end of file +[OBJECT SET HELP TIP](object-set-help-tip.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1182 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md b/versioned_docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md index f53b6c7c4787ce..161efd227d912a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get horizontal alignment** command returns a code indicating the type of horizontal alignment applied to the object designated by the *object* and *\** parameters. @@ -59,4 +56,13 @@ The form objects to which alignment can be applied are as follows: [OBJECT Get vertical alignment](object-get-vertical-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 707 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-indicator-type.md b/versioned_docs/version-20-R7/commands-legacy/object-get-indicator-type.md index df4f74c63256af..990bc9b68d5405 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-indicator-type.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get indicator type** command returns the current indicator type assigned to the thermometer(s) designated by the *object* and *\** parameters. @@ -36,4 +33,13 @@ You can compare the value returned by the command with the following constants, #### See also -[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) \ No newline at end of file +[OBJECT SET INDICATOR TYPE](object-set-indicator-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1247 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md b/versioned_docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md index c163cb19ffc82c..2a5287eb6674cd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get keyboard layout** command returns the current keyboard layout associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -28,4 +25,13 @@ The command returns a string indicating the language code used, based on RFC3066 #### See also -[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) \ No newline at end of file +[OBJECT SET KEYBOARD LAYOUT](object-set-keyboard-layout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1180 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-list-name.md b/versioned_docs/version-20-R7/commands-legacy/object-get-list-name.md index 2bfe6e2a8b5d05..3bbc9479f6c332 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-list-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-list-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get list name command returns the name of the choice list associated with the object or group of objects designated by *object*. 4D lets you associate a choice list (created with the choice list editor in Design mode) with form objects using the form editor or the [OBJECT SET LIST BY NAME](object-set-list-by-name.md) command. @@ -38,4 +35,13 @@ If there is no list of the type defined associated with the *object*, the comman #### See also [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1072 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-list-reference.md b/versioned_docs/version-20-R7/commands-legacy/object-get-list-reference.md index 36e3ebd2b98d23..9e4e44bf7035cd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-list-reference.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-list-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get list reference** command returns the reference number (ListRef) of the hierarchical list associated with the object or group of objects designated by *object* and *\**. @@ -38,4 +35,13 @@ If there is no hierarchical list associated with the object for the *listType* d #### See also [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1267 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-maximum-value.md b/versioned_docs/version-20-R7/commands-legacy/object-get-maximum-value.md index a72397362ad8fc..b255650ed5b465 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-maximum-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET MAXIMUM VALUE** command returns, in the *maxValue* variable, the current maximum value of the object(s) designated by the *object* and *\** parameters. @@ -29,4 +26,13 @@ Passing the optional *\** parameter indicates that the *object* parameter is an #### See also [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1245 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-minimum-value.md b/versioned_docs/version-20-R7/commands-legacy/object-get-minimum-value.md index 2161d161ae99a1..ac5f4a9a460f8b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-minimum-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET MINIMUM VALUE** command returns, in the *minValue* variable, the current minimum value of the object(s) designated by the *object* and *\** parameters. @@ -29,4 +26,13 @@ Passing the optional *\** parameter indicates that the *object* parameter is an #### See also [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1243 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-multiline.md b/versioned_docs/version-20-R7/commands-legacy/object-get-multiline.md index 5b7ad886d0047a..33a1aea12bddaa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-multiline.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get multiline** command returns the current state of the "Multiline" option for the object(s) designated by the *object* and *\** parameters. @@ -38,4 +35,13 @@ The value returned corresponds to one of the following constants, found in the " #### See also -[OBJECT SET MULTILINE](object-set-multiline.md) \ No newline at end of file +[OBJECT SET MULTILINE](object-set-multiline.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1254 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-name.md b/versioned_docs/version-20-R7/commands-legacy/object-get-name.md index 9a54f1c7231d20..568b008ce87847 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-name.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get name** command returns the name of a form object. @@ -40,4 +37,13 @@ After the execution of this object method, the *$btnName* variable contains the *Form Objects (Access)* [OBJECT Get pointer](object-get-pointer.md) -*Objects (Forms)* \ No newline at end of file +*Objects (Forms)* + +#### Properties + +| | | +| --- | --- | +| Command number | 1087 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-placeholder.md b/versioned_docs/version-20-R7/commands-legacy/object-get-placeholder.md index 77935a14f5be2c..5f35ae0e813915 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-placeholder.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get placeholder** command returns the placeholder text associated with the object(s) designated by the *object* and *\** parameters. If there is no placeholder text associated with the object, the command returns an empty string. @@ -38,4 +35,13 @@ You want to get the field placeholder text: #### See also -[OBJECT SET PLACEHOLDER](object-set-placeholder.md) \ No newline at end of file +[OBJECT SET PLACEHOLDER](object-set-placeholder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1296 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-pointer.md b/versioned_docs/version-20-R7/commands-legacy/object-get-pointer.md index 1f236c0990c22d..1809fc9cdc7d0b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-pointer.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-pointer.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get pointer** command returns a pointer to the variable of a form object. @@ -57,4 +54,13 @@ Given a form "SF" used twice as a subform in the same parent form. The subform o [OBJECT Get name](object-get-name.md) [OBJECT Get subform container value](object-get-subform-container-value.md) *Objects (Forms)* -[Self](self.md) \ No newline at end of file +[Self](self.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1124 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md b/versioned_docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md index 71b780976cea4c..6f0edb79fb430b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET PRINT VARIABLE FRAME** command gets the current configuration of the variable frame print options for the object(s) designated by the *object* and *\** parameters. @@ -38,4 +35,13 @@ If the *object* is a subform and if variable frame printing is disabled (**False #### See also -[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) \ No newline at end of file +[OBJECT SET PRINT VARIABLE FRAME](object-set-print-variable-frame.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1241 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-resizing-options.md b/versioned_docs/version-20-R7/commands-legacy/object-get-resizing-options.md index a223aa9ff1e9b4..86dc20cb4e5c80 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-resizing-options.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET RESIZING OPTIONS** command returns the current resizing options for the object(s) designated by the *object* and *\** parameters for the current process. @@ -45,4 +42,13 @@ The *vertical* parameter returns a value indicating the vertical resizing option #### See also -[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) \ No newline at end of file +[OBJECT SET RESIZING OPTIONS](object-set-resizing-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1176 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-rgb-colors.md b/versioned_docs/version-20-R7/commands-legacy/object-get-rgb-colors.md index 35bd5ec92c78f1..0ded2d67951e48 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-rgb-colors.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT GET RGB COLORS command returns the foreground and background colors of the object or group of objects designated by *object*. @@ -37,4 +34,13 @@ For more information about the format of the *foregroundColor*, *backgroundColor #### See also -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1074 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-scroll-position.md b/versioned_docs/version-20-R7/commands-legacy/object-get-scroll-position.md index 372134d77eac82..03bdf82ef84243 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-scroll-position.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-scroll-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT GET SCROLL POSITION returns, in the *vPosition* and *hPosition* parameters, information related to the position of the scroll bars of the form object designated by the *\** and *object* parameters. @@ -33,4 +30,13 @@ If *object* designates a picture (variable or field), *vPosition* returns the ve #### See also -[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) \ No newline at end of file +[OBJECT SET SCROLL POSITION](object-set-scroll-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1114 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-scrollbar.md b/versioned_docs/version-20-R7/commands-legacy/object-get-scrollbar.md index 4fce380c1b4b77..15a83105381a58 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-scrollbar.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT GET SCROLLBAR command is used to find out the displayed/hidden status of the horizontal and vertical scrollbars of the object or group of objects designated by *object*. @@ -47,4 +44,13 @@ For more information, refer to the description of the [OBJECT SET SCROLLBAR](obj #### See also -[OBJECT SET SCROLLBAR](object-set-scrollbar.md) \ No newline at end of file +[OBJECT SET SCROLLBAR](object-set-scrollbar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1076 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-shortcut.md b/versioned_docs/version-20-R7/commands-legacy/object-get-shortcut.md index 1ba977229136e7..e68cdc6ccc066f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-shortcut.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET SHORTCUT** command returns the keyboard shortcut associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -42,4 +39,13 @@ If there are no modifier keys for the shortcut, *modifiers* returns 0\. #### See also -[OBJECT SET SHORTCUT](object-set-shortcut.md) \ No newline at end of file +[OBJECT SET SHORTCUT](object-set-shortcut.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1186 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-style-sheet.md b/versioned_docs/version-20-R7/commands-legacy/object-get-style-sheet.md index 9683420e13d513..355a76300e1c01 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-style-sheet.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get style sheet** command returns the name of the style sheet associated with the object(s) designated by the *object* and *\** parameters. @@ -47,4 +44,13 @@ In **project architecture**, only the three automatic style sheets are supported #### See also *Font Styles* -[OBJECT SET STYLE SHEET](object-set-style-sheet.md) \ No newline at end of file +[OBJECT SET STYLE SHEET](object-set-style-sheet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1258 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-subform-container-size.md b/versioned_docs/version-20-R7/commands-legacy/object-get-subform-container-size.md index e771ba2e2ad652..5772e61a34d282 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-subform-container-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-subform-container-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET SUBFORM CONTAINER SIZE** command returns the *width* and *height* (in pixels) of a "current" subform object, displayed in the parent form. @@ -33,4 +30,13 @@ The On Resize event is generated in the subform form method if the subform objec #### See also [OBJECT GET SUBFORM](object-get-subform.md) -[OBJECT SET SUBFORM](object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1148 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-subform-container-value.md b/versioned_docs/version-20-R7/commands-legacy/object-get-subform-container-value.md index 61a7ec43c19d68..d5d20ae116fbd1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-subform-container-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get subform container value** command returns the current value of the data source bound with the subform container displayed in the parent form. @@ -57,4 +54,13 @@ As a result, at runtime, updating the value of the main form's Input object also [Form](form.md) [OBJECT Get pointer](object-get-pointer.md) -[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) \ No newline at end of file +[OBJECT SET SUBFORM CONTAINER VALUE](object-set-subform-container-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1785 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-subform.md b/versioned_docs/version-20-R7/commands-legacy/object-get-subform.md index dde1d255d303a8..d17a5b717b3fc4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-subform.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT GET SUBFORM** command gets the name(s) of the form(s) associated with the subform object designated by the *object* and *\** parameters. @@ -41,4 +38,13 @@ If there is no list form, an empty string is returned in the *listSubform* param #### See also [OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) -[OBJECT SET SUBFORM](object-set-subform.md) \ No newline at end of file +[OBJECT SET SUBFORM](object-set-subform.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1139 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-text-orientation.md b/versioned_docs/version-20-R7/commands-legacy/object-get-text-orientation.md index b3afd653680eba..337f0a13487a87 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-text-orientation.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get text orientation** command returns the current orientation value applied to the text of the object(s) designated by the *object* and *\** parameters. @@ -57,4 +54,13 @@ When the form is executed, if you call the following statement: #### See also -[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) \ No newline at end of file +[OBJECT SET TEXT ORIENTATION](object-set-text-orientation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1283 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md b/versioned_docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md index 04339ba2b29ee7..54e26d61b79236 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get three states checkbox** command returns the current state of the "Three-States" property for the checkbox(es) designated by the *object* and *\** parameters. @@ -26,4 +23,13 @@ You can set the "Three-States" property either using the Property List, or using #### See also -[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) \ No newline at end of file +[OBJECT SET THREE STATES CHECKBOX](object-set-three-states-checkbox.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1250 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-title.md b/versioned_docs/version-20-R7/commands-legacy/object-get-title.md index 272942c58f74d5..9da7bcc31d450f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-title.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get title command returns the title (label) of the form object(s) designated by *object*. You can use this command with all types of simple objects that contain a label: @@ -32,4 +29,13 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete #### See also -[OBJECT SET TITLE](object-set-title.md) \ No newline at end of file +[OBJECT SET TITLE](object-set-title.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1068 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-type.md b/versioned_docs/version-20-R7/commands-legacy/object-get-type.md index 20235a6a9ba997..b0b90c5440f095 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-type.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get type** command returns the type of the object designated by the *object* and *\** parameters in the current form. @@ -97,4 +94,13 @@ You want to load a form and get a list of all the objects of list boxes that it #### See also [FORM LOAD](form-load.md) -[LISTBOX GET OBJECTS](listbox-get-objects.md) \ No newline at end of file +[LISTBOX GET OBJECTS](listbox-get-objects.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1300 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-value.md b/versioned_docs/version-20-R7/commands-legacy/object-get-value.md index 60d09d7dba6517..234fb63f03cbc2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get value** command returns the current value of the data source for the form object(s) designated by the *objectName* parameter. @@ -40,4 +37,13 @@ See the example for the [OBJECT SET VALUE](object-set-value.md) command. #### See also -[OBJECT SET VALUE](object-set-value.md) \ No newline at end of file +[OBJECT SET VALUE](object-set-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1743 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md b/versioned_docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md index fffc620a35e4c6..363a25b1ef431d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Get vertical alignment** command returns a value indicating the type of vertical alignment applied to the object designated by the *object* and *\** parameters. @@ -44,4 +41,13 @@ Vertical alignment can be applied to the following types of form objects: [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1188 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-get-visible.md b/versioned_docs/version-20-R7/commands-legacy/object-get-visible.md index 2c5af6658cad13..c11d5cbc5161c8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-get-visible.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-get-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT Get visible command returns True if the object or group of objects designated by *object* has the visible attribute and False otherwise. @@ -26,4 +23,13 @@ displayed_sidebar: docs #### See also -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1075 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-is-styled-text.md b/versioned_docs/version-20-R7/commands-legacy/object-is-styled-text.md index 58e011aef86bcf..242b2e5b8923b5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-is-styled-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-is-styled-text.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT Is styled text** command returns **True** when the "Multi-style" option is checked for the object(s) designated by the *object* and *\** parameters. @@ -44,4 +41,13 @@ A form contains a field represented by two different objects; one of the objects #### See also -*Styled Text* \ No newline at end of file +*Styled Text* + +#### Properties + +| | | +| --- | --- | +| Command number | 1261 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-move.md b/versioned_docs/version-20-R7/commands-legacy/object-move.md index f9bdfc1368b085..710e9b8b1131b5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-move.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-move.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT MOVE command allows you to move the object(s) in the current form, defined by the *\** and *object* parameters *moveH* pixels horizontally and *moveV* pixels vertically. @@ -69,4 +66,13 @@ The following statement moves “button\_1” to the following coordinates (10;2 [OBJECT DUPLICATE](object-duplicate.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT SET COORDINATES](object-set-coordinates.md) \ No newline at end of file +[OBJECT SET COORDINATES](object-set-coordinates.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 664 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-action.md b/versioned_docs/version-20-R7/commands-legacy/object-set-action.md index 24970b4920809c..e70c45b3d1124e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-action.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-action.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET ACTION** command modifies the standard action associated with the object(s) designated by the *object* and *\** parameters. @@ -40,4 +37,13 @@ You want to associate the **Validate** standard action with a button: #### See also -[OBJECT Get action](object-get-action.md) \ No newline at end of file +[OBJECT Get action](object-get-action.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1259 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md b/versioned_docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md index 3af873963fb5b0..92b79849c857ee 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-auto-spellcheck.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET AUTO SPELLCHECK** command sets or dynamically modifies the status of the **Auto spellcheck** option for the object(s) designated by the *object* and *\** parameters for the current process. This option enables or disables the automatic spellcheck when data is entered for the object (Text type objects only). @@ -28,4 +25,13 @@ Pass **True** in *autoSpellcheck* to enable this function for the object, and ** #### See also -[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) \ No newline at end of file +[OBJECT Get auto spellcheck](object-get-auto-spellcheck.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1173 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-border-style.md b/versioned_docs/version-20-R7/commands-legacy/object-set-border-style.md index f26829096b9691..16bd5f966e6ed9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-border-style.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-border-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET BORDER STYLE** command modifies the border line style of the object(s) designated by the *object* and *\** parameters. @@ -40,4 +37,13 @@ In the *borderStyle* parameter, pass the value of the border line style that you #### See also -[OBJECT Get border style](object-get-border-style.md) \ No newline at end of file +[OBJECT Get border style](object-get-border-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1262 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-context-menu.md b/versioned_docs/version-20-R7/commands-legacy/object-set-context-menu.md index 370e9c84b7c206..74adaf2aedac0f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-context-menu.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-context-menu.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET CONTEXT MENU** command enables or disables, for the current process, the association of a context menu by default with the object(s) designated by the *object* and *\** parameters. @@ -30,4 +27,13 @@ Pass **True** in the *contextMenu* parameter to enable the context menu, and **F #### See also -[OBJECT Get context menu](object-get-context-menu.md) \ No newline at end of file +[OBJECT Get context menu](object-get-context-menu.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1251 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-coordinates.md b/versioned_docs/version-20-R7/commands-legacy/object-set-coordinates.md index da55713364aa89..0dfc4932773861 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-coordinates.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET COORDINATES** command modifies the location and, optionally, the size of the object(s) designated by the *object* and *\** parameters for the current process. @@ -56,4 +53,13 @@ The following statement places the "button\_1" object at the (10,20) (30,40) coo [CONVERT COORDINATES](convert-coordinates.md) [OBJECT GET COORDINATES](object-get-coordinates.md) -[OBJECT MOVE](object-move.md) \ No newline at end of file +[OBJECT MOVE](object-move.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1248 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-corner-radius.md b/versioned_docs/version-20-R7/commands-legacy/object-set-corner-radius.md index f5f892bfa3a062..7f69c67494e985 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-corner-radius.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-corner-radius.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET CORNER RADIUS** command modifies the *radius* of corners for the object(s) you passed in the *object* parameter. The new radius is only set for the process and is not saved in the form itself. @@ -68,4 +65,13 @@ Note that for text areas (as well as inputs), unlike for rectangles, the corner #### See also -[OBJECT Get corner radius](object-get-corner-radius.md) \ No newline at end of file +[OBJECT Get corner radius](object-get-corner-radius.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1323 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-data-source.md b/versioned_docs/version-20-R7/commands-legacy/object-set-data-source.md index deebd4679bd2a1..29be29c3a4521f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-data-source.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-data-source.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET DATA SOURCE** command modifies the data source of the object(s) designated by the *object* and *\** parameters. @@ -51,4 +48,13 @@ Modification of the data source for an entry area: #### See also [LISTBOX SET COLUMN FORMULA](listbox-set-column-formula.md) -[OBJECT Get data source](object-get-data-source.md) \ No newline at end of file +[OBJECT Get data source](object-get-data-source.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1264 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md b/versioned_docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md index f98ddeeb1432d7..14d81369c66281 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-drag-and-drop-options.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET DRAG AND DROP OPTIONS** command sets or dynamically modifies the drag and drop options for the object(s) designated by the *object* and *\** parameters for the current process. @@ -44,4 +41,13 @@ Setting a text area to automatic drag and drop: #### See also -[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) \ No newline at end of file +[OBJECT GET DRAG AND DROP OPTIONS](object-get-drag-and-drop-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1183 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-enabled.md b/versioned_docs/version-20-R7/commands-legacy/object-set-enabled.md index 1113e9b0131752..293385d496dc29 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-enabled.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-enabled.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET ENABLED** command can be used to enable or disable the object or group of objects specified by *object* in the current form. An enabled object reacts to mouse clicks and to keyboard shortcuts. @@ -38,4 +35,13 @@ This command can be applied to the following types of objects: #### See also -[OBJECT Get enabled](object-get-enabled.md) \ No newline at end of file +[OBJECT Get enabled](object-get-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1123 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-enterable.md b/versioned_docs/version-20-R7/commands-legacy/object-set-enterable.md index 6e9022c9cd3e27..211642c4beb882 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-enterable.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-enterable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET ENTERABLE** command makes the form objects specified by *object* either enterable or non-enterable and can set the *focusable* attribute. @@ -74,4 +71,13 @@ Here is the object method of a checkbox located in the header of a list in order #### See also [OBJECT Get enterable](object-get-enterable.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 238 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-events.md b/versioned_docs/version-20-R7/commands-legacy/object-set-events.md index e143fce58ceb13..31eaf5594cfbbb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-events.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-events.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET EVENTS** command modifies, for the current process, the configuration of the form events of the form or object(s) designated by the *object* and *\** parameters. @@ -167,4 +164,13 @@ Disables a single event of the form without modifying the others: #### See also *Form Events* -[OBJECT GET EVENTS](object-get-events.md) \ No newline at end of file +[OBJECT GET EVENTS](object-get-events.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1239 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-filter.md b/versioned_docs/version-20-R7/commands-legacy/object-set-filter.md index bd7cd9eba5ee8d..09c4c9d532a001 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-filter.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-filter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **OBJECT SET FILTER** sets the entry filter for the objects specified by *object* to the filter you pass in *entryFilter*. @@ -57,4 +54,13 @@ The following example allows only the letters “a,” “b,” “c,” or “g #### See also [OBJECT Get filter](object-get-filter.md) -[OBJECT SET FORMAT](object-set-format.md) \ No newline at end of file +[OBJECT SET FORMAT](object-set-format.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 235 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md b/versioned_docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md index 46bf806e4be531..7de7347e90c5e3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-focus-rectangle-invisible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET FOCUS RECTANGLE INVISIBLE** command sets or dynamically modifies the visibility option for the focus rectangle of the object(s) designated by the *object* and *\** parameters for the current process. This setting corresponds to the **Hide focus rectangle** option that is available for enterable objects in the Property List in the Design mode. @@ -30,4 +27,13 @@ Pass **True** in the *invisible* parameter to hide the focus rectangle and **Fal #### See also -[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) \ No newline at end of file +[OBJECT Get focus rectangle invisible](object-get-focus-rectangle-invisible.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1177 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-font-size.md b/versioned_docs/version-20-R7/commands-legacy/object-set-font-size.md index 7a7d6f82871a5c..1eca92f808b934 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-font-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-font-size.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **OBJECT SET FONT SIZE** sets the form objects specified by *object* to be displayed using the font size you pass in *size*. @@ -51,4 +48,13 @@ The following example sets the font size for all the form objects whose name sta [OBJECT Get font size](object-get-font-size.md) [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT STYLE](object-set-font-style.md) -*Programming Notes* \ No newline at end of file +*Programming Notes* + +#### Properties + +| | | +| --- | --- | +| Command number | 165 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-font-style.md b/versioned_docs/version-20-R7/commands-legacy/object-set-font-style.md index 9608f91441c283..b040fcaf4e4011 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-font-style.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-font-style.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **OBJECT SET FONT STYLE** sets the form objects specified by *object* to be displayed using the font style you pass in *styles*. @@ -56,4 +53,13 @@ This example sets the font style to Plain for all form objects with names starti [OBJECT SET FONT](object-set-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) *Programming Notes* -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 166 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-font.md b/versioned_docs/version-20-R7/commands-legacy/object-set-font.md index 0eae06cd8357a6..f14353f5a2dae6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-font.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-font.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description OBJECT SET FONT displays the *object* using the font specified in the *font* parameter. The *font* parameter must contain a valid font name. @@ -62,4 +59,13 @@ The following example uses the special *%password* option, designed for entry an [OBJECT Get font](object-get-font.md) [OBJECT SET FONT SIZE](object-set-font-size.md) [OBJECT SET FONT STYLE](object-set-font-style.md) -*Programming Notes* \ No newline at end of file +*Programming Notes* + +#### Properties + +| | | +| --- | --- | +| Command number | 164 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-format.md b/versioned_docs/version-20-R7/commands-legacy/object-set-format.md index e79d3abec91761..82c02c0cc557c0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-format.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-format.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **OBJECT SET FORMAT** sets the display format for the objects specified by *object* to the format you pass in *displayFormat*. The new format is only used for the current display; it is not stored with the form. @@ -362,4 +359,13 @@ Switching a thermometer to "Barber shop" mode: [Example database (v15 R5)](https://download.4d.com/Demos/4D%5Fv15%5FR5/HDI%5FListBox%5FOBJECT%5FSET%5FFORMAT.zip) [GET SYSTEM FORMAT](get-system-format.md) [OBJECT Get format](object-get-format.md) -[OBJECT SET FILTER](object-set-filter.md) \ No newline at end of file +[OBJECT SET FILTER](object-set-filter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 236 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-help-tip.md b/versioned_docs/version-20-R7/commands-legacy/object-set-help-tip.md index a2e07c46936437..4d13f47fb54583 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-help-tip.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-help-tip.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET HELP TIP** command sets or dynamically modifies the help tip associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -130,4 +127,13 @@ The result is... #### See also [OBJECT Get help tip](object-get-help-tip.md) -[SET DATABASE PARAMETER](set-database-parameter.md) \ No newline at end of file +[SET DATABASE PARAMETER](set-database-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1181 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md b/versioned_docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md index 6cb23972db7982..1b1d6624b5229f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-horizontal-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET HORIZONTAL ALIGNMENT** command allows you to set the type of horizontal alignment applied to the object(s) designated by the *object* and *\** parameters. @@ -57,4 +54,13 @@ The form objects to which alignment can be applied are as follows: [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) \ No newline at end of file +[OBJECT SET VERTICAL ALIGNMENT](object-set-vertical-alignment.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 706 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-indicator-type.md b/versioned_docs/version-20-R7/commands-legacy/object-set-indicator-type.md index 0d491dbe1e2429..29d98273bad10f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-indicator-type.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-indicator-type.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET INDICATOR TYPE** command modifies the type of progress indicator for the thermometer(s) designated by the *object* and *\** parameters in the current process. @@ -36,4 +33,13 @@ In the *indicator* parameter, pass the type of indicator you want to display. Yo #### See also -[OBJECT Get indicator type](object-get-indicator-type.md) \ No newline at end of file +[OBJECT Get indicator type](object-get-indicator-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1246 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md b/versioned_docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md index 864c27ab29cec9..9b5330fff358db 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-keyboard-layout.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET KEYBOARD LAYOUT** command sets or dynamically modifies the keyboard layout associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -28,4 +25,13 @@ In *languageCode*, you pass a string indicating the code of the language to use, #### See also -[OBJECT Get keyboard layout](object-get-keyboard-layout.md) \ No newline at end of file +[OBJECT Get keyboard layout](object-get-keyboard-layout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1179 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-list-by-name.md b/versioned_docs/version-20-R7/commands-legacy/object-set-list-by-name.md index 0bf426037c140a..8e506c40449b22 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-list-by-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-list-by-name.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT SET LIST BY NAME command sets, replaces or disassociates the *list* associated with the object or group of objects specified by *object*. The list whose name is passed in the *list* parameter must have been created using the List Editor in the Design environment. @@ -91,4 +88,13 @@ You want to remove the list associations: #### See also [OBJECT Get list name](object-get-list-name.md) -[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) \ No newline at end of file +[OBJECT SET LIST BY REFERENCE](object-set-list-by-reference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 237 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-list-by-reference.md b/versioned_docs/version-20-R7/commands-legacy/object-set-list-by-reference.md index 5c2c1ec1aed0a3..7509788f6b1970 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-list-by-reference.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-list-by-reference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET LIST BY REFERENCE** command defines or replaces the list associated with the object(s) designated by the *object* and *\** parameters, with the hierarchical list referenced in the *list* parameter. @@ -129,4 +126,13 @@ In order to update the list associated with the pop-up managed by array, you nee #### See also [OBJECT Get list reference](object-get-list-reference.md) -[OBJECT SET LIST BY NAME](object-set-list-by-name.md) \ No newline at end of file +[OBJECT SET LIST BY NAME](object-set-list-by-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1266 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-maximum-value.md b/versioned_docs/version-20-R7/commands-legacy/object-set-maximum-value.md index a40273bdc57cc6..4feb986308859d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-maximum-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-maximum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET MAXIMUM VALUE** command modifies the maximum value of the object(s) designated by the *object* and *\** parameters for the current process. @@ -31,4 +28,13 @@ In *maxValue*, pass the new maximum value you want to assign to the object for t #### See also [OBJECT GET MAXIMUM VALUE](object-get-maximum-value.md) -[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) \ No newline at end of file +[OBJECT SET MINIMUM VALUE](object-set-minimum-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1244 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-minimum-value.md b/versioned_docs/version-20-R7/commands-legacy/object-set-minimum-value.md index 9b16988749376e..2ba62ff37e838a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-minimum-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-minimum-value.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET MINIMUM VALUE** command modifies the minimum value of the object(s) designated by the *object* and *\** parameters for the current process. @@ -31,4 +28,13 @@ In *minValue*, pass the new minimum value you want to assign to the object for t #### See also [OBJECT GET MINIMUM VALUE](object-get-minimum-value.md) -[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) \ No newline at end of file +[OBJECT SET MAXIMUM VALUE](object-set-maximum-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1242 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-multiline.md b/versioned_docs/version-20-R7/commands-legacy/object-set-multiline.md index 0fb525d14455f4..bd4108241c8ca5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-multiline.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-multiline.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET MULTILINE** command modifies the "Multiline" property of the object(s) designated by the *object* and *\** parameters. @@ -45,4 +42,13 @@ You want to prohibit multiple lines in an entry area: #### See also -[OBJECT Get multiline](object-get-multiline.md) \ No newline at end of file +[OBJECT Get multiline](object-get-multiline.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1253 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-placeholder.md b/versioned_docs/version-20-R7/commands-legacy/object-set-placeholder.md index 61dd4b2f86aa12..027ed82284bed9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-placeholder.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-placeholder.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET PLACEHOLDER** command associates placeholder text with the object(s) designated by the *object* and *\** parameters. @@ -46,4 +43,13 @@ You want to display "Search" as placeholder text in a combo box: #### See also -[OBJECT Get placeholder](object-get-placeholder.md) \ No newline at end of file +[OBJECT Get placeholder](object-get-placeholder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1295 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md b/versioned_docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md index 2e08ad01b0ed85..5429329b300117 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-print-variable-frame.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET PRINT VARIABLE FRAME** command modifies the Print Variable Frame property of the object(s) designated by the *object* and *\** parameters. @@ -44,4 +41,13 @@ The optional *fixedSubform* parameter lets you set an additional option when you #### See also -[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) \ No newline at end of file +[OBJECT GET PRINT VARIABLE FRAME](object-get-print-variable-frame.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1240 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-resizing-options.md b/versioned_docs/version-20-R7/commands-legacy/object-set-resizing-options.md index f0867952c9ce79..e67d070eb36131 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-resizing-options.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-resizing-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET RESIZING OPTIONS** command sets or dynamically modifies the resizing options for the object(s) designated by the *object* and *\** parameters for the current process. These options specify how the object is displayed when the form window is resized. @@ -43,4 +40,13 @@ In the *vertical* parameter, you pass a value indicating the vertical resizing o #### See also -[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) \ No newline at end of file +[OBJECT GET RESIZING OPTIONS](object-get-resizing-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1175 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-rgb-colors.md b/versioned_docs/version-20-R7/commands-legacy/object-set-rgb-colors.md index 20e126dec90c69..8fc89d693b7a59 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-rgb-colors.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-rgb-colors.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET RGB COLORS** command changes the foreground and background colors of the objects specified by the *object* parameter and the optional *\** parameter. When the command is applied to a list box object, an additional parameter lets you modify the alternating color of the rows. @@ -105,4 +102,13 @@ Changing to transparent background with a light font color: #### See also [OBJECT GET RGB COLORS](object-get-rgb-colors.md) -[Select RGB Color](select-rgb-color.md) \ No newline at end of file +[Select RGB Color](select-rgb-color.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 628 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-scroll-position.md b/versioned_docs/version-20-R7/commands-legacy/object-set-scroll-position.md index a0291f124ae0cc..5fc40e3bc8092c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-scroll-position.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-scroll-position.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET SCROLL POSITION** command allows scrolling the contents of several types of objects: the lines of a subform, of a list form (displayed using the [MODIFY SELECTION](modify-selection.md) or [DISPLAY SELECTION](display-selection.md) commands), or of a hierarchical list, the rows and columns of a list box or even the pixels of a picture. @@ -92,4 +89,13 @@ Make sure that you do not omit the second *\** parameter in this case, otherwise [HIGHLIGHT RECORDS](highlight-records.md) [LISTBOX SELECT ROW](listbox-select-row.md) -[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) \ No newline at end of file +[OBJECT GET SCROLL POSITION](object-get-scroll-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 906 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-scrollbar.md b/versioned_docs/version-20-R7/commands-legacy/object-set-scrollbar.md index 71257a424e3dcb..a5d394ee219612 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-scrollbar.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-scrollbar.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT SET SCROLLBAR command allows you to display or hide the horizontal and/or vertical scrollbars in the object set using the *object* and *\** parameters. @@ -46,4 +43,13 @@ The following table indicates the values you can pass in the *horizontal* and *v [LISTBOX Get property](listbox-get-property.md) [LISTBOX SET GRID](listbox-set-grid.md) [OBJECT GET SCROLLBAR](object-get-scrollbar.md) -[OBJECT SET VISIBLE](object-set-visible.md) \ No newline at end of file +[OBJECT SET VISIBLE](object-set-visible.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 843 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-shortcut.md b/versioned_docs/version-20-R7/commands-legacy/object-set-shortcut.md index acd24e5ebefba3..63f5fde8867eff 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-shortcut.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-shortcut.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET SHORTCUT** command sets or dynamically modifies the keyboard shortcut associated with the object(s) designated by the *object* and *\** parameters for the current process. @@ -89,4 +86,13 @@ You want to associate a different shortcut depending on the current language of #### See also -[OBJECT GET SHORTCUT](object-get-shortcut.md) \ No newline at end of file +[OBJECT GET SHORTCUT](object-get-shortcut.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1185 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-style-sheet.md b/versioned_docs/version-20-R7/commands-legacy/object-set-style-sheet.md index ba52435815a469..ff274e10aa8502 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-style-sheet.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-style-sheet.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET STYLE SHEET** command modifies, for the current process, the style sheet associated with the object(s) designated by the *object* and *\** parameters. A style sheet modifies the font, font size and (except for automatic style sheets) font style. @@ -49,4 +46,13 @@ In **project architecture**, only the three automatic style sheets are supported *Font Styles* [GET STYLE SHEET INFO](get-style-sheet-info.md) [LIST OF STYLE SHEETS](list-of-style-sheets.md) -[OBJECT Get style sheet](object-get-style-sheet.md) \ No newline at end of file +[OBJECT Get style sheet](object-get-style-sheet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1257 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-subform-container-value.md b/versioned_docs/version-20-R7/commands-legacy/object-set-subform-container-value.md index 7cac3074cedd6e..16733482a40cdb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-subform-container-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-subform-container-value.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET SUBFORM CONTAINER VALUE** command sets the current value of the data source bound with the subform container displayed in the parent form. @@ -33,4 +30,13 @@ A detailed example is available in the [OBJECT Get subform container value](obje #### See also [Form](form.md) -[OBJECT Get subform container value](object-get-subform-container-value.md) \ No newline at end of file +[OBJECT Get subform container value](object-get-subform-container-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1784 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-subform.md b/versioned_docs/version-20-R7/commands-legacy/object-set-subform.md index b855b5f8536d46..585584007b0ae3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-subform.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-subform.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET SUBFORM** command dynamically modifies the detail form as well as, optionally, the screen list form associated with the subform object designated by the *\**, *object* parameters. @@ -45,4 +42,13 @@ When you modify a page subform, the command can be executed at any time; current #### See also [OBJECT GET SUBFORM](object-get-subform.md) -[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) \ No newline at end of file +[OBJECT GET SUBFORM CONTAINER SIZE](object-get-subform-container-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1138 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-text-orientation.md b/versioned_docs/version-20-R7/commands-legacy/object-set-text-orientation.md index 7eae1294a5eb3b..fae19706e1ef08 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-text-orientation.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-text-orientation.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET TEXT ORIENTATION** command modifies the orientation of the object(s) designated by the *object* and *\** parameters for the current process. @@ -50,4 +47,13 @@ You want to apply an orientation of 270° to a variable in your form: #### See also -[OBJECT Get text orientation](object-get-text-orientation.md) \ No newline at end of file +[OBJECT Get text orientation](object-get-text-orientation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1284 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md b/versioned_docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md index 4fa077f491ea8c..ee66e6fd40a749 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-three-states-checkbox.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET THREE STATES CHECKBOX** command modifies, for the current process, the "Three-States" property of the checkbox(es) designated by the *object* and *\** parameters. @@ -32,4 +29,13 @@ In the *threeStates* parameter, pass **True** to enable the "three states" mode, #### See also -[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) \ No newline at end of file +[OBJECT Get three states checkbox](object-get-three-states-checkbox.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1249 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-title.md b/versioned_docs/version-20-R7/commands-legacy/object-set-title.md index ca7438963b69e6..787e73f4ff1133 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-title.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OBJECT SET TITLE command changes the title of the object(s) specified by *object* to the value you pass in *title*. @@ -73,4 +70,13 @@ You want to insert titles on two lines: #### See also -[OBJECT Get title](object-get-title.md) \ No newline at end of file +[OBJECT Get title](object-get-title.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 194 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-value.md b/versioned_docs/version-20-R7/commands-legacy/object-set-value.md index 95a598bb5fa2cc..01db7e08dd2eb0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-value.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Example 1 **OBJECT SET VALUE** sets the *value* of the current data source for the form object(s) designated by the *objectName* parameter. @@ -41,4 +38,13 @@ You want to get the data source value for a form object, get its name, and set a #### See also -[OBJECT Get value](object-get-value.md) \ No newline at end of file +[OBJECT Get value](object-get-value.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1742 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md b/versioned_docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md index fdaafe2595f0ac..ea4c6ad12f24cf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-vertical-alignment.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET VERTICAL ALIGNMENT** command modifies the type of vertical alignment applied to the object(s) designated by the *object* and *\** parameters. @@ -43,4 +40,13 @@ Vertical alignment can be applied to the following form objects: [OBJECT Get horizontal alignment](object-get-horizontal-alignment.md) [OBJECT Get vertical alignment](object-get-vertical-alignment.md) -[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) \ No newline at end of file +[OBJECT SET HORIZONTAL ALIGNMENT](object-set-horizontal-alignment.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1187 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-set-visible.md b/versioned_docs/version-20-R7/commands-legacy/object-set-visible.md index 716b3acb0301da..dfc83c60fc6409 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-set-visible.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-set-visible.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OBJECT SET VISIBLE** command shows or hides the objects specified by *object*. @@ -60,4 +57,13 @@ or: #### See also [OBJECT Get visible](object-get-visible.md) -[OBJECT SET ENTERABLE](object-set-enterable.md) \ No newline at end of file +[OBJECT SET ENTERABLE](object-set-enterable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 603 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/object-to-path.md b/versioned_docs/version-20-R7/commands-legacy/object-to-path.md index de6b8a9360fd7c..59b5d0a559c2e9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/object-to-path.md +++ b/versioned_docs/version-20-R7/commands-legacy/object-to-path.md @@ -54,4 +54,13 @@ We want to duplicate and rename a file in its own folder: [File](../commands/file.md) [Folder](../commands/folder.md) [Path to object](path-to-object.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1548 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/old-related-many.md b/versioned_docs/version-20-R7/commands-legacy/old-related-many.md index c58b90d08a7832..c1345645f50ef8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/old-related-many.md +++ b/versioned_docs/version-20-R7/commands-legacy/old-related-many.md @@ -15,13 +15,22 @@ displayed_sidebar: docs #### Description -**OLD RELATED MANY** operates the same way [RELATE MANY](relate-many.md) does, except that **OLD RELATED MANY** uses the old value in the one field to establish the relation. - -**Note:** **OLD RELATED MANY** uses the old value of the many field as returned by the [Old](old.md) function. For more information, see the description of the [Old](old.md) command. +**OLD RELATED MANY** operates the same way [RELATE MANY](relate-many.md) does, except that **OLD RELATED MANY** uses the old value in the one field to establish the relation.**OLD RELATED MANY** uses the old value of the many field as returned by the [Old](old.md) function. For more information, see the description of the [Old](old.md) command. **OLD RELATED MANY** changes the selection of the related table, and selects the first record of the selection as the current record. #### See also [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 263 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/old-related-one.md b/versioned_docs/version-20-R7/commands-legacy/old-related-one.md index c3694d08018f9a..c20d24b6e53a7f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/old-related-one.md +++ b/versioned_docs/version-20-R7/commands-legacy/old-related-one.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **OLD RELATED ONE** operates the same way as [RELATE ONE](relate-one.md) does, except that **OLD RELATED ONE** uses the old value of *aField* to establish the relation. @@ -33,4 +30,14 @@ If the command has been executed correctly and if the related records have been [Old](old.md) [OLD RELATED MANY](old-related-many.md) [RELATE ONE](relate-one.md) -[SAVE RELATED ONE](save-related-one.md) \ No newline at end of file +[SAVE RELATED ONE](save-related-one.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 44 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/old.md b/versioned_docs/version-20-R7/commands-legacy/old.md index a352a618f4fd58..f1f87842c3dc54 100644 --- a/versioned_docs/version-20-R7/commands-legacy/old.md +++ b/versioned_docs/version-20-R7/commands-legacy/old.md @@ -39,4 +39,13 @@ To restore the original value of a field, assign it the value returned by **Old* #### See also -[Modified](modified.md) \ No newline at end of file +[Modified](modified.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 35 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md index beaf58f21a4af1..d435ce73355a8f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-backup-shutdown-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The On Backup Shutdown database method is called every time a database backup ends. The reasons for the stoppage of a backup can be the end of the copy, user interruption or an error. diff --git a/versioned_docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md index 5ad33d4d7ec4e3..927b0b58c0cf6a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-backup-startup-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On Backup Startup database method** is called every time a database backup is about to start (manual backup, scheduled automatic backup, or using the [BACKUP](backup.md) command). diff --git a/versioned_docs/version-20-R7/commands-legacy/on-drop-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-drop-database-method.md index e949c1cebfdc69..6eb4adafe807d0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-drop-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-drop-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On Drop database method** is available in local or remote 4D applications. diff --git a/versioned_docs/version-20-R7/commands-legacy/on-err-call.md b/versioned_docs/version-20-R7/commands-legacy/on-err-call.md index d781b2797fd747..d1a5acd1bdc713 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-err-call.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-err-call.md @@ -179,4 +179,13 @@ The following error-handling method ignores the user interruptions and displays [Last errors](last-errors.md) [Last errors](last-errors.md) [Method called on error](method-called-on-error.md) -*System Variables* \ No newline at end of file +*System Variables* + +#### Properties + +| | | +| --- | --- | +| Command number | 155 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/on-event-call.md b/versioned_docs/version-20-R7/commands-legacy/on-event-call.md index b78e634ae0c7ab..49097f0ffd779a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-event-call.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-event-call.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ON EVENT CALL** command installs the method, whose name you pass in *eventMethod*, as the method for catching (trapping) events. This method is called the **event-handling method** or **event-catching method**. @@ -117,4 +114,14 @@ If you print a report using [PRINT SELECTION](print-selection.md), you do NOT ne [FILTER EVENT](filter-event.md) [MOUSE POSITION](mouse-position.md) [Method called on event](method-called-on-event.md) -[Shift down](shift-down.md) \ No newline at end of file +[Shift down](shift-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 190 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/on-exit-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-exit-database-method.md index 4bba5661129ffb..a3b8fb59d9b02e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-exit-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-exit-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On Exit database method** is called once when you quit a database. @@ -107,4 +104,13 @@ The following example shows a typical case where you launch one or more backgrou #### See also [On Startup database method](on-startup-database-method.md) -[QUIT 4D](quit-4d.md) \ No newline at end of file +[QUIT 4D](quit-4d.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 905252 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md index 330f3e63bbfa57..e00e25febe717a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-host-database-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **On Host Database Event database method** allows 4D components to execute code when the host database is opened and closed. diff --git a/versioned_docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md index d36cb3d3fe9372..0e71f0a2c8c457 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-mobile-app-action-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Documentation moved** diff --git a/versioned_docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md index 4af1e034c63621..bb23f03c291e30 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-mobile-app-authentication-database-method.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Documentation moved** diff --git a/versioned_docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md index 4b3bc1374b7a7d..3e2d48abc86e60 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-rest-authentication-database-method.md @@ -17,11 +17,18 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **On REST Authentication database method** is deprecated in projects as of 4D 20 R6. The [Force login authentication](https://developer.4d.com/docs/REST/authUsers) is now highly recommended. In converted projects, you can upgrade your configuration by clicking on the [**Activate REST authentication through ds.authentify() function**](https://developer.4d.com/docs/settings/web#access) settings button. See also [this blog post](https://blog.4d.com/force-login-now-is-the-default-mode-for-all-rest-authentications) to know how to migrate your code if necessary. + + +#### Properties + +| | | +| --- | --- | +| Command number | 3367 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md index cd01282ee6c705..b935e0b1469f32 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-server-close-connection-database-method.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **On Server Close Connection database method** is called once on the Server machine each time a 4D Client process ends. diff --git a/versioned_docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md index 2ace76aee7eb86..fa6b9d3ce46d68 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-server-open-connection-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### When is the On Server Open Connection Database Method Called? The **On Server Open Connection database method** is called once on the Server machine each time a connection process is started by a 4D remote workstation. The **On Server Open Connection database method** is NOT invoked by any 4D environment other than 4D Server. @@ -130,3 +127,13 @@ The following example prevents any new connection from 2 to 4 A.M.    If((?02:00:00?<=Current time)&(Current time ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 16001 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md index 2130083dfe0d3e..1ce877e1c8f12d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-server-shutdown-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The On Server Shutdown database method is called once on the server machine when the current database is closed on 4D Server. The On Server Shutdown database method is NOT invoked by any 4D environment other than 4D Server. diff --git a/versioned_docs/version-20-R7/commands-legacy/on-server-startup-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-server-startup-database-method.md index be2a1e249051e0..65df418cbb0dcb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-server-startup-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-server-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On Server Startup database method** is called once on the server machine when you open a database with 4D Server. The **On Server Startup database method** is NOT invoked by any 4D environment other than 4D Server. diff --git a/versioned_docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md index f1a647098e63e8..c0404e2ad1285d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-sql-authentication-database-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On SQL Authentication database method** can be used to filter requests sent to the integrated SQL server of 4D. This filtering can be based on the name and password as well as the (optional) IP address of the user. The developer can use their own table of users or that of the 4D users to evaluate the connection identifiers. Once the connection is authenticated, the [CHANGE CURRENT USER](change-current-user.md) command must be called in order to control access of requests within the 4D database. diff --git a/versioned_docs/version-20-R7/commands-legacy/on-startup-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-startup-database-method.md index 1ca4c0be89aee0..d55eb7dee973a5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-startup-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-startup-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The On Startup database method is called once when you open a database. @@ -47,4 +44,13 @@ See the example in the [Semaphore](semaphore.md) section. *Database Methods* [On Exit database method](on-exit-database-method.md) -[QUIT 4D](quit-4d.md) \ No newline at end of file +[QUIT 4D](quit-4d.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 905263 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/on-system-event-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-system-event-database-method.md index 4fd47f2df7c940..6e5cf2bdfc555a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-system-event-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-system-event-database-method.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **On System Event database method** is called each time a system event occurs. This concerns all 4D environments: 4D (all modes) and 4D Server, as well as 4D applications that are compiled and merged with 4D Volume Desktop. diff --git a/versioned_docs/version-20-R7/commands-legacy/on-web-connection-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-web-connection-database-method.md index d6675ccf430956..ed1e671937d189 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-web-connection-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-web-connection-database-method.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### The **On Web Connection database method** can be called in the following cases: diff --git a/versioned_docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md b/versioned_docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md index 3fe324d2aca056..3ea0c3229972eb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/on-web-legacy-close-session-database-method.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility Note This database method can only be used with **legacy web sessions**, available in databases converted from versions prior to 4D v18 R6\. It is never called when **scalable web sessions** mode is enabled (recommended in 4D v18 R6 and higher). For more information, please refer to the *Web Sessions Management (Legacy)* section. diff --git a/versioned_docs/version-20-R7/commands-legacy/one-record-select.md b/versioned_docs/version-20-R7/commands-legacy/one-record-select.md index 263f9bbeb830c2..5590a27f49d3c1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/one-record-select.md +++ b/versioned_docs/version-20-R7/commands-legacy/one-record-select.md @@ -28,4 +28,15 @@ This command was useful to “return” a record that had been pushed and popped [CREATE SELECTION FROM ARRAY](create-selection-from-array.md) *Named Selections* [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 189 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-administration-window.md b/versioned_docs/version-20-R7/commands-legacy/open-administration-window.md index de3e2ceca9437b..92d1b9de07e55a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-administration-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-administration-window.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OPEN ADMINISTRATION WINDOW** command displays the server administration window on the machine that executes it. The 4D Server administration window can be used to view the current parameters and to carry out various maintenance operations (see the 4D Server Reference Guide). Beginning with version 11 of 4D Server, this window can be displayed from a client machine: @@ -51,4 +48,14 @@ If the command has been executed correctly, the OK system variable is set to 1\. #### See also -[OPEN SECURITY CENTER](open-security-center.md) \ No newline at end of file +[OPEN SECURITY CENTER](open-security-center.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1047 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-color-picker.md b/versioned_docs/version-20-R7/commands-legacy/open-color-picker.md index f5b1c9ee86d7a9..2f84e5e6d1dd78 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-color-picker.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-color-picker.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OPEN COLOR PICKER** command displays the system color picker dialog box. @@ -30,4 +27,13 @@ If the color was changed, the On After Edit form event is generated for the obje #### See also -[OPEN FONT PICKER](open-font-picker.md) \ No newline at end of file +[OPEN FONT PICKER](open-font-picker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1304 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-data-file.md b/versioned_docs/version-20-R7/commands-legacy/open-data-file.md index 7bb9c693617740..535cb6dc587131 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-data-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-data-file.md @@ -53,4 +53,13 @@ In the context of deploying a merged application, you want to open or create the #### See also -[CREATE DATA FILE](create-data-file.md) \ No newline at end of file +[CREATE DATA FILE](create-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 312 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-database.md b/versioned_docs/version-20-R7/commands-legacy/open-database.md index bfcb96b0aa6187..0b7a056f6ec2ed 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-database.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-database.md @@ -69,3 +69,13 @@ You want to select a server at startup from a single-user application. You could     QUIT 4D  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1321 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-document.md b/versioned_docs/version-20-R7/commands-legacy/open-document.md index 977757aa4dabc7..4bba079d081f00 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-document.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-document.md @@ -86,4 +86,14 @@ If you call **Open document** with a mode of 3, the function returns ?00:00:00? #### See also [Append document](append-document.md) -[Create document](create-document.md) \ No newline at end of file +[Create document](create-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 264 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-font-picker.md b/versioned_docs/version-20-R7/commands-legacy/open-font-picker.md index afa88daa9dc0e5..6cf695cb6fa410 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-font-picker.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-font-picker.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OPEN FONT PICKER** command displays the system font picker dialog box. @@ -44,4 +41,13 @@ Here is the button code: #### See also -[OPEN COLOR PICKER](open-color-picker.md) \ No newline at end of file +[OPEN COLOR PICKER](open-color-picker.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1303 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-form-window.md b/versioned_docs/version-20-R7/commands-legacy/open-form-window.md index 3a65568fc0b969..06372088e4cea3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-form-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-form-window.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Open form window command opens a new window using the size and resizing properties of the form *formName*. @@ -134,4 +131,13 @@ which displays: [FORM GET PROPERTIES](form-get-properties.md) [Open window](open-window.md) *Window Types* -*Window Types (compatibility)* \ No newline at end of file +*Window Types (compatibility)* + +#### Properties + +| | | +| --- | --- | +| Command number | 675 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-printing-job.md b/versioned_docs/version-20-R7/commands-legacy/open-printing-job.md index 3cfc9c252c7740..2cbdb13d5a07c9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-printing-job.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-printing-job.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OPEN PRINTING JOB** command opens a print job and stacks all the subsequent printing orders there until the [CLOSE PRINTING JOB](close-printing-job.md) command is called. This command lets you control the print jobs and, more particularly, ensure that no other unexpected print job can be inserted into a printing sequence. @@ -38,4 +35,14 @@ The OK system variable is set to 1 if the print job has been successfully open. #### See also -[CLOSE PRINTING JOB](close-printing-job.md) \ No newline at end of file +[CLOSE PRINTING JOB](close-printing-job.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 995 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-resource-file.md b/versioned_docs/version-20-R7/commands-legacy/open-resource-file.md index d8722271632317..443c419eb4c368 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-resource-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-resource-file.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Open resource file** command opens the resource file whose name or pathname you pass in *resFileName*. @@ -99,4 +96,14 @@ If the resource file could not be opened due to a resource or I/O problem, an er #### See also [CLOSE RESOURCE FILE](close-resource-file.md) -*Resources* \ No newline at end of file +*Resources* + +#### Properties + +| | | +| --- | --- | +| Command number | 497 | +| Thread safe | ✗ | +| Modifies variables | OK, Document, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-runtime-explorer.md b/versioned_docs/version-20-R7/commands-legacy/open-runtime-explorer.md index 5baec8c2bc5b65..1dddef729a66f6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-runtime-explorer.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-runtime-explorer.md @@ -15,3 +15,13 @@ displayed_sidebar: docs #### Description The OPEN RUNTIME EXPLORER command displays the Runtime Explorer in a floating window. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1781 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-security-center.md b/versioned_docs/version-20-R7/commands-legacy/open-security-center.md index 860f2d12176359..9b04e5fbd95dba 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-security-center.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-security-center.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The OPEN SECURITY CENTER command displays the Maintenance and Security Center (MSC) window. For more information, please refer to the *Maintenance and security center* page. @@ -26,4 +23,13 @@ displayed_sidebar: docs #### See also -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1018 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-settings-window.md b/versioned_docs/version-20-R7/commands-legacy/open-settings-window.md index b02b0174a4416a..f25bed73c171f0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-settings-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-settings-window.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **OPEN SETTINGS WINDOW** command opens the Preferences dialog box of 4D or the Database Settings of the current 4D application and displays the parameters or the page corresponding to the key passed in *selector*. @@ -141,3 +138,14 @@ Access to the Interface page of the Database settings in "User settings" mode: #### System variables and sets If the Preferences/Settings dialog box is validated, the system variable OK returns 1\. Otherwise, it returns 0. + + +#### Properties + +| | | +| --- | --- | +| Command number | 903 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-url.md b/versioned_docs/version-20-R7/commands-legacy/open-url.md index df7af352244723..9d6b8cd06eaea7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-url.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-url.md @@ -79,4 +79,13 @@ The *appName* parameter lets you open the same text file using different applica #### See also -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 673 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/open-window.md b/versioned_docs/version-20-R7/commands-legacy/open-window.md index 0f3c69a98eaf1c..74a3273794e756 100644 --- a/versioned_docs/version-20-R7/commands-legacy/open-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/open-window.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Open window** opens a new window with the dimensions given by the first four parameters: @@ -138,4 +135,13 @@ This example illustrates the “delay” mechanism for displaying sheet windows [CLOSE WINDOW](close-window.md) [Open form window](open-form-window.md) -*Open Window* \ No newline at end of file +*Open Window* + +#### Properties + +| | | +| --- | --- | +| Command number | 153 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/order-by-attribute.md b/versioned_docs/version-20-R7/commands-legacy/order-by-attribute.md index ca0974baad4d46..4d7b0c8e72d7a3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/order-by-attribute.md +++ b/versioned_docs/version-20-R7/commands-legacy/order-by-attribute.md @@ -111,4 +111,13 @@ Records are in the following order: #### See also - \ No newline at end of file + + +#### Properties + +| | | +| --- | --- | +| Command number | 1407 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/order-by-formula.md b/versioned_docs/version-20-R7/commands-legacy/order-by-formula.md index 20169c0e44c11c..a3edebc6036568 100644 --- a/versioned_docs/version-20-R7/commands-legacy/order-by-formula.md +++ b/versioned_docs/version-20-R7/commands-legacy/order-by-formula.md @@ -43,4 +43,15 @@ This example orders the records of the \[People\] table in descending order, bas #### See also -[ORDER BY](order-by.md) \ No newline at end of file +[ORDER BY](order-by.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 300 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/order-by.md b/versioned_docs/version-20-R7/commands-legacy/order-by.md index 04c87b82a58e0e..98e37295a7b3bf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/order-by.md +++ b/versioned_docs/version-20-R7/commands-legacy/order-by.md @@ -197,4 +197,15 @@ Each button calls the MULTILEVEL project method with a pointer to the correspond #### See also -[ORDER BY FORMULA](order-by-formula.md) \ No newline at end of file +[ORDER BY FORMULA](order-by-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 49 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/outside-call.md b/versioned_docs/version-20-R7/commands-legacy/outside-call.md index 5c2661bc04e37e..933b27ea524461 100644 --- a/versioned_docs/version-20-R7/commands-legacy/outside-call.md +++ b/versioned_docs/version-20-R7/commands-legacy/outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Outside call** returns True for the After execution cycle. @@ -27,4 +24,13 @@ In order for the **Outside call** execution cycle to be generated, make sure tha #### See also [Form event code](../commands/form-event-code.md) -[POST OUTSIDE CALL](post-outside-call.md) \ No newline at end of file +[POST OUTSIDE CALL](post-outside-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 328 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/page-break.md b/versioned_docs/version-20-R7/commands-legacy/page-break.md index 0d84f698c7aa44..5c1472d3db23ef 100644 --- a/versioned_docs/version-20-R7/commands-legacy/page-break.md +++ b/versioned_docs/version-20-R7/commands-legacy/page-break.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **PAGE BREAK** triggers the printing of the data that has been sent to the printer and ejects the page. **PAGE BREAK** is used with [Print form](print-form.md) (in the context of the On Printing Detail form event) to force page breaks and to print the last page created in memory. Do not use **PAGE BREAK** with the [PRINT SELECTION](print-selection.md) command. Instead, use [Subtotal](subtotal.md) or [BREAK LEVEL](break-level.md) with the optional parameter to generate page breaks. @@ -45,4 +42,14 @@ Refer to the example of the [SET PRINT MARKER](set-print-marker.md) command. #### See also [CANCEL](cancel.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 6 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/parse-formula.md b/versioned_docs/version-20-R7/commands-legacy/parse-formula.md index 42cdf8a64a68e5..1c9463895074d6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/parse-formula.md +++ b/versioned_docs/version-20-R7/commands-legacy/parse-formula.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Parse formula** function analyzes the 4D *formula*, checks its syntax, and returns its normalized form. This allows the formula to remain valid in the event that a 4D language or structure element (command, constant, table, field, or 4D Plugin) is renamed. @@ -108,4 +105,13 @@ The optional *errorMessage* parameter will receive an error message if there is [Formula from string](../commands/formula-from-string.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -*Using tokens in formulas* \ No newline at end of file +*Using tokens in formulas* + +#### Properties + +| | | +| --- | --- | +| Command number | 1576 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/pasteboard-data-size.md b/versioned_docs/version-20-R7/commands-legacy/pasteboard-data-size.md index 197047ee051e45..c96a9ddd1a1d0d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/pasteboard-data-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/pasteboard-data-size.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Pasteboard data size** command checks whether there is any data of the type you passed in *dataType* present in the pasteboard. @@ -93,4 +90,14 @@ See the example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md [GET PASTEBOARD DATA](get-pasteboard-data.md) [GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) [Get text from pasteboard](get-text-from-pasteboard.md) -*Pasteboard* \ No newline at end of file +*Pasteboard* + +#### Properties + +| | | +| --- | --- | +| Command number | 400 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/path-to-object.md b/versioned_docs/version-20-R7/commands-legacy/path-to-object.md index 8e10bc5466ea88..dc1cfa224a6c44 100644 --- a/versioned_docs/version-20-R7/commands-legacy/path-to-object.md +++ b/versioned_docs/version-20-R7/commands-legacy/path-to-object.md @@ -173,4 +173,13 @@ You want to know the number of subfolders contained in a path: [File](../commands/file.md) [Folder](../commands/folder.md) [Object to path](object-to-path.md) -[Test path name](test-path-name.md) \ No newline at end of file +[Test path name](test-path-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1547 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/pause-indexes.md b/versioned_docs/version-20-R7/commands-legacy/pause-indexes.md index 77aeee508b60a5..c4fd73ab69402b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/pause-indexes.md +++ b/versioned_docs/version-20-R7/commands-legacy/pause-indexes.md @@ -45,4 +45,13 @@ Example of method for importing large amounts of data: #### See also [DELETE INDEX](delete-index.md) -[RESUME INDEXES](resume-indexes.md) \ No newline at end of file +[RESUME INDEXES](resume-indexes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1293 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/pause-process.md b/versioned_docs/version-20-R7/commands-legacy/pause-process.md index 7ed3972d52f44d..b0d434438df20e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/pause-process.md +++ b/versioned_docs/version-20-R7/commands-legacy/pause-process.md @@ -30,4 +30,13 @@ While process execution is suspended, the windows belonging to this process are [ABORT PROCESS BY ID](abort-process-by-id.md) [DELAY PROCESS](delay-process.md) [HIDE PROCESS](hide-process.md) -[RESUME PROCESS](resume-process.md) \ No newline at end of file +[RESUME PROCESS](resume-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 319 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/php-execute.md b/versioned_docs/version-20-R7/commands-legacy/php-execute.md index f5fa414e7333b6..67d6c28fe6edaa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/php-execute.md +++ b/versioned_docs/version-20-R7/commands-legacy/php-execute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - :::info Compatibility **PHP is deprecated in 4D**. It is now recommended to use the [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -280,4 +277,13 @@ For more information concerning the trim function, please refer to the PHP docum *Executing PHP scripts in 4D* [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1058 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/php-get-full-response.md b/versioned_docs/version-20-R7/commands-legacy/php-get-full-response.md index ee5bf8e02f26b5..b4945a79989dfe 100644 --- a/versioned_docs/version-20-R7/commands-legacy/php-get-full-response.md +++ b/versioned_docs/version-20-R7/commands-legacy/php-get-full-response.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - :::info Compatibility **PHP is deprecated in 4D**. It is now recommended to use the [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -40,4 +37,13 @@ Since exchanges between 4D and the PHP interpreter are carried out via FastCGI, #### See also [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1061 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/php-get-option.md b/versioned_docs/version-20-R7/commands-legacy/php-get-option.md index c41df8b65362f8..dc9787849bdba8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/php-get-option.md +++ b/versioned_docs/version-20-R7/commands-legacy/php-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - :::info Compatibility **PHP is deprecated in 4D**. It is now recommended to use the [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -37,4 +34,13 @@ Pass a constant from the "*PHP*" theme in the *option* parameter to designate th #### See also [PHP GET FULL RESPONSE](php-get-full-response.md) -[PHP SET OPTION](php-set-option.md) \ No newline at end of file +[PHP SET OPTION](php-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1060 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/php-set-option.md b/versioned_docs/version-20-R7/commands-legacy/php-set-option.md index 06874befdaa998..980323bfe3cb67 100644 --- a/versioned_docs/version-20-R7/commands-legacy/php-set-option.md +++ b/versioned_docs/version-20-R7/commands-legacy/php-set-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - :::info Compatibility **PHP is deprecated in 4D**. It is now recommended to use the [`4D.SystemWorker class`](../API/SystemWorkerClass.md). @@ -39,4 +36,13 @@ By default, **PHP SET OPTION** sets the option for all subsequent calls to [PHP #### See also [PHP Execute](php-execute.md) -[PHP GET OPTION](php-get-option.md) \ No newline at end of file +[PHP GET OPTION](php-get-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1059 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/picture-codec-list.md b/versioned_docs/version-20-R7/commands-legacy/picture-codec-list.md index 79e56404f0d2f8..eda9e45006a60f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/picture-codec-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/picture-codec-list.md @@ -34,4 +34,13 @@ By default, if you do not pass the *\** parameter, the command returns only the #### See also [Is picture file](is-picture-file.md) -*Pictures* \ No newline at end of file +*Pictures* + +#### Properties + +| | | +| --- | --- | +| Command number | 992 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/picture-library-list.md b/versioned_docs/version-20-R7/commands-legacy/picture-library-list.md index 96b8add192c3d5..2bdb6975792dbc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/picture-library-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/picture-library-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **PICTURE LIBRARY LIST** command returns the reference numbers and names of the pictures currently stored in the Picture Library of the database. @@ -94,4 +91,13 @@ The following example exports the Picture Library to a document on disk: [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 564 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/picture-properties.md b/versioned_docs/version-20-R7/commands-legacy/picture-properties.md index e2efab619b9c06..2ae8bf108224fc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/picture-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/picture-properties.md @@ -28,4 +28,13 @@ The *hOffset*, *vOffset*, and *mode* parameters return the horizontal and vertic #### See also -[Picture size](picture-size.md) \ No newline at end of file +[Picture size](picture-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 457 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/picture-size.md b/versioned_docs/version-20-R7/commands-legacy/picture-size.md index fcc86f944e43c9..c14ca25b9089b0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/picture-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/picture-size.md @@ -20,4 +20,13 @@ displayed_sidebar: docs #### See also -[PICTURE PROPERTIES](picture-properties.md) \ No newline at end of file +[PICTURE PROPERTIES](picture-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 356 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/picture-to-blob.md b/versioned_docs/version-20-R7/commands-legacy/picture-to-blob.md index 569b4d35aefd06..e976dfb8c4230a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/picture-to-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/picture-to-blob.md @@ -49,4 +49,14 @@ You want to convert an image from a proprietary format to GIF format and display [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 692 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/play.md b/versioned_docs/version-20-R7/commands-legacy/play.md index 4e01d58335ac96..5e55a071ce9106 100644 --- a/versioned_docs/version-20-R7/commands-legacy/play.md +++ b/versioned_docs/version-20-R7/commands-legacy/play.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **PLAY** command plays sound or multimedia files. You pass the full pathname of the file you want to play in *objectName*. On OS X, the command can also be used to play a system sound. @@ -58,4 +55,13 @@ The following example code plays a system sound on OS X: #### See also -[BEEP](beep.md) \ No newline at end of file +[BEEP](beep.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 290 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/plugin-list.md b/versioned_docs/version-20-R7/commands-legacy/plugin-list.md index 82f9cad4d4d42a..8b1e32609a76db 100644 --- a/versioned_docs/version-20-R7/commands-legacy/plugin-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/plugin-list.md @@ -27,4 +27,13 @@ PLUGIN LIST takes all plug-ins into account, including those that are integrated [COMPONENT LIST](component-list.md) [Get plugin access](get-plugin-access.md) [Is license available](is-license-available.md) -[SET PLUGIN ACCESS](set-plugin-access.md) \ No newline at end of file +[SET PLUGIN ACCESS](set-plugin-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 847 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/pop-record.md b/versioned_docs/version-20-R7/commands-legacy/pop-record.md index 3fef3066d26fe6..d05afeba3c4c3b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/pop-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/pop-record.md @@ -30,4 +30,14 @@ The following example pops the record for the customer off the record stack: #### See also [PUSH RECORD](push-record.md) -*Using the Record Stack* \ No newline at end of file +*Using the Record Stack* + +#### Properties + +| | | +| --- | --- | +| Command number | 177 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/pop-up-menu.md b/versioned_docs/version-20-R7/commands-legacy/pop-up-menu.md index 42d922304b3a62..d092f82de84760 100644 --- a/versioned_docs/version-20-R7/commands-legacy/pop-up-menu.md +++ b/versioned_docs/version-20-R7/commands-legacy/pop-up-menu.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Pop up menu** command displays a pop-up menu at the current location of the mouse. @@ -91,4 +88,13 @@ The following is the pop-up menu as it appears on Windows (left) and Macintosh ( #### See also [Dynamic pop up menu](dynamic-pop-up-menu.md) -[MOUSE POSITION](mouse-position.md) \ No newline at end of file +[MOUSE POSITION](mouse-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 542 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/position.md b/versioned_docs/version-20-R7/commands-legacy/position.md index acaf1f643a31aa..02ad788873e127 100644 --- a/versioned_docs/version-20-R7/commands-legacy/position.md +++ b/versioned_docs/version-20-R7/commands-legacy/position.md @@ -118,4 +118,13 @@ In the following example, you want to find all instances of a string and replace #### See also [Compare strings](compare-strings.md) -[Substring](substring.md) \ No newline at end of file +[Substring](substring.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 15 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/post-click.md b/versioned_docs/version-20-R7/commands-legacy/post-click.md index 154f871c73d8d7..0763b632f3cbce 100644 --- a/versioned_docs/version-20-R7/commands-legacy/post-click.md +++ b/versioned_docs/version-20-R7/commands-legacy/post-click.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The POST CLICK command simulates a mouse click. Its effect as if the user actually clicked the mouse button. @@ -30,4 +27,13 @@ If you specify the *process* parameter, the click is sent to the process whose p #### See also [POST EVENT](post-event.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 466 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/post-event.md b/versioned_docs/version-20-R7/commands-legacy/post-event.md index d49e6bb5eb952b..ede97e3e4c9e5f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/post-event.md +++ b/versioned_docs/version-20-R7/commands-legacy/post-event.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **POST EVENT** command simulates a keyboard or mouse event. Its effect is as if the user actually acted on the keyboard or the mouse. @@ -75,4 +72,13 @@ If you specify the *process* parameter, the event is sent to the process whose p #### See also [POST CLICK](post-click.md) -[POST KEY](post-key.md) \ No newline at end of file +[POST KEY](post-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 467 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/post-key.md b/versioned_docs/version-20-R7/commands-legacy/post-key.md index 5807018d750026..afc39b6a89cc3f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/post-key.md +++ b/versioned_docs/version-20-R7/commands-legacy/post-key.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **POST KEY** command simulates a keystroke. Its effect is as if the user actually entered a character on the keyboard. @@ -62,4 +59,13 @@ See example for the [Process number](../commands/process-number.md) command. *ASCII Codes* *Function Key Codes* [POST CLICK](post-click.md) -[POST EVENT](post-event.md) \ No newline at end of file +[POST EVENT](post-event.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 465 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/post-outside-call.md b/versioned_docs/version-20-R7/commands-legacy/post-outside-call.md index 23db8a7147c413..4fe52aec26e234 100644 --- a/versioned_docs/version-20-R7/commands-legacy/post-outside-call.md +++ b/versioned_docs/version-20-R7/commands-legacy/post-outside-call.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility Note This command was named **CALL PROCESS** in previous 4D releases. @@ -46,4 +43,14 @@ See example for [Semaphore](semaphore.md). [Form event code](../commands/form-event-code.md) [GET PROCESS VARIABLE](get-process-variable.md) -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 329 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/previous-record.md b/versioned_docs/version-20-R7/commands-legacy/previous-record.md index 9c13d10bc6d040..07170d0a2116e4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/previous-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/previous-record.md @@ -25,4 +25,14 @@ If **PREVIOUS RECORD** moves the current record pointer before the current selec [End selection](end-selection.md) [FIRST RECORD](first-record.md) [LAST RECORD](last-record.md) -[NEXT RECORD](next-record.md) \ No newline at end of file +[NEXT RECORD](next-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 110 | +| Thread safe | ✓ | +| Changes current record || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/print-form.md b/versioned_docs/version-20-R7/commands-legacy/print-form.md index fd62039ec90646..c56165fceb7408 100644 --- a/versioned_docs/version-20-R7/commands-legacy/print-form.md +++ b/versioned_docs/version-20-R7/commands-legacy/print-form.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Print form** simply prints *form* with the current values of fields and variables of *aTable*. It is usually used to print very complex reports that require complete control over the printing process. **Print form** does not do any record processing, break processing or page breaks. These operations are your responsibility. **Print form** prints fields and variables in a fixed size frame only. @@ -190,4 +187,13 @@ The code that calls the dialog then prints its body: [CANCEL](cancel.md) [PAGE BREAK](page-break.md) [PRINT SETTINGS](print-settings.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 5 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/print-label.md b/versioned_docs/version-20-R7/commands-legacy/print-label.md index 4307fef05cf9ec..3cb4add687df9b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/print-label.md +++ b/versioned_docs/version-20-R7/commands-legacy/print-label.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **PRINT LABEL** enables you to print labels with the data from the selection of *aTable*. @@ -108,4 +105,14 @@ The following example lets the user query the \[People\] table, and then display #### See also [PRINT SELECTION](print-selection.md) -[QR REPORT](qr-report.md) \ No newline at end of file +[QR REPORT](qr-report.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 39 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/print-object.md b/versioned_docs/version-20-R7/commands-legacy/print-object.md index 3ef255f1b03cc6..0ef3998835b15e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/print-object.md +++ b/versioned_docs/version-20-R7/commands-legacy/print-object.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Print object** command lets you print the form object(s) designated by the *object* and *\** parameters, at the location set by the *posX* and *posY* parameters. @@ -98,4 +95,13 @@ Example of printing a complete list box: #### See also -[FORM LOAD](form-load.md) \ No newline at end of file +[FORM LOAD](form-load.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1095 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/print-option-values.md b/versioned_docs/version-20-R7/commands-legacy/print-option-values.md index 4f002dc2de2a0f..18232e88dcaae9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/print-option-values.md +++ b/versioned_docs/version-20-R7/commands-legacy/print-option-values.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **PRINT OPTION VALUES** command returns in *namesArray* a list of names available for the print *option* defined. Optionally, you can retrieve additional information for each name in *info1Array* and *info2Array*. @@ -55,4 +52,13 @@ All the information returned by these commands is supplied by the operating syst #### See also [GET PRINT OPTION](get-print-option.md) -[SET PRINT OPTION](set-print-option.md) \ No newline at end of file +[SET PRINT OPTION](set-print-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 785 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/print-record.md b/versioned_docs/version-20-R7/commands-legacy/print-record.md index 936e83d0fe6abd..9a3b5c0bcc86c3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/print-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/print-record.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **PRINT RECORD** prints the current record of *aTable*, without modifying the current selection. The current output form is used for printing. If there is no current record for *aTable*, **PRINT RECORD** does nothing. @@ -64,4 +61,13 @@ The following example prints the same current record in two different forms. The #### See also -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 71 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/print-selection.md b/versioned_docs/version-20-R7/commands-legacy/print-selection.md index 9e9117daa540d7..9aab56d72c951f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/print-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/print-selection.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **PRINT SELECTION** prints the current selection of *aTable*. The records are printed with the current output form of the table in the current process. **PRINT SELECTION** performs the same action as the **Print** menu command in the Design environment. If the selection is empty, **PRINT SELECTION** does nothing. @@ -62,4 +59,14 @@ The following example selects all the records in the \[People\] table. It then u [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 60 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/print-settings-to-blob.md b/versioned_docs/version-20-R7/commands-legacy/print-settings-to-blob.md index 79d366082e57a8..fa61dbc1c1a2be 100644 --- a/versioned_docs/version-20-R7/commands-legacy/print-settings-to-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/print-settings-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Print settings to BLOB** command saves the current 4D print settings in the *printSettings* BLOB. The *printSettings* parameter stores all the settings used for printing: @@ -55,4 +52,13 @@ You want to store the current print settings to disk: #### See also -[BLOB to print settings](blob-to-print-settings.md) \ No newline at end of file +[BLOB to print settings](blob-to-print-settings.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1433 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/print-settings.md b/versioned_docs/version-20-R7/commands-legacy/print-settings.md index 826c2807118985..9dd36bf1c64385 100644 --- a/versioned_docs/version-20-R7/commands-legacy/print-settings.md +++ b/versioned_docs/version-20-R7/commands-legacy/print-settings.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **PRINT SETTINGS** displays a printing dialog box. This command must be called before a series of [Print form](print-form.md) commands or the [OPEN PRINTING JOB](open-printing-job.md) command. @@ -42,4 +39,14 @@ If the user clicks OK in both dialog boxes, the OK system variable is set to 1\. [OPEN PRINTING JOB](open-printing-job.md) [PAGE BREAK](page-break.md) [Print form](print-form.md) -[SET PRINT PREVIEW](set-print-preview.md) \ No newline at end of file +[SET PRINT PREVIEW](set-print-preview.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 106 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/printers-list.md b/versioned_docs/version-20-R7/commands-legacy/printers-list.md index 8351423f02982d..ea14a198a70b22 100644 --- a/versioned_docs/version-20-R7/commands-legacy/printers-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/printers-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **PRINTERS LIST** command fills in the array(s) passed as parameter(s) with the names as well as, optionally, the locations or custom names and models of the available printers for the machine. @@ -46,4 +43,14 @@ The system variable OK is set to 1 if the command has been executed correctly; o #### See also [Get current printer](get-current-printer.md) -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 789 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/printing-page.md b/versioned_docs/version-20-R7/commands-legacy/printing-page.md index 43abaf61f2c590..4099bccbd1e3e2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/printing-page.md +++ b/versioned_docs/version-20-R7/commands-legacy/printing-page.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Printing page** returns the printing page number. It can be used only when you are printing with [PRINT SELECTION](print-selection.md) or the Print menu in the Design environment. @@ -39,4 +36,13 @@ The following example changes the position of the page numbers on a report so th #### See also -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 275 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/process-4d-tags.md b/versioned_docs/version-20-R7/commands-legacy/process-4d-tags.md index de0214a7bcdc32..2609d087f0eb77 100644 --- a/versioned_docs/version-20-R7/commands-legacy/process-4d-tags.md +++ b/versioned_docs/version-20-R7/commands-legacy/process-4d-tags.md @@ -71,4 +71,13 @@ This example generates a text using data of the arrays: #### See also -*4D Transformation Tags* \ No newline at end of file +*4D Transformation Tags* + +#### Properties + +| | | +| --- | --- | +| Command number | 816 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/process-aborted.md b/versioned_docs/version-20-R7/commands-legacy/process-aborted.md index b0bec853569954..517c0f78b1cf61 100644 --- a/versioned_docs/version-20-R7/commands-legacy/process-aborted.md +++ b/versioned_docs/version-20-R7/commands-legacy/process-aborted.md @@ -21,4 +21,13 @@ This status will happen very rarely. Processes are usually stopped before the co #### See also -[On Exit database method](on-exit-database-method.md) \ No newline at end of file +[On Exit database method](on-exit-database-method.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 672 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/process-state.md b/versioned_docs/version-20-R7/commands-legacy/process-state.md index 17125bbed6fb49..7a97a5f50dece8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/process-state.md +++ b/versioned_docs/version-20-R7/commands-legacy/process-state.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Process state** command returns the state of the process whose number you pass in *process*. @@ -61,4 +58,13 @@ The following example puts the name and process reference number for each proces #### See also [Count tasks](count-tasks.md) -[Process info](../commands/process-info.md) \ No newline at end of file +[Process info](../commands/process-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 330 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/push-record.md b/versioned_docs/version-20-R7/commands-legacy/push-record.md index 5b22fcf1686b4c..7a5c6aa83e1290 100644 --- a/versioned_docs/version-20-R7/commands-legacy/push-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/push-record.md @@ -15,7 +15,7 @@ displayed_sidebar: docs #### Description -**PUSH RECORD** pushes the current record of *aTable* (and its subrecords, if any) onto the table’s record stack. **PUSH RECORD** may be executed before a record is saved. +**PUSH RECORD** pushes the current record of *aTable* (and its subrecords, if any) onto the table’s record stack.may be executed before a record is saved. If you push a record that was unlocked, this record stays locked for all the other processes and users until you pop and unload it. @@ -32,4 +32,13 @@ The following example pushes the record for the customer onto the record stack: #### See also [POP RECORD](pop-record.md) -*Using the Record Stack* \ No newline at end of file +*Using the Record Stack* + +#### Properties + +| | | +| --- | --- | +| Command number | 176 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-blob-to-report.md b/versioned_docs/version-20-R7/commands-legacy/qr-blob-to-report.md index 6af5d1a6d75be9..bab91f105d24af 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-blob-to-report.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-blob-to-report.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR BLOB TO REPORT command places the report contained in *blob* in the Quick Report area passed in *area*. @@ -45,4 +42,14 @@ The following statement retrieves the Quick Report stored in Field4 and displays #### See also -[QR REPORT TO BLOB](qr-report-to-blob.md) \ No newline at end of file +[QR REPORT TO BLOB](qr-report-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 771 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-count-columns.md b/versioned_docs/version-20-R7/commands-legacy/qr-count-columns.md index bfcec6741c9885..4a9f93c455e6ba 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-count-columns.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-count-columns.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR Count columns command returns the number of columns present in the Quick Report *area*. @@ -35,4 +32,14 @@ The following code retrieves the column count and inserts a column to the right #### See also [QR DELETE COLUMN](qr-delete-column.md) -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 764 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-delete-column.md b/versioned_docs/version-20-R7/commands-legacy/qr-delete-column.md index acd2c54e20596e..462ffb4e6d85b2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-delete-column.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-delete-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR DELETE COLUMN command deletes the column in *area* whose number was passed in *colNumber*. This command does not apply to cross-table reports. @@ -36,4 +33,14 @@ The following example makes sure the report is a list report and deletes the thi #### See also -[QR INSERT COLUMN](qr-insert-column.md) \ No newline at end of file +[QR INSERT COLUMN](qr-insert-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 749 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md b/versioned_docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md index 24662182f43c24..30e8bee7e8197d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-delete-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR DELETE OFFSCREEN AREA command deletes in memory the Quick Report offscreen *area* whose reference was passed as parameter. @@ -24,4 +21,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 754 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-execute-command.md b/versioned_docs/version-20-R7/commands-legacy/qr-execute-command.md index 9decf211fb8a09..34bd83e88db527 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-execute-command.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-execute-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR EXECUTE COMMAND** command executes the toolbar button command whose reference was passed in *command*. The most common use for this command is to execute a command selected by the user and intercepted in your code via the [QR ON COMMAND](qr-on-command.md) command. @@ -39,4 +36,14 @@ If you pass an invalid *command* number, the error -9852 will be generated. #### See also [QR Get command status](qr-get-command-status.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 791 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-find-column.md b/versioned_docs/version-20-R7/commands-legacy/qr-find-column.md index 9e5b6fabbd673e..916a00069b4cb3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-find-column.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-find-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR Find column command returns the number of the first column whose contents match the *expression* passed in parameter. @@ -49,3 +46,14 @@ followed by:     QR DELETE COLUMN(MyArea;$NumColumn)  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 776 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-area-property.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-area-property.md index c3ca97e68b0225..73ee0211fe5d99 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-area-property.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get area property** command returns 0 if the interface element passed in *property* is not displayed; otherwise, it returns 1. @@ -36,4 +33,14 @@ If you pass an invalid *property* parameter, the error -9852 will be generated. #### See also -[QR SET AREA PROPERTY](qr-set-area-property.md) \ No newline at end of file +[QR SET AREA PROPERTY](qr-set-area-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 795 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-borders.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-borders.md index 1c8360b7369e24..8ff3012610b08e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-borders.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR GET BORDERS** command allows you to retrieve the border style for a border of a given cell. @@ -70,4 +67,14 @@ If you pass an invalid *border* parameter, the error -9854 will be generated. #### See also -[QR SET BORDERS](qr-set-borders.md) \ No newline at end of file +[QR SET BORDERS](qr-set-borders.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 798 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-command-status.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-command-status.md index 141751919a72fa..5de59ad76e5bbd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-command-status.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-command-status.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get command status** command returns 0 if the *command* is disabled or 1 if it is enabled. @@ -38,4 +35,14 @@ If you pass an invalid *command* number, the error -9852 will be generated. #### See also [QR EXECUTE COMMAND](qr-execute-command.md) -[QR ON COMMAND](qr-on-command.md) \ No newline at end of file +[QR ON COMMAND](qr-on-command.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 792 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-destination.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-destination.md index 28f6079689f241..2502f2405e7386 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-destination.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR GET DESTINATION** command retrieves the output *type* of the report for the area whose reference was passed in *area*. @@ -36,4 +33,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR SET DESTINATION](qr-set-destination.md) \ No newline at end of file +[QR SET DESTINATION](qr-set-destination.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 756 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-document-property.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-document-property.md index 92d1e1b53ca81a..f97e58deb4b5a7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-document-property.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get document property** command retrieves the display status for the print dialog box or the unit used for the document that are present in *area*. @@ -36,4 +33,13 @@ If you pass an invalid *property* value, the error -9852 will be generated. #### See also -[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) \ No newline at end of file +[QR SET DOCUMENT PROPERTY](qr-set-document-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 773 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-drop-column.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-drop-column.md index 6d1328e1148f65..5aabf6aa74927e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-drop-column.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-drop-column.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR Get drop column command returns a value depending on where the drop was performed: @@ -28,4 +25,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 747 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md index ab35eff8f0f7f1..3a3192bced1c83 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR GET HEADER AND FOOTER command retrieves the contents and size of the header or footer. @@ -68,4 +65,14 @@ The following code retrieves the values of the header titles as well as the head #### See also -[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) \ No newline at end of file +[QR SET HEADER AND FOOTER](qr-set-header-and-footer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 775 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-html-template.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-html-template.md index 8c38a081cdb06e..bf29a52cd60312 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-html-template.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR Get HTML template command returns the HTML template currently used for the Quick Report *area*. The returned value is a text value and includes all the contents of the HTML template. @@ -27,4 +24,14 @@ If you pass an invalid area number, the error -9850 will be generated. #### See also -[QR SET HTML TEMPLATE](qr-set-html-template.md) \ No newline at end of file +[QR SET HTML TEMPLATE](qr-set-html-template.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 751 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-info-column.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-info-column.md index 280526b9faba76..65489070cb9a17 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-info-column.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-info-column.md @@ -21,9 +21,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description ##### List mode @@ -109,4 +106,14 @@ You can write: [QR Get info row](qr-get-info-row.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 766 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-info-row.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-info-row.md index e13aeb37286f0e..3abb58f1773658 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-info-row.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get info row** command retrieves the display status of the row whose reference was passed in *row*. @@ -41,4 +38,14 @@ If you pass an invalid *row* value, the error -9852 will be generated. [QR GET INFO COLUMN](qr-get-info-column.md) [QR SET INFO COLUMN](qr-set-info-column.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 769 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-report-kind.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-report-kind.md index 50110d8061352e..0e0899f4053b92 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-report-kind.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get report kind** command retrieves the report type for the area whose reference was passed in *area*. @@ -35,4 +32,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR SET REPORT KIND](qr-set-report-kind.md) \ No newline at end of file +[QR SET REPORT KIND](qr-set-report-kind.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 755 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-report-table.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-report-table.md index 53f5b5c30593b4..9adc33a8a90495 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-report-table.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR Get report table command returns the current table number for the report area whose reference was passed in *area*. @@ -25,4 +22,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR SET REPORT TABLE](qr-set-report-table.md) \ No newline at end of file +[QR SET REPORT TABLE](qr-set-report-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 758 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-selection.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-selection.md index cc0ce83a5e9663..2301f7502d2868 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR GET SELECTION command returns the coordinates of the cell that is selected. @@ -40,4 +37,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR SET SELECTION](qr-set-selection.md) \ No newline at end of file +[QR SET SELECTION](qr-set-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 793 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-sorts.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-sorts.md index 054b29d9d760d2..60cdf33a48f717 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-sorts.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR GET SORTS command populates two arrays: @@ -37,4 +34,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR SET SORTS](qr-set-sorts.md) \ No newline at end of file +[QR SET SORTS](qr-set-sorts.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 753 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-text-property.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-text-property.md index 9a7256e6db8a4e..7a7f20fe11da37 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-text-property.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR Get text property** command returns the property value of the text attributes for the cell determined by *colNum* and *RowNum*. @@ -70,4 +67,14 @@ If you pass an invalid *property* number, the error -9854 will be generated. #### See also -[QR SET TEXT PROPERTY](qr-set-text-property.md) \ No newline at end of file +[QR SET TEXT PROPERTY](qr-set-text-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 760 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-totals-data.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-totals-data.md index 27ef084dfc4ce8..5d02d5b502b24e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-totals-data.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-totals-data.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description ##### List Mode @@ -74,4 +71,14 @@ If you pass an invalid *breakNum* number, the error -9853 will be generated. #### See also -[QR SET TOTALS DATA](qr-set-totals-data.md) \ No newline at end of file +[QR SET TOTALS DATA](qr-set-totals-data.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 768 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md b/versioned_docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md index 12f6b0194cf5cf..1b7000aef543a6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-get-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR GET TOTALS SPACING command retrieves a space below a subtotal row. It applies only to the list mode. @@ -38,4 +35,14 @@ If you pass an invalid *subtotal*, the error -9852 will be generated. #### See also -[QR SET TOTALS SPACING](qr-set-totals-spacing.md) \ No newline at end of file +[QR SET TOTALS SPACING](qr-set-totals-spacing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 762 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-insert-column.md b/versioned_docs/version-20-R7/commands-legacy/qr-insert-column.md index 32faa617ce29bb..1d53bf1b6156dc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-insert-column.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-insert-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR INSERT COLUMN command inserts or creates a column at the specified position. Columns located to the right of that position will be shifted accordingly. @@ -40,4 +37,14 @@ The following statement inserts (or creates) a first column in a Quick Report ar #### See also -[QR DELETE COLUMN](qr-delete-column.md) \ No newline at end of file +[QR DELETE COLUMN](qr-delete-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 748 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-move-column.md b/versioned_docs/version-20-R7/commands-legacy/qr-move-column.md index a78fd13025c37a..e89474d4969d77 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-move-column.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-move-column.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR MOVE COLUMN** command moves the column currently found at the *column* position to the *newPos* position. @@ -41,3 +38,13 @@ If you execute: The result is: ![](../assets/en/commands/pict2569472.en.png) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1325 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-new-area.md b/versioned_docs/version-20-R7/commands-legacy/qr-new-area.md index 371cdb3b93db3c..d3559075f5fd02 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-new-area.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-new-area.md @@ -13,13 +13,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR NEW AREA** command creates a new Quick Report area and stores its reference number in the longint variable referenced by the *ptr* pointer. #### See also -[QR New offscreen area](qr-new-offscreen-area.md) \ No newline at end of file +[QR New offscreen area](qr-new-offscreen-area.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1320 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md b/versioned_docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md index 091e3c2b370f84..ed393b5f699534 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-new-offscreen-area.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR New offscreen area command creates a new Quick Report offscreen area and returns its reference. @@ -23,4 +20,13 @@ displayed_sidebar: docs #### See also [QR DELETE OFFSCREEN AREA](qr-delete-offscreen-area.md) -[QR NEW AREA](qr-new-area.md) \ No newline at end of file +[QR NEW AREA](qr-new-area.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 735 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-on-command.md b/versioned_docs/version-20-R7/commands-legacy/qr-on-command.md index ef468787ed9ff6..bac0b46bff9ae8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-on-command.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-on-command.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR ON COMMAND** command executes the 4D method passed in *methodName* when a Quick Report command is invoked by the user, by the selection of a menu command or by a click on a button. @@ -44,4 +41,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. *QR Commands* [QR EXECUTE COMMAND](qr-execute-command.md) -[QR Get command status](qr-get-command-status.md) \ No newline at end of file +[QR Get command status](qr-get-command-status.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 790 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-report-to-blob.md b/versioned_docs/version-20-R7/commands-legacy/qr-report-to-blob.md index c6e33f71fe3390..45ec41b9cafb72 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-report-to-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-report-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR REPORT TO BLOB command places the report whose reference was passed in *area* in a BLOB (variable or field). @@ -33,4 +30,14 @@ The following statement assigns the Quick Report stored in MyArea into a BLOB Fi #### See also -[QR BLOB TO REPORT](qr-blob-to-report.md) \ No newline at end of file +[QR BLOB TO REPORT](qr-blob-to-report.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 770 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-report.md b/versioned_docs/version-20-R7/commands-legacy/qr-report.md index af73cb54f93d64..d3f030709d7fcb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-report.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-report.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **QR REPORT** prints a report for *aTable*, created with the Quick Report editor. This editor allows users to create their own reports. For more information about creating reports with the Quick Report editor, refer to the *Quick reports* section of the 4D *Design Reference* manual. @@ -133,4 +130,14 @@ The myCallbackMeth method converts the report when it is generated: [PRINT LABEL](print-label.md) [PRINT SELECTION](print-selection.md) -[SET ALLOWED METHODS](../commands/set-allowed-methods.md) \ No newline at end of file +[SET ALLOWED METHODS](../commands/set-allowed-methods.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 197 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-run.md b/versioned_docs/version-20-R7/commands-legacy/qr-run.md index 6c9bdc551dd3d5..9fbc36b256435c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-run.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-run.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR RUN** command executes the report *area* whose reference was passed as parameter with the Quick Report current settings, including the output type. You can use the [QR SET DESTINATION](qr-set-destination.md) command to modify the output type. @@ -25,3 +22,14 @@ The report is executed on the table to which the area belongs. When *area* desig If you pass an invalid *area* number, the error -9850 will be generated. **4D Server:** This command can be executed on 4D Server as part of a stored procedure. In this context, make sure that no dialog box appears on the server machine (except for specific requirements). To do this, you need to call the [QR SET DESTINATION](qr-set-destination.md) command with the "\*" parameter. In case of a printer problem (out of paper, printer disconnected, etc.), no error message is generated. + + +#### Properties + +| | | +| --- | --- | +| Command number | 746 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-area-property.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-area-property.md index 670a74bc1c47d2..40bf00a73cd300 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-area-property.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-area-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET AREA PROPERTY** command shows or hides the interface element whose reference is passed in *property*. @@ -35,4 +32,14 @@ If you pass an invalid *property* parameter, the error -9852 will be generated. #### See also -[QR Get area property](qr-get-area-property.md) \ No newline at end of file +[QR Get area property](qr-get-area-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 796 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-borders.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-borders.md index 47734277b40bdd..dde2c3cbdb0a8b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-borders.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-borders.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET BORDERS** command sets the border style for a given cell. @@ -76,4 +73,14 @@ If you pass an invalid line parameter, the error -9855 will be generated. #### See also -[QR GET BORDERS](qr-get-borders.md) \ No newline at end of file +[QR GET BORDERS](qr-get-borders.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 797 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-destination.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-destination.md index bc1e57da39dd10..e63c65dfff0148 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-destination.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-destination.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET DESTINATION** command sets the output *type* of the report for the area whose reference was passed in *area*. @@ -51,4 +48,14 @@ The following code sets the destination as being the text file "Mydoc.txt" and e #### See also -[QR GET DESTINATION](qr-get-destination.md) \ No newline at end of file +[QR GET DESTINATION](qr-get-destination.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 745 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-document-property.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-document-property.md index 63b9031f94705a..bc39a441332f28 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-document-property.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-document-property.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET DOCUMENT PROPERTY command displays the printing dialog or sets the unit used for the document. @@ -36,4 +33,14 @@ If you pass an invalid value in the *property* or *value* parameter, the corresp #### See also -[QR Get document property](qr-get-document-property.md) \ No newline at end of file +[QR Get document property](qr-get-document-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 772 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md index 7736c06bac9298..7594f56dab321c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-header-and-footer.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET HEADER AND FOOTER command sets the contents and size of the header or footer. @@ -57,4 +54,14 @@ The following statement places the title “Center title” in the header for th #### See also -[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) \ No newline at end of file +[QR GET HEADER AND FOOTER](qr-get-header-and-footer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 774 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-html-template.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-html-template.md index 6781979261a7ac..92bd74db87055f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-html-template.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-html-template.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET HTML TEMPLATE** command sets the HTML template currently used for the Quick Report *area*. The template will be used when building the report in HTML format. @@ -70,4 +67,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR Get HTML template](qr-get-html-template.md) \ No newline at end of file +[QR Get HTML template](qr-get-html-template.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 750 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-info-column.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-info-column.md index c1025c8bf45eca..bfaf57a67f7c7b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-info-column.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-info-column.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description ##### List mode @@ -108,4 +105,14 @@ If you pass an invalid *colNum* value, the error -9852 will be generated. [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO ROW](qr-set-info-row.md) \ No newline at end of file +[QR SET INFO ROW](qr-set-info-row.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 765 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-info-row.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-info-row.md index 2c661c3aaf696a..f3fe1779382db3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-info-row.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-info-row.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET INFO ROW** command shows/hides the row whose reference was passed in *row*. @@ -53,4 +50,14 @@ The following statement hides the detail row: [QR GET INFO COLUMN](qr-get-info-column.md) [QR Get info row](qr-get-info-row.md) -[QR SET INFO COLUMN](qr-set-info-column.md) \ No newline at end of file +[QR SET INFO COLUMN](qr-set-info-column.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 763 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-report-kind.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-report-kind.md index eca0df50168790..b0de02b452fadf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-report-kind.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-report-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET REPORT KIND** command sets the report *type* for the area whose reference was passed in *area*. @@ -39,4 +36,14 @@ If you pass an invalid *type* value, the error -9852 will be generated. #### See also -[QR Get report kind](qr-get-report-kind.md) \ No newline at end of file +[QR Get report kind](qr-get-report-kind.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 738 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-report-table.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-report-table.md index bfacce13cac280..03de9670670041 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-report-table.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-report-table.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET REPORT TABLE command sets the current table for the report area whose reference was passed in *area* to the table whose number was passed in *aTable*. @@ -28,4 +25,14 @@ If you pass an invalid *table* value, the error -9852 will be generated. #### See also -[QR Get report table](qr-get-report-table.md) \ No newline at end of file +[QR Get report table](qr-get-report-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 757 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-selection.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-selection.md index 1bb4cd1c8696a0..b9415bb680d6ff 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET SELECTION command highlights a cell, a row, a column or the entire *area* as you would with a mouse click. It also lets you deselect the current selection. @@ -41,4 +38,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR GET SELECTION](qr-get-selection.md) \ No newline at end of file +[QR GET SELECTION](qr-get-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 794 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-sorts.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-sorts.md index dddb72018da2e8..fa8aa3bf6003eb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-sorts.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-sorts.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET SORTS command sets the sort orders for the columns in the report whose reference is passed in *area*. @@ -47,4 +44,14 @@ If you pass an invalid *area* number, the error -9850 will be generated. #### See also -[QR GET SORTS](qr-get-sorts.md) \ No newline at end of file +[QR GET SORTS](qr-get-sorts.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 752 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-text-property.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-text-property.md index d60839330ba986..ea73554185e240 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-text-property.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-text-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **QR SET TEXT PROPERTY** command sets the text attributes for the cell determined by *colNum* and *rowNum*. @@ -86,4 +83,14 @@ This method defines several attributes of the first column’s title: #### See also -[QR Get text property](qr-get-text-property.md) \ No newline at end of file +[QR Get text property](qr-get-text-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 759 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-totals-data.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-totals-data.md index 1f07220bd8d1b0..982c2de5d54dcb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-totals-data.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-totals-data.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Note:** This command cannot create a subtotal. @@ -97,4 +94,14 @@ If you pass an invalid *breakNum* number, the error -9853 will be generated. #### See also -[QR GET TOTALS DATA](qr-get-totals-data.md) \ No newline at end of file +[QR GET TOTALS DATA](qr-get-totals-data.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 767 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md b/versioned_docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md index be9820bb9cce2d..c0797aa4f24bf7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md +++ b/versioned_docs/version-20-R7/commands-legacy/qr-set-totals-spacing.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QR SET TOTALS SPACING command sets a space below a subtotal row. It applies only to the list mode. @@ -39,4 +36,14 @@ If you pass an invalid *subtotal*, the error -9852 will be generated. #### See also -[QR GET TOTALS SPACING](qr-get-totals-spacing.md) \ No newline at end of file +[QR GET TOTALS SPACING](qr-get-totals-spacing.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 761 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/query-by-attribute.md b/versioned_docs/version-20-R7/commands-legacy/query-by-attribute.md index dbe1060e0a47c4..ff75e88aa7353f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/query-by-attribute.md +++ b/versioned_docs/version-20-R7/commands-legacy/query-by-attribute.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -**QUERY BY ATTRIBUTE** looks for records matching the query string defined using the *objectField*, *attributePath*, *queryOp* and *value* parameters, and returns a selection of records for *aTable*. - -**QUERY BY ATTRIBUTE** changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. If the *aTable* parameter is omitted, the command applies to the default table. If no default table has been set, an error occurs. +**QUERY BY ATTRIBUTE** looks for records matching the query string defined using the *objectField*, *attributePath*, *queryOp* and *value* parameters, and returns a selection of records for *aTable*.changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. If the *aTable* parameter is omitted, the command applies to the default table. If no default table has been set, an error occurs. The optional *conjOp* parameter is used to join **QUERY BY ATTRIBUTE** calls when defining multiple queries. The conjunction operators available are the same as the ones for the [QUERY](query.md) command: @@ -407,4 +405,16 @@ The OK variable is set to 0 if: [QUERY SELECTION BY ATTRIBUTE](query-selection-by-attribute.md) -*Structure of 4D language objects* \ No newline at end of file +*Structure of 4D language objects* + +#### Properties + +| | | +| --- | --- | +| Command number | 1331 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/query-by-example.md b/versioned_docs/version-20-R7/commands-legacy/query-by-example.md index 75bacb4e89ede3..597a7738442d01 100644 --- a/versioned_docs/version-20-R7/commands-legacy/query-by-example.md +++ b/versioned_docs/version-20-R7/commands-legacy/query-by-example.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **QUERY BY EXAMPLE** performs the same action as the Query by Example menu command in the Design environment. It displays the current input form as a query window. **QUERY BY EXAMPLE** queries *aTable* for the data that the user enters into the query window. The form must contain the fields that you want the user to be able to query. The query is optimized; indexed fields are automatically used to optimize the query. @@ -42,4 +39,17 @@ If the user clicks the Accept button or presses the Enter key, the OK system var #### See also [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 292 | +| Thread safe | ✗ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/query-by-formula.md b/versioned_docs/version-20-R7/commands-legacy/query-by-formula.md index 33fca53eef499a..48f63655b07e22 100644 --- a/versioned_docs/version-20-R7/commands-legacy/query-by-formula.md +++ b/versioned_docs/version-20-R7/commands-legacy/query-by-formula.md @@ -77,4 +77,15 @@ This example uses a join to query all the lines of "ACME" client invoices even t [QUERY](query.md) [QUERY BY SQL](query-by-sql.md) [QUERY SELECTION](query-selection.md) -[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) \ No newline at end of file +[QUERY SELECTION BY FORMULA](query-selection-by-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 48 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/query-by-sql.md b/versioned_docs/version-20-R7/commands-legacy/query-by-sql.md index cd62a2ee2792c2..e9f2d6d9805bbc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/query-by-sql.md +++ b/versioned_docs/version-20-R7/commands-legacy/query-by-sql.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The QUERY BY SQL command can be used to take advantage of the SQL kernel integrated into 4D. It can execute a simple SELECT query that can be written as follows: @@ -158,4 +155,16 @@ If the format of the search condition is correct, the system variable OK is set #### See also -[QUERY BY FORMULA](query-by-formula.md) \ No newline at end of file +[QUERY BY FORMULA](query-by-formula.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 942 | +| Thread safe | ✗ | +| Modifies variables | OK, error | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/query-selection-by-attribute.md b/versioned_docs/version-20-R7/commands-legacy/query-selection-by-attribute.md index 467eb6fbcb38e7..01e641ad882bc7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/query-selection-by-attribute.md +++ b/versioned_docs/version-20-R7/commands-legacy/query-selection-by-attribute.md @@ -44,4 +44,16 @@ You want to find people with an age between 20 and 30, among the records that we #### See also -[QUERY BY ATTRIBUTE](query-by-attribute.md) \ No newline at end of file +[QUERY BY ATTRIBUTE](query-by-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1424 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/query-selection-by-formula.md b/versioned_docs/version-20-R7/commands-legacy/query-selection-by-formula.md index ab9a855522ba33..d44a6a31b04463 100644 --- a/versioned_docs/version-20-R7/commands-legacy/query-selection-by-formula.md +++ b/versioned_docs/version-20-R7/commands-legacy/query-selection-by-formula.md @@ -16,7 +16,7 @@ displayed_sidebar: docs #### Description -**QUERY SELECTION BY FORMULA** looks for records in *aTable*. **QUERY SELECTION BY FORMULA** changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. +**QUERY SELECTION BY FORMULA** looks for records in *aTable*.changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. **QUERY SELECTION BY FORMULA** performs the same actions as [QUERY BY FORMULA](query-by-formula.md). The difference between the two commands is the scope of the query: @@ -29,4 +29,15 @@ For more information, see the description of the [QUERY BY FORMULA](query-by-for [QUERY](query.md) [QUERY BY FORMULA](query-by-formula.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 207 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/query-selection-with-array.md b/versioned_docs/version-20-R7/commands-legacy/query-selection-with-array.md index e2723106c76f10..4ab64af1a0865f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/query-selection-with-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/query-selection-with-array.md @@ -27,4 +27,14 @@ For more information, please refer to the description of the [QUERY WITH ARRAY]( #### See also -[QUERY WITH ARRAY](query-with-array.md) \ No newline at end of file +[QUERY WITH ARRAY](query-with-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1050 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/query-selection.md b/versioned_docs/version-20-R7/commands-legacy/query-selection.md index 89cbae5de20e7c..a4f389b7e660fb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/query-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/query-selection.md @@ -42,4 +42,16 @@ You will find all companies located in New York City, with a Stock Exchange acti #### See also -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 341 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/query-with-array.md b/versioned_docs/version-20-R7/commands-legacy/query-with-array.md index 9d4fa079f77d4d..66efd11ee58929 100644 --- a/versioned_docs/version-20-R7/commands-legacy/query-with-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/query-with-array.md @@ -38,4 +38,14 @@ The following example allows you to retrieve the records of both French and Amer #### See also -[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) \ No newline at end of file +[QUERY SELECTION WITH ARRAY](query-selection-with-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 644 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/query.md b/versioned_docs/version-20-R7/commands-legacy/query.md index 6cda9560989664..0d1ba323372a99 100644 --- a/versioned_docs/version-20-R7/commands-legacy/query.md +++ b/versioned_docs/version-20-R7/commands-legacy/query.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -**QUERY** looks for records matching the criteria specified in *queryArgument* and returns a selection of records for *aTable*. **QUERY** changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. +**QUERY** looks for records matching the criteria specified in *queryArgument* and returns a selection of records for *aTable*.changes the current selection of *aTable* for the current process and makes the first record of the new selection the current record. If the *aTable* parameter is omitted, the command applies to the default table. If no default table has been set, an error occurs. @@ -308,4 +308,16 @@ The OK variable is set to 0 if: #### See also -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 277 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/quit-4d.md b/versioned_docs/version-20-R7/commands-legacy/quit-4d.md index 8a85d4c8c0566d..858f2712d60fd9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/quit-4d.md +++ b/versioned_docs/version-20-R7/commands-legacy/quit-4d.md @@ -66,4 +66,13 @@ The project method listed here is associated with the Quit or Exit menu item in #### See also -[On Exit database method](on-exit-database-method.md) \ No newline at end of file +[On Exit database method](on-exit-database-method.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 291 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/random.md b/versioned_docs/version-20-R7/commands-legacy/random.md index 587a524b9323ad..05559de13a6325 100644 --- a/versioned_docs/version-20-R7/commands-legacy/random.md +++ b/versioned_docs/version-20-R7/commands-legacy/random.md @@ -32,3 +32,13 @@ The following example assigns a random integer between 10 and 30 to the *vlResul ```4d  vlResult:=(Random%21)+10 ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 100 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/read-only-state.md b/versioned_docs/version-20-R7/commands-legacy/read-only-state.md index 9fcf605a2da612..44fade3313ad77 100644 --- a/versioned_docs/version-20-R7/commands-legacy/read-only-state.md +++ b/versioned_docs/version-20-R7/commands-legacy/read-only-state.md @@ -35,4 +35,13 @@ The following example tests the state of an \[Invoice\] table. If the state of t [READ ONLY](read-only.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 362 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/read-only.md b/versioned_docs/version-20-R7/commands-legacy/read-only.md index 4450fbe4c6fafe..4bd47290942f28 100644 --- a/versioned_docs/version-20-R7/commands-legacy/read-only.md +++ b/versioned_docs/version-20-R7/commands-legacy/read-only.md @@ -25,4 +25,13 @@ Use READ ONLY when you do not need to modify the record or records. [Read only state](read-only-state.md) [READ WRITE](read-write.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 145 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/read-picture-file.md b/versioned_docs/version-20-R7/commands-legacy/read-picture-file.md index 943191aff50ccf..44b05f835ef841 100644 --- a/versioned_docs/version-20-R7/commands-legacy/read-picture-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/read-picture-file.md @@ -39,4 +39,14 @@ If the command is executed successfully, the system variable Document contains t [BLOB TO PICTURE](blob-to-picture.md) [PICTURE CODEC LIST](picture-codec-list.md) *Pictures* -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 678 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/read-write.md b/versioned_docs/version-20-R7/commands-legacy/read-write.md index 7c127a796e867b..a95941101ff6db 100644 --- a/versioned_docs/version-20-R7/commands-legacy/read-write.md +++ b/versioned_docs/version-20-R7/commands-legacy/read-write.md @@ -29,4 +29,13 @@ Use READ WRITE when you must modify a record and save the changes. Also use READ [READ ONLY](read-only.md) [Read only state](read-only-state.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 146 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/real-to-blob.md b/versioned_docs/version-20-R7/commands-legacy/real-to-blob.md index f4ff70eee14efd..42701328454f17 100644 --- a/versioned_docs/version-20-R7/commands-legacy/real-to-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/real-to-blob.md @@ -131,4 +131,13 @@ After executing this code: [BLOB to text](blob-to-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[TEXT TO BLOB](text-to-blob.md) \ No newline at end of file +[TEXT TO BLOB](text-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 552 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/receive-buffer.md b/versioned_docs/version-20-R7/commands-legacy/receive-buffer.md index 251a7d26fb80cd..0fd2de034ef99f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/receive-buffer.md +++ b/versioned_docs/version-20-R7/commands-legacy/receive-buffer.md @@ -62,4 +62,14 @@ Note that access to the interprocess *◊vtBuffer* variable should be protected [RECEIVE PACKET](receive-packet.md) [Semaphore](semaphore.md) [SET CHANNEL](set-channel.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 172 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/receive-packet.md b/versioned_docs/version-20-R7/commands-legacy/receive-packet.md index c8b1d56ca2a3f9..976d00de7009f2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/receive-packet.md +++ b/versioned_docs/version-20-R7/commands-legacy/receive-packet.md @@ -112,4 +112,14 @@ After a call to **RECEIVE PACKET**, the OK system variable is set to 1 if the pa [SEND PACKET](send-packet.md) [SET DOCUMENT POSITION](set-document-position.md) [SET TIMEOUT](set-timeout.md) -[USE CHARACTER SET](use-character-set.md) \ No newline at end of file +[USE CHARACTER SET](use-character-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 104 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/receive-record.md b/versioned_docs/version-20-R7/commands-legacy/receive-record.md index a975cec6330779..7ff05bb3b2a802 100644 --- a/versioned_docs/version-20-R7/commands-legacy/receive-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/receive-record.md @@ -150,4 +150,14 @@ The OK system variable is set to 1 if the record is received. Otherwise, the OK [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 79 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/receive-variable.md b/versioned_docs/version-20-R7/commands-legacy/receive-variable.md index 72bf70bcbab18f..a52fc4d633281e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/receive-variable.md +++ b/versioned_docs/version-20-R7/commands-legacy/receive-variable.md @@ -38,4 +38,14 @@ The OK system variable is set to 1 if the variable is received. Otherwise, the O [ON ERR CALL](on-err-call.md) [RECEIVE RECORD](receive-record.md) [SEND RECORD](send-record.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 81 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/record-number.md b/versioned_docs/version-20-R7/commands-legacy/record-number.md index 31d17ef4cfaa7a..156362aa4463c2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/record-number.md +++ b/versioned_docs/version-20-R7/commands-legacy/record-number.md @@ -42,4 +42,13 @@ The following example saves the current record number and then searches for any [GOTO RECORD](goto-record.md) [Is new record](is-new-record.md) [Selected record number](selected-record-number.md) -[Sequence number](sequence-number.md) \ No newline at end of file +[Sequence number](sequence-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 243 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/records-in-selection.md b/versioned_docs/version-20-R7/commands-legacy/records-in-selection.md index 5d47ef140c5910..2da83a05aa5ff8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/records-in-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/records-in-selection.md @@ -32,4 +32,13 @@ The following example shows a loop technique commonly used to move through all t #### See also -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 76 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/records-in-set.md b/versioned_docs/version-20-R7/commands-legacy/records-in-set.md index 81d1ab9f004f93..e4d82e680d5d84 100644 --- a/versioned_docs/version-20-R7/commands-legacy/records-in-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/records-in-set.md @@ -32,4 +32,13 @@ The following example displays an alert telling what percentage of the customers #### See also [Records in selection](records-in-selection.md) -[Records in table](records-in-table.md) \ No newline at end of file +[Records in table](records-in-table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 195 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/records-in-table.md b/versioned_docs/version-20-R7/commands-legacy/records-in-table.md index bdd934c9e3b9f8..1348b65067249b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/records-in-table.md +++ b/versioned_docs/version-20-R7/commands-legacy/records-in-table.md @@ -28,4 +28,13 @@ The following example displays an alert that shows the number of records in a ta #### See also -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 83 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/redraw-window.md b/versioned_docs/version-20-R7/commands-legacy/redraw-window.md index 330fffc02a9e31..82b8a21a991ce9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/redraw-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/redraw-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The REDRAW WINDOW command provokes a graphical update of the window whose reference number you pass in *window*. @@ -26,4 +23,13 @@ If you omit the *window* parameter, REDRAW WINDOW applies to the frontmost windo #### See also -[ERASE WINDOW](erase-window.md) \ No newline at end of file +[ERASE WINDOW](erase-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 456 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/redraw.md b/versioned_docs/version-20-R7/commands-legacy/redraw.md index 6e0684c77cfe8d..ff5067c0cf475e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/redraw.md +++ b/versioned_docs/version-20-R7/commands-legacy/redraw.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description When you use a method to change the value of a field displayed in a subform, you must execute REDRAW to ensure that the form is updated. @@ -24,4 +21,13 @@ In the context of list boxes in selection mode, when the REDRAW statement is app #### See also -[SET TIMER](set-timer.md) \ No newline at end of file +[SET TIMER](set-timer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 174 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/reduce-restore-window.md b/versioned_docs/version-20-R7/commands-legacy/reduce-restore-window.md index aa1f2bc767b011..b7e15016898c91 100644 --- a/versioned_docs/version-20-R7/commands-legacy/reduce-restore-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/reduce-restore-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **REDUCE RESTORE WINDOW** command reduces/expands the window whose reference number was passed in *window* to/from the taskbar on Windows or the dock on macOS. @@ -31,4 +28,13 @@ The command toggles the window state: [Is window reduced](is-window-reduced.md) [MAXIMIZE WINDOW](maximize-window.md) -[MINIMIZE WINDOW](minimize-window.md) \ No newline at end of file +[MINIMIZE WINDOW](minimize-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1829 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/reduce-selection.md b/versioned_docs/version-20-R7/commands-legacy/reduce-selection.md index da7e14680f30c0..ffc3b51d726640 100644 --- a/versioned_docs/version-20-R7/commands-legacy/reduce-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/reduce-selection.md @@ -56,4 +56,15 @@ The following example first finds the correct statistics for a worldwide contest [ORDER BY](order-by.md) [QUERY](query.md) [SCAN INDEX](scan-index.md) -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 351 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/refresh-license.md b/versioned_docs/version-20-R7/commands-legacy/refresh-license.md index d245892bb28a0a..fc583319d214b5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/refresh-license.md +++ b/versioned_docs/version-20-R7/commands-legacy/refresh-license.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Refresh license** command updates the current 4D Server license. It connects you to the 4D customer database and automatically activates any new or updated licenses (*e.g.*, additional purchased clients) related to the current license. @@ -47,3 +44,13 @@ You want to update your license and receive a message when it's completed:     ALERT($res.statusText)  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1336 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/regenerate-missing-table.md b/versioned_docs/version-20-R7/commands-legacy/regenerate-missing-table.md index ead57631d68dbb..7409d439adc3cc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/regenerate-missing-table.md +++ b/versioned_docs/version-20-R7/commands-legacy/regenerate-missing-table.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **REGENERATE MISSING TABLE** command rebuilds the missing table whose name is passed in the *tableName* parameter. When a missing table is rebuilt, it becomes visible in the Structure editor and its data can once again be accessed. @@ -61,4 +58,13 @@ This method regenerates all the missing tables that may be present in the databa #### See also -[GET MISSING TABLE NAMES](get-missing-table-names.md) \ No newline at end of file +[GET MISSING TABLE NAMES](get-missing-table-names.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1126 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/register-client.md b/versioned_docs/version-20-R7/commands-legacy/register-client.md index 19a95a45959a15..ed822467183cfe 100644 --- a/versioned_docs/version-20-R7/commands-legacy/register-client.md +++ b/versioned_docs/version-20-R7/commands-legacy/register-client.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **REGISTER CLIENT** command “registers” a 4D client station with the name specified in *clientName* on 4D Server, so as to allow other clients or eventually 4D Server (by using stored methods) to execute methods on it by using the [EXECUTE ON CLIENT](execute-on-client.md) command. Once it is registered, a 4D client can then execute one or more methods for other clients. @@ -115,4 +112,14 @@ If the 4D client is correctly registered, the OK system variable is equal to 1\. [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[UNREGISTER CLIENT](unregister-client.md) \ No newline at end of file +[UNREGISTER CLIENT](unregister-client.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 648 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/register-data-key.md b/versioned_docs/version-20-R7/commands-legacy/register-data-key.md index 6b5c3812f2aed4..94a4ef38a333cc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/register-data-key.md +++ b/versioned_docs/version-20-R7/commands-legacy/register-data-key.md @@ -47,4 +47,13 @@ In the first parameter, pass the *curPassPhrase* or *curDataKey* that defines th #### See also [4D Blog - New 4D commands to work with encrypted data](https://blog.4d.com/new-4d-commands-to-work-with-encrypted-data/) -[New data key](new-data-key.md) \ No newline at end of file +[New data key](new-data-key.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1638 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/reject-new-remote-connections.md b/versioned_docs/version-20-R7/commands-legacy/reject-new-remote-connections.md index 53c80e736de6f3..4037171279b295 100644 --- a/versioned_docs/version-20-R7/commands-legacy/reject-new-remote-connections.md +++ b/versioned_docs/version-20-R7/commands-legacy/reject-new-remote-connections.md @@ -38,4 +38,13 @@ You want to reject or accept new client connections: [DROP REMOTE USER](drop-remote-user.md) [Application info](application-info.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1635 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/reject.md b/versioned_docs/version-20-R7/commands-legacy/reject.md index 8f9a19cfc47557..d006f1372753e0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/reject.md +++ b/versioned_docs/version-20-R7/commands-legacy/reject.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **REJECT** has two forms. The first form has no parameters. It rejects the entire data entry and forces the user to stay in the form. The second form rejects only *aField* and forces the user to stay in the field. @@ -64,4 +61,13 @@ The following example is part of an object method for an *\[Employees\]Salary* f [ACCEPT](accept.md) [CANCEL](cancel.md) -[GOTO OBJECT](goto-object.md) \ No newline at end of file +[GOTO OBJECT](goto-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 38 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/relate-many-selection.md b/versioned_docs/version-20-R7/commands-legacy/relate-many-selection.md index 16bf32e250e7ec..9289074a3f19ac 100644 --- a/versioned_docs/version-20-R7/commands-legacy/relate-many-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/relate-many-selection.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -The RELATE MANY SELECTION command generates a selection of records in the Many table, based on a selection of records in the One table, and loads the first record of the Many table as the current record. - -**Note:** RELATE MANY SELECTION changes the current record for the One table. +The RELATE MANY SELECTION command generates a selection of records in the Many table, based on a selection of records in the One table, and loads the first record of the Many table as the current record.RELATE MANY SELECTION changes the current record for the One table. #### Example @@ -34,4 +32,15 @@ This example selects all invoices made to the customers whose credit is greater [QUERY](query.md) [RELATE ONE](relate-one.md) -[RELATE ONE SELECTION](relate-one-selection.md) \ No newline at end of file +[RELATE ONE SELECTION](relate-one-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 340 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/relate-many.md b/versioned_docs/version-20-R7/commands-legacy/relate-many.md index 5088ffd252ea30..22fe27df91c691 100644 --- a/versioned_docs/version-20-R7/commands-legacy/relate-many.md +++ b/versioned_docs/version-20-R7/commands-legacy/relate-many.md @@ -63,4 +63,14 @@ Note that the RELATE MANY command is needed, even though the relations are autom #### See also [OLD RELATED MANY](old-related-many.md) -[RELATE ONE](relate-one.md) \ No newline at end of file +[RELATE ONE](relate-one.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 262 | +| Thread safe | ✓ | +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/relate-one-selection.md b/versioned_docs/version-20-R7/commands-legacy/relate-one-selection.md index 1544206f971f5c..036ab09dcd4b75 100644 --- a/versioned_docs/version-20-R7/commands-legacy/relate-one-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/relate-one-selection.md @@ -56,4 +56,15 @@ The following technique uses **RELATE ONE SELECTION** to accomplish the same res [QUERY](query.md) [RELATE MANY SELECTION](relate-many-selection.md) [RELATE ONE](relate-one.md) -*Sets* \ No newline at end of file +*Sets* + +#### Properties + +| | | +| --- | --- | +| Command number | 349 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/relate-one.md b/versioned_docs/version-20-R7/commands-legacy/relate-one.md index cf58e04f68e910..b8a94813580598 100644 --- a/versioned_docs/version-20-R7/commands-legacy/relate-one.md +++ b/versioned_docs/version-20-R7/commands-legacy/relate-one.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **RELATE ONE** has two forms. @@ -90,4 +87,16 @@ If the command has been executed correctly and if the related records have been #### See also [OLD RELATED ONE](old-related-one.md) -[RELATE MANY](relate-many.md) \ No newline at end of file +[RELATE MANY](relate-many.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 42 | +| Thread safe | ✗ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/release-menu.md b/versioned_docs/version-20-R7/commands-legacy/release-menu.md index 950c03717d553c..a29c2eb19898c1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/release-menu.md +++ b/versioned_docs/version-20-R7/commands-legacy/release-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **RELEASE MENU** command removes the menu whose ID is passed in *menu* from memory. This menu must have been created by the menu [Create menu](create-menu.md) command. The following rule applies: for each [Create menu](create-menu.md) there must be a corresponding [RELEASE MENU](release-menu.md). @@ -56,4 +53,13 @@ This example shows different ways to use this command: #### See also -[Create menu](create-menu.md) \ No newline at end of file +[Create menu](create-menu.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 978 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/reload-external-data.md b/versioned_docs/version-20-R7/commands-legacy/reload-external-data.md index a0e4f8ee8c6792..a4081164e405d9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/reload-external-data.md +++ b/versioned_docs/version-20-R7/commands-legacy/reload-external-data.md @@ -25,4 +25,13 @@ You then need to reload the data using the **RELOAD EXTERNAL DATA** command to u #### See also -[SET EXTERNAL DATA PATH](set-external-data-path.md) \ No newline at end of file +[SET EXTERNAL DATA PATH](set-external-data-path.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1135 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/reload-project.md b/versioned_docs/version-20-R7/commands-legacy/reload-project.md index 84635904ac88bc..fa140f941c8d5d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/reload-project.md +++ b/versioned_docs/version-20-R7/commands-legacy/reload-project.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **RELOAD PROJECT** command reloads the source file definitions (methods, forms, etc.) from the disk for the running project in the current 4D environment. It can only be used with 4D projects executed in **interpreted mode**. The command execution is asynchronous. @@ -36,4 +33,13 @@ When the command is called from: #### See also -*Developing a project* \ No newline at end of file +*Developing a project* + +#### Properties + +| | | +| --- | --- | +| Command number | 1739 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/remove-from-set.md b/versioned_docs/version-20-R7/commands-legacy/remove-from-set.md index 95284ddf03017c..87a6b281ec58ff 100644 --- a/versioned_docs/version-20-R7/commands-legacy/remove-from-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/remove-from-set.md @@ -20,4 +20,14 @@ displayed_sidebar: docs #### See also -[ADD TO SET](add-to-set.md) \ No newline at end of file +[ADD TO SET](add-to-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 561 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/remove-picture-from-library.md b/versioned_docs/version-20-R7/commands-legacy/remove-picture-from-library.md index 65fb3d5453aa3f..434fa4888a59d4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/remove-picture-from-library.md +++ b/versioned_docs/version-20-R7/commands-legacy/remove-picture-from-library.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The REMOVE PICTURE FROM LIBRARY command removes from the Picture Library the picture whose reference number is passed in *picRef* or whose name is passed in *picName*. @@ -51,4 +48,14 @@ The following example deletes from the Picture Library any pictures whose names [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[SET PICTURE TO LIBRARY](set-picture-to-library.md) \ No newline at end of file +[SET PICTURE TO LIBRARY](set-picture-to-library.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 567 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/replace-string.md b/versioned_docs/version-20-R7/commands-legacy/replace-string.md index 772b1c947a6b4b..1519e7b4ab3d6f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/replace-string.md +++ b/versioned_docs/version-20-R7/commands-legacy/replace-string.md @@ -69,4 +69,13 @@ The following example illustrates the use of the \* parameter in the case of a d [Change string](change-string.md) [Delete string](delete-string.md) -[Insert string](insert-string.md) \ No newline at end of file +[Insert string](insert-string.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 233 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/request.md b/versioned_docs/version-20-R7/commands-legacy/request.md index dae7e0b0a8f77a..ed4c1ec3982591 100644 --- a/versioned_docs/version-20-R7/commands-legacy/request.md +++ b/versioned_docs/version-20-R7/commands-legacy/request.md @@ -77,4 +77,14 @@ will display the request dialog box (on Windows) shown here: #### See also [ALERT](alert.md) -[CONFIRM](confirm.md) \ No newline at end of file +[CONFIRM](confirm.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 163 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/resize-form-window.md b/versioned_docs/version-20-R7/commands-legacy/resize-form-window.md index cda3c748a19856..8798e6fe57d76a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/resize-form-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/resize-form-window.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **RESIZE FORM WINDOW** command lets you change the size of the current form window. @@ -47,4 +44,13 @@ After execution of this line: [FORM GET PROPERTIES](form-get-properties.md) [FORM SET SIZE](form-set-size.md) -[SET WINDOW RECT](set-window-rect.md) \ No newline at end of file +[SET WINDOW RECT](set-window-rect.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 890 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/resolve-alias.md b/versioned_docs/version-20-R7/commands-legacy/resolve-alias.md index 6c08bf860af374..e0c9aad5c9dc1b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/resolve-alias.md +++ b/versioned_docs/version-20-R7/commands-legacy/resolve-alias.md @@ -30,4 +30,14 @@ If *aliasPath* does specify an alias/shortcut, the OK system variable is set to #### See also -[CREATE ALIAS](create-alias.md) \ No newline at end of file +[CREATE ALIAS](create-alias.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 695 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/resolve-pointer.md b/versioned_docs/version-20-R7/commands-legacy/resolve-pointer.md index 58d350c7180f93..59a7673f8c3b53 100644 --- a/versioned_docs/version-20-R7/commands-legacy/resolve-pointer.md +++ b/versioned_docs/version-20-R7/commands-legacy/resolve-pointer.md @@ -107,4 +107,13 @@ Here is an example of a 2D array pointer: [Get pointer](get-pointer.md) [Is a variable](is-a-variable.md) [Is nil pointer](is-nil-pointer.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 394 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/resource-list.md b/versioned_docs/version-20-R7/commands-legacy/resource-list.md index e3e69220cca609..022992526340f0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/resource-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/resource-list.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **RESOURCE LIST** command populates the arrays *resIDs* and *resNames* with the resource IDs and names of the resources whose type is passed in *resType*. @@ -71,4 +68,13 @@ The following example copies the picture resources present in all currently open #### See also -[RESOURCE TYPE LIST](resource-type-list.md) \ No newline at end of file +[RESOURCE TYPE LIST](resource-type-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 500 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/resource-type-list.md b/versioned_docs/version-20-R7/commands-legacy/resource-type-list.md index 370e987e48bf6c..88c53b0d5ed3c0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/resource-type-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/resource-type-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The RESOURCE TYPE LIST command populates the array *resTypes* with the resource types of the resources present in the resource files currently open. @@ -82,4 +79,13 @@ Once this project method is implemented in a database, you can write: #### See also -[RESOURCE LIST](resource-list.md) \ No newline at end of file +[RESOURCE LIST](resource-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 499 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/restart-4d.md b/versioned_docs/version-20-R7/commands-legacy/restart-4d.md index 7dd8026c9e3593..28fe6746ea0c30 100644 --- a/versioned_docs/version-20-R7/commands-legacy/restart-4d.md +++ b/versioned_docs/version-20-R7/commands-legacy/restart-4d.md @@ -33,4 +33,14 @@ If the command is executed correctly, the OK system variable is set to 1; otherw #### See also [Get last update log path](get-last-update-log-path.md) -[SET UPDATE FOLDER](set-update-folder.md) \ No newline at end of file +[SET UPDATE FOLDER](set-update-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1292 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/restore-info.md b/versioned_docs/version-20-R7/commands-legacy/restore-info.md index c4d611bebbf978..56891c90e80fc9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/restore-info.md +++ b/versioned_docs/version-20-R7/commands-legacy/restore-info.md @@ -35,4 +35,13 @@ The type and content of the *info1* and *info2* parameters depend on the value o #### See also -[RESTORE](restore.md) \ No newline at end of file +[RESTORE](restore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 889 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/restore.md b/versioned_docs/version-20-R7/commands-legacy/restore.md index e4cd2ad2f09663..7b546e303dfbfb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/restore.md +++ b/versioned_docs/version-20-R7/commands-legacy/restore.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The RESTORE command can be used to restore the file(s) included in a 4D archive. This command is useful as part of custom interfaces for managing backups. @@ -35,4 +32,14 @@ The RESTORE command modifies the value of the *OK* and *Document* variables: if #### See also [BACKUP](backup.md) -[RESTORE INFO](restore-info.md) \ No newline at end of file +[RESTORE INFO](restore-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 918 | +| Thread safe | ✗ | +| Modifies variables | OK, Document, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/resume-indexes.md b/versioned_docs/version-20-R7/commands-legacy/resume-indexes.md index 0ee2ac39ecfc1b..b68f9cab70aa6c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/resume-indexes.md +++ b/versioned_docs/version-20-R7/commands-legacy/resume-indexes.md @@ -26,4 +26,13 @@ The **RESUME INDEXES** command can only be called from 4D Server or a local 4D. #### See also [CREATE INDEX](create-index.md) -[PAUSE INDEXES](pause-indexes.md) \ No newline at end of file +[PAUSE INDEXES](pause-indexes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1294 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/resume-process.md b/versioned_docs/version-20-R7/commands-legacy/resume-process.md index 8f25282a180f5b..f743448d546e6c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/resume-process.md +++ b/versioned_docs/version-20-R7/commands-legacy/resume-process.md @@ -24,4 +24,14 @@ If *process* has been delayed before, see the [PAUSE PROCESS](pause-process.md) #### See also [DELAY PROCESS](delay-process.md) -[PAUSE PROCESS](pause-process.md) \ No newline at end of file +[PAUSE PROCESS](pause-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 320 | +| Thread safe | ✓ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/resume-transaction.md b/versioned_docs/version-20-R7/commands-legacy/resume-transaction.md index 5e19581042a3d6..97b1fcb6e50fd8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/resume-transaction.md +++ b/versioned_docs/version-20-R7/commands-legacy/resume-transaction.md @@ -22,4 +22,13 @@ For more information, please refer to *Suspending transactions*. [Active transaction](active-transaction.md) [SUSPEND TRANSACTION](suspend-transaction.md) -*Suspending transactions* \ No newline at end of file +*Suspending transactions* + +#### Properties + +| | | +| --- | --- | +| Command number | 1386 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/right-click.md b/versioned_docs/version-20-R7/commands-legacy/right-click.md index 0eb2e19c0b4e99..4ab825c4f017b4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/right-click.md +++ b/versioned_docs/version-20-R7/commands-legacy/right-click.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Right click command returns True if the right button of the mouse has been clicked. @@ -25,4 +22,13 @@ This command should be used only in the context of the On Clicked form event. It #### See also [Contextual click](contextual-click.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 712 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/round.md b/versioned_docs/version-20-R7/commands-legacy/round.md index 21ee64bb3103bb..d3374259c0d5bd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/round.md +++ b/versioned_docs/version-20-R7/commands-legacy/round.md @@ -36,4 +36,13 @@ The following example illustrates how Round works with different arguments. Each #### See also -[Trunc](trunc.md) \ No newline at end of file +[Trunc](trunc.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 94 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/save-list.md b/versioned_docs/version-20-R7/commands-legacy/save-list.md index 64ac28c0086ed9..e1c2440dddd5e7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/save-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/save-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SAVE LIST command saves the list whose reference number you pass in *list*, within the Design environment List Editor, under the name you pass in *listName*. @@ -27,4 +24,13 @@ If there is already a list with this name, its contents are replaced. #### See also -[Load list](load-list.md) \ No newline at end of file +[Load list](load-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 384 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/save-record.md b/versioned_docs/version-20-R7/commands-legacy/save-record.md index a874dcac10b430..5836cf2df48989 100644 --- a/versioned_docs/version-20-R7/commands-legacy/save-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/save-record.md @@ -49,4 +49,13 @@ The following example is part of a method that reads records from a document. Th [CREATE RECORD](create-record.md) [Locked](locked.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 53 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/save-related-one.md b/versioned_docs/version-20-R7/commands-legacy/save-related-one.md index f8dda6f995be35..e6066c44070f4c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/save-related-one.md +++ b/versioned_docs/version-20-R7/commands-legacy/save-related-one.md @@ -24,4 +24,13 @@ displayed_sidebar: docs [CREATE RELATED ONE](create-related-one.md) [Locked](locked.md) [RELATE ONE](relate-one.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 43 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/save-set.md b/versioned_docs/version-20-R7/commands-legacy/save-set.md index d8ae3e3b0d976c..07662136e3b8a3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/save-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/save-set.md @@ -40,4 +40,14 @@ If the user clicks Cancel in the Save File dialog box, or if there is an error d #### See also -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 184 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/save-variables.md b/versioned_docs/version-20-R7/commands-legacy/save-variables.md index 9e442a19b18845..564442b0e84419 100644 --- a/versioned_docs/version-20-R7/commands-legacy/save-variables.md +++ b/versioned_docs/version-20-R7/commands-legacy/save-variables.md @@ -47,4 +47,14 @@ If the variables are saved properly, the **OK** system variable is set to 1; oth [DOCUMENT TO BLOB](document-to-blob.md) [LOAD VARIABLES](load-variables.md) *System Variables* -[VARIABLE TO BLOB](variable-to-blob.md) \ No newline at end of file +[VARIABLE TO BLOB](variable-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 75 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md b/versioned_docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md index 12a1b87b81ba71..872617ef7bf816 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-add-processing-instruction.md @@ -44,4 +44,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) \ No newline at end of file +[SAX GET XML PROCESSING INSTRUCTION](sax-get-xml-processing-instruction.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 857 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md b/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md index dcb51a6df0236d..0d5affc08e9bac 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-cdata.md @@ -74,4 +74,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[SAX GET XML CDATA](sax-get-xml-cdata.md) \ No newline at end of file +[SAX GET XML CDATA](sax-get-xml-cdata.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 856 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-comment.md b/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-comment.md index 3edf4cf3182b60..6fd90047e8fb01 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-comment.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-comment.md @@ -45,4 +45,14 @@ In the event of an error, the command returns an error which can be intercepted #### See also -[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) \ No newline at end of file +[SAX ADD XML DOCTYPE](sax-add-xml-doctype.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 852 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md b/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md index ef2c7b478c84bd..64ea73f9aea70f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-doctype.md @@ -45,4 +45,14 @@ In the event of an error, the the command returns an error which can be intercep #### See also -[SAX ADD XML COMMENT](sax-add-xml-comment.md) \ No newline at end of file +[SAX ADD XML COMMENT](sax-add-xml-comment.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 851 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md b/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md index 986bd6180fceaf..eb693a91eb8750 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-add-xml-element-value.md @@ -49,4 +49,14 @@ If the command has been executed correctly, the system variable OK is set to 1; #### See also [SAX GET XML ELEMENT VALUE](sax-get-xml-element-value.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 855 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-close-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/sax-close-xml-element.md index 3b2948efa60c8e..33f5f03e81b56a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-close-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-close-xml-element.md @@ -36,4 +36,13 @@ If the last element opened is **, the following statement: #### See also [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 854 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md index ea39ea15b1a434..091f2784bb18f4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-cdata.md @@ -48,4 +48,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [SAX ADD XML CDATA](sax-add-xml-cdata.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 878 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-comment.md b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-comment.md index 04dff7949196fd..f4fe53c1ecc8f0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-comment.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-comment.md @@ -25,4 +25,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [SAX ADD XML COMMENT](sax-add-xml-comment.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 874 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md index 574f2a6678cac0..062770db628139 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-document-values.md @@ -29,4 +29,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also [SAX Get XML node](sax-get-xml-node.md) -[SAX SET XML DECLARATION](sax-set-xml-declaration.md) \ No newline at end of file +[SAX SET XML DECLARATION](sax-set-xml-declaration.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 873 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md index f2bd98270b3b04..2098fc1b859596 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-element-value.md @@ -43,4 +43,14 @@ If the command was executed correctly, the system variable OK is set to 1\. Othe #### See also [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 877 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-element.md index 543ee15b328543..c6a07b15aad656 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-element.md @@ -56,4 +56,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 876 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-entity.md b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-entity.md index ee780e3e87991d..84e8c7da8ad904 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-entity.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-entity.md @@ -47,4 +47,14 @@ If the command has been executed correctly, the system variable OK is set to 1\. #### See also -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 879 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-node.md b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-node.md index 974dcbb2ebb4e7..05f63bfbf1cd47 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-node.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-node.md @@ -55,3 +55,14 @@ The following example processes an event: #### System variables and sets If the command has been executed correctly, the system variable OK is set to 1\. Otherwise, it is set to 0 and an error is generated. + + +#### Properties + +| | | +| --- | --- | +| Command number | 860 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md index 96055dd1d9632f..97852f3d0856f5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-get-xml-processing-instruction.md @@ -39,4 +39,13 @@ The following instruction will return “PI” in *vName* and “TextProcess” #### See also [SAX ADD PROCESSING INSTRUCTION](sax-add-processing-instruction.md) -[SAX Get XML node](sax-get-xml-node.md) \ No newline at end of file +[SAX Get XML node](sax-get-xml-node.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 875 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md b/versioned_docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md index c4f53d3e0eec25..2d4b9b910abf11 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-open-xml-element-arrays.md @@ -53,4 +53,13 @@ The following method: [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) [SAX OPEN XML ELEMENT](sax-open-xml-element.md) -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 921 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-open-xml-element.md b/versioned_docs/version-20-R7/commands-legacy/sax-open-xml-element.md index eafec47bd1d79c..85715b3d44b6d3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-open-xml-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-open-xml-element.md @@ -51,4 +51,14 @@ If an invalid character is passed in *tag*, an error is generated. #### See also [SAX CLOSE XML ELEMENT](sax-close-xml-element.md) -[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) \ No newline at end of file +[SAX OPEN XML ELEMENT ARRAYS](sax-open-xml-element-arrays.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 853 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md b/versioned_docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md index 21c8034bc172da..43f2dc3d7ed69a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md +++ b/versioned_docs/version-20-R7/commands-legacy/sax-set-xml-declaration.md @@ -43,4 +43,13 @@ The following code: #### See also -[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) \ No newline at end of file +[SAX GET XML DOCUMENT VALUES](sax-get-xml-document-values.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 858 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/scan-index.md b/versioned_docs/version-20-R7/commands-legacy/scan-index.md index 5841237148d1b5..f78fec9a4016c9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/scan-index.md +++ b/versioned_docs/version-20-R7/commands-legacy/scan-index.md @@ -48,4 +48,15 @@ The following example mails letters to 50 of the worst customers and then to 50 [ORDER BY](order-by.md) [QUERY](query.md) -[REDUCE SELECTION](reduce-selection.md) \ No newline at end of file +[REDUCE SELECTION](reduce-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 350 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/screen-coordinates.md b/versioned_docs/version-20-R7/commands-legacy/screen-coordinates.md index 07ed8f0ad27a37..35535fb65241ca 100644 --- a/versioned_docs/version-20-R7/commands-legacy/screen-coordinates.md +++ b/versioned_docs/version-20-R7/commands-legacy/screen-coordinates.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SCREEN COORDINATES command returns in *left*, *top*, *right,* and *bottom* the global coordinates of the screen specified by *screenID*. @@ -47,4 +44,13 @@ The following images demonstrate the differences between the screen size and the [Count screens](count-screens.md) [Menu bar screen](menu-bar-screen.md) -[SCREEN DEPTH](screen-depth.md) \ No newline at end of file +[SCREEN DEPTH](screen-depth.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 438 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/screen-depth.md b/versioned_docs/version-20-R7/commands-legacy/screen-depth.md index 0b1a9daa5876c5..188892f3abe068 100644 --- a/versioned_docs/version-20-R7/commands-legacy/screen-depth.md +++ b/versioned_docs/version-20-R7/commands-legacy/screen-depth.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SCREEN DEPTH command returns in *depth* and *color* information about the monitor. @@ -61,3 +58,13 @@ Your application displays many color graphics. Somewhere in your database, you c #### See also [Count screens](count-screens.md) + + +#### Properties + +| | | +| --- | --- | +| Command number | 439 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/screen-height.md b/versioned_docs/version-20-R7/commands-legacy/screen-height.md index ccf12c84808b60..3fbba037cc8bec 100644 --- a/versioned_docs/version-20-R7/commands-legacy/screen-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/screen-height.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description On Windows, Screen height returns the height of 4D application window (MDI window). If you specify the optional *\** parameter, the function returns the height of the screen. @@ -26,4 +23,13 @@ On Macintosh, Screen height returns the height of the main screen, the screen wh #### See also [SCREEN COORDINATES](screen-coordinates.md) -[Screen width](screen-width.md) \ No newline at end of file +[Screen width](screen-width.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 188 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/screen-width.md b/versioned_docs/version-20-R7/commands-legacy/screen-width.md index c84edffc86bdd5..ed779d2307f587 100644 --- a/versioned_docs/version-20-R7/commands-legacy/screen-width.md +++ b/versioned_docs/version-20-R7/commands-legacy/screen-width.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description On Windows, Screen width returns the width of 4D application window (MDI window). If you specify the optional *\** parameter, the function returns the width of the screen. @@ -26,4 +23,13 @@ On Macintosh, Screen width returns the width of the main screen, the screen wher #### See also [SCREEN COORDINATES](screen-coordinates.md) -[Screen height](screen-height.md) \ No newline at end of file +[Screen height](screen-height.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 187 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/select-document.md b/versioned_docs/version-20-R7/commands-legacy/select-document.md index 9ea58c8809149b..8f0fcc62143c3f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/select-document.md +++ b/versioned_docs/version-20-R7/commands-legacy/select-document.md @@ -95,4 +95,14 @@ If no file was selected (for example, if the user clicked on the **Cancel** butt #### See also [Open document](open-document.md) -[Select folder](select-folder.md) \ No newline at end of file +[Select folder](select-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 905 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/select-folder.md b/versioned_docs/version-20-R7/commands-legacy/select-folder.md index c528ea242bdd4b..437cb04c549b6a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/select-folder.md +++ b/versioned_docs/version-20-R7/commands-legacy/select-folder.md @@ -83,4 +83,14 @@ The following example allows you to select the folder in which the pictures in t [CREATE FOLDER](create-folder.md) [FOLDER LIST](folder-list.md) -[Select document](select-document.md) \ No newline at end of file +[Select document](select-document.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 670 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/select-list-items-by-position.md b/versioned_docs/version-20-R7/commands-legacy/select-list-items-by-position.md index 9758d97a0a47a0..666ce860d1d031 100644 --- a/versioned_docs/version-20-R7/commands-legacy/select-list-items-by-position.md +++ b/versioned_docs/version-20-R7/commands-legacy/select-list-items-by-position.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SELECT LIST ITEMS BY POSITION** command selects the item(s) whose position is passed in *itemPos* and, optionally, in *positionsArray* within the list whose reference number or object name is passed in *list*. @@ -74,4 +71,13 @@ After execution of the following lines of code: [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 381 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/select-list-items-by-reference.md b/versioned_docs/version-20-R7/commands-legacy/select-list-items-by-reference.md index a0f66179a01e4f..318a14046b4192 100644 --- a/versioned_docs/version-20-R7/commands-legacy/select-list-items-by-reference.md +++ b/versioned_docs/version-20-R7/commands-legacy/select-list-items-by-reference.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SELECT LIST ITEMS BY REFERENCE** command selects the item(s) whose item reference number is passed in *itemRef* and, optionally, in *refArray*, within the list whose reference number is passed in *list*. @@ -55,4 +52,13 @@ If you work with item reference numbers, be sure to build a list in which the it [EDIT ITEM](edit-item.md) [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 630 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/select-log-file.md b/versioned_docs/version-20-R7/commands-legacy/select-log-file.md index e2a87ce64e2aad..8108cb8fa42cbb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/select-log-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/select-log-file.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SELECT LOG FILE** command creates, or closes the log file according to the value you pass in *logFile*. @@ -40,4 +37,14 @@ An error -4447 is generated if the operation cannot be performed because the dat #### See also -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 345 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/select-rgb-color.md b/versioned_docs/version-20-R7/commands-legacy/select-rgb-color.md index ebf1712f64f30d..df51d1e5a6a496 100644 --- a/versioned_docs/version-20-R7/commands-legacy/select-rgb-color.md +++ b/versioned_docs/version-20-R7/commands-legacy/select-rgb-color.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Select RGB Color command displays the system color selection window and returns the RGB value of the color selected by the user. @@ -41,4 +38,15 @@ The effect of validating this dialog box differs depending on the platform: #### See also -[OBJECT SET RGB COLORS](object-set-rgb-colors.md) \ No newline at end of file +[OBJECT SET RGB COLORS](object-set-rgb-colors.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 956 | +| Thread safe | ✗ | +| Modifies variables | OK | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/selected-list-items.md b/versioned_docs/version-20-R7/commands-legacy/selected-list-items.md index ae33526bc7dca4..a3e0f004303345 100644 --- a/versioned_docs/version-20-R7/commands-legacy/selected-list-items.md +++ b/versioned_docs/version-20-R7/commands-legacy/selected-list-items.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Selected list items** command returns the position or reference of the selected item in the list whose reference number or object name you pass in *list*. @@ -85,4 +82,13 @@ Here a list named *hList,* shown in the Application environment: #### See also [SELECT LIST ITEMS BY POSITION](select-list-items-by-position.md) -[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) \ No newline at end of file +[SELECT LIST ITEMS BY REFERENCE](select-list-items-by-reference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 379 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/selected-record-number.md b/versioned_docs/version-20-R7/commands-legacy/selected-record-number.md index 8370c5c019652d..df8ce583b13664 100644 --- a/versioned_docs/version-20-R7/commands-legacy/selected-record-number.md +++ b/versioned_docs/version-20-R7/commands-legacy/selected-record-number.md @@ -34,4 +34,13 @@ The following example saves the current selected record number in a variable: *About Record Numbers* [GOTO SELECTED RECORD](goto-selected-record.md) -[Records in selection](records-in-selection.md) \ No newline at end of file +[Records in selection](records-in-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 246 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/selection-range-to-array.md b/versioned_docs/version-20-R7/commands-legacy/selection-range-to-array.md index ca86a99da30b78..b20cccd18dc8c4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/selection-range-to-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/selection-range-to-array.md @@ -107,4 +107,13 @@ Use the first 50 current records of the \[Invoices\] table to load various array [ON ERR CALL](on-err-call.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 368 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/selection-to-array.md b/versioned_docs/version-20-R7/commands-legacy/selection-to-array.md index 285b5d74cac56f..e8d48675acc3c2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/selection-to-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/selection-to-array.md @@ -78,4 +78,13 @@ The same example can be written: [MULTI SORT ARRAY](multi-sort-array.md) [ON ERR CALL](on-err-call.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 260 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/selection-to-json.md b/versioned_docs/version-20-R7/commands-legacy/selection-to-json.md index 30789674e5ca8b..cc0acd26f9a275 100644 --- a/versioned_docs/version-20-R7/commands-legacy/selection-to-json.md +++ b/versioned_docs/version-20-R7/commands-legacy/selection-to-json.md @@ -90,4 +90,13 @@ You can use the *template* syntax in order to export fields from different table #### See also -[JSON TO SELECTION](json-to-selection.md) \ No newline at end of file +[JSON TO SELECTION](json-to-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1234 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/self.md b/versioned_docs/version-20-R7/commands-legacy/self.md index bda62b590db4d0..669ef077925872 100644 --- a/versioned_docs/version-20-R7/commands-legacy/self.md +++ b/versioned_docs/version-20-R7/commands-legacy/self.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility Note This command is kept only for compatibility reasons. Starting with version 12 of 4D, it is recommended to use the [OBJECT Get pointer](object-get-pointer.md) command. @@ -40,4 +37,13 @@ See the example for the [RESOLVE POINTER](resolve-pointer.md) command. [OBJECT Get pointer](object-get-pointer.md) [RESOLVE POINTER](resolve-pointer.md) -[This](../commands/this.md) \ No newline at end of file +[This](../commands/this.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 308 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/semaphore.md b/versioned_docs/version-20-R7/commands-legacy/semaphore.md index 04e4ad8664bf2b..130aa3cebef00b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/semaphore.md +++ b/versioned_docs/version-20-R7/commands-legacy/semaphore.md @@ -149,4 +149,13 @@ Syntax: [CLEAR SEMAPHORE](clear-semaphore.md) *Semaphores and signals* -[Test semaphore](test-semaphore.md) \ No newline at end of file +[Test semaphore](test-semaphore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 143 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/send-message-to-remote-user.md b/versioned_docs/version-20-R7/commands-legacy/send-message-to-remote-user.md index 12c52c293d4470..b525397e6d556d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/send-message-to-remote-user.md +++ b/versioned_docs/version-20-R7/commands-legacy/send-message-to-remote-user.md @@ -51,4 +51,13 @@ You want to send a message to all users, then send a message to a specific user: #### See also -[DROP REMOTE USER](drop-remote-user.md) \ No newline at end of file +[DROP REMOTE USER](drop-remote-user.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1632 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/send-packet.md b/versioned_docs/version-20-R7/commands-legacy/send-packet.md index f0d9834b87d9ee..450a105ba4aafb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/send-packet.md +++ b/versioned_docs/version-20-R7/commands-legacy/send-packet.md @@ -80,4 +80,13 @@ This example illustrates the sending and retrieval of extended characters via a [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 103 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/send-record.md b/versioned_docs/version-20-R7/commands-legacy/send-record.md index 8bc8a8846206f2..0e5601b39f3077 100644 --- a/versioned_docs/version-20-R7/commands-legacy/send-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/send-record.md @@ -33,4 +33,13 @@ See example for the [RECEIVE RECORD](receive-record.md) command. [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) -[SEND VARIABLE](send-variable.md) \ No newline at end of file +[SEND VARIABLE](send-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 78 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/send-variable.md b/versioned_docs/version-20-R7/commands-legacy/send-variable.md index 1c0a3da4aa1e5e..05fd4ad3483496 100644 --- a/versioned_docs/version-20-R7/commands-legacy/send-variable.md +++ b/versioned_docs/version-20-R7/commands-legacy/send-variable.md @@ -31,4 +31,13 @@ See example for the [RECEIVE RECORD](receive-record.md) command. [RECEIVE RECORD](receive-record.md) [RECEIVE VARIABLE](receive-variable.md) [SEND RECORD](send-record.md) -[SET CHANNEL](set-channel.md) \ No newline at end of file +[SET CHANNEL](set-channel.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 80 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sequence-number.md b/versioned_docs/version-20-R7/commands-legacy/sequence-number.md index 80ea57fd0aa232..a20a23c1f5a302 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sequence-number.md +++ b/versioned_docs/version-20-R7/commands-legacy/sequence-number.md @@ -57,4 +57,13 @@ The following example is part of a form method. It tests to see if this is a new *About Record Numbers* [Record number](record-number.md) -[Selected record number](selected-record-number.md) \ No newline at end of file +[Selected record number](selected-record-number.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 244 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/session-storage.md b/versioned_docs/version-20-R7/commands-legacy/session-storage.md index d4f6ffcfe9fe4b..6f21c874f6ca22 100644 --- a/versioned_docs/version-20-R7/commands-legacy/session-storage.md +++ b/versioned_docs/version-20-R7/commands-legacy/session-storage.md @@ -51,4 +51,13 @@ This method modifies the value of a "settings" property stored in the storage ob #### See also [Process activity](../commands/process-activity.md) -[Session](https://developer.4d.com/docs/API/SessionClass#session) \ No newline at end of file +[Session](https://developer.4d.com/docs/API/SessionClass#session) + +#### Properties + +| | | +| --- | --- | +| Command number | 1839 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-about.md b/versioned_docs/version-20-R7/commands-legacy/set-about.md index 4af7be82f048b9..6cfec653be3d8b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-about.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-about.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET ABOUT** command changes the **About 4D** menu command in the **Help** menu (Windows) or in the **Application** menu (macOS) menu to *itemText*. @@ -45,4 +42,13 @@ The following example resets the About 4D menu command: #### See also -[SET HELP MENU](set-help-menu.md) \ No newline at end of file +[SET HELP MENU](set-help-menu.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 316 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-application-color-scheme.md b/versioned_docs/version-20-R7/commands-legacy/set-application-color-scheme.md index fb3c81f9535e6f..88f31a489ae5ba 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-application-color-scheme.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-application-color-scheme.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET APPLICATION COLOR SCHEME** command defines the color scheme to use at the application level for the current session. This scheme will be applied to forms that do not already declare a specific scheme (a color scheme defined at the form level takes priority over the application level). @@ -38,4 +35,13 @@ In the *colorScheme* parameter, pass a color scheme to apply: #### See also [FORM Get color scheme](form-get-color-scheme.md) -[Get application color scheme](get-application-color-scheme.md) \ No newline at end of file +[Get application color scheme](get-application-color-scheme.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1762 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-assert-enabled.md b/versioned_docs/version-20-R7/commands-legacy/set-assert-enabled.md index 4e714616ba3de5..8cde768a6b7a91 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-assert-enabled.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-assert-enabled.md @@ -37,4 +37,13 @@ Disabling assertions: [ASSERT](assert.md) [Asserted](asserted.md) -[Get assert enabled](get-assert-enabled.md) \ No newline at end of file +[Get assert enabled](get-assert-enabled.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1131 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-automatic-relations.md b/versioned_docs/version-20-R7/commands-legacy/set-automatic-relations.md index c760040f300164..90791ae99bc0bd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-automatic-relations.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-automatic-relations.md @@ -43,4 +43,13 @@ The following example makes all manual Many-to-One relations automatic and rever [GET RELATION PROPERTIES](get-relation-properties.md) [SELECTION RANGE TO ARRAY](selection-range-to-array.md) [SELECTION TO ARRAY](selection-to-array.md) -[SET FIELD RELATION](set-field-relation.md) \ No newline at end of file +[SET FIELD RELATION](set-field-relation.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 310 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-blob-size.md b/versioned_docs/version-20-R7/commands-legacy/set-blob-size.md index d10c59542896f5..edc575af3d728e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-blob-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-blob-size.md @@ -49,4 +49,13 @@ The following example creates a BLOB of 16K filled of 0xFF: #### See also -[BLOB size](blob-size.md) \ No newline at end of file +[BLOB size](blob-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 606 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md b/versioned_docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md index ca6ea1a539fc09..8845192021e95e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-blobs-cache-priority.md @@ -47,4 +47,13 @@ In the , you want to set a high priority for the \[Customer\] table "blobs" data #### See also [ADJUST BLOBS CACHE PRIORITY](adjust-blobs-cache-priority.md) -[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) \ No newline at end of file +[Get adjusted blobs cache priority](get-adjusted-blobs-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1425 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-cache-size.md b/versioned_docs/version-20-R7/commands-legacy/set-cache-size.md index aa96f142c1292d..f9d04113fb79b3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-cache-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-cache-size.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **SET CACHE SIZE** command sets the database cache size dynamically and, optionally, sets the mininum byte size at which to start to free memory. - -**Note:** This command only works in local mode (4D Server and 4D); it cannot be used in 4D remote mode. +The **SET CACHE SIZE** command sets the database cache size dynamically and, optionally, sets the mininum byte size at which to start to free memory.This command only works in local mode (4D Server and 4D); it cannot be used in 4D remote mode. In *size*, pass the new size for the database cache in bytes. This new size is applied dynamically when the command is executed. @@ -39,4 +37,13 @@ You want to add 100 MB to the current database cache size. You can write: #### See also -[Get cache size](get-cache-size.md) \ No newline at end of file +[Get cache size](get-cache-size.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1399 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-channel.md b/versioned_docs/version-20-R7/commands-legacy/set-channel.md index f40e342d89a2e7..632245dca43acf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-channel.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-channel.md @@ -165,4 +165,14 @@ See examples for the [RECEIVE BUFFER](receive-buffer.md), [SET TIMEOUT](set-time [SEND PACKET](send-packet.md) [SEND RECORD](send-record.md) [SEND VARIABLE](send-variable.md) -[SET TIMEOUT](set-timeout.md) \ No newline at end of file +[SET TIMEOUT](set-timeout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 77 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-current-printer.md b/versioned_docs/version-20-R7/commands-legacy/set-current-printer.md index 07d1a60b360fab..2c5442e9e07040 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-current-printer.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-current-printer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET CURRENT PRINTER** command designates the printer to be used for printing with the current 4D application. @@ -54,4 +51,14 @@ Creation of a PDF document under Windows: #### See also [Get current printer](get-current-printer.md) -[PRINTERS LIST](printers-list.md) \ No newline at end of file +[PRINTERS LIST](printers-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 787 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-cursor.md b/versioned_docs/version-20-R7/commands-legacy/set-cursor.md index fcc136e2af889b..9234da22a49c8e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-cursor.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-cursor.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET CURSOR command changes the mouse cursor to the system cursor whose ID number you pass in *cursor*. @@ -62,3 +59,13 @@ You want the cursor to be displayed as a ![](../assets/en/commands/pict2478692.e     SET CURSOR(9019)  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 469 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-database-localization.md b/versioned_docs/version-20-R7/commands-legacy/set-database-localization.md index 560fc59722cb9e..614dee8939d420 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-database-localization.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-database-localization.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET DATABASE LOCALIZATION command is used to modify the current language of the database for the current session. @@ -71,4 +68,14 @@ The interface of your application uses the static string ":xliff:shopping". The #### See also -[Get database localization](get-database-localization.md) \ No newline at end of file +[Get database localization](get-database-localization.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1104 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-database-parameter.md b/versioned_docs/version-20-R7/commands-legacy/set-database-parameter.md index 29ecfe3ebed3c5..2523da21ec045a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-database-parameter.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-database-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET DATABASE PARAMETER** command allows you to modify various internal parameters of the 4D database. @@ -149,4 +146,13 @@ You want to export data in JSON that contains a converted 4D date. Note that con [Get database parameter](get-database-parameter.md) [LOG EVENT](log-event.md) -[QUERY SELECTION](query-selection.md) \ No newline at end of file +[QUERY SELECTION](query-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 642 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-default-century.md b/versioned_docs/version-20-R7/commands-legacy/set-default-century.md index 3da217f9dabbc6..9e60d9dc478af4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-default-century.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-default-century.md @@ -61,3 +61,13 @@ In all cases: * 01/25/2007 means January 25, 2007 This command only affects data entry. It has no effect on date storage, computation, and so on. + + +#### Properties + +| | | +| --- | --- | +| Command number | 392 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-document-position.md b/versioned_docs/version-20-R7/commands-legacy/set-document-position.md index d6e072b10cbcb5..b6308916fcbb7d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-document-position.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-document-position.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -This command operates only on a document currently open whose document reference number you pass in *docRef*. - -**SET DOCUMENT POSITION** sets the position you pass in *offset* where the next read ([RECEIVE PACKET](receive-packet.md)) or write ([SEND PACKET](send-packet.md)) will occur. +This command operates only on a document currently open whose document reference number you pass in *docRef*.sets the position you pass in *offset* where the next read ([RECEIVE PACKET](receive-packet.md)) or write ([SEND PACKET](send-packet.md)) will occur. If you omit the optional *anchor* parameter, the position is relative to the beginning of the document. If you do specify the *anchor* parameter, you pass one of the values listed above. @@ -29,4 +27,13 @@ Depending on the anchor you can pass positive or negative values in *offset*. [Get document position](get-document-position.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 482 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-document-properties.md b/versioned_docs/version-20-R7/commands-legacy/set-document-properties.md index 42d7ff8c471df5..f14da560f2ed66 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-document-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-document-properties.md @@ -34,4 +34,14 @@ The dates and times of creation and last modification are managed by the file ma #### See also -[GET DOCUMENT PROPERTIES](get-document-properties.md) \ No newline at end of file +[GET DOCUMENT PROPERTIES](get-document-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 478 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-document-size.md b/versioned_docs/version-20-R7/commands-legacy/set-document-size.md index 7f19a8be14d3c8..dd677ff0b3e548 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-document-size.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-document-size.md @@ -26,4 +26,13 @@ On Macintosh, the size of the document's data fork is changed. [Get document position](get-document-position.md) [Get document size](get-document-size.md) -[SET DOCUMENT POSITION](set-document-position.md) \ No newline at end of file +[SET DOCUMENT POSITION](set-document-position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 480 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-drag-icon.md b/versioned_docs/version-20-R7/commands-legacy/set-drag-icon.md index a36f98d11cb3bb..89e96835bdda89 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-drag-icon.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-drag-icon.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET DRAG ICON** command associates the icon picture with the cursor during drag and drop operations that are managed by programming. @@ -59,4 +56,13 @@ Note that you can modify the position of the cursor with respect to the picture: #### See also -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1272 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-environment-variable.md b/versioned_docs/version-20-R7/commands-legacy/set-environment-variable.md index 557d197171a013..3de2c08338bf2b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-environment-variable.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-environment-variable.md @@ -41,4 +41,13 @@ Refer to examples of the [LAUNCH EXTERNAL PROCESS](launch-external-process.md) c #### See also -[LAUNCH EXTERNAL PROCESS](launch-external-process.md) \ No newline at end of file +[LAUNCH EXTERNAL PROCESS](launch-external-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 812 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-external-data-path.md b/versioned_docs/version-20-R7/commands-legacy/set-external-data-path.md index 1627a58beba898..40558b45b5ba34 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-external-data-path.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-external-data-path.md @@ -61,4 +61,13 @@ You want to save an existing file in the picture field, stored outside of the da #### See also [Get external data path](get-external-data-path.md) -[RELOAD EXTERNAL DATA](reload-external-data.md) \ No newline at end of file +[RELOAD EXTERNAL DATA](reload-external-data.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1134 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-field-relation.md b/versioned_docs/version-20-R7/commands-legacy/set-field-relation.md index aa15dea384359c..b8656feaeb8ca2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-field-relation.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-field-relation.md @@ -53,4 +53,14 @@ The following code allows setting only useful relations as automatic in the Quic [GET AUTOMATIC RELATIONS](get-automatic-relations.md) [GET FIELD RELATION](get-field-relation.md) [GET RELATION PROPERTIES](get-relation-properties.md) -[SET AUTOMATIC RELATIONS](set-automatic-relations.md) \ No newline at end of file +[SET AUTOMATIC RELATIONS](set-automatic-relations.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 919 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-field-titles.md b/versioned_docs/version-20-R7/commands-legacy/set-field-titles.md index c16f8d9df5c904..85a1e8df152a71 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-field-titles.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-field-titles.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SET FIELD TITLES** lets you mask, rename, and reorder the fields of the table passed in *aTable* when they appear in standard 4D dialog boxes, such as the Query editor, within the Application environment (i.e. when the startup mode is **Application**, or after you select **Test application** in the **Run** menu). @@ -60,4 +57,13 @@ See example for the [SET TABLE TITLES](set-table-titles.md) command. [GET FIELD TITLES](get-field-titles.md) [Last field number](last-field-number.md) [Parse formula](parse-formula.md) -[SET TABLE TITLES](set-table-titles.md) \ No newline at end of file +[SET TABLE TITLES](set-table-titles.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 602 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-field-value-null.md b/versioned_docs/version-20-R7/commands-legacy/set-field-value-null.md index 4f79689331b079..3540de11c62723 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-field-value-null.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-field-value-null.md @@ -27,4 +27,13 @@ The NULL value is used by the SQL kernel of 4D. For more information, please ref #### See also [Is field value Null](is-field-value-null.md) -[Null](null.md) \ No newline at end of file +[Null](null.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 965 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md b/versioned_docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md index 93f7ef599919b5..1db5f47f45e288 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-file-to-pasteboard.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET FILE TO PASTEBOARD command adds the complete pathname of the file passed in the *file* parameter. This command can be used to set up interfaces allowing the drag and drop of 4D objects to files on the desktop for example. @@ -29,4 +26,13 @@ The command accepts the star *\** as an optional parameter. By default, when thi #### See also -[Get file from pasteboard](get-file-from-pasteboard.md) \ No newline at end of file +[Get file from pasteboard](get-file-from-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 975 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-group-access.md b/versioned_docs/version-20-R7/commands-legacy/set-group-access.md index 8bc358f0e8ce4f..68b9d19ae314d3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-group-access.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-group-access.md @@ -42,4 +42,14 @@ You want to promote the current user to the "admin" and "plugins" groups for the [Get group access](get-group-access.md) [Get plugin access](get-plugin-access.md) [SET PLUGIN ACCESS](set-plugin-access.md) -[SET USER ALIAS](set-user-alias.md) \ No newline at end of file +[SET USER ALIAS](set-user-alias.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1737 | +| Thread safe | ✓ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-group-properties.md b/versioned_docs/version-20-R7/commands-legacy/set-group-properties.md index 727bbd7077f479..392dcfefd12254 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-group-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-group-properties.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Set group properties enables you to change and update the properties of an existing group whose unique group ID number you pass in *groupID*, or to add a new group. @@ -58,4 +55,14 @@ If you do not have the proper access privileges for calling Set group properties [GET GROUP LIST](get-group-list.md) [GET GROUP PROPERTIES](get-group-properties.md) -[GET USER LIST](get-user-list.md) \ No newline at end of file +[GET USER LIST](get-user-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 614 | +| Thread safe | ✗ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-help-menu.md b/versioned_docs/version-20-R7/commands-legacy/set-help-menu.md index 25405ed0140158..33d051163d1b9c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-help-menu.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-help-menu.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET HELP MENU** command allows you to replace the default 4D **Help** menu with the *menuCol* collection of menu items in the application mode. @@ -61,4 +58,13 @@ You want to customize the **Help** menu for your application: #### See also -[SET ABOUT](set-about.md) \ No newline at end of file +[SET ABOUT](set-about.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1801 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-index-cache-priority.md b/versioned_docs/version-20-R7/commands-legacy/set-index-cache-priority.md index 318721556feacf..2a21ee81186059 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-index-cache-priority.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-index-cache-priority.md @@ -47,4 +47,13 @@ In the , you want to set a high priority for the \[Customer\]LastName field inde #### See also [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) -[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) \ No newline at end of file +[Get adjusted index cache priority](get-adjusted-index-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1401 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-index.md b/versioned_docs/version-20-R7/commands-legacy/set-index.md index a36fe1b6fe8a2d..98ea1732a0bcfa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-index.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-index.md @@ -87,4 +87,13 @@ Creation of a keywords index: [DELETE INDEX](delete-index.md) [GET FIELD PROPERTIES](get-field-properties.md) [ORDER BY](order-by.md) -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 344 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-list-item-font.md b/versioned_docs/version-20-R7/commands-legacy/set-list-item-font.md index 1678655379c0bf..70df9a5e52d2d1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-list-item-font.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-list-item-font.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST ITEM FONT** command modifies the character font of the item specified by the *itemRef* parameter of the list whose reference number or object name is passed in *list*. @@ -44,4 +41,13 @@ Apply the Times font to the current item of the list: [Get list item font](get-list-item-font.md) [OBJECT SET FONT](object-set-font.md) [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 953 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-list-item-icon.md b/versioned_docs/version-20-R7/commands-legacy/set-list-item-icon.md index 1adf91d2a73127..bc8caa77d231bc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-list-item-icon.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-list-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST ITEM ICON** command modifies the icon associated with the item specified by the *itemRef* parameter of the list whose reference number or object name is passed in *list*. @@ -48,4 +45,13 @@ We want to assign the same picture to two different items. The following code is [SET LIST ITEM](set-list-item.md) [SET LIST ITEM FONT](set-list-item-font.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 950 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-list-item-parameter.md b/versioned_docs/version-20-R7/commands-legacy/set-list-item-parameter.md index aed49737dd63a0..ceecd4d9b6ae84 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-list-item-parameter.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-list-item-parameter.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST ITEM PARAMETER** command modifies the *selector* parameter for the *itemRef* item of the hierarchical list whose reference or object name is passed in the *list* parameter. @@ -63,4 +60,13 @@ You want to set as choice list of a hierarchical pop up menu a custom list of fo [Action info](action-info.md) [GET LIST ITEM PARAMETER](get-list-item-parameter.md) [GET LIST ITEM PARAMETER ARRAYS](get-list-item-parameter-arrays.md) -[INSERT IN LIST](insert-in-list.md) \ No newline at end of file +[INSERT IN LIST](insert-in-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 986 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-list-item-properties.md b/versioned_docs/version-20-R7/commands-legacy/set-list-item-properties.md index acca12257e9072..6f918732c624bf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-list-item-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-list-item-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST ITEM PROPERTIES** command modifies the item designated by the *itemRef* parameter within the list whose reference number or object name is passed in *list*. @@ -79,4 +76,13 @@ The following example changes the text of the current item of *list* to bold and [GET LIST ITEM PROPERTIES](get-list-item-properties.md) *Hierarchical Lists* [SET LIST ITEM](set-list-item.md) -[SET LIST ITEM ICON](set-list-item-icon.md) \ No newline at end of file +[SET LIST ITEM ICON](set-list-item-icon.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 386 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-list-item.md b/versioned_docs/version-20-R7/commands-legacy/set-list-item.md index 6e9063ea9fefca..96d5caf5719d86 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-list-item.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-list-item.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST ITEM** command modifies the item designated by the *itemRef* parameter within the list whose reference number or object name is passed in *list*. @@ -79,4 +76,13 @@ See example for the [APPEND TO LIST](append-to-list.md) command. [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [SET LIST ITEM FONT](set-list-item-font.md) [SET LIST ITEM ICON](set-list-item-icon.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 385 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-list-properties.md b/versioned_docs/version-20-R7/commands-legacy/set-list-properties.md index 07a406effda39b..b39a41c95417c7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-list-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-list-properties.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET LIST PROPERTIES** command sets the line height and selection properties of the hierarchical list whose list reference you pass in *list*. @@ -62,4 +59,13 @@ You want to disallow the expand/collapse sublist on double-click. You can write [GET LIST ITEM PROPERTIES](get-list-item-properties.md) [GET LIST PROPERTIES](get-list-properties.md) -[SET LIST ITEM PROPERTIES](set-list-item-properties.md) \ No newline at end of file +[SET LIST ITEM PROPERTIES](set-list-item-properties.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 387 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-macro-parameter.md b/versioned_docs/version-20-R7/commands-legacy/set-macro-parameter.md index 229fc348ee62c7..f67c2a480e140f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-macro-parameter.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-macro-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MACRO PARAMETER** command inserts the *paramText* text into the method from which it has been called. @@ -58,4 +55,13 @@ This macro builds a new text that will be returned to the calling method: #### See also -[GET MACRO PARAMETER](get-macro-parameter.md) \ No newline at end of file +[GET MACRO PARAMETER](get-macro-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 998 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-menu-bar.md b/versioned_docs/version-20-R7/commands-legacy/set-menu-bar.md index 327c36675d2fad..180b52ac37bbf1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-menu-bar.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-menu-bar.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SET MENU BAR** replaces the current menu bar with the one specified by *menuBar* for the current process only. In the *menuBar* parameter, you can pass either the number or name of the new menu bar. You can also pass a menu ID ([MenuRef](# "Unique ID (16-character alphanumeric) of a menu") type, 16-character string). When you work with references, the menus can be used as menu bars and vice versa (see the *Managing Menus* section). @@ -120,4 +117,13 @@ In this comprehensive example, we will create, by programming, a menu bar includ #### See also -*Managing Menus* \ No newline at end of file +*Managing Menus* + +#### Properties + +| | | +| --- | --- | +| Command number | 67 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-icon.md b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-icon.md index 6b71b81bbfabe0..798615b1bb6901 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-icon.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-icon.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM ICON** command modifies the icon associated with the menu item designated by the *menu* and *menuItem* parameters. @@ -45,4 +42,13 @@ Use of a picture located in the Resources folder of the database: #### See also -[GET MENU ITEM ICON](get-menu-item-icon.md) \ No newline at end of file +[GET MENU ITEM ICON](get-menu-item-icon.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 984 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-mark.md b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-mark.md index c8866e4943bf76..db975fefdaaaf0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-mark.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-mark.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM MARK** command changes the check mark of the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem* to the first character of the string passed in *mark*. You can pass -1 in *menuItem* in order to designate the last item added to the *menu*. @@ -38,4 +35,14 @@ See example for the [Get menu item mark](get-menu-item-mark.md) command. #### See also -[Get menu item mark](get-menu-item-mark.md) \ No newline at end of file +[Get menu item mark](get-menu-item-mark.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 208 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-method.md b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-method.md index a0569ffc4245c4..e95b6f23c046df 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-method.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-method.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM METHOD** command modifies the 4D project method associated with the menu item designated by the *menu* and *menuItem* parameters. @@ -37,4 +34,13 @@ Refer to the example of the [SET MENU BAR](set-menu-bar.md) command. #### See also -[Get menu item method](get-menu-item-method.md) \ No newline at end of file +[Get menu item method](get-menu-item-method.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 982 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-parameter.md b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-parameter.md index abccccdb71eee0..f6501515ae4560 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-parameter.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-parameter.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM PARAMETER** command associates a custom character string with a menu item designated by the *menu* and *menuItem* parameters. @@ -43,4 +40,13 @@ This code provides a menu including the names of the open windows and lets you g [Dynamic pop up menu](dynamic-pop-up-menu.md) [Get menu item parameter](get-menu-item-parameter.md) -[Get selected menu item parameter](get-selected-menu-item-parameter.md) \ No newline at end of file +[Get selected menu item parameter](get-selected-menu-item-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1004 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-property.md b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-property.md index 2f05bfbe044793..4a17302d2dc862 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-property.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-property.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM PROPERTY** command sets the *value* of the *property* for the menu item designated by the *menu* and *menuItem* parameters. @@ -48,4 +45,13 @@ In the case of the Associated standard action property, you can pass in the *val #### See also [Dynamic pop up menu](dynamic-pop-up-menu.md) -[GET MENU ITEM PROPERTY](get-menu-item-property.md) \ No newline at end of file +[GET MENU ITEM PROPERTY](get-menu-item-property.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 973 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md index 0d3096a180bd7d..d359f157a79a09 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-shortcut.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM SHORTCUT** command assigns a new shortcut to a menu item. @@ -78,4 +75,14 @@ Definition of the F4 shortcut for the "Close" menu item: #### See also [Get menu item key](get-menu-item-key.md) -[Get menu item modifiers](get-menu-item-modifiers.md) \ No newline at end of file +[Get menu item modifiers](get-menu-item-modifiers.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 423 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-style.md b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-style.md index 818ac6714f8a8a..320e8600287426 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-menu-item-style.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-menu-item-style.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET MENU ITEM STYLE** command changes the font style of the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem* according to the font style passed in *itemStyle*. You can pass -1 in *menuItem* in order to indicate the last item added to *menu*. @@ -40,4 +37,14 @@ You specify the font style of the item in the *itemStyle* parameter. You pass a #### See also -[Get menu item style](get-menu-item-style.md) \ No newline at end of file +[Get menu item style](get-menu-item-style.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 425 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-menu-item.md b/versioned_docs/version-20-R7/commands-legacy/set-menu-item.md index aac79783b7f25f..245e45896a17b7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-menu-item.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-menu-item.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET MENU ITEM command changes the text of the menu item whose menu number or reference is passed in *menu* and whose item number is passed in *menuItem*, to the text passed in *itemText*. You can pass -1 in *menuItem* in order to designate the last item added to the *menu*. @@ -34,4 +31,14 @@ If you omit the *process* parameter, SET MENU ITEM applies to the menu bar for t [APPEND MENU ITEM](append-menu-item.md) [Get menu item](get-menu-item.md) -[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) \ No newline at end of file +[SET MENU ITEM SHORTCUT](set-menu-item-shortcut.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 348 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-picture-file-name.md b/versioned_docs/version-20-R7/commands-legacy/set-picture-file-name.md index a4fe57f103eda4..a52aa18b6eff90 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-picture-file-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-picture-file-name.md @@ -25,4 +25,13 @@ The default name is used as the file name when the picture is exported in a disk #### See also [Get picture file name](get-picture-file-name.md) -[WRITE PICTURE FILE](write-picture-file.md) \ No newline at end of file +[WRITE PICTURE FILE](write-picture-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1172 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-picture-metadata.md b/versioned_docs/version-20-R7/commands-legacy/set-picture-metadata.md index c2f255592a0812..28ccd8e4c2f501 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-picture-metadata.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-picture-metadata.md @@ -80,4 +80,14 @@ When all the metadata are handled via a DOM element reference, the tags are stor [GET PICTURE KEYWORDS](get-picture-keywords.md) [GET PICTURE METADATA](get-picture-metadata.md) *Picture Metadata Names* -*Picture Metadata Values* \ No newline at end of file +*Picture Metadata Values* + +#### Properties + +| | | +| --- | --- | +| Command number | 1121 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-picture-to-library.md b/versioned_docs/version-20-R7/commands-legacy/set-picture-to-library.md index 2dbd0097d09fe7..2a56aa487477c5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-picture-to-library.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-picture-to-library.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET PICTURE TO LIBRARY** command creates a new picture or replaces a picture in the Picture Library. @@ -94,4 +91,15 @@ If there is not enough memory to add the picture to the Picture Library, an erro [GET PICTURE FROM LIBRARY](get-picture-from-library.md) [PICTURE LIBRARY LIST](picture-library-list.md) -[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) \ No newline at end of file +[REMOVE PICTURE FROM LIBRARY](remove-picture-from-library.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 566 | +| Thread safe | ✗ | +| Modifies variables | error | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md b/versioned_docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md index 4f1472cc7255f6..b8e57259a84ff7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-picture-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description SET PICTURE TO PASTEBOARD clears the pasteboard and puts a copy of the picture passed in *picture* into it. @@ -49,4 +46,14 @@ If there is not enough memory to paste the picture into the pasteboard, the OK v #### See also [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) \ No newline at end of file +[GET PICTURE FROM PASTEBOARD](get-picture-from-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 521 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-plugin-access.md b/versioned_docs/version-20-R7/commands-legacy/set-plugin-access.md index fa3d38478270ff..6d34adc8f830f2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-plugin-access.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-plugin-access.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET PLUGIN ACCESS command sets, by programming, the user group allowed to use each “serialized” plug-in that is installed in the database. This way you can manage how plug-in licenses are used. @@ -45,4 +42,13 @@ Pass the name of the group whose users are authorized to use the plug-in in *gro [Get plugin access](get-plugin-access.md) [PLUGIN LIST](plugin-list.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 845 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-print-marker.md b/versioned_docs/version-20-R7/commands-legacy/set-print-marker.md index 5fe7486acf71bc..6057d8774008eb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-print-marker.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-print-marker.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET PRINT MARKER** command enables the definition of the marker position during printing. Combined with the [Get print marker](get-print-marker.md), [OBJECT MOVE](object-move.md) or [Print form](print-form.md) commands, this command allows you to adjust the size of the print areas. @@ -181,4 +178,13 @@ The Print\_List3 form method is as follows: [PAGE BREAK](page-break.md) [Print form](print-form.md) [PRINT RECORD](print-record.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 709 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-print-option.md b/versioned_docs/version-20-R7/commands-legacy/set-print-option.md index 69c6f33576d6d4..745a9422469756 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-print-option.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-print-option.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET PRINT OPTION** command is used to modify, by programming, the value of a print option. Each option defined using this command is applied to the[ current 4D printing settings](https://developer.4d.com/docs/settings/compatibility/) as long as no other command that modifies print parameters ([PRINT SETTINGS](print-settings.md), [PRINT SELECTION](print-selection.md) without the *\>* parameter, etc.) is called. If a print job has been opened (e.g. with [OPEN PRINTING JOB](open-printing-job.md)), the option is set for the job and cannot be modified as long as the job has not terminated (except for the Orientation option, see below). @@ -80,4 +77,14 @@ If the value passed for an *option* is invalid or if it is not available on the [Print form](print-form.md) [PRINT OPTION VALUES](print-option-values.md) *Print Options* -[SET CURRENT PRINTER](set-current-printer.md) \ No newline at end of file +[SET CURRENT PRINTER](set-current-printer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 733 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-print-preview.md b/versioned_docs/version-20-R7/commands-legacy/set-print-preview.md index 13a8805070229b..d9a8472f72af78 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-print-preview.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-print-preview.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SET PRINT PREVIEW** allows you to programmatically check or uncheck the Preview on Screen option of the Print dialog box. If you pass TRUE in *preview*, Preview on Screen will be checked, if you pass FALSE in *preview*, Preview on Screen will be unchecked. This setting is local to a process and does not affect the printing of other processes or users. @@ -38,4 +35,13 @@ The following example turns on the Preview on Screen option to display the resul #### See also [Get print preview](get-print-preview.md) -[Is in print preview](is-in-print-preview.md) \ No newline at end of file +[Is in print preview](is-in-print-preview.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 364 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-printable-margin.md b/versioned_docs/version-20-R7/commands-legacy/set-printable-margin.md index d696ef045d879f..043ebaf17e38f4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-printable-margin.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-printable-margin.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET PRINTABLE MARGIN** command sets the values of various printing margins by using the [Print form](print-form.md), [PRINT SELECTION](print-selection.md) and [PRINT RECORD](print-record.md) commands. @@ -59,4 +56,13 @@ The following example gets the paper size: [GET PRINTABLE MARGIN](get-printable-margin.md) [Get printed height](get-printed-height.md) -[Print form](print-form.md) \ No newline at end of file +[Print form](print-form.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 710 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-process-variable.md b/versioned_docs/version-20-R7/commands-legacy/set-process-variable.md index e46806d9cd5b45..999ab4337e318c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-process-variable.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-process-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET PROCESS VARIABLE** command writes the *dstVar* process variables (*dstVar2*, etc.) of the destination process whose number is passed in *process* using the values passed in *expr1* (*expr2*, etc.). @@ -98,4 +95,13 @@ This example writes the destination process instance of the variables *v1*, *v2* [GET PROCESS VARIABLE](get-process-variable.md) [POST OUTSIDE CALL](post-outside-call.md) *Processes* -[VARIABLE TO VARIABLE](variable-to-variable.md) \ No newline at end of file +[VARIABLE TO VARIABLE](variable-to-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 370 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-query-and-lock.md b/versioned_docs/version-20-R7/commands-legacy/set-query-and-lock.md index d85bae51a2d407..b05bb01942d3a4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-query-and-lock.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-query-and-lock.md @@ -68,4 +68,14 @@ If the command is not called in the context of a transaction, an error is genera #### See also -[QUERY](query.md) \ No newline at end of file +[QUERY](query.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 661 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-query-destination.md b/versioned_docs/version-20-R7/commands-legacy/set-query-destination.md index dd76ff0ee43b54..f020a3508bb2a9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-query-destination.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-query-destination.md @@ -251,4 +251,13 @@ After this project method is implemented in your application, you can write: [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY LIMIT](set-query-limit.md) \ No newline at end of file +[SET QUERY LIMIT](set-query-limit.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 396 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-query-limit.md b/versioned_docs/version-20-R7/commands-legacy/set-query-limit.md index effdff74f6e45a..8c3c24ac8710fb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-query-limit.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-query-limit.md @@ -62,4 +62,13 @@ See the second example for the [SET QUERY DESTINATION](set-query-destination.md) [QUERY SELECTION](query-selection.md) [QUERY SELECTION BY FORMULA](query-selection-by-formula.md) [QUERY WITH ARRAY](query-with-array.md) -[SET QUERY DESTINATION](set-query-destination.md) \ No newline at end of file +[SET QUERY DESTINATION](set-query-destination.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 395 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-real-comparison-level.md b/versioned_docs/version-20-R7/commands-legacy/set-real-comparison-level.md index 5696a3e11a125a..74b4d8cd8c1b66 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-real-comparison-level.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-real-comparison-level.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET REAL COMPARISON LEVEL** command sets the epsilon value used by 4D to compare real values and expressions for equality. @@ -37,3 +34,13 @@ Using **SET REAL COMPARISON LEVEL**, you can increase or decrease the epsilon va **IMPORTANT:** Changing the epsilon only affects real comparison for equality. It has no effect on other real computations nor on the display of real values. **Note:** The **SET REAL COMPARISON LEVEL** command has no effect on queries and sorts performed with fields of the Real type. It only applies the 4D language. + + +#### Properties + +| | | +| --- | --- | +| Command number | 623 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-recent-fonts.md b/versioned_docs/version-20-R7/commands-legacy/set-recent-fonts.md index 785894fe5f6e8d..b617f1ac07f4bc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-recent-fonts.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-recent-fonts.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET RECENT FONTS** command modifies the list of fonts displayed in the context menu of the "recent fonts". @@ -43,4 +40,13 @@ Then the menu contains: #### See also -[FONT LIST](font-list.md) \ No newline at end of file +[FONT LIST](font-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1305 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-table-cache-priority.md b/versioned_docs/version-20-R7/commands-legacy/set-table-cache-priority.md index 0cb06df10a3203..2dc1e314b952c9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-table-cache-priority.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-table-cache-priority.md @@ -48,4 +48,13 @@ In the , you want to set a high priority for the \[Customer\] scalar data: [ADJUST INDEX CACHE PRIORITY](adjust-index-cache-priority.md) [ADJUST TABLE CACHE PRIORITY](adjust-table-cache-priority.md) -[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) \ No newline at end of file +[Get adjusted table cache priority](get-adjusted-table-cache-priority.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1400 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-table-titles.md b/versioned_docs/version-20-R7/commands-legacy/set-table-titles.md index 21be81b42c4b42..4bbfa93cb11788 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-table-titles.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-table-titles.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SET TABLE TITLES** lets you mask, rename, and reorder the tables of your database that appear in standard 4D dialog boxes within the Application environment (i.e. when the startup mode is **Application**, or after you select **Test application** in the **Run** menu). For example, this command can modify the display of tables in the Query editor in Application mode. @@ -188,4 +185,13 @@ You want to remove all defined custom field and table names: [GET TABLE TITLES](get-table-titles.md) [Parse formula](parse-formula.md) [SET FIELD TITLES](set-field-titles.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 601 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md b/versioned_docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md index 1db8aa6bd0afcb..7f826bf69119f8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-text-to-pasteboard.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SET TEXT TO PASTEBOARD** clears the pasteboard and then puts a copy of the text you passed in *text* into the pasteboard. @@ -39,4 +36,14 @@ If a copy of the text is correctly placed in the pasteboard, the OK variable is #### See also [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) -[Get text from pasteboard](get-text-from-pasteboard.md) \ No newline at end of file +[Get text from pasteboard](get-text-from-pasteboard.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 523 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-timeout.md b/versioned_docs/version-20-R7/commands-legacy/set-timeout.md index 10ac3f3e2721ee..a89d2b47fc05d6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-timeout.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-timeout.md @@ -48,4 +48,14 @@ The following example sets the serial port to receive data. It then sets a time- [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) [RECEIVE RECORD](receive-record.md) -[RECEIVE VARIABLE](receive-variable.md) \ No newline at end of file +[RECEIVE VARIABLE](receive-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 268 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-timer.md b/versioned_docs/version-20-R7/commands-legacy/set-timer.md index ea3029f05de26c..407d9c239ea560 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-timer.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-timer.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET TIMER** command activates the On Timer form event and sets, for the current form and process, the number of ticks elapsed between each On Timer form event. @@ -47,4 +44,13 @@ Let’s imagine that you want, when a form is displayed on screen, the computer #### See also [Form event code](../commands/form-event-code.md) -[REDRAW](redraw.md) \ No newline at end of file +[REDRAW](redraw.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 645 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-update-folder.md b/versioned_docs/version-20-R7/commands-legacy/set-update-folder.md index 0b018a2176b6f9..ac7f7ce19508fd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-update-folder.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-update-folder.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET UPDATE FOLDER** command specifies the folder containing the update of the current merged 4D application. This information is stored in the 4D session until the [RESTART 4D](restart-4d.md) method is called. If the application is exited manually, this information is not kept. @@ -59,4 +56,14 @@ You created a "MyUpdates" folder on your disk, where you placed a new version of #### See also [Get last update log path](get-last-update-log-path.md) -[RESTART 4D](restart-4d.md) \ No newline at end of file +[RESTART 4D](restart-4d.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1291 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-user-alias.md b/versioned_docs/version-20-R7/commands-legacy/set-user-alias.md index 67d447a6d90040..ecb20fc6ee515e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-user-alias.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-user-alias.md @@ -39,4 +39,14 @@ Your users are managed through a custom table and use the same 4D user account. [CHANGE CURRENT USER](change-current-user.md) [Current user](current-user.md) -[SET GROUP ACCESS](set-group-access.md) \ No newline at end of file +[SET GROUP ACCESS](set-group-access.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1666 | +| Thread safe | ✓ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-user-properties.md b/versioned_docs/version-20-R7/commands-legacy/set-user-properties.md index f180bfacdd1475..69c53b43e4f3d6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-user-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-user-properties.md @@ -22,9 +22,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Set user properties lets you change and update the properties of an existing user account whose unique user ID number you pass in *userID*, or add a new user. @@ -64,4 +61,13 @@ If you do not have the proper access privileges for calling Set user properties [GET USER LIST](get-user-list.md) [GET USER PROPERTIES](get-user-properties.md) [Is user deleted](is-user-deleted.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 612 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-window-rect.md b/versioned_docs/version-20-R7/commands-legacy/set-window-rect.md index d2648ad02affe5..75e4ce5358bf74 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-window-rect.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-window-rect.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SET WINDOW RECT command changes the global coordinates of the window whose reference number is passed in *window*. If the window does not exist, the command does nothing. @@ -62,4 +59,13 @@ The window appears as follows: [CONVERT COORDINATES](convert-coordinates.md) [DRAG WINDOW](drag-window.md) [GET WINDOW RECT](get-window-rect.md) -[RESIZE FORM WINDOW](resize-form-window.md) \ No newline at end of file +[RESIZE FORM WINDOW](resize-form-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 444 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/set-window-title.md b/versioned_docs/version-20-R7/commands-legacy/set-window-title.md index fb48690dc866c6..b7dfe7f157de37 100644 --- a/versioned_docs/version-20-R7/commands-legacy/set-window-title.md +++ b/versioned_docs/version-20-R7/commands-legacy/set-window-title.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET WINDOW TITLE** command changes the title of the window whose reference number is passed in *window* to the text passed in *title* (max. length 80 characters). @@ -51,4 +48,13 @@ While performing data entry in a form, you click on a button that executes a len #### See also -[Get window title](get-window-title.md) \ No newline at end of file +[Get window title](get-window-title.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 213 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/shift-down.md b/versioned_docs/version-20-R7/commands-legacy/shift-down.md index cd4057cac6fe77..82bba0efdec375 100644 --- a/versioned_docs/version-20-R7/commands-legacy/shift-down.md +++ b/versioned_docs/version-20-R7/commands-legacy/shift-down.md @@ -50,4 +50,13 @@ The following object method for the button *bAnyButton* performs different actio [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 543 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/show-menu-bar.md b/versioned_docs/version-20-R7/commands-legacy/show-menu-bar.md index b1a7b1d61ab579..ae13baa8e0fdb8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/show-menu-bar.md +++ b/versioned_docs/version-20-R7/commands-legacy/show-menu-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SHOW MENU BAR command makes the menu bar visible. @@ -29,4 +26,14 @@ See example for the [HIDE MENU BAR](hide-menu-bar.md) command. [HIDE MENU BAR](hide-menu-bar.md) [HIDE TOOL BAR](hide-tool-bar.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 431 | +| Thread safe | ✗ | +| Forbidden on the server || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/show-on-disk.md b/versioned_docs/version-20-R7/commands-legacy/show-on-disk.md index 33fc3b34aaef11..0cd2f00f6326ea 100644 --- a/versioned_docs/version-20-R7/commands-legacy/show-on-disk.md +++ b/versioned_docs/version-20-R7/commands-legacy/show-on-disk.md @@ -46,3 +46,14 @@ The following examples illustrate the operation of this command: #### System variables and sets The system variable OK is set to 1 if the command is executed correctly. + + +#### Properties + +| | | +| --- | --- | +| Command number | 922 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/show-process.md b/versioned_docs/version-20-R7/commands-legacy/show-process.md index 3d04ca74b7e11e..8e280c16d573d2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/show-process.md +++ b/versioned_docs/version-20-R7/commands-legacy/show-process.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **SHOW PROCESS** displays all the windows belonging to *process*. This command does not bring the windows of *process* to the frontmost level. To do this, use the [BRING TO FRONT](bring-to-front.md) command. @@ -34,4 +31,13 @@ The following example displays a process called Customers, if it has been previo [BRING TO FRONT](bring-to-front.md) [HIDE PROCESS](hide-process.md) -[Process state](process-state.md) \ No newline at end of file +[Process state](process-state.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 325 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/show-tool-bar.md b/versioned_docs/version-20-R7/commands-legacy/show-tool-bar.md index 14e1e76b7c48fa..5b1ebcdcc28181 100644 --- a/versioned_docs/version-20-R7/commands-legacy/show-tool-bar.md +++ b/versioned_docs/version-20-R7/commands-legacy/show-tool-bar.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SHOW TOOL BAR** command handles the display of custom toolbars created by the [Open form window](open-form-window.md) command for the current process. @@ -27,4 +24,13 @@ Refer to the example of the [HIDE TOOL BAR](hide-tool-bar.md) command. #### See also -[HIDE TOOL BAR](hide-tool-bar.md) \ No newline at end of file +[HIDE TOOL BAR](hide-tool-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 433 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/show-window.md b/versioned_docs/version-20-R7/commands-legacy/show-window.md index 0c17b8e0104afa..15e1e78bbf365e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/show-window.md +++ b/versioned_docs/version-20-R7/commands-legacy/show-window.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SHOW WINDOW** command displays the window whose number was passed in *window*. If this parameter is omitted, the frontmost window of the current process will be displayed. @@ -28,4 +25,13 @@ Refer to the example of the [HIDE WINDOW](hide-window.md) command. #### See also -[HIDE WINDOW](hide-window.md) \ No newline at end of file +[HIDE WINDOW](hide-window.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 435 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sin.md b/versioned_docs/version-20-R7/commands-legacy/sin.md index 9d98cf0a06cd31..6b07d4c07262d0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sin.md +++ b/versioned_docs/version-20-R7/commands-legacy/sin.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Description -**Sin** returns the sine of *number*, where *number* is expressed in radians. - -**Note:** 4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). +**Sin** returns the sine of *number*, where *number* is expressed in radians.4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). #### See also [Arctan](arctan.md) [Cos](cos.md) -[Tan](tan.md) \ No newline at end of file +[Tan](tan.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 17 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/size-of-array.md b/versioned_docs/version-20-R7/commands-legacy/size-of-array.md index 135166f66b6ab6..4c5367b5753b4f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/size-of-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/size-of-array.md @@ -45,4 +45,13 @@ The following example returns the number of columns for a row in a two-dimension #### See also [DELETE FROM ARRAY](delete-from-array.md) -[INSERT IN ARRAY](insert-in-array.md) \ No newline at end of file +[INSERT IN ARRAY](insert-in-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 274 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/soap-declaration.md b/versioned_docs/version-20-R7/commands-legacy/soap-declaration.md index c4701e5b754a7f..2a736131b03afb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/soap-declaration.md +++ b/versioned_docs/version-20-R7/commands-legacy/soap-declaration.md @@ -193,4 +193,13 @@ This example illustrates the results of different types of declarations: [Is data file locked](is-data-file-locked.md) [SOAP Get info](soap-get-info.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 782 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/soap-get-info.md b/versioned_docs/version-20-R7/commands-legacy/soap-get-info.md index 9246928efa81ee..65a6c284aa40bf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/soap-get-info.md +++ b/versioned_docs/version-20-R7/commands-legacy/soap-get-info.md @@ -32,4 +32,13 @@ Pass the number of the type of SOAP information you want to get in the *infoNum* #### See also [SET DATABASE PARAMETER](set-database-parameter.md) -[SOAP SEND FAULT](soap-send-fault.md) \ No newline at end of file +[SOAP SEND FAULT](soap-send-fault.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 784 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/soap-reject-new-requests.md b/versioned_docs/version-20-R7/commands-legacy/soap-reject-new-requests.md index dd7418e387d7f0..37e10f219a7505 100644 --- a/versioned_docs/version-20-R7/commands-legacy/soap-reject-new-requests.md +++ b/versioned_docs/version-20-R7/commands-legacy/soap-reject-new-requests.md @@ -35,4 +35,13 @@ You want to deny any new requests to your Web Services server: #### See also [REJECT NEW REMOTE CONNECTIONS](reject-new-remote-connections.md) -[WEB Get server info](web-get-server-info.md) \ No newline at end of file +[WEB Get server info](web-get-server-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1636 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/soap-request.md b/versioned_docs/version-20-R7/commands-legacy/soap-request.md index 14029f5a9607ba..0ecf0b62e19c0e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/soap-request.md +++ b/versioned_docs/version-20-R7/commands-legacy/soap-request.md @@ -21,4 +21,13 @@ This command can be used for security reasons in the *On Web Authentication Data #### See also -[SOAP DECLARATION](soap-declaration.md) \ No newline at end of file +[SOAP DECLARATION](soap-declaration.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 783 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/soap-send-fault.md b/versioned_docs/version-20-R7/commands-legacy/soap-send-fault.md index 16f11a6219d63e..c8adcca4d9103d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/soap-send-fault.md +++ b/versioned_docs/version-20-R7/commands-legacy/soap-send-fault.md @@ -42,4 +42,13 @@ To go back to the example of the “Square\_root” Web Service provided in the #### See also [SOAP DECLARATION](soap-declaration.md) -[SOAP Get info](soap-get-info.md) \ No newline at end of file +[SOAP Get info](soap-get-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 781 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sort-array.md b/versioned_docs/version-20-R7/commands-legacy/sort-array.md index db2eccff68c878..247fa412239523 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sort-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/sort-array.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The SORT ARRAY command sorts one or more arrays into ascending or descending order. - -**Notes:** +The SORT ARRAY command sorts one or more arrays into ascending or descending order. * You cannot sort [Pointer](# "A reference to another variable (including arrays and array elements), table, or field") or [Picture](# "Can be any Windows or Macintosh picture") arrays. You can sort the elements of a two-dimensional array (i.e., *a2DArray{$vlThisElem}*) but you cannot sort the two-dimensional array itself (i.e., *a2DArray*). * You can sort [Object](# "Data structured as a native 4D object") arrays. Null elements are grouped and array elements are sorted with an internal order. @@ -81,4 +79,13 @@ You display the names from a *\[People\]* table in a floating window. When you c [Find in sorted array](find-in-sorted-array.md) [MULTI SORT ARRAY](multi-sort-array.md) [ORDER BY](order-by.md) -[SELECTION TO ARRAY](selection-to-array.md) \ No newline at end of file +[SELECTION TO ARRAY](selection-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 229 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sort-list.md b/versioned_docs/version-20-R7/commands-legacy/sort-list.md index 47547a2c597967..6dd9a4ed3155d0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sort-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/sort-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SORT LIST** command sorts the list whose reference number is passed in *list*. @@ -57,4 +54,13 @@ The list looks like: #### See also -[Selected list items](selected-list-items.md) \ No newline at end of file +[Selected list items](selected-list-items.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 391 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md b/versioned_docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md index 1cc9df8fff205b..ed690fcdea811c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md +++ b/versioned_docs/version-20-R7/commands-legacy/spell-add-to-user-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL ADD TO USER DICTIONARY** command adds one or more words to the current user dictionary. @@ -38,4 +35,13 @@ Adding proper nouns to the user dictionary: #### See also -[SPELL CHECK TEXT](spell-check-text.md) \ No newline at end of file +[SPELL CHECK TEXT](spell-check-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1214 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/spell-check-text.md b/versioned_docs/version-20-R7/commands-legacy/spell-check-text.md index 1055a8c1d14a2b..7068580bc384b5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/spell-check-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/spell-check-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL CHECK TEXT** command checks the contents of the *text* parameter beginning from the *checkPos* character and returns the position of the first unknown word it finds (if any). @@ -54,4 +51,14 @@ We want to count the number of possible errors in a text: #### See also [SPELL ADD TO USER DICTIONARY](spell-add-to-user-dictionary.md) -[SPELL CHECKING](spell-checking.md) \ No newline at end of file +[SPELL CHECKING](spell-checking.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1215 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/spell-checking.md b/versioned_docs/version-20-R7/commands-legacy/spell-checking.md index b09e2615d5a24f..52e9f0e76d96ae 100644 --- a/versioned_docs/version-20-R7/commands-legacy/spell-checking.md +++ b/versioned_docs/version-20-R7/commands-legacy/spell-checking.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL CHECKING** command triggers the spell check of the field or variable having the focus in the currently displayed form. The object checked must be of the string or text type. @@ -35,4 +32,13 @@ Spell checking starts with the first word of the field or variable. If an unknow #### See also [SPELL CHECK TEXT](spell-check-text.md) -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 900 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md b/versioned_docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md index 25949a0b79bef7..f14c8a13f2044d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md +++ b/versioned_docs/version-20-R7/commands-legacy/spell-get-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL Get current dictionary** command returns the ID number of the dictionary being used. @@ -35,4 +32,13 @@ We want to display the language of the current dictionary: #### See also -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1205 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md b/versioned_docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md index 30bfe84e1e11ba..ca3cb2ba232037 100644 --- a/versioned_docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/spell-get-dictionary-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL GET DICTIONARY LIST** command returns, in the *langID*, *langFiles* and *langNames* arrays, the IDs, file names and language names corresponding to the Hunspell dictionary files installed on the machine. @@ -53,4 +50,13 @@ You put "fr-classic+reform1990.aff" and "fr-classic+reform1990.dic" as well as " #### See also -[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) \ No newline at end of file +[SPELL SET CURRENT DICTIONARY](spell-set-current-dictionary.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1204 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md b/versioned_docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md index 145ce7fba59a5c..9fceb0acd52a52 100644 --- a/versioned_docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md +++ b/versioned_docs/version-20-R7/commands-legacy/spell-set-current-dictionary.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SPELL SET CURRENT DICTIONARY** command causes the replacement of the current dictionary with the one specified by the *dictionary* parameter. The current dictionary is used for the built-in spell-check feature in 4D (for more information, refer to the 4D *Design Reference* manual) as well as the one in the 4D Write Pro. The modification of the current dictionary is reflected immediately in all the processes of the database for the session, as well as in the 4D Write Pro areas. @@ -52,4 +49,14 @@ Loading of the "fr-classic" dictionary found in the Hunspell folder: [SPELL CHECKING](spell-checking.md) [SPELL Get current dictionary](spell-get-current-dictionary.md) -[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) \ No newline at end of file +[SPELL GET DICTIONARY LIST](spell-get-dictionary-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 904 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/split-string.md b/versioned_docs/version-20-R7/commands-legacy/split-string.md index f6af2323bb2266..733d2bd7c26885 100644 --- a/versioned_docs/version-20-R7/commands-legacy/split-string.md +++ b/versioned_docs/version-20-R7/commands-legacy/split-string.md @@ -56,4 +56,13 @@ The *separator* parameter can be a multiple-character string: #### See also -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1554 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-cancel-load.md b/versioned_docs/version-20-R7/commands-legacy/sql-cancel-load.md index 9984a5bfb352be..6b592eaca959a8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-cancel-load.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-cancel-load.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL CANCEL LOAD** command ends the current SELECT request and initializes the parameters. @@ -53,4 +50,14 @@ If the command has been correctly executed, the system variable OK returns 1\. O #### See also [SQL LOAD RECORD](sql-load-record.md) -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 824 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-end-selection.md b/versioned_docs/version-20-R7/commands-legacy/sql-end-selection.md index d564b69ea73ab9..e1991fc4f808cc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-end-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-end-selection.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL End selection command is used to determine if the boundaries of the result set have been reached. @@ -40,3 +37,13 @@ The code below connects to an external data source (Oracle) using the following ``` This code will return in the 4D *vName* variable the emp names (ename) stored in the table named emp. + + +#### Properties + +| | | +| --- | --- | +| Command number | 821 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-execute-script.md b/versioned_docs/version-20-R7/commands-legacy/sql-execute-script.md index 9ecb96ab7fc736..c89fe1f58207bf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-execute-script.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-execute-script.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL EXECUTE SCRIPT** command is used to execute a series of SQL statements placed in the script file designated by *scriptPath*. This command can only be executed on a local machine (local 4D or stored procedure on 4D Server). It works with the current database (internal or external database). @@ -59,3 +56,14 @@ If the script is executed correctly (no error occurs), the *OK* system variable * If *errorAction* is SQL On error continue (value 3), the *OK* variable is always 1\. **Note:** If you use this command to execute memory-consuming actions such as massive data imports, you can consider calling the *ALTER DATABASE* SQL command in order to temporarily disable the SQL options. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1089 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-execute.md b/versioned_docs/version-20-R7/commands-legacy/sql-execute.md index 94964c445ba84f..0338b11d6a1ea0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-execute.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-execute.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL EXECUTE command executes an SQL command and binds the result to 4D objects (arrays, variables or fields). @@ -160,4 +157,14 @@ If the command has been executed correctly, the system variable OK returns 1\. O #### See also -[SQL LOAD RECORD](sql-load-record.md) \ No newline at end of file +[SQL LOAD RECORD](sql-load-record.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 820 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-export-database.md b/versioned_docs/version-20-R7/commands-legacy/sql-export-database.md index b3ba635bc6ad5a..6ba474e80c9199 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-export-database.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-export-database.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL EXPORT DATABASE command exports in SQL format all the records of all the tables in the database. In SQL, this global export operation is called "Dump". @@ -57,4 +54,14 @@ If the export has been carried out correctly, the OK variable is set to 1\. Othe #### See also -[SQL EXPORT SELECTION](sql-export-selection.md) \ No newline at end of file +[SQL EXPORT SELECTION](sql-export-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1065 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-export-selection.md b/versioned_docs/version-20-R7/commands-legacy/sql-export-selection.md index addfd5158f1b76..1da9415a148add 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-export-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-export-selection.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL EXPORT SELECTION** command exports in SQL format the records of the current selection of the 4D table designated by the *aTable* parameter. @@ -38,4 +35,14 @@ If the export is carried out correctly, the *OK* variable is set to 1\. Otherwis #### See also -[SQL EXPORT DATABASE](sql-export-database.md) \ No newline at end of file +[SQL EXPORT DATABASE](sql-export-database.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1064 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-get-current-data-source.md b/versioned_docs/version-20-R7/commands-legacy/sql-get-current-data-source.md index 4387d12ec9e27d..92e3d475943779 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-get-current-data-source.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-get-current-data-source.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL Get current data source command returns the name of the current data source of the application. The current data source receives the SQL queries executed within **Begin SQL/End SQL** structures. @@ -30,4 +27,13 @@ This command lets you check the current data source, generally before executing [End SQL](end-sql.md) [SQL GET DATA SOURCE LIST](sql-get-data-source-list.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 990 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-get-data-source-list.md b/versioned_docs/version-20-R7/commands-legacy/sql-get-data-source-list.md index 28e2ffe6c41acb..d08a28463bf28b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-get-data-source-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-get-data-source-list.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL GET DATA SOURCE LIST** command returns, in the *sourceNamesArr* and *driversArr* arrays, the names and drivers of the *sourceType* type data sources defined in the ODBC manager of the operating system. @@ -55,4 +52,14 @@ If the command is executed correctly, the OK system variable is set to 1\. Other [SQL Get current data source](sql-get-current-data-source.md) [SQL LOGIN](sql-login.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 989 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-get-last-error.md b/versioned_docs/version-20-R7/commands-legacy/sql-get-last-error.md index c76f0edb250e48..434ef2ba69f431 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-get-last-error.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-get-last-error.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL GET LAST ERROR command returns information related to the last error encountered during the execution of an ODBC command. The error may come from the 4D application, the network, the ODBC source, etc. @@ -36,4 +33,13 @@ The last two parameters are only filled when the error comes from the ODBC sourc #### See also [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 825 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-get-option.md b/versioned_docs/version-20-R7/commands-legacy/sql-get-option.md index d5cbde015019b1..e5999f723003d8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-get-option.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-get-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL GET OPTION** command returns the current *value* of the option passed in *option*. @@ -29,4 +26,14 @@ If the command was properly executed, the system variable OK is set to 1\. Other #### See also -[SQL SET OPTION](sql-set-option.md) \ No newline at end of file +[SQL SET OPTION](sql-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 819 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-load-record.md b/versioned_docs/version-20-R7/commands-legacy/sql-load-record.md index 428172332e01f0..233c81640c8d40 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-load-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-load-record.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL LOAD RECORD command retrieves one or more record(s) in 4D coming from the data source open in the current connection. @@ -35,4 +32,14 @@ If the command has been executed correctly, the system variable OK returns 1\. O #### See also [SQL CANCEL LOAD](sql-cancel-load.md) -[SQL EXECUTE](sql-execute.md) \ No newline at end of file +[SQL EXECUTE](sql-execute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 822 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-login.md b/versioned_docs/version-20-R7/commands-legacy/sql-login.md index 41253b443013c9..c604db021bf906 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-login.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-login.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL LOGIN** command allows you to connect to an SQL data source specified in the *dataEntry* parameter. It designates the target of the SQL queries executed subsequently in the current process: @@ -207,4 +204,14 @@ If the connection is successful, the system variable OK is set to 1; otherwise, [Begin SQL](begin-sql.md) [End SQL](end-sql.md) -[SQL LOGOUT](sql-logout.md) \ No newline at end of file +[SQL LOGOUT](sql-logout.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 817 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-logout.md b/versioned_docs/version-20-R7/commands-legacy/sql-logout.md index 69c7d1b2a47e9f..f00a8047be05bf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-logout.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-logout.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL LOGOUT command closes the connection with an ODBC source that is open in the current process (if applicable). If there is no ODBC connection open, the command does nothing. @@ -25,4 +22,14 @@ If the logout is performed properly, the system variable OK is set to 1; otherwi #### See also -[SQL LOGIN](sql-login.md) \ No newline at end of file +[SQL LOGIN](sql-login.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 872 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-set-option.md b/versioned_docs/version-20-R7/commands-legacy/sql-set-option.md index db6c4167092cf3..898bae295dcd4f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-set-option.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-set-option.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SQL SET OPTION** command modifies the *value* of the option passed in *option*. @@ -47,4 +44,14 @@ If the command was properly executed, the system variable OK returns 1\. Otherwi #### See also -[SQL GET OPTION](sql-get-option.md) \ No newline at end of file +[SQL GET OPTION](sql-get-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 818 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sql-set-parameter.md b/versioned_docs/version-20-R7/commands-legacy/sql-set-parameter.md index 76cda20695bb64..e34ff46ec9d40f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sql-set-parameter.md +++ b/versioned_docs/version-20-R7/commands-legacy/sql-set-parameter.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SQL SET PARAMETER command allows the use of a 4D variable, array or field value in SQL requests. @@ -79,3 +76,14 @@ Same example as the previous one, but using the SQL SET PARAMETER command: #### System variables and sets If the command has been executed correctly, the system variable OK returns 1\. Otherwise, it returns 0. + + +#### Properties + +| | | +| --- | --- | +| Command number | 823 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/square-root.md b/versioned_docs/version-20-R7/commands-legacy/square-root.md index 2933c00549be5a..948d94235ffb2c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/square-root.md +++ b/versioned_docs/version-20-R7/commands-legacy/square-root.md @@ -41,3 +41,13 @@ The following method returns the hypotenuse of the right triangle whose two legs ``` For instance, Hypotenuse (4;3) returns 5. + + +#### Properties + +| | | +| --- | --- | +| Command number | 539 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-compute-expressions.md b/versioned_docs/version-20-R7/commands-legacy/st-compute-expressions.md index 76dd33f056f22c..0d106f8b923c52 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-compute-expressions.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-compute-expressions.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST COMPUTE EXPRESSIONS** command updates the dynamic 4D expressions found in the multi-style or 4D Write Pro field or variable designated by the *object* parameter. @@ -69,4 +66,14 @@ You want to update the references included in the selection of text: #### See also [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1285 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-freeze-expressions.md b/versioned_docs/version-20-R7/commands-legacy/st-freeze-expressions.md index dad807942b43ac..de655aa41fe9cf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-freeze-expressions.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-freeze-expressions.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST FREEZE EXPRESSIONS** command "freezes" the contents of expressions found in the multi-style text or 4D Write Pro field or variable designated by the *object* parameter. This action converts dynamic expressions into static text or (4D Write Pro areas only) images and removes the associated references from the *object*. @@ -68,4 +65,13 @@ You want to insert the current time at the start of the text and then freeze it #### See also [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1282 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-get-attributes.md b/versioned_docs/version-20-R7/commands-legacy/st-get-attributes.md index a8094b2b0d4181..f15f0195e3db9a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-get-attributes.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-get-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST GET ATTRIBUTES command is used to recover the current value of a style attribute in a selection of text of the form object(s) designated by *object*. @@ -102,4 +99,14 @@ In the case of an error, the variable is not changed. When an error occurs on a #### See also -[ST SET ATTRIBUTES](st-set-attributes.md) \ No newline at end of file +[ST SET ATTRIBUTES](st-set-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1094 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-get-content-type.md b/versioned_docs/version-20-R7/commands-legacy/st-get-content-type.md index a608691aedff5d..c61019a17e6e3b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-get-content-type.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-get-content-type.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST Get content type** command returns the type of content found in the styled text field or variable designated by the *object* parameter. @@ -103,3 +100,14 @@ You want to display context-menu commands based on the type of contents selected        ...     End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1286 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-get-expression.md b/versioned_docs/version-20-R7/commands-legacy/st-get-expression.md index e6eea2e7607739..02691f014bc2de 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-get-expression.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-get-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST Get expression** command returns the first expression found in the current selection of the styled text field or variable designated by the *object* parameter. @@ -93,4 +90,14 @@ You want to execute a 4D method when a user link is clicked: #### See also -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1287 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-get-options.md b/versioned_docs/version-20-R7/commands-legacy/st-get-options.md index 5475c3d058ec9a..a0cd57322c88d5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-get-options.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-get-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST GET OPTIONS** command gets the current value of one or more operating options for the styled text field or variable designated by the *object* parameter. @@ -36,4 +33,13 @@ Pass the code of the option to get in the *option* parameter. The command return #### See also -[ST SET OPTIONS](st-set-options.md) \ No newline at end of file +[ST SET OPTIONS](st-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1290 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-get-plain-text.md b/versioned_docs/version-20-R7/commands-legacy/st-get-plain-text.md index a04eadbd292c32..64990dfd3a12d8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-get-plain-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-get-plain-text.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST Get plain text command removes any style tags from the text variable or field designated by the *\** and *object* parameters and returns the plain text. @@ -109,4 +106,14 @@ In the case of an error, the variable is not changed. When an error occurs on a [ST Get text](st-get-text.md) [ST SET PLAIN TEXT](st-set-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1092 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-get-text.md b/versioned_docs/version-20-R7/commands-legacy/st-get-text.md index 122b76b6db7218..5a93562153ef71 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-get-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-get-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST Get text command returns the styled text found in the text field or variable designated by the *object* parameter. @@ -61,4 +58,14 @@ In the case of an error, the variable is not changed. When an error occurs on a [ST Get plain text](st-get-plain-text.md) [ST SET TEXT](st-set-text.md) -[TEXT TO ARRAY](text-to-array.md) \ No newline at end of file +[TEXT TO ARRAY](text-to-array.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1116 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-get-url.md b/versioned_docs/version-20-R7/commands-legacy/st-get-url.md index 07570c6328658d..d55788e5ce89d8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-get-url.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-get-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST GET URL** command returns the text label and address of the first URL detected in the styled text field or variable designated by the *object* parameter. @@ -72,4 +69,13 @@ When there is a double-click event, you check that there is in fact an URL, and #### See also -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1288 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-insert-expression.md b/versioned_docs/version-20-R7/commands-legacy/st-insert-expression.md index 9c1a73c6e5b799..62a23103e6d62e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-insert-expression.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-insert-expression.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST INSERT EXPRESSION** command inserts a reference to the *expression* in the styled text field or variable designated by the *object* parameter. @@ -89,4 +86,14 @@ You want to replace the highlighted text with a field value: [ST COMPUTE EXPRESSIONS](st-compute-expressions.md) [ST FREEZE EXPRESSIONS](st-freeze-expressions.md) [ST Get expression](st-get-expression.md) -[ST INSERT URL](st-insert-url.md) \ No newline at end of file +[ST INSERT URL](st-insert-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1281 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-insert-url.md b/versioned_docs/version-20-R7/commands-legacy/st-insert-url.md index b60677fc276577..d2ed057dbf3013 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-insert-url.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-insert-url.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST INSERT URL** command inserts a URL link in the styled text field or variable designated by the *object* parameter. @@ -65,4 +62,14 @@ You want to insert a link to the 4D Web site to replace the text selected in the #### See also [ST GET URL](st-get-url.md) -[ST INSERT EXPRESSION](st-insert-expression.md) \ No newline at end of file +[ST INSERT EXPRESSION](st-insert-expression.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1280 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-set-attributes.md b/versioned_docs/version-20-R7/commands-legacy/st-set-attributes.md index 191189c3a074e6..319eb6b7076661 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-set-attributes.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-set-attributes.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST SET ATTRIBUTES command can be used to modify one or more style attributes in the form object(s) designated by *object*. @@ -103,4 +100,14 @@ In the case of an error, the variable is not changed. When an error occurs on a #### See also [FONT LIST](font-list.md) -[ST GET ATTRIBUTES](st-get-attributes.md) \ No newline at end of file +[ST GET ATTRIBUTES](st-get-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1093 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-set-options.md b/versioned_docs/version-20-R7/commands-legacy/st-set-options.md index d19a93a68bb9bc..0a2411fa14b12f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-set-options.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-set-options.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **ST SET OPTIONS** command modifies one or more operating options for the styled text field or variable designated by the *object* parameter. @@ -63,4 +60,13 @@ The following code lets you switch the display mode of the area: #### See also -[ST GET OPTIONS](st-get-options.md) \ No newline at end of file +[ST GET OPTIONS](st-get-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1289 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-set-plain-text.md b/versioned_docs/version-20-R7/commands-legacy/st-set-plain-text.md index 8e2a315ae93e86..d6de960389d935 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-set-plain-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-set-plain-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST SET PLAIN TEXT command inserts the text passed in the *newText* parameter into the styled text field or variable designated by the *object* parameter. This command only applies to the plain text of the*object* parameter, without modifying any style tags that it contains. @@ -94,4 +91,14 @@ In the case of an error, the variable is not changed. When an error occurs on a #### See also [ST Get plain text](st-get-plain-text.md) -[ST SET TEXT](st-set-text.md) \ No newline at end of file +[ST SET TEXT](st-set-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1136 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/st-set-text.md b/versioned_docs/version-20-R7/commands-legacy/st-set-text.md index 670ab2da61f065..6c2957c07dc9ad 100644 --- a/versioned_docs/version-20-R7/commands-legacy/st-set-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/st-set-text.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The ST SET TEXT command inserts the text passed in the *newText* parameter into the styled text field or variable designated by the *object* parameter. This command only applies to the plain text of the object parameter, without modifying any style tags that it contains. It can be used to modify, by programming, styled text displayed on screen. @@ -91,4 +88,14 @@ Refer to the example of the [ST SET PLAIN TEXT](st-set-plain-text.md) command. [ST Get plain text](st-get-plain-text.md) [ST Get text](st-get-text.md) -[ST SET PLAIN TEXT](st-set-plain-text.md) \ No newline at end of file +[ST SET PLAIN TEXT](st-set-plain-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1115 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/start-monitoring-activity.md b/versioned_docs/version-20-R7/commands-legacy/start-monitoring-activity.md index 5c35e4f1b6b867..e6f331ff047a3b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/start-monitoring-activity.md +++ b/versioned_docs/version-20-R7/commands-legacy/start-monitoring-activity.md @@ -91,4 +91,13 @@ You want to start/stop monitoring and review 4D data and debug activities lastin #### See also [Monitored activity](monitored-activity.md) -[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) \ No newline at end of file +[STOP MONITORING ACTIVITY](stop-monitoring-activity.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1712 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/start-sql-server.md b/versioned_docs/version-20-R7/commands-legacy/start-sql-server.md index 5cc90d875854bd..aae429b5d2e320 100644 --- a/versioned_docs/version-20-R7/commands-legacy/start-sql-server.md +++ b/versioned_docs/version-20-R7/commands-legacy/start-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The START SQL SERVER command launches the integrated SQL server in the 4D application where it has been executed. Once launched, the SQL server can respond to external SQL queries. @@ -27,4 +24,14 @@ If the SQL server has been launched correctly, the OK system variable is set to #### See also -[STOP SQL SERVER](stop-sql-server.md) \ No newline at end of file +[STOP SQL SERVER](stop-sql-server.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 962 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/start-transaction.md b/versioned_docs/version-20-R7/commands-legacy/start-transaction.md index e52bec42234f9d..2e1aa68c1f7462 100644 --- a/versioned_docs/version-20-R7/commands-legacy/start-transaction.md +++ b/versioned_docs/version-20-R7/commands-legacy/start-transaction.md @@ -24,4 +24,13 @@ Beginning with version 11 of 4D, you can nest several transactions (sub-transact [In transaction](in-transaction.md) [Transaction level](transaction-level.md) *Using Transactions* -[VALIDATE TRANSACTION](validate-transaction.md) \ No newline at end of file +[VALIDATE TRANSACTION](validate-transaction.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 239 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/std-deviation.md b/versioned_docs/version-20-R7/commands-legacy/std-deviation.md index 16357d9a1e47de..a14672795455fb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/std-deviation.md +++ b/versioned_docs/version-20-R7/commands-legacy/std-deviation.md @@ -57,4 +57,13 @@ This example gets the standard deviation of a series of values placed in an arra [Average](average.md) [Sum](sum.md) [Sum squares](sum-squares.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 26 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/stop-monitoring-activity.md b/versioned_docs/version-20-R7/commands-legacy/stop-monitoring-activity.md index 5050a5157734e3..e5e8adcc7bd32f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/stop-monitoring-activity.md +++ b/versioned_docs/version-20-R7/commands-legacy/stop-monitoring-activity.md @@ -25,4 +25,13 @@ See example for **[START MONITORING ACTIVITY](start-monitoring-activity.md)**. #### See also [Monitored activity](monitored-activity.md) -[START MONITORING ACTIVITY](start-monitoring-activity.md) \ No newline at end of file +[START MONITORING ACTIVITY](start-monitoring-activity.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1721 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/stop-sql-server.md b/versioned_docs/version-20-R7/commands-legacy/stop-sql-server.md index 789db1f6044973..5bf83cbd892f27 100644 --- a/versioned_docs/version-20-R7/commands-legacy/stop-sql-server.md +++ b/versioned_docs/version-20-R7/commands-legacy/stop-sql-server.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The STOP SQL SERVER command stops the integrated SQL server in the 4D application where it has been executed. @@ -25,4 +22,13 @@ If the SQL server was launched, all the SQL connections are interrupted and the #### See also -[START SQL SERVER](start-sql-server.md) \ No newline at end of file +[START SQL SERVER](start-sql-server.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 963 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/storage.md b/versioned_docs/version-20-R7/commands-legacy/storage.md index 4677ced9811c9b..552320ede537c6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/storage.md +++ b/versioned_docs/version-20-R7/commands-legacy/storage.md @@ -81,4 +81,13 @@ This example shows a standard way to set **Storage** values: #### See also -*Shared objects and shared collections* \ No newline at end of file +*Shared objects and shared collections* + +#### Properties + +| | | +| --- | --- | +| Command number | 1525 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/string-list-to-array.md b/versioned_docs/version-20-R7/commands-legacy/string-list-to-array.md index 4053e57a2228ed..82dabfe99b92b0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/string-list-to-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/string-list-to-array.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **STRING LIST TO ARRAY** command populates the array *strings* with: @@ -48,4 +45,14 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero). [Get indexed string](get-indexed-string.md) [Get string resource](get-string-resource.md) -[Get text resource](get-text-resource.md) \ No newline at end of file +[Get text resource](get-text-resource.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 511 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/string.md b/versioned_docs/version-20-R7/commands-legacy/string.md index 55c4c110184d4b..6f7f5f61917309 100644 --- a/versioned_docs/version-20-R7/commands-legacy/string.md +++ b/versioned_docs/version-20-R7/commands-legacy/string.md @@ -186,4 +186,13 @@ If *expression* is evaluated to Null, the command returns the "null" string. Thi [Date](date.md) [Num](num.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 10 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/structure-file.md b/versioned_docs/version-20-R7/commands-legacy/structure-file.md index f57733e76e13f1..36232b27791490 100644 --- a/versioned_docs/version-20-R7/commands-legacy/structure-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/structure-file.md @@ -16,9 +16,7 @@ displayed_sidebar: docs #### Description -The **Structure file** command returns the pathname of the structure file for the database with which you are currently working. - -* With binary databases, the command returns the pathname of the **.4db** file. +The **Structure file** command returns the pathname of the structure file for the database with which you are currently working.file. * With project databases, the command returns the pathname of the **.4dproject** file. **Note:** In the particular case of a database that has been compiled and merged with 4D Volume Desktop, this command returns the pathname of the application file (executable application) under Windows and macOS. Under macOS, this file is located inside the software package, in the \[Contents:Mac OS\] folder. This stems from a former mechanism and is kept for compatibility reasons. If you want to get the full name of the software package itself, it is preferable to use the [Application file](application-file.md) command. The technique consists of testing the application using the [Application type](application-type.md) command, then executing **Structure file** or [Application file](application-file.md) depending on the context. @@ -66,4 +64,13 @@ The following example can be used to find out whether the method is called from [Application file](application-file.md) [COMPONENT LIST](component-list.md) -[Data file](data-file.md) \ No newline at end of file +[Data file](data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 489 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/substring.md b/versioned_docs/version-20-R7/commands-legacy/substring.md index 03bdb784c0b503..b2d940f0e634f8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/substring.md +++ b/versioned_docs/version-20-R7/commands-legacy/substring.md @@ -64,4 +64,13 @@ The following project method appends the paragraphs found in the text (passed as #### See also -[Position](position.md) \ No newline at end of file +[Position](position.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 12 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/subtotal.md b/versioned_docs/version-20-R7/commands-legacy/subtotal.md index c74d1eace14360..c08c6842f4e1c9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/subtotal.md +++ b/versioned_docs/version-20-R7/commands-legacy/subtotal.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Subtotal** returns the subtotal for *data* for the current or last break level. **Subtotal** works only when a sorted selection is being printed with [PRINT SELECTION](print-selection.md) or when printing using Print in the Design environment. The *data* parameter must be of type real, integer, or long integer. Assign the result of the **Subtotal** function to a variable placed in the Break area of the form. @@ -61,4 +58,13 @@ The **Subtotal** function is necessary in order to display values on a form. [ACCUMULATE](accumulate.md) [BREAK LEVEL](break-level.md) [Level](level.md) -[PRINT SELECTION](print-selection.md) \ No newline at end of file +[PRINT SELECTION](print-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 97 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sum-squares.md b/versioned_docs/version-20-R7/commands-legacy/sum-squares.md index 0d7570d761dd7b..6d35360556daa0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sum-squares.md +++ b/versioned_docs/version-20-R7/commands-legacy/sum-squares.md @@ -57,4 +57,13 @@ This example gets the sum of the squares of the values placed in an array: [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Variance](variance.md) \ No newline at end of file +[Variance](variance.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 28 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/sum.md b/versioned_docs/version-20-R7/commands-legacy/sum.md index 970db649bc7587..cc889ccdc44988 100644 --- a/versioned_docs/version-20-R7/commands-legacy/sum.md +++ b/versioned_docs/version-20-R7/commands-legacy/sum.md @@ -71,4 +71,14 @@ For an example of computing an object field attribute, please refer to the examp [Min](min.md) [ORDER BY](order-by.md) [PRINT SELECTION](print-selection.md) -[Subtotal](subtotal.md) \ No newline at end of file +[Subtotal](subtotal.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/super.md b/versioned_docs/version-20-R7/commands-legacy/super.md index 7c490fe374ca47..13fdf54abe9f68 100644 --- a/versioned_docs/version-20-R7/commands-legacy/super.md +++ b/versioned_docs/version-20-R7/commands-legacy/super.md @@ -12,4 +12,13 @@ displayed_sidebar: docs |Result|Object|<-|Object's parent| -The **Super** keyword is described in the [**Classes page**](../Concepts/classes.md#super). \ No newline at end of file +The **Super** keyword is described in the [**Classes page**](../Concepts/classes.md#super). + +#### Properties + +| | | +| --- | --- | +| Command number | 1706 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/suspend-transaction.md b/versioned_docs/version-20-R7/commands-legacy/suspend-transaction.md index b5dc430bace67d..35a9f7d1c8df7e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/suspend-transaction.md +++ b/versioned_docs/version-20-R7/commands-legacy/suspend-transaction.md @@ -22,4 +22,13 @@ For more information, please refer to the *Suspending transactions* section. [Active transaction](active-transaction.md) [RESUME TRANSACTION](resume-transaction.md) -*Suspending transactions* \ No newline at end of file +*Suspending transactions* + +#### Properties + +| | | +| --- | --- | +| Command number | 1385 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/svg-export-to-picture.md b/versioned_docs/version-20-R7/commands-legacy/svg-export-to-picture.md index 88ad79d07c712d..f1172e6a812be0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/svg-export-to-picture.md +++ b/versioned_docs/version-20-R7/commands-legacy/svg-export-to-picture.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **SVG EXPORT TO PICTURE** command saves an SVG format picture contained in an XML tree in the picture field or variable indicated by the *pictVar* parameter. - -**Note:** For more information about the SVG format, refer to the *Overview of XML Utilities Commands* section. +The **SVG EXPORT TO PICTURE** command saves an SVG format picture contained in an XML tree in the picture field or variable indicated by the *pictVar* parameter.For more information about the SVG format, refer to the *Overview of XML Utilities Commands* section. Pass the root XML element reference that contains the SVG picture in *elementRef*. @@ -52,4 +50,13 @@ The following example can be used to display “Hello World” in a 4D picture: #### See also [DOM EXPORT TO FILE](dom-export-to-file.md) -[DOM EXPORT TO VAR](dom-export-to-var.md) \ No newline at end of file +[DOM EXPORT TO VAR](dom-export-to-var.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1017 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md b/versioned_docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md index aa530f72afc80b..5b5d541915dd6f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md +++ b/versioned_docs/version-20-R7/commands-legacy/svg-find-element-id-by-coordinates.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SVG Find element ID by coordinates** command returns the ID ("id" or "xml:id" attribute) of the XML element found at the location set by the coordinates (x,y) in the SVG picture designated by the *pictureObject* parameter. This command can be used more particularly to create interactive graphic interfaces using SVG objects. @@ -54,4 +51,14 @@ If *pictureObject* does not contain a valid SVG picture, the command returns an #### See also -[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) \ No newline at end of file +[SVG Find element IDs by rect](svg-find-element-ids-by-rect.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1054 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md b/versioned_docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md index 0a4ceec5b81002..efab454cdf4ab3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md +++ b/versioned_docs/version-20-R7/commands-legacy/svg-find-element-ids-by-rect.md @@ -20,9 +20,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SVG Find element IDs by rect** command fills the Text or Alpha *arrIDs* array with the IDs ("id" or "xml:id" attribute) of the XML elements whose bounding rectangle intersects with the selection rectangle at the location specified by the *x* and *y* parameters. @@ -43,4 +40,13 @@ All elements whose bounding rectangle intersects with the selection rectangle ar #### See also -[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) \ No newline at end of file +[SVG Find element ID by coordinates](svg-find-element-id-by-coordinates.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1109 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/svg-get-attribute.md b/versioned_docs/version-20-R7/commands-legacy/svg-get-attribute.md index cf2cf0dc12ac7d..ccb880b28dc75f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/svg-get-attribute.md +++ b/versioned_docs/version-20-R7/commands-legacy/svg-get-attribute.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SVG GET ATTRIBUTE command is used to get the current value of the *attribName* attribute in an object or an SVG picture. @@ -42,4 +39,13 @@ For more information about SVG attributes, please refer to the description of th #### See also -[SVG SET ATTRIBUTE](svg-set-attribute.md) \ No newline at end of file +[SVG SET ATTRIBUTE](svg-set-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1056 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/svg-set-attribute.md b/versioned_docs/version-20-R7/commands-legacy/svg-set-attribute.md index b3183ae871d60a..e73342aa88e119 100644 --- a/versioned_docs/version-20-R7/commands-legacy/svg-set-attribute.md +++ b/versioned_docs/version-20-R7/commands-legacy/svg-set-attribute.md @@ -93,4 +93,14 @@ Modification of the contents of a Text type element: #### See also -[SVG GET ATTRIBUTE](svg-get-attribute.md) \ No newline at end of file +[SVG GET ATTRIBUTE](svg-get-attribute.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1055 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/svg-show-element.md b/versioned_docs/version-20-R7/commands-legacy/svg-show-element.md index 9459403cab4ffc..5b1c42ee97d46d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/svg-show-element.md +++ b/versioned_docs/version-20-R7/commands-legacy/svg-show-element.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The SVG SHOW ELEMENT command moves the *pictureObject* SVG document in order to show the element whose "id" attribute is specified by the *id* parameter. @@ -30,3 +27,14 @@ The command moves the SVG document so that all of the object, whose limits are d This command only takes effect in "top left" display mode (with scrollbars). If this command is not executed in the context of a form or if an invalid *pictureObject* is passed, the *OK* variable is set to 0\. If the command is executed correctly, it is set to 1\. + + +#### Properties + +| | | +| --- | --- | +| Command number | 1108 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/system-folder.md b/versioned_docs/version-20-R7/commands-legacy/system-folder.md index c9906508f4f296..3417f4a1040b0c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/system-folder.md +++ b/versioned_docs/version-20-R7/commands-legacy/system-folder.md @@ -48,4 +48,13 @@ If you omit the *type* parameter, the function will return the pathname to activ #### See also [Get 4D folder](get-4d-folder.md) -[Temporary folder](temporary-folder.md) \ No newline at end of file +[Temporary folder](temporary-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 487 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/system-info.md b/versioned_docs/version-20-R7/commands-legacy/system-info.md index 07f9c2d7a77d4e..41f8c480b74805 100644 --- a/versioned_docs/version-20-R7/commands-legacy/system-info.md +++ b/versioned_docs/version-20-R7/commands-legacy/system-info.md @@ -144,4 +144,13 @@ returns an object that contains, for example, the following information: [Application info](application-info.md) [Is macOS](is-macos.md) -[Is Windows](is-windows.md) \ No newline at end of file +[Is Windows](is-windows.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1571 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/table-fragmentation.md b/versioned_docs/version-20-R7/commands-legacy/table-fragmentation.md index 6e74ddfe5ea4fe..9ffbc995daae71 100644 --- a/versioned_docs/version-20-R7/commands-legacy/table-fragmentation.md +++ b/versioned_docs/version-20-R7/commands-legacy/table-fragmentation.md @@ -40,4 +40,13 @@ This maintenance method lets you request the compacting of the data file in the #### See also -[Compact data file](compact-data-file.md) \ No newline at end of file +[Compact data file](compact-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1127 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/table-name.md b/versioned_docs/version-20-R7/commands-legacy/table-name.md index b056819e9b6697..98128a9b550aa5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/table-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/table-name.md @@ -37,4 +37,13 @@ The following is an example of a generic method that displays the records of a t [Last table number](last-table-number.md) [SET FIELD TITLES](set-field-titles.md) [SET TABLE TITLES](set-table-titles.md) -[Table](table.md) \ No newline at end of file +[Table](table.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 256 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/table.md b/versioned_docs/version-20-R7/commands-legacy/table.md index 49b332b7d49373..a864451d5bc4c3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/table.md +++ b/versioned_docs/version-20-R7/commands-legacy/table.md @@ -58,4 +58,13 @@ This example sets the *tableNum* variable to the table number of the table to wh [Field](field.md) [Last table number](last-table-number.md) -[Table name](table-name.md) \ No newline at end of file +[Table name](table-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 252 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/tan.md b/versioned_docs/version-20-R7/commands-legacy/tan.md index 853096241e5163..141c2962ccf2f0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/tan.md +++ b/versioned_docs/version-20-R7/commands-legacy/tan.md @@ -16,12 +16,19 @@ displayed_sidebar: docs #### Description -**Tan** returns the tangent of *number*, where *number* is expressed in radians. - -**Note:** 4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). +**Tan** returns the tangent of *number*, where *number* is expressed in radians.4D provides the predefined constants Pi, Degree, and Radian. Pi returns the Pi number (3.14159...), Degree returns one degree expressed in radians (0.01745...), and Radian returns one radian expressed in degrees (57.29577...). #### See also [Arctan](arctan.md) [Cos](cos.md) -[Sin](sin.md) \ No newline at end of file +[Sin](sin.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 19 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/temporary-folder.md b/versioned_docs/version-20-R7/commands-legacy/temporary-folder.md index c64cb2ee545c5e..0146a65f3c0ccf 100644 --- a/versioned_docs/version-20-R7/commands-legacy/temporary-folder.md +++ b/versioned_docs/version-20-R7/commands-legacy/temporary-folder.md @@ -23,4 +23,13 @@ See example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) co #### See also -[System folder](system-folder.md) \ No newline at end of file +[System folder](system-folder.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 486 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/test-path-name.md b/versioned_docs/version-20-R7/commands-legacy/test-path-name.md index fe204e838d2712..83829b1573ac77 100644 --- a/versioned_docs/version-20-R7/commands-legacy/test-path-name.md +++ b/versioned_docs/version-20-R7/commands-legacy/test-path-name.md @@ -48,4 +48,13 @@ The following tests if the document “Journal” is present in the folder of th [Create document](create-document.md) [CREATE FOLDER](create-folder.md) [Object to path](object-to-path.md) -[Path to object](path-to-object.md) \ No newline at end of file +[Path to object](path-to-object.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 476 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/test-semaphore.md b/versioned_docs/version-20-R7/commands-legacy/test-semaphore.md index faef2284d21807..2955296d75d580 100644 --- a/versioned_docs/version-20-R7/commands-legacy/test-semaphore.md +++ b/versioned_docs/version-20-R7/commands-legacy/test-semaphore.md @@ -41,4 +41,13 @@ The following example allows you to know the state of a process (in our case, wh #### See also [CLEAR SEMAPHORE](clear-semaphore.md) -[Semaphore](semaphore.md) \ No newline at end of file +[Semaphore](semaphore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 652 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/text-to-array.md b/versioned_docs/version-20-R7/commands-legacy/text-to-array.md index f75f35876999fe..b9d6642afea25d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/text-to-array.md +++ b/versioned_docs/version-20-R7/commands-legacy/text-to-array.md @@ -19,9 +19,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **TEXT TO ARRAY** command transforms a text variable into a text array. The original varText text (styled or not) is divided and each part becomes an element of the *arrText* array that is returned by the command. This command can be used for example to fill pages or columns with text of a set size. @@ -109,4 +106,13 @@ You need to print in a 400-pixel wide area, a text with a maximum of 80 lines an [Split string](split-string.md) [ST Get plain text](st-get-plain-text.md) -[ST Get text](st-get-text.md) \ No newline at end of file +[ST Get text](st-get-text.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1149 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/text-to-blob.md b/versioned_docs/version-20-R7/commands-legacy/text-to-blob.md index a03b824fd7622e..da561030bab1f1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/text-to-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/text-to-blob.md @@ -104,4 +104,13 @@ After executing this code: [CONVERT FROM TEXT](convert-from-text.md) [INTEGER TO BLOB](integer-to-blob.md) [LONGINT TO BLOB](longint-to-blob.md) -[REAL TO BLOB](real-to-blob.md) \ No newline at end of file +[REAL TO BLOB](real-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 554 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/text-to-document.md b/versioned_docs/version-20-R7/commands-legacy/text-to-document.md index 14601dd15517ad..9c03813cf50b0b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/text-to-document.md +++ b/versioned_docs/version-20-R7/commands-legacy/text-to-document.md @@ -81,4 +81,13 @@ Example allowing the user to indicate the location of the file to create: #### See also [Document to text](document-to-text.md) -*System Documents* \ No newline at end of file +*System Documents* + +#### Properties + +| | | +| --- | --- | +| Command number | 1237 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/throw.md b/versioned_docs/version-20-R7/commands-legacy/throw.md index f2779c99979937..0b25d02bda8324 100644 --- a/versioned_docs/version-20-R7/commands-legacy/throw.md +++ b/versioned_docs/version-20-R7/commands-legacy/throw.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **throw** command creates an error that will be thrown either immediately or when the calling method returns to its caller (deferred mode). @@ -105,4 +102,13 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi [ASSERT](assert.md) [Last errors](last-errors.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1805 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/tickcount.md b/versioned_docs/version-20-R7/commands-legacy/tickcount.md index 5f82e0a62141b7..6f5bcf7de4c0ba 100644 --- a/versioned_docs/version-20-R7/commands-legacy/tickcount.md +++ b/versioned_docs/version-20-R7/commands-legacy/tickcount.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -Tickcount returns the number of ticks (60th of a second) elapsed since the machine was started. - -**Note:** Tickcount returns a value of type Long Integer. +Tickcount returns the number of ticks (60th of a second) elapsed since the machine was started.Tickcount returns a value of type Long Integer. #### Example @@ -26,4 +24,13 @@ See example for the command [Milliseconds](milliseconds.md). #### See also [Current time](current-time.md) -[Milliseconds](milliseconds.md) \ No newline at end of file +[Milliseconds](milliseconds.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 458 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/time-string.md b/versioned_docs/version-20-R7/commands-legacy/time-string.md index 9379f4f8c42299..492ecb16ee6976 100644 --- a/versioned_docs/version-20-R7/commands-legacy/time-string.md +++ b/versioned_docs/version-20-R7/commands-legacy/time-string.md @@ -35,4 +35,13 @@ The following example displays an alert box with the message, “46800 seconds i #### See also [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 180 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/time.md b/versioned_docs/version-20-R7/commands-legacy/time.md index 8ba63c49103a0e..2d0d6dccf29d1c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/time.md +++ b/versioned_docs/version-20-R7/commands-legacy/time.md @@ -50,4 +50,13 @@ You can express any numerical value as a time: [Bool](bool.md) [String](string.md) [Time string](time-string.md) -[Timestamp](timestamp.md) \ No newline at end of file +[Timestamp](timestamp.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 179 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/timestamp.md b/versioned_docs/version-20-R7/commands-legacy/timestamp.md index 8e437c809becef..8bf3135a576b73 100644 --- a/versioned_docs/version-20-R7/commands-legacy/timestamp.md +++ b/versioned_docs/version-20-R7/commands-legacy/timestamp.md @@ -41,4 +41,13 @@ Result: [Milliseconds](milliseconds.md) [String](string.md) -[Time](time.md) \ No newline at end of file +[Time](time.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1445 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/tool-bar-height.md b/versioned_docs/version-20-R7/commands-legacy/tool-bar-height.md index 4b78bc580706bc..0ace018f99fa9e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/tool-bar-height.md +++ b/versioned_docs/version-20-R7/commands-legacy/tool-bar-height.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Tool bar height command returns the height of the current visible tool bar, expressed in pixels. Depending on the context, it can be either the 4D Design mode toolbar, or a custom toolbar created with [Open form window](open-form-window.md) (the Design mode toolbar is automatically hidden when a custom toolbar is displayed). @@ -26,4 +23,13 @@ If no tool bar is displayed, the command returns 0. [HIDE TOOL BAR](hide-tool-bar.md) [Menu bar height](menu-bar-height.md) -[SHOW TOOL BAR](show-tool-bar.md) \ No newline at end of file +[SHOW TOOL BAR](show-tool-bar.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1016 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/trace.md b/versioned_docs/version-20-R7/commands-legacy/trace.md index 12ad47e49d037c..3dc103e454c80b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/trace.md +++ b/versioned_docs/version-20-R7/commands-legacy/trace.md @@ -59,3 +59,13 @@ The DEBUG project method is listed here:     End if  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 157 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/transaction-level.md b/versioned_docs/version-20-R7/commands-legacy/transaction-level.md index 655cbb5b58761c..ae08f9242fdc0c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/transaction-level.md +++ b/versioned_docs/version-20-R7/commands-legacy/transaction-level.md @@ -21,4 +21,13 @@ displayed_sidebar: docs [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Using Transactions* \ No newline at end of file +*Using Transactions* + +#### Properties + +| | | +| --- | --- | +| Command number | 961 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/transform-picture.md b/versioned_docs/version-20-R7/commands-legacy/transform-picture.md index 1dea70805c3d5d..fe0d8fddee45e8 100644 --- a/versioned_docs/version-20-R7/commands-legacy/transform-picture.md +++ b/versioned_docs/version-20-R7/commands-legacy/transform-picture.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -The TRANSFORM PICTURE command applies a transformation of the *operator* type to the picture passed in the *picture* parameter. - -**Note:** This command extends the functionalities offered by conventional picture transformation operators. These operators remain entirely usable in 4D. +The TRANSFORM PICTURE command applies a transformation of the *operator* type to the picture passed in the *picture* parameter.This command extends the functionalities offered by conventional picture transformation operators. These operators remain entirely usable in 4D. The source *picture* is modified directly after execution of the command. Note that certain operations are not destructive and can be reversed by performing the opposite operation or by means of the “Reset” operation. For example, a picture reduced to 1% will regain its original size with no alteration if it is enlarged by a factor of 100 subsequently. Transformations do not modify the original picture type: for example, a vectorial picture will remain vectorial after its transformation. @@ -72,4 +70,13 @@ Here is an example of cropping a picture (the picture is displayed in the form w #### See also -[COMBINE PICTURES](combine-pictures.md) \ No newline at end of file +[COMBINE PICTURES](combine-pictures.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 988 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/trigger-event.md b/versioned_docs/version-20-R7/commands-legacy/trigger-event.md index 25b3a2dddc1a72..3a992b78e8f318 100644 --- a/versioned_docs/version-20-R7/commands-legacy/trigger-event.md +++ b/versioned_docs/version-20-R7/commands-legacy/trigger-event.md @@ -52,4 +52,13 @@ You use the **Trigger event** command to structure your triggers as follows: [In transaction](in-transaction.md) [Trigger level](trigger-level.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 369 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/trigger-level.md b/versioned_docs/version-20-R7/commands-legacy/trigger-level.md index 62716b059ff79e..e6d602990f3e44 100644 --- a/versioned_docs/version-20-R7/commands-legacy/trigger-level.md +++ b/versioned_docs/version-20-R7/commands-legacy/trigger-level.md @@ -23,4 +23,13 @@ For more information on execution levels, see the topic *Cascading Triggers*. [Trigger event](trigger-event.md) [TRIGGER PROPERTIES](trigger-properties.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 398 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/trigger-properties.md b/versioned_docs/version-20-R7/commands-legacy/trigger-properties.md index cecc2b86255964..0944b7464d8234 100644 --- a/versioned_docs/version-20-R7/commands-legacy/trigger-properties.md +++ b/versioned_docs/version-20-R7/commands-legacy/trigger-properties.md @@ -37,4 +37,13 @@ The table number and record number for the record involved by the database event *About Record Numbers* [Trigger event](trigger-event.md) [Trigger level](trigger-level.md) -*Triggers* \ No newline at end of file +*Triggers* + +#### Properties + +| | | +| --- | --- | +| Command number | 399 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/true.md b/versioned_docs/version-20-R7/commands-legacy/true.md index d3d26533e636b0..691407f6948fc4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/true.md +++ b/versioned_docs/version-20-R7/commands-legacy/true.md @@ -28,4 +28,13 @@ The following example sets the variable *vbOptions* to True: #### See also [False](false.md) -[Not](not.md) \ No newline at end of file +[Not](not.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 214 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/trunc.md b/versioned_docs/version-20-R7/commands-legacy/trunc.md index 1c997eed97ffb7..7d0d08e1476b26 100644 --- a/versioned_docs/version-20-R7/commands-legacy/trunc.md +++ b/versioned_docs/version-20-R7/commands-legacy/trunc.md @@ -17,7 +17,7 @@ displayed_sidebar: docs #### Description -**Trunc** returns *number* with its decimal part truncated to the number of decimal places specified by *places*. **Trunc** always truncates toward negative infinity. +**Trunc** returns *number* with its decimal part truncated to the number of decimal places specified by *places*.always truncates toward negative infinity. If *places* is positive, *number* is truncated to *places* decimal places. If *places* is negative, number is truncated on the left of the decimal point. @@ -34,4 +34,13 @@ The following example illustrates how Trunc works with different arguments. Each #### See also -[Round](round.md) \ No newline at end of file +[Round](round.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 95 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/truncate-table.md b/versioned_docs/version-20-R7/commands-legacy/truncate-table.md index 84a93f4702dc16..2ad3a067cd6cd4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/truncate-table.md +++ b/versioned_docs/version-20-R7/commands-legacy/truncate-table.md @@ -37,4 +37,16 @@ If the command has been executed correctly, the OK system variable is set to 1\. #### See also -[DELETE SELECTION](delete-selection.md) \ No newline at end of file +[DELETE SELECTION](delete-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1051 | +| Thread safe | ✓ | +| Modifies variables | OK | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/type.md b/versioned_docs/version-20-R7/commands-legacy/type.md index 383e340cc3e9de..abbd936f9f9f70 100644 --- a/versioned_docs/version-20-R7/commands-legacy/type.md +++ b/versioned_docs/version-20-R7/commands-legacy/type.md @@ -145,4 +145,13 @@ See example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) co [Is a variable](is-a-variable.md) [Undefined](undefined.md) -[Value type](value-type.md) \ No newline at end of file +[Value type](value-type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 295 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/undefined.md b/versioned_docs/version-20-R7/commands-legacy/undefined.md index 571b6af850350b..0464f76d661153 100644 --- a/versioned_docs/version-20-R7/commands-legacy/undefined.md +++ b/versioned_docs/version-20-R7/commands-legacy/undefined.md @@ -59,4 +59,13 @@ Here are the different results of the [Undefined](undefined.md) command as well #### See also -[CLEAR VARIABLE](clear-variable.md) \ No newline at end of file +[CLEAR VARIABLE](clear-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 82 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/union.md b/versioned_docs/version-20-R7/commands-legacy/union.md index f64b8dc97f9610..d28f06cea195ee 100644 --- a/versioned_docs/version-20-R7/commands-legacy/union.md +++ b/versioned_docs/version-20-R7/commands-legacy/union.md @@ -49,4 +49,13 @@ This example adds records to a set of best customers. The records are displayed #### See also [DIFFERENCE](difference.md) -[INTERSECTION](intersection.md) \ No newline at end of file +[INTERSECTION](intersection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 120 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/unload-record.md b/versioned_docs/version-20-R7/commands-legacy/unload-record.md index 5a0fd43e8264d6..4dac9f923e6131 100644 --- a/versioned_docs/version-20-R7/commands-legacy/unload-record.md +++ b/versioned_docs/version-20-R7/commands-legacy/unload-record.md @@ -28,4 +28,13 @@ If a record has a large amount of data, picture fields, or external documents (s #### See also [LOAD RECORD](load-record.md) -*Record Locking* \ No newline at end of file +*Record Locking* + +#### Properties + +| | | +| --- | --- | +| Command number | 212 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/unregister-client.md b/versioned_docs/version-20-R7/commands-legacy/unregister-client.md index 957debe65b8c8c..679f8c4dbd8e3f 100644 --- a/versioned_docs/version-20-R7/commands-legacy/unregister-client.md +++ b/versioned_docs/version-20-R7/commands-legacy/unregister-client.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **UNREGISTER CLIENT** command “unregisters” a 4D client station. The client must have already been registered by the [REGISTER CLIENT](register-client.md) command. @@ -35,4 +32,14 @@ If the client is correctly unregistered, the OK system variable is set to 1\. If [EXECUTE ON CLIENT](execute-on-client.md) [GET REGISTERED CLIENTS](get-registered-clients.md) -[REGISTER CLIENT](register-client.md) \ No newline at end of file +[REGISTER CLIENT](register-client.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 649 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/uppercase.md b/versioned_docs/version-20-R7/commands-legacy/uppercase.md index 269207ef0884ab..7c4129566f06fd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/uppercase.md +++ b/versioned_docs/version-20-R7/commands-legacy/uppercase.md @@ -36,4 +36,13 @@ See the example for [Lowercase](lowercase.md). #### See also -[Lowercase](lowercase.md) \ No newline at end of file +[Lowercase](lowercase.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 13 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/use-character-set.md b/versioned_docs/version-20-R7/commands-legacy/use-character-set.md index 1f039581391fd1..917eb3ea9845bc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/use-character-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/use-character-set.md @@ -49,4 +49,14 @@ The OK system variable is set to 1 if the map is loaded correctly. Otherwise, it [IMPORT TEXT](import-text.md) [RECEIVE BUFFER](receive-buffer.md) [RECEIVE PACKET](receive-packet.md) -[SEND PACKET](send-packet.md) \ No newline at end of file +[SEND PACKET](send-packet.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 205 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/use-named-selection.md b/versioned_docs/version-20-R7/commands-legacy/use-named-selection.md index f70acfeccaaa6b..c5e95005409057 100644 --- a/versioned_docs/version-20-R7/commands-legacy/use-named-selection.md +++ b/versioned_docs/version-20-R7/commands-legacy/use-named-selection.md @@ -28,4 +28,15 @@ Remember that a named selection is a representation of a selection of records at [CLEAR NAMED SELECTION](clear-named-selection.md) [COPY NAMED SELECTION](copy-named-selection.md) -[CUT NAMED SELECTION](cut-named-selection.md) \ No newline at end of file +[CUT NAMED SELECTION](cut-named-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 332 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/use-set.md b/versioned_docs/version-20-R7/commands-legacy/use-set.md index cb9399b4897077..b66d05fe36dd88 100644 --- a/versioned_docs/version-20-R7/commands-legacy/use-set.md +++ b/versioned_docs/version-20-R7/commands-legacy/use-set.md @@ -34,4 +34,15 @@ The following example uses [LOAD SET](load-set.md) to load a set of the Acme loc #### See also [CLEAR SET](clear-set.md) -[LOAD SET](load-set.md) \ No newline at end of file +[LOAD SET](load-set.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 118 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands-legacy/user-in-group.md b/versioned_docs/version-20-R7/commands-legacy/user-in-group.md index ded5c13522a841..c11a3e70bf878d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/user-in-group.md +++ b/versioned_docs/version-20-R7/commands-legacy/user-in-group.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description User in group returns TRUE if *user* is in *group*. @@ -44,4 +41,13 @@ The following example searches for specific invoices. If the current user is in #### See also -[Current user](current-user.md) \ No newline at end of file +[Current user](current-user.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 338 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/users-to-blob.md b/versioned_docs/version-20-R7/commands-legacy/users-to-blob.md index fca0591d2e46d4..3b0aa50a7259b7 100644 --- a/versioned_docs/version-20-R7/commands-legacy/users-to-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/users-to-blob.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description **Compatibility Note:* This command only works in binary databases. It always returns an empty BLOB in projects.* @@ -33,4 +30,14 @@ This lets you keep a backup of users in the database data and, as such, implemen #### See also -[BLOB TO USERS](blob-to-users.md) \ No newline at end of file +[BLOB TO USERS](blob-to-users.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 849 | +| Thread safe | ✗ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/validate-password.md b/versioned_docs/version-20-R7/commands-legacy/validate-password.md index 1e6602853dff49..7edd64c509deb9 100644 --- a/versioned_docs/version-20-R7/commands-legacy/validate-password.md +++ b/versioned_docs/version-20-R7/commands-legacy/validate-password.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description Validate password returns True if the string passed in *password* is the password for the user account whose ID number or name is passed in *userID*. @@ -62,4 +59,13 @@ In the [On REST Authentication database method](on-rest-authentication-database- [GET USER PROPERTIES](get-user-properties.md) [Set user properties](set-user-properties.md) -[WEB Validate digest](web-validate-digest.md) \ No newline at end of file +[WEB Validate digest](web-validate-digest.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 638 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/validate-transaction.md b/versioned_docs/version-20-R7/commands-legacy/validate-transaction.md index 54f583fbb3ac47..d5718108a21aa4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/validate-transaction.md +++ b/versioned_docs/version-20-R7/commands-legacy/validate-transaction.md @@ -29,4 +29,14 @@ Note that when OK is set to 0, the transaction is automatically cancelled intern [CANCEL TRANSACTION](cancel-transaction.md) [In transaction](in-transaction.md) [START TRANSACTION](start-transaction.md) -*Using Transactions* \ No newline at end of file +*Using Transactions* + +#### Properties + +| | | +| --- | --- | +| Command number | 240 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/value-type.md b/versioned_docs/version-20-R7/commands-legacy/value-type.md index 2b28ac9495cba5..653d6ee7ed98e3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/value-type.md +++ b/versioned_docs/version-20-R7/commands-legacy/value-type.md @@ -112,4 +112,13 @@ You want to sum up all numeric values in a collection: #### See also [OB Get type](ob-get-type.md) -[Type](type.md) \ No newline at end of file +[Type](type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1509 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/variable-to-blob.md b/versioned_docs/version-20-R7/commands-legacy/variable-to-blob.md index 0ddd809ebdc077..a051093971507b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/variable-to-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/variable-to-blob.md @@ -131,4 +131,14 @@ After these methods have been added to your application, you can write: [BLOB to list](blob-to-list.md) [BLOB TO VARIABLE](blob-to-variable.md) -[LIST TO BLOB](list-to-blob.md) \ No newline at end of file +[LIST TO BLOB](list-to-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 532 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/variable-to-variable.md b/versioned_docs/version-20-R7/commands-legacy/variable-to-variable.md index 74a3b1e977de1c..f8f85a56ca6ec6 100644 --- a/versioned_docs/version-20-R7/commands-legacy/variable-to-variable.md +++ b/versioned_docs/version-20-R7/commands-legacy/variable-to-variable.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **VARIABLE TO VARIABLE** command writes the *dstVar* process variables (*dstVar2*, etc.) of the destination process whose number is passed in *process* using the values of the variables *srcVar1* *srcVar2*, etc. @@ -61,4 +58,13 @@ The following example reads a process array from the process indicated by *$vlPr [GET PROCESS VARIABLE](get-process-variable.md) *Processes* -[SET PROCESS VARIABLE](set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](set-process-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 635 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/variance.md b/versioned_docs/version-20-R7/commands-legacy/variance.md index e4f461f6f28c70..2030b2b868cf41 100644 --- a/versioned_docs/version-20-R7/commands-legacy/variance.md +++ b/versioned_docs/version-20-R7/commands-legacy/variance.md @@ -65,4 +65,13 @@ This example gets the variance of the values placed in an array: [Average](average.md) [Std deviation](std-deviation.md) [Sum](sum.md) -[Sum squares](sum-squares.md) \ No newline at end of file +[Sum squares](sum-squares.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 27 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/verify-current-data-file.md b/versioned_docs/version-20-R7/commands-legacy/verify-current-data-file.md index 316141f9c788fd..c09427cc4b5761 100644 --- a/versioned_docs/version-20-R7/commands-legacy/verify-current-data-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/verify-current-data-file.md @@ -42,4 +42,14 @@ If the callback method does not exist, the verification is not carried out, an e #### See also -[VERIFY DATA FILE](verify-data-file.md) \ No newline at end of file +[VERIFY DATA FILE](verify-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1008 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/verify-data-file.md b/versioned_docs/version-20-R7/commands-legacy/verify-data-file.md index cccda1670c4309..775a01467bcfc3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/verify-data-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/verify-data-file.md @@ -21,9 +21,7 @@ displayed_sidebar: docs #### Description -The VERIFY DATA FILE command carries out a structural check of the objects contained in the 4D data file designated by *structurePath* and *dataPath*. - -**Note:** For more information about checking data, please refer to the Design Reference manual. *structurePath* designates the structure file (compiled or not) associated with the data file to be checked. This can be the open structure file or any other structure file. You must pass a complete pathname, expressed with the syntax of the operating system. You can also pass an empty string, in this case a standard Open file dialog box appears so that the user can specify the structure file to be used. +The VERIFY DATA FILE command carries out a structural check of the objects contained in the 4D data file designated by *structurePath* and *dataPath*.For more information about checking data, please refer to the Design Reference manual. *structurePath* designates the structure file (compiled or not) associated with the data file to be checked. This can be the open structure file or any other structure file. You must pass a complete pathname, expressed with the syntax of the operating system. You can also pass an empty string, in this case a standard Open file dialog box appears so that the user can specify the structure file to be used. *dataPath* designates a 4D data file (.4DD). It must correspond to the structure file defined by the *structurePath* parameter. Be careful, you can designate the current structure file but the data file must not be the current (open) file. To verify the currently open data file, use the [VERIFY CURRENT DATA FILE](verify-current-data-file.md) command. If you attempt to verify the current data file with the VERIFY DATA FILE command, an error is generated. @@ -170,4 +168,14 @@ If the callback method does not exist, the verification is not carried out, an e #### See also -[VERIFY CURRENT DATA FILE](verify-current-data-file.md) \ No newline at end of file +[VERIFY CURRENT DATA FILE](verify-current-data-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 939 | +| Thread safe | ✓ | +| Modifies variables | OK, Document, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/verify-password-hash.md b/versioned_docs/version-20-R7/commands-legacy/verify-password-hash.md index 2ca18de8dbf225..1a82a735f3d4ad 100644 --- a/versioned_docs/version-20-R7/commands-legacy/verify-password-hash.md +++ b/versioned_docs/version-20-R7/commands-legacy/verify-password-hash.md @@ -52,4 +52,13 @@ This example verifies a password hash previously created by [Generate password h #### See also -[Generate password hash](generate-password-hash.md) \ No newline at end of file +[Generate password hash](generate-password-hash.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1534 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/version-type.md b/versioned_docs/version-20-R7/commands-legacy/version-type.md index 3bc67a1287c5fc..b43a7a71234fec 100644 --- a/versioned_docs/version-20-R7/commands-legacy/version-type.md +++ b/versioned_docs/version-20-R7/commands-legacy/version-type.md @@ -42,4 +42,13 @@ This test lets you run different code depending on whether the version is a merg #### See also [Application type](application-type.md) -[Application version](application-version.md) \ No newline at end of file +[Application version](application-version.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 495 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/volume-attributes.md b/versioned_docs/version-20-R7/commands-legacy/volume-attributes.md index d1f914667a34a7..1bf7e7e33db00a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/volume-attributes.md +++ b/versioned_docs/version-20-R7/commands-legacy/volume-attributes.md @@ -18,9 +18,7 @@ displayed_sidebar: docs #### Description -The VOLUME ATTRIBUTES command returns, expressed in bytes, the size, the used space and the free space for the volume whose name you pass in *volume*. - -**Note:** If *volume* indicates a non-mounted remote volume, the OK variable is set to 0 and the three parameters return -1\. +The VOLUME ATTRIBUTES command returns, expressed in bytes, the size, the used space and the free space for the volume whose name you pass in *volume*.If *volume* indicates a non-mounted remote volume, the OK variable is set to 0 and the three parameters return -1\. #### Example @@ -96,4 +94,14 @@ Once this project method is added to your application, you can for instance writ #### See also -[VOLUME LIST](volume-list.md) \ No newline at end of file +[VOLUME LIST](volume-list.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 472 | +| Thread safe | ✓ | +| Modifies variables | OK, error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/volume-list.md b/versioned_docs/version-20-R7/commands-legacy/volume-list.md index 47436f2a592306..2ac3cb3cb3c56e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/volume-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/volume-list.md @@ -38,4 +38,13 @@ Using a scrollable area named *atVolumes* you want to display the list of the vo [DOCUMENT LIST](document-list.md) [FOLDER LIST](folder-list.md) -[VOLUME ATTRIBUTES](volume-attributes.md) \ No newline at end of file +[VOLUME ATTRIBUTES](volume-attributes.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 471 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-back-url-available.md b/versioned_docs/version-20-R7/commands-legacy/wa-back-url-available.md index 910f0304053d71..edcb895bba9c2c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-back-url-available.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-back-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Back URL available command finds out whether there is a previous URL available in the sequence of URLs opened in the Web area designated by the *\** and *object* parameters. @@ -27,4 +24,13 @@ The command returns **True** if a URL exists and **False** otherwise. More parti #### See also [WA Forward URL available](wa-forward-url-available.md) -[WA OPEN BACK URL](wa-open-back-url.md) \ No newline at end of file +[WA OPEN BACK URL](wa-open-back-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1026 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md b/versioned_docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md index 9eec968f772187..1230b109d84056 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-create-url-history-menu.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA Create URL history menu** command creates and fills a menu that can be used directly for navigation among the URLs visited during the session in the Web area designated by the *\** and *object* parameters. It can be used to build a custom navigation interface. @@ -69,4 +66,13 @@ The following code can be associated with a 3D button having a pop-up menu entit [Dynamic pop up menu](dynamic-pop-up-menu.md) [RELEASE MENU](release-menu.md) -[WA GET URL HISTORY](wa-get-url-history.md) \ No newline at end of file +[WA GET URL HISTORY](wa-get-url-history.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1049 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md b/versioned_docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md index 9d3437161f50bf..6793b2d97cec10 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-evaluate-javascript.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Evaluate JavaScript command executes, in the Web area designated by the *\** and *object* parameters, the JavaScript code passed in *jsCode* and returns the result. This command must be called after the page is loaded (the On End URL Loading form event must have been generated). @@ -103,4 +100,13 @@ You can then evaluate the JavaScript code from 4D: #### See also -[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) \ No newline at end of file +[WA EXECUTE JAVASCRIPT FUNCTION](wa-execute-javascript-function.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1029 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md b/versioned_docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md index dccbc0f0433f27..c861423b5e7231 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-execute-javascript-function.md @@ -18,9 +18,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA EXECUTE JAVASCRIPT FUNCTION command executes, in the Web area designated by the *\** and *object* parameters, the JavaScript function *jsFunction* and optionally returns its result in the *result* parameter. @@ -59,4 +56,13 @@ The "getCustomerInfo" JavaScript function receive a number ID as parameter and r #### See also -[WA Evaluate JavaScript](wa-evaluate-javascript.md) \ No newline at end of file +[WA Evaluate JavaScript](wa-evaluate-javascript.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1043 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-forward-url-available.md b/versioned_docs/version-20-R7/commands-legacy/wa-forward-url-available.md index 41e5c873ce7c36..dece3caa0233a0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-forward-url-available.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-forward-url-available.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Forward URL available command finds out whether there is a following URL available in the sequence of URLs opened in the Web area designated by the *\** and *object* parameters. @@ -27,4 +24,13 @@ The command returns **True** if a URL exists and **False** otherwise. More parti #### See also [WA Back URL available](wa-back-url-available.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1027 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-get-current-url.md b/versioned_docs/version-20-R7/commands-legacy/wa-get-current-url.md index b822e1248cc7d9..48417bda85cb9c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-get-current-url.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-get-current-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Get current URL command returns the URL address of the page displayed in the Web area designated by the *\** and *object* parameters. @@ -37,4 +34,13 @@ The page displayed is the URL "www.apple.com" and the "www.4d.com" page is in th #### See also -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1025 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md b/versioned_docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md index a548a924cfca0c..06007d4c1fa88b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-get-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA GET EXTERNAL LINKS FILTERS** command returns, in the *filtersArr* and *allowDenyArr* arrays, the external link filters of the Web area designated by the *\** and *object* parameters. If no filter is active, the arrays are returned empty. @@ -28,4 +25,13 @@ The filters are installed by the [WA SET EXTERNAL LINKS FILTERS](wa-set-external #### See also [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1033 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md b/versioned_docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md index 40f6c48354558f..18fe8b8a1fd809 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-get-last-filtered-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA Get last filtered URL** command returns the last URL that was filtered in the Web area designated by the *\** and *object* parameters. @@ -35,4 +32,13 @@ It is advisable to call this command in the context of the On URL Filtering, On [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) [WA GET URL FILTERS](wa-get-url-filters.md) [WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1035 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-get-last-url-error.md b/versioned_docs/version-20-R7/commands-legacy/wa-get-last-url-error.md index d33509c8acf6ff..0104ee11cf5d7a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-get-last-url-error.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-get-last-url-error.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA GET LAST URL ERROR command recovers several items of information about the last error that occurred in the Web area designated by the *\** and *object* parameters. @@ -37,4 +34,13 @@ It is recommended to call this command within the framework of the On URL Loadin #### See also -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1034 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-get-page-content.md b/versioned_docs/version-20-R7/commands-legacy/wa-get-page-content.md index 5a61bc819b8c59..41530f1f65f175 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-get-page-content.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-get-page-content.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Get page content command returns the HTML code of the current page or the page being displayed in the Web area designated by the *\** and *object* parameters. @@ -26,4 +23,13 @@ This command returns an empty string if the contents of the current page is not #### See also -[WA SET PAGE CONTENT](wa-set-page-content.md) \ No newline at end of file +[WA SET PAGE CONTENT](wa-set-page-content.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1038 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-get-page-title.md b/versioned_docs/version-20-R7/commands-legacy/wa-get-page-title.md index cfbfb1ad888657..a360eeaec95444 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-get-page-title.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-get-page-title.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA Get page title command returns the title of the current page or the page being displayed in the Web area designated by the *\** and *object* parameters. The title corresponds to the HTML "Title" tag. @@ -26,4 +23,13 @@ This command returns an empty string if there is no title available for the curr #### See also -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1036 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-get-preference.md b/versioned_docs/version-20-R7/commands-legacy/wa-get-preference.md index 49bfab103cbf08..95a436747f48ab 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-get-preference.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-get-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA GET PREFERENCE command gets the current value of the preference in the Web area designated by the *\** and *object* parameters. @@ -35,4 +32,13 @@ In the *value* parameter, pass a variable that will receive the current value of #### See also -[WA SET PREFERENCE](wa-set-preference.md) \ No newline at end of file +[WA SET PREFERENCE](wa-set-preference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1042 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-get-url-filters.md b/versioned_docs/version-20-R7/commands-legacy/wa-get-url-filters.md index bba1f3edd6f361..4837f7f4ccc1df 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-get-url-filters.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-get-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA GET URL FILTERS** command returns, in the *filtersArr* and *allowDenyArr* arrays, the filters that are active in the Web area designated by the *\** and *object* parameters. If no filter is active, the arrays are returned empty. @@ -28,4 +25,13 @@ The filters are installed by the [WA SET URL FILTERS](wa-set-url-filters.md) com #### See also [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1031 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-get-url-history.md b/versioned_docs/version-20-R7/commands-legacy/wa-get-url-history.md index 54cb76d8ca4ae1..bc22b275f43d48 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-get-url-history.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-get-url-history.md @@ -17,9 +17,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA GET URL HISTORY command returns one or two arrays containing the URLs visited during the session in the Web area designated by the *\** and *object* parameters. It can be used to build a custom navigation interface. @@ -45,4 +42,13 @@ If it is passed, the *titlesArr* parameter contains the list of window names ass #### See also -[WA Create URL history menu](wa-create-url-history-menu.md) \ No newline at end of file +[WA Create URL history menu](wa-create-url-history-menu.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1048 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-open-back-url.md b/versioned_docs/version-20-R7/commands-legacy/wa-open-back-url.md index d8151eec269781..d3c56749247790 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-open-back-url.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-open-back-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA OPEN BACK URL** command loads the previous URL in the sequence of URLs opened into the Web area designated by the *\** and *object* parameters. @@ -26,4 +23,13 @@ If there is no previous URL, the command does nothing. You can test whether a pr #### See also [WA OPEN FORWARD URL](wa-open-forward-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1021 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-open-forward-url.md b/versioned_docs/version-20-R7/commands-legacy/wa-open-forward-url.md index 22f558d6e949aa..3363044fdfa5a2 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-open-forward-url.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-open-forward-url.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA OPEN FORWARD URL** command loads the next URL in the sequence of URLs opened into the Web area designated by the *\** and *object* parameters. @@ -26,4 +23,13 @@ If there is no next URL (in other words, if the user has never returned to a pre #### See also [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN URL](wa-open-url.md) \ No newline at end of file +[WA OPEN URL](wa-open-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1022 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-open-url.md b/versioned_docs/version-20-R7/commands-legacy/wa-open-url.md index ae29aaedf14542..ef290438d694fb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-open-url.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-open-url.md @@ -15,9 +15,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA OPEN URL** command loads the URL passed in the *url* parameter into the Web area designated by the *\** and *object* parameters. @@ -49,4 +46,13 @@ is the same as: [OPEN URL](open-url.md) [WA OPEN BACK URL](wa-open-back-url.md) -[WA OPEN FORWARD URL](wa-open-forward-url.md) \ No newline at end of file +[WA OPEN FORWARD URL](wa-open-forward-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1020 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-open-web-inspector.md b/versioned_docs/version-20-R7/commands-legacy/wa-open-web-inspector.md index 5312d60a468be7..995f366f12db4b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-open-web-inspector.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-open-web-inspector.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA OPEN WEB INSPECTOR** command opens a web inspector for the web area designated by the *\** and *object* parameters. @@ -24,4 +21,13 @@ displayed_sidebar: docs #### See also *Programmed management of Web Areas* -[WA Run offscreen area](wa-run-offscreen-area.md) \ No newline at end of file +[WA Run offscreen area](wa-run-offscreen-area.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1736 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-refresh-current-url.md b/versioned_docs/version-20-R7/commands-legacy/wa-refresh-current-url.md index 233dcc6c3538c3..72e070a78cbc20 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-refresh-current-url.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-refresh-current-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA REFRESH CURRENT URL command reloads the current URL displayed in the Web area designated by the *\** and *object* parameters. #### See also -[WA STOP LOADING URL](wa-stop-loading-url.md) \ No newline at end of file +[WA STOP LOADING URL](wa-stop-loading-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1023 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md b/versioned_docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md index 98c89fc2268d68..e823b5e140ea1b 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-run-offscreen-area.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA Run offscreen area** command creates a web area in memory which can be used to automatically load and parse web pages. @@ -98,4 +95,14 @@ The OK system variable is set to 0 if the timeout has been reached or the [CANCE [FORM Event](../commands/form-event.md) *Programmed management of Web Areas* -[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) \ No newline at end of file +[WA OPEN WEB INSPECTOR](wa-open-web-inspector.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1727 | +| Thread safe | ✗ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md b/versioned_docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md index e8908e70944afb..b4521bfead633c 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-set-external-links-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **WA SET EXTERNAL LINKS FILTERS** command sets up one or more external link filters for the Web area designated by the *\** and *object* parameters. External link filters determine whether a URL associated with the current page via a link must be opened in the Web area or in the default Web browser of the machine. @@ -76,4 +73,13 @@ This example combines the filtering of both sites and external links: #### See also [WA GET EXTERNAL LINKS FILTERS](wa-get-external-links-filters.md) -[WA SET URL FILTERS](wa-set-url-filters.md) \ No newline at end of file +[WA SET URL FILTERS](wa-set-url-filters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1032 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-set-page-content.md b/versioned_docs/version-20-R7/commands-legacy/wa-set-page-content.md index ed426bb1f06aa8..150a36820dc4e5 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-set-page-content.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-set-page-content.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Compatibility Note This historical command is no longer really useful. As security is tightened in modern browsers, there are more and more restrictions on modifying page content "on the fly". A more reliable approach is to create a local file (e.g. in the temporary folder) and use [WA OPEN URL](wa-open-url.md) to load it. To clear the content, just call **WA OPEN URL**(myArea;”about:blank”). @@ -47,4 +44,13 @@ Displays "Hello world!" and sets a "file:///" base URL (Mac OS only): #### See also -[WA Get page content](wa-get-page-content.md) \ No newline at end of file +[WA Get page content](wa-get-page-content.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1037 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-set-preference.md b/versioned_docs/version-20-R7/commands-legacy/wa-set-preference.md index 0c9a6118402f45..220009f81c6f27 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-set-preference.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-set-preference.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA SET PREFERENCE command sets different preferences for the Web area designated by the *\** and *object* parameters. @@ -51,4 +48,13 @@ To enable URL drops in the 'myarea' Web area: #### See also -[WA GET PREFERENCE](wa-get-preference.md) \ No newline at end of file +[WA GET PREFERENCE](wa-get-preference.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1041 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-set-url-filters.md b/versioned_docs/version-20-R7/commands-legacy/wa-set-url-filters.md index 6f629c5a8270a7..bdc149a9104e04 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-set-url-filters.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-set-url-filters.md @@ -16,9 +16,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA SET URL FILTERS command sets up one or more filters for the Web area designated by the *\** and *object* parameters. @@ -139,4 +136,13 @@ You want to deny access to specific IP addresses: #### See also [WA GET URL FILTERS](wa-get-url-filters.md) -[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) \ No newline at end of file +[WA SET EXTERNAL LINKS FILTERS](wa-set-external-links-filters.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1030 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-stop-loading-url.md b/versioned_docs/version-20-R7/commands-legacy/wa-stop-loading-url.md index db512a585db4b9..271a89c85b57d0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-stop-loading-url.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-stop-loading-url.md @@ -14,13 +14,19 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA STOP LOADING URL command stops loading the resources of the current URL of the Web area designated by the *\** and *object* parameters. #### See also -[WA REFRESH CURRENT URL](wa-refresh-current-url.md) \ No newline at end of file +[WA REFRESH CURRENT URL](wa-refresh-current-url.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1024 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-zoom-in.md b/versioned_docs/version-20-R7/commands-legacy/wa-zoom-in.md index 9da77c254d2854..ed92e6444beda0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-zoom-in.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-zoom-in.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA ZOOM IN command increases the size of the contents displayed in the Web area designated by the *\** and *object* parameters. @@ -27,4 +24,13 @@ Under Windows, the scope of this command is global: the configuration is retaine #### See also -[WA ZOOM OUT](wa-zoom-out.md) \ No newline at end of file +[WA ZOOM OUT](wa-zoom-out.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1039 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/wa-zoom-out.md b/versioned_docs/version-20-R7/commands-legacy/wa-zoom-out.md index c3839348de03dc..eff463faf69280 100644 --- a/versioned_docs/version-20-R7/commands-legacy/wa-zoom-out.md +++ b/versioned_docs/version-20-R7/commands-legacy/wa-zoom-out.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WA ZOOM OUT command reduces the size of the contents displayed in the Web area designated by the *\** and *object* parameters. @@ -27,4 +24,13 @@ Under Windows, the scope of this command is global: the configuration is retaine #### See also -[WA ZOOM IN](wa-zoom-in.md) \ No newline at end of file +[WA ZOOM IN](wa-zoom-in.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1040 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-get-body-part-count.md b/versioned_docs/version-20-R7/commands-legacy/web-get-body-part-count.md index f04b15d3fd6a59..d21fef972464fa 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-get-body-part-count.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-get-body-part-count.md @@ -23,4 +23,13 @@ Refer to the example for the [WEB GET BODY PART](web-get-body-part.md) command. #### See also -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1211 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-get-body-part.md b/versioned_docs/version-20-R7/commands-legacy/web-get-body-part.md index d6575913492675..94dbbce877b3ef 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-get-body-part.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-get-body-part.md @@ -91,4 +91,13 @@ Here is the code for GetFile: [WEB Get body part count](web-get-body-part-count.md) [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET VARIABLES](web-get-variables.md) \ No newline at end of file +[WEB GET VARIABLES](web-get-variables.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1212 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-get-current-session-id.md b/versioned_docs/version-20-R7/commands-legacy/web-get-current-session-id.md index dfede6418dcf43..d6a45ec11d831e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-get-current-session-id.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-get-current-session-id.md @@ -22,4 +22,13 @@ If this command is called outside of the context of a Web session, it returns an #### See also [WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) -*Web Sessions Management (Legacy)* \ No newline at end of file +*Web Sessions Management (Legacy)* + +#### Properties + +| | | +| --- | --- | +| Command number | 1162 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-get-http-body.md b/versioned_docs/version-20-R7/commands-legacy/web-get-http-body.md index 6916f61663d958..98b83f916d4941 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-get-http-body.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-get-http-body.md @@ -47,4 +47,13 @@ When the form is submitted to the Web server, the $requestText variable receives #### See also [WEB GET BODY PART](web-get-body-part.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 814 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-get-http-header.md b/versioned_docs/version-20-R7/commands-legacy/web-get-http-header.md index 08175ac761b753..c1e0f8295a2887 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-get-http-header.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-get-http-header.md @@ -116,4 +116,13 @@ The following method allows getting any HTTP request header field content: #### See also [WEB GET HTTP BODY](web-get-http-body.md) -[WEB SET HTTP HEADER](web-set-http-header.md) \ No newline at end of file +[WEB SET HTTP HEADER](web-set-http-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 697 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-get-option.md b/versioned_docs/version-20-R7/commands-legacy/web-get-option.md index e489c4560fc340..7f46e1b1e9fac0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-get-option.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-get-option.md @@ -62,4 +62,13 @@ When you use the Web debug log *selector*, you can receive one of the following #### See also -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1209 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-get-server-info.md b/versioned_docs/version-20-R7/commands-legacy/web-get-server-info.md index 8caacce4055b91..a48ff41ae39207 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-get-server-info.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-get-server-info.md @@ -129,4 +129,13 @@ After you execute the following code: [License info](../commands/license-info.md) [Process activity](../commands/process-activity.md) -[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) \ No newline at end of file +[SOAP REJECT NEW REQUESTS](soap-reject-new-requests.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1531 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-get-statistics.md b/versioned_docs/version-20-R7/commands-legacy/web-get-statistics.md index aced882b74c87e..ee2727316ece62 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-get-statistics.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-get-statistics.md @@ -60,3 +60,13 @@ In the project method STATS, you write the following code: ``` You can send the "stats.shtm" page using a URL link or using the [WEB SEND FILE](web-send-file.md) command. + + +#### Properties + +| | | +| --- | --- | +| Command number | 658 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-get-variables.md b/versioned_docs/version-20-R7/commands-legacy/web-get-variables.md index 35eaa2b0eed476..df5eb7b0b44bfd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-get-variables.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-get-variables.md @@ -63,4 +63,13 @@ The vNAME variable contains ROBERT and the vCITY variable contains DALLAS. #### See also -[WEB GET BODY PART](web-get-body-part.md) \ No newline at end of file +[WEB GET BODY PART](web-get-body-part.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 683 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-is-secured-connection.md b/versioned_docs/version-20-R7/commands-legacy/web-is-secured-connection.md index 35fdf9003d19b7..a2e0014c7de891 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-is-secured-connection.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-is-secured-connection.md @@ -26,4 +26,13 @@ This command allows, for example, denying connections made in a non-secured mode #### See also -[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) \ No newline at end of file +[GENERATE CERTIFICATE REQUEST](generate-certificate-request.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 698 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-is-server-running.md b/versioned_docs/version-20-R7/commands-legacy/web-is-server-running.md index 8d8995722e46a7..7904a36eb71101 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-is-server-running.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-is-server-running.md @@ -36,3 +36,13 @@ You want to check that the Web server is running:     ... //do appropriate actions  End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1313 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-legacy-close-session.md b/versioned_docs/version-20-R7/commands-legacy/web-legacy-close-session.md index 765e9cf9ec83b6..609e15e12bd5b3 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-legacy-close-session.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-legacy-close-session.md @@ -34,4 +34,13 @@ After this command is executed, if a Web client sends a request using an invalid #### See also [On Web Legacy Close Session database method](on-web-legacy-close-session-database-method.md) -*Web Sessions Management (Legacy)* \ No newline at end of file +*Web Sessions Management (Legacy)* + +#### Properties + +| | | +| --- | --- | +| Command number | 1208 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md b/versioned_docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md index 254b47b27b7505..a339a542ac76af 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-legacy-get-session-expiration.md @@ -37,4 +37,13 @@ The *expDate* parameter receives the expiration date and the *expTime* parameter [WEB Get Current Session ID](web-get-current-session-id.md) *Web Sessions Management (Legacy)* -[WEB SET OPTION](web-set-option.md) \ No newline at end of file +[WEB SET OPTION](web-set-option.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1207 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-send-blob.md b/versioned_docs/version-20-R7/commands-legacy/web-send-blob.md index 069f66e8606816..6a01eac19e46bd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-send-blob.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-send-blob.md @@ -79,4 +79,13 @@ Refer to the example of the [PICTURE TO BLOB](picture-to-blob.md) routine. #### See also -[WEB SEND FILE](web-send-file.md) \ No newline at end of file +[WEB SEND FILE](web-send-file.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 654 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-send-file.md b/versioned_docs/version-20-R7/commands-legacy/web-send-file.md index a8851d2746412d..a4abe214ca2ed1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-send-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-send-file.md @@ -48,4 +48,14 @@ If the file to be sent exists and if the timeout has not run out, OK is set to 1 #### See also -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 619 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-send-http-redirect.md b/versioned_docs/version-20-R7/commands-legacy/web-send-http-redirect.md index 23517fe05ef15d..2d18661c8288ff 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-send-http-redirect.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-send-http-redirect.md @@ -55,3 +55,13 @@ In the [QR SET DESTINATION](qr-set-destination.md), you insert the following cod        ... //Put the request code here  End case ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 659 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-send-raw-data.md b/versioned_docs/version-20-R7/commands-legacy/web-send-raw-data.md index 9b9945a6456e80..5bdd2c368837fd 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-send-raw-data.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-send-raw-data.md @@ -82,4 +82,13 @@ This example illustrates the use of the chunked option with the **WEB SEND RAW D #### See also [WEB GET HTTP BODY](web-get-http-body.md) -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 815 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-send-text.md b/versioned_docs/version-20-R7/commands-legacy/web-send-text.md index 4beb0454e972bc..7280fe70ca71e4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-send-text.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-send-text.md @@ -42,4 +42,13 @@ The following method: #### See also -[WEB SEND BLOB](web-send-blob.md) \ No newline at end of file +[WEB SEND BLOB](web-send-blob.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 677 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-service-authenticate.md b/versioned_docs/version-20-R7/commands-legacy/web-service-authenticate.md index 1259491d5b8d0f..7a0ee3c750f328 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-service-authenticate.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-service-authenticate.md @@ -51,4 +51,13 @@ Authentication with a Web Service located behind a proxy: #### See also [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE Get info](web-service-get-info.md) \ No newline at end of file +[WEB SERVICE Get info](web-service-get-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 786 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-service-call.md b/versioned_docs/version-20-R7/commands-legacy/web-service-call.md index 0ff93f4402f38e..35f08d848c2f56 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-service-call.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-service-call.md @@ -161,4 +161,14 @@ If the request has been correctly routed and the Web Service has accepted it, th #### See also [WEB SERVICE GET RESULT](web-service-get-result.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 778 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-service-get-info.md b/versioned_docs/version-20-R7/commands-legacy/web-service-get-info.md index 889373c7662f17..7c730a18f54fd4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-service-get-info.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-service-get-info.md @@ -28,3 +28,13 @@ The *infoType* parameter allows you to indicate the type of information that you | Web Service HTTP status code | Integer | 2 | HTTP error code (to be used in case of main error 9912). | An empty string is returned when no information is available, more particularly when the last SOAP request did not generate any errors. + + +#### Properties + +| | | +| --- | --- | +| Command number | 780 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-service-get-result.md b/versioned_docs/version-20-R7/commands-legacy/web-service-get-result.md index 24ea39e6f0c4d1..986143d38532ee 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-service-get-result.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-service-get-result.md @@ -17,9 +17,7 @@ displayed_sidebar: docs #### Description -The **WEB SERVICE GET RESULT** command retrieves a value sent back by the Web Service as a result of the processing performed. - -**Note:** This command must be used only after the [WEB SERVICE CALL](web-service-call.md) command. +The **WEB SERVICE GET RESULT** command retrieves a value sent back by the Web Service as a result of the processing performed.This command must be used only after the [WEB SERVICE CALL](web-service-call.md) command. The *returnValue* parameter receives the value sent back by the Web Service. Pass a 4D variable in this parameter. This variable is generally $0, corresponding to the value returned by the proxy method. It is, however, possible to use intermediary variables (you must use process variables only). @@ -52,4 +50,13 @@ Imagine that a Web Service returns the current time in any city in the world. Th #### See also [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) \ No newline at end of file +[WEB SERVICE SET PARAMETER](web-service-set-parameter.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 779 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-service-set-option.md b/versioned_docs/version-20-R7/commands-legacy/web-service-set-option.md index 875038cda100ad..2646bc53640e51 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-service-set-option.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-service-set-option.md @@ -60,4 +60,13 @@ Using version 1.2 of the SOAP protocol: #### See also -[WEB SERVICE CALL](web-service-call.md) \ No newline at end of file +[WEB SERVICE CALL](web-service-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 901 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-service-set-parameter.md b/versioned_docs/version-20-R7/commands-legacy/web-service-set-parameter.md index 3872137d797a56..c70e4e39e1d508 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-service-set-parameter.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-service-set-parameter.md @@ -72,4 +72,13 @@ This example defines two parameters: #### See also [WEB SERVICE CALL](web-service-call.md) -[WEB SERVICE GET RESULT](web-service-get-result.md) \ No newline at end of file +[WEB SERVICE GET RESULT](web-service-get-result.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 777 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-set-home-page.md b/versioned_docs/version-20-R7/commands-legacy/web-set-home-page.md index 8a42ad6f890673..bfb5df6835dbcc 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-set-home-page.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-set-home-page.md @@ -26,3 +26,13 @@ You pass the name of the HTML home page or the page’s HTML access path to the To stop sending *homePage* as home page for the current Web process, execute **WEB SET HOME PAGE** with an empty string ("") passed in *homePage*. **Note:** The default home page of the Web server is specified in the Database Settings dialog box. + + +#### Properties + +| | | +| --- | --- | +| Command number | 639 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-set-http-header.md b/versioned_docs/version-20-R7/commands-legacy/web-set-http-header.md index 2ad085309e4c3f..1f4d75aae51d60 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-set-http-header.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-set-http-header.md @@ -62,4 +62,13 @@ If you do not specify a state, it will automatically be HTTP/1.0 200 OK. By defa #### See also -[WEB GET HTTP HEADER](web-get-http-header.md) \ No newline at end of file +[WEB GET HTTP HEADER](web-get-http-header.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 660 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-set-option.md b/versioned_docs/version-20-R7/commands-legacy/web-set-option.md index 87ae80c34f4e1a..0c692445ef4c04 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-set-option.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-set-option.md @@ -79,4 +79,13 @@ A log entry looks like this: #### See also [WEB GET OPTION](web-get-option.md) -[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) \ No newline at end of file +[WEB LEGACY GET SESSION EXPIRATION](web-legacy-get-session-expiration.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 5 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-set-root-folder.md b/versioned_docs/version-20-R7/commands-legacy/web-set-root-folder.md index c73be49f46b132..5127a73a1b9890 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-set-root-folder.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-set-root-folder.md @@ -36,4 +36,14 @@ If you specify an invalid pathname, an OS File manager error is generated. You c #### See also [Get 4D folder](get-4d-folder.md) -[ON ERR CALL](on-err-call.md) \ No newline at end of file +[ON ERR CALL](on-err-call.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 634 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-start-server.md b/versioned_docs/version-20-R7/commands-legacy/web-start-server.md index 1a3510a1bd5ec9..c0b2b0b090dc82 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-start-server.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-start-server.md @@ -24,4 +24,14 @@ If the Web Server is successfully started, **OK** is set to 1; otherwise **OK** #### See also -[WEB STOP SERVER](web-stop-server.md) \ No newline at end of file +[WEB STOP SERVER](web-stop-server.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 617 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-stop-server.md b/versioned_docs/version-20-R7/commands-legacy/web-stop-server.md index 9af9d432aca55d..3c55494c6fb9c4 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-stop-server.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-stop-server.md @@ -20,4 +20,13 @@ If the Web server has not been started, the command does nothing. #### See also -[WEB START SERVER](web-start-server.md) \ No newline at end of file +[WEB START SERVER](web-start-server.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 618 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/web-validate-digest.md b/versioned_docs/version-20-R7/commands-legacy/web-validate-digest.md index f38ebb2812c2d0..238f9d74585dfb 100644 --- a/versioned_docs/version-20-R7/commands-legacy/web-validate-digest.md +++ b/versioned_docs/version-20-R7/commands-legacy/web-validate-digest.md @@ -55,4 +55,13 @@ Example using *On Web Authentication Database Method* in Digest mode: #### See also [Generate digest](generate-digest.md) -[Validate password](validate-password.md) \ No newline at end of file +[Validate password](validate-password.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 946 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/window-kind.md b/versioned_docs/version-20-R7/commands-legacy/window-kind.md index b18d64612bfbc7..9c4c1c8733c852 100644 --- a/versioned_docs/version-20-R7/commands-legacy/window-kind.md +++ b/versioned_docs/version-20-R7/commands-legacy/window-kind.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **Window kind** command returns the 4D type of the window whose reference number is passed in *window*. If the window does not exist, **Window kind** returns *0* (zero). @@ -40,4 +37,13 @@ See example for the [WINDOW LIST](window-list.md) command. [GET WINDOW RECT](get-window-rect.md) [Get window title](get-window-title.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 445 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/window-list.md b/versioned_docs/version-20-R7/commands-legacy/window-list.md index 1a0be5c1c6d7f6..0b82c5bb2602d1 100644 --- a/versioned_docs/version-20-R7/commands-legacy/window-list.md +++ b/versioned_docs/version-20-R7/commands-legacy/window-list.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The WINDOW LIST command populates the array *windows* with the window reference numbers of the windows currently open in all running processes (kernel or user processes). Only "visible" windows (i.e. windows that are not hidden) are returned. @@ -52,4 +49,13 @@ The following project method tiles all the current open window, except floating #### See also [Window kind](window-kind.md) -[Window process](window-process.md) \ No newline at end of file +[Window process](window-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 442 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/window-process.md b/versioned_docs/version-20-R7/commands-legacy/window-process.md index ef2722c38a223e..b73e6d89ea7283 100644 --- a/versioned_docs/version-20-R7/commands-legacy/window-process.md +++ b/versioned_docs/version-20-R7/commands-legacy/window-process.md @@ -14,9 +14,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The Window process command returns the process number that runs the window whose reference number is passed in *window*. If the window does not exist, 0 (zero) is returned. @@ -25,4 +22,13 @@ If you omit the *window* parameter, Window process returns the process of the cu #### See also -[Current process](current-process.md) \ No newline at end of file +[Current process](current-process.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 446 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/windows-alt-down.md b/versioned_docs/version-20-R7/commands-legacy/windows-alt-down.md index 119ae4a9065b3c..382f3e8b7af92a 100644 --- a/versioned_docs/version-20-R7/commands-legacy/windows-alt-down.md +++ b/versioned_docs/version-20-R7/commands-legacy/windows-alt-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Windows Alt down** returns TRUE if the Windows Alt key is pressed. - -**Note:** When called on a Macintosh platform, **Windows Alt down** returns TRUE if the Macintosh Option key is pressed. +**Windows Alt down** returns TRUE if the Windows Alt key is pressed.When called on a Macintosh platform, **Windows Alt down** returns TRUE if the Macintosh Option key is pressed. #### Example @@ -30,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh control down](macintosh-control-down.md) [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 563 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/windows-ctrl-down.md b/versioned_docs/version-20-R7/commands-legacy/windows-ctrl-down.md index 788d8a2e5a84fa..f4e1f87bc7a14d 100644 --- a/versioned_docs/version-20-R7/commands-legacy/windows-ctrl-down.md +++ b/versioned_docs/version-20-R7/commands-legacy/windows-ctrl-down.md @@ -15,9 +15,7 @@ displayed_sidebar: docs #### Description -**Windows Ctrl down** returns TRUE if the Windows Ctrl key is pressed. - -**Note:** When called on a Macintosh platform, **Windows Ctrl down** returns TRUE if the Macintosh Command key is pressed. +**Windows Ctrl down** returns TRUE if the Windows Ctrl key is pressed.When called on a Macintosh platform, **Windows Ctrl down** returns TRUE if the Macintosh Command key is pressed. #### Example @@ -30,4 +28,13 @@ See example for the [Shift down](shift-down.md) command. [Macintosh option down](macintosh-option-down.md) [Shift down](shift-down.md) [Windows Alt down](windows-alt-down.md) -[Windows Ctrl down](windows-ctrl-down.md) \ No newline at end of file +[Windows Ctrl down](windows-ctrl-down.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 562 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/write-picture-file.md b/versioned_docs/version-20-R7/commands-legacy/write-picture-file.md index e37558a5592562..210500938df8ea 100644 --- a/versioned_docs/version-20-R7/commands-legacy/write-picture-file.md +++ b/versioned_docs/version-20-R7/commands-legacy/write-picture-file.md @@ -46,4 +46,14 @@ If the command is executed successfully, the system variable Document contains t [PICTURE TO BLOB](picture-to-blob.md) *Pictures* [READ PICTURE FILE](read-picture-file.md) -[SET PICTURE FILE NAME](set-picture-file-name.md) \ No newline at end of file +[SET PICTURE FILE NAME](set-picture-file-name.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 680 | +| Thread safe | ✓ | +| Modifies variables | OK, Document | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/xml-decode.md b/versioned_docs/version-20-R7/commands-legacy/xml-decode.md index d6fa06042800c3..f3696b92571358 100644 --- a/versioned_docs/version-20-R7/commands-legacy/xml-decode.md +++ b/versioned_docs/version-20-R7/commands-legacy/xml-decode.md @@ -71,4 +71,13 @@ Example of XML document: #### See also [BASE64 DECODE](base64-decode.md) -[BASE64 ENCODE](base64-encode.md) \ No newline at end of file +[BASE64 ENCODE](base64-encode.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1091 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/xml-get-error.md b/versioned_docs/version-20-R7/commands-legacy/xml-get-error.md index 00c975748bc9a4..136da3988275a0 100644 --- a/versioned_docs/version-20-R7/commands-legacy/xml-get-error.md +++ b/versioned_docs/version-20-R7/commands-legacy/xml-get-error.md @@ -28,4 +28,14 @@ If the command has been correctly executed, the system variable OK is set to 1\. #### See also -[DOM Get XML information](dom-get-xml-information.md) \ No newline at end of file +[DOM Get XML information](dom-get-xml-information.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 732 | +| Thread safe | ✓ | +| Modifies variables | OK | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/xml-get-options.md b/versioned_docs/version-20-R7/commands-legacy/xml-get-options.md index 0b433e541f1ce6..7c85dc3e757a50 100644 --- a/versioned_docs/version-20-R7/commands-legacy/xml-get-options.md +++ b/versioned_docs/version-20-R7/commands-legacy/xml-get-options.md @@ -36,4 +36,13 @@ In selector, pass a constant of the "*XML*" theme indicating the option to get. #### See also -[XML SET OPTIONS](xml-set-options.md) \ No newline at end of file +[XML SET OPTIONS](xml-set-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1096 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/xml-set-options.md b/versioned_docs/version-20-R7/commands-legacy/xml-set-options.md index 4c2f9c873c4d55..7cbb905d37894e 100644 --- a/versioned_docs/version-20-R7/commands-legacy/xml-set-options.md +++ b/versioned_docs/version-20-R7/commands-legacy/xml-set-options.md @@ -64,4 +64,13 @@ Insertion of an SVG picture: [DOM SET XML DECLARATION](dom-set-xml-declaration.md) [DOM SET XML ELEMENT VALUE](dom-set-xml-element-value.md) [SAX ADD XML ELEMENT VALUE](sax-add-xml-element-value.md) -[XML GET OPTIONS](xml-get-options.md) \ No newline at end of file +[XML GET OPTIONS](xml-get-options.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1090 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands-legacy/year-of.md b/versioned_docs/version-20-R7/commands-legacy/year-of.md index 6152be5f07e87a..0ffde0b669f870 100644 --- a/versioned_docs/version-20-R7/commands-legacy/year-of.md +++ b/versioned_docs/version-20-R7/commands-legacy/year-of.md @@ -37,4 +37,13 @@ See example for the command [Current date](current-date.md). #### See also [Day of](day-of.md) -[Month of](month-of.md) \ No newline at end of file +[Month of](month-of.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 25 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/4d.md b/versioned_docs/version-20-R7/commands/4d.md index 09522461571f5d..0b710c66f72007 100644 --- a/versioned_docs/version-20-R7/commands/4d.md +++ b/versioned_docs/version-20-R7/commands/4d.md @@ -11,4 +11,13 @@ displayed_sidebar: docs | classStore | Object | ← | Class Store containing all built-in 4D classes | -The **4D** keyword is described in the [**Concept page for Classes**](../Concepts/classes.md#4d). \ No newline at end of file +The **4D** keyword is described in the [**Concept page for Classes**](../Concepts/classes.md#4d). + +#### Properties + +| | | +| --- | --- | +| Command number | 1709 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/create-entity-selection.md b/versioned_docs/version-20-R7/commands/create-entity-selection.md index 9de5b62d8f5a08..3099f2bc717fe2 100644 --- a/versioned_docs/version-20-R7/commands/create-entity-selection.md +++ b/versioned_docs/version-20-R7/commands/create-entity-selection.md @@ -42,4 +42,13 @@ $employees:=Create entity selection([Employee]) #### See also -[USE ENTITY SELECTION](use-entity-selection.md)
    [`dataClass.newSelection()`](../API/DataClassClass.md#newselection) \ No newline at end of file +[USE ENTITY SELECTION](use-entity-selection.md)
    [`dataClass.newSelection()`](../API/DataClassClass.md#newselection) + +#### Properties + +| | | +| --- | --- | +| Command number | 1512 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/cs.md b/versioned_docs/version-20-R7/commands/cs.md index 191c3c47e4cc5f..73b31833bcd4b5 100644 --- a/versioned_docs/version-20-R7/commands/cs.md +++ b/versioned_docs/version-20-R7/commands/cs.md @@ -10,3 +10,13 @@ displayed_sidebar: docs The **cs** keyword is described in the [**Concept page for Classes**](../Concepts/classes.md#cs). + + +#### Properties + +| | | +| --- | --- | +| Command number | 1710 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/ds.md b/versioned_docs/version-20-R7/commands/ds.md index f9b49c4e2b3330..b4567b6aadab25 100644 --- a/versioned_docs/version-20-R7/commands/ds.md +++ b/versioned_docs/version-20-R7/commands/ds.md @@ -67,4 +67,13 @@ $result:=ds.Employee.query("firstName = :1";"S@") #### See also -[Open datastore](open-datastore.md) \ No newline at end of file +[Open datastore](open-datastore.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1482 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/file.md b/versioned_docs/version-20-R7/commands/file.md index 42de468d0c7eed..7ca2cba4b68cd6 100644 --- a/versioned_docs/version-20-R7/commands/file.md +++ b/versioned_docs/version-20-R7/commands/file.md @@ -84,3 +84,13 @@ If the command is called from a component, pass the optional `*` parameter to ge [Object to path](../commands-legacy/object-to-path.md) [Path to object](../commands-legacy/path-to-object.md) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1566 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/folder.md b/versioned_docs/version-20-R7/commands/folder.md index 0f7ca4d2284ed0..298a1ec1017473 100644 --- a/versioned_docs/version-20-R7/commands/folder.md +++ b/versioned_docs/version-20-R7/commands/folder.md @@ -74,3 +74,13 @@ If the command is called from a component, pass the optional `*` parameter to ge [File](file.md) [Object to path](../commands-legacy/object-to-path.md) [Path to object](../commands-legacy/path-to-object.md) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1567 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/form-event-code.md b/versioned_docs/version-20-R7/commands/form-event-code.md index 49784531cf3a6f..bc0ca1d504a9a4 100644 --- a/versioned_docs/version-20-R7/commands/form-event-code.md +++ b/versioned_docs/version-20-R7/commands/form-event-code.md @@ -12,9 +12,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description @@ -350,4 +347,13 @@ As a result, the red rectangle follows the scrolling of the list box: [Get edited text](../commands-legacy/get-edited-text.md) [Keystroke](../commands-legacy/keystroke.md) [POST OUTSIDE CALL](../commands-legacy/post-outside-call.md) -[SET TIMER](../commands-legacy/set-timer.md) \ No newline at end of file +[SET TIMER](../commands-legacy/set-timer.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 388 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands/form-event.md b/versioned_docs/version-20-R7/commands/form-event.md index 1c7114902e2240..35e2f46f2f2e65 100644 --- a/versioned_docs/version-20-R7/commands/form-event.md +++ b/versioned_docs/version-20-R7/commands/form-event.md @@ -97,4 +97,13 @@ The resulting list box when rows are selected: #### See also [Form Events](../Events/overview.md) -[Form event code](../commands/form-event-code.md) \ No newline at end of file +[Form event code](../commands/form-event-code.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1606 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/formula-from-string.md b/versioned_docs/version-20-R7/commands/formula-from-string.md index d220d1f084e190..7fe63e970564d1 100644 --- a/versioned_docs/version-20-R7/commands/formula-from-string.md +++ b/versioned_docs/version-20-R7/commands/formula-from-string.md @@ -73,3 +73,13 @@ The following code will create a dialog accepting a formula in text format: [Parse formula](../commands-legacy/parse-formula.md) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1601 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/formula.md b/versioned_docs/version-20-R7/commands/formula.md index c883d14e575691..aae32a78ca42ea 100644 --- a/versioned_docs/version-20-R7/commands/formula.md +++ b/versioned_docs/version-20-R7/commands/formula.md @@ -145,3 +145,13 @@ Calling a formula using object notation: [4D Blog - Write your own methods for objects](https://blog.4d.com/write-your-own-methods-for-objects/) [Formula from string](formula-from-string.md) + + +#### Properties + +| | | +| --- | --- | +| Command number | 1597 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/imap-new-transporter.md b/versioned_docs/version-20-R7/commands/imap-new-transporter.md index 4f738432d4ee1c..14b45a0771e204 100644 --- a/versioned_docs/version-20-R7/commands/imap-new-transporter.md +++ b/versioned_docs/version-20-R7/commands/imap-new-transporter.md @@ -69,3 +69,13 @@ If(Not($status.success)) End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1723 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/license-info.md b/versioned_docs/version-20-R7/commands/license-info.md index 22c5aae0099057..e3584cf36db306 100644 --- a/versioned_docs/version-20-R7/commands/license-info.md +++ b/versioned_docs/version-20-R7/commands/license-info.md @@ -132,4 +132,13 @@ You want to get information on your current 4D Server license: [CHANGE LICENSES](../commands-legacy/change-licenses.md) [Is license available](../commands-legacy/is-license-available.md) -[WEB Get server info](../commands-legacy/web-get-server-info.md) \ No newline at end of file +[WEB Get server info](../commands-legacy/web-get-server-info.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1489 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/mail-convert-from-mime.md b/versioned_docs/version-20-R7/commands/mail-convert-from-mime.md index bb95d829b11b04..91cb28177a177a 100644 --- a/versioned_docs/version-20-R7/commands/mail-convert-from-mime.md +++ b/versioned_docs/version-20-R7/commands/mail-convert-from-mime.md @@ -91,4 +91,13 @@ $status:=$transporter.send($email) | mime | BLOB, Text | → | Email in MIME | -| Function result | Object | ← | Email object | \ No newline at end of file +| Function result | Object | ← | Email object | + +#### Properties + +| | | +| --- | --- | +| Command number | 1681 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/mail-convert-to-mime.md b/versioned_docs/version-20-R7/commands/mail-convert-to-mime.md index 3a0ddfa7b57c0f..8b22f42c39807f 100644 --- a/versioned_docs/version-20-R7/commands/mail-convert-to-mime.md +++ b/versioned_docs/version-20-R7/commands/mail-convert-to-mime.md @@ -84,3 +84,13 @@ $mime:=MAIL Convert to MIME($mail) // --E0AE5773D5E95245BBBD80DD0687E218-- ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1604 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/mail-new-attachment.md b/versioned_docs/version-20-R7/commands/mail-new-attachment.md index 56d6137e5cc6ea..fa2da8fa25a9a1 100644 --- a/versioned_docs/version-20-R7/commands/mail-new-attachment.md +++ b/versioned_docs/version-20-R7/commands/mail-new-attachment.md @@ -147,3 +147,13 @@ $email.attachments:=New collection(MAIL New attachment($blob;"Annual report.docx $transporter.send($email) ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1644 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/new-collection.md b/versioned_docs/version-20-R7/commands/new-collection.md index 67019252df471c..40f847c22a5b74 100644 --- a/versioned_docs/version-20-R7/commands/new-collection.md +++ b/versioned_docs/version-20-R7/commands/new-collection.md @@ -80,4 +80,13 @@ You create a new collection and then add a new element: #### See also [New shared collection](new-shared-collection.md) -[Type](../commands-legacy/type.md) \ No newline at end of file +[Type](../commands-legacy/type.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1472 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/new-shared-collection.md b/versioned_docs/version-20-R7/commands/new-shared-collection.md index c2449c65b3f536..ed6205c093ffe1 100644 --- a/versioned_docs/version-20-R7/commands/new-shared-collection.md +++ b/versioned_docs/version-20-R7/commands/new-shared-collection.md @@ -69,4 +69,13 @@ Unlike standard (not shared) collections, shared collections do not support pict [New collection](new-collection.md) [New shared object](../commands-legacy/new-shared-object.md) -*Shared objects and shared collections* \ No newline at end of file +*Shared objects and shared collections* + +#### Properties + +| | | +| --- | --- | +| Command number | 1527 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/new-signal.md b/versioned_docs/version-20-R7/commands/new-signal.md index 0db75e6a945d60..87b827779a9333 100644 --- a/versioned_docs/version-20-R7/commands/new-signal.md +++ b/versioned_docs/version-20-R7/commands/new-signal.md @@ -72,3 +72,13 @@ The ***doSomething*** method could be like: $signal.trigger() // The work is finished ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1641 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/open-datastore.md b/versioned_docs/version-20-R7/commands/open-datastore.md index d30b2cb896cf86..8ace9db6175ecf 100644 --- a/versioned_docs/version-20-R7/commands/open-datastore.md +++ b/versioned_docs/version-20-R7/commands/open-datastore.md @@ -149,4 +149,14 @@ In case of error, the command returns **Null**. If the remote datastore cannot b #### See also -[ds](ds.md) \ No newline at end of file +[ds](ds.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1452 | +| Thread safe | ✓ | +| Modifies variables | error | + + diff --git a/versioned_docs/version-20-R7/commands/pop3-new-transporter.md b/versioned_docs/version-20-R7/commands/pop3-new-transporter.md index 6b2ec9eb211fd5..b7f735360e4b1b 100644 --- a/versioned_docs/version-20-R7/commands/pop3-new-transporter.md +++ b/versioned_docs/version-20-R7/commands/pop3-new-transporter.md @@ -65,3 +65,13 @@ The function returns a [**POP3 transporter object**](../API/POP3TransporterClass ALERT("An error occurred receiving the mail: "+$status.statusText) End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1697 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/process-number.md b/versioned_docs/version-20-R7/commands/process-number.md index 78998366a79708..2001ecd370f64e 100644 --- a/versioned_docs/version-20-R7/commands/process-number.md +++ b/versioned_docs/version-20-R7/commands/process-number.md @@ -38,4 +38,13 @@ If the command is executed with the \* parameter from a process on the server ma [GET PROCESS VARIABLE](../commands-legacy/get-process-variable.md) [Process state](../commands-legacy/process-state.md) -[SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) \ No newline at end of file +[SET PROCESS VARIABLE](../commands-legacy/set-process-variable.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 372 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/session.md b/versioned_docs/version-20-R7/commands/session.md index b33ea915a46056..5f5848b9404520 100644 --- a/versioned_docs/version-20-R7/commands/session.md +++ b/versioned_docs/version-20-R7/commands/session.md @@ -92,4 +92,13 @@ IP:port/4DACTION/action_Session [Session storage](../commands-legacy/session-storage.md) [Session API](../API/SessionClass.md) -[Web server user sessions](../WebServer/sessions.md) \ No newline at end of file +[Web server user sessions](../WebServer/sessions.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1714 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/set-allowed-methods.md b/versioned_docs/version-20-R7/commands/set-allowed-methods.md index cc3b29de7c3b97..7c0ba49237e228 100644 --- a/versioned_docs/version-20-R7/commands/set-allowed-methods.md +++ b/versioned_docs/version-20-R7/commands/set-allowed-methods.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - - #### Description The **SET ALLOWED METHODS** command designates the project methods that can be entered via the application. @@ -57,4 +54,13 @@ This example authorizes all methods starting with “formula” and the “Total #### See also [EDIT FORMULA](../commands-legacy/edit-formula.md) -[GET ALLOWED METHODS](../commands-legacy/get-allowed-methods.md) \ No newline at end of file +[GET ALLOWED METHODS](../commands-legacy/get-allowed-methods.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 805 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands/smtp-new-transporter.md b/versioned_docs/version-20-R7/commands/smtp-new-transporter.md index 2a14d82fa127a6..16ea0698ec4854 100644 --- a/versioned_docs/version-20-R7/commands/smtp-new-transporter.md +++ b/versioned_docs/version-20-R7/commands/smtp-new-transporter.md @@ -84,3 +84,13 @@ The function returns a [**SMTP transporter object**](../API/SMTPTransporterClass ALERT("An error occurred sending the mail: "+$status.message) End if ``` + + +#### Properties + +| | | +| --- | --- | +| Command number | 1608 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/super.md b/versioned_docs/version-20-R7/commands/super.md index c940653df04cca..c8e886e26adbe0 100644 --- a/versioned_docs/version-20-R7/commands/super.md +++ b/versioned_docs/version-20-R7/commands/super.md @@ -110,4 +110,13 @@ $message:=$square.description() //I have 4 sides which are all equal #### See also -[**Concept page for Classes**](../Concepts/classes.md). \ No newline at end of file +[**Concept page for Classes**](../Concepts/classes.md). + +#### Properties + +| | | +| --- | --- | +| Command number | 1706 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/this.md b/versioned_docs/version-20-R7/commands/this.md index 656c45b3ae464c..514f5035de9efb 100644 --- a/versioned_docs/version-20-R7/commands/this.md +++ b/versioned_docs/version-20-R7/commands/this.md @@ -182,4 +182,13 @@ Once the form is executed, the list box is automatically filled with the entity #### See also [Self](../commands-legacy/self.md) -[Super](super.md) \ No newline at end of file +[Super](super.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1470 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/use-entity-selection.md b/versioned_docs/version-20-R7/commands/use-entity-selection.md index 21b889f1f1d222..c66de5ccd5cd9b 100644 --- a/versioned_docs/version-20-R7/commands/use-entity-selection.md +++ b/versioned_docs/version-20-R7/commands/use-entity-selection.md @@ -45,4 +45,15 @@ USE ENTITY SELECTION($entitySel) //The current selection of the Employee table i #### See also -[Create entity selection](create-entity-selection.md) \ No newline at end of file +[Create entity selection](create-entity-selection.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1513 | +| Thread safe | ✓ | +| Changes current record || +| Changes current selection || + + diff --git a/versioned_docs/version-20-R7/commands/web-server-list.md b/versioned_docs/version-20-R7/commands/web-server-list.md index 677c69850b8865..07e96d1f4d2cc4 100644 --- a/versioned_docs/version-20-R7/commands/web-server-list.md +++ b/versioned_docs/version-20-R7/commands/web-server-list.md @@ -51,4 +51,13 @@ We want to know how many running web servers are available: #### See also [WEB Server](web-server.md) -[webServer.stop()](../API/WebServerClass.md#stop) \ No newline at end of file +[webServer.stop()](../API/WebServerClass.md#stop) + +#### Properties + +| | | +| --- | --- | +| Command number | 1716 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/web-server.md b/versioned_docs/version-20-R7/commands/web-server.md index 4d475427cda6df..02224ba46b9d94 100644 --- a/versioned_docs/version-20-R7/commands/web-server.md +++ b/versioned_docs/version-20-R7/commands/web-server.md @@ -13,9 +13,6 @@ displayed_sidebar: docs -*This command is not thread-safe, it cannot be used in preemptive code.* - -
    History @@ -58,4 +55,13 @@ From your component, you want to know if the Web server of the host database is #### See also [WEB Server list](web-server-list.md) -[webServer.stop()](../API/WebServerClass.md#stop) \ No newline at end of file +[webServer.stop()](../API/WebServerClass.md#stop) + +#### Properties + +| | | +| --- | --- | +| Command number | 1674 | +| Thread safe | ✗ | + + diff --git a/versioned_docs/version-20-R7/commands/zip-create-archive.md b/versioned_docs/version-20-R7/commands/zip-create-archive.md index bc1a8419c44d48..0b0e730dcf05c5 100644 --- a/versioned_docs/version-20-R7/commands/zip-create-archive.md +++ b/versioned_docs/version-20-R7/commands/zip-create-archive.md @@ -164,4 +164,13 @@ $err:=ZIP Create archive($zip; $destination) [ZipArchive Class](../API/ZipArchiveClass.md) [ZipFile Class](../API/ZipFileClass.md) [ZipFolder Class](../API/ZipFolderClass.md) -[`ZIP Read archive`](zip-read-archive.md) \ No newline at end of file +[`ZIP Read archive`](zip-read-archive.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1640 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20-R7/commands/zip-read-archive.md b/versioned_docs/version-20-R7/commands/zip-read-archive.md index fdbc6ed7ac1647..b4cca7bbb94231 100644 --- a/versioned_docs/version-20-R7/commands/zip-read-archive.md +++ b/versioned_docs/version-20-R7/commands/zip-read-archive.md @@ -81,4 +81,13 @@ To extract from the root folder: [ZipArchive Class](../API/ZipArchiveClass.md) [ZipFile Class](../API/ZipFileClass.md) [ZipFolder Class](../API/ZipFolderClass.md) -[`ZIP Create archive`](zip-create-archive.md) \ No newline at end of file +[`ZIP Create archive`](zip-create-archive.md) + +#### Properties + +| | | +| --- | --- | +| Command number | 1637 | +| Thread safe | ✓ | + + diff --git a/versioned_docs/version-20/API/DataClassClass.md b/versioned_docs/version-20/API/DataClassClass.md index 2c91a20189d7f4..700f66bdbd78f1 100644 --- a/versioned_docs/version-20/API/DataClassClass.md +++ b/versioned_docs/version-20/API/DataClassClass.md @@ -1004,6 +1004,21 @@ You will not get the expected result because the null value will be evaluated by $vSingles:=ds.Person.query("spouse = null") //correct syntax ``` +#### Not equal to null or undefined values + +The "not equal to *value*" comparator (`#` or `!=`) does not return attributes whose value is null or undefined. For example, the following query will only return persons whose "info.married" status is `false` and not persons whose "info.married" property is "null" or missing: + +```4d +$notMarried:=ds.Person.query("info.married#true") //finds persons with attribute value is false +``` + +If you want to find persons whose "info.married" status is `false`, null, or not defined, you need to write: + +```4d +$notMarried:=ds.Person.query("info.married#true | info.married=null") //finds false, null and undefined attributes +``` + + #### Not equal to in collections When searching within dataclass object attributes containing collections, the "not equal to *value*" comparator (`#` or `!=`) will find elements where ALL properties are different from *value* (and not those where AT LEAST one property is different from *value*, which is how work other comparators). Basically, it is equivalent to search for "Not(find collection elements where property equals *value*"). For example, with the following entities: